@rovula/ui 0.1.7 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/bundle.css +273 -126
- package/dist/cjs/bundle.js +1545 -1545
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/AlertDialog/AlertDialog.stories.d.ts +3 -0
- package/dist/cjs/types/components/Dialog/Dialog.d.ts +7 -1
- package/dist/cjs/types/components/Dialog/Dialog.stories.d.ts +3 -0
- package/dist/cjs/types/components/Dropdown/Dropdown.d.ts +2 -0
- package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +2 -0
- package/dist/cjs/types/components/Form/Field.d.ts +26 -0
- package/dist/cjs/types/components/Form/FieldMessage.d.ts +7 -0
- package/dist/cjs/types/components/Form/Form.d.ts +49 -11
- package/dist/cjs/types/components/Form/Form.stories.d.ts +23 -0
- package/dist/cjs/types/components/Form/ValidationHintList.d.ts +20 -0
- package/dist/cjs/types/components/Form/ValidationHintList.stories.d.ts +9 -0
- package/dist/cjs/types/components/Form/index.d.ts +10 -0
- package/dist/cjs/types/components/Form/useOptionBridge.d.ts +17 -0
- package/dist/cjs/types/components/OtpInput/OtpInput.d.ts +17 -0
- package/dist/cjs/types/components/OtpInput/OtpInput.stories.d.ts +15 -0
- package/dist/cjs/types/components/OtpInput/OtpInputGroup.d.ts +25 -0
- package/dist/cjs/types/components/OtpInput/index.d.ts +5 -0
- package/dist/cjs/types/components/TextInput/TextInput.styles.d.ts +3 -0
- package/dist/cjs/types/index.d.ts +5 -0
- package/dist/cjs/types/theme/ThemeColorCoverageRuntime.stories.d.ts +10 -0
- package/dist/cjs/types/utils/colors.d.ts +84 -0
- package/dist/components/ActionButton/ActionButton.stories.js +2 -2
- package/dist/components/ActionButton/ActionButton.styles.js +1 -1
- package/dist/components/AlertDialog/AlertDialog.js +6 -6
- package/dist/components/AlertDialog/AlertDialog.stories.js +3 -0
- package/dist/components/Avatar/Avatar.stories.js +1 -1
- package/dist/components/Avatar/Avatar.styles.js +1 -1
- package/dist/components/Avatar/AvatarBase.js +1 -1
- package/dist/components/Avatar/AvatarGroup.stories.js +1 -1
- package/dist/components/Button/Buttons.stories.js +2 -2
- package/dist/components/Calendar/Calendar.js +1 -1
- package/dist/components/Checkbox/Checkbox.js +1 -1
- package/dist/components/Checkbox/Checkbox.stories.js +17 -7
- package/dist/components/Collapsible/Collapsible.styles.js +1 -1
- package/dist/components/DataTable/DataTable.js +2 -2
- package/dist/components/Dialog/Dialog.js +12 -7
- package/dist/components/Dialog/Dialog.stories.js +90 -2
- package/dist/components/Dropdown/Dropdown.js +2 -2
- package/dist/components/DropdownMenu/DropdownMenu.js +3 -3
- package/dist/components/FocusedScrollView/FocusedScrollView.stories.js +6 -6
- package/dist/components/Form/Field.js +60 -0
- package/dist/components/Form/FieldMessage.js +24 -0
- package/dist/components/Form/Form.js +73 -41
- package/dist/components/Form/Form.stories.js +221 -0
- package/dist/components/Form/ValidationHintList.js +30 -0
- package/dist/components/Form/ValidationHintList.stories.js +50 -0
- package/dist/components/Form/index.js +5 -0
- package/dist/components/Form/useOptionBridge.js +27 -0
- package/dist/components/InputFilter/InputFilter.js +5 -4
- package/dist/components/InputFilter/InputFilter.stories.js +1 -1
- package/dist/components/InputFilter/InputFilter.styles.js +14 -1
- package/dist/components/Label/Label.styles.js +1 -1
- package/dist/components/Menu/Menu.js +2 -2
- package/dist/components/NumberInput/NumberInput.stories.js +1 -1
- package/dist/components/OtpInput/OtpInput.js +118 -0
- package/dist/components/OtpInput/OtpInput.stories.js +60 -0
- package/dist/components/OtpInput/OtpInputGroup.js +23 -0
- package/dist/components/OtpInput/index.js +3 -0
- package/dist/components/PasswordInput/PasswordInput.stories.js +1 -1
- package/dist/components/Popover/Popover.js +1 -1
- package/dist/components/RadioGroup/RadioGroup.js +1 -1
- package/dist/components/RadioGroup/RadioGroup.stories.js +2 -2
- package/dist/components/Search/Search.js +13 -1
- package/dist/components/Search/Search.stories.js +1 -1
- package/dist/components/Slider/Slider.js +1 -1
- package/dist/components/Slider/Slider.stories.js +5 -5
- package/dist/components/Switch/Switch.stories.js +2 -2
- package/dist/components/Table/Table.js +5 -5
- package/dist/components/Tabs/Tabs.js +12 -9
- package/dist/components/Tabs/Tabs.stories.js +1 -1
- package/dist/components/Text/Text.js +1 -1
- package/dist/components/Text/Text.stories.js +1 -1
- package/dist/components/TextArea/TextArea.stories.js +1 -1
- package/dist/components/TextArea/TextArea.styles.js +3 -3
- package/dist/components/TextInput/TextInput.js +3 -2
- package/dist/components/TextInput/TextInput.stories.js +3 -3
- package/dist/components/TextInput/TextInput.styles.js +41 -19
- package/dist/components/Toast/Toast.js +4 -2
- package/dist/components/Toast/Toast.stories.js +1 -1
- package/dist/components/Toast/Toast.styles.js +4 -4
- package/dist/components/Toast/Toaster.js +2 -2
- package/dist/components/Tree/Tree.stories.js +1 -1
- package/dist/components/Tree/TreeItem.js +1 -1
- package/dist/esm/bundle.css +273 -126
- package/dist/esm/bundle.js +1545 -1545
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/AlertDialog/AlertDialog.stories.d.ts +3 -0
- package/dist/esm/types/components/Dialog/Dialog.d.ts +7 -1
- package/dist/esm/types/components/Dialog/Dialog.stories.d.ts +3 -0
- package/dist/esm/types/components/Dropdown/Dropdown.d.ts +2 -0
- package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +2 -0
- package/dist/esm/types/components/Form/Field.d.ts +26 -0
- package/dist/esm/types/components/Form/FieldMessage.d.ts +7 -0
- package/dist/esm/types/components/Form/Form.d.ts +49 -11
- package/dist/esm/types/components/Form/Form.stories.d.ts +23 -0
- package/dist/esm/types/components/Form/ValidationHintList.d.ts +20 -0
- package/dist/esm/types/components/Form/ValidationHintList.stories.d.ts +9 -0
- package/dist/esm/types/components/Form/index.d.ts +10 -0
- package/dist/esm/types/components/Form/useOptionBridge.d.ts +17 -0
- package/dist/esm/types/components/OtpInput/OtpInput.d.ts +17 -0
- package/dist/esm/types/components/OtpInput/OtpInput.stories.d.ts +15 -0
- package/dist/esm/types/components/OtpInput/OtpInputGroup.d.ts +25 -0
- package/dist/esm/types/components/OtpInput/index.d.ts +5 -0
- package/dist/esm/types/components/TextInput/TextInput.styles.d.ts +3 -0
- package/dist/esm/types/index.d.ts +5 -0
- package/dist/esm/types/theme/ThemeColorCoverageRuntime.stories.d.ts +10 -0
- package/dist/esm/types/utils/colors.d.ts +84 -0
- package/dist/index.d.ts +248 -2
- package/dist/index.js +3 -0
- package/dist/src/theme/global.css +340 -151
- package/dist/theme/ThemeColorCoverageRuntime.stories.js +91 -0
- package/dist/utils/colors.js +92 -0
- package/package.json +4 -2
- package/src/components/ActionButton/ActionButton.stories.tsx +6 -6
- package/src/components/ActionButton/ActionButton.styles.ts +1 -1
- package/src/components/AlertDialog/AlertDialog.stories.tsx +22 -0
- package/src/components/AlertDialog/AlertDialog.tsx +6 -6
- package/src/components/Avatar/Avatar.stories.tsx +1 -1
- package/src/components/Avatar/Avatar.styles.ts +1 -1
- package/src/components/Avatar/AvatarBase.tsx +1 -1
- package/src/components/Avatar/AvatarGroup.stories.tsx +1 -1
- package/src/components/Button/Buttons.stories.tsx +10 -10
- package/src/components/Calendar/Calendar.tsx +3 -3
- package/src/components/Checkbox/Checkbox.stories.tsx +35 -12
- package/src/components/Checkbox/Checkbox.tsx +7 -5
- package/src/components/Collapsible/Collapsible.styles.ts +1 -1
- package/src/components/DataTable/DataTable.tsx +2 -2
- package/src/components/Dialog/Dialog.stories.tsx +173 -0
- package/src/components/Dialog/Dialog.tsx +32 -15
- package/src/components/Dropdown/Dropdown.styles.ts +1 -1
- package/src/components/Dropdown/Dropdown.tsx +16 -14
- package/src/components/DropdownMenu/DropdownMenu.tsx +3 -3
- package/src/components/FocusedScrollView/FocusedScrollView.stories.tsx +10 -10
- package/src/components/Form/Field.tsx +160 -0
- package/src/components/Form/FieldMessage.tsx +38 -0
- package/src/components/Form/Form.docs.mdx +67 -0
- package/src/components/Form/Form.stories.tsx +490 -0
- package/src/components/Form/Form.tsx +185 -87
- package/src/components/Form/README.md +284 -0
- package/src/components/Form/ValidationHintList.stories.tsx +118 -0
- package/src/components/Form/ValidationHintList.tsx +95 -0
- package/src/components/Form/index.ts +28 -0
- package/src/components/Form/useOptionBridge.ts +55 -0
- package/src/components/InputFilter/InputFilter.stories.tsx +1 -1
- package/src/components/InputFilter/InputFilter.styles.ts +14 -1
- package/src/components/InputFilter/InputFilter.tsx +33 -28
- package/src/components/Label/Label.styles.ts +2 -2
- package/src/components/Label/Label.tsx +1 -1
- package/src/components/Menu/Menu.tsx +12 -12
- package/src/components/NumberInput/NumberInput.stories.tsx +1 -1
- package/src/components/OtpInput/OtpInput.stories.tsx +168 -0
- package/src/components/OtpInput/OtpInput.tsx +223 -0
- package/src/components/OtpInput/OtpInputGroup.tsx +74 -0
- package/src/components/OtpInput/index.ts +5 -0
- package/src/components/PasswordInput/PasswordInput.stories.tsx +1 -1
- package/src/components/Popover/Popover.tsx +1 -1
- package/src/components/RadioGroup/RadioGroup.stories.tsx +4 -4
- package/src/components/RadioGroup/RadioGroup.tsx +2 -1
- package/src/components/Search/Search.stories.tsx +1 -1
- package/src/components/Search/Search.tsx +6 -2
- package/src/components/Slider/Slider.stories.tsx +7 -7
- package/src/components/Slider/Slider.tsx +1 -1
- package/src/components/Switch/Switch.stories.tsx +4 -4
- package/src/components/Table/Table.tsx +5 -5
- package/src/components/Tabs/Tabs.stories.tsx +1 -1
- package/src/components/Tabs/Tabs.tsx +29 -18
- package/src/components/Text/Text.stories.tsx +1 -1
- package/src/components/Text/Text.tsx +1 -1
- package/src/components/TextArea/TextArea.stories.tsx +1 -1
- package/src/components/TextArea/TextArea.styles.ts +3 -3
- package/src/components/TextInput/TextInput.stories.tsx +7 -7
- package/src/components/TextInput/TextInput.styles.ts +42 -19
- package/src/components/TextInput/TextInput.tsx +3 -1
- package/src/components/Toast/Toast.stories.tsx +1 -1
- package/src/components/Toast/Toast.styles.tsx +7 -7
- package/src/components/Toast/Toast.tsx +5 -4
- package/src/components/Toast/Toaster.tsx +17 -20
- package/src/components/Tree/Tree.stories.tsx +1 -1
- package/src/components/Tree/TreeItem.tsx +1 -1
- package/src/index.ts +5 -0
- package/src/theme/ThemeColorCoverageRuntime.stories.tsx +236 -0
- package/src/theme/direct-token-migration-plan.md +121 -0
- package/src/theme/figma-mcp-check-report.md +225 -0
- package/src/theme/figma-mcp-component-checklist.json +1250 -0
- package/src/theme/presets/colors.js +155 -44
- package/src/theme/themes/xspector/components/loading.css +2 -2
- package/src/theme/tokens/color.css +3 -3
- package/src/theme/tokens/components/action-button.css +1 -1
- package/src/theme/tokens/components/dropdown-menu.css +3 -3
- package/src/theme/tokens/components/loading.css +2 -2
- package/src/theme/tokens/components/switch.css +1 -1
- package/src/theme/utils.js +164 -25
- package/src/utils/colors.ts +92 -0
|
@@ -0,0 +1,1250 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"description": "Representative MCP nodes to validate button token/state mapping without scanning every permutation",
|
|
4
|
+
"coverageMode": "representative-minimum",
|
|
5
|
+
"components": [
|
|
6
|
+
{
|
|
7
|
+
"name": "Button/Primary/Solid/Default/L/NoIcon",
|
|
8
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
9
|
+
"nodeId": "9044:17724",
|
|
10
|
+
"figmaVariant": {
|
|
11
|
+
"type": "Primary",
|
|
12
|
+
"style": "Solid",
|
|
13
|
+
"state": "Default",
|
|
14
|
+
"size": "L",
|
|
15
|
+
"iconStart": "No",
|
|
16
|
+
"iconEnd": "No"
|
|
17
|
+
},
|
|
18
|
+
"codeRef": {
|
|
19
|
+
"component": "src/components/Button/Button.tsx",
|
|
20
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
21
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
22
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
23
|
+
},
|
|
24
|
+
"checks": ["color", "state", "size", "icon"],
|
|
25
|
+
"status": "checked"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "Button/Primary/Solid/Default/L/NoIcon/Capsule",
|
|
29
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
30
|
+
"nodeId": "9057:12622",
|
|
31
|
+
"figmaVariant": {
|
|
32
|
+
"type": "Primary",
|
|
33
|
+
"style": "Solid",
|
|
34
|
+
"state": "Default",
|
|
35
|
+
"size": "L",
|
|
36
|
+
"shape": "Capsule",
|
|
37
|
+
"iconStart": "No",
|
|
38
|
+
"iconEnd": "No"
|
|
39
|
+
},
|
|
40
|
+
"codeRef": {
|
|
41
|
+
"component": "src/components/Button/Button.tsx",
|
|
42
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
43
|
+
"tokens": "src/theme/themes/variable.css",
|
|
44
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
45
|
+
},
|
|
46
|
+
"checks": ["color", "state", "size", "icon", "shape"],
|
|
47
|
+
"status": "checked"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "Button/Primary/Outline/Default/L/NoIcon/Capsule",
|
|
51
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
52
|
+
"nodeId": "9057:12630",
|
|
53
|
+
"figmaVariant": {
|
|
54
|
+
"type": "Primary",
|
|
55
|
+
"style": "Outline",
|
|
56
|
+
"state": "Default",
|
|
57
|
+
"size": "L",
|
|
58
|
+
"shape": "Capsule",
|
|
59
|
+
"iconStart": "No",
|
|
60
|
+
"iconEnd": "No"
|
|
61
|
+
},
|
|
62
|
+
"codeRef": {
|
|
63
|
+
"component": "src/components/Button/Button.tsx",
|
|
64
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
65
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
66
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
67
|
+
},
|
|
68
|
+
"checks": ["color", "state", "size", "icon", "shape"],
|
|
69
|
+
"status": "checked"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "Button/Primary/Text/Default/L/NoIcon/Capsule",
|
|
73
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
74
|
+
"nodeId": "9057:12638",
|
|
75
|
+
"figmaVariant": {
|
|
76
|
+
"type": "Primary",
|
|
77
|
+
"style": "Text",
|
|
78
|
+
"state": "Default",
|
|
79
|
+
"size": "L",
|
|
80
|
+
"shape": "Capsule",
|
|
81
|
+
"iconStart": "No",
|
|
82
|
+
"iconEnd": "No"
|
|
83
|
+
},
|
|
84
|
+
"codeRef": {
|
|
85
|
+
"component": "src/components/Button/Button.tsx",
|
|
86
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
87
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
88
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
89
|
+
},
|
|
90
|
+
"checks": ["color", "state", "size", "icon", "shape"],
|
|
91
|
+
"status": "checked"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "Button/Primary/Solid/Default/M/NoIcon/Capsule",
|
|
95
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
96
|
+
"nodeId": "9057:12673",
|
|
97
|
+
"figmaVariant": {
|
|
98
|
+
"type": "Primary",
|
|
99
|
+
"style": "Solid",
|
|
100
|
+
"state": "Default",
|
|
101
|
+
"size": "M",
|
|
102
|
+
"shape": "Capsule",
|
|
103
|
+
"iconStart": "No",
|
|
104
|
+
"iconEnd": "No"
|
|
105
|
+
},
|
|
106
|
+
"codeRef": {
|
|
107
|
+
"component": "src/components/Button/Button.tsx",
|
|
108
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
109
|
+
"tokens": "src/theme/themes/variable.css",
|
|
110
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
111
|
+
},
|
|
112
|
+
"checks": ["color", "state", "size", "icon", "shape"],
|
|
113
|
+
"status": "checked"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "Button/Primary/Outline/Pressed/M/NoIcon/Capsule",
|
|
117
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
118
|
+
"nodeId": "9057:12698",
|
|
119
|
+
"figmaVariant": {
|
|
120
|
+
"type": "Primary",
|
|
121
|
+
"style": "Outline",
|
|
122
|
+
"state": "Pressed",
|
|
123
|
+
"size": "M",
|
|
124
|
+
"shape": "Capsule",
|
|
125
|
+
"iconStart": "No",
|
|
126
|
+
"iconEnd": "No"
|
|
127
|
+
},
|
|
128
|
+
"codeRef": {
|
|
129
|
+
"component": "src/components/Button/Button.tsx",
|
|
130
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
131
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
132
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
133
|
+
},
|
|
134
|
+
"checks": ["color", "state", "size", "icon", "shape"],
|
|
135
|
+
"status": "checked"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "Button/Primary/Solid/Pressed/S/IconEnd/Capsule",
|
|
139
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
140
|
+
"nodeId": "9057:12614",
|
|
141
|
+
"figmaVariant": {
|
|
142
|
+
"type": "Primary",
|
|
143
|
+
"style": "Solid",
|
|
144
|
+
"state": "Pressed",
|
|
145
|
+
"size": "S",
|
|
146
|
+
"shape": "Capsule",
|
|
147
|
+
"iconStart": "No",
|
|
148
|
+
"iconEnd": "Yes"
|
|
149
|
+
},
|
|
150
|
+
"codeRef": {
|
|
151
|
+
"component": "src/components/Button/Button.tsx",
|
|
152
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
153
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
154
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
155
|
+
},
|
|
156
|
+
"checks": ["color", "state", "size", "icon", "shape"],
|
|
157
|
+
"status": "checked"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "Button/Primary/Outline/Disable/S/IconEnd/Capsule",
|
|
161
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
162
|
+
"nodeId": "9057:12586",
|
|
163
|
+
"figmaVariant": {
|
|
164
|
+
"type": "Primary",
|
|
165
|
+
"style": "Outline",
|
|
166
|
+
"state": "Disable",
|
|
167
|
+
"size": "S",
|
|
168
|
+
"shape": "Capsule",
|
|
169
|
+
"iconStart": "No",
|
|
170
|
+
"iconEnd": "Yes"
|
|
171
|
+
},
|
|
172
|
+
"codeRef": {
|
|
173
|
+
"component": "src/components/Button/Button.tsx",
|
|
174
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
175
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
176
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
177
|
+
},
|
|
178
|
+
"checks": ["color", "state", "size", "icon", "shape"],
|
|
179
|
+
"status": "checked"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "Button/Primary/Outline/Default/L/NoIcon",
|
|
183
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
184
|
+
"nodeId": "9044:17740",
|
|
185
|
+
"figmaVariant": {
|
|
186
|
+
"type": "Primary",
|
|
187
|
+
"style": "Outline",
|
|
188
|
+
"state": "Default",
|
|
189
|
+
"size": "L",
|
|
190
|
+
"iconStart": "No",
|
|
191
|
+
"iconEnd": "No"
|
|
192
|
+
},
|
|
193
|
+
"codeRef": {
|
|
194
|
+
"component": "src/components/Button/Button.tsx",
|
|
195
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
196
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
197
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
198
|
+
},
|
|
199
|
+
"checks": ["color", "state", "size", "icon"],
|
|
200
|
+
"status": "checked"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"name": "Button/Primary/Text/Default/L/NoIcon",
|
|
204
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
205
|
+
"nodeId": "9044:17756",
|
|
206
|
+
"figmaVariant": {
|
|
207
|
+
"type": "Primary",
|
|
208
|
+
"style": "Text",
|
|
209
|
+
"state": "Default",
|
|
210
|
+
"size": "L",
|
|
211
|
+
"iconStart": "No",
|
|
212
|
+
"iconEnd": "No"
|
|
213
|
+
},
|
|
214
|
+
"codeRef": {
|
|
215
|
+
"component": "src/components/Button/Button.tsx",
|
|
216
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
217
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
218
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
219
|
+
},
|
|
220
|
+
"checks": ["color", "state", "size", "icon"],
|
|
221
|
+
"status": "checked"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"name": "Button/Primary/Solid/Hover/L/NoIcon",
|
|
225
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
226
|
+
"nodeId": "9044:17810",
|
|
227
|
+
"figmaVariant": {
|
|
228
|
+
"type": "Primary",
|
|
229
|
+
"style": "Solid",
|
|
230
|
+
"state": "Hover",
|
|
231
|
+
"size": "L",
|
|
232
|
+
"iconStart": "No",
|
|
233
|
+
"iconEnd": "No"
|
|
234
|
+
},
|
|
235
|
+
"codeRef": {
|
|
236
|
+
"component": "src/components/Button/Button.tsx",
|
|
237
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
238
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
239
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
240
|
+
},
|
|
241
|
+
"checks": ["color", "state", "size", "icon"],
|
|
242
|
+
"status": "checked"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "Button/Primary/Outline/Pressed/L/NoIcon",
|
|
246
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
247
|
+
"nodeId": "9044:17774",
|
|
248
|
+
"figmaVariant": {
|
|
249
|
+
"type": "Primary",
|
|
250
|
+
"style": "Outline",
|
|
251
|
+
"state": "Pressed",
|
|
252
|
+
"size": "L",
|
|
253
|
+
"iconStart": "No",
|
|
254
|
+
"iconEnd": "No"
|
|
255
|
+
},
|
|
256
|
+
"codeRef": {
|
|
257
|
+
"component": "src/components/Button/Button.tsx",
|
|
258
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
259
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
260
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
261
|
+
},
|
|
262
|
+
"checks": ["color", "state", "size", "icon"],
|
|
263
|
+
"status": "checked"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"name": "Button/Primary/Text/Loading/L/NoIcon",
|
|
267
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
268
|
+
"nodeId": "9044:17795",
|
|
269
|
+
"figmaVariant": {
|
|
270
|
+
"type": "Primary",
|
|
271
|
+
"style": "Text",
|
|
272
|
+
"state": "Loading",
|
|
273
|
+
"size": "L",
|
|
274
|
+
"iconStart": "No",
|
|
275
|
+
"iconEnd": "No"
|
|
276
|
+
},
|
|
277
|
+
"codeRef": {
|
|
278
|
+
"component": "src/components/Button/Button.tsx",
|
|
279
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
280
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
281
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
282
|
+
},
|
|
283
|
+
"checks": ["color", "state", "size", "icon"],
|
|
284
|
+
"status": "checked"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"name": "Button/Primary/Solid/Disable/L/NoIcon",
|
|
288
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
289
|
+
"nodeId": "9044:17738",
|
|
290
|
+
"figmaVariant": {
|
|
291
|
+
"type": "Primary",
|
|
292
|
+
"style": "Solid",
|
|
293
|
+
"state": "Disable",
|
|
294
|
+
"size": "L",
|
|
295
|
+
"iconStart": "No",
|
|
296
|
+
"iconEnd": "No"
|
|
297
|
+
},
|
|
298
|
+
"codeRef": {
|
|
299
|
+
"component": "src/components/Button/Button.tsx",
|
|
300
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
301
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
302
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
303
|
+
},
|
|
304
|
+
"checks": ["color", "state", "size", "icon"],
|
|
305
|
+
"status": "checked"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "Button/Primary/Solid/Default/M/NoIcon",
|
|
309
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
310
|
+
"nodeId": "9044:17829",
|
|
311
|
+
"figmaVariant": {
|
|
312
|
+
"type": "Primary",
|
|
313
|
+
"style": "Solid",
|
|
314
|
+
"state": "Default",
|
|
315
|
+
"size": "M",
|
|
316
|
+
"iconStart": "No",
|
|
317
|
+
"iconEnd": "No"
|
|
318
|
+
},
|
|
319
|
+
"codeRef": {
|
|
320
|
+
"component": "src/components/Button/Button.tsx",
|
|
321
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
322
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
323
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
324
|
+
},
|
|
325
|
+
"checks": ["color", "state", "size", "icon"],
|
|
326
|
+
"status": "checked"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"name": "Button/Primary/Solid/Default/S/NoIcon",
|
|
330
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
331
|
+
"nodeId": "9044:17934",
|
|
332
|
+
"figmaVariant": {
|
|
333
|
+
"type": "Primary",
|
|
334
|
+
"style": "Solid",
|
|
335
|
+
"state": "Default",
|
|
336
|
+
"size": "S",
|
|
337
|
+
"iconStart": "No",
|
|
338
|
+
"iconEnd": "No"
|
|
339
|
+
},
|
|
340
|
+
"codeRef": {
|
|
341
|
+
"component": "src/components/Button/Button.tsx",
|
|
342
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
343
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
344
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
345
|
+
},
|
|
346
|
+
"checks": ["color", "state", "size", "icon"],
|
|
347
|
+
"status": "checked"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "Button/Primary/Solid/Default/L/IconStart",
|
|
351
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
352
|
+
"nodeId": "9044:16788",
|
|
353
|
+
"figmaVariant": {
|
|
354
|
+
"type": "Primary",
|
|
355
|
+
"style": "Solid",
|
|
356
|
+
"state": "Default",
|
|
357
|
+
"size": "L",
|
|
358
|
+
"iconStart": "Yes",
|
|
359
|
+
"iconEnd": "No"
|
|
360
|
+
},
|
|
361
|
+
"codeRef": {
|
|
362
|
+
"component": "src/components/Button/Button.tsx",
|
|
363
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
364
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
365
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
366
|
+
},
|
|
367
|
+
"checks": ["color", "state", "size", "icon"],
|
|
368
|
+
"status": "checked"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "Button/Primary/Solid/Default/L/IconEnd",
|
|
372
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
373
|
+
"nodeId": "9044:17256",
|
|
374
|
+
"figmaVariant": {
|
|
375
|
+
"type": "Primary",
|
|
376
|
+
"style": "Solid",
|
|
377
|
+
"state": "Default",
|
|
378
|
+
"size": "L",
|
|
379
|
+
"iconStart": "No",
|
|
380
|
+
"iconEnd": "Yes"
|
|
381
|
+
},
|
|
382
|
+
"codeRef": {
|
|
383
|
+
"component": "src/components/Button/Button.tsx",
|
|
384
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
385
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
386
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
387
|
+
},
|
|
388
|
+
"checks": ["color", "state", "size", "icon"],
|
|
389
|
+
"status": "checked"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"name": "Button/Secondary/Solid/Default/L/NoIcon",
|
|
393
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
394
|
+
"nodeId": "9044:17726",
|
|
395
|
+
"figmaVariant": {
|
|
396
|
+
"type": "Secondary",
|
|
397
|
+
"style": "Solid",
|
|
398
|
+
"state": "Default",
|
|
399
|
+
"size": "L",
|
|
400
|
+
"iconStart": "No",
|
|
401
|
+
"iconEnd": "No"
|
|
402
|
+
},
|
|
403
|
+
"codeRef": {
|
|
404
|
+
"component": "src/components/Button/Button.tsx",
|
|
405
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
406
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
407
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
408
|
+
},
|
|
409
|
+
"checks": ["color", "state", "size", "icon"],
|
|
410
|
+
"status": "checked"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"name": "Button/Specific-Warning/Outline/Hover/L/NoIcon",
|
|
414
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
415
|
+
"nodeId": "9044:17785",
|
|
416
|
+
"figmaVariant": {
|
|
417
|
+
"type": "Specific-Warning",
|
|
418
|
+
"style": "Outline",
|
|
419
|
+
"state": "Hover",
|
|
420
|
+
"size": "L",
|
|
421
|
+
"iconStart": "No",
|
|
422
|
+
"iconEnd": "No"
|
|
423
|
+
},
|
|
424
|
+
"codeRef": {
|
|
425
|
+
"component": "src/components/Button/Button.tsx",
|
|
426
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
427
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
428
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
429
|
+
},
|
|
430
|
+
"checks": ["color", "state", "size", "icon"],
|
|
431
|
+
"status": "checked"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"name": "Button/Specific-Success/Text/Default/M/NoIcon",
|
|
435
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
436
|
+
"nodeId": "9044:17871",
|
|
437
|
+
"figmaVariant": {
|
|
438
|
+
"type": "Specific-Success",
|
|
439
|
+
"style": "Text",
|
|
440
|
+
"state": "Default",
|
|
441
|
+
"size": "M",
|
|
442
|
+
"iconStart": "No",
|
|
443
|
+
"iconEnd": "No"
|
|
444
|
+
},
|
|
445
|
+
"codeRef": {
|
|
446
|
+
"component": "src/components/Button/Button.tsx",
|
|
447
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
448
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
449
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
450
|
+
},
|
|
451
|
+
"checks": ["color", "state", "size", "icon"],
|
|
452
|
+
"status": "checked"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"name": "Button/Specific-Error/Solid/Default/L/NoIcon",
|
|
456
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
457
|
+
"nodeId": "9044:17736",
|
|
458
|
+
"figmaVariant": {
|
|
459
|
+
"type": "Specific-Error",
|
|
460
|
+
"style": "Solid",
|
|
461
|
+
"state": "Default",
|
|
462
|
+
"size": "L",
|
|
463
|
+
"iconStart": "No",
|
|
464
|
+
"iconEnd": "No"
|
|
465
|
+
},
|
|
466
|
+
"codeRef": {
|
|
467
|
+
"component": "src/components/Button/Button.tsx",
|
|
468
|
+
"styles": "src/components/Button/Button.styles.ts",
|
|
469
|
+
"tokens": "src/theme/tokens/components/button.css",
|
|
470
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
471
|
+
},
|
|
472
|
+
"checks": ["color", "state", "size", "icon"],
|
|
473
|
+
"status": "checked"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"name": "ActionButton/Function/Solid/Default/L/Round",
|
|
477
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
478
|
+
"nodeId": "9044:18043",
|
|
479
|
+
"figmaVariant": {
|
|
480
|
+
"type": "Function",
|
|
481
|
+
"style": "Solid",
|
|
482
|
+
"state": "Default",
|
|
483
|
+
"size": "L",
|
|
484
|
+
"shape": "Round",
|
|
485
|
+
"iconOnly": true
|
|
486
|
+
},
|
|
487
|
+
"codeRef": {
|
|
488
|
+
"component": "src/components/ActionButton/ActionButton.tsx",
|
|
489
|
+
"styles": "src/components/ActionButton/ActionButton.styles.ts",
|
|
490
|
+
"tokens": "src/theme/tokens/components/action-button.css",
|
|
491
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
492
|
+
},
|
|
493
|
+
"checks": ["color", "state", "size", "shape", "icon"],
|
|
494
|
+
"status": "checked"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"name": "ActionButton/Function/Outline/Default/L/Round",
|
|
498
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
499
|
+
"nodeId": "9044:18045",
|
|
500
|
+
"figmaVariant": {
|
|
501
|
+
"type": "Function",
|
|
502
|
+
"style": "Outline",
|
|
503
|
+
"state": "Default",
|
|
504
|
+
"size": "L",
|
|
505
|
+
"shape": "Round",
|
|
506
|
+
"iconOnly": true
|
|
507
|
+
},
|
|
508
|
+
"codeRef": {
|
|
509
|
+
"component": "src/components/ActionButton/ActionButton.tsx",
|
|
510
|
+
"styles": "src/components/ActionButton/ActionButton.styles.ts",
|
|
511
|
+
"tokens": "src/theme/tokens/components/action-button.css",
|
|
512
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
513
|
+
},
|
|
514
|
+
"checks": ["color", "state", "size", "shape", "icon"],
|
|
515
|
+
"status": "checked"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"name": "ActionButton/Function/Icon/Default/L/Round",
|
|
519
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
520
|
+
"nodeId": "9044:18047",
|
|
521
|
+
"figmaVariant": {
|
|
522
|
+
"type": "Function",
|
|
523
|
+
"style": "Icon",
|
|
524
|
+
"state": "Default",
|
|
525
|
+
"size": "L",
|
|
526
|
+
"shape": "Round",
|
|
527
|
+
"iconOnly": true
|
|
528
|
+
},
|
|
529
|
+
"codeRef": {
|
|
530
|
+
"component": "src/components/ActionButton/ActionButton.tsx",
|
|
531
|
+
"styles": "src/components/ActionButton/ActionButton.styles.ts",
|
|
532
|
+
"tokens": "src/theme/tokens/components/action-button.css",
|
|
533
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
534
|
+
},
|
|
535
|
+
"checks": ["color", "state", "size", "shape", "icon"],
|
|
536
|
+
"status": "checked"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"name": "ActionButton/Function/Solid/Hover/L/Round",
|
|
540
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
541
|
+
"nodeId": "9044:18065",
|
|
542
|
+
"figmaVariant": {
|
|
543
|
+
"type": "Function",
|
|
544
|
+
"style": "Solid",
|
|
545
|
+
"state": "Hover",
|
|
546
|
+
"size": "L",
|
|
547
|
+
"shape": "Round",
|
|
548
|
+
"iconOnly": true
|
|
549
|
+
},
|
|
550
|
+
"codeRef": {
|
|
551
|
+
"component": "src/components/ActionButton/ActionButton.tsx",
|
|
552
|
+
"styles": "src/components/ActionButton/ActionButton.styles.ts",
|
|
553
|
+
"tokens": "src/theme/tokens/components/action-button.css",
|
|
554
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
555
|
+
},
|
|
556
|
+
"checks": ["color", "state", "size", "shape", "icon"],
|
|
557
|
+
"status": "checked"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"name": "ActionButton/Function/Outline/Active/L/Round",
|
|
561
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
562
|
+
"nodeId": "9044:18089",
|
|
563
|
+
"figmaVariant": {
|
|
564
|
+
"type": "Function",
|
|
565
|
+
"style": "Outline",
|
|
566
|
+
"state": "Active",
|
|
567
|
+
"size": "L",
|
|
568
|
+
"shape": "Round",
|
|
569
|
+
"iconOnly": true
|
|
570
|
+
},
|
|
571
|
+
"codeRef": {
|
|
572
|
+
"component": "src/components/ActionButton/ActionButton.tsx",
|
|
573
|
+
"styles": "src/components/ActionButton/ActionButton.styles.ts",
|
|
574
|
+
"tokens": "src/theme/tokens/components/action-button.css",
|
|
575
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
576
|
+
},
|
|
577
|
+
"checks": ["color", "state", "size", "shape", "icon"],
|
|
578
|
+
"status": "checked"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"name": "ActionButton/Function/Outline/Active-Hover/L/Round",
|
|
582
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
583
|
+
"nodeId": "9044:18111",
|
|
584
|
+
"figmaVariant": {
|
|
585
|
+
"type": "Function",
|
|
586
|
+
"style": "Outline",
|
|
587
|
+
"state": "Active - Hover",
|
|
588
|
+
"size": "L",
|
|
589
|
+
"shape": "Round",
|
|
590
|
+
"iconOnly": true
|
|
591
|
+
},
|
|
592
|
+
"codeRef": {
|
|
593
|
+
"component": "src/components/ActionButton/ActionButton.tsx",
|
|
594
|
+
"styles": "src/components/ActionButton/ActionButton.styles.ts",
|
|
595
|
+
"tokens": "src/theme/tokens/components/action-button.css",
|
|
596
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
597
|
+
},
|
|
598
|
+
"checks": ["color", "state", "size", "shape", "icon"],
|
|
599
|
+
"status": "checked"
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"name": "ActionButton/Function/Outline/Disable/L/Round",
|
|
603
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
604
|
+
"nodeId": "9044:18133",
|
|
605
|
+
"figmaVariant": {
|
|
606
|
+
"type": "Function",
|
|
607
|
+
"style": "Outline",
|
|
608
|
+
"state": "Disable",
|
|
609
|
+
"size": "L",
|
|
610
|
+
"shape": "Round",
|
|
611
|
+
"iconOnly": true
|
|
612
|
+
},
|
|
613
|
+
"codeRef": {
|
|
614
|
+
"component": "src/components/ActionButton/ActionButton.tsx",
|
|
615
|
+
"styles": "src/components/ActionButton/ActionButton.styles.ts",
|
|
616
|
+
"tokens": "src/theme/tokens/components/action-button.css",
|
|
617
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
618
|
+
},
|
|
619
|
+
"checks": ["color", "state", "size", "shape", "icon"],
|
|
620
|
+
"status": "checked"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"name": "ActionButton/Function/Icon/Default/XXS/Round",
|
|
624
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
625
|
+
"nodeId": "9044:18063",
|
|
626
|
+
"figmaVariant": {
|
|
627
|
+
"type": "Function",
|
|
628
|
+
"style": "Icon",
|
|
629
|
+
"state": "Default",
|
|
630
|
+
"size": "XXS",
|
|
631
|
+
"shape": "Round",
|
|
632
|
+
"iconOnly": true
|
|
633
|
+
},
|
|
634
|
+
"codeRef": {
|
|
635
|
+
"component": "src/components/ActionButton/ActionButton.tsx",
|
|
636
|
+
"styles": "src/components/ActionButton/ActionButton.styles.ts",
|
|
637
|
+
"tokens": "src/theme/tokens/components/action-button.css",
|
|
638
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
639
|
+
},
|
|
640
|
+
"checks": ["color", "state", "size", "shape", "icon"],
|
|
641
|
+
"status": "checked"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"name": "TextInput/Default/Outline/L/Required",
|
|
645
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
646
|
+
"nodeId": "42037:209129",
|
|
647
|
+
"figmaVariant": {
|
|
648
|
+
"type": "TextField",
|
|
649
|
+
"style": "Outline",
|
|
650
|
+
"state": "Default",
|
|
651
|
+
"size": "L",
|
|
652
|
+
"required": true
|
|
653
|
+
},
|
|
654
|
+
"codeRef": {
|
|
655
|
+
"component": "src/components/TextInput/TextInput.tsx",
|
|
656
|
+
"styles": "src/components/TextInput/TextInput.styles.ts",
|
|
657
|
+
"tokens": "src/theme/presets/colors.js",
|
|
658
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
659
|
+
},
|
|
660
|
+
"checks": ["color", "state", "size", "shape", "required"],
|
|
661
|
+
"status": "checked"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"name": "TextInput/Default/Outline/M/Required",
|
|
665
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
666
|
+
"nodeId": "40388:258895",
|
|
667
|
+
"figmaVariant": {
|
|
668
|
+
"type": "Input field",
|
|
669
|
+
"style": "Outline",
|
|
670
|
+
"state": "Default",
|
|
671
|
+
"size": "M",
|
|
672
|
+
"required": true
|
|
673
|
+
},
|
|
674
|
+
"codeRef": {
|
|
675
|
+
"component": "src/components/TextInput/TextInput.tsx",
|
|
676
|
+
"styles": "src/components/TextInput/TextInput.styles.ts",
|
|
677
|
+
"tokens": "src/theme/presets/colors.js",
|
|
678
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
679
|
+
},
|
|
680
|
+
"checks": ["color", "state", "size", "shape", "required"],
|
|
681
|
+
"status": "checked"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"name": "TextInput/Default/Outline/S/Required",
|
|
685
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
686
|
+
"nodeId": "40388:258903",
|
|
687
|
+
"figmaVariant": {
|
|
688
|
+
"type": "Input field",
|
|
689
|
+
"style": "Outline",
|
|
690
|
+
"state": "Default",
|
|
691
|
+
"size": "S",
|
|
692
|
+
"required": true
|
|
693
|
+
},
|
|
694
|
+
"codeRef": {
|
|
695
|
+
"component": "src/components/TextInput/TextInput.tsx",
|
|
696
|
+
"styles": "src/components/TextInput/TextInput.styles.ts",
|
|
697
|
+
"tokens": "src/theme/presets/colors.js",
|
|
698
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
699
|
+
},
|
|
700
|
+
"checks": ["color", "state", "size", "shape", "required"],
|
|
701
|
+
"status": "checked"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"name": "TextInput/FocusTyping/Outline/L/Required",
|
|
705
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
706
|
+
"nodeId": "40388:259075",
|
|
707
|
+
"figmaVariant": {
|
|
708
|
+
"type": "Input field",
|
|
709
|
+
"style": "Outline",
|
|
710
|
+
"state": "Focus + Typing",
|
|
711
|
+
"size": "L",
|
|
712
|
+
"required": true
|
|
713
|
+
},
|
|
714
|
+
"codeRef": {
|
|
715
|
+
"component": "src/components/TextInput/TextInput.tsx",
|
|
716
|
+
"styles": "src/components/TextInput/TextInput.styles.ts",
|
|
717
|
+
"tokens": "src/theme/presets/colors.js",
|
|
718
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
719
|
+
},
|
|
720
|
+
"checks": ["color", "state", "size", "shape", "required"],
|
|
721
|
+
"status": "checked"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"name": "TextInput/Filled/Outline/L/Required",
|
|
725
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
726
|
+
"nodeId": "40388:259093",
|
|
727
|
+
"figmaVariant": {
|
|
728
|
+
"type": "Input field",
|
|
729
|
+
"style": "Outline",
|
|
730
|
+
"state": "Filled",
|
|
731
|
+
"size": "L",
|
|
732
|
+
"required": true
|
|
733
|
+
},
|
|
734
|
+
"codeRef": {
|
|
735
|
+
"component": "src/components/TextInput/TextInput.tsx",
|
|
736
|
+
"styles": "src/components/TextInput/TextInput.styles.ts",
|
|
737
|
+
"tokens": "src/theme/presets/colors.js",
|
|
738
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
739
|
+
},
|
|
740
|
+
"checks": ["color", "state", "size", "shape", "required"],
|
|
741
|
+
"status": "checked"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"name": "TextInput/Disable/Outline/L/Required",
|
|
745
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
746
|
+
"nodeId": "40388:258911",
|
|
747
|
+
"figmaVariant": {
|
|
748
|
+
"type": "Input field",
|
|
749
|
+
"style": "Outline",
|
|
750
|
+
"state": "Disable",
|
|
751
|
+
"size": "L",
|
|
752
|
+
"required": true
|
|
753
|
+
},
|
|
754
|
+
"codeRef": {
|
|
755
|
+
"component": "src/components/TextInput/TextInput.tsx",
|
|
756
|
+
"styles": "src/components/TextInput/TextInput.styles.ts",
|
|
757
|
+
"tokens": "src/theme/presets/colors.js",
|
|
758
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
759
|
+
},
|
|
760
|
+
"checks": ["color", "state", "size", "shape", "required"],
|
|
761
|
+
"status": "checked"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"name": "TextInput/Error/Outline/L/Required",
|
|
765
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
766
|
+
"nodeId": "40388:259165",
|
|
767
|
+
"figmaVariant": {
|
|
768
|
+
"type": "Input field",
|
|
769
|
+
"style": "Outline",
|
|
770
|
+
"state": "Error",
|
|
771
|
+
"size": "L",
|
|
772
|
+
"required": true
|
|
773
|
+
},
|
|
774
|
+
"codeRef": {
|
|
775
|
+
"component": "src/components/TextInput/TextInput.tsx",
|
|
776
|
+
"styles": "src/components/TextInput/TextInput.styles.ts",
|
|
777
|
+
"tokens": "src/theme/presets/colors.js",
|
|
778
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
779
|
+
},
|
|
780
|
+
"checks": ["color", "state", "size", "shape", "required", "remark"],
|
|
781
|
+
"status": "checked"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"name": "TextInput/ErrorFilled/Outline/L/Required",
|
|
785
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
786
|
+
"nodeId": "40388:259135",
|
|
787
|
+
"figmaVariant": {
|
|
788
|
+
"type": "Input field",
|
|
789
|
+
"style": "Outline",
|
|
790
|
+
"state": "Error + Filled",
|
|
791
|
+
"size": "L",
|
|
792
|
+
"required": true
|
|
793
|
+
},
|
|
794
|
+
"codeRef": {
|
|
795
|
+
"component": "src/components/TextInput/TextInput.tsx",
|
|
796
|
+
"styles": "src/components/TextInput/TextInput.styles.ts",
|
|
797
|
+
"tokens": "src/theme/presets/colors.js",
|
|
798
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
799
|
+
},
|
|
800
|
+
"checks": ["color", "state", "size", "shape", "required", "remark"],
|
|
801
|
+
"status": "checked"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"name": "InputFilter/Default/NotFilled/L",
|
|
805
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
806
|
+
"nodeId": "3150:80315",
|
|
807
|
+
"figmaVariant": {
|
|
808
|
+
"type": "Input function",
|
|
809
|
+
"state": "Default",
|
|
810
|
+
"hoverFilled": "No",
|
|
811
|
+
"size": "L"
|
|
812
|
+
},
|
|
813
|
+
"codeRef": {
|
|
814
|
+
"component": "src/components/InputFilter/InputFilter.tsx",
|
|
815
|
+
"styles": "src/components/InputFilter/InputFilter.styles.ts",
|
|
816
|
+
"inputStyles": "src/components/TextInput/TextInput.styles.ts",
|
|
817
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
818
|
+
},
|
|
819
|
+
"checks": ["color", "state", "size", "shape", "icon", "filled"],
|
|
820
|
+
"status": "checked"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"name": "InputFilter/Default/Filled/L",
|
|
824
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
825
|
+
"nodeId": "3150:80299",
|
|
826
|
+
"figmaVariant": {
|
|
827
|
+
"type": "Input function",
|
|
828
|
+
"state": "Default",
|
|
829
|
+
"hoverFilled": "Yes",
|
|
830
|
+
"size": "L"
|
|
831
|
+
},
|
|
832
|
+
"codeRef": {
|
|
833
|
+
"component": "src/components/InputFilter/InputFilter.tsx",
|
|
834
|
+
"styles": "src/components/InputFilter/InputFilter.styles.ts",
|
|
835
|
+
"inputStyles": "src/components/TextInput/TextInput.styles.ts",
|
|
836
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
837
|
+
},
|
|
838
|
+
"checks": ["color", "state", "size", "shape", "icon", "filled"],
|
|
839
|
+
"status": "checked"
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"name": "InputFilter/Active/Filled/L",
|
|
843
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
844
|
+
"nodeId": "3150:80310",
|
|
845
|
+
"figmaVariant": {
|
|
846
|
+
"type": "Input function",
|
|
847
|
+
"state": "Active",
|
|
848
|
+
"hoverFilled": "Yes",
|
|
849
|
+
"size": "L"
|
|
850
|
+
},
|
|
851
|
+
"codeRef": {
|
|
852
|
+
"component": "src/components/InputFilter/InputFilter.tsx",
|
|
853
|
+
"styles": "src/components/InputFilter/InputFilter.styles.ts",
|
|
854
|
+
"inputStyles": "src/components/TextInput/TextInput.styles.ts",
|
|
855
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
856
|
+
},
|
|
857
|
+
"checks": ["color", "state", "size", "shape", "icon", "filled"],
|
|
858
|
+
"status": "checked"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"name": "InputFilter/Disable/NotFilled/L",
|
|
862
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
863
|
+
"nodeId": "3150:80302",
|
|
864
|
+
"figmaVariant": {
|
|
865
|
+
"type": "Input function",
|
|
866
|
+
"state": "Disable",
|
|
867
|
+
"hoverFilled": "No",
|
|
868
|
+
"size": "L"
|
|
869
|
+
},
|
|
870
|
+
"codeRef": {
|
|
871
|
+
"component": "src/components/InputFilter/InputFilter.tsx",
|
|
872
|
+
"styles": "src/components/InputFilter/InputFilter.styles.ts",
|
|
873
|
+
"inputStyles": "src/components/TextInput/TextInput.styles.ts",
|
|
874
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
875
|
+
},
|
|
876
|
+
"checks": ["color", "state", "size", "shape", "icon", "filled"],
|
|
877
|
+
"status": "checked"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"name": "InputFilter/Default/NotFilled/S",
|
|
881
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
882
|
+
"nodeId": "3150:80305",
|
|
883
|
+
"figmaVariant": {
|
|
884
|
+
"type": "Input function",
|
|
885
|
+
"state": "Default",
|
|
886
|
+
"hoverFilled": "No",
|
|
887
|
+
"size": "S"
|
|
888
|
+
},
|
|
889
|
+
"codeRef": {
|
|
890
|
+
"component": "src/components/InputFilter/InputFilter.tsx",
|
|
891
|
+
"styles": "src/components/InputFilter/InputFilter.styles.ts",
|
|
892
|
+
"inputStyles": "src/components/TextInput/TextInput.styles.ts",
|
|
893
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
894
|
+
},
|
|
895
|
+
"checks": ["color", "state", "size", "shape", "icon", "filled"],
|
|
896
|
+
"status": "checked"
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"name": "InputFilter/InputSegment/Default/L",
|
|
900
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
901
|
+
"nodeId": "3150:80013",
|
|
902
|
+
"figmaVariant": {
|
|
903
|
+
"type": "Input segment",
|
|
904
|
+
"state": "Default",
|
|
905
|
+
"size": "L"
|
|
906
|
+
},
|
|
907
|
+
"codeRef": {
|
|
908
|
+
"component": "src/components/InputFilter/InputFilter.tsx",
|
|
909
|
+
"sharedStyles": "src/components/Dropdown/Dropdown.styles.ts",
|
|
910
|
+
"inputStyles": "src/components/TextInput/TextInput.styles.ts",
|
|
911
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
912
|
+
},
|
|
913
|
+
"checks": ["border", "shape", "spacing", "textColor"],
|
|
914
|
+
"status": "checked"
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"name": "Search/Default-Focus-Filled-Disable/S-M-L",
|
|
918
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
919
|
+
"nodeId": "40388:259223",
|
|
920
|
+
"figmaVariant": {
|
|
921
|
+
"type": "Search field",
|
|
922
|
+
"states": ["Default", "Focus", "Filled", "Disable"],
|
|
923
|
+
"sizes": ["S", "M", "L"]
|
|
924
|
+
},
|
|
925
|
+
"codeRef": {
|
|
926
|
+
"component": "src/components/Search/Search.tsx",
|
|
927
|
+
"dropdownComponent": "src/components/Dropdown/Dropdown.tsx",
|
|
928
|
+
"inputComponent": "src/components/TextInput/TextInput.tsx",
|
|
929
|
+
"inputStyles": "src/components/TextInput/TextInput.styles.ts",
|
|
930
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
931
|
+
},
|
|
932
|
+
"checks": ["color", "state", "size", "spacing", "shape", "icon"],
|
|
933
|
+
"status": "checked"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"name": "Tabs/Text-Icon-Loading/Default-Hover-Active-Disable",
|
|
937
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
938
|
+
"nodeId": "9478:6430",
|
|
939
|
+
"figmaVariant": {
|
|
940
|
+
"type": "Tab",
|
|
941
|
+
"variants": ["Text", "Have icon", "Have loading"],
|
|
942
|
+
"iconPosition": ["No", "Left", "Right"],
|
|
943
|
+
"states": ["Default", "Hover", "Active", "Disable"]
|
|
944
|
+
},
|
|
945
|
+
"codeRef": {
|
|
946
|
+
"component": "src/components/Tabs/Tabs.tsx",
|
|
947
|
+
"styles": "src/components/Tabs/Tabs.css",
|
|
948
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
949
|
+
},
|
|
950
|
+
"checks": ["color", "state", "spacing", "icon", "loading", "indicator"],
|
|
951
|
+
"status": "checked"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"name": "Tabs/Text/Active/NoHover/NoDisable/NoIcon",
|
|
955
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
956
|
+
"nodeId": "9478:6452",
|
|
957
|
+
"figmaVariant": {
|
|
958
|
+
"type": "Text",
|
|
959
|
+
"active": "Yes",
|
|
960
|
+
"hover": "No",
|
|
961
|
+
"disable": "No",
|
|
962
|
+
"iconPosition": "No"
|
|
963
|
+
},
|
|
964
|
+
"codeRef": {
|
|
965
|
+
"component": "src/components/Tabs/Tabs.tsx"
|
|
966
|
+
},
|
|
967
|
+
"checks": ["textColor", "indicator"],
|
|
968
|
+
"status": "checked"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"name": "Tabs/Text/Active/Hover/NoDisable/NoIcon",
|
|
972
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
973
|
+
"nodeId": "9482:10539",
|
|
974
|
+
"figmaVariant": {
|
|
975
|
+
"type": "Text",
|
|
976
|
+
"active": "Yes",
|
|
977
|
+
"hover": "Yes",
|
|
978
|
+
"disable": "No",
|
|
979
|
+
"iconPosition": "No"
|
|
980
|
+
},
|
|
981
|
+
"codeRef": {
|
|
982
|
+
"component": "src/components/Tabs/Tabs.tsx"
|
|
983
|
+
},
|
|
984
|
+
"checks": ["textColor", "indicatorHover"],
|
|
985
|
+
"status": "checked"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"name": "Tabs/Text/Inactive/NoHover/NoDisable/NoIcon",
|
|
989
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
990
|
+
"nodeId": "9478:6499",
|
|
991
|
+
"figmaVariant": {
|
|
992
|
+
"type": "Text",
|
|
993
|
+
"active": "No",
|
|
994
|
+
"hover": "No",
|
|
995
|
+
"disable": "No",
|
|
996
|
+
"iconPosition": "No"
|
|
997
|
+
},
|
|
998
|
+
"codeRef": {
|
|
999
|
+
"component": "src/components/Tabs/Tabs.tsx"
|
|
1000
|
+
},
|
|
1001
|
+
"checks": ["textColor"],
|
|
1002
|
+
"status": "checked"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"name": "Tabs/Text/Inactive/NoHover/Disable/NoIcon",
|
|
1006
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
1007
|
+
"nodeId": "9478:6530",
|
|
1008
|
+
"figmaVariant": {
|
|
1009
|
+
"type": "Text",
|
|
1010
|
+
"active": "No",
|
|
1011
|
+
"hover": "No",
|
|
1012
|
+
"disable": "Yes",
|
|
1013
|
+
"iconPosition": "No"
|
|
1014
|
+
},
|
|
1015
|
+
"codeRef": {
|
|
1016
|
+
"component": "src/components/Tabs/Tabs.tsx"
|
|
1017
|
+
},
|
|
1018
|
+
"checks": ["textColor", "indicatorVisibility"],
|
|
1019
|
+
"status": "checked"
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"name": "Tabs/IconLeft/Inactive/NoHover/NoDisable",
|
|
1023
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
1024
|
+
"nodeId": "9478:6471",
|
|
1025
|
+
"figmaVariant": {
|
|
1026
|
+
"type": "Have icon",
|
|
1027
|
+
"active": "No",
|
|
1028
|
+
"hover": "No",
|
|
1029
|
+
"disable": "No",
|
|
1030
|
+
"iconPosition": "Left"
|
|
1031
|
+
},
|
|
1032
|
+
"codeRef": {
|
|
1033
|
+
"component": "src/components/Tabs/Tabs.tsx"
|
|
1034
|
+
},
|
|
1035
|
+
"checks": ["iconSize", "iconColor", "spacing"],
|
|
1036
|
+
"status": "checked"
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"name": "Tabs/IconRight/Inactive/Hover/NoDisable",
|
|
1040
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
1041
|
+
"nodeId": "9478:6492",
|
|
1042
|
+
"figmaVariant": {
|
|
1043
|
+
"type": "Have icon",
|
|
1044
|
+
"active": "No",
|
|
1045
|
+
"hover": "Yes",
|
|
1046
|
+
"disable": "No",
|
|
1047
|
+
"iconPosition": "Right"
|
|
1048
|
+
},
|
|
1049
|
+
"codeRef": {
|
|
1050
|
+
"component": "src/components/Tabs/Tabs.tsx"
|
|
1051
|
+
},
|
|
1052
|
+
"checks": ["iconSize", "iconColor", "spacing", "indicatorHover"],
|
|
1053
|
+
"status": "checked"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"name": "Tabs/LoadingLeft/Inactive/NoHover/NoDisable",
|
|
1057
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
1058
|
+
"nodeId": "9478:6457",
|
|
1059
|
+
"figmaVariant": {
|
|
1060
|
+
"type": "Have loading",
|
|
1061
|
+
"active": "No",
|
|
1062
|
+
"hover": "No",
|
|
1063
|
+
"disable": "No",
|
|
1064
|
+
"iconPosition": "Left"
|
|
1065
|
+
},
|
|
1066
|
+
"codeRef": {
|
|
1067
|
+
"component": "src/components/Tabs/Tabs.tsx"
|
|
1068
|
+
},
|
|
1069
|
+
"checks": ["loadingSize", "loadingColor", "spacing"],
|
|
1070
|
+
"status": "checked"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"name": "Tabs/LoadingLeft/Inactive/NoHover/Disable",
|
|
1074
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
1075
|
+
"nodeId": "9478:6509",
|
|
1076
|
+
"figmaVariant": {
|
|
1077
|
+
"type": "Have loading",
|
|
1078
|
+
"active": "No",
|
|
1079
|
+
"hover": "No",
|
|
1080
|
+
"disable": "Yes",
|
|
1081
|
+
"iconPosition": "Left"
|
|
1082
|
+
},
|
|
1083
|
+
"codeRef": {
|
|
1084
|
+
"component": "src/components/Tabs/Tabs.tsx"
|
|
1085
|
+
},
|
|
1086
|
+
"checks": ["loadingSize", "loadingColor", "textColor"],
|
|
1087
|
+
"status": "checked"
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"name": "Loading/Icon/Default/16",
|
|
1091
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
1092
|
+
"nodeId": "42096:153887",
|
|
1093
|
+
"figmaVariant": {
|
|
1094
|
+
"type": "Loading icon",
|
|
1095
|
+
"state": "Default",
|
|
1096
|
+
"size": "16"
|
|
1097
|
+
},
|
|
1098
|
+
"codeRef": {
|
|
1099
|
+
"component": "src/components/Loading/Loading.tsx",
|
|
1100
|
+
"tokens": "src/theme/tokens/components/loading.css",
|
|
1101
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
1102
|
+
},
|
|
1103
|
+
"checks": ["size", "trackColor", "progressColor", "stroke", "shape"],
|
|
1104
|
+
"status": "checked"
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"name": "Checkbox/StateMatrix/Default-Hover-Disable-Checked-Indeterminate",
|
|
1108
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
1109
|
+
"nodeId": "40388:258859",
|
|
1110
|
+
"figmaVariant": {
|
|
1111
|
+
"type": "Checkbox",
|
|
1112
|
+
"states": [
|
|
1113
|
+
"Unchecked-Default",
|
|
1114
|
+
"Unchecked-Hover",
|
|
1115
|
+
"Unchecked-Disable",
|
|
1116
|
+
"Checked-Default",
|
|
1117
|
+
"Checked-Hover",
|
|
1118
|
+
"Checked-Disable",
|
|
1119
|
+
"Indeterminate-Default",
|
|
1120
|
+
"Indeterminate-Hover",
|
|
1121
|
+
"Indeterminate-Disable"
|
|
1122
|
+
],
|
|
1123
|
+
"referenceNodes": [
|
|
1124
|
+
"40388:258866",
|
|
1125
|
+
"40393:105741",
|
|
1126
|
+
"40388:258867",
|
|
1127
|
+
"40388:258860",
|
|
1128
|
+
"40393:105757",
|
|
1129
|
+
"40393:105754",
|
|
1130
|
+
"9112:22361",
|
|
1131
|
+
"9112:22369",
|
|
1132
|
+
"9218:7150"
|
|
1133
|
+
]
|
|
1134
|
+
},
|
|
1135
|
+
"codeRef": {
|
|
1136
|
+
"component": "src/components/Checkbox/Checkbox.tsx",
|
|
1137
|
+
"stories": "src/components/Checkbox/Checkbox.stories.tsx",
|
|
1138
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
1139
|
+
},
|
|
1140
|
+
"checks": ["color", "state", "shape", "icon", "disabled"],
|
|
1141
|
+
"status": "checked"
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"name": "Radio/StateMatrix/Default-Hover-Disable-Checked",
|
|
1145
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
1146
|
+
"nodeId": "40388:258859",
|
|
1147
|
+
"figmaVariant": {
|
|
1148
|
+
"type": "Radio",
|
|
1149
|
+
"states": [
|
|
1150
|
+
"Unchecked-Default",
|
|
1151
|
+
"Unchecked-Hover",
|
|
1152
|
+
"Unchecked-Disable",
|
|
1153
|
+
"Checked-Default",
|
|
1154
|
+
"Checked-Hover",
|
|
1155
|
+
"Checked-Disable"
|
|
1156
|
+
],
|
|
1157
|
+
"referenceNodes": [
|
|
1158
|
+
"40388:258868",
|
|
1159
|
+
"40393:105742",
|
|
1160
|
+
"40388:258876",
|
|
1161
|
+
"40388:258870",
|
|
1162
|
+
"9113:1550",
|
|
1163
|
+
"9113:1552"
|
|
1164
|
+
]
|
|
1165
|
+
},
|
|
1166
|
+
"codeRef": {
|
|
1167
|
+
"component": "src/components/RadioGroup/RadioGroup.tsx",
|
|
1168
|
+
"stories": "src/components/RadioGroup/RadioGroup.stories.tsx",
|
|
1169
|
+
"tailwindPreset": "src/theme/presets/colors.js"
|
|
1170
|
+
},
|
|
1171
|
+
"checks": ["color", "state", "shape", "innerDot", "disabled"],
|
|
1172
|
+
"status": "checked"
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"name": "Switch/Toggle/On-Off/Default-Hover-Disable",
|
|
1176
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
1177
|
+
"nodeId": "2112:6315",
|
|
1178
|
+
"figmaVariant": {
|
|
1179
|
+
"type": "Toggle",
|
|
1180
|
+
"states": [
|
|
1181
|
+
"On-Default",
|
|
1182
|
+
"On-Hover",
|
|
1183
|
+
"On-Disable",
|
|
1184
|
+
"Off-Default",
|
|
1185
|
+
"Off-Hover",
|
|
1186
|
+
"Off-Disable"
|
|
1187
|
+
],
|
|
1188
|
+
"referenceNodes": [
|
|
1189
|
+
"2112:6314",
|
|
1190
|
+
"2112:6312",
|
|
1191
|
+
"2112:6310",
|
|
1192
|
+
"2112:6313",
|
|
1193
|
+
"2112:6311",
|
|
1194
|
+
"2112:6309"
|
|
1195
|
+
]
|
|
1196
|
+
},
|
|
1197
|
+
"codeRef": {
|
|
1198
|
+
"component": "src/components/Switch/Switch.tsx",
|
|
1199
|
+
"styles": "src/components/Switch/Switch.styles.ts",
|
|
1200
|
+
"tokens": "src/theme/tokens/components/switch.css",
|
|
1201
|
+
"stories": "src/components/Switch/Switch.stories.tsx"
|
|
1202
|
+
},
|
|
1203
|
+
"checks": [
|
|
1204
|
+
"color",
|
|
1205
|
+
"state",
|
|
1206
|
+
"thumbPosition",
|
|
1207
|
+
"opacity",
|
|
1208
|
+
"hover",
|
|
1209
|
+
"disabled",
|
|
1210
|
+
"shadow"
|
|
1211
|
+
],
|
|
1212
|
+
"status": "checked"
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
"name": "Toast/Success-Warning-Error/Action-TextModes",
|
|
1216
|
+
"fileKey": "Y7WDo50B1xGjKWpKvO8TuA",
|
|
1217
|
+
"nodeId": "9171:21362",
|
|
1218
|
+
"figmaVariant": {
|
|
1219
|
+
"type": "Toast",
|
|
1220
|
+
"states": ["Success", "Warning", "Error"],
|
|
1221
|
+
"haveAction": ["No", "Yes"],
|
|
1222
|
+
"textMode": ["SingleLine", "TwoLines"],
|
|
1223
|
+
"referenceNodes": [
|
|
1224
|
+
"9171:21363",
|
|
1225
|
+
"9171:21370",
|
|
1226
|
+
"9171:21379",
|
|
1227
|
+
"9171:21395",
|
|
1228
|
+
"9171:21434",
|
|
1229
|
+
"9171:21442"
|
|
1230
|
+
]
|
|
1231
|
+
},
|
|
1232
|
+
"codeRef": {
|
|
1233
|
+
"component": "src/components/Toast/Toast.tsx",
|
|
1234
|
+
"styles": "src/components/Toast/Toast.styles.tsx",
|
|
1235
|
+
"toaster": "src/components/Toast/Toaster.tsx",
|
|
1236
|
+
"stories": "src/components/Toast/Toast.stories.tsx"
|
|
1237
|
+
},
|
|
1238
|
+
"checks": [
|
|
1239
|
+
"color",
|
|
1240
|
+
"state",
|
|
1241
|
+
"spacing",
|
|
1242
|
+
"shadow",
|
|
1243
|
+
"icon",
|
|
1244
|
+
"action",
|
|
1245
|
+
"contentMode"
|
|
1246
|
+
],
|
|
1247
|
+
"status": "checked"
|
|
1248
|
+
}
|
|
1249
|
+
]
|
|
1250
|
+
}
|