@factoringplus/pl-components-pack-v3 1.8.5-pre-02-dialog → 1.8.5
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/ArrowTopRight20-CLcOM3Mc.mjs +23 -0
- package/dist/components/basic/pl-dialog/pl-dialog-plus.vue.d.ts +0 -1
- package/dist/components/basic/pl-scrollbar/pl-scrollbar.vue.d.ts +3 -3
- package/dist/components/data/pl-table-plus/components/Pagination/PlPagination.vue.d.ts +1 -1
- package/dist/components/data/pl-table-plus/components/Pagination/index.d.ts +9 -9
- package/dist/components/form/pl-autocomplete/components/pl-autocomplete-dropdown.vue.d.ts +2 -2
- package/dist/components/form/pl-autocomplete/components/pl-default.vue.d.ts +3 -3
- package/dist/components/form/pl-autocomplete/pl-autocompete.vue.d.ts +7 -7
- package/dist/components/form/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +2 -2
- package/dist/components/form/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +2 -2
- package/dist/components/form/pl-input-plus/components/pl-currency.vue.d.ts +1 -1
- package/dist/components/form/pl-input-plus/components/pl-default.vue.d.ts +7 -7
- package/dist/components/form/pl-input-plus/components/pl-password.vue.d.ts +1 -1
- package/dist/components/form/pl-input-plus/components/pl-textarea.vue.d.ts +1 -1
- package/dist/components/form/pl-input-plus/index.d.ts +293 -5
- package/dist/components/form/pl-input-plus/pl-input-plus.vue.d.ts +17 -14
- package/dist/components/form/pl-input-plus/types/index.d.ts +2 -1
- package/dist/components/form/pl-multi-select/components/pl-default.vue.d.ts +2 -2
- package/dist/components/form/pl-multi-select/components/pl-multi-select-dropdown.vue.d.ts +1 -1
- package/dist/components/form/pl-multi-select/pl-multi-select.vue.d.ts +3 -3
- package/dist/components/form/pl-radio/pl-radio.vue.d.ts +19 -34
- package/dist/components/form/pl-select-plus/components/pl-default.vue.d.ts +2 -2
- package/dist/components/form/pl-select-plus/components/pl-select-dropdown.vue.d.ts +1 -1
- package/dist/components/form/pl-select-plus/pl-select-plus.vue.d.ts +4 -4
- package/dist/components/form/pl-upload-plus/pl-upload-plus.vue.d.ts +2 -2
- package/dist/components/shared/pl-icon/types/iconsType.d.ts +1 -1
- package/dist/components/shared/pl-option/pl-option.vue.d.ts +2 -2
- package/dist/pl-components-pack-v3.es.js +5654 -5678
- package/dist/pl-components-pack-v3.umd.js +29 -29
- package/dist/style.css +1 -1
- package/package.json +1 -1
@@ -1,69 +1,54 @@
|
|
1
1
|
interface RadioOption {
|
2
|
-
value:
|
2
|
+
value: any;
|
3
3
|
label?: string;
|
4
4
|
description?: string;
|
5
|
+
disabled?: boolean;
|
5
6
|
}
|
6
7
|
declare const _default: import('vue').DefineComponent<{
|
8
|
+
modelValue: import('vue').PropType<any>;
|
7
9
|
size: {
|
8
|
-
type:
|
10
|
+
type: import('vue').PropType<"small" | "medium">;
|
9
11
|
default: string;
|
10
12
|
};
|
11
13
|
label: {
|
12
|
-
type:
|
13
|
-
default: string;
|
14
|
-
};
|
15
|
-
description: {
|
16
|
-
type: StringConstructor;
|
17
|
-
default: string;
|
18
|
-
};
|
19
|
-
modelValue: {
|
20
|
-
type: StringConstructor;
|
21
|
-
default: any;
|
14
|
+
type: import('vue').PropType<string>;
|
22
15
|
};
|
23
16
|
disabled: {
|
24
|
-
type:
|
25
|
-
|
17
|
+
type: import('vue').PropType<boolean>;
|
18
|
+
};
|
19
|
+
description: {
|
20
|
+
type: import('vue').PropType<string>;
|
26
21
|
};
|
27
22
|
options: {
|
28
|
-
type: ()
|
23
|
+
type: import('vue').PropType<RadioOption[]>;
|
29
24
|
required: true;
|
30
25
|
};
|
31
26
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
32
27
|
"update:modelValue": (...args: any[]) => void;
|
33
28
|
change: (...args: any[]) => void;
|
34
29
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
30
|
+
modelValue: import('vue').PropType<any>;
|
35
31
|
size: {
|
36
|
-
type:
|
32
|
+
type: import('vue').PropType<"small" | "medium">;
|
37
33
|
default: string;
|
38
34
|
};
|
39
35
|
label: {
|
40
|
-
type:
|
41
|
-
default: string;
|
42
|
-
};
|
43
|
-
description: {
|
44
|
-
type: StringConstructor;
|
45
|
-
default: string;
|
46
|
-
};
|
47
|
-
modelValue: {
|
48
|
-
type: StringConstructor;
|
49
|
-
default: any;
|
36
|
+
type: import('vue').PropType<string>;
|
50
37
|
};
|
51
38
|
disabled: {
|
52
|
-
type:
|
53
|
-
|
39
|
+
type: import('vue').PropType<boolean>;
|
40
|
+
};
|
41
|
+
description: {
|
42
|
+
type: import('vue').PropType<string>;
|
54
43
|
};
|
55
44
|
options: {
|
56
|
-
type: ()
|
45
|
+
type: import('vue').PropType<RadioOption[]>;
|
57
46
|
required: true;
|
58
47
|
};
|
59
48
|
}>> & {
|
60
49
|
onChange?: (...args: any[]) => any;
|
61
50
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
62
51
|
}, {
|
63
|
-
size:
|
64
|
-
label: string;
|
65
|
-
disabled: boolean;
|
66
|
-
modelValue: string;
|
67
|
-
description: string;
|
52
|
+
size: "small" | "medium";
|
68
53
|
}, {}>;
|
69
54
|
export default _default;
|
@@ -45,10 +45,10 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
45
45
|
placeholder: string;
|
46
46
|
focus: boolean;
|
47
47
|
prop: string;
|
48
|
-
clearable: boolean;
|
49
|
-
showError: number;
|
50
48
|
leftIcon: TIcon;
|
49
|
+
clearable: boolean;
|
51
50
|
showDescription: string | boolean;
|
51
|
+
showError: number;
|
52
52
|
}, {}>;
|
53
53
|
export default _default;
|
54
54
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -23,8 +23,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
23
23
|
}, {
|
24
24
|
id: string;
|
25
25
|
focus: boolean;
|
26
|
-
options: IOption[];
|
27
26
|
helpertext: string;
|
27
|
+
options: IOption[];
|
28
28
|
errors: import('async-validator').ValidateError[];
|
29
29
|
offsets: string;
|
30
30
|
}, {}>;
|
@@ -47,14 +47,14 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
47
47
|
modelValue: any;
|
48
48
|
teleport: boolean;
|
49
49
|
placeholder: string;
|
50
|
-
options: any[] | IOption[];
|
51
50
|
prop: string;
|
52
|
-
clearable: boolean;
|
53
|
-
leftIcon: import('../../components').TIcon;
|
54
|
-
rightIcon: import('../../components').TIcon;
|
55
51
|
helpertext: string;
|
56
52
|
optional: string;
|
57
53
|
tooltip: string;
|
54
|
+
leftIcon: import('../../components').TIcon;
|
55
|
+
rightIcon: import('../../components').TIcon;
|
56
|
+
options: any[] | IOption[];
|
57
|
+
clearable: boolean;
|
58
58
|
showDescription: boolean;
|
59
59
|
account: boolean;
|
60
60
|
}, {}>;
|
@@ -80,10 +80,10 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
80
80
|
multiple: boolean;
|
81
81
|
description: string;
|
82
82
|
prop: string;
|
83
|
-
fileSize: number;
|
84
|
-
limit: number;
|
85
83
|
optional: string;
|
86
84
|
tooltip: string;
|
85
|
+
fileSize: number;
|
86
|
+
limit: number;
|
87
87
|
maxHeightScroll: number;
|
88
88
|
helperText: string;
|
89
89
|
viewMode: boolean;
|
@@ -2,4 +2,4 @@ export declare type TIconProps = {
|
|
2
2
|
name: TIcon;
|
3
3
|
color?: string | '';
|
4
4
|
};
|
5
|
-
export declare type TIcon = '' | 'Close16' | 'User20' | 'Group20' | 'Edit20' | 'BlankPan20' | 'Support20' | 'HandKey20' | 'Lock20' | 'Connection20' | 'Picture20' | 'Ruble20' | 'Document20' | 'Clip20' | 'USB20' | 'Layers20' | 'BlankKey20' | 'BlankChat20' | 'BlankCheck20' | 'BlankLock20' | 'Calendar20' | 'MailCheck20' | 'Mail20' | 'HandTop20' | 'HandRight20' | 'Pin20' | 'Rotate20' | 'Search20' | 'ArrowTop20' | 'ArrowRight20' | 'ArrowLeft20' | 'ArrowBottom20' | 'Settings20' | 'Chart20' | 'Exit20' | 'Warning20' | 'WarningTwo20' | 'WarningThree20' | 'CircleCheck20' | 'Question20' | 'Library20' | 'Loader20' | 'Share20' | 'Saved20' | 'CloudDownload20' | 'Bin20' | 'Eye20' | 'EyeCrossed20' | 'Chat20' | 'Bell20' | 'DotsHorizontal20' | 'DotsVertical20' | 'Scheduled20' | 'Dashboard20' | 'Clock20' | 'Box20' | 'Sort20' | 'SortTwo20' | 'Filter20' | 'Grid20' | 'Hub20' | 'GridTwo20' | 'Home20' | 'Key20' | 'Bulb20' | 'Attachment20' | 'Download20' | 'Link20' | 'Copy20' | 'Telegram20' | 'SortThree20' | 'Plus20' | 'Minus20' | 'Close20' | 'Check20' | 'Scroll20' | 'Print20' | 'Send20' | 'Block20' | 'Star20' | 'Sticker20' | 'ChevronDoubleLeft20' | 'Cube20' | 'Menu20' | 'AlertFill20' | 'Main20' | 'Wallet20' | 'Truck20' | 'Percent20' | 'Shield20' | 'ChevronDown20' | 'ChevronUp20' | 'ChevronLeft20' | 'ChevronRight20' | 'CreditCard20' | 'Zap20' | 'User24' | 'Group24' | 'Edit24' | 'BlankPan24' | 'Support24' | 'HandKey24' | 'Lock24' | 'Connection24' | 'Picture24' | 'Ruble24' | 'Document24' | 'Clip24' | 'Bell24' | 'USB24' | 'Layers24' | 'BlankKey24' | 'BlankChat24' | 'BlankCheck24' | 'BlankLock24' | 'Calendar24' | 'MailCheck24' | 'Mail24' | 'HandTop24' | 'HandRight24' | 'Pin24' | 'Rotate24' | 'Search24' | 'ArrowTop24' | 'ArrowRight24' | 'ArrowLeft24' | 'ArrowBottom24' | 'Settings24' | 'Chart24' | 'Exit24' | 'Warning24' | 'WarningTwo24' | 'WarningThree24' | 'CircleCheck24' | 'Question24' | 'Library24' | 'Loader24' | 'Share24' | 'Saved24' | 'CloudDownload24' | 'Bin24' | 'Eye24' | 'EyeCrossed24' | 'Chat24' | 'DotsHorizontal24' | 'DotsVertical24' | 'Scheduled24' | 'Dashboard24' | 'Clock24' | 'Box24' | 'Sort24' | 'SortTwo24' | 'Filter24' | 'Grid24' | 'Hub24' | 'GridTwo24' | 'Home24' | 'Key24' | 'Bulb24' | 'Attachment24' | 'Download24' | 'Link24' | 'Copy24' | 'Telegram24' | 'SortThree24' | 'Plus24' | 'Minus24' | 'Close24' | 'Check24' | 'Scroll24' | 'Print24' | 'Send24' | 'Block24' | 'Star24' | 'Sticker24' | 'ChevronDoubleLeft24' | 'ChevronDoubleRight24' | 'Cube24' | 'Menu24' | 'AlertFill24' | 'Main24' | 'Wallet24' | 'Truck24' | 'Percent24' | 'Shield24' | 'ChevronDown24' | 'ChevronUp24' | 'ChevronLeft24' | 'ChevronRight24' | 'Word24' | 'Exel24' | 'PDF24' | 'JPG24' | 'PNG24' | 'Info24' | 'WB20' | 'Ozon20' | 'Yandex20' | 'WB24' | 'Ozon24' | 'Yandex24' | 'WB40' | 'Ozon40' | 'Yandex40' | 'WB56' | 'Ozon56' | 'Yandex56' | 'Attachment32' | 'Bell32' | 'Bin32' | 'BlankChat32' | 'BlankCheck32' | 'BlankKey32' | 'BlankLock32' | 'BlankPan32' | 'Block32' | 'Box32' | 'Bulb32' | 'Bulb40' | 'Calendar32' | 'Chart32' | 'Chat32' | 'Chat40' | 'Check32' | 'CheckCircle32' | 'Connection32' | 'Copy32' | 'CreditCard32' | 'CreditCard40' | 'Dashboard32' | 'Document32' | 'DotsHorizontal32' | 'DotsVertical32' | 'DoubleLeft32' | 'Download32' | 'Edit32' | 'Exit32' | 'Eye32' | 'EyeCrossed32' | 'Filter32' | 'FilterTwo32' | 'Grid32' | 'GridTwo32' | 'Grid40' | 'GridTwo40' | 'Group32' | 'HandKey32' | 'HandRight32' | 'HandTop32' | 'Home32' | 'Hub32' | 'Hub40' | 'Key32' | 'Layers32' | 'Library32' | 'Link32' | 'Link40' | 'Loader32' | 'Lock32' | 'Mail32' | 'MailCheck32' | 'Menu32' | 'Minus32' | 'Notification32' | 'Picture32' | 'Pin32' | 'Plus32' | 'Print32' | 'Question32' | 'Rotate32' | 'Ruble32' | 'Sample32' | 'Saved32' | 'Scheduled32' | 'Scroll32' | 'Search32' | 'Send32' | 'Settings32' | 'Share32' | 'ShareTwo32' | 'Sort32' | 'SortTwo32' | 'Star32' | 'Sticker32' | 'Support32' | 'USBPort32' | 'User32' | 'WarningCircle32' | 'WarningPolygon32' | 'WarningTriangle32' | 'BankAccount32' | 'ChevronBottom32' | 'ChevronLeft32' | 'ChevronRight32' | 'ChevronTop32' | 'ArrowBottom32' | 'ArrowLeft32' | 'ArrowRight32' | 'ArrowTop32' | 'ArrowTopRight32' | 'Credit32' | 'Factoring32' | 'Guarantees32' | 'Facebook32' | 'Instagram32' | 'Telegram32' | 'VK32' | 'Youtube32' | 'Attachment40' | 'Bell40' | 'Bin40' | 'BlankChat40' | 'BlankCheck40' | 'BlankKey40' | 'BlankLock40' | 'BlankPan40' | 'Block40' | 'Box40' | 'Calendar40' | 'Chart40' | 'Check40' | 'CheckCircle40' | 'Clip40' | 'Clock40' | 'Close40' | 'CloudDownload40' | 'Connection40' | 'Copy40' | 'Dashboard40' | 'Document40' | 'DotsHorizontal40' | 'DotsVertical40' | 'DoubleLeft40' | 'Download40' | 'Edit40' | 'Exit40' | 'Eye40' | 'EyeCrossed40' | 'Filter40' | 'FilterTwo40' | 'Group40' | 'HandKey40' | 'HandRight40' | 'HandTop40' | 'Home40' | 'Key40' | 'Layers40' | 'Library40' | 'Loader40' | 'Lock40' | 'Mail40' | 'MailCheck40' | 'Menu40' | 'Minus40' | 'Notification40' | 'Picture40' | 'Pin40' | 'Plus40' | 'Print40' | 'Question40' | 'Rotate40' | 'Ruble40' | 'Sample40' | 'Saved40' | 'Scheduled40' | 'Scroll40' | 'Search40' | 'Send40' | 'Settings40' | 'Share40' | 'ShareTwo40' | 'Sort40' | 'SortTwo40' | 'Star40' | 'Sticker40' | 'Support40' | 'USBPort40' | 'User40' | 'WarningCircle40' | 'WarningPolygon40' | 'WarningTriangle40' | 'ChevronBottom40' | 'ChevronLeft40' | 'ChevronRight40' | 'ChevronTop40' | 'ArrowBottom40' | 'ArrowLeft40' | 'ArrowRight40' | 'ArrowTop40' | 'ArrowTopRight40' | 'BankAccount40' | 'Credit40' | 'Factoring40' | 'Guarantees40' | 'Facebook40' | 'Instagram40' | 'Telegram40' | 'VK40' | 'Youtube40' | 'Thunder20' | 'Thunder24' | 'Thunder42' | 'Thunder40' | 'Suitcase20' | 'Suitcase24' | 'Suitcase32' | 'Suitcase40' | 'Cloud20' | 'Cloud24' | 'Cloud32' | 'Cloud40' | 'AlertFill16' | 'Cube16' | 'ArrowBottom16' | 'ArrowLeft16' | 'ArrowRight16' | 'ArrowTop16' | 'Attachment16' | 'Bell16' | 'BellTwo16' | 'Bin16' | 'BlankChat16' | 'BlankCheck16' | 'BlankKey16' | 'BlankLock16' | 'BlankPan16' | 'Block16' | 'Box16' | 'Bulb16' | 'Calendar16' | 'Chart16' | 'Chat16' | 'Check16' | 'ChevronBottom16' | 'ChevronDoubleLeft16' | 'ChevronLeft16' | 'ChevronRight16' | 'ChevronTop16' | 'CircleCheck16' | 'Clip16' | 'Clock16' | 'CloudDownload16' | 'Connection16' | 'Copy16' | 'Dashboard16' | 'Document16' | 'DotsHorizontal16' | 'DotsVertical16' | 'Download16' | 'Edit16' | 'Exit16' | 'Eye16' | 'EyeCrossed16' | 'Facebook16' | 'Filter16' | 'Grid16' | 'GridTwo16' | 'Group16' | 'HandKey16' | 'HandRight16' | 'HandTop16' | 'Home16' | 'Hub16' | 'Instagram16' | 'Key16' | 'Layers16' | 'Library16' | 'Link16' | 'Loader16' | 'Lock16' | 'Mail16' | 'MailCheck16' | 'Menu16' | 'MenuTwo16' | 'Minus16' | 'Notification16' | 'Picture16' | 'Pin16' | 'Plus16' | 'Print16' | 'Question16' | 'Rotate16' | 'Ruble16' | 'Saved16' | 'Scheduled16' | 'Scroll16' | 'Search16' | 'Send16' | 'Settings16' | 'Share16' | 'ShareTwo16' | 'SortOne16' | 'SortThree16' | 'SortTwo16' | 'Star16' | 'Sticker16' | 'Support16' | 'Telegram16' | 'USBPort16' | 'User16' | 'VK16' | 'WarningOne16' | 'WarningThree16' | 'WarningTwo16' | 'Cloud16' | 'CreditCard16' | 'Factoring16' | 'Icon16' | 'Main16' | 'Percent16' | 'Shield16' | 'Suitcase16' | 'Thunder16' | 'Truck16' | 'Wallet16' | 'Zap16' | 'ChevronDoubleRight16' | 'ChevronDoubleRight20' | 'Sidebar20' | 'Sidebar16' | 'Sidebar32' | 'Sidebar40' | 'Info16' | 'Info20' | 'Info40' | 'Info32';
|
5
|
+
export declare type TIcon = '' | 'Close16' | 'User20' | 'Group20' | 'Edit20' | 'BlankPan20' | 'Support20' | 'HandKey20' | 'Lock20' | 'Connection20' | 'Picture20' | 'Ruble20' | 'Document20' | 'Clip20' | 'USB20' | 'Layers20' | 'BlankKey20' | 'BlankChat20' | 'BlankCheck20' | 'BlankLock20' | 'Calendar20' | 'MailCheck20' | 'Mail20' | 'HandTop20' | 'HandRight20' | 'Pin20' | 'Rotate20' | 'Search20' | 'ArrowTop20' | 'ArrowRight20' | 'ArrowLeft20' | 'ArrowBottom20' | 'Settings20' | 'Chart20' | 'Exit20' | 'Warning20' | 'WarningTwo20' | 'WarningThree20' | 'CircleCheck20' | 'Question20' | 'Library20' | 'Loader20' | 'Share20' | 'Saved20' | 'CloudDownload20' | 'Bin20' | 'Eye20' | 'EyeCrossed20' | 'Chat20' | 'Bell20' | 'DotsHorizontal20' | 'DotsVertical20' | 'Scheduled20' | 'Dashboard20' | 'Clock20' | 'Box20' | 'Sort20' | 'SortTwo20' | 'Filter20' | 'Grid20' | 'Hub20' | 'GridTwo20' | 'Home20' | 'Key20' | 'Bulb20' | 'Attachment20' | 'Download20' | 'Link20' | 'Copy20' | 'Telegram20' | 'SortThree20' | 'Plus20' | 'Minus20' | 'Close20' | 'Check20' | 'Scroll20' | 'Print20' | 'Send20' | 'Block20' | 'Star20' | 'Sticker20' | 'ChevronDoubleLeft20' | 'Cube20' | 'Menu20' | 'AlertFill20' | 'Main20' | 'Wallet20' | 'Truck20' | 'Percent20' | 'Shield20' | 'ChevronDown20' | 'ChevronUp20' | 'ChevronLeft20' | 'ChevronRight20' | 'CreditCard20' | 'Zap20' | 'User24' | 'Group24' | 'Edit24' | 'BlankPan24' | 'Support24' | 'HandKey24' | 'Lock24' | 'Connection24' | 'Picture24' | 'Ruble24' | 'Document24' | 'Clip24' | 'Bell24' | 'USB24' | 'Layers24' | 'BlankKey24' | 'BlankChat24' | 'BlankCheck24' | 'BlankLock24' | 'Calendar24' | 'MailCheck24' | 'Mail24' | 'HandTop24' | 'HandRight24' | 'Pin24' | 'Rotate24' | 'Search24' | 'ArrowTop24' | 'ArrowRight24' | 'ArrowLeft24' | 'ArrowBottom24' | 'Settings24' | 'Chart24' | 'Exit24' | 'Warning24' | 'WarningTwo24' | 'WarningThree24' | 'CircleCheck24' | 'Question24' | 'Library24' | 'Loader24' | 'Share24' | 'Saved24' | 'CloudDownload24' | 'Bin24' | 'Eye24' | 'EyeCrossed24' | 'Chat24' | 'DotsHorizontal24' | 'DotsVertical24' | 'Scheduled24' | 'Dashboard24' | 'Clock24' | 'Box24' | 'Sort24' | 'SortTwo24' | 'Filter24' | 'Grid24' | 'Hub24' | 'GridTwo24' | 'Home24' | 'Key24' | 'Bulb24' | 'Attachment24' | 'Download24' | 'Link24' | 'Copy24' | 'Telegram24' | 'SortThree24' | 'Plus24' | 'Minus24' | 'Close24' | 'Check24' | 'Scroll24' | 'Print24' | 'Send24' | 'Block24' | 'Star24' | 'Sticker24' | 'ChevronDoubleLeft24' | 'ChevronDoubleRight24' | 'Cube24' | 'Menu24' | 'AlertFill24' | 'Main24' | 'Wallet24' | 'Truck24' | 'Percent24' | 'Shield24' | 'ChevronDown24' | 'ChevronUp24' | 'ChevronLeft24' | 'ChevronRight24' | 'Word24' | 'Exel24' | 'PDF24' | 'JPG24' | 'PNG24' | 'Info24' | 'WB20' | 'Ozon20' | 'Yandex20' | 'WB24' | 'Ozon24' | 'Yandex24' | 'WB40' | 'Ozon40' | 'Yandex40' | 'WB56' | 'Ozon56' | 'Yandex56' | 'Attachment32' | 'Bell32' | 'Bin32' | 'BlankChat32' | 'BlankCheck32' | 'BlankKey32' | 'BlankLock32' | 'BlankPan32' | 'Block32' | 'Box32' | 'Bulb32' | 'Bulb40' | 'Calendar32' | 'Chart32' | 'Chat32' | 'Chat40' | 'Check32' | 'CheckCircle32' | 'Connection32' | 'Copy32' | 'CreditCard32' | 'CreditCard40' | 'Dashboard32' | 'Document32' | 'DotsHorizontal32' | 'DotsVertical32' | 'DoubleLeft32' | 'Download32' | 'Edit32' | 'Exit32' | 'Eye32' | 'EyeCrossed32' | 'Filter32' | 'FilterTwo32' | 'Grid32' | 'GridTwo32' | 'Grid40' | 'GridTwo40' | 'Group32' | 'HandKey32' | 'HandRight32' | 'HandTop32' | 'Home32' | 'Hub32' | 'Hub40' | 'Key32' | 'Layers32' | 'Library32' | 'Link32' | 'Link40' | 'Loader32' | 'Lock32' | 'Mail32' | 'MailCheck32' | 'Menu32' | 'Minus32' | 'Notification32' | 'Picture32' | 'Pin32' | 'Plus32' | 'Print32' | 'Question32' | 'Rotate32' | 'Ruble32' | 'Sample32' | 'Saved32' | 'Scheduled32' | 'Scroll32' | 'Search32' | 'Send32' | 'Settings32' | 'Share32' | 'ShareTwo32' | 'Sort32' | 'SortTwo32' | 'Star32' | 'Sticker32' | 'Support32' | 'USBPort32' | 'User32' | 'WarningCircle32' | 'WarningPolygon32' | 'WarningTriangle32' | 'BankAccount32' | 'ChevronBottom32' | 'ChevronLeft32' | 'ChevronRight32' | 'ChevronTop32' | 'ArrowBottom32' | 'ArrowLeft32' | 'ArrowRight32' | 'ArrowTop32' | 'ArrowTopRight32' | 'Credit32' | 'Factoring32' | 'Guarantees32' | 'Facebook32' | 'Instagram32' | 'Telegram32' | 'VK32' | 'Youtube32' | 'Attachment40' | 'Bell40' | 'Bin40' | 'BlankChat40' | 'BlankCheck40' | 'BlankKey40' | 'BlankLock40' | 'BlankPan40' | 'Block40' | 'Box40' | 'Calendar40' | 'Chart40' | 'Check40' | 'CheckCircle40' | 'Clip40' | 'Clock40' | 'Close40' | 'CloudDownload40' | 'Connection40' | 'Copy40' | 'Dashboard40' | 'Document40' | 'DotsHorizontal40' | 'DotsVertical40' | 'DoubleLeft40' | 'Download40' | 'Edit40' | 'Exit40' | 'Eye40' | 'EyeCrossed40' | 'Filter40' | 'FilterTwo40' | 'Group40' | 'HandKey40' | 'HandRight40' | 'HandTop40' | 'Home40' | 'Key40' | 'Layers40' | 'Library40' | 'Loader40' | 'Lock40' | 'Mail40' | 'MailCheck40' | 'Menu40' | 'Minus40' | 'Notification40' | 'Picture40' | 'Pin40' | 'Plus40' | 'Print40' | 'Question40' | 'Rotate40' | 'Ruble40' | 'Sample40' | 'Saved40' | 'Scheduled40' | 'Scroll40' | 'Search40' | 'Send40' | 'Settings40' | 'Share40' | 'ShareTwo40' | 'Sort40' | 'SortTwo40' | 'Star40' | 'Sticker40' | 'Support40' | 'USBPort40' | 'User40' | 'WarningCircle40' | 'WarningPolygon40' | 'WarningTriangle40' | 'ChevronBottom40' | 'ChevronLeft40' | 'ChevronRight40' | 'ChevronTop40' | 'ArrowBottom40' | 'ArrowLeft40' | 'ArrowRight40' | 'ArrowTop40' | 'ArrowTopRight40' | 'BankAccount40' | 'Credit40' | 'Factoring40' | 'Guarantees40' | 'Facebook40' | 'Instagram40' | 'Telegram40' | 'VK40' | 'Youtube40' | 'Thunder20' | 'Thunder24' | 'Thunder42' | 'Thunder40' | 'Suitcase20' | 'Suitcase24' | 'Suitcase32' | 'Suitcase40' | 'Cloud20' | 'Cloud24' | 'Cloud32' | 'Cloud40' | 'AlertFill16' | 'Cube16' | 'ArrowBottom16' | 'ArrowLeft16' | 'ArrowRight16' | 'ArrowTop16' | 'Attachment16' | 'Bell16' | 'BellTwo16' | 'Bin16' | 'BlankChat16' | 'BlankCheck16' | 'BlankKey16' | 'BlankLock16' | 'BlankPan16' | 'Block16' | 'Box16' | 'Bulb16' | 'Calendar16' | 'Chart16' | 'Chat16' | 'Check16' | 'ChevronBottom16' | 'ChevronDoubleLeft16' | 'ChevronLeft16' | 'ChevronRight16' | 'ChevronTop16' | 'CircleCheck16' | 'Clip16' | 'Clock16' | 'CloudDownload16' | 'Connection16' | 'Copy16' | 'Dashboard16' | 'Document16' | 'DotsHorizontal16' | 'DotsVertical16' | 'Download16' | 'Edit16' | 'Exit16' | 'Eye16' | 'EyeCrossed16' | 'Facebook16' | 'Filter16' | 'Grid16' | 'GridTwo16' | 'Group16' | 'HandKey16' | 'HandRight16' | 'HandTop16' | 'Home16' | 'Hub16' | 'Instagram16' | 'Key16' | 'Layers16' | 'Library16' | 'Link16' | 'Loader16' | 'Lock16' | 'Mail16' | 'MailCheck16' | 'Menu16' | 'MenuTwo16' | 'Minus16' | 'Notification16' | 'Picture16' | 'Pin16' | 'Plus16' | 'Print16' | 'Question16' | 'Rotate16' | 'Ruble16' | 'Saved16' | 'Scheduled16' | 'Scroll16' | 'Search16' | 'Send16' | 'Settings16' | 'Share16' | 'ShareTwo16' | 'SortOne16' | 'SortThree16' | 'SortTwo16' | 'Star16' | 'Sticker16' | 'Support16' | 'Telegram16' | 'USBPort16' | 'User16' | 'VK16' | 'WarningOne16' | 'WarningThree16' | 'WarningTwo16' | 'Cloud16' | 'CreditCard16' | 'Factoring16' | 'Icon16' | 'Main16' | 'Percent16' | 'Shield16' | 'Suitcase16' | 'Thunder16' | 'Truck16' | 'Wallet16' | 'Zap16' | 'ChevronDoubleRight16' | 'ChevronDoubleRight20' | 'Sidebar20' | 'Sidebar16' | 'Sidebar32' | 'Sidebar40' | 'Info16' | 'Info20' | 'Info40' | 'Info32' | 'ArrowTopRight20';
|
@@ -110,11 +110,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
110
110
|
width: string;
|
111
111
|
active: boolean;
|
112
112
|
description: string;
|
113
|
+
leftIcon: string;
|
114
|
+
rightIcon: string;
|
113
115
|
descriptionColor: string;
|
114
116
|
searchValue: string;
|
115
|
-
leftIcon: string;
|
116
117
|
leftIconColor: string;
|
117
|
-
rightIcon: string;
|
118
118
|
rightIconColor: string;
|
119
119
|
summ: number;
|
120
120
|
disableMarkerBottom: boolean;
|