sapo-components-ui-rn 1.0.0
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/README.md +69 -0
- package/dist/assets/error.png +0 -0
- package/dist/assets/icon-checkbox-active.svg +4 -0
- package/dist/assets/icon-checkbox.svg +3 -0
- package/dist/assets/image_default.png +0 -0
- package/dist/assets/images/error.png +0 -0
- package/dist/assets/images/image_default.png +0 -0
- package/dist/assets/images/info.png +0 -0
- package/dist/assets/images/success.png +0 -0
- package/dist/assets/images/warning.png +0 -0
- package/dist/assets/info.png +0 -0
- package/dist/assets/success.png +0 -0
- package/dist/assets/svg/icon-checkbox-active.svg +4 -0
- package/dist/assets/svg/icon-checkbox.svg +3 -0
- package/dist/assets/warning.png +0 -0
- package/dist/components/ActivityIndicator.d.ts +28 -0
- package/dist/components/Avatar/index.d.ts +17 -0
- package/dist/components/Badge/index.d.ts +13 -0
- package/dist/components/Button/index.d.ts +23 -0
- package/dist/components/ButtonIcon/index.d.ts +18 -0
- package/dist/components/Checkbox/index.d.ts +14 -0
- package/dist/components/ChipBar/index.d.ts +16 -0
- package/dist/components/CountingDot/index.d.ts +13 -0
- package/dist/components/FloatingButton/index.d.ts +17 -0
- package/dist/components/Icon/index.d.ts +17 -0
- package/dist/components/IconSvg/index.d.ts +12 -0
- package/dist/components/Image/index.d.ts +14 -0
- package/dist/components/ProgressBar.d.ts +42 -0
- package/dist/components/RadioButton/index.d.ts +13 -0
- package/dist/components/ScaleButton/index.d.ts +4 -0
- package/dist/components/SelectionField/index.d.ts +24 -0
- package/dist/components/Spacer/index.d.ts +9 -0
- package/dist/components/Switch/Switch.d.ts +47 -0
- package/dist/components/Switch/utils.d.ts +14 -0
- package/dist/components/Text/index.d.ts +14 -0
- package/dist/components/TextInput/Addons/Outline.d.ts +15 -0
- package/dist/components/TextInput/Addons/Underline.d.ts +19 -0
- package/dist/components/TextInput/Adornment/TextInputAdornment.d.ts +43 -0
- package/dist/components/TextInput/Adornment/TextInputAffix.d.ts +72 -0
- package/dist/components/TextInput/Adornment/enums.d.ts +12 -0
- package/dist/components/TextInput/Adornment/types.d.ts +11 -0
- package/dist/components/TextInput/Adornment/utils.d.ts +11 -0
- package/dist/components/TextInput/Label/InputLabel.d.ts +4 -0
- package/dist/components/TextInput/Label/LabelBackground.d.ts +4 -0
- package/dist/components/TextInput/TextInput.d.ts +171 -0
- package/dist/components/TextInput/TextInputDefault.d.ts +4 -0
- package/dist/components/TextInput/TextInputFlat.d.ts +4 -0
- package/dist/components/TextInput/constants.d.ts +31 -0
- package/dist/components/TextInput/helpers.d.ts +95 -0
- package/dist/components/TextInput/types.d.ts +154 -0
- package/dist/components/Toast/ToastProvider.d.ts +21 -0
- package/dist/components/Toast/index.d.ts +3 -0
- package/dist/components/Typography/AnimatedText.d.ts +34 -0
- package/dist/components/Typography/StyledText.d.ts +12 -0
- package/dist/components/Typography/Text.d.ts +35 -0
- package/dist/components/Typography/types.d.ts +2 -0
- package/dist/components/View/index.d.ts +38 -0
- package/dist/components/ViewVisibleAnimated/index.d.ts +25 -0
- package/dist/constants.d.ts +1 -0
- package/dist/core/theming.d.ts +43 -0
- package/dist/icons/IconArrowDown.d.ts +4 -0
- package/dist/icons/IconCheckbox.d.ts +4 -0
- package/dist/icons/IconCheckboxActive.d.ts +4 -0
- package/dist/icons/IconClearText.d.ts +4 -0
- package/dist/icons/IconRadio.d.ts +4 -0
- package/dist/icons/IconRadioActive.d.ts +4 -0
- package/dist/icons/IconRadioDisable.d.ts +4 -0
- package/dist/index.d.ts +33 -0
- package/dist/index.esm.js +6758 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +6823 -0
- package/dist/index.js.map +1 -0
- package/dist/styles/fonts.d.ts +78 -0
- package/dist/styles/overlay.d.ts +3 -0
- package/dist/styles/shadow.d.ts +18 -0
- package/dist/styles/themes/DarkTheme.d.ts +2 -0
- package/dist/styles/themes/LightTheme.d.ts +2 -0
- package/dist/styles/themes/index.d.ts +2 -0
- package/dist/styles/themes/tokens.d.ts +830 -0
- package/dist/theme/blue.d.ts +14 -0
- package/dist/theme/colors.d.ts +99 -0
- package/dist/theme/container-styles.d.ts +124 -0
- package/dist/theme/dimensions.d.ts +36 -0
- package/dist/theme/green.d.ts +15 -0
- package/dist/theme/icon.d.ts +5 -0
- package/dist/theme/ink.d.ts +11 -0
- package/dist/theme/orange.d.ts +14 -0
- package/dist/theme/purple.d.ts +6 -0
- package/dist/theme/red.d.ts +15 -0
- package/dist/theme/themes.d.ts +277 -0
- package/dist/theme/white.d.ts +10 -0
- package/dist/theme/yellow.d.ts +15 -0
- package/dist/types/index.d.ts +65 -0
- package/dist/types.d.ts +220 -0
- package/dist/utils/BackHandler/BackHandler.d.ts +9 -0
- package/dist/utils/BackHandler/BackHandler.native.d.ts +2 -0
- package/dist/utils/addEventListener.d.ts +12 -0
- package/dist/utils/forwardRef.d.ts +11 -0
- package/dist/utils/function-utils.d.ts +12 -0
- package/dist/utils/getContrastingColor.d.ts +2 -0
- package/dist/utils/hasTouchHandler.d.ts +5 -0
- package/dist/utils/roundLayoutSize.d.ts +1 -0
- package/dist/utils/splitStyles.d.ts +19 -0
- package/dist/utils/toast-manager.d.ts +21 -0
- package/dist/utils/useAnimatedValue.d.ts +2 -0
- package/dist/utils/useAnimatedValueArray.d.ts +2 -0
- package/dist/utils/useIsKeyboardShown.d.ts +6 -0
- package/dist/utils/useLayout.d.ts +6 -0
- package/dist/utils/useLazyRef.d.ts +2 -0
- package/package.json +104 -0
- package/src/.DS_Store +0 -0
- package/src/assets/images/error.png +0 -0
- package/src/assets/images/image_default.png +0 -0
- package/src/assets/images/info.png +0 -0
- package/src/assets/images/success.png +0 -0
- package/src/assets/images/warning.png +0 -0
- package/src/assets/svg/icon-checkbox-active.svg +4 -0
- package/src/assets/svg/icon-checkbox.svg +3 -0
- package/src/babel/.eslintrc +7 -0
- package/src/babel/index.js +63 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/ActivityIndicator.tsx +238 -0
- package/src/components/Avatar/index.tsx +102 -0
- package/src/components/Badge/index.tsx +55 -0
- package/src/components/Button/index.tsx +162 -0
- package/src/components/ButtonIcon/index.tsx +98 -0
- package/src/components/Checkbox/index.tsx +107 -0
- package/src/components/ChipBar/index.tsx +112 -0
- package/src/components/CountingDot/index.tsx +63 -0
- package/src/components/FloatingButton/index.tsx +99 -0
- package/src/components/Icon/index.tsx +135 -0
- package/src/components/IconSvg/index.tsx +42 -0
- package/src/components/Image/index.tsx +127 -0
- package/src/components/ProgressBar.tsx +272 -0
- package/src/components/RadioButton/index.tsx +105 -0
- package/src/components/ScaleButton/index.tsx +17 -0
- package/src/components/SelectionField/index.tsx +166 -0
- package/src/components/Spacer/index.tsx +19 -0
- package/src/components/Switch/Switch.tsx +110 -0
- package/src/components/Switch/utils.ts +96 -0
- package/src/components/Text/index.tsx +69 -0
- package/src/components/TextInput/.DS_Store +0 -0
- package/src/components/TextInput/Addons/Outline.tsx +62 -0
- package/src/components/TextInput/Addons/Underline.tsx +71 -0
- package/src/components/TextInput/Adornment/TextInputAdornment.tsx +191 -0
- package/src/components/TextInput/Adornment/TextInputAffix.tsx +212 -0
- package/src/components/TextInput/Adornment/enums.tsx +12 -0
- package/src/components/TextInput/Adornment/types.tsx +11 -0
- package/src/components/TextInput/Adornment/utils.ts +39 -0
- package/src/components/TextInput/Label/InputLabel.tsx +216 -0
- package/src/components/TextInput/Label/LabelBackground.tsx +100 -0
- package/src/components/TextInput/TextInput.tsx +564 -0
- package/src/components/TextInput/TextInputDefault.tsx +187 -0
- package/src/components/TextInput/TextInputFlat.tsx +452 -0
- package/src/components/TextInput/constants.tsx +48 -0
- package/src/components/TextInput/helpers.tsx +546 -0
- package/src/components/TextInput/types.tsx +155 -0
- package/src/components/Toast/ToastProvider.tsx +69 -0
- package/src/components/Toast/index.tsx +239 -0
- package/src/components/Typography/AnimatedText.tsx +84 -0
- package/src/components/Typography/StyledText.tsx +53 -0
- package/src/components/Typography/Text.tsx +189 -0
- package/src/components/Typography/types.tsx +5 -0
- package/src/components/View/index.tsx +175 -0
- package/src/components/ViewVisibleAnimated/index.tsx +199 -0
- package/src/constants.tsx +16 -0
- package/src/core/theming.tsx +144 -0
- package/src/icons/IconArrowDown.tsx +14 -0
- package/src/icons/IconCheckbox.tsx +20 -0
- package/src/icons/IconCheckboxActive.tsx +18 -0
- package/src/icons/IconClearText.tsx +14 -0
- package/src/icons/IconRadio.tsx +11 -0
- package/src/icons/IconRadioActive.tsx +12 -0
- package/src/icons/IconRadioDisable.tsx +12 -0
- package/src/index.ts +51 -0
- package/src/index.tsx +50 -0
- package/src/styles/fonts.tsx +89 -0
- package/src/styles/overlay.tsx +69 -0
- package/src/styles/shadow.tsx +47 -0
- package/src/styles/themes/DarkTheme.tsx +157 -0
- package/src/styles/themes/LightTheme.tsx +160 -0
- package/src/styles/themes/index.ts +3 -0
- package/src/styles/themes/tokens.tsx +481 -0
- package/src/theme/blue.ts +25 -0
- package/src/theme/colors.ts +21 -0
- package/src/theme/container-styles.tsx +126 -0
- package/src/theme/dimensions.ts +44 -0
- package/src/theme/green.ts +27 -0
- package/src/theme/icon.ts +7 -0
- package/src/theme/ink.ts +18 -0
- package/src/theme/orange.ts +24 -0
- package/src/theme/purple.ts +8 -0
- package/src/theme/red.ts +26 -0
- package/src/theme/themes.tsx +287 -0
- package/src/theme/white.ts +16 -0
- package/src/theme/yellow.ts +26 -0
- package/src/types/index.ts +71 -0
- package/src/types/svg.d.ts +5 -0
- package/src/types.ts +259 -0
- package/src/types.tsx +284 -0
- package/src/utils/BackHandler/BackHandler.native.tsx +3 -0
- package/src/utils/BackHandler/BackHandler.tsx +11 -0
- package/src/utils/addEventListener.tsx +56 -0
- package/src/utils/forwardRef.tsx +23 -0
- package/src/utils/function-utils.tsx +108 -0
- package/src/utils/getContrastingColor.tsx +15 -0
- package/src/utils/hasTouchHandler.tsx +23 -0
- package/src/utils/roundLayoutSize.ts +2 -0
- package/src/utils/splitStyles.ts +60 -0
- package/src/utils/toast-manager.tsx +46 -0
- package/src/utils/useAnimatedValue.tsx +9 -0
- package/src/utils/useAnimatedValueArray.tsx +13 -0
- package/src/utils/useIsKeyboardShown.tsx +55 -0
- package/src/utils/useLayout.tsx +29 -0
- package/src/utils/useLazyRef.tsx +11 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
BLUE180: string;
|
|
3
|
+
BLUE160: string;
|
|
4
|
+
BLUE140: string;
|
|
5
|
+
BLUE120: string;
|
|
6
|
+
BLUE100: string;
|
|
7
|
+
BLUE80: string;
|
|
8
|
+
BLUE60: string;
|
|
9
|
+
BLUE40: string;
|
|
10
|
+
BLUE20: string;
|
|
11
|
+
BLUE10: string;
|
|
12
|
+
BLUE5: string;
|
|
13
|
+
};
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
blue: {
|
|
3
|
+
BLUE180: string;
|
|
4
|
+
BLUE160: string;
|
|
5
|
+
BLUE140: string;
|
|
6
|
+
BLUE120: string;
|
|
7
|
+
BLUE100: string;
|
|
8
|
+
BLUE80: string;
|
|
9
|
+
BLUE60: string;
|
|
10
|
+
BLUE40: string;
|
|
11
|
+
BLUE20: string;
|
|
12
|
+
BLUE10: string;
|
|
13
|
+
BLUE5: string;
|
|
14
|
+
};
|
|
15
|
+
green: {
|
|
16
|
+
GREEN180: string;
|
|
17
|
+
GREEN160: string;
|
|
18
|
+
GREEN140: string;
|
|
19
|
+
GREEN120: string;
|
|
20
|
+
GREEN100: string;
|
|
21
|
+
GREEN80: string;
|
|
22
|
+
GREEN60: string;
|
|
23
|
+
GREEN40: string;
|
|
24
|
+
GREEN20: string;
|
|
25
|
+
GREEN10: string;
|
|
26
|
+
GREEN5: string;
|
|
27
|
+
GREEN_STATUS: string;
|
|
28
|
+
};
|
|
29
|
+
ink: {
|
|
30
|
+
INK100: string;
|
|
31
|
+
INK90: string;
|
|
32
|
+
INK80: string;
|
|
33
|
+
INK60: string;
|
|
34
|
+
INK40: string;
|
|
35
|
+
INK20: string;
|
|
36
|
+
INK10: string;
|
|
37
|
+
INK5: string;
|
|
38
|
+
};
|
|
39
|
+
white: {
|
|
40
|
+
WHITE100: string;
|
|
41
|
+
WHITE80: string;
|
|
42
|
+
WHITE60: string;
|
|
43
|
+
WHITE40: string;
|
|
44
|
+
WHITE20: string;
|
|
45
|
+
WHITE10: string;
|
|
46
|
+
WHITE5: string;
|
|
47
|
+
};
|
|
48
|
+
red: {
|
|
49
|
+
RED180: string;
|
|
50
|
+
RED160: string;
|
|
51
|
+
RED140: string;
|
|
52
|
+
RED120: string;
|
|
53
|
+
RED100: string;
|
|
54
|
+
RED80: string;
|
|
55
|
+
RED60: string;
|
|
56
|
+
RED40: string;
|
|
57
|
+
RED20: string;
|
|
58
|
+
RED10: string;
|
|
59
|
+
RED5: string;
|
|
60
|
+
RED_STATUS: string;
|
|
61
|
+
};
|
|
62
|
+
purple: {
|
|
63
|
+
PURPLE100: string;
|
|
64
|
+
PURPLE5: string;
|
|
65
|
+
PURPLE_BG: string;
|
|
66
|
+
};
|
|
67
|
+
orange: {
|
|
68
|
+
ORANGE180: string;
|
|
69
|
+
ORANGE160: string;
|
|
70
|
+
ORANGE140: string;
|
|
71
|
+
ORANGE120: string;
|
|
72
|
+
ORANGE100: string;
|
|
73
|
+
ORANGE80: string;
|
|
74
|
+
ORANGE60: string;
|
|
75
|
+
ORANGE40: string;
|
|
76
|
+
ORANGE20: string;
|
|
77
|
+
ORANGE10: string;
|
|
78
|
+
ORANGE5: string;
|
|
79
|
+
};
|
|
80
|
+
yellow: {
|
|
81
|
+
YELLOW180: string;
|
|
82
|
+
YELLOW160: string;
|
|
83
|
+
YELLOW140: string;
|
|
84
|
+
YELLOW120: string;
|
|
85
|
+
YELLOW100: string;
|
|
86
|
+
YELLOW80: string;
|
|
87
|
+
YELLOW60: string;
|
|
88
|
+
YELLOW40: string;
|
|
89
|
+
YELLOW20: string;
|
|
90
|
+
YELLOW10: string;
|
|
91
|
+
YELLOW5: string;
|
|
92
|
+
YELLOW_STATUS: string;
|
|
93
|
+
};
|
|
94
|
+
icon: {
|
|
95
|
+
ICON100: string;
|
|
96
|
+
ICON50: string;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
export default _default;
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
container: {
|
|
3
|
+
flex: number;
|
|
4
|
+
};
|
|
5
|
+
center: {
|
|
6
|
+
paddingHorizontal: number;
|
|
7
|
+
alignItems: "center";
|
|
8
|
+
justifyContent: "center";
|
|
9
|
+
};
|
|
10
|
+
end: {
|
|
11
|
+
alignItems: "flex-end";
|
|
12
|
+
};
|
|
13
|
+
start: {
|
|
14
|
+
alignItems: "flex-start";
|
|
15
|
+
};
|
|
16
|
+
centerHorizontal: {
|
|
17
|
+
justifyContent: "center";
|
|
18
|
+
};
|
|
19
|
+
icon: {
|
|
20
|
+
backgroundColor: string;
|
|
21
|
+
justifyContent: "center";
|
|
22
|
+
alignItems: "center";
|
|
23
|
+
};
|
|
24
|
+
row: {
|
|
25
|
+
flexDirection: "row";
|
|
26
|
+
};
|
|
27
|
+
txtSmallBold: {
|
|
28
|
+
fontSize: number;
|
|
29
|
+
color: string;
|
|
30
|
+
fontWeight: "600";
|
|
31
|
+
};
|
|
32
|
+
button: {
|
|
33
|
+
borderRadius: number;
|
|
34
|
+
justifyContent: "center";
|
|
35
|
+
alignItems: "center";
|
|
36
|
+
width: number;
|
|
37
|
+
height: number;
|
|
38
|
+
backgroundColor: string;
|
|
39
|
+
marginHorizontal: number;
|
|
40
|
+
};
|
|
41
|
+
shadow: {
|
|
42
|
+
shadowColor: string;
|
|
43
|
+
shadowOffset: {
|
|
44
|
+
width: number;
|
|
45
|
+
height: number;
|
|
46
|
+
};
|
|
47
|
+
shadowOpacity: number;
|
|
48
|
+
shadowRadius: number;
|
|
49
|
+
};
|
|
50
|
+
hitSlop: {
|
|
51
|
+
top: number;
|
|
52
|
+
right: number;
|
|
53
|
+
bottom: number;
|
|
54
|
+
left: number;
|
|
55
|
+
};
|
|
56
|
+
transparent: {
|
|
57
|
+
backgroundColor: string;
|
|
58
|
+
};
|
|
59
|
+
text10: {
|
|
60
|
+
fontSize: number;
|
|
61
|
+
lineHeight: number;
|
|
62
|
+
};
|
|
63
|
+
text12: {
|
|
64
|
+
fontSize: number;
|
|
65
|
+
lineHeight: number;
|
|
66
|
+
};
|
|
67
|
+
text14: {
|
|
68
|
+
fontSize: number;
|
|
69
|
+
lineHeight: number;
|
|
70
|
+
};
|
|
71
|
+
text16: {
|
|
72
|
+
fontSize: number;
|
|
73
|
+
lineHeight: number;
|
|
74
|
+
};
|
|
75
|
+
text18: {
|
|
76
|
+
fontSize: number;
|
|
77
|
+
lineHeight: number;
|
|
78
|
+
};
|
|
79
|
+
text20: {
|
|
80
|
+
fontSize: number;
|
|
81
|
+
lineHeight: number;
|
|
82
|
+
};
|
|
83
|
+
text22: {
|
|
84
|
+
fontSize: number;
|
|
85
|
+
lineHeight: number;
|
|
86
|
+
};
|
|
87
|
+
text24: {
|
|
88
|
+
fontSize: number;
|
|
89
|
+
lineHeight: number;
|
|
90
|
+
};
|
|
91
|
+
text26: {
|
|
92
|
+
fontSize: number;
|
|
93
|
+
lineHeight: number;
|
|
94
|
+
};
|
|
95
|
+
text28: {
|
|
96
|
+
fontSize: number;
|
|
97
|
+
lineHeight: number;
|
|
98
|
+
};
|
|
99
|
+
text30: {
|
|
100
|
+
fontSize: number;
|
|
101
|
+
lineHeight: number;
|
|
102
|
+
};
|
|
103
|
+
text32: {
|
|
104
|
+
fontSize: number;
|
|
105
|
+
lineHeight: number;
|
|
106
|
+
};
|
|
107
|
+
textRegular: {
|
|
108
|
+
fontFamily: string;
|
|
109
|
+
fontWeight: "400";
|
|
110
|
+
};
|
|
111
|
+
textMedium: {
|
|
112
|
+
fontFamily: string;
|
|
113
|
+
fontWeight: "500";
|
|
114
|
+
};
|
|
115
|
+
textBold: {
|
|
116
|
+
fontFamily: string;
|
|
117
|
+
fontWeight: "600";
|
|
118
|
+
};
|
|
119
|
+
styleIcon: {
|
|
120
|
+
width: number;
|
|
121
|
+
height: number;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
export default _default;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export declare const DEVICE_HEIGHT: number;
|
|
2
|
+
export declare const DEVICE_WIDTH: number;
|
|
3
|
+
export declare const HEADER_HEIGHT = 50;
|
|
4
|
+
export declare const BUTTON_HEIGHT = 48;
|
|
5
|
+
export declare const BUTTON_HEIGHT_SMALL = 40;
|
|
6
|
+
export declare const RADIO_BUTTON_HEIGHT = 20;
|
|
7
|
+
export declare const SPACE_0 = 0;
|
|
8
|
+
export declare const SPACE_2 = 2;
|
|
9
|
+
export declare const SPACE_4 = 4;
|
|
10
|
+
export declare const SPACE_6 = 6;
|
|
11
|
+
export declare const SPACE_8 = 8;
|
|
12
|
+
export declare const SPACE_12 = 12;
|
|
13
|
+
export declare const SPACE_16 = 16;
|
|
14
|
+
export declare const SPACE_20 = 20;
|
|
15
|
+
export declare const SPACE_24 = 24;
|
|
16
|
+
export declare const SPACE_28 = 28;
|
|
17
|
+
export declare const SPACE_32 = 32;
|
|
18
|
+
export declare const SPACE_36 = 36;
|
|
19
|
+
export declare const SPACE_40 = 40;
|
|
20
|
+
export declare const SPACE_48 = 48;
|
|
21
|
+
export declare const SPACE_64 = 64;
|
|
22
|
+
export declare const SPACE_80 = 80;
|
|
23
|
+
export declare const SPACE_96 = 96;
|
|
24
|
+
export declare const SPACE_112 = 112;
|
|
25
|
+
export declare const SPACE_128 = 128;
|
|
26
|
+
export declare const SPACE_BUTTON_GAP = 8;
|
|
27
|
+
export declare const SPACE_CARD_PADDING = 24;
|
|
28
|
+
export declare const SPACE_CARD_GAP = 12;
|
|
29
|
+
export declare const BORDER_RADIUS_6 = 6;
|
|
30
|
+
export declare const BORDER_RADIUS_8 = 8;
|
|
31
|
+
export declare const BORDER_RADIUS_12 = 12;
|
|
32
|
+
export declare const BORDER_RADIUS_ROUNDED = 36;
|
|
33
|
+
export declare const BORDER_WIDTH_05: number;
|
|
34
|
+
export declare const BORDER_WIDTH_1 = 1;
|
|
35
|
+
export declare const BORDER_WIDTH_2 = 2;
|
|
36
|
+
export declare const BORDER_WIDTH_4 = 4;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
GREEN180: string;
|
|
3
|
+
GREEN160: string;
|
|
4
|
+
GREEN140: string;
|
|
5
|
+
GREEN120: string;
|
|
6
|
+
GREEN100: string;
|
|
7
|
+
GREEN80: string;
|
|
8
|
+
GREEN60: string;
|
|
9
|
+
GREEN40: string;
|
|
10
|
+
GREEN20: string;
|
|
11
|
+
GREEN10: string;
|
|
12
|
+
GREEN5: string;
|
|
13
|
+
GREEN_STATUS: string;
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
ORANGE180: string;
|
|
3
|
+
ORANGE160: string;
|
|
4
|
+
ORANGE140: string;
|
|
5
|
+
ORANGE120: string;
|
|
6
|
+
ORANGE100: string;
|
|
7
|
+
ORANGE80: string;
|
|
8
|
+
ORANGE60: string;
|
|
9
|
+
ORANGE40: string;
|
|
10
|
+
ORANGE20: string;
|
|
11
|
+
ORANGE10: string;
|
|
12
|
+
ORANGE5: string;
|
|
13
|
+
};
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
RED180: string;
|
|
3
|
+
RED160: string;
|
|
4
|
+
RED140: string;
|
|
5
|
+
RED120: string;
|
|
6
|
+
RED100: string;
|
|
7
|
+
RED80: string;
|
|
8
|
+
RED60: string;
|
|
9
|
+
RED40: string;
|
|
10
|
+
RED20: string;
|
|
11
|
+
RED10: string;
|
|
12
|
+
RED5: string;
|
|
13
|
+
RED_STATUS: string;
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
export declare const THEME_SUPPORT: {
|
|
2
|
+
LIGHT: string;
|
|
3
|
+
DARK: string;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: {
|
|
6
|
+
dark: {
|
|
7
|
+
dark: boolean;
|
|
8
|
+
colors: {
|
|
9
|
+
primary: string;
|
|
10
|
+
background: string;
|
|
11
|
+
card: string;
|
|
12
|
+
text: string;
|
|
13
|
+
border: string;
|
|
14
|
+
gray: string;
|
|
15
|
+
backgroundLight: string;
|
|
16
|
+
backgroundPrimary: string;
|
|
17
|
+
backgroundSecondary: string;
|
|
18
|
+
borderBrandDefault: string;
|
|
19
|
+
borderCriticalDefault: string;
|
|
20
|
+
borderCriticalHover: string;
|
|
21
|
+
borderCriticalPressed: string;
|
|
22
|
+
borderErrorDefault: string;
|
|
23
|
+
borderInfoDefault: string;
|
|
24
|
+
borderPrimaryDefault: string;
|
|
25
|
+
borderPrimaryDisabled: string;
|
|
26
|
+
borderPrimaryHovered: string;
|
|
27
|
+
borderPrimaryInverseDefault: string;
|
|
28
|
+
borderPrimaryPressed: string;
|
|
29
|
+
borderSuccessDefault: string;
|
|
30
|
+
borderWarningDefault: string;
|
|
31
|
+
iconBrandDefault: string;
|
|
32
|
+
iconCriticalDefault: string;
|
|
33
|
+
iconErrorDefault: string;
|
|
34
|
+
iconInfoDefault: string;
|
|
35
|
+
iconPrimaryDefault: string;
|
|
36
|
+
iconPrimaryHover: string;
|
|
37
|
+
iconPrimaryDisabled: string;
|
|
38
|
+
iconPrimaryInverseDefault: string;
|
|
39
|
+
iconPrimaryInverseHover: string;
|
|
40
|
+
iconPrimaryInversePressed: string;
|
|
41
|
+
iconPrimaryPressed: string;
|
|
42
|
+
iconSuccessDefault: string;
|
|
43
|
+
iconWarningDefault: string;
|
|
44
|
+
surfaceBrandDefault: string;
|
|
45
|
+
surfaceBrandDisabled: string;
|
|
46
|
+
surfaceBrandHover: string;
|
|
47
|
+
surfaceBrandInverseDefault: string;
|
|
48
|
+
surfaceBrandInverseHover: string;
|
|
49
|
+
surfaceBrandInversePressed: string;
|
|
50
|
+
surfaceBrandPressed: string;
|
|
51
|
+
surfaceCriticalDefault: string;
|
|
52
|
+
surfaceCriticalDisabled: string;
|
|
53
|
+
surfaceCriticalHover: string;
|
|
54
|
+
surfaceCriticalInverseDefault: string;
|
|
55
|
+
surfaceCriticalInverseHover: string;
|
|
56
|
+
surfaceCriticalInversePressed: string;
|
|
57
|
+
surfaceCriticalPressed: string;
|
|
58
|
+
surfaceErrorDefault: string;
|
|
59
|
+
surfaceErrorDisabled: string;
|
|
60
|
+
surfaceErrorHover: string;
|
|
61
|
+
surfaceErrorInverseDefault: string;
|
|
62
|
+
surfaceErrorInverseHover: string;
|
|
63
|
+
surfaceErrorInversePressed: string;
|
|
64
|
+
surfaceErrorPressed: string;
|
|
65
|
+
surfaceInfoDefault: string;
|
|
66
|
+
surfaceInfoDisabled: string;
|
|
67
|
+
surfaceInfoHover: string;
|
|
68
|
+
surfaceInfoInverseDefault: string;
|
|
69
|
+
surfaceInfoInverseHover: string;
|
|
70
|
+
surfaceInfoInversePressed: string;
|
|
71
|
+
surfaceInfoPressed: string;
|
|
72
|
+
surfacePrimaryDefault: string;
|
|
73
|
+
surfacePrimaryDisabled: string;
|
|
74
|
+
surfacePrimaryHover: string;
|
|
75
|
+
surfacePrimaryInverseDefault: string;
|
|
76
|
+
surfacePrimaryInverseHover: string;
|
|
77
|
+
surfacePrimaryInversePressed: string;
|
|
78
|
+
surfacePrimaryPressed: string;
|
|
79
|
+
surfaceSecondaryDefault: string;
|
|
80
|
+
surfaceSecondaryDisabled: string;
|
|
81
|
+
surfaceSecondaryHover: string;
|
|
82
|
+
surfaceSecondaryPressed: string;
|
|
83
|
+
surfaceSuccessDefault: string;
|
|
84
|
+
surfaceSuccessDisabled: string;
|
|
85
|
+
surfaceSuccessHover: string;
|
|
86
|
+
surfaceSuccessInverseDefault: string;
|
|
87
|
+
surfaceSuccessInverseHover: string;
|
|
88
|
+
surfaceSuccessInversePressed: string;
|
|
89
|
+
surfaceSuccessPressed: string;
|
|
90
|
+
surfaceWarningDefault: string;
|
|
91
|
+
surfaceWarningDisabled: string;
|
|
92
|
+
surfaceWarningHover: string;
|
|
93
|
+
surfaceWarningInverseDefault: string;
|
|
94
|
+
surfaceWarningInverseHover: string;
|
|
95
|
+
surfaceWarningInversePressed: string;
|
|
96
|
+
surfaceWarningPressed: string;
|
|
97
|
+
textDefault: string;
|
|
98
|
+
textDisabled: string;
|
|
99
|
+
textPlaceholder: string;
|
|
100
|
+
textSecondary: string;
|
|
101
|
+
textBrandDefault: string;
|
|
102
|
+
textBrandDisabled: string;
|
|
103
|
+
textBrandHovered: string;
|
|
104
|
+
textBrandPressed: string;
|
|
105
|
+
textCriticalDefault: string;
|
|
106
|
+
textCriticalDisabled: string;
|
|
107
|
+
textCriticalHovered: string;
|
|
108
|
+
textCriticalPressed: string;
|
|
109
|
+
textErrorDefault: string;
|
|
110
|
+
textErrorDisabled: string;
|
|
111
|
+
textErrorHovered: string;
|
|
112
|
+
textErrorPressed: string;
|
|
113
|
+
textInfoDefault: string;
|
|
114
|
+
textInfoDisabled: string;
|
|
115
|
+
textInfoHovered: string;
|
|
116
|
+
textInfoPressed: string;
|
|
117
|
+
textLinkDefault: string;
|
|
118
|
+
textLinkDisabled: string;
|
|
119
|
+
textLinkHovered: string;
|
|
120
|
+
textLinkPressed: string;
|
|
121
|
+
textLinkVisitedDefault: string;
|
|
122
|
+
textLinkVisitedDisabled: string;
|
|
123
|
+
textLinkVisitedHovered: string;
|
|
124
|
+
textLinkVisitedPressed: string;
|
|
125
|
+
textOnFillDefault: string;
|
|
126
|
+
textOnFillDisabled: string;
|
|
127
|
+
textOnFillHovered: string;
|
|
128
|
+
textOnFillPressed: string;
|
|
129
|
+
textSuccessDefault: string;
|
|
130
|
+
textSuccessDisabled: string;
|
|
131
|
+
textSuccessHovered: string;
|
|
132
|
+
textSuccessPressed: string;
|
|
133
|
+
textWarningDefault: string;
|
|
134
|
+
textWarningDisabled: string;
|
|
135
|
+
textWarningHovered: string;
|
|
136
|
+
textWarningPressed: string;
|
|
137
|
+
selectBackgroundDisabled: string;
|
|
138
|
+
selectIconDisabled: string;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
light: {
|
|
142
|
+
dark: boolean;
|
|
143
|
+
colors: {
|
|
144
|
+
primary: string;
|
|
145
|
+
background: string;
|
|
146
|
+
card: string;
|
|
147
|
+
text: string;
|
|
148
|
+
border: string;
|
|
149
|
+
gray: string;
|
|
150
|
+
backgroundLight: string;
|
|
151
|
+
backgroundPrimary: string;
|
|
152
|
+
backgroundSecondary: string;
|
|
153
|
+
borderBrandDefault: string;
|
|
154
|
+
borderCriticalDefault: string;
|
|
155
|
+
borderCriticalHover: string;
|
|
156
|
+
borderCriticalPressed: string;
|
|
157
|
+
borderErrorDefault: string;
|
|
158
|
+
borderInfoDefault: string;
|
|
159
|
+
borderPrimaryDefault: string;
|
|
160
|
+
borderPrimaryDisabled: string;
|
|
161
|
+
borderPrimaryHovered: string;
|
|
162
|
+
borderPrimaryInverseDefault: string;
|
|
163
|
+
borderPrimaryPressed: string;
|
|
164
|
+
borderSuccessDefault: string;
|
|
165
|
+
borderWarningDefault: string;
|
|
166
|
+
iconBrandDefault: string;
|
|
167
|
+
iconCriticalDefault: string;
|
|
168
|
+
iconErrorDefault: string;
|
|
169
|
+
iconInfoDefault: string;
|
|
170
|
+
iconPrimaryDefault: string;
|
|
171
|
+
iconPrimaryHover: string;
|
|
172
|
+
iconPrimaryDisabled: string;
|
|
173
|
+
iconPrimaryInverseDefault: string;
|
|
174
|
+
iconPrimaryInverseHover: string;
|
|
175
|
+
iconPrimaryInversePressed: string;
|
|
176
|
+
iconPrimaryPressed: string;
|
|
177
|
+
iconSuccessDefault: string;
|
|
178
|
+
iconWarningDefault: string;
|
|
179
|
+
surfaceBrandDefault: string;
|
|
180
|
+
surfaceBrandDisabled: string;
|
|
181
|
+
surfaceBrandHover: string;
|
|
182
|
+
surfaceBrandInverseDefault: string;
|
|
183
|
+
surfaceBrandInverseHover: string;
|
|
184
|
+
surfaceBrandInversePressed: string;
|
|
185
|
+
surfaceBrandPressed: string;
|
|
186
|
+
surfaceCriticalDefault: string;
|
|
187
|
+
surfaceCriticalDisabled: string;
|
|
188
|
+
surfaceCriticalHover: string;
|
|
189
|
+
surfaceCriticalInverseDefault: string;
|
|
190
|
+
surfaceCriticalInverseHover: string;
|
|
191
|
+
surfaceCriticalInversePressed: string;
|
|
192
|
+
surfaceCriticalPressed: string;
|
|
193
|
+
surfaceErrorDefault: string;
|
|
194
|
+
surfaceErrorDisabled: string;
|
|
195
|
+
surfaceErrorHover: string;
|
|
196
|
+
surfaceErrorInverseDefault: string;
|
|
197
|
+
surfaceErrorInverseHover: string;
|
|
198
|
+
surfaceErrorInversePressed: string;
|
|
199
|
+
surfaceErrorPressed: string;
|
|
200
|
+
surfaceInfoDefault: string;
|
|
201
|
+
surfaceInfoDisabled: string;
|
|
202
|
+
surfaceInfoHover: string;
|
|
203
|
+
surfaceInfoInverseDefault: string;
|
|
204
|
+
surfaceInfoInverseHover: string;
|
|
205
|
+
surfaceInfoInversePressed: string;
|
|
206
|
+
surfaceInfoPressed: string;
|
|
207
|
+
surfacePrimaryDefault: string;
|
|
208
|
+
surfacePrimaryDisabled: string;
|
|
209
|
+
surfacePrimaryHover: string;
|
|
210
|
+
surfacePrimaryInverseDefault: string;
|
|
211
|
+
surfacePrimaryInverseHover: string;
|
|
212
|
+
surfacePrimaryInversePressed: string;
|
|
213
|
+
surfacePrimaryPressed: string;
|
|
214
|
+
surfaceSecondaryDefault: string;
|
|
215
|
+
surfaceSecondaryDisabled: string;
|
|
216
|
+
surfaceSecondaryHover: string;
|
|
217
|
+
surfaceSecondaryPressed: string;
|
|
218
|
+
surfaceSuccessDefault: string;
|
|
219
|
+
surfaceSuccessDisabled: string;
|
|
220
|
+
surfaceSuccessHover: string;
|
|
221
|
+
surfaceSuccessInverseDefault: string;
|
|
222
|
+
surfaceSuccessInverseHover: string;
|
|
223
|
+
surfaceSuccessInversePressed: string;
|
|
224
|
+
surfaceSuccessPressed: string;
|
|
225
|
+
surfaceWarningDefault: string;
|
|
226
|
+
surfaceWarningDisabled: string;
|
|
227
|
+
surfaceWarningHover: string;
|
|
228
|
+
surfaceWarningInverseDefault: string;
|
|
229
|
+
surfaceWarningInverseHover: string;
|
|
230
|
+
surfaceWarningInversePressed: string;
|
|
231
|
+
surfaceWarningPressed: string;
|
|
232
|
+
textDefault: string;
|
|
233
|
+
textDisabled: string;
|
|
234
|
+
textPlaceholder: string;
|
|
235
|
+
textSecondary: string;
|
|
236
|
+
textBrandDefault: string;
|
|
237
|
+
textBrandDisabled: string;
|
|
238
|
+
textBrandHovered: string;
|
|
239
|
+
textBrandPressed: string;
|
|
240
|
+
textCriticalDefault: string;
|
|
241
|
+
textCriticalDisabled: string;
|
|
242
|
+
textCriticalHovered: string;
|
|
243
|
+
textCriticalPressed: string;
|
|
244
|
+
textErrorDefault: string;
|
|
245
|
+
textErrorDisabled: string;
|
|
246
|
+
textErrorHovered: string;
|
|
247
|
+
textErrorPressed: string;
|
|
248
|
+
textInfoDefault: string;
|
|
249
|
+
textInfoDisabled: string;
|
|
250
|
+
textInfoHovered: string;
|
|
251
|
+
textInfoPressed: string;
|
|
252
|
+
textLinkDefault: string;
|
|
253
|
+
textLinkDisabled: string;
|
|
254
|
+
textLinkHovered: string;
|
|
255
|
+
textLinkPressed: string;
|
|
256
|
+
textLinkVisitedDefault: string;
|
|
257
|
+
textLinkVisitedDisabled: string;
|
|
258
|
+
textLinkVisitedHovered: string;
|
|
259
|
+
textLinkVisitedPressed: string;
|
|
260
|
+
textOnFillDefault: string;
|
|
261
|
+
textOnFillDisabled: string;
|
|
262
|
+
textOnFillHovered: string;
|
|
263
|
+
textOnFillPressed: string;
|
|
264
|
+
textSuccessDefault: string;
|
|
265
|
+
textSuccessDisabled: string;
|
|
266
|
+
textSuccessHovered: string;
|
|
267
|
+
textSuccessPressed: string;
|
|
268
|
+
textWarningDefault: string;
|
|
269
|
+
textWarningDisabled: string;
|
|
270
|
+
textWarningHovered: string;
|
|
271
|
+
textWarningPressed: string;
|
|
272
|
+
selectBackgroundDisabled: string;
|
|
273
|
+
selectIconDisabled: string;
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
YELLOW180: string;
|
|
3
|
+
YELLOW160: string;
|
|
4
|
+
YELLOW140: string;
|
|
5
|
+
YELLOW120: string;
|
|
6
|
+
YELLOW100: string;
|
|
7
|
+
YELLOW80: string;
|
|
8
|
+
YELLOW60: string;
|
|
9
|
+
YELLOW40: string;
|
|
10
|
+
YELLOW20: string;
|
|
11
|
+
YELLOW10: string;
|
|
12
|
+
YELLOW5: string;
|
|
13
|
+
YELLOW_STATUS: string;
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|