@codemonster-ru/vueforge 0.57.0 → 0.59.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 +120 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.ts.mjs +4096 -3735
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/form.test.d.ts +1 -0
- package/dist/package/components/__tests__/timeline.test.d.ts +1 -0
- package/dist/package/components/accordion.vue.d.ts +1 -1
- package/dist/package/components/file-upload.vue.d.ts +1 -1
- package/dist/package/components/filter-chips.vue.d.ts +1 -1
- package/dist/package/components/form.vue.d.ts +79 -0
- package/dist/package/components/radio-group.vue.d.ts +1 -1
- package/dist/package/components/segmented-control.vue.d.ts +1 -1
- package/dist/package/components/timeline.vue.d.ts +48 -0
- package/dist/package/components/tree.vue.d.ts +1 -1
- package/dist/package/config/theme-core.d.ts +74 -0
- package/dist/package/themes/default/components/form-field.d.ts +2 -0
- package/dist/package/themes/default/components/form.d.ts +6 -0
- package/dist/package/themes/default/components/timeline.d.ts +66 -0
- package/dist/package/themes/default/index.d.ts +72 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -29,8 +29,8 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
29
29
|
variant: AccordionVariant;
|
|
30
30
|
modelValue: AccordionValue | AccordionValue[];
|
|
31
31
|
ariaLabel: string;
|
|
32
|
-
multiple: boolean;
|
|
33
32
|
ariaLabelledby: string;
|
|
33
|
+
multiple: boolean;
|
|
34
34
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
35
35
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
36
36
|
export default _default;
|
|
@@ -32,9 +32,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
32
32
|
modelValue: File | Array<File> | null;
|
|
33
33
|
placeholder: string;
|
|
34
34
|
readonly: boolean;
|
|
35
|
+
multiple: boolean;
|
|
35
36
|
maxSize: number;
|
|
36
37
|
maxFiles: number;
|
|
37
|
-
multiple: boolean;
|
|
38
38
|
accept: string;
|
|
39
39
|
buttonLabel: string;
|
|
40
40
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -38,9 +38,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
38
38
|
modelValue: FilterModel;
|
|
39
39
|
clearable: boolean;
|
|
40
40
|
ariaLabel: string;
|
|
41
|
+
ariaLabelledby: string;
|
|
41
42
|
multiple: boolean;
|
|
42
43
|
options: Array<FilterChipOption>;
|
|
43
|
-
ariaLabelledby: string;
|
|
44
44
|
allowEmpty: boolean;
|
|
45
45
|
clearText: string;
|
|
46
46
|
clearLabel: string;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
type ValidateTrigger = 'submit' | 'input' | 'change' | 'blur';
|
|
2
|
+
export type FormValues = Record<string, unknown>;
|
|
3
|
+
export type FormErrors = Record<string, string>;
|
|
4
|
+
export type FormTouched = Record<string, boolean>;
|
|
5
|
+
export type FormValidateResult = FormErrors | string | boolean | null | undefined;
|
|
6
|
+
export type FormValidateHandler = (values: FormValues) => FormValidateResult | Promise<FormValidateResult>;
|
|
7
|
+
interface Props {
|
|
8
|
+
modelValue?: FormValues;
|
|
9
|
+
initialValues?: FormValues;
|
|
10
|
+
validate?: FormValidateHandler;
|
|
11
|
+
validateOn?: ValidateTrigger | Array<ValidateTrigger>;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
novalidate?: boolean;
|
|
14
|
+
id?: string;
|
|
15
|
+
ariaLabel?: string;
|
|
16
|
+
ariaLabelledby?: string;
|
|
17
|
+
}
|
|
18
|
+
declare function __VLS_template(): {
|
|
19
|
+
attrs: Partial<{}>;
|
|
20
|
+
slots: {
|
|
21
|
+
default?(_: {
|
|
22
|
+
values: FormValues;
|
|
23
|
+
errors: FormErrors;
|
|
24
|
+
touched: FormTouched;
|
|
25
|
+
isValid: boolean;
|
|
26
|
+
isDirty: boolean;
|
|
27
|
+
isSubmitting: boolean;
|
|
28
|
+
setFieldValue: (name: string, value: unknown, options?: {
|
|
29
|
+
emitChange?: boolean;
|
|
30
|
+
}) => void;
|
|
31
|
+
setFieldTouched: (name: string, state?: boolean) => void;
|
|
32
|
+
setFieldError: (name: string, message?: string) => void;
|
|
33
|
+
validate: (trigger?: ValidateTrigger) => Promise<boolean>;
|
|
34
|
+
submit: (event?: Event) => Promise<void>;
|
|
35
|
+
reset: (event?: Event) => void;
|
|
36
|
+
}): any;
|
|
37
|
+
};
|
|
38
|
+
refs: {
|
|
39
|
+
formRef: HTMLFormElement;
|
|
40
|
+
};
|
|
41
|
+
rootEl: HTMLFormElement;
|
|
42
|
+
};
|
|
43
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
44
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
45
|
+
blur: (...args: any[]) => void;
|
|
46
|
+
change: (...args: any[]) => void;
|
|
47
|
+
reset: (...args: any[]) => void;
|
|
48
|
+
submit: (...args: any[]) => void;
|
|
49
|
+
"update:modelValue": (...args: any[]) => void;
|
|
50
|
+
validate: (...args: any[]) => void;
|
|
51
|
+
invalidSubmit: (...args: any[]) => void;
|
|
52
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
53
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
54
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
55
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
56
|
+
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
57
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
58
|
+
onValidate?: ((...args: any[]) => any) | undefined;
|
|
59
|
+
onInvalidSubmit?: ((...args: any[]) => any) | undefined;
|
|
60
|
+
}>, {
|
|
61
|
+
disabled: boolean;
|
|
62
|
+
modelValue: FormValues;
|
|
63
|
+
ariaLabel: string;
|
|
64
|
+
id: string;
|
|
65
|
+
initialValues: FormValues;
|
|
66
|
+
validate: FormValidateHandler;
|
|
67
|
+
validateOn: ValidateTrigger | Array<ValidateTrigger>;
|
|
68
|
+
novalidate: boolean;
|
|
69
|
+
ariaLabelledby: string;
|
|
70
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
71
|
+
formRef: HTMLFormElement;
|
|
72
|
+
}, HTMLFormElement>;
|
|
73
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
74
|
+
export default _default;
|
|
75
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
76
|
+
new (): {
|
|
77
|
+
$slots: S;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
@@ -30,8 +30,8 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
30
30
|
variant: RadioVariant;
|
|
31
31
|
modelValue: string | number | boolean | null;
|
|
32
32
|
ariaLabel: string;
|
|
33
|
-
direction: Direction;
|
|
34
33
|
ariaLabelledby: string;
|
|
34
|
+
direction: Direction;
|
|
35
35
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
36
36
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
37
37
|
export default _default;
|
|
@@ -32,8 +32,8 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
32
32
|
variant: Variant;
|
|
33
33
|
modelValue: SegmentedValue;
|
|
34
34
|
ariaLabel: string;
|
|
35
|
-
options: Array<SegmentedOption>;
|
|
36
35
|
ariaLabelledby: string;
|
|
36
|
+
options: Array<SegmentedOption>;
|
|
37
37
|
fullWidth: boolean;
|
|
38
38
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
39
|
export default _default;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
type TimelineOrientation = 'vertical' | 'horizontal';
|
|
2
|
+
type TimelineSize = 'small' | 'normal' | 'large';
|
|
3
|
+
type TimelineStatus = 'neutral' | 'info' | 'success' | 'warn' | 'danger';
|
|
4
|
+
export interface TimelineItem {
|
|
5
|
+
id?: string | number;
|
|
6
|
+
title?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
date?: string;
|
|
9
|
+
icon?: string;
|
|
10
|
+
status?: TimelineStatus;
|
|
11
|
+
}
|
|
12
|
+
interface Props {
|
|
13
|
+
items?: Array<TimelineItem>;
|
|
14
|
+
orientation?: TimelineOrientation;
|
|
15
|
+
size?: TimelineSize;
|
|
16
|
+
ariaLabel?: string;
|
|
17
|
+
ariaLabelledby?: string;
|
|
18
|
+
}
|
|
19
|
+
declare function __VLS_template(): {
|
|
20
|
+
attrs: Partial<{}>;
|
|
21
|
+
slots: {
|
|
22
|
+
marker?(_: {
|
|
23
|
+
item: TimelineItem;
|
|
24
|
+
index: number;
|
|
25
|
+
}): any;
|
|
26
|
+
item?(_: {
|
|
27
|
+
item: TimelineItem;
|
|
28
|
+
index: number;
|
|
29
|
+
}): any;
|
|
30
|
+
};
|
|
31
|
+
refs: {};
|
|
32
|
+
rootEl: HTMLElement;
|
|
33
|
+
};
|
|
34
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
35
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
36
|
+
items: Array<TimelineItem>;
|
|
37
|
+
orientation: TimelineOrientation;
|
|
38
|
+
size: TimelineSize;
|
|
39
|
+
ariaLabel: string;
|
|
40
|
+
ariaLabelledby: string;
|
|
41
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
42
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
43
|
+
export default _default;
|
|
44
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
45
|
+
new (): {
|
|
46
|
+
$slots: S;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
@@ -56,8 +56,8 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
56
56
|
variant: "filled" | "outlined";
|
|
57
57
|
modelValue: TreeValue | TreeValue[];
|
|
58
58
|
ariaLabel: string;
|
|
59
|
-
multiple: boolean;
|
|
60
59
|
ariaLabelledby: string;
|
|
60
|
+
multiple: boolean;
|
|
61
61
|
expandOnClick: boolean;
|
|
62
62
|
selectable: boolean;
|
|
63
63
|
expandedKeys: Array<TreeValue>;
|
|
@@ -336,6 +336,11 @@ export type NumberInputTokens = {
|
|
|
336
336
|
controlFontSize?: string;
|
|
337
337
|
};
|
|
338
338
|
};
|
|
339
|
+
export type FormTokens = {
|
|
340
|
+
gap?: string;
|
|
341
|
+
textColor?: string;
|
|
342
|
+
disabledOpacity?: string;
|
|
343
|
+
};
|
|
339
344
|
export type FormFieldTokens = {
|
|
340
345
|
gap?: string;
|
|
341
346
|
textColor?: string;
|
|
@@ -345,6 +350,8 @@ export type FormFieldTokens = {
|
|
|
345
350
|
hintFontSize?: string;
|
|
346
351
|
hintColor?: string;
|
|
347
352
|
errorColor?: string;
|
|
353
|
+
errorBorderColor?: string;
|
|
354
|
+
errorFocusBorderColor?: string;
|
|
348
355
|
disabledOpacity?: string;
|
|
349
356
|
small?: {
|
|
350
357
|
gap?: string;
|
|
@@ -1420,6 +1427,71 @@ export type StepperTokens = {
|
|
|
1420
1427
|
itemGap?: string;
|
|
1421
1428
|
};
|
|
1422
1429
|
};
|
|
1430
|
+
export type TimelineTokens = {
|
|
1431
|
+
gap?: string;
|
|
1432
|
+
itemGap?: string;
|
|
1433
|
+
markerSize?: string;
|
|
1434
|
+
markerBorderRadius?: string;
|
|
1435
|
+
markerBorderWidth?: string;
|
|
1436
|
+
markerBackgroundColor?: string;
|
|
1437
|
+
markerBorderColor?: string;
|
|
1438
|
+
markerTextColor?: string;
|
|
1439
|
+
markerIconSize?: string;
|
|
1440
|
+
dotSize?: string;
|
|
1441
|
+
lineThickness?: string;
|
|
1442
|
+
lineLength?: string;
|
|
1443
|
+
lineColor?: string;
|
|
1444
|
+
titleFontSize?: string;
|
|
1445
|
+
titleColor?: string;
|
|
1446
|
+
descriptionFontSize?: string;
|
|
1447
|
+
descriptionColor?: string;
|
|
1448
|
+
dateFontSize?: string;
|
|
1449
|
+
dateColor?: string;
|
|
1450
|
+
info?: {
|
|
1451
|
+
markerBackgroundColor?: string;
|
|
1452
|
+
markerBorderColor?: string;
|
|
1453
|
+
markerTextColor?: string;
|
|
1454
|
+
lineColor?: string;
|
|
1455
|
+
};
|
|
1456
|
+
success?: {
|
|
1457
|
+
markerBackgroundColor?: string;
|
|
1458
|
+
markerBorderColor?: string;
|
|
1459
|
+
markerTextColor?: string;
|
|
1460
|
+
lineColor?: string;
|
|
1461
|
+
};
|
|
1462
|
+
warn?: {
|
|
1463
|
+
markerBackgroundColor?: string;
|
|
1464
|
+
markerBorderColor?: string;
|
|
1465
|
+
markerTextColor?: string;
|
|
1466
|
+
lineColor?: string;
|
|
1467
|
+
};
|
|
1468
|
+
danger?: {
|
|
1469
|
+
markerBackgroundColor?: string;
|
|
1470
|
+
markerBorderColor?: string;
|
|
1471
|
+
markerTextColor?: string;
|
|
1472
|
+
lineColor?: string;
|
|
1473
|
+
};
|
|
1474
|
+
small?: {
|
|
1475
|
+
itemGap?: string;
|
|
1476
|
+
markerSize?: string;
|
|
1477
|
+
markerIconSize?: string;
|
|
1478
|
+
dotSize?: string;
|
|
1479
|
+
lineLength?: string;
|
|
1480
|
+
dateFontSize?: string;
|
|
1481
|
+
titleFontSize?: string;
|
|
1482
|
+
descriptionFontSize?: string;
|
|
1483
|
+
};
|
|
1484
|
+
large?: {
|
|
1485
|
+
itemGap?: string;
|
|
1486
|
+
markerSize?: string;
|
|
1487
|
+
markerIconSize?: string;
|
|
1488
|
+
dotSize?: string;
|
|
1489
|
+
lineLength?: string;
|
|
1490
|
+
dateFontSize?: string;
|
|
1491
|
+
titleFontSize?: string;
|
|
1492
|
+
descriptionFontSize?: string;
|
|
1493
|
+
};
|
|
1494
|
+
};
|
|
1423
1495
|
export type DataTableTokens = {
|
|
1424
1496
|
borderColor?: string;
|
|
1425
1497
|
borderRadius?: string;
|
|
@@ -1694,6 +1766,7 @@ export type ThemeComponentTokens = {
|
|
|
1694
1766
|
colorPicker?: ColorPickerTokens;
|
|
1695
1767
|
maskedInput?: MaskedInputTokens;
|
|
1696
1768
|
numberInput?: NumberInputTokens;
|
|
1769
|
+
form?: FormTokens;
|
|
1697
1770
|
formField?: FormFieldTokens;
|
|
1698
1771
|
textarea?: TextareaTokens;
|
|
1699
1772
|
fileUpload?: FileUploadTokens;
|
|
@@ -1726,6 +1799,7 @@ export type ThemeComponentTokens = {
|
|
|
1726
1799
|
progress?: ProgressTokens;
|
|
1727
1800
|
slider?: SliderTokens;
|
|
1728
1801
|
stepper?: StepperTokens;
|
|
1802
|
+
timeline?: TimelineTokens;
|
|
1729
1803
|
datatable?: DataTableTokens;
|
|
1730
1804
|
toast?: ToastTokens;
|
|
1731
1805
|
alert?: AlertTokens;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
gap: string;
|
|
3
|
+
itemGap: string;
|
|
4
|
+
markerSize: string;
|
|
5
|
+
markerBorderRadius: string;
|
|
6
|
+
markerBorderWidth: string;
|
|
7
|
+
markerBackgroundColor: string;
|
|
8
|
+
markerBorderColor: string;
|
|
9
|
+
markerTextColor: string;
|
|
10
|
+
markerIconSize: string;
|
|
11
|
+
dotSize: string;
|
|
12
|
+
lineThickness: string;
|
|
13
|
+
lineLength: string;
|
|
14
|
+
lineColor: string;
|
|
15
|
+
titleFontSize: string;
|
|
16
|
+
titleColor: string;
|
|
17
|
+
descriptionFontSize: string;
|
|
18
|
+
descriptionColor: string;
|
|
19
|
+
dateFontSize: string;
|
|
20
|
+
dateColor: string;
|
|
21
|
+
info: {
|
|
22
|
+
markerBackgroundColor: string;
|
|
23
|
+
markerBorderColor: string;
|
|
24
|
+
markerTextColor: string;
|
|
25
|
+
lineColor: string;
|
|
26
|
+
};
|
|
27
|
+
success: {
|
|
28
|
+
markerBackgroundColor: string;
|
|
29
|
+
markerBorderColor: string;
|
|
30
|
+
markerTextColor: string;
|
|
31
|
+
lineColor: string;
|
|
32
|
+
};
|
|
33
|
+
warn: {
|
|
34
|
+
markerBackgroundColor: string;
|
|
35
|
+
markerBorderColor: string;
|
|
36
|
+
markerTextColor: string;
|
|
37
|
+
lineColor: string;
|
|
38
|
+
};
|
|
39
|
+
danger: {
|
|
40
|
+
markerBackgroundColor: string;
|
|
41
|
+
markerBorderColor: string;
|
|
42
|
+
markerTextColor: string;
|
|
43
|
+
lineColor: string;
|
|
44
|
+
};
|
|
45
|
+
small: {
|
|
46
|
+
itemGap: string;
|
|
47
|
+
markerSize: string;
|
|
48
|
+
markerIconSize: string;
|
|
49
|
+
dotSize: string;
|
|
50
|
+
lineLength: string;
|
|
51
|
+
dateFontSize: string;
|
|
52
|
+
titleFontSize: string;
|
|
53
|
+
descriptionFontSize: string;
|
|
54
|
+
};
|
|
55
|
+
large: {
|
|
56
|
+
itemGap: string;
|
|
57
|
+
markerSize: string;
|
|
58
|
+
markerIconSize: string;
|
|
59
|
+
dotSize: string;
|
|
60
|
+
lineLength: string;
|
|
61
|
+
dateFontSize: string;
|
|
62
|
+
titleFontSize: string;
|
|
63
|
+
descriptionFontSize: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
export default _default;
|
|
@@ -493,6 +493,11 @@ declare const _default: {
|
|
|
493
493
|
controlFontSize: string;
|
|
494
494
|
};
|
|
495
495
|
};
|
|
496
|
+
form: {
|
|
497
|
+
gap: string;
|
|
498
|
+
textColor: string;
|
|
499
|
+
disabledOpacity: string;
|
|
500
|
+
};
|
|
496
501
|
formField: {
|
|
497
502
|
gap: string;
|
|
498
503
|
textColor: string;
|
|
@@ -502,6 +507,8 @@ declare const _default: {
|
|
|
502
507
|
hintFontSize: string;
|
|
503
508
|
hintColor: string;
|
|
504
509
|
errorColor: string;
|
|
510
|
+
errorBorderColor: string;
|
|
511
|
+
errorFocusBorderColor: string;
|
|
505
512
|
disabledOpacity: string;
|
|
506
513
|
small: {
|
|
507
514
|
gap: string;
|
|
@@ -1809,6 +1816,71 @@ declare const _default: {
|
|
|
1809
1816
|
itemGap: string;
|
|
1810
1817
|
};
|
|
1811
1818
|
};
|
|
1819
|
+
timeline: {
|
|
1820
|
+
gap: string;
|
|
1821
|
+
itemGap: string;
|
|
1822
|
+
markerSize: string;
|
|
1823
|
+
markerBorderRadius: string;
|
|
1824
|
+
markerBorderWidth: string;
|
|
1825
|
+
markerBackgroundColor: string;
|
|
1826
|
+
markerBorderColor: string;
|
|
1827
|
+
markerTextColor: string;
|
|
1828
|
+
markerIconSize: string;
|
|
1829
|
+
dotSize: string;
|
|
1830
|
+
lineThickness: string;
|
|
1831
|
+
lineLength: string;
|
|
1832
|
+
lineColor: string;
|
|
1833
|
+
titleFontSize: string;
|
|
1834
|
+
titleColor: string;
|
|
1835
|
+
descriptionFontSize: string;
|
|
1836
|
+
descriptionColor: string;
|
|
1837
|
+
dateFontSize: string;
|
|
1838
|
+
dateColor: string;
|
|
1839
|
+
info: {
|
|
1840
|
+
markerBackgroundColor: string;
|
|
1841
|
+
markerBorderColor: string;
|
|
1842
|
+
markerTextColor: string;
|
|
1843
|
+
lineColor: string;
|
|
1844
|
+
};
|
|
1845
|
+
success: {
|
|
1846
|
+
markerBackgroundColor: string;
|
|
1847
|
+
markerBorderColor: string;
|
|
1848
|
+
markerTextColor: string;
|
|
1849
|
+
lineColor: string;
|
|
1850
|
+
};
|
|
1851
|
+
warn: {
|
|
1852
|
+
markerBackgroundColor: string;
|
|
1853
|
+
markerBorderColor: string;
|
|
1854
|
+
markerTextColor: string;
|
|
1855
|
+
lineColor: string;
|
|
1856
|
+
};
|
|
1857
|
+
danger: {
|
|
1858
|
+
markerBackgroundColor: string;
|
|
1859
|
+
markerBorderColor: string;
|
|
1860
|
+
markerTextColor: string;
|
|
1861
|
+
lineColor: string;
|
|
1862
|
+
};
|
|
1863
|
+
small: {
|
|
1864
|
+
itemGap: string;
|
|
1865
|
+
markerSize: string;
|
|
1866
|
+
markerIconSize: string;
|
|
1867
|
+
dotSize: string;
|
|
1868
|
+
lineLength: string;
|
|
1869
|
+
dateFontSize: string;
|
|
1870
|
+
titleFontSize: string;
|
|
1871
|
+
descriptionFontSize: string;
|
|
1872
|
+
};
|
|
1873
|
+
large: {
|
|
1874
|
+
itemGap: string;
|
|
1875
|
+
markerSize: string;
|
|
1876
|
+
markerIconSize: string;
|
|
1877
|
+
dotSize: string;
|
|
1878
|
+
lineLength: string;
|
|
1879
|
+
dateFontSize: string;
|
|
1880
|
+
titleFontSize: string;
|
|
1881
|
+
descriptionFontSize: string;
|
|
1882
|
+
};
|
|
1883
|
+
};
|
|
1812
1884
|
rating: {
|
|
1813
1885
|
gap: string;
|
|
1814
1886
|
size: string;
|