gd-design-library 0.0.1
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 +201 -0
- package/assets/icons/arrow-forward.d.ts +6 -0
- package/assets/icons/check.d.ts +6 -0
- package/assets/icons/chevron-right.d.ts +6 -0
- package/assets/icons/cross.d.ts +6 -0
- package/assets/icons/dot.d.ts +6 -0
- package/assets/icons/home.d.ts +6 -0
- package/assets/icons/slash.d.ts +6 -0
- package/assets/icons/star.d.ts +5 -0
- package/assets/icons/toast_error.d.ts +5 -0
- package/assets/icons/toast_info.d.ts +5 -0
- package/assets/icons/toast_success.d.ts +5 -0
- package/assets/icons/toast_warning.d.ts +5 -0
- package/assets/index.d.ts +83 -0
- package/components/core/Breadcrumbs/Breadcrumbs.d.ts +2 -0
- package/components/core/Breadcrumbs/Breadcrumbs.types.d.ts +14 -0
- package/components/core/Breadcrumbs/StyledBreadcrumbs.d.ts +6 -0
- package/components/core/Breadcrumbs/constants.d.ts +1 -0
- package/components/core/Breadcrumbs/index.d.ts +2 -0
- package/components/core/Button/Button.d.ts +5 -0
- package/components/core/Button/Button.types.d.ts +52 -0
- package/components/core/Button/StyledButton.d.ts +5 -0
- package/components/core/Button/constants.d.ts +1 -0
- package/components/core/Button/index.d.ts +2 -0
- package/components/core/Form/Form.d.ts +5 -0
- package/components/core/Form/Form.types.d.ts +24 -0
- package/components/core/Form/StyledForm.d.ts +2 -0
- package/components/core/Form/constants.d.ts +1 -0
- package/components/core/Form/index.d.ts +2 -0
- package/components/core/Form/utils.d.ts +3 -0
- package/components/core/Icon/Icon.d.ts +5 -0
- package/components/core/Icon/Icon.types.d.ts +8 -0
- package/components/core/Icon/constants.d.ts +1 -0
- package/components/core/Icon/index.d.ts +2 -0
- package/components/core/Input/Input.d.ts +3 -0
- package/components/core/Input/Input.types.d.ts +68 -0
- package/components/core/Input/StyledInput.d.ts +3 -0
- package/components/core/Input/constants.d.ts +1 -0
- package/components/core/Input/index.d.ts +2 -0
- package/components/core/Label/Label.d.ts +5 -0
- package/components/core/Label/Label.types.d.ts +23 -0
- package/components/core/Label/StyledLabel.d.ts +2 -0
- package/components/core/Label/constants.d.ts +1 -0
- package/components/core/Label/index.d.ts +2 -0
- package/components/core/Link/Link.d.ts +4 -0
- package/components/core/Link/Link.types.d.ts +35 -0
- package/components/core/Link/StyledLink.d.ts +2 -0
- package/components/core/Link/constants.d.ts +1 -0
- package/components/core/Link/index.d.ts +2 -0
- package/components/core/List/List.d.ts +3 -0
- package/components/core/List/List.types.d.ts +12 -0
- package/components/core/List/StyledList.d.ts +3 -0
- package/components/core/List/constants.d.ts +1 -0
- package/components/core/List/index.d.ts +2 -0
- package/components/core/Loader/Loader.d.ts +4 -0
- package/components/core/Loader/Loader.types.d.ts +13 -0
- package/components/core/Loader/StyledLoader.d.ts +2 -0
- package/components/core/Loader/constants.d.ts +2 -0
- package/components/core/Loader/index.d.ts +2 -0
- package/components/core/Modal/Modal.d.ts +2 -0
- package/components/core/Modal/Modal.types.d.ts +12 -0
- package/components/core/Modal/StyledModal.d.ts +7 -0
- package/components/core/Modal/constants.d.ts +1 -0
- package/components/core/Modal/index.d.ts +2 -0
- package/components/core/Portal/Portal.d.ts +4 -0
- package/components/core/Portal/Portal.types.d.ts +7 -0
- package/components/core/Portal/constants.d.ts +1 -0
- package/components/core/Portal/index.d.ts +2 -0
- package/components/core/Skeleton/Skeleton.d.ts +4 -0
- package/components/core/Skeleton/Skeleton.types.d.ts +19 -0
- package/components/core/Skeleton/StyledSkeleton.d.ts +2 -0
- package/components/core/Skeleton/constants.d.ts +2 -0
- package/components/core/Skeleton/index.d.ts +2 -0
- package/components/core/Snackbar/Snackbar.d.ts +2 -0
- package/components/core/Snackbar/Snackbar.types.d.ts +41 -0
- package/components/core/Snackbar/SnackbarManager.d.ts +3 -0
- package/components/core/Snackbar/StyledSnackbar.d.ts +13 -0
- package/components/core/Snackbar/constants.d.ts +8 -0
- package/components/core/Snackbar/index.d.ts +4 -0
- package/components/core/Switch/StyledSwitch.d.ts +2 -0
- package/components/core/Switch/Switch.d.ts +2 -0
- package/components/core/Switch/constants.d.ts +1 -0
- package/components/core/Switch/index.d.ts +2 -0
- package/components/core/Switch/types.d.ts +18 -0
- package/components/core/Textarea/StyledTextarea.d.ts +3 -0
- package/components/core/Textarea/Textarea.d.ts +3 -0
- package/components/core/Textarea/Textarea.types.d.ts +42 -0
- package/components/core/Textarea/TextareaWidget.d.ts +3 -0
- package/components/core/Textarea/constants.d.ts +1 -0
- package/components/core/Textarea/hooks/index.d.ts +2 -0
- package/components/core/Textarea/hooks/useDynamicHeightAdjustment.d.ts +2 -0
- package/components/core/Textarea/hooks/useResizeObserver.d.ts +2 -0
- package/components/core/Textarea/index.d.ts +3 -0
- package/components/core/Tooltip/StyledTooltip.d.ts +3 -0
- package/components/core/Tooltip/Tooltip.d.ts +3 -0
- package/components/core/Tooltip/Tooltip.types.d.ts +17 -0
- package/components/core/Tooltip/constants.d.ts +3 -0
- package/components/core/Tooltip/index.d.ts +1 -0
- package/components/core/Tooltip/utils.d.ts +22 -0
- package/components/core/Typography/StyledTypography.d.ts +2 -0
- package/components/core/Typography/Typography.d.ts +3 -0
- package/components/core/Typography/Typography.types.d.ts +58 -0
- package/components/core/Typography/constants.d.ts +3 -0
- package/components/core/Typography/index.d.ts +2 -0
- package/components/core/Typography/utils.d.ts +2 -0
- package/components/core/Wrapper/StyledWrapper.d.ts +2 -0
- package/components/core/Wrapper/Wrapper.d.ts +5 -0
- package/components/core/Wrapper/Wrapper.types.d.ts +8 -0
- package/components/core/Wrapper/constants.d.ts +1 -0
- package/components/core/Wrapper/index.d.ts +2 -0
- package/components/core/index.d.ts +19 -0
- package/components/core/types/common.types.d.ts +24 -0
- package/components/core/types/cursors.types.d.ts +14 -0
- package/components/core/types/index.types.d.ts +3 -0
- package/components/core/types/roles.types.d.ts +3 -0
- package/components/domainSpecific/Stepper/Stepper.d.ts +2 -0
- package/components/domainSpecific/Stepper/Stepper.types.d.ts +39 -0
- package/components/domainSpecific/Stepper/StyledStepper.d.ts +6 -0
- package/components/domainSpecific/Stepper/constants.d.ts +1 -0
- package/components/domainSpecific/Stepper/index.d.ts +2 -0
- package/components/domainSpecific/Stepper/utils.d.ts +2 -0
- package/components/domainSpecific/Tabs/StyledTabs.d.ts +7 -0
- package/components/domainSpecific/Tabs/Tabs.d.ts +2 -0
- package/components/domainSpecific/Tabs/Tabs.types.d.ts +19 -0
- package/components/domainSpecific/Tabs/constants.d.ts +6 -0
- package/components/domainSpecific/Tabs/index.d.ts +2 -0
- package/components/domainSpecific/index.d.ts +2 -0
- package/components/index.d.ts +4 -0
- package/components/index.types.d.ts +37 -0
- package/components/layout/Column/Column.d.ts +4 -0
- package/components/layout/Column/Column.types.d.ts +5 -0
- package/components/layout/Column/StyledColumn.d.ts +2 -0
- package/components/layout/Column/constants.d.ts +1 -0
- package/components/layout/Column/index.d.ts +1 -0
- package/components/layout/FlexContainer/FlexContainer.d.ts +5 -0
- package/components/layout/FlexContainer/FlexContainer.types.d.ts +9 -0
- package/components/layout/FlexContainer/StyledFlexContainer.d.ts +2 -0
- package/components/layout/FlexContainer/constants.d.ts +1 -0
- package/components/layout/FlexContainer/index.d.ts +2 -0
- package/components/layout/FlexContainer/utils.d.ts +2 -0
- package/components/layout/Row/Row.d.ts +5 -0
- package/components/layout/Row/Row.types.d.ts +5 -0
- package/components/layout/Row/StyledRow.d.ts +2 -0
- package/components/layout/Row/constants.d.ts +1 -0
- package/components/layout/Row/index.d.ts +1 -0
- package/components/layout/index.d.ts +4 -0
- package/components/layout/index.types.d.ts +1 -0
- package/components/layout/utils.d.ts +4 -0
- package/constants/index.d.ts +2 -0
- package/constants/keyboard.d.ts +3 -0
- package/constants/positioning.d.ts +6 -0
- package/constants/timers.d.ts +2 -0
- package/hooks/index.d.ts +1 -0
- package/hooks/useAutoFocus/index.d.ts +1 -0
- package/hooks/useAutoFocus/useAutoFocus.d.ts +2 -0
- package/hooks/useTheme/index.d.ts +3 -0
- package/hooks/useTheme/useTheme.d.ts +4 -0
- package/hooks/useTheme/useTheme.types.d.ts +14 -0
- package/index.d.ts +3 -0
- package/index.js +124 -0
- package/index.mjs +8627 -0
- package/package.json +14 -0
- package/style.css +1 -0
- package/tokens/animations.d.ts +41 -0
- package/tokens/borders.d.ts +8 -0
- package/tokens/breadcrumbs.d.ts +23 -0
- package/tokens/button.d.ts +109 -0
- package/tokens/colors.d.ts +150 -0
- package/tokens/column.d.ts +5 -0
- package/tokens/cursors.d.ts +16 -0
- package/tokens/defaultTheme.d.ts +1425 -0
- package/tokens/display.d.ts +15 -0
- package/tokens/flexContainer.d.ts +7 -0
- package/tokens/font.d.ts +47 -0
- package/tokens/form.d.ts +3 -0
- package/tokens/icon.d.ts +28 -0
- package/tokens/index.d.ts +1339 -0
- package/tokens/input.d.ts +66 -0
- package/tokens/label.d.ts +18 -0
- package/tokens/link.d.ts +64 -0
- package/tokens/list.d.ts +76 -0
- package/tokens/loader.d.ts +42 -0
- package/tokens/modal.d.ts +59 -0
- package/tokens/radius.d.ts +10 -0
- package/tokens/reset.d.ts +1 -0
- package/tokens/row.d.ts +5 -0
- package/tokens/shadow.d.ts +10 -0
- package/tokens/skeleton.d.ts +24 -0
- package/tokens/snackbar.d.ts +198 -0
- package/tokens/spacing.d.ts +9 -0
- package/tokens/stepper.d.ts +110 -0
- package/tokens/switch.d.ts +8 -0
- package/tokens/tabs.d.ts +76 -0
- package/tokens/textarea.d.ts +55 -0
- package/tokens/tooltip.d.ts +54 -0
- package/tokens/types/index.types.d.ts +8 -0
- package/tokens/typography.d.ts +116 -0
- package/tokens/utils.d.ts +17 -0
- package/tokens/values.d.ts +28 -0
- package/tokens/wrapper.d.ts +29 -0
- package/types/accesability.d.ts +5 -0
- package/types/index.d.ts +2 -0
- package/types/misc.d.ts +6 -0
- package/utils/getCharCount.d.ts +3 -0
- package/utils/index.d.ts +2 -0
- package/utils/uniqueKeys.d.ts +1 -0
package/package.json
ADDED
package/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import"https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";*{margin:0;padding:0;box-sizing:border-box}html,body{height:100%;font-family:Fira Sans,sans-serif;line-height:1.6}ol,ul{list-style:none}table{border-collapse:collapse}img{max-width:100%;height:auto;display:block}a{text-decoration:none;color:inherit}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export declare const animations: {
|
|
2
|
+
spinKeyframes: {
|
|
3
|
+
'0%': {
|
|
4
|
+
transform: string;
|
|
5
|
+
};
|
|
6
|
+
'100%': {
|
|
7
|
+
transform: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
slideIn: {
|
|
11
|
+
'0%': {
|
|
12
|
+
transform: string;
|
|
13
|
+
opacity: number;
|
|
14
|
+
};
|
|
15
|
+
'100%': {
|
|
16
|
+
transform: string;
|
|
17
|
+
opacity: number;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
slideOut: {
|
|
21
|
+
'0%': {
|
|
22
|
+
transform: string;
|
|
23
|
+
opacity: number;
|
|
24
|
+
};
|
|
25
|
+
'100%': {
|
|
26
|
+
transform: string;
|
|
27
|
+
opacity: number;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
blinkKeyframes: {
|
|
31
|
+
'0%': {
|
|
32
|
+
opacity: number;
|
|
33
|
+
};
|
|
34
|
+
'50%': {
|
|
35
|
+
opacity: number;
|
|
36
|
+
};
|
|
37
|
+
'100%': {
|
|
38
|
+
opacity: number;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare const breadcrumbs: {
|
|
2
|
+
wrapper: {
|
|
3
|
+
display: string;
|
|
4
|
+
alignItems: string;
|
|
5
|
+
gap: number;
|
|
6
|
+
};
|
|
7
|
+
bordered: {
|
|
8
|
+
padding: string;
|
|
9
|
+
border: string;
|
|
10
|
+
};
|
|
11
|
+
itemStart: {
|
|
12
|
+
color: string;
|
|
13
|
+
};
|
|
14
|
+
itemEnd: {
|
|
15
|
+
color: string;
|
|
16
|
+
};
|
|
17
|
+
item: {};
|
|
18
|
+
separator: {
|
|
19
|
+
display: string;
|
|
20
|
+
alignItems: string;
|
|
21
|
+
color: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
export declare const button: {
|
|
2
|
+
default: {
|
|
3
|
+
border: string;
|
|
4
|
+
outline: string;
|
|
5
|
+
padding: string;
|
|
6
|
+
display: string;
|
|
7
|
+
alignItems: string;
|
|
8
|
+
gap: string;
|
|
9
|
+
transition: string;
|
|
10
|
+
cursor: string;
|
|
11
|
+
'&:focus-visible': {
|
|
12
|
+
position: string;
|
|
13
|
+
'&::after': {
|
|
14
|
+
content: string;
|
|
15
|
+
position: string;
|
|
16
|
+
top: string;
|
|
17
|
+
right: string;
|
|
18
|
+
bottom: string;
|
|
19
|
+
left: string;
|
|
20
|
+
border: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
'&:disabled, &:disabled *': {
|
|
24
|
+
cursor: string;
|
|
25
|
+
color: string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
icon: {
|
|
29
|
+
padding: string;
|
|
30
|
+
};
|
|
31
|
+
content: {};
|
|
32
|
+
startIcon: {};
|
|
33
|
+
endIcon: {};
|
|
34
|
+
contained: {
|
|
35
|
+
primary: {
|
|
36
|
+
background: string;
|
|
37
|
+
color: string;
|
|
38
|
+
'&:hover': {
|
|
39
|
+
background: string;
|
|
40
|
+
};
|
|
41
|
+
'&:disabled': {
|
|
42
|
+
background: string;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
secondary: {
|
|
46
|
+
color: string;
|
|
47
|
+
background: string;
|
|
48
|
+
'&:hover': {
|
|
49
|
+
background: string;
|
|
50
|
+
};
|
|
51
|
+
'&:disabled': {
|
|
52
|
+
background: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
outlined: {
|
|
57
|
+
primary: {
|
|
58
|
+
border: string;
|
|
59
|
+
background: string;
|
|
60
|
+
color: string;
|
|
61
|
+
'&:hover': {
|
|
62
|
+
background: string;
|
|
63
|
+
};
|
|
64
|
+
'&:disabled': {
|
|
65
|
+
background: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
secondary: {
|
|
69
|
+
color: string;
|
|
70
|
+
background: string;
|
|
71
|
+
'&:hover': {
|
|
72
|
+
background: string;
|
|
73
|
+
};
|
|
74
|
+
'&:disabled': {
|
|
75
|
+
background: string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
text: {
|
|
80
|
+
primary: {
|
|
81
|
+
background: string;
|
|
82
|
+
color: string;
|
|
83
|
+
'&:hover': {
|
|
84
|
+
background: string;
|
|
85
|
+
};
|
|
86
|
+
'&:disabled': {
|
|
87
|
+
background: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
secondary: {
|
|
91
|
+
background: string;
|
|
92
|
+
color: string;
|
|
93
|
+
'&:not(:disabled):hover': {
|
|
94
|
+
textDecoration: string;
|
|
95
|
+
};
|
|
96
|
+
'&:disabled': {
|
|
97
|
+
background: string;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
inherit: {
|
|
102
|
+
primary: {
|
|
103
|
+
padding: string;
|
|
104
|
+
};
|
|
105
|
+
secondary: {
|
|
106
|
+
padding: string;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
};
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
export declare const colors: {
|
|
2
|
+
transparent: string;
|
|
3
|
+
primary: {
|
|
4
|
+
default: string;
|
|
5
|
+
'default.80': string;
|
|
6
|
+
'default.10': string;
|
|
7
|
+
};
|
|
8
|
+
secondary: {
|
|
9
|
+
default: string;
|
|
10
|
+
'default.80': string;
|
|
11
|
+
'default.10': string;
|
|
12
|
+
};
|
|
13
|
+
neutral: {
|
|
14
|
+
white: string;
|
|
15
|
+
black: string;
|
|
16
|
+
'grey.100': string;
|
|
17
|
+
'grey.90': string;
|
|
18
|
+
'grey.80': string;
|
|
19
|
+
'grey.40': string;
|
|
20
|
+
'grey.30': string;
|
|
21
|
+
'grey.10': string;
|
|
22
|
+
};
|
|
23
|
+
status: {
|
|
24
|
+
red: string;
|
|
25
|
+
'red.80': string;
|
|
26
|
+
'red.20': string;
|
|
27
|
+
'red.10': string;
|
|
28
|
+
green: string;
|
|
29
|
+
'green.80': string;
|
|
30
|
+
'green.20': string;
|
|
31
|
+
'green.10': string;
|
|
32
|
+
blue: string;
|
|
33
|
+
'blue.80': string;
|
|
34
|
+
'blue.20': string;
|
|
35
|
+
'blue.10': string;
|
|
36
|
+
orange: string;
|
|
37
|
+
'orange.80': string;
|
|
38
|
+
'orange.20': string;
|
|
39
|
+
'orange.10': string;
|
|
40
|
+
};
|
|
41
|
+
bg: {
|
|
42
|
+
default: string;
|
|
43
|
+
surface: string;
|
|
44
|
+
input: {
|
|
45
|
+
default: string;
|
|
46
|
+
disabled: string;
|
|
47
|
+
};
|
|
48
|
+
fill: {
|
|
49
|
+
disabled: string;
|
|
50
|
+
primary: {
|
|
51
|
+
default: string;
|
|
52
|
+
hover: string;
|
|
53
|
+
};
|
|
54
|
+
secondary: {
|
|
55
|
+
default: string;
|
|
56
|
+
hover: string;
|
|
57
|
+
};
|
|
58
|
+
error: {
|
|
59
|
+
primary: {
|
|
60
|
+
default: string;
|
|
61
|
+
hover: string;
|
|
62
|
+
};
|
|
63
|
+
secondary: {
|
|
64
|
+
default: string;
|
|
65
|
+
hover: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
success: {
|
|
69
|
+
primary: {
|
|
70
|
+
default: string;
|
|
71
|
+
hover: string;
|
|
72
|
+
};
|
|
73
|
+
secondary: {
|
|
74
|
+
default: string;
|
|
75
|
+
hover: string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
warning: {
|
|
79
|
+
primary: {
|
|
80
|
+
default: string;
|
|
81
|
+
hover: string;
|
|
82
|
+
};
|
|
83
|
+
secondary: {
|
|
84
|
+
default: string;
|
|
85
|
+
hover: string;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
info: {
|
|
89
|
+
primary: {
|
|
90
|
+
default: string;
|
|
91
|
+
hover: string;
|
|
92
|
+
};
|
|
93
|
+
secondary: {
|
|
94
|
+
default: string;
|
|
95
|
+
hover: string;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
toast: {
|
|
100
|
+
success: string;
|
|
101
|
+
error: string;
|
|
102
|
+
warning: string;
|
|
103
|
+
info: string;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
border: {
|
|
107
|
+
primary: {
|
|
108
|
+
default: string;
|
|
109
|
+
hover: string;
|
|
110
|
+
};
|
|
111
|
+
secondary: {
|
|
112
|
+
default: string;
|
|
113
|
+
disabled: string;
|
|
114
|
+
hover: string;
|
|
115
|
+
};
|
|
116
|
+
error: string;
|
|
117
|
+
success: string;
|
|
118
|
+
info: string;
|
|
119
|
+
warning: string;
|
|
120
|
+
default: string;
|
|
121
|
+
focus: string;
|
|
122
|
+
};
|
|
123
|
+
text: {
|
|
124
|
+
default: string;
|
|
125
|
+
active: string;
|
|
126
|
+
disabled: string;
|
|
127
|
+
title: string;
|
|
128
|
+
caption: string;
|
|
129
|
+
error: string;
|
|
130
|
+
success: string;
|
|
131
|
+
info: string;
|
|
132
|
+
link: string;
|
|
133
|
+
warning: string;
|
|
134
|
+
primary: {
|
|
135
|
+
default: string;
|
|
136
|
+
hover: string;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
icon: {
|
|
140
|
+
primary: {
|
|
141
|
+
default: string;
|
|
142
|
+
active: string;
|
|
143
|
+
disabled: string;
|
|
144
|
+
};
|
|
145
|
+
success: string;
|
|
146
|
+
info: string;
|
|
147
|
+
warning: string;
|
|
148
|
+
error: string;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const cursors: {
|
|
2
|
+
default: string;
|
|
3
|
+
pointer: string;
|
|
4
|
+
text: string;
|
|
5
|
+
move: string;
|
|
6
|
+
wait: string;
|
|
7
|
+
crosshair: string;
|
|
8
|
+
notAllowed: string;
|
|
9
|
+
grab: string;
|
|
10
|
+
grabbing: string;
|
|
11
|
+
help: string;
|
|
12
|
+
progress: string;
|
|
13
|
+
alias: string;
|
|
14
|
+
zoomIn: string;
|
|
15
|
+
zoomOut: string;
|
|
16
|
+
};
|