@codemonster-ru/vueforge 0.14.0 → 0.15.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 +46 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +1189 -921
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/autocomplete.test.d.ts +1 -0
- package/dist/package/components/autocomplete.vue.d.ts +55 -0
- package/dist/package/config/theme-core.d.ts +41 -0
- package/dist/package/themes/default/components/autocomplete.d.ts +41 -0
- package/dist/package/themes/default/index.d.ts +40 -0
- package/package.json +1 -1
|
@@ -194,6 +194,46 @@ export type SelectTokens = {
|
|
|
194
194
|
fontSize?: string;
|
|
195
195
|
};
|
|
196
196
|
};
|
|
197
|
+
export type AutocompleteTokens = {
|
|
198
|
+
minWidth?: string;
|
|
199
|
+
fontSize?: string;
|
|
200
|
+
controlGap?: string;
|
|
201
|
+
chevronSize?: string;
|
|
202
|
+
padding?: string;
|
|
203
|
+
borderRadius?: string;
|
|
204
|
+
borderColor?: string;
|
|
205
|
+
backgroundColor?: string;
|
|
206
|
+
textColor?: string;
|
|
207
|
+
placeholderColor?: string;
|
|
208
|
+
focusBorderColor?: string;
|
|
209
|
+
hoverBorderColor?: string;
|
|
210
|
+
disabledOpacity?: string;
|
|
211
|
+
panelBackgroundColor?: string;
|
|
212
|
+
panelBorderColor?: string;
|
|
213
|
+
panelPadding?: string;
|
|
214
|
+
panelMaxHeight?: string;
|
|
215
|
+
panelRadiusOffset?: string;
|
|
216
|
+
panelShadow?: string;
|
|
217
|
+
focusRingShadow?: string;
|
|
218
|
+
optionPadding?: string;
|
|
219
|
+
optionBorderRadius?: string;
|
|
220
|
+
optionHoverBackgroundColor?: string;
|
|
221
|
+
optionActiveBackgroundColor?: string;
|
|
222
|
+
optionActiveTextColor?: string;
|
|
223
|
+
optionHighlightedBackgroundColor?: string;
|
|
224
|
+
emptyPadding?: string;
|
|
225
|
+
emptyColor?: string;
|
|
226
|
+
loadingPadding?: string;
|
|
227
|
+
loadingColor?: string;
|
|
228
|
+
small?: {
|
|
229
|
+
padding?: string;
|
|
230
|
+
fontSize?: string;
|
|
231
|
+
};
|
|
232
|
+
large?: {
|
|
233
|
+
padding?: string;
|
|
234
|
+
fontSize?: string;
|
|
235
|
+
};
|
|
236
|
+
};
|
|
197
237
|
export type SwitchTokens = {
|
|
198
238
|
width?: string;
|
|
199
239
|
height?: string;
|
|
@@ -294,6 +334,7 @@ export type ThemeComponentTokens = {
|
|
|
294
334
|
modal?: ModalTokens;
|
|
295
335
|
popover?: PopoverTokens;
|
|
296
336
|
select?: SelectTokens;
|
|
337
|
+
autocomplete?: AutocompleteTokens;
|
|
297
338
|
switch?: SwitchTokens;
|
|
298
339
|
tooltip?: TooltipTokens;
|
|
299
340
|
toast?: ToastTokens;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
minWidth: string;
|
|
3
|
+
fontSize: string;
|
|
4
|
+
controlGap: string;
|
|
5
|
+
chevronSize: string;
|
|
6
|
+
padding: string;
|
|
7
|
+
borderRadius: string;
|
|
8
|
+
borderColor: string;
|
|
9
|
+
backgroundColor: string;
|
|
10
|
+
textColor: string;
|
|
11
|
+
placeholderColor: string;
|
|
12
|
+
focusBorderColor: string;
|
|
13
|
+
hoverBorderColor: string;
|
|
14
|
+
disabledOpacity: string;
|
|
15
|
+
panelBackgroundColor: string;
|
|
16
|
+
panelBorderColor: string;
|
|
17
|
+
panelPadding: string;
|
|
18
|
+
panelMaxHeight: string;
|
|
19
|
+
panelRadiusOffset: string;
|
|
20
|
+
panelShadow: string;
|
|
21
|
+
focusRingShadow: string;
|
|
22
|
+
optionPadding: string;
|
|
23
|
+
optionBorderRadius: string;
|
|
24
|
+
optionHoverBackgroundColor: string;
|
|
25
|
+
optionActiveBackgroundColor: string;
|
|
26
|
+
optionActiveTextColor: string;
|
|
27
|
+
optionHighlightedBackgroundColor: string;
|
|
28
|
+
emptyPadding: string;
|
|
29
|
+
emptyColor: string;
|
|
30
|
+
loadingPadding: string;
|
|
31
|
+
loadingColor: string;
|
|
32
|
+
small: {
|
|
33
|
+
padding: string;
|
|
34
|
+
fontSize: string;
|
|
35
|
+
};
|
|
36
|
+
large: {
|
|
37
|
+
padding: string;
|
|
38
|
+
fontSize: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export default _default;
|
|
@@ -348,6 +348,46 @@ declare const _default: {
|
|
|
348
348
|
fontSize: string;
|
|
349
349
|
};
|
|
350
350
|
};
|
|
351
|
+
autocomplete: {
|
|
352
|
+
minWidth: string;
|
|
353
|
+
fontSize: string;
|
|
354
|
+
controlGap: string;
|
|
355
|
+
chevronSize: string;
|
|
356
|
+
padding: string;
|
|
357
|
+
borderRadius: string;
|
|
358
|
+
borderColor: string;
|
|
359
|
+
backgroundColor: string;
|
|
360
|
+
textColor: string;
|
|
361
|
+
placeholderColor: string;
|
|
362
|
+
focusBorderColor: string;
|
|
363
|
+
hoverBorderColor: string;
|
|
364
|
+
disabledOpacity: string;
|
|
365
|
+
panelBackgroundColor: string;
|
|
366
|
+
panelBorderColor: string;
|
|
367
|
+
panelPadding: string;
|
|
368
|
+
panelMaxHeight: string;
|
|
369
|
+
panelRadiusOffset: string;
|
|
370
|
+
panelShadow: string;
|
|
371
|
+
focusRingShadow: string;
|
|
372
|
+
optionPadding: string;
|
|
373
|
+
optionBorderRadius: string;
|
|
374
|
+
optionHoverBackgroundColor: string;
|
|
375
|
+
optionActiveBackgroundColor: string;
|
|
376
|
+
optionActiveTextColor: string;
|
|
377
|
+
optionHighlightedBackgroundColor: string;
|
|
378
|
+
emptyPadding: string;
|
|
379
|
+
emptyColor: string;
|
|
380
|
+
loadingPadding: string;
|
|
381
|
+
loadingColor: string;
|
|
382
|
+
small: {
|
|
383
|
+
padding: string;
|
|
384
|
+
fontSize: string;
|
|
385
|
+
};
|
|
386
|
+
large: {
|
|
387
|
+
padding: string;
|
|
388
|
+
fontSize: string;
|
|
389
|
+
};
|
|
390
|
+
};
|
|
351
391
|
checkbox: {
|
|
352
392
|
size: string;
|
|
353
393
|
gap: string;
|