-
Notifications
You must be signed in to change notification settings - Fork 391
/
Copy pathdefaultStyles.ts
75 lines (74 loc) · 2.01 KB
/
defaultStyles.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import { Styles } from './styles';
export const defaultStyles: Styles = {
control: {
root: 'control',
wrapper: 'wrapper',
label: 'label',
description: 'description',
input: 'input',
radioGroup: 'radio-group',
radioGroupItem: 'radio-group-item',
radioGroupItemLabel: 'radio-group-item-label',
error: 'error',
textarea: 'text-area',
select: 'select',
option: 'option',
asterisk: 'asterisk',
required: 'required',
},
verticalLayout: {
root: 'vertical-layout',
item: 'vertical-layout-item',
},
horizontalLayout: {
root: 'horizontal-layout',
item: 'horizontal-layout-item',
},
group: {
root: 'group',
label: 'group-label',
item: 'group-item',
},
arrayList: {
root: 'array-list',
legend: 'array-list-legend',
addButton: 'array-list-add',
label: 'array-list-label',
itemWrapper: 'array-list-item-wrapper',
noData: 'array-list-no-data',
item: 'array-list-item',
itemToolbar: 'array-list-item-toolbar',
itemLabel: 'array-list-item-label',
itemContent: 'array-list-item-content',
itemExpanded: 'expanded',
itemMoveUp: 'array-list-item-move-up',
itemMoveDown: 'array-list-item-move-down',
itemDelete: 'array-list-item-delete',
},
label: {
root: 'label-element',
},
dialog: {
root: 'dialog-root',
title: 'dialog-title',
body: 'dialog-body',
actions: 'dialog-actions',
buttonPrimary: 'dialog-button-primary',
buttonSecondary: 'dialog-button-secondary',
},
oneOf: {
root: 'one-of',
},
categorization: {
root: 'categorization',
category: 'categorization-category',
selected: 'categorization-selected',
panel: 'categorization-panel',
stepper: 'categorization-stepper',
stepperBadge: 'categorization-stepper-badge',
stepperLine: 'categorization-stepper-line',
stepperFooter: 'categorization-stepper-footer',
stepperButtonBack: 'categorization-stepper-button-back',
stepperButtonNext: 'categorization-stepper-button-next',
},
};