fis-component 0.0.25 → 0.0.27
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/index.js +57831 -51279
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/assets/icons/CaretIcon.d.ts +3 -0
- package/dist/cjs/types/src/assets/icons/MoreIcon.d.ts +1 -0
- package/dist/cjs/types/src/assets/icons/UploadIcon.d.ts +1 -0
- package/dist/cjs/types/src/assets/icons/index.d.ts +3 -0
- package/dist/cjs/types/src/components/Avatar/Avatar.stories.d.ts +11 -2
- package/dist/cjs/types/src/components/Avatar/index.d.ts +5 -5
- package/dist/cjs/types/src/components/Avatar/styles.d.ts +3 -3
- package/dist/cjs/types/src/components/Badge/Badge.stories.d.ts +56 -1
- package/dist/cjs/types/src/components/Badge/index.d.ts +1 -1
- package/dist/cjs/types/src/components/Breadcrumb/Breadcrumb.stories.d.ts +8 -14
- package/dist/cjs/types/src/components/Button/styles.d.ts +2 -7
- package/dist/cjs/types/src/components/ChipButton/ChipButton.stories.d.ts +26 -2
- package/dist/cjs/types/src/components/ChipButton/index.d.ts +13 -5
- package/dist/cjs/types/src/components/Collapse/Collapse.stories.d.ts +15 -0
- package/dist/cjs/types/src/components/Collapse/index.d.ts +18 -0
- package/dist/cjs/types/src/components/Collapse/styles.d.ts +28 -0
- package/dist/cjs/types/src/components/Input/InputField/InputField.stories.d.ts +21 -5
- package/dist/cjs/types/src/components/Input/InputField/index.d.ts +2 -0
- package/dist/cjs/types/src/components/Input/InputStepper/InputStepper.stories.d.ts +77 -5
- package/dist/cjs/types/src/components/Input/InputText/InputText.stories.d.ts +12 -2
- package/dist/cjs/types/src/components/Notification/NotificationRender.d.ts +3 -0
- package/dist/cjs/types/src/components/Notification/context.d.ts +12 -0
- package/dist/cjs/types/src/components/Notification/index.d.ts +9 -0
- package/dist/cjs/types/src/components/Notification/stories/InfoUpdate.stories.d.ts +4 -0
- package/dist/cjs/types/src/components/Notification/stories/InfomationMockIcon.d.ts +1 -0
- package/dist/cjs/types/src/components/Notification/stories/SystemUpdate.stories.d.ts +4 -0
- package/dist/cjs/types/src/components/Notification/style.d.ts +21 -0
- package/dist/cjs/types/src/components/Notification/type.d.ts +25 -0
- package/dist/cjs/types/src/components/Notification/useNotification.d.ts +8 -0
- package/dist/cjs/types/src/components/ProgressCircular/Determinate.d.ts +3 -0
- package/dist/cjs/types/src/components/ProgressCircular/Indeterminate.d.ts +2 -0
- package/dist/cjs/types/src/components/ProgressCircular/ProgressCircular.stories.d.ts +5 -0
- package/dist/cjs/types/src/components/ProgressCircular/index.d.ts +14 -0
- package/dist/cjs/types/src/components/ProgressCircular/styles.d.ts +10 -0
- package/dist/cjs/types/src/components/ProgressCircular/util.d.ts +2 -0
- package/dist/cjs/types/src/components/ProgressLinear/Determinate.d.ts +2 -0
- package/dist/cjs/types/src/components/ProgressLinear/Indeterminate.d.ts +2 -0
- package/dist/cjs/types/src/components/ProgressLinear/ProgressLinear.stories.d.ts +5 -0
- package/dist/cjs/types/src/components/ProgressLinear/index.d.ts +13 -0
- package/dist/cjs/types/src/components/ProgressLinear/styles.d.ts +10 -0
- package/dist/cjs/types/src/components/Provider/globalStyle.d.ts +4 -0
- package/dist/cjs/types/src/components/SplitButton/SplitButton.stories.d.ts +12 -0
- package/dist/cjs/types/src/components/SplitButton/SplitButtonIcon.d.ts +4 -0
- package/dist/cjs/types/src/components/SplitButton/SplitButtonItem.d.ts +4 -0
- package/dist/cjs/types/src/components/SplitButton/index.d.ts +18 -0
- package/dist/cjs/types/src/components/SplitButton/styles.d.ts +16 -0
- package/dist/cjs/types/src/components/SplitButton/types.d.ts +21 -0
- package/dist/cjs/types/src/components/Table/ColumnCell/ColumnCell.stories.d.ts +2 -6
- package/dist/cjs/types/src/components/Table/ColumnCell/index.d.ts +3 -3
- package/dist/cjs/types/src/components/Table/ColumnCell/styles.d.ts +5 -5
- package/dist/cjs/types/src/components/Table/HeaderCell/HeaderCell.stories.d.ts +12 -14
- package/dist/cjs/types/src/components/Table/HeaderCell/index.d.ts +9 -7
- package/dist/cjs/types/src/components/Table/HeaderCell/styles.d.ts +4 -6
- package/dist/cjs/types/src/components/Table/Table/Table.stories.d.ts +8 -1
- package/dist/cjs/types/src/components/Table/Table/index.d.ts +1 -0
- package/dist/cjs/types/src/components/Table/Table/styles.d.ts +5 -1
- package/dist/cjs/types/src/components/Toast/Toast.stories.d.ts +141 -4
- package/dist/cjs/types/src/components/Toast/index.d.ts +1 -0
- package/dist/cjs/types/src/constants/regex.d.ts +1 -0
- package/dist/cjs/types/src/index.d.ts +5 -1
- package/dist/cjs/types/src/styles/design-system/variable.d.ts +218 -110
- package/dist/cjs/types/src/styles-entry.d.ts +1 -0
- package/dist/cjs/types/src/utils/getTheme.d.ts +218 -110
- package/dist/esm/index.js +57826 -51278
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/assets/icons/CaretIcon.d.ts +3 -0
- package/dist/esm/types/src/assets/icons/MoreIcon.d.ts +1 -0
- package/dist/esm/types/src/assets/icons/UploadIcon.d.ts +1 -0
- package/dist/esm/types/src/assets/icons/index.d.ts +3 -0
- package/dist/esm/types/src/components/Avatar/Avatar.stories.d.ts +11 -2
- package/dist/esm/types/src/components/Avatar/index.d.ts +5 -5
- package/dist/esm/types/src/components/Avatar/styles.d.ts +3 -3
- package/dist/esm/types/src/components/Badge/Badge.stories.d.ts +56 -1
- package/dist/esm/types/src/components/Badge/index.d.ts +1 -1
- package/dist/esm/types/src/components/Breadcrumb/Breadcrumb.stories.d.ts +8 -14
- package/dist/esm/types/src/components/Button/styles.d.ts +2 -7
- package/dist/esm/types/src/components/ChipButton/ChipButton.stories.d.ts +26 -2
- package/dist/esm/types/src/components/ChipButton/index.d.ts +13 -5
- package/dist/esm/types/src/components/Collapse/Collapse.stories.d.ts +15 -0
- package/dist/esm/types/src/components/Collapse/index.d.ts +18 -0
- package/dist/esm/types/src/components/Collapse/styles.d.ts +28 -0
- package/dist/esm/types/src/components/Input/InputField/InputField.stories.d.ts +21 -5
- package/dist/esm/types/src/components/Input/InputField/index.d.ts +2 -0
- package/dist/esm/types/src/components/Input/InputStepper/InputStepper.stories.d.ts +77 -5
- package/dist/esm/types/src/components/Input/InputText/InputText.stories.d.ts +12 -2
- package/dist/esm/types/src/components/Notification/NotificationRender.d.ts +3 -0
- package/dist/esm/types/src/components/Notification/context.d.ts +12 -0
- package/dist/esm/types/src/components/Notification/index.d.ts +9 -0
- package/dist/esm/types/src/components/Notification/stories/InfoUpdate.stories.d.ts +4 -0
- package/dist/esm/types/src/components/Notification/stories/InfomationMockIcon.d.ts +1 -0
- package/dist/esm/types/src/components/Notification/stories/SystemUpdate.stories.d.ts +4 -0
- package/dist/esm/types/src/components/Notification/style.d.ts +21 -0
- package/dist/esm/types/src/components/Notification/type.d.ts +25 -0
- package/dist/esm/types/src/components/Notification/useNotification.d.ts +8 -0
- package/dist/esm/types/src/components/ProgressCircular/Determinate.d.ts +3 -0
- package/dist/esm/types/src/components/ProgressCircular/Indeterminate.d.ts +2 -0
- package/dist/esm/types/src/components/ProgressCircular/ProgressCircular.stories.d.ts +5 -0
- package/dist/esm/types/src/components/ProgressCircular/index.d.ts +14 -0
- package/dist/esm/types/src/components/ProgressCircular/styles.d.ts +10 -0
- package/dist/esm/types/src/components/ProgressCircular/util.d.ts +2 -0
- package/dist/esm/types/src/components/ProgressLinear/Determinate.d.ts +2 -0
- package/dist/esm/types/src/components/ProgressLinear/Indeterminate.d.ts +2 -0
- package/dist/esm/types/src/components/ProgressLinear/ProgressLinear.stories.d.ts +5 -0
- package/dist/esm/types/src/components/ProgressLinear/index.d.ts +13 -0
- package/dist/esm/types/src/components/ProgressLinear/styles.d.ts +10 -0
- package/dist/esm/types/src/components/Provider/globalStyle.d.ts +4 -0
- package/dist/esm/types/src/components/SplitButton/SplitButton.stories.d.ts +12 -0
- package/dist/esm/types/src/components/SplitButton/SplitButtonIcon.d.ts +4 -0
- package/dist/esm/types/src/components/SplitButton/SplitButtonItem.d.ts +4 -0
- package/dist/esm/types/src/components/SplitButton/index.d.ts +18 -0
- package/dist/esm/types/src/components/SplitButton/styles.d.ts +16 -0
- package/dist/esm/types/src/components/SplitButton/types.d.ts +21 -0
- package/dist/esm/types/src/components/Table/ColumnCell/ColumnCell.stories.d.ts +2 -6
- package/dist/esm/types/src/components/Table/ColumnCell/index.d.ts +3 -3
- package/dist/esm/types/src/components/Table/ColumnCell/styles.d.ts +5 -5
- package/dist/esm/types/src/components/Table/HeaderCell/HeaderCell.stories.d.ts +12 -14
- package/dist/esm/types/src/components/Table/HeaderCell/index.d.ts +9 -7
- package/dist/esm/types/src/components/Table/HeaderCell/styles.d.ts +4 -6
- package/dist/esm/types/src/components/Table/Table/Table.stories.d.ts +8 -1
- package/dist/esm/types/src/components/Table/Table/index.d.ts +1 -0
- package/dist/esm/types/src/components/Table/Table/styles.d.ts +5 -1
- package/dist/esm/types/src/components/Toast/Toast.stories.d.ts +141 -4
- package/dist/esm/types/src/components/Toast/index.d.ts +1 -0
- package/dist/esm/types/src/constants/regex.d.ts +1 -0
- package/dist/esm/types/src/index.d.ts +5 -1
- package/dist/esm/types/src/styles/design-system/variable.d.ts +218 -110
- package/dist/esm/types/src/styles-entry.d.ts +1 -0
- package/dist/esm/types/src/utils/getTheme.d.ts +218 -110
- package/dist/index.d.ts +322 -137
- package/package.json +1 -1
|
@@ -35,6 +35,7 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
35
35
|
readonly "com/accordion/head/background-color/default": "#ffffff00";
|
|
36
36
|
readonly "com/accordion/head/background-color/hover": "#02305e16";
|
|
37
37
|
readonly "com/accordion/head/background-color/disable": "#ffffff00";
|
|
38
|
+
readonly "com/accordion/divider/stroke-width": "1px";
|
|
38
39
|
readonly "com/accordion/body/size-sm/top-padding": "8px";
|
|
39
40
|
readonly "com/accordion/body/size-sm/left-padding": "0px";
|
|
40
41
|
readonly "com/accordion/body/size-sm/right-padding": "0px";
|
|
@@ -82,10 +83,10 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
82
83
|
readonly "com/avatar/theme/icon/color-icon/ocean": "#00969d";
|
|
83
84
|
readonly "com/avatar/theme/icon/color-icon/green": "#009559";
|
|
84
85
|
readonly "com/avatar/theme/icon/color-icon/lime": "#4b8c00";
|
|
85
|
-
readonly "com/avatar/theme/icon/color-icon/blue": "#008ee1";
|
|
86
|
-
readonly "com/avatar/theme/icon/color-icon/indigo": "#4278f5";
|
|
87
86
|
readonly "com/avatar/theme/icon/color-icon/pink": "#cd44a7";
|
|
88
87
|
readonly "com/avatar/theme/icon/color-icon/violet": "#a65dcf";
|
|
88
|
+
readonly "com/avatar/theme/icon/color-icon/indigo": "#4278f5";
|
|
89
|
+
readonly "com/avatar/theme/icon/color-icon/blue": "#008ee1";
|
|
89
90
|
readonly "com/avatar/theme/label/color-text/neutral": "#828f96";
|
|
90
91
|
readonly "com/avatar/theme/label/color-text/red": "#df3e3f";
|
|
91
92
|
readonly "com/avatar/theme/label/color-text/orange": "#cc5602";
|
|
@@ -128,8 +129,8 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
128
129
|
readonly "com/avatar/status-badge/size-sm/stroke-width": "1.3px";
|
|
129
130
|
readonly "com/avatar/status-badge/size-md/stroke-width": "2px";
|
|
130
131
|
readonly "com/avatar/status-badge/size-lg/stroke-width": "2px";
|
|
131
|
-
readonly "com/avatar/status-badge/theme/red": "#f5685f";
|
|
132
132
|
readonly "com/avatar/status-badge/theme/green": "#00b077";
|
|
133
|
+
readonly "com/avatar/status-badge/theme/red": "#f5685f";
|
|
133
134
|
readonly "com/avatar/status-badge/theme/yellow": "#d58e00";
|
|
134
135
|
readonly "com/avatar/status-badge/theme/blue": "#00a6e5";
|
|
135
136
|
readonly "com/avatar/status-badge/theme/neutral": "#dee3e7";
|
|
@@ -142,8 +143,8 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
142
143
|
readonly "com/alert-banner/stroke-width": "1px";
|
|
143
144
|
readonly "com/alert-banner/label/horizonal-gap": "12px";
|
|
144
145
|
readonly "com/alert-banner/label/vertical-gap": "4px";
|
|
145
|
-
readonly "com/alert-banner/icon-wrap/height": "20px";
|
|
146
146
|
readonly "com/alert-banner/close-wrap/margin": "-4px";
|
|
147
|
+
readonly "com/alert-banner/icon-wrap/height": "20px";
|
|
147
148
|
readonly "com/alert-banner/icon/left-padding": "4px";
|
|
148
149
|
readonly "com/alert-banner/icon/size-icon": "20px";
|
|
149
150
|
readonly "com/alert-banner/action/horizontal-gap": "16px";
|
|
@@ -154,9 +155,9 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
154
155
|
readonly "com/alert-banner/theme/icon/color-icon/negative": "#d8473c";
|
|
155
156
|
readonly "com/alert-banner/theme/title/color-text/neutral": "#1e2225";
|
|
156
157
|
readonly "com/alert-banner/theme/title/color-text/info": "#1e2225";
|
|
157
|
-
readonly "com/alert-banner/theme/title/color-text/negative": "#1e2225";
|
|
158
158
|
readonly "com/alert-banner/theme/title/color-text/positive": "#1e2225";
|
|
159
159
|
readonly "com/alert-banner/theme/title/color-text/caution": "#1e2225";
|
|
160
|
+
readonly "com/alert-banner/theme/title/color-text/negative": "#1e2225";
|
|
160
161
|
readonly "com/alert-banner/theme/description/color-text/neutral": "#505a5f";
|
|
161
162
|
readonly "com/alert-banner/theme/description/color-text/info": "#505a5f";
|
|
162
163
|
readonly "com/alert-banner/theme/description/color-text/positive": "#505a5f";
|
|
@@ -282,13 +283,13 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
282
283
|
readonly "com/badge/solid/background-color/indigo": "#4278f5";
|
|
283
284
|
readonly "com/badge/solid/background-color/violet": "#a65dcf";
|
|
284
285
|
readonly "com/badge/solid/background-color/pink": "#cd44a7";
|
|
285
|
-
readonly "com/badge/solid/background-color/negative": "#d0121c";
|
|
286
|
-
readonly "com/badge/solid/background-color/positive": "#007d35";
|
|
287
286
|
readonly "com/badge/solid/background-color/caution": "#a94900";
|
|
288
287
|
readonly "com/badge/solid/background-color/info": "#006bdf";
|
|
288
|
+
readonly "com/badge/solid/background-color/positive": "#007d35";
|
|
289
|
+
readonly "com/badge/solid/background-color/negative": "#d0121c";
|
|
289
290
|
readonly "com/badge/disable/icon/color-icon": "#c5cdd2";
|
|
290
|
-
readonly "com/badge/disable/label/color-text": "#c5cdd2";
|
|
291
291
|
readonly "com/badge/disable/color-stroke": "#02305e16";
|
|
292
|
+
readonly "com/badge/disable/label/color-text": "#c5cdd2";
|
|
292
293
|
readonly "com/badge/disable/background-color": "#ffffff";
|
|
293
294
|
readonly "com/breadcrumbs/module/horizontal-gap": "4px";
|
|
294
295
|
readonly "com/breadcrumbs/module/horizontal-padding": "4px";
|
|
@@ -355,13 +356,10 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
355
356
|
readonly "com/button/disable-invert/stroke-color": "#ffffff30";
|
|
356
357
|
readonly "com/button/loading/background-color": "#e9edf1";
|
|
357
358
|
readonly "com/button/loading/background-color-transparent": "#ffffff00";
|
|
358
|
-
readonly "com/button/loading/stroke-color": "#
|
|
359
|
-
readonly "com/button/loading/icon/stroke-color": "#343d41";
|
|
360
|
-
readonly "com/button/loading/icon/stroke-color-transparent": "#02305e16";
|
|
359
|
+
readonly "com/button/loading/stroke-color": "#02305e16";
|
|
361
360
|
readonly "com/button/loading-invert/solid-background-color": "#ffffff30";
|
|
362
361
|
readonly "com/button/loading-invert/background-color-transparent": "#ffffff00";
|
|
363
|
-
readonly "com/button/loading-invert/
|
|
364
|
-
readonly "com/button/loading-invert/icon/stroke-color-transparent": "#ffffff00";
|
|
362
|
+
readonly "com/button/loading-invert/stroke-color": "#ffffff30";
|
|
365
363
|
readonly "com/button/primary/background/default": "#2f3cc1";
|
|
366
364
|
readonly "com/button/primary/background/hover": "#3263e7";
|
|
367
365
|
readonly "com/button/primary/background/pressed": "#242173";
|
|
@@ -479,6 +477,86 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
479
477
|
readonly "com/button-group/divider/divider-color/disable": "#02305e16";
|
|
480
478
|
readonly "com/button-group/background-color/default": "#ffffff";
|
|
481
479
|
readonly "com/button-group/background-color/disable": "#ffffff00";
|
|
480
|
+
readonly "com/menu/top-padding": "8px";
|
|
481
|
+
readonly "com/menu/right-padding": "8px";
|
|
482
|
+
readonly "com/menu/bottom-padding": "8px";
|
|
483
|
+
readonly "com/menu/left-padding": "8px";
|
|
484
|
+
readonly "com/menu/corner-radius": "12px";
|
|
485
|
+
readonly "com/menu/background-color": "#ffffff";
|
|
486
|
+
readonly "com/menu/min-width": "132px";
|
|
487
|
+
readonly "com/menu/max-height": "780px";
|
|
488
|
+
readonly "com/menu/search-bar/size": "Md (36)";
|
|
489
|
+
readonly "com/menu/scrollbar/direction": "Vertical";
|
|
490
|
+
readonly "com/menu/group-label/horizontal-padding": "8px";
|
|
491
|
+
readonly "com/menu/group-label/vertical-padding": "4px";
|
|
492
|
+
readonly "com/menu/group-label/color-text": "#828f96";
|
|
493
|
+
readonly "com/menu/border/stroke-width": "1px";
|
|
494
|
+
readonly "com/menu/border/color-stroke": "#0a2f4d22";
|
|
495
|
+
readonly "com/menu/divider/stroke-width": "1px";
|
|
496
|
+
readonly "com/menu/divider/color-stroke": "#0a2f4d22";
|
|
497
|
+
readonly "com/menu/divider/padding": "Xs (8)";
|
|
498
|
+
readonly "com/menu/item/horizontal-gap": "8px";
|
|
499
|
+
readonly "com/menu/item/vertical-gap": "2px";
|
|
500
|
+
readonly "com/menu/item/corner-radius": "6px";
|
|
501
|
+
readonly "com/menu/item/min-width": "204px";
|
|
502
|
+
readonly "com/menu/item/size-md/vertical-padding": "8px";
|
|
503
|
+
readonly "com/menu/item/size-md/horizontal-padding": "8px";
|
|
504
|
+
readonly "com/menu/item/size-md/min-height": "36px";
|
|
505
|
+
readonly "com/menu/item/size-md/icon/size-icon": "20px";
|
|
506
|
+
readonly "com/menu/item/size-lg/vertical-padding": "12px";
|
|
507
|
+
readonly "com/menu/item/size-lg/horizontal-padding": "12px";
|
|
508
|
+
readonly "com/menu/item/size-lg/min-height": "44px";
|
|
509
|
+
readonly "com/menu/item/size-lg/icon/size-icon": "20px";
|
|
510
|
+
readonly "com/menu/item/action/icon/color-icon/default": "#505a5f";
|
|
511
|
+
readonly "com/menu/item/action/icon/color-icon/hover": "#343d41";
|
|
512
|
+
readonly "com/menu/item/action/label/color-text/default": "#505a5f";
|
|
513
|
+
readonly "com/menu/item/action/label/color-text/hover": "#1e2225";
|
|
514
|
+
readonly "com/menu/item/action/description/color-text/default": "#828f96";
|
|
515
|
+
readonly "com/menu/item/action/description/color-text/hover": "#505a5f";
|
|
516
|
+
readonly "com/menu/item/action/background-color/default": "#ffffff00";
|
|
517
|
+
readonly "com/menu/item/action/background-color/hover": "#02305e16";
|
|
518
|
+
readonly "com/menu/item/action/background-color/selected": "#00375b0e";
|
|
519
|
+
readonly "com/menu/item/action/badge/size": "Sm (20)";
|
|
520
|
+
readonly "com/menu/item/action/badge/theme": "Neutral - Light";
|
|
521
|
+
readonly "com/menu/item/leveling/label/color-text/default": "#505a5f";
|
|
522
|
+
readonly "com/menu/item/leveling/label/color-text/hover": "#1e2225";
|
|
523
|
+
readonly "com/menu/item/leveling/label/color-text/selected": "#2a30a0";
|
|
524
|
+
readonly "com/menu/item/leveling/description/color-text/default": "#828f96";
|
|
525
|
+
readonly "com/menu/item/leveling/description/color-text/hover": "#505a5f";
|
|
526
|
+
readonly "com/menu/item/leveling/description/color-text/selected": "#828f96";
|
|
527
|
+
readonly "com/menu/item/leveling/icon/color-icon/default": "#505a5f";
|
|
528
|
+
readonly "com/menu/item/leveling/icon/color-icon/hover": "#343d41";
|
|
529
|
+
readonly "com/menu/item/leveling/icon/color-icon/selected": "#2f3cc1";
|
|
530
|
+
readonly "com/menu/item/leveling/background-color/default": "#ffffff00";
|
|
531
|
+
readonly "com/menu/item/leveling/background-color/hover": "#02305e16";
|
|
532
|
+
readonly "com/menu/item/leveling/background-color/selected": "#f5f8fc";
|
|
533
|
+
readonly "com/menu/item/select-able/label/color-text/default": "#505a5f";
|
|
534
|
+
readonly "com/menu/item/select-able/label/color-text/hover": "#1e2225";
|
|
535
|
+
readonly "com/menu/item/select-able/label/color-text/selected": "#2a30a0";
|
|
536
|
+
readonly "com/menu/item/select-able/description/color-text/default": "#828f96";
|
|
537
|
+
readonly "com/menu/item/select-able/description/color-text/hover": "#505a5f";
|
|
538
|
+
readonly "com/menu/item/select-able/description/color-text/selected": "#828f96";
|
|
539
|
+
readonly "com/menu/item/select-able/icon/color-icon/default": "#505a5f";
|
|
540
|
+
readonly "com/menu/item/select-able/icon/color-icon/hover": "#343d41";
|
|
541
|
+
readonly "com/menu/item/select-able/icon/color-icon/selected": "#2f3cc1";
|
|
542
|
+
readonly "com/menu/item/select-able/background-color/default": "#ffffff00";
|
|
543
|
+
readonly "com/menu/item/select-able/background-color/hover": "#02305e16";
|
|
544
|
+
readonly "com/menu/item/select-able/background-color/selected": "#f5f8fc";
|
|
545
|
+
readonly "com/menu/item/disable/label/color-text": "#c5cdd2";
|
|
546
|
+
readonly "com/menu/item/disable/description/color-text": "#c5cdd2";
|
|
547
|
+
readonly "com/menu/item/disable/icon/color-icon": "#c5cdd2";
|
|
548
|
+
readonly "com/menu/item/disable/background/background-color": "#ffffff00";
|
|
549
|
+
readonly "com/menu/item/action-negative/icon/color-icon/default": "#d8473c";
|
|
550
|
+
readonly "com/menu/item/action-negative/icon/color-icon/hover": "#d8473c";
|
|
551
|
+
readonly "com/menu/item/action-negative/label/color-text/default": "#a80a12";
|
|
552
|
+
readonly "com/menu/item/action-negative/label/color-text/hover": "#a80a12";
|
|
553
|
+
readonly "com/menu/item/action-negative/description/color-text/default": "#828f96";
|
|
554
|
+
readonly "com/menu/item/action-negative/description/color-text/hover": "#505a5f";
|
|
555
|
+
readonly "com/menu/item/action-negative/background-color/default": "#ffffff00";
|
|
556
|
+
readonly "com/menu/item/action-negative/background-color/hover": "#fee9e7";
|
|
557
|
+
readonly "com/menu/item/action-negative/background-color/selected": "#feeeed";
|
|
558
|
+
readonly "com/menu/item/action-negative/badge/size": "Sm (20)";
|
|
559
|
+
readonly "com/menu/item/action-negative/badge/theme": "Neutral - Light";
|
|
482
560
|
readonly "com/checkbox/horizontal-gap": "8px";
|
|
483
561
|
readonly "com/checkbox/item/stroke-width": "1px";
|
|
484
562
|
readonly "com/checkbox/item/marked/background-color/default": "#2f3cc1";
|
|
@@ -947,75 +1025,6 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
947
1025
|
readonly "com/link/invert/label-color/hover": "#ffffff";
|
|
948
1026
|
readonly "com/link/invert/icon-color/default": "#ffffff";
|
|
949
1027
|
readonly "com/link/invert/icon-color/hover": "#ffffff";
|
|
950
|
-
readonly "com/menu/right-padding": "8px";
|
|
951
|
-
readonly "com/menu/left-padding": "8px";
|
|
952
|
-
readonly "com/menu/top-padding": "8px";
|
|
953
|
-
readonly "com/menu/bottom-padding": "8px";
|
|
954
|
-
readonly "com/menu/corner-radius": "12px";
|
|
955
|
-
readonly "com/menu/background-color": "#ffffff";
|
|
956
|
-
readonly "com/menu/min-width": "132px";
|
|
957
|
-
readonly "com/menu/max-height": "780px";
|
|
958
|
-
readonly "com/menu/search-bar/size": "Md (36)";
|
|
959
|
-
readonly "com/menu/scrollbar/direction": "Vertical";
|
|
960
|
-
readonly "com/menu/group-label/horizontal-padding": "8px";
|
|
961
|
-
readonly "com/menu/group-label/vertical-padding": "4px";
|
|
962
|
-
readonly "com/menu/group-label/color-text": "#828f96";
|
|
963
|
-
readonly "com/menu/border/stroke-width": "1px";
|
|
964
|
-
readonly "com/menu/border/color-stroke": "#0a2f4d22";
|
|
965
|
-
readonly "com/menu/divider/stroke-width": "1px";
|
|
966
|
-
readonly "com/menu/divider/color-stroke": "#0a2f4d22";
|
|
967
|
-
readonly "com/menu/divider/padding": "Xs (8)";
|
|
968
|
-
readonly "com/menu/item/horizontal-gap": "8px";
|
|
969
|
-
readonly "com/menu/item/vertical-gap": "2px";
|
|
970
|
-
readonly "com/menu/item/corner-radius": "6px";
|
|
971
|
-
readonly "com/menu/item/min-width": "204px";
|
|
972
|
-
readonly "com/menu/item/size-md/vertical-padding": "8px";
|
|
973
|
-
readonly "com/menu/item/size-md/horizontal-padding": "8px";
|
|
974
|
-
readonly "com/menu/item/size-md/min-height": "36px";
|
|
975
|
-
readonly "com/menu/item/size-md/icon/size-icon": "20px";
|
|
976
|
-
readonly "com/menu/item/size-lg/vertical-padding": "12px";
|
|
977
|
-
readonly "com/menu/item/size-lg/horizontal-padding": "12px";
|
|
978
|
-
readonly "com/menu/item/size-lg/min-height": "44px";
|
|
979
|
-
readonly "com/menu/item/size-lg/icon/size-icon": "20px";
|
|
980
|
-
readonly "com/menu/item/action/icon/color-icon/default": "#505a5f";
|
|
981
|
-
readonly "com/menu/item/action/icon/color-icon/hover": "#343d41";
|
|
982
|
-
readonly "com/menu/item/action/label/color-text/default": "#505a5f";
|
|
983
|
-
readonly "com/menu/item/action/label/color-text/hover": "#1e2225";
|
|
984
|
-
readonly "com/menu/item/action/description/color-text/default": "#828f96";
|
|
985
|
-
readonly "com/menu/item/action/description/color-text/hover": "#505a5f";
|
|
986
|
-
readonly "com/menu/item/action/background-color/default": "#ffffff00";
|
|
987
|
-
readonly "com/menu/item/action/background-color/hover": "#02305e16";
|
|
988
|
-
readonly "com/menu/item/action/background-color/selected": "#00375b0e";
|
|
989
|
-
readonly "com/menu/item/action/badge/size": "Sm (20)";
|
|
990
|
-
readonly "com/menu/item/action/badge/theme": "Neutral - Light";
|
|
991
|
-
readonly "com/menu/item/leveling/label/color-text/default": "#505a5f";
|
|
992
|
-
readonly "com/menu/item/leveling/label/color-text/hover": "#1e2225";
|
|
993
|
-
readonly "com/menu/item/leveling/label/color-text/selected": "#2a30a0";
|
|
994
|
-
readonly "com/menu/item/leveling/description/color-text/default": "#828f96";
|
|
995
|
-
readonly "com/menu/item/leveling/description/color-text/hover": "#505a5f";
|
|
996
|
-
readonly "com/menu/item/leveling/description/color-text/selected": "#828f96";
|
|
997
|
-
readonly "com/menu/item/leveling/icon/color-icon/default": "#505a5f";
|
|
998
|
-
readonly "com/menu/item/leveling/icon/color-icon/hover": "#343d41";
|
|
999
|
-
readonly "com/menu/item/leveling/icon/color-icon/selected": "#2f3cc1";
|
|
1000
|
-
readonly "com/menu/item/leveling/background-color/default": "#ffffff00";
|
|
1001
|
-
readonly "com/menu/item/leveling/background-color/hover": "#02305e16";
|
|
1002
|
-
readonly "com/menu/item/leveling/background-color/selected": "#f5f8fc";
|
|
1003
|
-
readonly "com/menu/item/select-able/label/color-text/default": "#505a5f";
|
|
1004
|
-
readonly "com/menu/item/select-able/label/color-text/hover": "#1e2225";
|
|
1005
|
-
readonly "com/menu/item/select-able/label/color-text/selected": "#2a30a0";
|
|
1006
|
-
readonly "com/menu/item/select-able/description/color-text/default": "#828f96";
|
|
1007
|
-
readonly "com/menu/item/select-able/description/color-text/hover": "#505a5f";
|
|
1008
|
-
readonly "com/menu/item/select-able/description/color-text/selected": "#828f96";
|
|
1009
|
-
readonly "com/menu/item/select-able/icon/color-icon/default": "#505a5f";
|
|
1010
|
-
readonly "com/menu/item/select-able/icon/color-icon/hover": "#343d41";
|
|
1011
|
-
readonly "com/menu/item/select-able/icon/color-icon/selected": "#2f3cc1";
|
|
1012
|
-
readonly "com/menu/item/select-able/background-color/default": "#ffffff00";
|
|
1013
|
-
readonly "com/menu/item/select-able/background-color/hover": "#02305e16";
|
|
1014
|
-
readonly "com/menu/item/select-able/background-color/selected": "#f5f8fc";
|
|
1015
|
-
readonly "com/menu/item/disable/label/color-text": "#c5cdd2";
|
|
1016
|
-
readonly "com/menu/item/disable/description/color-text": "#c5cdd2";
|
|
1017
|
-
readonly "com/menu/item/disable/icon/color-icon": "#c5cdd2";
|
|
1018
|
-
readonly "com/menu/item/disable/background/background-color": "#ffffff00";
|
|
1019
1028
|
readonly "com/navigation/background-color": "#ffffff";
|
|
1020
1029
|
readonly "com/navigation/corner-radius": "28px";
|
|
1021
1030
|
readonly "com/navigation/width": "280px";
|
|
@@ -1091,6 +1100,7 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
1091
1100
|
readonly "com/notification/title-n-content/sub-spacing": "4px";
|
|
1092
1101
|
readonly "com/notification/action/horizontal-gap": "16px";
|
|
1093
1102
|
readonly "com/notification/icon/size-icon": "20px";
|
|
1103
|
+
readonly "com/notification/status-line/width": "4px";
|
|
1094
1104
|
readonly "com/notification/theme/label/color-text/default": "#1e2225";
|
|
1095
1105
|
readonly "com/notification/theme/label/color-text/info": "#1e2225";
|
|
1096
1106
|
readonly "com/notification/theme/label/color-text/positive": "#1e2225";
|
|
@@ -1399,9 +1409,9 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
1399
1409
|
readonly "com/select/field/disable/background-color": "#ffffff00";
|
|
1400
1410
|
readonly "com/select/field/disable/background-color-transparent": "#ffffff00";
|
|
1401
1411
|
readonly "com/select/field/disable/stroke-color": "#02305e16";
|
|
1402
|
-
readonly "com/select/field/default/background/default": "#
|
|
1403
|
-
readonly "com/select/field/default/background/hover": "#
|
|
1404
|
-
readonly "com/select/field/default/background/active": "#
|
|
1412
|
+
readonly "com/select/field/default/background/default": "#f8f9fb";
|
|
1413
|
+
readonly "com/select/field/default/background/hover": "#dee3e7";
|
|
1414
|
+
readonly "com/select/field/default/background/active": "#f8f9fb";
|
|
1405
1415
|
readonly "com/select/field/default/border/default": "#0d2e433d";
|
|
1406
1416
|
readonly "com/select/field/default/border/hover": "#0d2e433d";
|
|
1407
1417
|
readonly "com/select/field/default/border/active": "#3263e7";
|
|
@@ -1429,6 +1439,20 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
1429
1439
|
readonly "com/select/hint/neutral/label/color-text": "#505a5f";
|
|
1430
1440
|
readonly "com/select/hint/disable/icon/color-icon": "#c5cdd2";
|
|
1431
1441
|
readonly "com/select/hint/disable/label/color-text": "#c5cdd2";
|
|
1442
|
+
readonly "com/split-button/size-xs/width": "24px";
|
|
1443
|
+
readonly "com/split-button/size-xs/icon/width": "16px";
|
|
1444
|
+
readonly "com/split-button/size-sm/width": "24px";
|
|
1445
|
+
readonly "com/split-button/size-sm/icon/width": "16px";
|
|
1446
|
+
readonly "com/split-button/size-md/width": "28px";
|
|
1447
|
+
readonly "com/split-button/size-md/icon/width": "16px";
|
|
1448
|
+
readonly "com/split-button/size-lg/width": "28px";
|
|
1449
|
+
readonly "com/split-button/size-lg/icon/width": "16px";
|
|
1450
|
+
readonly "com/split-button/primary/divider/color-stroke": "#ffffff82";
|
|
1451
|
+
readonly "com/split-button/primary/divider/stroke-width": "1px";
|
|
1452
|
+
readonly "com/split-button/primary-invert/divider/color-stroke": "#00152096";
|
|
1453
|
+
readonly "com/split-button/primary-invert/divider/stroke-width": "1px";
|
|
1454
|
+
readonly "com/split-button/disable/divider/color-stroke": "#02305e16";
|
|
1455
|
+
readonly "com/split-button/disable-invert/divider/color-stroke": "#ffffff30";
|
|
1432
1456
|
readonly "com/switch/horizontal-gap": "8px";
|
|
1433
1457
|
readonly "com/switch/item/stroke-width": "1px";
|
|
1434
1458
|
readonly "com/switch/item/corner-radius": "9999px";
|
|
@@ -1612,7 +1636,6 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
1612
1636
|
readonly "com/toast/right-padding": "8px";
|
|
1613
1637
|
readonly "com/toast/left-padding": "12px";
|
|
1614
1638
|
readonly "com/toast/vertical-padding": "8px";
|
|
1615
|
-
readonly "com/toast/horizontal-gap": "8px";
|
|
1616
1639
|
readonly "com/toast/theme/icon/left-padding": "2px";
|
|
1617
1640
|
readonly "com/toast/theme/icon/color-icon/neutral": "#505a5f";
|
|
1618
1641
|
readonly "com/toast/theme/icon/color-icon/info": "#0083f0";
|
|
@@ -1642,6 +1665,7 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
1642
1665
|
readonly "com/toast/theme/background-color/positive": "#eaf7ee";
|
|
1643
1666
|
readonly "com/toast/theme/background-color/caution": "#fcf4e0";
|
|
1644
1667
|
readonly "com/toast/theme/background-color/negative": "#feeeed";
|
|
1668
|
+
readonly "com/toast/horizontal-gap": "8px";
|
|
1645
1669
|
readonly "com/toast/corner-radius": "8px";
|
|
1646
1670
|
readonly "com/tooltip/size-md/horizontal-padding": "12px";
|
|
1647
1671
|
readonly "com/tooltip/size-md/vertical-padding": "8px";
|
|
@@ -1683,8 +1707,8 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
1683
1707
|
readonly "com/topbar/left-items/left-bar-expand/horizontal-gap": "0px";
|
|
1684
1708
|
readonly "com/topbar/left-items/logo/horizontal-gap": "20px";
|
|
1685
1709
|
readonly "com/topbar/left-items/logo/horizontal-padding": "8px";
|
|
1686
|
-
readonly "com/topbar/left-items/logo/width": "280px";
|
|
1687
1710
|
readonly "com/topbar/left-items/logo/height": "28px";
|
|
1711
|
+
readonly "com/topbar/left-items/logo/width": "280px";
|
|
1688
1712
|
readonly "com/topbar/background-color": "#ffffff";
|
|
1689
1713
|
readonly "com/topbar/left-padding": "16px";
|
|
1690
1714
|
readonly "com/topbar/right-padding": "20px";
|
|
@@ -1695,13 +1719,78 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
1695
1719
|
readonly "com/topbar/right-items/user-profile/horizontal-gap": "8px";
|
|
1696
1720
|
readonly "com/topbar/right-items/user-profile/vertical-padding": "4px";
|
|
1697
1721
|
readonly "com/topbar/right-items/user-profile/corner-radius": "6px";
|
|
1698
|
-
readonly "com/topbar/right-items/user-profile/icon/color-icon": "#505a5f";
|
|
1699
1722
|
readonly "com/topbar/right-items/user-profile/label/color-text": "#505a5f";
|
|
1723
|
+
readonly "com/topbar/right-items/user-profile/icon/color-icon": "#505a5f";
|
|
1700
1724
|
readonly "com/typing-cursor/default": "#2a30a0";
|
|
1701
1725
|
readonly "com/typing-cursor/negative": "#a80a12";
|
|
1726
|
+
readonly "com/progress-indicator/default/indicator/lead-color": "#2f3cc1";
|
|
1727
|
+
readonly "com/progress-indicator/default/indicator/trail-color": "#ffffff1c";
|
|
1728
|
+
readonly "com/progress-indicator/default/background-color": "#e7f1fa";
|
|
1729
|
+
readonly "com/progress-indicator/invert/indicator/lead-color": "#ffffff";
|
|
1730
|
+
readonly "com/progress-indicator/invert/indicator/trail-color": "#ffffff00";
|
|
1731
|
+
readonly "com/progress-indicator/invert/background-color": "#ffffff1c";
|
|
1732
|
+
readonly "com/progress-indicator/circular/size-xs/width": "16px";
|
|
1733
|
+
readonly "com/progress-indicator/circular/size-xs/indicator/stroke-width": "1.3px";
|
|
1734
|
+
readonly "com/progress-indicator/circular/size-xs/indicator/indicator": "12px";
|
|
1735
|
+
readonly "com/progress-indicator/circular/size-sm/width": "20px";
|
|
1736
|
+
readonly "com/progress-indicator/circular/size-sm/indicator/stroke-width": "2px";
|
|
1737
|
+
readonly "com/progress-indicator/circular/size-sm/indicator/indicator": "16px";
|
|
1738
|
+
readonly "com/progress-indicator/circular/size-md/width": "36px";
|
|
1739
|
+
readonly "com/progress-indicator/circular/size-md/indicator/stroke-width": "3px";
|
|
1740
|
+
readonly "com/progress-indicator/circular/size-md/indicator/indicator": "24px";
|
|
1741
|
+
readonly "com/progress-indicator/circular/size-lg/width": "44px";
|
|
1742
|
+
readonly "com/progress-indicator/circular/size-lg/indicator/stroke-width": "4px";
|
|
1743
|
+
readonly "com/progress-indicator/circular/size-lg/indicator/indicator": "28px";
|
|
1744
|
+
readonly "com/progress-indicator/linear/size-sm/height": "2px";
|
|
1745
|
+
readonly "com/progress-indicator/linear/size-md/height": "4px";
|
|
1746
|
+
readonly "com/progress-indicator/linear/size-lg/height": "8px";
|
|
1702
1747
|
readonly "com/icon/size/from-28/stroke-width": "2px";
|
|
1703
1748
|
readonly "com/icon/size/from-20/stroke-width": "1.3px";
|
|
1704
1749
|
readonly "com/icon/size/under-20/stroke-width": "1px";
|
|
1750
|
+
readonly "com/featured-icon/size/24/width": "24px";
|
|
1751
|
+
readonly "com/featured-icon/size/24/corner-radius": "6px";
|
|
1752
|
+
readonly "com/featured-icon/size/24/size-icon": "16px";
|
|
1753
|
+
readonly "com/featured-icon/size/24/border-width": "1px";
|
|
1754
|
+
readonly "com/featured-icon/size/28/width": "28px";
|
|
1755
|
+
readonly "com/featured-icon/size/28/corner-radius": "6px";
|
|
1756
|
+
readonly "com/featured-icon/size/28/size-icon": "16px";
|
|
1757
|
+
readonly "com/featured-icon/size/28/border-width": "1px";
|
|
1758
|
+
readonly "com/featured-icon/size/36/width": "36px";
|
|
1759
|
+
readonly "com/featured-icon/size/36/corner-radius": "8px";
|
|
1760
|
+
readonly "com/featured-icon/size/36/size-icon": "20px";
|
|
1761
|
+
readonly "com/featured-icon/size/36/border-width": "1px";
|
|
1762
|
+
readonly "com/featured-icon/size/44/width": "44px";
|
|
1763
|
+
readonly "com/featured-icon/size/44/corner-radius": "8px";
|
|
1764
|
+
readonly "com/featured-icon/size/44/size-icon": "24px";
|
|
1765
|
+
readonly "com/featured-icon/size/44/border-width": "1.3px";
|
|
1766
|
+
readonly "com/featured-icon/size/56/width": "56px";
|
|
1767
|
+
readonly "com/featured-icon/size/56/corner-radius": "12px";
|
|
1768
|
+
readonly "com/featured-icon/size/56/size-icon": "28px";
|
|
1769
|
+
readonly "com/featured-icon/size/56/border-width": "1.3px";
|
|
1770
|
+
readonly "com/featured-icon/size/68/width": "68px";
|
|
1771
|
+
readonly "com/featured-icon/size/68/corner-radius": "12px";
|
|
1772
|
+
readonly "com/featured-icon/size/68/size-icon": "36px";
|
|
1773
|
+
readonly "com/featured-icon/size/68/border-width": "2px";
|
|
1774
|
+
readonly "com/featured-icon/size/84/width": "84px";
|
|
1775
|
+
readonly "com/featured-icon/size/84/corner-radius": "12px";
|
|
1776
|
+
readonly "com/featured-icon/size/84/size-icon": "44px";
|
|
1777
|
+
readonly "com/featured-icon/size/84/border-width": "2px";
|
|
1778
|
+
readonly "com/featured-icon/size/corner-radius-rounded": "9999px";
|
|
1779
|
+
readonly "com/featured-icon/theme/neutral/icon/color-stroke": "#343d41";
|
|
1780
|
+
readonly "com/featured-icon/theme/neutral/background-color": "#ffffff";
|
|
1781
|
+
readonly "com/featured-icon/theme/neutral/border/color-stroke": "#0d2e433d";
|
|
1782
|
+
readonly "com/featured-icon/theme/info/icon/color-stroke": "#006bdf";
|
|
1783
|
+
readonly "com/featured-icon/theme/info/background-color": "#f5fafd";
|
|
1784
|
+
readonly "com/featured-icon/theme/info/border/color-stroke": "#c1e2fc";
|
|
1785
|
+
readonly "com/featured-icon/theme/positive/background-color": "#f5fbf7";
|
|
1786
|
+
readonly "com/featured-icon/theme/positive/icon/color-stroke": "#007d35";
|
|
1787
|
+
readonly "com/featured-icon/theme/positive/border/color-stroke": "#c0e6ce";
|
|
1788
|
+
readonly "com/featured-icon/theme/caution/background-color": "#fdf9ed";
|
|
1789
|
+
readonly "com/featured-icon/theme/caution/icon/color-stroke": "#a94900";
|
|
1790
|
+
readonly "com/featured-icon/theme/caution/border/color-stroke": "#f8dbab";
|
|
1791
|
+
readonly "com/featured-icon/theme/negative/background-color": "#fef8f7";
|
|
1792
|
+
readonly "com/featured-icon/theme/negative/icon/color-stroke": "#d0121c";
|
|
1793
|
+
readonly "com/featured-icon/theme/negative/border/color-stroke": "#fdd3cd";
|
|
1705
1794
|
readonly "pri/color/brand/primary/10": "#f9fbfd";
|
|
1706
1795
|
readonly "pri/color/brand/primary/25": "#f5f8fc";
|
|
1707
1796
|
readonly "pri/color/brand/primary/50": "#e7f1fa";
|
|
@@ -2205,26 +2294,46 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
2205
2294
|
readonly "sem/color/background/brand/secondary/accent/selected": "#823e00";
|
|
2206
2295
|
readonly "sem/color/background/brand/secondary/accent/disable": "#e9edf1";
|
|
2207
2296
|
readonly "sem/color/background/black/always_black": "#000000";
|
|
2208
|
-
readonly "sem/color/background/transparent/canvas/default": "#ffffff00";
|
|
2209
|
-
readonly "sem/color/background/transparent/canvas/hover": "#02305e16";
|
|
2210
|
-
readonly "sem/color/background/transparent/canvas/active": "#00375b0e";
|
|
2211
|
-
readonly "sem/color/background/transparent/canvas/pressed": "#0a2f4d22";
|
|
2212
|
-
readonly "sem/color/background/transparent/canvas/selected": "#00375b0e";
|
|
2213
|
-
readonly "sem/color/background/transparent/canvas/disable": "#ffffff00";
|
|
2214
|
-
readonly "sem/color/background/transparent/soft/default": "#00375b0e";
|
|
2215
|
-
readonly "sem/color/background/transparent/soft/hover": "#0a2f4d22";
|
|
2216
|
-
readonly "sem/color/background/transparent/soft/active": "#02305e16";
|
|
2217
|
-
readonly "sem/color/background/transparent/soft/disable": "#04287007";
|
|
2218
|
-
readonly "sem/color/background/transparent/sub/default": "#0d2e433d";
|
|
2219
|
-
readonly "sem/color/background/transparent/sub/hover": "#09233182";
|
|
2220
|
-
readonly "sem/color/background/transparent/sub/active": "#0422355e";
|
|
2221
|
-
readonly "sem/color/background/transparent/sub/disable": "#04287007";
|
|
2222
|
-
readonly "sem/color/background/transparent/accent/default": "#00152096";
|
|
2223
|
-
readonly "sem/color/background/transparent/accent/hover": "#0a2f4d22";
|
|
2224
|
-
readonly "sem/color/background/transparent/accent/active": "#0d2e433d";
|
|
2225
|
-
readonly "sem/color/background/transparent/accent/pressed": "#09233182";
|
|
2226
|
-
readonly "sem/color/background/transparent/accent/selected": "#0d2e433d";
|
|
2227
|
-
readonly "sem/color/background/transparent/accent/disable": "#02305e16";
|
|
2297
|
+
readonly "sem/color/background/transparent/black/canvas/default": "#ffffff00";
|
|
2298
|
+
readonly "sem/color/background/transparent/black/canvas/hover": "#02305e16";
|
|
2299
|
+
readonly "sem/color/background/transparent/black/canvas/active": "#00375b0e";
|
|
2300
|
+
readonly "sem/color/background/transparent/black/canvas/pressed": "#0a2f4d22";
|
|
2301
|
+
readonly "sem/color/background/transparent/black/canvas/selected": "#00375b0e";
|
|
2302
|
+
readonly "sem/color/background/transparent/black/canvas/disable": "#ffffff00";
|
|
2303
|
+
readonly "sem/color/background/transparent/black/soft/default": "#00375b0e";
|
|
2304
|
+
readonly "sem/color/background/transparent/black/soft/hover": "#0a2f4d22";
|
|
2305
|
+
readonly "sem/color/background/transparent/black/soft/active": "#02305e16";
|
|
2306
|
+
readonly "sem/color/background/transparent/black/soft/disable": "#04287007";
|
|
2307
|
+
readonly "sem/color/background/transparent/black/sub/default": "#0d2e433d";
|
|
2308
|
+
readonly "sem/color/background/transparent/black/sub/hover": "#09233182";
|
|
2309
|
+
readonly "sem/color/background/transparent/black/sub/active": "#0422355e";
|
|
2310
|
+
readonly "sem/color/background/transparent/black/sub/disable": "#04287007";
|
|
2311
|
+
readonly "sem/color/background/transparent/black/accent/default": "#00152096";
|
|
2312
|
+
readonly "sem/color/background/transparent/black/accent/hover": "#0a2f4d22";
|
|
2313
|
+
readonly "sem/color/background/transparent/black/accent/active": "#0d2e433d";
|
|
2314
|
+
readonly "sem/color/background/transparent/black/accent/pressed": "#09233182";
|
|
2315
|
+
readonly "sem/color/background/transparent/black/accent/selected": "#0d2e433d";
|
|
2316
|
+
readonly "sem/color/background/transparent/black/accent/disable": "#02305e16";
|
|
2317
|
+
readonly "sem/color/background/transparent/white/canvas/default": "#ffffff00";
|
|
2318
|
+
readonly "sem/color/background/transparent/white/canvas/hover": "#ffffff0e";
|
|
2319
|
+
readonly "sem/color/background/transparent/white/canvas/active": "#ffffff06";
|
|
2320
|
+
readonly "sem/color/background/transparent/white/canvas/pressed": "#ffffff1c";
|
|
2321
|
+
readonly "sem/color/background/transparent/white/canvas/selected": "#ffffff06";
|
|
2322
|
+
readonly "sem/color/background/transparent/white/canvas/disable": "#ffffff00";
|
|
2323
|
+
readonly "sem/color/background/transparent/white/soft/default": "#ffffff06";
|
|
2324
|
+
readonly "sem/color/background/transparent/white/soft/hover": "#ffffff30";
|
|
2325
|
+
readonly "sem/color/background/transparent/white/soft/active": "#ffffff1c";
|
|
2326
|
+
readonly "sem/color/background/transparent/white/soft/disable": "#ffffff06";
|
|
2327
|
+
readonly "sem/color/background/transparent/white/sub/default": "#ffffff1c";
|
|
2328
|
+
readonly "sem/color/background/transparent/white/sub/hover": "#ffffff49";
|
|
2329
|
+
readonly "sem/color/background/transparent/white/sub/active": "#ffffff30";
|
|
2330
|
+
readonly "sem/color/background/transparent/white/sub/disable": "#ffffff06";
|
|
2331
|
+
readonly "sem/color/background/transparent/white/accent/default": "#ffffff82";
|
|
2332
|
+
readonly "sem/color/background/transparent/white/accent/hover": "#ffffff1c";
|
|
2333
|
+
readonly "sem/color/background/transparent/white/accent/active": "#ffffff30";
|
|
2334
|
+
readonly "sem/color/background/transparent/white/accent/pressed": "#ffffff65";
|
|
2335
|
+
readonly "sem/color/background/transparent/white/accent/selected": "#ffffff30";
|
|
2336
|
+
readonly "sem/color/background/transparent/white/accent/disable": "#ffffff0e";
|
|
2228
2337
|
readonly "sem/color/background/function/info/canvas/default": "#f5fafd";
|
|
2229
2338
|
readonly "sem/color/background/function/info/canvas/hover": "#def1fd";
|
|
2230
2339
|
readonly "sem/color/background/function/info/canvas/active": "#eaf6fb";
|
|
@@ -2508,6 +2617,7 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
2508
2617
|
readonly "sem/color/stroke/white/soft": "#ffffff30";
|
|
2509
2618
|
readonly "sem/color/stroke/white/disable": "#ffffff30";
|
|
2510
2619
|
readonly "sem/color/stroke/pure-black": "#000000";
|
|
2620
|
+
readonly "sem/color/stroke/pure-white": "#ffffff";
|
|
2511
2621
|
readonly "sem/color/stroke/function/info/strong": "#3d9cfb";
|
|
2512
2622
|
readonly "sem/color/stroke/function/info/sub": "#c1e2fc";
|
|
2513
2623
|
readonly "sem/color/stroke/function/info/soft": "#def1fd";
|
|
@@ -2524,7 +2634,6 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
2524
2634
|
readonly "sem/color/stroke/function/negative/sub": "#fdd3cd";
|
|
2525
2635
|
readonly "sem/color/stroke/function/negative/soft": "#fee9e7";
|
|
2526
2636
|
readonly "sem/color/stroke/function/negative/disable": "#02305e16";
|
|
2527
|
-
readonly "sem/color/stroke/pure-white": "#ffffff";
|
|
2528
2637
|
readonly "sem/color/stroke/utility/red/strong": "#fd8b7f";
|
|
2529
2638
|
readonly "sem/color/stroke/utility/red/sub": "#fbd3ce";
|
|
2530
2639
|
readonly "sem/color/stroke/utility/red/soft": "#ffe9e5";
|
|
@@ -2977,7 +3086,6 @@ declare const getTheme: <K extends keyof ThemeType>(key: K) => (props: {
|
|
|
2977
3086
|
readonly "page/body/background-color": "#f5f8fc";
|
|
2978
3087
|
readonly "page/popup/body/vertical_gap": "20px";
|
|
2979
3088
|
readonly "page/drawer/body/vertical_gap": "20px";
|
|
2980
|
-
readonly Boolean: true;
|
|
2981
3089
|
readonly "Flowkit/Purple": "#7b61ff";
|
|
2982
3090
|
readonly "Flowkit/Charcoal": "#222222";
|
|
2983
3091
|
readonly "Flowkit/Red": "#fc5555";
|