@itcase/ui 1.8.23 → 1.8.25
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/{Button_cjs_MfWRETXI.js → Button_cjs_CYUpbdMO.js} +133 -52
- package/dist/{Button_es_zW2pQTwL.js → Button_es_Dp6yFZgn.js} +133 -52
- package/dist/{ChipsGroup_cjs_CTh6644i.js → ChipsGroup_cjs_Ct-NrPmJ.js} +2 -1
- package/dist/{ChipsGroup_es_BFxBhYNB.js → ChipsGroup_es_BNuhlSG6.js} +2 -1
- package/dist/{DatePicker_cjs_uDJmwWkk.js → DatePicker_cjs_DamcZFbX.js} +2 -2
- package/dist/{DatePicker_es_5r0isX1_.js → DatePicker_es_Bm_onmmb.js} +2 -2
- package/dist/{Divider_cjs_DzFVtGkF.js → Divider_cjs_DhqcldLH.js} +6 -2
- package/dist/{Divider_es_BdU9qjKa.js → Divider_es_BEYLRagS.js} +6 -2
- package/dist/{DropdownItem_cjs_C6Jx7-kx.js → DropdownItem_cjs_B_7anyaJ.js} +1 -1
- package/dist/{DropdownItem_es_UdkGGVtg.js → DropdownItem_es_B4EZYdJA.js} +1 -1
- package/dist/{Label_cjs_jN0dxo1q.js → Label_cjs_ByGAWJcj.js} +168 -28
- package/dist/{Label_es_CFQzN-2m.js → Label_es_BtwZ3a2V.js} +168 -28
- package/dist/{Loader_cjs_3VRzFLI2.js → Loader_cjs___VikiqS.js} +36 -1
- package/dist/{Loader_es_DEYowVdU.js → Loader_es_DHKB6tTw.js} +36 -1
- package/dist/cjs/components/Accordion.js +1 -1
- package/dist/cjs/components/Breadcrumbs/stories/__mock__.js +45 -0
- package/dist/cjs/components/Breadcrumbs.js +46 -57
- package/dist/cjs/components/Button.js +2 -2
- package/dist/cjs/components/Cell.js +1 -1
- package/dist/cjs/components/Chips.js +1 -1
- package/dist/cjs/components/Choice.js +1 -1
- package/dist/cjs/components/CookiesWarning.js +2 -2
- package/dist/cjs/components/DatePeriod.js +81 -14
- package/dist/cjs/components/DatePicker.js +4 -4
- package/dist/cjs/components/Divider.js +1 -1
- package/dist/cjs/components/Dropdown.js +2 -2
- package/dist/cjs/components/Label.js +1 -1
- package/dist/cjs/components/Loader.js +1 -1
- package/dist/cjs/components/Modal.js +1 -1
- package/dist/cjs/components/Pagination.js +2 -2
- package/dist/cjs/components/Response.js +27 -36
- package/dist/cjs/components/Select.js +1 -1
- package/dist/cjs/components/Tab/stories/__mock__.js +14 -0
- package/dist/cjs/components/Tab.js +133 -39
- package/dist/components/Accordion.js +1 -1
- package/dist/components/Breadcrumbs/stories/__mock__.js +43 -0
- package/dist/components/Breadcrumbs.js +46 -57
- package/dist/components/Button.js +2 -2
- package/dist/components/Cell.js +1 -1
- package/dist/components/Chips.js +1 -1
- package/dist/components/Choice.js +1 -1
- package/dist/components/CookiesWarning.js +2 -2
- package/dist/components/DatePeriod.js +81 -15
- package/dist/components/DatePicker.js +4 -4
- package/dist/components/Divider.js +1 -1
- package/dist/components/Dropdown.js +2 -2
- package/dist/components/Label.js +1 -1
- package/dist/components/Loader.js +1 -1
- package/dist/components/Modal.js +1 -1
- package/dist/components/Pagination.js +2 -2
- package/dist/components/Response.js +27 -36
- package/dist/components/Select.js +1 -1
- package/dist/components/Tab/stories/__mock__.js +12 -0
- package/dist/components/Tab.js +134 -40
- package/dist/css/components/Breadcrumbs/Breadcrumbs.css +22 -0
- package/dist/css/components/Button/Button.css +4 -4
- package/dist/css/components/Label/Label.css +10 -9
- package/dist/css/components/Loader/Loader.css +21 -2
- package/dist/stories/Plsyground.mdx +1 -3
- package/dist/types/components/Breadcrumbs/Breadcrumbs.d.ts +2 -3
- package/dist/types/components/Breadcrumbs/appearance/breadcrumbsSize.d.ts +28 -35
- package/dist/types/components/Breadcrumbs/appearance/breadcrumbsSurface.d.ts +4 -3
- package/dist/types/components/Breadcrumbs/stories/__mock__/index.d.ts +10 -0
- package/dist/types/components/Button/appearance/buttonAccent.d.ts +7 -6
- package/dist/types/components/Button/appearance/buttonDanger.d.ts +8 -4
- package/dist/types/components/Button/appearance/buttonError.d.ts +14 -2
- package/dist/types/components/Button/appearance/buttonInfo.d.ts +19 -4
- package/dist/types/components/Button/appearance/buttonPrimary.d.ts +13 -0
- package/dist/types/components/Button/appearance/buttonSecondary.d.ts +13 -0
- package/dist/types/components/Button/appearance/buttonSize.d.ts +7 -0
- package/dist/types/components/Button/appearance/buttonStyle.d.ts +0 -2
- package/dist/types/components/Button/appearance/buttonSuccess.d.ts +14 -2
- package/dist/types/components/Button/appearance/buttonSurface.d.ts +11 -8
- package/dist/types/components/Button/appearance/buttonWarning.d.ts +8 -4
- package/dist/types/components/Chips/Chips.interface.d.ts +2 -2
- package/dist/types/components/DatePeriod/DatePeriod.interface.d.ts +30 -37
- package/dist/types/components/DatePeriod/datePeriodIntervals.d.ts +3 -0
- package/dist/types/components/DatePeriod/index.d.ts +1 -0
- package/dist/types/components/Label/appearance/labelAccent.d.ts +10 -1
- package/dist/types/components/Label/appearance/labelDanger.d.ts +20 -0
- package/dist/types/components/Label/appearance/labelDisable.d.ts +19 -0
- package/dist/types/components/Label/appearance/labelError.d.ts +13 -2
- package/dist/types/components/Label/appearance/labelInfo.d.ts +14 -2
- package/dist/types/components/Label/appearance/labelPrimary.d.ts +19 -0
- package/dist/types/components/Label/appearance/labelSecondary.d.ts +19 -0
- package/dist/types/components/Label/appearance/labelStyle.d.ts +0 -2
- package/dist/types/components/Label/appearance/labelSuccess.d.ts +11 -0
- package/dist/types/components/Label/appearance/labelSurface.d.ts +14 -3
- package/dist/types/components/Label/appearance/labelWarning.d.ts +11 -0
- package/dist/types/components/Loader/appearance/loaderDanger.d.ts +7 -0
- package/dist/types/components/Loader/appearance/loaderError.d.ts +7 -0
- package/dist/types/components/Loader/appearance/loaderInfo.d.ts +7 -0
- package/dist/types/components/Loader/appearance/loaderSuccess.d.ts +7 -0
- package/dist/types/components/Loader/appearance/loaderWarning.d.ts +7 -0
- package/dist/types/components/Response/appearance/responceConfirm.d.ts +2 -3
- package/dist/types/components/Response/appearance/responceFail.d.ts +2 -3
- package/dist/types/components/Response/appearance/responceNothingFound.d.ts +2 -3
- package/dist/types/components/Response/appearance/responceRefresh.d.ts +2 -3
- package/dist/types/components/Response/appearance/responseError.d.ts +2 -3
- package/dist/types/components/Response/appearance/responseSuccess.d.ts +2 -3
- package/dist/types/components/Response/appearance/responseUnableLoadData.d.ts +2 -3
- package/dist/types/components/Response/appearance/responseWarning.d.ts +2 -3
- package/dist/types/components/Tab/appearance/tabError.d.ts +13 -0
- package/dist/types/components/Tab/appearance/tabSize.d.ts +41 -0
- package/dist/types/components/Tab/appearance/tabStyle.d.ts +2 -2
- package/dist/types/components/Tab/appearance/tabSuccess.d.ts +13 -0
- package/dist/types/components/Tab/appearance/tabSurface.d.ts +29 -24
- package/dist/types/components/Tab/appearance/tabWarning.d.ts +13 -0
- package/dist/types/components/Tab/stories/__mock__/index.d.ts +22 -0
- package/dist/types/hooks/useDevicePropsGenerator/useDevicePropsGenerator.interface.d.ts +4 -1
- package/package.json +8 -6
|
@@ -3,6 +3,19 @@ declare const buttonAppearanceSecondary: {
|
|
|
3
3
|
fill: string;
|
|
4
4
|
fillHover: string;
|
|
5
5
|
labelTextColor: string;
|
|
6
|
+
iconAfterFillIcon: string;
|
|
7
|
+
iconBeforeFillIcon: string;
|
|
8
|
+
iconFillIcon: string;
|
|
9
|
+
loaderAppearance: string;
|
|
10
|
+
};
|
|
11
|
+
secondaryPrimary: {
|
|
12
|
+
fill: string;
|
|
13
|
+
fillHover: string;
|
|
14
|
+
labelTextColor: string;
|
|
15
|
+
iconAfterFillIcon: string;
|
|
16
|
+
iconBeforeFillIcon: string;
|
|
17
|
+
iconFillIcon: string;
|
|
18
|
+
loaderAppearance: string;
|
|
6
19
|
};
|
|
7
20
|
};
|
|
8
21
|
export { buttonAppearanceSecondary };
|
|
@@ -6,6 +6,7 @@ declare const buttonAppearanceSize: {
|
|
|
6
6
|
iconAfterSize: number;
|
|
7
7
|
iconBeforeFillSize: number;
|
|
8
8
|
iconBeforeSize: number;
|
|
9
|
+
loaderSize: string;
|
|
9
10
|
};
|
|
10
11
|
sizeXL: {
|
|
11
12
|
size: string;
|
|
@@ -14,6 +15,7 @@ declare const buttonAppearanceSize: {
|
|
|
14
15
|
iconAfterSize: number;
|
|
15
16
|
iconBeforeFillSize: number;
|
|
16
17
|
iconBeforeSize: number;
|
|
18
|
+
loaderSize: string;
|
|
17
19
|
};
|
|
18
20
|
sizeL: {
|
|
19
21
|
size: string;
|
|
@@ -22,6 +24,7 @@ declare const buttonAppearanceSize: {
|
|
|
22
24
|
iconAfterSize: number;
|
|
23
25
|
iconBeforeFillSize: number;
|
|
24
26
|
iconBeforeSize: number;
|
|
27
|
+
loaderSize: string;
|
|
25
28
|
};
|
|
26
29
|
sizeM: {
|
|
27
30
|
size: string;
|
|
@@ -30,6 +33,7 @@ declare const buttonAppearanceSize: {
|
|
|
30
33
|
iconAfterSize: number;
|
|
31
34
|
iconBeforeFillSize: number;
|
|
32
35
|
iconBeforeSize: number;
|
|
36
|
+
loaderSize: string;
|
|
33
37
|
};
|
|
34
38
|
sizeS: {
|
|
35
39
|
size: string;
|
|
@@ -38,6 +42,7 @@ declare const buttonAppearanceSize: {
|
|
|
38
42
|
iconAfterSize: number;
|
|
39
43
|
iconBeforeFillSize: number;
|
|
40
44
|
iconBeforeSize: number;
|
|
45
|
+
loaderSize: string;
|
|
41
46
|
};
|
|
42
47
|
sizeXS: {
|
|
43
48
|
size: string;
|
|
@@ -46,6 +51,7 @@ declare const buttonAppearanceSize: {
|
|
|
46
51
|
iconAfterSize: number;
|
|
47
52
|
iconBeforeFillSize: number;
|
|
48
53
|
iconBeforeSize: number;
|
|
54
|
+
loaderSize: string;
|
|
49
55
|
};
|
|
50
56
|
sizeXXS: {
|
|
51
57
|
size: string;
|
|
@@ -54,6 +60,7 @@ declare const buttonAppearanceSize: {
|
|
|
54
60
|
iconAfterSize: number;
|
|
55
61
|
iconBeforeFillSize: number;
|
|
56
62
|
iconBeforeSize: number;
|
|
63
|
+
loaderSize: string;
|
|
57
64
|
};
|
|
58
65
|
};
|
|
59
66
|
export { buttonAppearanceSize };
|
|
@@ -4,8 +4,20 @@ declare const buttonAppearanceSuccess: {
|
|
|
4
4
|
fillHover: string;
|
|
5
5
|
labelTextColor: string;
|
|
6
6
|
labelTextColorHover: string;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
iconAfterFillIcon: string;
|
|
8
|
+
iconBeforeFillIcon: string;
|
|
9
|
+
iconFillIcon: string;
|
|
10
|
+
loaderAppearance: string;
|
|
11
|
+
};
|
|
12
|
+
successPrimary: {
|
|
13
|
+
fill: string;
|
|
14
|
+
fillHover: string;
|
|
15
|
+
labelTextColor: string;
|
|
16
|
+
labelTextColorHover: string;
|
|
17
|
+
iconAfterFillIcon: string;
|
|
18
|
+
iconBeforeFillIcon: string;
|
|
19
|
+
iconFillIcon: string;
|
|
20
|
+
loaderAppearance: string;
|
|
9
21
|
};
|
|
10
22
|
};
|
|
11
23
|
export { buttonAppearanceSuccess };
|
|
@@ -3,25 +3,28 @@ declare const buttonAppearanceSurface: {
|
|
|
3
3
|
fill: string;
|
|
4
4
|
fillHover: string;
|
|
5
5
|
labelTextColor: string;
|
|
6
|
+
iconAfterFillIcon: string;
|
|
7
|
+
iconBeforeFillIcon: string;
|
|
6
8
|
iconFillIcon: string;
|
|
9
|
+
loaderAppearance: string;
|
|
7
10
|
};
|
|
8
11
|
surfaceSecondary: {
|
|
9
12
|
fill: string;
|
|
10
13
|
fillHover: string;
|
|
11
14
|
labelTextColor: string;
|
|
12
|
-
|
|
13
|
-
|
|
15
|
+
iconAfterFillIcon: string;
|
|
16
|
+
iconBeforeFillIcon: string;
|
|
17
|
+
iconFillIcon: string;
|
|
18
|
+
loaderAppearance: string;
|
|
14
19
|
};
|
|
15
20
|
surfaceTertiary: {
|
|
16
21
|
fill: string;
|
|
17
22
|
fillHover: string;
|
|
18
23
|
labelTextColor: string;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
labelTextColor: string;
|
|
24
|
-
labelTextColorHover: string;
|
|
24
|
+
iconAfterFillIcon: string;
|
|
25
|
+
iconBeforeFillIcon: string;
|
|
26
|
+
iconFillIcon: string;
|
|
27
|
+
loaderAppearance: string;
|
|
25
28
|
};
|
|
26
29
|
};
|
|
27
30
|
export { buttonAppearanceSurface };
|
|
@@ -4,16 +4,20 @@ declare const buttonAppearanceWarning: {
|
|
|
4
4
|
fillHover: string;
|
|
5
5
|
labelTextColor: string;
|
|
6
6
|
labelTextColorHover: string;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
iconAfterFillIcon: string;
|
|
8
|
+
iconBeforeFillIcon: string;
|
|
9
|
+
iconFillIcon: string;
|
|
10
|
+
loaderAppearance: string;
|
|
9
11
|
};
|
|
10
12
|
warningPrimary: {
|
|
11
13
|
fill: string;
|
|
12
14
|
fillHover: string;
|
|
13
15
|
labelTextColor: string;
|
|
14
16
|
labelTextColorHover: string;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
iconAfterFillIcon: string;
|
|
18
|
+
iconBeforeFillIcon: string;
|
|
19
|
+
iconFillIcon: string;
|
|
20
|
+
loaderAppearance: string;
|
|
17
21
|
};
|
|
18
22
|
};
|
|
19
23
|
export { buttonAppearanceWarning };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CSSProperties, ReactNode } from 'react';
|
|
2
|
-
import { AlignDirectionProps, AlignProps, AppearanceKeysDefault, BorderColorProps, BorderTypeProps, FillHoverProps, FillProps, ShapeProps, SizeProps, TextColorProps, TextSizeProps, TextWeightProps } from '@itcase/types';
|
|
2
|
+
import { AlignDirectionProps, AlignProps, AppearanceKeysDefault, BorderColorProps, BorderTypeProps, CompositeAppearanceKey, FillHoverProps, FillProps, ShapeProps, SizeProps, TextColorProps, TextSizeProps, TextWeightProps } from '@itcase/types';
|
|
3
3
|
import { StyleAttributes } from 'src/hooks/useStyles/styleAttributes.interface';
|
|
4
4
|
interface ChipsThemeColor {
|
|
5
5
|
[key: number | string | symbol]: any;
|
|
@@ -33,7 +33,7 @@ interface ChipsConfig {
|
|
|
33
33
|
}
|
|
34
34
|
interface ChipsProps extends ChipsThemeColor, StyleAttributes {
|
|
35
35
|
[key: number | string | symbol]: any;
|
|
36
|
-
appearance?:
|
|
36
|
+
appearance?: CompositeAppearanceKey;
|
|
37
37
|
children?: ReactNode;
|
|
38
38
|
className?: string;
|
|
39
39
|
cursor?: string;
|
|
@@ -1,45 +1,38 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AppearanceKeysDefault, FillHoverProps, FillProps, IconFillSizeProps, IconSizeProps, ItemColorProps, ShapeProps, SizePXProps, TextColorProps, TextSizeProps, TextWeightProps } from '@itcase/types';
|
|
1
|
+
import type { AppearanceKeysDefault, CompositeAppearanceKey, DateIso, FillHoverProps, FillProps, ShapeProps, SizeOptionProps, SizePXProps, TextSizeProps } from '@itcase/types';
|
|
3
2
|
import { StyleAttributes } from 'src/hooks/useStyles/styleAttributes.interface';
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
type DatePeriodValue = 'today' | 'yesterday' | 'backWeek' | 'backMonth' | 'backQuarter';
|
|
4
|
+
type DatePeriodItem = {
|
|
5
|
+
dateIntervalsList: [DateIso, DateIso];
|
|
6
|
+
label: string;
|
|
7
|
+
value: DatePeriodValue;
|
|
8
|
+
};
|
|
9
|
+
type DatePeriodThemeColor = {
|
|
6
10
|
fill?: FillProps;
|
|
7
11
|
fillHover?: FillHoverProps;
|
|
8
|
-
icon?: ElementType;
|
|
9
|
-
iconFill?: FillProps;
|
|
10
|
-
iconFillHover?: FillHoverProps;
|
|
11
|
-
iconFillSize?: IconFillSizeProps;
|
|
12
|
-
iconItemFill?: ItemColorProps;
|
|
13
|
-
iconShape?: ShapeProps;
|
|
14
|
-
iconSize?: IconSizeProps;
|
|
15
|
-
iconSrc?: string;
|
|
16
12
|
shape?: ShapeProps;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
type AppearanceKeys = AppearanceKeysDefault & {};
|
|
22
|
-
export type DatePeriodAppearanceType = {
|
|
23
|
-
[key in AppearanceKeys]?: DatePeriodThemeColor;
|
|
13
|
+
size?: SizePXProps;
|
|
14
|
+
};
|
|
15
|
+
type DatePeriodAppearanceType = {
|
|
16
|
+
[key in AppearanceKeysDefault]?: DatePeriodThemeColor;
|
|
24
17
|
};
|
|
25
|
-
|
|
26
|
-
[key: number | string | symbol]: any;
|
|
18
|
+
type DatePeriodConfig = {
|
|
27
19
|
appearance: DatePeriodAppearanceType | undefined;
|
|
28
20
|
setAppearance: (appearanceConfig: DatePeriodAppearanceType) => void;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
before?: ReactNode;
|
|
21
|
+
};
|
|
22
|
+
type DatePeriodProps = DatePeriodThemeColor & StyleAttributes & {
|
|
23
|
+
appearance?: CompositeAppearanceKey;
|
|
24
|
+
chipsAppearance?: CompositeAppearanceKey;
|
|
25
|
+
chipsShape?: ShapeProps;
|
|
35
26
|
className?: string;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
27
|
+
datePeriodIntervalsList: DatePeriodItem[];
|
|
28
|
+
datePeriodValueEnd: DateIso | null;
|
|
29
|
+
datePeriodValueStart: DateIso | null;
|
|
30
|
+
datePickerAppearance?: CompositeAppearanceKey;
|
|
31
|
+
datePickerInputAppearance?: CompositeAppearanceKey;
|
|
32
|
+
datePickerInputFillHover?: FillHoverProps;
|
|
33
|
+
datePickerInputSize?: SizeOptionProps;
|
|
34
|
+
datePickerInputTextSize?: TextSizeProps;
|
|
35
|
+
isSkeleton?: boolean;
|
|
36
|
+
onChangeDatePeriod: (dateStartIso: DateIso | null, dateEndIso: DateIso | null) => void;
|
|
37
|
+
};
|
|
38
|
+
export type { DatePeriodValue, DatePeriodItem, DatePeriodThemeColor, DatePeriodAppearanceType, DatePeriodConfig, DatePeriodProps, };
|
|
@@ -4,12 +4,21 @@ declare const labelAppearanceAccent: {
|
|
|
4
4
|
labelTextColor: string;
|
|
5
5
|
labelTextColorHover: string;
|
|
6
6
|
};
|
|
7
|
-
|
|
7
|
+
accentMuted: {
|
|
8
8
|
fill: string;
|
|
9
9
|
labelTextColor: string;
|
|
10
10
|
labelTextColorHover: string;
|
|
11
|
+
borderColor: string;
|
|
12
|
+
iconAfterFillIcon: string;
|
|
11
13
|
iconBeforeFillIcon: string;
|
|
14
|
+
};
|
|
15
|
+
accentPrimary: {
|
|
16
|
+
fill: string;
|
|
17
|
+
labelTextColor: string;
|
|
18
|
+
labelTextColorHover: string;
|
|
19
|
+
borderColor: string;
|
|
12
20
|
iconAfterFillIcon: string;
|
|
21
|
+
iconBeforeFillIcon: string;
|
|
13
22
|
};
|
|
14
23
|
accentTertiary: {
|
|
15
24
|
fill: string;
|
|
@@ -4,6 +4,26 @@ declare const labelAppearanceDanger: {
|
|
|
4
4
|
fillHover: string;
|
|
5
5
|
labelTextColor: string;
|
|
6
6
|
labelTextColorHover: string;
|
|
7
|
+
borderColor: string;
|
|
8
|
+
iconAfterFillIcon: string;
|
|
9
|
+
iconBeforeFillIcon: string;
|
|
10
|
+
};
|
|
11
|
+
dangerMuted: {
|
|
12
|
+
fill: string;
|
|
13
|
+
labelTextColor: string;
|
|
14
|
+
labelTextColorHover: string;
|
|
15
|
+
borderColor: string;
|
|
16
|
+
iconAfterFillIcon: string;
|
|
17
|
+
iconBeforeFillIcon: string;
|
|
18
|
+
};
|
|
19
|
+
dangerPrimary: {
|
|
20
|
+
fill: string;
|
|
21
|
+
fillHover: string;
|
|
22
|
+
labelTextColor: string;
|
|
23
|
+
labelTextColorHover: string;
|
|
24
|
+
borderColor: string;
|
|
25
|
+
iconAfterFillIcon: string;
|
|
26
|
+
iconBeforeFillIcon: string;
|
|
7
27
|
};
|
|
8
28
|
};
|
|
9
29
|
export { labelAppearanceDanger };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare const labelAppearanceDisable: {
|
|
2
|
+
disablePrimary: {
|
|
3
|
+
fill: string;
|
|
4
|
+
labelTextColor: string;
|
|
5
|
+
labelTextColorHover: string;
|
|
6
|
+
borderColor: string;
|
|
7
|
+
iconAfterFillIcon: string;
|
|
8
|
+
iconBeforeFillIcon: string;
|
|
9
|
+
};
|
|
10
|
+
disableMuted: {
|
|
11
|
+
fill: string;
|
|
12
|
+
labelTextColor: string;
|
|
13
|
+
labelTextColorHover: string;
|
|
14
|
+
borderColor: string;
|
|
15
|
+
iconAfterFillIcon: string;
|
|
16
|
+
iconBeforeFillIcon: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export { labelAppearanceDisable };
|
|
@@ -1,15 +1,26 @@
|
|
|
1
1
|
declare const labelAppearanceError: {
|
|
2
|
-
|
|
2
|
+
errorPrimary: {
|
|
3
3
|
fill: string;
|
|
4
4
|
fillHover: string;
|
|
5
5
|
labelTextColor: string;
|
|
6
6
|
labelTextColorHover: string;
|
|
7
|
+
borderColor: string;
|
|
8
|
+
iconAfterFillIcon: string;
|
|
9
|
+
iconBeforeFillIcon: string;
|
|
7
10
|
};
|
|
8
|
-
|
|
11
|
+
error: {
|
|
9
12
|
fill: string;
|
|
10
13
|
fillHover: string;
|
|
11
14
|
labelTextColor: string;
|
|
12
15
|
labelTextColorHover: string;
|
|
13
16
|
};
|
|
17
|
+
errorMuted: {
|
|
18
|
+
fill: string;
|
|
19
|
+
labelTextColor: string;
|
|
20
|
+
labelTextColorHover: string;
|
|
21
|
+
borderColor: string;
|
|
22
|
+
iconAfterFillIcon: string;
|
|
23
|
+
iconBeforeFillIcon: string;
|
|
24
|
+
};
|
|
14
25
|
};
|
|
15
26
|
export { labelAppearanceError };
|
|
@@ -1,17 +1,29 @@
|
|
|
1
1
|
declare const labelAppearanceInfo: {
|
|
2
|
-
|
|
2
|
+
infoMuted: {
|
|
3
|
+
fill: string;
|
|
4
|
+
labelTextColor: string;
|
|
5
|
+
labelTextColorHover: string;
|
|
6
|
+
borderColor: string;
|
|
7
|
+
iconAfterFillIcon: string;
|
|
8
|
+
iconBeforeFillIcon: string;
|
|
9
|
+
};
|
|
10
|
+
infoPrimary: {
|
|
3
11
|
fill: string;
|
|
4
12
|
fillHover: string;
|
|
5
13
|
labelTextColor: string;
|
|
6
14
|
labelTextColorHover: string;
|
|
7
15
|
borderColor: string;
|
|
16
|
+
iconAfterFillIcon: string;
|
|
17
|
+
iconBeforeFillIcon: string;
|
|
8
18
|
};
|
|
9
|
-
|
|
19
|
+
infoSecondary: {
|
|
10
20
|
fill: string;
|
|
11
21
|
fillHover: string;
|
|
12
22
|
labelTextColor: string;
|
|
13
23
|
labelTextColorHover: string;
|
|
14
24
|
borderColor: string;
|
|
25
|
+
iconAfterFillIcon: string;
|
|
26
|
+
iconBeforeFillIcon: string;
|
|
15
27
|
};
|
|
16
28
|
};
|
|
17
29
|
export { labelAppearanceInfo };
|
|
@@ -3,6 +3,25 @@ declare const labelAppearancePrimary: {
|
|
|
3
3
|
fill: string;
|
|
4
4
|
labelTextColor: string;
|
|
5
5
|
labelTextColorHover: string;
|
|
6
|
+
borderColor: string;
|
|
7
|
+
iconAfterFillIcon: string;
|
|
8
|
+
iconBeforeFillIcon: string;
|
|
9
|
+
};
|
|
10
|
+
primaryMuted: {
|
|
11
|
+
fill: string;
|
|
12
|
+
labelTextColor: string;
|
|
13
|
+
labelTextColorHover: string;
|
|
14
|
+
borderColor: string;
|
|
15
|
+
iconAfterFillIcon: string;
|
|
16
|
+
iconBeforeFillIcon: string;
|
|
17
|
+
};
|
|
18
|
+
primaryPrimary: {
|
|
19
|
+
fill: string;
|
|
20
|
+
labelTextColor: string;
|
|
21
|
+
labelTextColorHover: string;
|
|
22
|
+
borderColor: string;
|
|
23
|
+
iconAfterFillIcon: string;
|
|
24
|
+
iconBeforeFillIcon: string;
|
|
6
25
|
};
|
|
7
26
|
};
|
|
8
27
|
export { labelAppearancePrimary };
|
|
@@ -3,6 +3,25 @@ declare const labelAppearanceSecondary: {
|
|
|
3
3
|
fill: string;
|
|
4
4
|
labelTextColor: string;
|
|
5
5
|
labelTextColorHover: string;
|
|
6
|
+
borderColor: string;
|
|
7
|
+
iconAfterFillIcon: string;
|
|
8
|
+
iconBeforeFillIcon: string;
|
|
9
|
+
};
|
|
10
|
+
secondaryMuted: {
|
|
11
|
+
fill: string;
|
|
12
|
+
labelTextColor: string;
|
|
13
|
+
labelTextColorHover: string;
|
|
14
|
+
borderColor: string;
|
|
15
|
+
iconAfterFillIcon: string;
|
|
16
|
+
iconBeforeFillIcon: string;
|
|
17
|
+
};
|
|
18
|
+
secondaryPrimary: {
|
|
19
|
+
fill: string;
|
|
20
|
+
labelTextColor: string;
|
|
21
|
+
labelTextColorHover: string;
|
|
22
|
+
borderColor: string;
|
|
23
|
+
iconAfterFillIcon: string;
|
|
24
|
+
iconBeforeFillIcon: string;
|
|
6
25
|
};
|
|
7
26
|
};
|
|
8
27
|
export { labelAppearanceSecondary };
|
|
@@ -5,11 +5,22 @@ declare const labelAppearanceSuccess: {
|
|
|
5
5
|
labelTextColor: string;
|
|
6
6
|
labelTextColorHover: string;
|
|
7
7
|
};
|
|
8
|
+
successMuted: {
|
|
9
|
+
fill: string;
|
|
10
|
+
labelTextColor: string;
|
|
11
|
+
labelTextColorHover: string;
|
|
12
|
+
borderColor: string;
|
|
13
|
+
iconAfterFillIcon: string;
|
|
14
|
+
iconBeforeFillIcon: string;
|
|
15
|
+
};
|
|
8
16
|
successPrimary: {
|
|
9
17
|
fill: string;
|
|
10
18
|
fillHover: string;
|
|
11
19
|
labelTextColor: string;
|
|
12
20
|
labelTextColorHover: string;
|
|
21
|
+
borderColor: string;
|
|
22
|
+
iconAfterFillIcon: string;
|
|
23
|
+
iconBeforeFillIcon: string;
|
|
13
24
|
};
|
|
14
25
|
};
|
|
15
26
|
export { labelAppearanceSuccess };
|
|
@@ -1,21 +1,32 @@
|
|
|
1
1
|
declare const labelAppearanceSurface: {
|
|
2
|
+
surfaceMuted: {
|
|
3
|
+
fill: string;
|
|
4
|
+
labelTextColor: string;
|
|
5
|
+
labelTextColorHover: string;
|
|
6
|
+
borderColor: string;
|
|
7
|
+
iconAfterFillIcon: string;
|
|
8
|
+
iconBeforeFillIcon: string;
|
|
9
|
+
};
|
|
2
10
|
surfacePrimary: {
|
|
3
11
|
fill: string;
|
|
4
12
|
fillHover: string;
|
|
5
13
|
labelTextColor: string;
|
|
6
14
|
labelTextColorHover: string;
|
|
15
|
+
borderColor: string;
|
|
16
|
+
iconAfterFillIcon: string;
|
|
17
|
+
iconBeforeFillIcon: string;
|
|
7
18
|
};
|
|
8
|
-
|
|
19
|
+
surfaceQuaternary: {
|
|
9
20
|
fill: string;
|
|
10
21
|
labelTextColor: string;
|
|
11
22
|
labelTextColorHover: string;
|
|
12
23
|
};
|
|
13
|
-
|
|
24
|
+
surfaceSecondary: {
|
|
14
25
|
fill: string;
|
|
15
26
|
labelTextColor: string;
|
|
16
27
|
labelTextColorHover: string;
|
|
17
28
|
};
|
|
18
|
-
|
|
29
|
+
surfaceTertiary: {
|
|
19
30
|
fill: string;
|
|
20
31
|
labelTextColor: string;
|
|
21
32
|
labelTextColorHover: string;
|
|
@@ -5,11 +5,22 @@ declare const labelAppearanceWarning: {
|
|
|
5
5
|
labelTextColor: string;
|
|
6
6
|
labelTextColorHover: string;
|
|
7
7
|
};
|
|
8
|
+
warningMuted: {
|
|
9
|
+
fill: string;
|
|
10
|
+
labelTextColor: string;
|
|
11
|
+
labelTextColorHover: string;
|
|
12
|
+
borderColor: string;
|
|
13
|
+
iconAfterFillIcon: string;
|
|
14
|
+
iconBeforeFillIcon: string;
|
|
15
|
+
};
|
|
8
16
|
warningPrimary: {
|
|
9
17
|
fill: string;
|
|
10
18
|
fillHover: string;
|
|
11
19
|
labelTextColor: string;
|
|
12
20
|
labelTextColorHover: string;
|
|
21
|
+
borderColor: string;
|
|
22
|
+
iconAfterFillIcon: string;
|
|
23
|
+
iconBeforeFillIcon: string;
|
|
13
24
|
};
|
|
14
25
|
};
|
|
15
26
|
export { labelAppearanceWarning };
|
|
@@ -2,12 +2,11 @@ declare const responseAppearanceConfirm: {
|
|
|
2
2
|
confirm: {
|
|
3
3
|
fill: string;
|
|
4
4
|
titleTextColor: string;
|
|
5
|
+
titleTextSize: string;
|
|
5
6
|
labelTextColor: string;
|
|
7
|
+
descTextSize: string;
|
|
6
8
|
primaryButtonAppearance: string;
|
|
7
9
|
secondaryButtonAppearance: string;
|
|
8
|
-
svgFill: string;
|
|
9
|
-
SvgImage: any;
|
|
10
|
-
svgPathFill: string;
|
|
11
10
|
};
|
|
12
11
|
};
|
|
13
12
|
export { responseAppearanceConfirm };
|
|
@@ -2,12 +2,11 @@ declare const responseAppearanceFail: {
|
|
|
2
2
|
fail: {
|
|
3
3
|
fill: string;
|
|
4
4
|
titleTextColor: string;
|
|
5
|
+
titleTextSize: string;
|
|
5
6
|
labelTextColor: string;
|
|
7
|
+
descTextSize: string;
|
|
6
8
|
primaryButtonAppearance: string;
|
|
7
9
|
secondaryButtonAppearance: string;
|
|
8
|
-
svgFill: string;
|
|
9
|
-
SvgImage: any;
|
|
10
|
-
svgPathFill: string;
|
|
11
10
|
};
|
|
12
11
|
};
|
|
13
12
|
export { responseAppearanceFail };
|
|
@@ -2,12 +2,11 @@ declare const responseAppearanceNothingFound: {
|
|
|
2
2
|
nothingFound: {
|
|
3
3
|
fill: string;
|
|
4
4
|
titleTextColor: string;
|
|
5
|
+
titleTextSize: string;
|
|
5
6
|
labelTextColor: string;
|
|
7
|
+
descTextSize: string;
|
|
6
8
|
primaryButtonAppearance: string;
|
|
7
9
|
secondaryButtonAppearance: string;
|
|
8
|
-
svgFill: string;
|
|
9
|
-
SvgImage: any;
|
|
10
|
-
svgPathFill: string;
|
|
11
10
|
};
|
|
12
11
|
};
|
|
13
12
|
export { responseAppearanceNothingFound };
|
|
@@ -2,12 +2,11 @@ declare const responseAppearanceRefresh: {
|
|
|
2
2
|
refresh: {
|
|
3
3
|
fill: string;
|
|
4
4
|
titleTextColor: string;
|
|
5
|
+
titleTextSize: string;
|
|
5
6
|
labelTextColor: string;
|
|
7
|
+
descTextSize: string;
|
|
6
8
|
primaryButtonAppearance: string;
|
|
7
9
|
secondaryButtonAppearance: string;
|
|
8
|
-
svgFill: string;
|
|
9
|
-
SvgImage: any;
|
|
10
|
-
svgPathFill: string;
|
|
11
10
|
};
|
|
12
11
|
};
|
|
13
12
|
export { responseAppearanceRefresh };
|