@webitel/ui-sdk 26.2.12 → 26.2.13
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/{install-mdAUQvwW.js → install-Bz5xCw3_.js} +21489 -19139
- package/dist/{plyr-Dl9mhRpy.js → plyr-DrCXX54g.js} +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +1 -1
- package/dist/ui-sdk.umd.cjs +802 -264
- package/dist/{vidstack-Bq6c3Bam-BZCmReL3.js → vidstack-Bq6c3Bam-B7cxzEP8.js} +2 -2
- package/dist/{vidstack-D2pY00kU-BYytRjCF.js → vidstack-D2pY00kU-g2aAQYXG.js} +2 -2
- package/dist/{vidstack-DDXt6fpN-BkCEpqiv.js → vidstack-DDXt6fpN-BhyQ95X9.js} +1 -1
- package/dist/{vidstack-D_-9AA6_-CuVZBenS.js → vidstack-D_-9AA6_-B5H5LlZ_.js} +1 -1
- package/dist/{vidstack-DqAw8m9J-DfB8IrWr.js → vidstack-DqAw8m9J-BjxYoxKC.js} +1 -1
- package/dist/{vidstack-audio-zdkPu0oA.js → vidstack-audio-CdaspgKJ.js} +2 -2
- package/dist/{vidstack-dash-DTg8gRm7.js → vidstack-dash-CyF2xpLm.js} +3 -3
- package/dist/{vidstack-google-cast-l7o6QV0q.js → vidstack-google-cast-BPD9Sm36.js} +3 -3
- package/dist/{vidstack-hls-BwVfbStc.js → vidstack-hls-CvrjEqso.js} +3 -3
- package/dist/{vidstack-video-C6v9_v4c.js → vidstack-video-CDJVFZPt.js} +2 -2
- package/dist/{vidstack-vimeo-Cy5Loo_h.js → vidstack-vimeo-B3AMYq9Z.js} +3 -3
- package/dist/{vidstack-youtube-DtQ6OT2A.js → vidstack-youtube-CLo-FbfO.js} +2 -2
- package/dist/{vuex.esm-bundler-HOJpxpZD.js → vuex.esm-bundler-DPqy4wnP.js} +1 -1
- package/package.json +2 -2
- package/src/components/index.js +12 -0
- package/src/components/wt-input-number/wt-input-number.vue +168 -0
- package/src/components/wt-input-text/wt-input-text.vue +147 -0
- package/src/components/wt-message/wt-message.vue +40 -0
- package/src/components/wt-password/wt-password.vue +145 -0
- package/src/composables/index.ts +1 -0
- package/src/composables/useInputControl/useInputControl.ts +15 -0
- package/src/enums/MessageColor/MessageColor.ts +10 -0
- package/src/enums/MessageVariant/MessageVariant.ts +7 -0
- package/src/enums/index.ts +4 -0
- package/src/plugins/primevue/primevue.plugin.js +10 -0
- package/src/plugins/primevue/theme/components/components.js +10 -0
- package/src/plugins/primevue/theme/components/input-group/input-group.js +8 -0
- package/src/plugins/primevue/theme/components/input-number/input-number.js +8 -0
- package/src/plugins/primevue/theme/components/input-text/input-text.js +8 -0
- package/src/plugins/primevue/theme/components/message/message.js +37 -0
- package/src/plugins/primevue/theme/components/password/password.js +14 -0
- package/types/components/index.d.ts +9 -1
- package/types/components/wt-input-number/wt-input-number.vue.d.ts +59 -0
- package/types/components/wt-input-text/wt-input-text.vue.d.ts +49 -0
- package/types/components/wt-message/wt-message.vue.d.ts +23 -0
- package/types/components/wt-password/wt-password.vue.d.ts +45 -0
- package/types/components/wt-player/wt-player.vue.d.ts +1 -1
- package/types/components/wt-vidstack-player/wt-vidstack-player.vue.d.ts +1 -1
- package/types/composables/index.d.ts +1 -0
- package/types/composables/useInputControl/useInputControl.d.ts +4 -0
- package/types/enums/MessageColor/MessageColor.d.ts +9 -0
- package/types/enums/MessageVariant/MessageVariant.d.ts +6 -0
- package/types/enums/index.d.ts +3 -1
- package/types/plugins/primevue/theme/components/components.d.ts +10 -0
- package/types/plugins/primevue/theme/components/input-group/input-group.d.ts +24 -0
- package/types/plugins/primevue/theme/components/input-number/input-number.d.ts +39 -0
- package/types/plugins/primevue/theme/components/input-text/input-text.d.ts +70 -0
- package/types/plugins/primevue/theme/components/message/message.d.ts +351 -0
- package/types/plugins/primevue/theme/components/password/password.d.ts +57 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export default inputGroup;
|
|
2
|
+
declare const inputGroup: {
|
|
3
|
+
colorScheme: {
|
|
4
|
+
light: {
|
|
5
|
+
addon: {
|
|
6
|
+
background: string;
|
|
7
|
+
borderColor: string;
|
|
8
|
+
color: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
dark: {
|
|
12
|
+
addon: {
|
|
13
|
+
background: string;
|
|
14
|
+
borderColor: string;
|
|
15
|
+
color: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
addon: {
|
|
20
|
+
borderRadius: string;
|
|
21
|
+
padding: string;
|
|
22
|
+
minWidth: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export default inputNumber;
|
|
2
|
+
declare const inputNumber: {
|
|
3
|
+
colorScheme: {
|
|
4
|
+
light: {
|
|
5
|
+
button: {
|
|
6
|
+
background: string;
|
|
7
|
+
hoverBackground: string;
|
|
8
|
+
activeBackground: string;
|
|
9
|
+
borderColor: string;
|
|
10
|
+
hoverBorderColor: string;
|
|
11
|
+
activeBorderColor: string;
|
|
12
|
+
color: string;
|
|
13
|
+
hoverColor: string;
|
|
14
|
+
activeColor: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
dark: {
|
|
18
|
+
button: {
|
|
19
|
+
background: string;
|
|
20
|
+
hoverBackground: string;
|
|
21
|
+
activeBackground: string;
|
|
22
|
+
borderColor: string;
|
|
23
|
+
hoverBorderColor: string;
|
|
24
|
+
activeBorderColor: string;
|
|
25
|
+
color: string;
|
|
26
|
+
hoverColor: string;
|
|
27
|
+
activeColor: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
root: {
|
|
32
|
+
transitionDuration: string;
|
|
33
|
+
};
|
|
34
|
+
button: {
|
|
35
|
+
width: string;
|
|
36
|
+
borderRadius: string;
|
|
37
|
+
verticalPadding: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export default inputText;
|
|
2
|
+
declare const inputText: {
|
|
3
|
+
colorScheme: {
|
|
4
|
+
light: {
|
|
5
|
+
root: {
|
|
6
|
+
background: string;
|
|
7
|
+
disabledBackground: string;
|
|
8
|
+
filledBackground: string;
|
|
9
|
+
filledHoverBackground: string;
|
|
10
|
+
filledFocusBackground: string;
|
|
11
|
+
borderColor: string;
|
|
12
|
+
hoverBorderColor: string;
|
|
13
|
+
focusBorderColor: string;
|
|
14
|
+
invalidBorderColor: string;
|
|
15
|
+
color: string;
|
|
16
|
+
disabledColor: string;
|
|
17
|
+
placeholderColor: string;
|
|
18
|
+
invalidPlaceholderColor: string;
|
|
19
|
+
shadow: string;
|
|
20
|
+
focusRing: {
|
|
21
|
+
color: string;
|
|
22
|
+
shadow: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
dark: {
|
|
27
|
+
root: {
|
|
28
|
+
background: string;
|
|
29
|
+
disabledBackground: string;
|
|
30
|
+
filledBackground: string;
|
|
31
|
+
filledHoverBackground: string;
|
|
32
|
+
filledFocusBackground: string;
|
|
33
|
+
borderColor: string;
|
|
34
|
+
hoverBorderColor: string;
|
|
35
|
+
focusBorderColor: string;
|
|
36
|
+
invalidBorderColor: string;
|
|
37
|
+
color: string;
|
|
38
|
+
disabledColor: string;
|
|
39
|
+
placeholderColor: string;
|
|
40
|
+
invalidPlaceholderColor: string;
|
|
41
|
+
shadow: string;
|
|
42
|
+
focusRing: {
|
|
43
|
+
color: string;
|
|
44
|
+
shadow: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
root: {
|
|
50
|
+
paddingX: string;
|
|
51
|
+
paddingY: string;
|
|
52
|
+
borderRadius: string;
|
|
53
|
+
focusRing: {
|
|
54
|
+
width: string;
|
|
55
|
+
style: string;
|
|
56
|
+
offset: string;
|
|
57
|
+
};
|
|
58
|
+
transitionDuration: string;
|
|
59
|
+
sm: {
|
|
60
|
+
fontSize: string;
|
|
61
|
+
paddingX: string;
|
|
62
|
+
paddingY: string;
|
|
63
|
+
};
|
|
64
|
+
lg: {
|
|
65
|
+
fontSize: string;
|
|
66
|
+
paddingX: string;
|
|
67
|
+
paddingY: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
};
|
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
export default message;
|
|
2
|
+
declare const message: {
|
|
3
|
+
colorScheme: {
|
|
4
|
+
light: {
|
|
5
|
+
info: {
|
|
6
|
+
background: string;
|
|
7
|
+
borderColor: string;
|
|
8
|
+
color: string;
|
|
9
|
+
shadow: string;
|
|
10
|
+
closeButton: {
|
|
11
|
+
hoverBackground: string;
|
|
12
|
+
focusRing: {
|
|
13
|
+
color: string;
|
|
14
|
+
shadow: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
outlined: {
|
|
18
|
+
color: string;
|
|
19
|
+
borderColor: string;
|
|
20
|
+
closeButton: {
|
|
21
|
+
hoverBackground: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
simple: {
|
|
25
|
+
color: string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
success: {
|
|
29
|
+
background: string;
|
|
30
|
+
borderColor: string;
|
|
31
|
+
color: string;
|
|
32
|
+
shadow: string;
|
|
33
|
+
closeButton: {
|
|
34
|
+
hoverBackground: string;
|
|
35
|
+
focusRing: {
|
|
36
|
+
color: string;
|
|
37
|
+
shadow: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
outlined: {
|
|
41
|
+
color: string;
|
|
42
|
+
borderColor: string;
|
|
43
|
+
closeButton: {
|
|
44
|
+
hoverBackground: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
simple: {
|
|
48
|
+
color: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
warn: {
|
|
52
|
+
background: string;
|
|
53
|
+
borderColor: string;
|
|
54
|
+
color: string;
|
|
55
|
+
shadow: string;
|
|
56
|
+
closeButton: {
|
|
57
|
+
hoverBackground: string;
|
|
58
|
+
focusRing: {
|
|
59
|
+
color: string;
|
|
60
|
+
shadow: string;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
outlined: {
|
|
64
|
+
color: string;
|
|
65
|
+
borderColor: string;
|
|
66
|
+
closeButton: {
|
|
67
|
+
hoverBackground: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
simple: {
|
|
71
|
+
color: string;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
error: {
|
|
75
|
+
background: string;
|
|
76
|
+
borderColor: string;
|
|
77
|
+
color: string;
|
|
78
|
+
shadow: string;
|
|
79
|
+
closeButton: {
|
|
80
|
+
hoverBackground: string;
|
|
81
|
+
focusRing: {
|
|
82
|
+
color: string;
|
|
83
|
+
shadow: string;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
outlined: {
|
|
87
|
+
color: string;
|
|
88
|
+
borderColor: string;
|
|
89
|
+
closeButton: {
|
|
90
|
+
hoverBackground: string;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
simple: {
|
|
94
|
+
color: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
secondary: {
|
|
98
|
+
background: string;
|
|
99
|
+
borderColor: string;
|
|
100
|
+
color: string;
|
|
101
|
+
shadow: string;
|
|
102
|
+
closeButton: {
|
|
103
|
+
hoverBackground: string;
|
|
104
|
+
focusRing: {
|
|
105
|
+
color: string;
|
|
106
|
+
shadow: string;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
outlined: {
|
|
110
|
+
color: string;
|
|
111
|
+
borderColor: string;
|
|
112
|
+
closeButton: {
|
|
113
|
+
hoverBackground: string;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
simple: {
|
|
117
|
+
color: string;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
contrast: {
|
|
121
|
+
background: string;
|
|
122
|
+
borderColor: string;
|
|
123
|
+
color: string;
|
|
124
|
+
shadow: string;
|
|
125
|
+
closeButton: {
|
|
126
|
+
hoverBackground: string;
|
|
127
|
+
focusRing: {
|
|
128
|
+
color: string;
|
|
129
|
+
shadow: string;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
outlined: {
|
|
133
|
+
color: string;
|
|
134
|
+
borderColor: string;
|
|
135
|
+
closeButton: {
|
|
136
|
+
hoverBackground: string;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
simple: {
|
|
140
|
+
color: string;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
dark: {
|
|
145
|
+
info: {
|
|
146
|
+
background: string;
|
|
147
|
+
borderColor: string;
|
|
148
|
+
color: string;
|
|
149
|
+
shadow: string;
|
|
150
|
+
closeButton: {
|
|
151
|
+
hoverBackground: string;
|
|
152
|
+
focusRing: {
|
|
153
|
+
color: string;
|
|
154
|
+
shadow: string;
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
outlined: {
|
|
158
|
+
color: string;
|
|
159
|
+
borderColor: string;
|
|
160
|
+
closeButton: {
|
|
161
|
+
hoverBackground: string;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
simple: {
|
|
165
|
+
color: string;
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
success: {
|
|
169
|
+
background: string;
|
|
170
|
+
borderColor: string;
|
|
171
|
+
color: string;
|
|
172
|
+
shadow: string;
|
|
173
|
+
closeButton: {
|
|
174
|
+
hoverBackground: string;
|
|
175
|
+
focusRing: {
|
|
176
|
+
color: string;
|
|
177
|
+
shadow: string;
|
|
178
|
+
};
|
|
179
|
+
};
|
|
180
|
+
outlined: {
|
|
181
|
+
color: string;
|
|
182
|
+
borderColor: string;
|
|
183
|
+
closeButton: {
|
|
184
|
+
hoverBackground: string;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
simple: {
|
|
188
|
+
color: string;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
warn: {
|
|
192
|
+
background: string;
|
|
193
|
+
borderColor: string;
|
|
194
|
+
color: string;
|
|
195
|
+
shadow: string;
|
|
196
|
+
closeButton: {
|
|
197
|
+
hoverBackground: string;
|
|
198
|
+
focusRing: {
|
|
199
|
+
color: string;
|
|
200
|
+
shadow: string;
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
outlined: {
|
|
204
|
+
color: string;
|
|
205
|
+
borderColor: string;
|
|
206
|
+
closeButton: {
|
|
207
|
+
hoverBackground: string;
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
simple: {
|
|
211
|
+
color: string;
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
error: {
|
|
215
|
+
background: string;
|
|
216
|
+
borderColor: string;
|
|
217
|
+
color: string;
|
|
218
|
+
shadow: string;
|
|
219
|
+
closeButton: {
|
|
220
|
+
hoverBackground: string;
|
|
221
|
+
focusRing: {
|
|
222
|
+
color: string;
|
|
223
|
+
shadow: string;
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
outlined: {
|
|
227
|
+
color: string;
|
|
228
|
+
borderColor: string;
|
|
229
|
+
closeButton: {
|
|
230
|
+
hoverBackground: string;
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
simple: {
|
|
234
|
+
color: string;
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
secondary: {
|
|
238
|
+
background: string;
|
|
239
|
+
borderColor: string;
|
|
240
|
+
color: string;
|
|
241
|
+
shadow: string;
|
|
242
|
+
closeButton: {
|
|
243
|
+
hoverBackground: string;
|
|
244
|
+
focusRing: {
|
|
245
|
+
color: string;
|
|
246
|
+
shadow: string;
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
outlined: {
|
|
250
|
+
color: string;
|
|
251
|
+
borderColor: string;
|
|
252
|
+
closeButton: {
|
|
253
|
+
hoverBackground: string;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
simple: {
|
|
257
|
+
color: string;
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
contrast: {
|
|
261
|
+
background: string;
|
|
262
|
+
borderColor: string;
|
|
263
|
+
color: string;
|
|
264
|
+
shadow: string;
|
|
265
|
+
closeButton: {
|
|
266
|
+
hoverBackground: string;
|
|
267
|
+
focusRing: {
|
|
268
|
+
color: string;
|
|
269
|
+
shadow: string;
|
|
270
|
+
};
|
|
271
|
+
};
|
|
272
|
+
outlined: {
|
|
273
|
+
color: string;
|
|
274
|
+
borderColor: string;
|
|
275
|
+
closeButton: {
|
|
276
|
+
hoverBackground: string;
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
simple: {
|
|
280
|
+
color: string;
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
};
|
|
285
|
+
css: ({ dt }: {
|
|
286
|
+
dt: any;
|
|
287
|
+
}) => string;
|
|
288
|
+
root: {
|
|
289
|
+
borderRadius: string;
|
|
290
|
+
borderWidth: string;
|
|
291
|
+
transitionDuration: string;
|
|
292
|
+
};
|
|
293
|
+
content: {
|
|
294
|
+
padding: string;
|
|
295
|
+
gap: string;
|
|
296
|
+
sm: {
|
|
297
|
+
padding: string;
|
|
298
|
+
};
|
|
299
|
+
lg: {
|
|
300
|
+
padding: string;
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
text: {
|
|
304
|
+
fontSize: string;
|
|
305
|
+
fontWeight: string;
|
|
306
|
+
sm: {
|
|
307
|
+
fontSize: string;
|
|
308
|
+
};
|
|
309
|
+
lg: {
|
|
310
|
+
fontSize: string;
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
icon: {
|
|
314
|
+
size: string;
|
|
315
|
+
sm: {
|
|
316
|
+
size: string;
|
|
317
|
+
};
|
|
318
|
+
lg: {
|
|
319
|
+
size: string;
|
|
320
|
+
};
|
|
321
|
+
};
|
|
322
|
+
closeButton: {
|
|
323
|
+
width: string;
|
|
324
|
+
height: string;
|
|
325
|
+
borderRadius: string;
|
|
326
|
+
focusRing: {
|
|
327
|
+
width: string;
|
|
328
|
+
style: string;
|
|
329
|
+
offset: string;
|
|
330
|
+
};
|
|
331
|
+
};
|
|
332
|
+
closeIcon: {
|
|
333
|
+
size: string;
|
|
334
|
+
sm: {
|
|
335
|
+
size: string;
|
|
336
|
+
};
|
|
337
|
+
lg: {
|
|
338
|
+
size: string;
|
|
339
|
+
};
|
|
340
|
+
};
|
|
341
|
+
outlined: {
|
|
342
|
+
root: {
|
|
343
|
+
borderWidth: string;
|
|
344
|
+
};
|
|
345
|
+
};
|
|
346
|
+
simple: {
|
|
347
|
+
content: {
|
|
348
|
+
padding: string;
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export default password;
|
|
2
|
+
declare const password: {
|
|
3
|
+
colorScheme: {
|
|
4
|
+
light: {
|
|
5
|
+
meter: {
|
|
6
|
+
background: string;
|
|
7
|
+
};
|
|
8
|
+
icon: {
|
|
9
|
+
color: string;
|
|
10
|
+
};
|
|
11
|
+
overlay: {
|
|
12
|
+
background: string;
|
|
13
|
+
borderColor: string;
|
|
14
|
+
color: string;
|
|
15
|
+
shadow: string;
|
|
16
|
+
};
|
|
17
|
+
strength: {
|
|
18
|
+
weakBackground: string;
|
|
19
|
+
mediumBackground: string;
|
|
20
|
+
strongBackground: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
dark: {
|
|
24
|
+
meter: {
|
|
25
|
+
background: string;
|
|
26
|
+
};
|
|
27
|
+
icon: {
|
|
28
|
+
color: string;
|
|
29
|
+
};
|
|
30
|
+
overlay: {
|
|
31
|
+
background: string;
|
|
32
|
+
borderColor: string;
|
|
33
|
+
color: string;
|
|
34
|
+
shadow: string;
|
|
35
|
+
};
|
|
36
|
+
strength: {
|
|
37
|
+
weakBackground: string;
|
|
38
|
+
mediumBackground: string;
|
|
39
|
+
strongBackground: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
css: ({ dt }: {
|
|
44
|
+
dt: any;
|
|
45
|
+
}) => string;
|
|
46
|
+
meter: {
|
|
47
|
+
borderRadius: string;
|
|
48
|
+
height: string;
|
|
49
|
+
};
|
|
50
|
+
overlay: {
|
|
51
|
+
borderRadius: string;
|
|
52
|
+
padding: string;
|
|
53
|
+
};
|
|
54
|
+
content: {
|
|
55
|
+
gap: string;
|
|
56
|
+
};
|
|
57
|
+
};
|