sevago-sso-fe 1.0.3 → 1.0.6
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/App.d.ts +1 -0
- package/dist/apis/auth/auth.api.d.ts +9 -0
- package/dist/apis/auth/auth.enum.d.ts +16 -0
- package/dist/apis/auth/auth.interface.d.ts +50 -0
- package/dist/apis/auth/index.d.ts +5 -0
- package/dist/apis/index.d.ts +4 -0
- package/dist/apis/notification/index.d.ts +6 -0
- package/dist/apis/notification/notification.api.d.ts +12 -0
- package/dist/apis/notification/notification.entities.d.ts +17 -0
- package/dist/apis/notification/notification.enum.d.ts +26 -0
- package/dist/apis/notification/notification.interface.d.ts +33 -0
- package/dist/apis/org-unit/index.d.ts +2 -0
- package/dist/apis/org-unit/org-unit.entities.d.ts +41 -0
- package/dist/apis/org-unit/org-unit.enum.d.ts +11 -0
- package/dist/apis/user/index.d.ts +6 -0
- package/dist/apis/user/user.api.d.ts +17 -0
- package/dist/apis/user/user.entities.d.ts +161 -0
- package/dist/apis/user/user.enum.d.ts +304 -0
- package/dist/apis/user/user.interface.d.ts +81 -0
- package/dist/assets/icon/icon-left.d.ts +3 -0
- package/dist/assets/icon/icon-right.d.ts +3 -0
- package/dist/common/config/axios.config.d.ts +1 -0
- package/dist/common/config/firebase.config.d.ts +3 -0
- package/dist/common/config/index.d.ts +3 -0
- package/dist/common/config/socket.config.d.ts +19 -0
- package/dist/common/constant/apps.constant.d.ts +2 -0
- package/dist/common/constant/index.d.ts +7 -0
- package/dist/common/constant/mode.constant.d.ts +266 -0
- package/dist/common/constant/opacity.constant.d.ts +103 -0
- package/dist/common/constant/reg-exp.constant.d.ts +1 -0
- package/dist/common/constant/style.constant.d.ts +113 -0
- package/dist/common/constant/tree.constant.d.ts +12 -0
- package/dist/common/constant/typography.constant.d.ts +457 -0
- package/dist/common/enums/app-category.enum.d.ts +22 -0
- package/dist/common/enums/country.enum.d.ts +7 -0
- package/dist/common/enums/file-type.enum.d.ts +4 -0
- package/dist/common/enums/index.d.ts +6 -0
- package/dist/common/enums/mode.enum.d.ts +4 -0
- package/dist/common/enums/order-type.enum.d.ts +4 -0
- package/dist/common/enums/payment-method.enum.d.ts +7 -0
- package/dist/common/index.d.ts +5 -0
- package/dist/common/interfaces/base-item.interface.d.ts +8 -0
- package/dist/common/interfaces/change-event-custom.interface.d.ts +6 -0
- package/dist/common/interfaces/error.interface.d.ts +5 -0
- package/dist/common/interfaces/index.d.ts +6 -0
- package/dist/common/interfaces/page-options.interface.d.ts +15 -0
- package/dist/common/interfaces/res-list.interface.d.ts +7 -0
- package/dist/common/interfaces/route.interface.d.ts +12 -0
- package/dist/common/utils/find-current-access.helper.d.ts +1 -0
- package/dist/common/utils/index.d.ts +6 -0
- package/dist/common/utils/other/app.utils.d.ts +2 -0
- package/dist/common/utils/other/get-limit-line-css.utils.d.ts +2 -0
- package/dist/common/utils/other/index.d.ts +2 -0
- package/dist/common/utils/string.utils.d.ts +10 -0
- package/dist/common/utils/time.utils.d.ts +13 -0
- package/dist/components/app-grid/app-grid.component.d.ts +19 -0
- package/dist/components/app-grid/index.d.ts +1 -0
- package/dist/components/avatar/avatar-enum.enum.d.ts +10 -0
- package/dist/components/avatar/avatar-user-info.element.d.ts +15 -0
- package/dist/components/avatar/avatar.element.d.ts +9 -0
- package/dist/components/avatar/index.d.ts +3 -0
- package/dist/components/avatar-user/avatar-user.component.d.ts +4 -0
- package/dist/components/avatar-user/index.d.ts +1 -0
- package/dist/components/bell/bell.component.d.ts +4 -0
- package/dist/components/bell/index.d.ts +1 -0
- package/dist/components/elements/button/button.element.d.ts +10 -0
- package/dist/components/elements/button/index.d.ts +1 -0
- package/dist/components/elements/icon/icon-button.element.d.ts +10 -0
- package/dist/components/elements/icon/icon-content.element.d.ts +15 -0
- package/dist/components/elements/icon/icon.element.d.ts +11 -0
- package/dist/components/elements/icon/index.d.ts +3 -0
- package/dist/components/elements/image/image-content-caption.component.d.ts +14 -0
- package/dist/components/elements/image/image-name-time.component.d.ts +9 -0
- package/dist/components/elements/image/image.element.d.ts +12 -0
- package/dist/components/elements/image/image.enum.d.ts +5 -0
- package/dist/components/elements/image/index.d.ts +4 -0
- package/dist/components/elements/radio/index.d.ts +2 -0
- package/dist/components/elements/radio/radio-group.element.d.ts +16 -0
- package/dist/components/elements/radio/radio.element.d.ts +7 -0
- package/dist/components/elements/text-field/index.d.ts +2 -0
- package/dist/components/elements/text-field/text-field-label.element.d.ts +9 -0
- package/dist/components/elements/text-field/text-field.element.d.ts +13 -0
- package/dist/components/elements/tooltip/index.d.ts +1 -0
- package/dist/components/elements/tooltip/tooltip-on-click.element.d.ts +7 -0
- package/dist/components/elements/typography/index.d.ts +1 -0
- package/dist/components/elements/typography/typography-content-caption.component.d.ts +10 -0
- package/dist/components/empty/empty.component.d.ts +4 -0
- package/dist/components/empty/index.d.ts +1 -0
- package/dist/components/index.d.ts +16 -0
- package/dist/components/loading/index.d.ts +1 -0
- package/dist/components/loading/loading.component.d.ts +8 -0
- package/dist/components/logo/index.d.ts +1 -0
- package/dist/components/logo/logo.component.d.ts +10 -0
- package/dist/components/motion/index.d.ts +1 -0
- package/dist/components/motion/motion-box.component.d.ts +14 -0
- package/dist/components/styles/index.d.ts +2 -0
- package/dist/components/styles/stack.style.d.ts +19 -0
- package/dist/components/styles/typography.style.d.ts +1 -0
- package/dist/components/time-ago/index.d.ts +2 -0
- package/dist/components/time-ago/time-ago-content.component.d.ts +7 -0
- package/dist/components/time-ago/time-ago.component.d.ts +6 -0
- package/dist/hooks/index.d.ts +5 -0
- package/dist/hooks/use-apps.hook.d.ts +11 -0
- package/dist/hooks/use-snackbar.hook.d.ts +19 -0
- package/dist/hooks/use-tag-selector.hook.d.ts +25 -0
- package/dist/hooks/use-update-current-access.hook.d.ts +1 -0
- package/dist/hooks/use-version-check.hook.d.ts +3 -0
- package/dist/index.cjs.js +17838 -30552
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +21 -1
- package/dist/index.esm.js +17758 -30472
- package/dist/index.esm.js.map +1 -1
- package/dist/layouts/auth.layout.d.ts +5 -0
- package/dist/layouts/dashboard.layout.d.ts +5 -0
- package/dist/layouts/default.layout.d.ts +5 -0
- package/dist/layouts/index.d.ts +3 -0
- package/dist/main.d.ts +0 -0
- package/dist/pages/auth/auth.constant.d.ts +35 -0
- package/dist/pages/auth/auth.enum.d.ts +6 -0
- package/dist/pages/auth/auth.interface.d.ts +7 -0
- package/dist/pages/auth/auth.page.d.ts +4 -0
- package/dist/pages/auth/index.d.ts +5 -0
- package/dist/pages/auth/parts/index.d.ts +1 -0
- package/dist/pages/auth/parts/otp/index.d.ts +1 -0
- package/dist/pages/auth/parts/otp/otp.part.d.ts +6 -0
- package/dist/pages/dashboard/dashboard.page.d.ts +5 -0
- package/dist/pages/dashboard/index.d.ts +3 -0
- package/dist/pages/dashboard/parts/index.d.ts +1 -0
- package/dist/pages/dashboard/parts/monitor.part.d.ts +2 -0
- package/dist/pages/dashboard/screen/index.d.ts +1 -0
- package/dist/pages/dashboard/screen/system-monitor/index.d.ts +1 -0
- package/dist/pages/dashboard/screen/system-monitor/system-monitor.screen.d.ts +2 -0
- package/dist/pages/error/error.page.d.ts +4 -0
- package/dist/pages/index.d.ts +6 -0
- package/dist/pages/not-found/not-found.page.d.ts +4 -0
- package/dist/redux/account/account.action.d.ts +22 -0
- package/dist/redux/account/account.interface.d.ts +13 -0
- package/dist/redux/account/account.slice.d.ts +4 -0
- package/dist/redux/account/index.d.ts +5 -0
- package/dist/redux/index.d.ts +5 -0
- package/dist/redux/slices/index.d.ts +1 -0
- package/dist/redux/slices/remaining-weight.slice.d.ts +7 -0
- package/dist/redux/store.interface.d.ts +11 -0
- package/dist/redux/store.redux.d.ts +15 -0
- package/dist/redux/system/index.d.ts +2 -0
- package/dist/redux/system/system.action.d.ts +2 -0
- package/dist/redux/system/system.interface.d.ts +4 -0
- package/dist/redux/system/system.slice.d.ts +4 -0
- package/dist/router/index.d.ts +4 -0
- package/dist/router/render.route.d.ts +3 -0
- package/dist/router/route.constant.d.ts +278 -0
- package/dist/router/route.enum.d.ts +4 -0
- package/dist/router/route.routes.d.ts +2 -0
- package/dist/scripts/generate.script.d.ts +0 -0
- package/package.json +3 -2
- package/dist/sevago-sso-fe.css +0 -736
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
import { ThemeOptions } from '@mui/material';
|
|
2
|
+
import { Mode } from '../enums/mode.enum';
|
|
3
|
+
export declare const dark: {
|
|
4
|
+
palette: {
|
|
5
|
+
mode: Mode;
|
|
6
|
+
primary: {
|
|
7
|
+
main: string;
|
|
8
|
+
light: string;
|
|
9
|
+
dark: string;
|
|
10
|
+
contrastText: string;
|
|
11
|
+
};
|
|
12
|
+
secondary: {
|
|
13
|
+
main: string;
|
|
14
|
+
light: string;
|
|
15
|
+
dark: string;
|
|
16
|
+
contrastText: string;
|
|
17
|
+
};
|
|
18
|
+
error: {
|
|
19
|
+
main: string;
|
|
20
|
+
light: string;
|
|
21
|
+
dark: string;
|
|
22
|
+
contrastText: string;
|
|
23
|
+
};
|
|
24
|
+
warning: {
|
|
25
|
+
main: string;
|
|
26
|
+
light: string;
|
|
27
|
+
dark: string;
|
|
28
|
+
contrastText: string;
|
|
29
|
+
};
|
|
30
|
+
info: {
|
|
31
|
+
main: string;
|
|
32
|
+
light: string;
|
|
33
|
+
dark: string;
|
|
34
|
+
contrastText: string;
|
|
35
|
+
};
|
|
36
|
+
success: {
|
|
37
|
+
main: string;
|
|
38
|
+
light: string;
|
|
39
|
+
dark: string;
|
|
40
|
+
contrastText: string;
|
|
41
|
+
};
|
|
42
|
+
text: {
|
|
43
|
+
primary: string;
|
|
44
|
+
secondary: string;
|
|
45
|
+
disabled: string;
|
|
46
|
+
};
|
|
47
|
+
divider: string;
|
|
48
|
+
action: {
|
|
49
|
+
active: string;
|
|
50
|
+
hover: string;
|
|
51
|
+
hoverOpacity: number;
|
|
52
|
+
selected: string;
|
|
53
|
+
selectedOpacity: string;
|
|
54
|
+
disabled: string;
|
|
55
|
+
disabledBackground: string;
|
|
56
|
+
disabledOpacity: number;
|
|
57
|
+
focus: string;
|
|
58
|
+
focusOpacity: number;
|
|
59
|
+
activatedOpacity: number;
|
|
60
|
+
};
|
|
61
|
+
background: {
|
|
62
|
+
paper: string;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
shadows: string[];
|
|
67
|
+
};
|
|
68
|
+
export declare const light: {
|
|
69
|
+
palette: {
|
|
70
|
+
mode: Mode;
|
|
71
|
+
primary: {
|
|
72
|
+
main: string;
|
|
73
|
+
light: string;
|
|
74
|
+
dark: string;
|
|
75
|
+
contrastText: string;
|
|
76
|
+
};
|
|
77
|
+
secondary: {
|
|
78
|
+
main: string;
|
|
79
|
+
light: string;
|
|
80
|
+
dark: string;
|
|
81
|
+
contrastText: string;
|
|
82
|
+
};
|
|
83
|
+
error: {
|
|
84
|
+
main: string;
|
|
85
|
+
light: string;
|
|
86
|
+
dark: string;
|
|
87
|
+
contrastText: string;
|
|
88
|
+
};
|
|
89
|
+
warning: {
|
|
90
|
+
main: string;
|
|
91
|
+
light: string;
|
|
92
|
+
dark: string;
|
|
93
|
+
contrastText: string;
|
|
94
|
+
};
|
|
95
|
+
info: {
|
|
96
|
+
main: string;
|
|
97
|
+
light: string;
|
|
98
|
+
dark: string;
|
|
99
|
+
contrastText: string;
|
|
100
|
+
};
|
|
101
|
+
success: {
|
|
102
|
+
main: string;
|
|
103
|
+
light: string;
|
|
104
|
+
dark: string;
|
|
105
|
+
contrastText: string;
|
|
106
|
+
};
|
|
107
|
+
text: {
|
|
108
|
+
primary: string;
|
|
109
|
+
secondary: string;
|
|
110
|
+
disabled: string;
|
|
111
|
+
};
|
|
112
|
+
divider: string;
|
|
113
|
+
action: {
|
|
114
|
+
active: string;
|
|
115
|
+
hover: string;
|
|
116
|
+
hoverOpacity: number;
|
|
117
|
+
selected: string;
|
|
118
|
+
selectedOpacity: string;
|
|
119
|
+
disabled: string;
|
|
120
|
+
disabledBackground: string;
|
|
121
|
+
disabledOpacity: number;
|
|
122
|
+
focus: string;
|
|
123
|
+
focusOpacity: number;
|
|
124
|
+
activatedOpacity: number;
|
|
125
|
+
};
|
|
126
|
+
background: {
|
|
127
|
+
paper: string;
|
|
128
|
+
default: string;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
shadows: string[];
|
|
132
|
+
};
|
|
133
|
+
export declare const OTHER: ThemeOptions;
|
|
134
|
+
export declare const MODE: {
|
|
135
|
+
dark: {
|
|
136
|
+
palette: {
|
|
137
|
+
mode: Mode;
|
|
138
|
+
primary: {
|
|
139
|
+
main: string;
|
|
140
|
+
light: string;
|
|
141
|
+
dark: string;
|
|
142
|
+
contrastText: string;
|
|
143
|
+
};
|
|
144
|
+
secondary: {
|
|
145
|
+
main: string;
|
|
146
|
+
light: string;
|
|
147
|
+
dark: string;
|
|
148
|
+
contrastText: string;
|
|
149
|
+
};
|
|
150
|
+
error: {
|
|
151
|
+
main: string;
|
|
152
|
+
light: string;
|
|
153
|
+
dark: string;
|
|
154
|
+
contrastText: string;
|
|
155
|
+
};
|
|
156
|
+
warning: {
|
|
157
|
+
main: string;
|
|
158
|
+
light: string;
|
|
159
|
+
dark: string;
|
|
160
|
+
contrastText: string;
|
|
161
|
+
};
|
|
162
|
+
info: {
|
|
163
|
+
main: string;
|
|
164
|
+
light: string;
|
|
165
|
+
dark: string;
|
|
166
|
+
contrastText: string;
|
|
167
|
+
};
|
|
168
|
+
success: {
|
|
169
|
+
main: string;
|
|
170
|
+
light: string;
|
|
171
|
+
dark: string;
|
|
172
|
+
contrastText: string;
|
|
173
|
+
};
|
|
174
|
+
text: {
|
|
175
|
+
primary: string;
|
|
176
|
+
secondary: string;
|
|
177
|
+
disabled: string;
|
|
178
|
+
};
|
|
179
|
+
divider: string;
|
|
180
|
+
action: {
|
|
181
|
+
active: string;
|
|
182
|
+
hover: string;
|
|
183
|
+
hoverOpacity: number;
|
|
184
|
+
selected: string;
|
|
185
|
+
selectedOpacity: string;
|
|
186
|
+
disabled: string;
|
|
187
|
+
disabledBackground: string;
|
|
188
|
+
disabledOpacity: number;
|
|
189
|
+
focus: string;
|
|
190
|
+
focusOpacity: number;
|
|
191
|
+
activatedOpacity: number;
|
|
192
|
+
};
|
|
193
|
+
background: {
|
|
194
|
+
paper: string;
|
|
195
|
+
default: string;
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
shadows: string[];
|
|
199
|
+
};
|
|
200
|
+
light: {
|
|
201
|
+
palette: {
|
|
202
|
+
mode: Mode;
|
|
203
|
+
primary: {
|
|
204
|
+
main: string;
|
|
205
|
+
light: string;
|
|
206
|
+
dark: string;
|
|
207
|
+
contrastText: string;
|
|
208
|
+
};
|
|
209
|
+
secondary: {
|
|
210
|
+
main: string;
|
|
211
|
+
light: string;
|
|
212
|
+
dark: string;
|
|
213
|
+
contrastText: string;
|
|
214
|
+
};
|
|
215
|
+
error: {
|
|
216
|
+
main: string;
|
|
217
|
+
light: string;
|
|
218
|
+
dark: string;
|
|
219
|
+
contrastText: string;
|
|
220
|
+
};
|
|
221
|
+
warning: {
|
|
222
|
+
main: string;
|
|
223
|
+
light: string;
|
|
224
|
+
dark: string;
|
|
225
|
+
contrastText: string;
|
|
226
|
+
};
|
|
227
|
+
info: {
|
|
228
|
+
main: string;
|
|
229
|
+
light: string;
|
|
230
|
+
dark: string;
|
|
231
|
+
contrastText: string;
|
|
232
|
+
};
|
|
233
|
+
success: {
|
|
234
|
+
main: string;
|
|
235
|
+
light: string;
|
|
236
|
+
dark: string;
|
|
237
|
+
contrastText: string;
|
|
238
|
+
};
|
|
239
|
+
text: {
|
|
240
|
+
primary: string;
|
|
241
|
+
secondary: string;
|
|
242
|
+
disabled: string;
|
|
243
|
+
};
|
|
244
|
+
divider: string;
|
|
245
|
+
action: {
|
|
246
|
+
active: string;
|
|
247
|
+
hover: string;
|
|
248
|
+
hoverOpacity: number;
|
|
249
|
+
selected: string;
|
|
250
|
+
selectedOpacity: string;
|
|
251
|
+
disabled: string;
|
|
252
|
+
disabledBackground: string;
|
|
253
|
+
disabledOpacity: number;
|
|
254
|
+
focus: string;
|
|
255
|
+
focusOpacity: number;
|
|
256
|
+
activatedOpacity: number;
|
|
257
|
+
};
|
|
258
|
+
background: {
|
|
259
|
+
paper: string;
|
|
260
|
+
default: string;
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
shadows: string[];
|
|
264
|
+
};
|
|
265
|
+
OTHER: ThemeOptions;
|
|
266
|
+
};
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
export declare const OPACITY: {
|
|
2
|
+
100: string;
|
|
3
|
+
99: string;
|
|
4
|
+
98: string;
|
|
5
|
+
97: string;
|
|
6
|
+
96: string;
|
|
7
|
+
95: string;
|
|
8
|
+
94: string;
|
|
9
|
+
93: string;
|
|
10
|
+
92: string;
|
|
11
|
+
91: string;
|
|
12
|
+
90: string;
|
|
13
|
+
89: string;
|
|
14
|
+
88: string;
|
|
15
|
+
87: string;
|
|
16
|
+
86: string;
|
|
17
|
+
85: string;
|
|
18
|
+
84: string;
|
|
19
|
+
83: string;
|
|
20
|
+
82: string;
|
|
21
|
+
81: string;
|
|
22
|
+
80: string;
|
|
23
|
+
79: string;
|
|
24
|
+
78: string;
|
|
25
|
+
77: string;
|
|
26
|
+
76: string;
|
|
27
|
+
75: string;
|
|
28
|
+
74: string;
|
|
29
|
+
73: string;
|
|
30
|
+
72: string;
|
|
31
|
+
71: string;
|
|
32
|
+
70: string;
|
|
33
|
+
69: string;
|
|
34
|
+
68: string;
|
|
35
|
+
67: string;
|
|
36
|
+
66: string;
|
|
37
|
+
65: string;
|
|
38
|
+
64: string;
|
|
39
|
+
63: string;
|
|
40
|
+
62: string;
|
|
41
|
+
61: string;
|
|
42
|
+
60: string;
|
|
43
|
+
59: string;
|
|
44
|
+
58: string;
|
|
45
|
+
57: string;
|
|
46
|
+
56: string;
|
|
47
|
+
55: string;
|
|
48
|
+
54: string;
|
|
49
|
+
53: string;
|
|
50
|
+
52: string;
|
|
51
|
+
51: string;
|
|
52
|
+
50: string;
|
|
53
|
+
49: string;
|
|
54
|
+
48: string;
|
|
55
|
+
47: string;
|
|
56
|
+
46: string;
|
|
57
|
+
45: string;
|
|
58
|
+
44: string;
|
|
59
|
+
43: string;
|
|
60
|
+
42: string;
|
|
61
|
+
41: string;
|
|
62
|
+
40: string;
|
|
63
|
+
39: string;
|
|
64
|
+
38: string;
|
|
65
|
+
37: string;
|
|
66
|
+
36: string;
|
|
67
|
+
35: string;
|
|
68
|
+
34: string;
|
|
69
|
+
33: string;
|
|
70
|
+
32: string;
|
|
71
|
+
31: string;
|
|
72
|
+
30: string;
|
|
73
|
+
29: string;
|
|
74
|
+
28: string;
|
|
75
|
+
27: string;
|
|
76
|
+
26: string;
|
|
77
|
+
25: string;
|
|
78
|
+
24: string;
|
|
79
|
+
23: string;
|
|
80
|
+
22: string;
|
|
81
|
+
21: string;
|
|
82
|
+
20: string;
|
|
83
|
+
19: string;
|
|
84
|
+
18: string;
|
|
85
|
+
17: string;
|
|
86
|
+
16: string;
|
|
87
|
+
15: string;
|
|
88
|
+
14: string;
|
|
89
|
+
13: string;
|
|
90
|
+
12: string;
|
|
91
|
+
11: string;
|
|
92
|
+
10: string;
|
|
93
|
+
9: string;
|
|
94
|
+
8: string;
|
|
95
|
+
7: string;
|
|
96
|
+
6: string;
|
|
97
|
+
5: string;
|
|
98
|
+
4: string;
|
|
99
|
+
3: string;
|
|
100
|
+
2: string;
|
|
101
|
+
1: string;
|
|
102
|
+
0: string;
|
|
103
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const phoneRegExp: RegExp;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { TypographyVariant } from '@mui/material';
|
|
2
|
+
export declare const ANIMATION_TIME = 300;
|
|
3
|
+
export declare const SCALE_VALUE = "scale(1.05)";
|
|
4
|
+
export declare const TRANSITION_TIME = "0.2s";
|
|
5
|
+
export declare const WIDTH_LAYOUT_DESKTOP = "1200px";
|
|
6
|
+
export declare const HEIGHT_LOGO_DEFAULT = "40px";
|
|
7
|
+
export declare const HEIGHT_IMAGE_DEFAULT = "40px";
|
|
8
|
+
export declare const PADDING_GAP_TAB = "24px";
|
|
9
|
+
export declare const PADDING_GAP_LAYOUT = "16px";
|
|
10
|
+
export declare const PADDING_GAP_BUTTON = "12px";
|
|
11
|
+
export declare const PADDING_LAYOUT_HEADER = "8px 12px";
|
|
12
|
+
export declare const PADDING_GAP_ITEM = "8px";
|
|
13
|
+
export declare const PADDING_GAP_ITEM_SMALL = "6px";
|
|
14
|
+
export declare const HEIGHT_ELEMENT_OTHER = "36px";
|
|
15
|
+
export declare const BORDER_RADIUS_ELEMENT_ACTION = "24px";
|
|
16
|
+
export declare const BORDER_RADIUS_ELEMENT_WRAPPER = "12px";
|
|
17
|
+
export declare const BORDER_RADIUS_ELEMENT = "10px";
|
|
18
|
+
export declare const BORDER_RADIUS_ELEMENT_SMALL = "6px";
|
|
19
|
+
export declare const BORDER_RADIUS_ELEMENT_MIDDLE = "8px";
|
|
20
|
+
export declare const BORDER_RADIUS_ELEMENT_TAG = "3px";
|
|
21
|
+
export declare const HEIGHT_DEFAULT_TEXT_FIELD_BUTTON = "37.13px";
|
|
22
|
+
export declare const TEXT_FIELD: {
|
|
23
|
+
FONT_SIZE_LABEL: number;
|
|
24
|
+
FONT_SIZE_TITLE: number;
|
|
25
|
+
FONT_SIZE_CAPTION: number;
|
|
26
|
+
};
|
|
27
|
+
export declare const FONT_SIZE_ICON: {
|
|
28
|
+
large: string;
|
|
29
|
+
medium: string;
|
|
30
|
+
small: string;
|
|
31
|
+
};
|
|
32
|
+
export declare const FONT_SIZE_LOADING: {
|
|
33
|
+
large: number;
|
|
34
|
+
medium: number;
|
|
35
|
+
small: number;
|
|
36
|
+
};
|
|
37
|
+
export declare const VARIANT_BY_SIZE: {
|
|
38
|
+
[key: string]: TypographyVariant;
|
|
39
|
+
};
|
|
40
|
+
export declare const GAP_ICON_CONTENT_BY_SIZE: {
|
|
41
|
+
large: string;
|
|
42
|
+
medium: string;
|
|
43
|
+
small: string;
|
|
44
|
+
};
|
|
45
|
+
export declare const BORDER_COLOR_CARD = "rgba(0, 0, 0, 0.12)";
|
|
46
|
+
export declare const BORDER_COLOR_LAYOUT = "#E4E6E6";
|
|
47
|
+
export declare const HEIGHT_HEADER = 57;
|
|
48
|
+
export declare const WIDTH_COLLAPSE = 55;
|
|
49
|
+
export declare const WIDTH_SIDEBAR = 224;
|
|
50
|
+
export declare const WIDTH_SIDEBAR_EXPAND = 200;
|
|
51
|
+
export declare const BACKGROUND_SYSTEM = "#F2F2F2";
|
|
52
|
+
export declare const WIDTH_TEXT_FIELD: {
|
|
53
|
+
large: number;
|
|
54
|
+
medium: number;
|
|
55
|
+
small: number;
|
|
56
|
+
};
|
|
57
|
+
export declare const STYLE: {
|
|
58
|
+
ANIMATION_TIME: number;
|
|
59
|
+
SCALE_VALUE: string;
|
|
60
|
+
TRANSITION_TIME: string;
|
|
61
|
+
WIDTH_LAYOUT_DESKTOP: string;
|
|
62
|
+
HEIGHT_LOGO_DEFAULT: string;
|
|
63
|
+
HEIGHT_IMAGE_DEFAULT: string;
|
|
64
|
+
PADDING_GAP_TAB: string;
|
|
65
|
+
PADDING_GAP_LAYOUT: string;
|
|
66
|
+
PADDING_GAP_BUTTON: string;
|
|
67
|
+
PADDING_LAYOUT_HEADER: string;
|
|
68
|
+
PADDING_GAP_ITEM: string;
|
|
69
|
+
PADDING_GAP_ITEM_SMALL: string;
|
|
70
|
+
HEIGHT_ELEMENT_OTHER: string;
|
|
71
|
+
BORDER_RADIUS_ELEMENT_ACTION: string;
|
|
72
|
+
BORDER_RADIUS_ELEMENT_WRAPPER: string;
|
|
73
|
+
BORDER_RADIUS_ELEMENT: string;
|
|
74
|
+
BORDER_RADIUS_ELEMENT_SMALL: string;
|
|
75
|
+
BORDER_RADIUS_ELEMENT_MIDDLE: string;
|
|
76
|
+
BORDER_RADIUS_ELEMENT_TAG: string;
|
|
77
|
+
HEIGHT_DEFAULT_TEXT_FIELD_BUTTON: string;
|
|
78
|
+
TEXT_FIELD: {
|
|
79
|
+
FONT_SIZE_LABEL: number;
|
|
80
|
+
FONT_SIZE_TITLE: number;
|
|
81
|
+
FONT_SIZE_CAPTION: number;
|
|
82
|
+
};
|
|
83
|
+
FONT_SIZE_ICON: {
|
|
84
|
+
large: string;
|
|
85
|
+
medium: string;
|
|
86
|
+
small: string;
|
|
87
|
+
};
|
|
88
|
+
FONT_SIZE_LOADING: {
|
|
89
|
+
large: number;
|
|
90
|
+
medium: number;
|
|
91
|
+
small: number;
|
|
92
|
+
};
|
|
93
|
+
VARIANT_BY_SIZE: {
|
|
94
|
+
[key: string]: TypographyVariant;
|
|
95
|
+
};
|
|
96
|
+
GAP_ICON_CONTENT_BY_SIZE: {
|
|
97
|
+
large: string;
|
|
98
|
+
medium: string;
|
|
99
|
+
small: string;
|
|
100
|
+
};
|
|
101
|
+
BORDER_COLOR_CARD: string;
|
|
102
|
+
BORDER_COLOR_LAYOUT: string;
|
|
103
|
+
HEIGHT_HEADER: number;
|
|
104
|
+
WIDTH_COLLAPSE: number;
|
|
105
|
+
WIDTH_SIDEBAR: number;
|
|
106
|
+
WIDTH_SIDEBAR_EXPAND: number;
|
|
107
|
+
BACKGROUND_SYSTEM: string;
|
|
108
|
+
WIDTH_TEXT_FIELD: {
|
|
109
|
+
large: number;
|
|
110
|
+
medium: number;
|
|
111
|
+
small: number;
|
|
112
|
+
};
|
|
113
|
+
};
|