@factoringplus/pl-components-pack-v3 1.8.5-pre-03 → 1.8.6-pre-01-link
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/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 +2 -2
- 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 +5 -2
- package/dist/components/form/pl-input-plus/types/index.d.ts +2 -1
- package/dist/components/form/pl-radio/pl-radio.vue.d.ts +19 -34
- package/dist/components/shared/pl-icon/types/iconsType.d.ts +1 -1
- package/dist/pl-components-pack-v3.es.js +4229 -4243
- package/dist/pl-components-pack-v3.umd.js +23 -23
- package/dist/style.css +1 -1
- package/package.json +1 -1
@@ -0,0 +1,23 @@
|
|
1
|
+
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
2
|
+
const n = {
|
3
|
+
width: "20",
|
4
|
+
height: "20",
|
5
|
+
viewBox: "0 0 20 20",
|
6
|
+
fill: "none",
|
7
|
+
xmlns: "http://www.w3.org/2000/svg"
|
8
|
+
}, r = /* @__PURE__ */ t("path", {
|
9
|
+
"fill-rule": "evenodd",
|
10
|
+
"clip-rule": "evenodd",
|
11
|
+
d: "M8.33903 5.08303C7.92482 5.08011 7.58668 5.41352 7.58376 5.82772C7.58084 6.24192 7.91425 6.58007 8.32845 6.58299L12.3277 6.61119L5.34467 13.5942C5.05178 13.8871 5.05178 14.362 5.34467 14.6549C5.63756 14.9478 6.11244 14.9478 6.40533 14.6549L13.3883 7.67191L13.4171 11.6717C13.4201 12.0859 13.7583 12.4193 14.1725 12.4163C14.5867 12.4133 14.92 12.0751 14.9171 11.6609L14.8754 5.86845C14.8724 5.45841 14.5407 5.12675 14.1307 5.12386L8.33903 5.08303Z",
|
12
|
+
fill: "currentColor"
|
13
|
+
}, null, -1), l = [
|
14
|
+
r
|
15
|
+
];
|
16
|
+
function c(d, i) {
|
17
|
+
return e(), o("svg", n, [...l]);
|
18
|
+
}
|
19
|
+
const h = { render: c };
|
20
|
+
export {
|
21
|
+
h as default,
|
22
|
+
c as render
|
23
|
+
};
|
@@ -26,7 +26,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
26
26
|
disabled: boolean;
|
27
27
|
placeholder: string;
|
28
28
|
prop: string;
|
29
|
-
leftIcon:
|
29
|
+
leftIcon: import('../../../components').TIcon;
|
30
30
|
round: boolean;
|
31
31
|
inputClass: string;
|
32
32
|
}, {}>;
|
@@ -47,8 +47,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
47
47
|
id: string;
|
48
48
|
placeholder: string;
|
49
49
|
prop: string;
|
50
|
-
leftIcon:
|
51
|
-
rightIcon:
|
50
|
+
leftIcon: import('../../../components').TIcon;
|
51
|
+
rightIcon: import('../../../components').TIcon;
|
52
52
|
clearable: boolean;
|
53
53
|
showWordLimit: boolean;
|
54
54
|
maxlength: number;
|
@@ -1,6 +1,294 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
export type { IPlInputPlusProps } from './types';
|
2
|
+
export declare const PlInputPlus: import('../../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
|
3
|
+
label: {
|
4
|
+
type: import('vue').PropType<string>;
|
5
|
+
default: string;
|
6
|
+
};
|
7
|
+
textarea: {
|
8
|
+
type: import('vue').PropType<boolean>;
|
9
|
+
default: boolean;
|
10
|
+
};
|
11
|
+
disabled: {
|
12
|
+
type: import('vue').PropType<boolean>;
|
13
|
+
default: boolean;
|
14
|
+
};
|
15
|
+
width: {
|
16
|
+
type: import('vue').PropType<string>;
|
17
|
+
default: string;
|
18
|
+
};
|
19
|
+
modelValue: {
|
20
|
+
type: import('vue').PropType<import('./types').TInputModelValue>;
|
21
|
+
required: true;
|
22
|
+
default: string;
|
23
|
+
};
|
24
|
+
placeholder: {
|
25
|
+
type: import('vue').PropType<string>;
|
26
|
+
default: string;
|
27
|
+
};
|
28
|
+
prop: {
|
29
|
+
type: import('vue').PropType<string>;
|
30
|
+
default: string;
|
31
|
+
};
|
32
|
+
helpertext: {
|
33
|
+
type: import('vue').PropType<string>;
|
34
|
+
default: string;
|
35
|
+
};
|
36
|
+
optional: {
|
37
|
+
type: import('vue').PropType<string>;
|
38
|
+
default: string;
|
39
|
+
};
|
40
|
+
tooltip: {
|
41
|
+
type: import('vue').PropType<string>;
|
42
|
+
default: string;
|
43
|
+
};
|
44
|
+
leftIcon: {
|
45
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
46
|
+
default: string;
|
47
|
+
};
|
48
|
+
rightIcon: {
|
49
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
50
|
+
default: string;
|
51
|
+
};
|
52
|
+
clearable: {
|
53
|
+
type: import('vue').PropType<boolean>;
|
54
|
+
default: boolean;
|
55
|
+
};
|
56
|
+
round: {
|
57
|
+
type: import('vue').PropType<boolean>;
|
58
|
+
default: boolean;
|
59
|
+
};
|
60
|
+
containerClass: {
|
61
|
+
type: import('vue').PropType<string>;
|
62
|
+
default: string;
|
63
|
+
};
|
64
|
+
showWordLimit: {
|
65
|
+
type: import('vue').PropType<boolean>;
|
66
|
+
default: boolean;
|
67
|
+
};
|
68
|
+
currency: {
|
69
|
+
type: import('vue').PropType<boolean>;
|
70
|
+
default: boolean;
|
71
|
+
};
|
72
|
+
password: {
|
73
|
+
type: import('vue').PropType<boolean>;
|
74
|
+
default: boolean;
|
75
|
+
};
|
76
|
+
'show-word-limit': {
|
77
|
+
type: import('vue').PropType<boolean>;
|
78
|
+
default: boolean;
|
79
|
+
};
|
80
|
+
maxlength: {
|
81
|
+
type: import('vue').PropType<number>;
|
82
|
+
default: any;
|
83
|
+
};
|
84
|
+
currentPassword: {
|
85
|
+
type: import('vue').PropType<boolean>;
|
86
|
+
default: boolean;
|
87
|
+
};
|
88
|
+
newPassword: {
|
89
|
+
type: import('vue').PropType<boolean>;
|
90
|
+
default: boolean;
|
91
|
+
};
|
92
|
+
iconPointer: {
|
93
|
+
type: import('vue').PropType<boolean>;
|
94
|
+
default: boolean;
|
95
|
+
};
|
96
|
+
customBlur: {
|
97
|
+
type: import('vue').PropType<boolean>;
|
98
|
+
default: boolean;
|
99
|
+
};
|
100
|
+
focusOnReset: {
|
101
|
+
type: import('vue').PropType<boolean>;
|
102
|
+
default: boolean;
|
103
|
+
};
|
104
|
+
disableTrim: {
|
105
|
+
type: import('vue').PropType<boolean>;
|
106
|
+
default: boolean;
|
107
|
+
};
|
108
|
+
inputClass: {
|
109
|
+
type: import('vue').PropType<string>;
|
110
|
+
default: string;
|
111
|
+
};
|
112
|
+
valueRange: {
|
113
|
+
type: import('vue').PropType<import('vue-currency-input').NumberRange>;
|
114
|
+
default: () => {
|
115
|
+
min: number;
|
116
|
+
};
|
117
|
+
};
|
118
|
+
currencyInputOptions: {
|
119
|
+
type: import('vue').PropType<import('vue-currency-input').CurrencyInputOptions>;
|
120
|
+
};
|
121
|
+
formatter: {
|
122
|
+
type: import('vue').PropType<Function>;
|
123
|
+
};
|
124
|
+
}, {
|
125
|
+
blurInput: (mob?: boolean) => void;
|
126
|
+
focusInput: () => void;
|
127
|
+
getId: () => string;
|
128
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
129
|
+
"update:modelValue": (...args: any[]) => void;
|
130
|
+
touchstart: (...args: any[]) => void;
|
131
|
+
blur: (...args: any[]) => void;
|
132
|
+
resetValue: (...args: any[]) => void;
|
133
|
+
"custom-blur": (...args: any[]) => void;
|
134
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
135
|
+
label: {
|
136
|
+
type: import('vue').PropType<string>;
|
137
|
+
default: string;
|
138
|
+
};
|
139
|
+
textarea: {
|
140
|
+
type: import('vue').PropType<boolean>;
|
141
|
+
default: boolean;
|
142
|
+
};
|
143
|
+
disabled: {
|
144
|
+
type: import('vue').PropType<boolean>;
|
145
|
+
default: boolean;
|
146
|
+
};
|
147
|
+
width: {
|
148
|
+
type: import('vue').PropType<string>;
|
149
|
+
default: string;
|
150
|
+
};
|
151
|
+
modelValue: {
|
152
|
+
type: import('vue').PropType<import('./types').TInputModelValue>;
|
153
|
+
required: true;
|
154
|
+
default: string;
|
155
|
+
};
|
156
|
+
placeholder: {
|
157
|
+
type: import('vue').PropType<string>;
|
158
|
+
default: string;
|
159
|
+
};
|
160
|
+
prop: {
|
161
|
+
type: import('vue').PropType<string>;
|
162
|
+
default: string;
|
163
|
+
};
|
164
|
+
helpertext: {
|
165
|
+
type: import('vue').PropType<string>;
|
166
|
+
default: string;
|
167
|
+
};
|
168
|
+
optional: {
|
169
|
+
type: import('vue').PropType<string>;
|
170
|
+
default: string;
|
171
|
+
};
|
172
|
+
tooltip: {
|
173
|
+
type: import('vue').PropType<string>;
|
174
|
+
default: string;
|
175
|
+
};
|
176
|
+
leftIcon: {
|
177
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
178
|
+
default: string;
|
179
|
+
};
|
180
|
+
rightIcon: {
|
181
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
182
|
+
default: string;
|
183
|
+
};
|
184
|
+
clearable: {
|
185
|
+
type: import('vue').PropType<boolean>;
|
186
|
+
default: boolean;
|
187
|
+
};
|
188
|
+
round: {
|
189
|
+
type: import('vue').PropType<boolean>;
|
190
|
+
default: boolean;
|
191
|
+
};
|
192
|
+
containerClass: {
|
193
|
+
type: import('vue').PropType<string>;
|
194
|
+
default: string;
|
195
|
+
};
|
196
|
+
showWordLimit: {
|
197
|
+
type: import('vue').PropType<boolean>;
|
198
|
+
default: boolean;
|
199
|
+
};
|
200
|
+
currency: {
|
201
|
+
type: import('vue').PropType<boolean>;
|
202
|
+
default: boolean;
|
203
|
+
};
|
204
|
+
password: {
|
205
|
+
type: import('vue').PropType<boolean>;
|
206
|
+
default: boolean;
|
207
|
+
};
|
208
|
+
'show-word-limit': {
|
209
|
+
type: import('vue').PropType<boolean>;
|
210
|
+
default: boolean;
|
211
|
+
};
|
212
|
+
maxlength: {
|
213
|
+
type: import('vue').PropType<number>;
|
214
|
+
default: any;
|
215
|
+
};
|
216
|
+
currentPassword: {
|
217
|
+
type: import('vue').PropType<boolean>;
|
218
|
+
default: boolean;
|
219
|
+
};
|
220
|
+
newPassword: {
|
221
|
+
type: import('vue').PropType<boolean>;
|
222
|
+
default: boolean;
|
223
|
+
};
|
224
|
+
iconPointer: {
|
225
|
+
type: import('vue').PropType<boolean>;
|
226
|
+
default: boolean;
|
227
|
+
};
|
228
|
+
customBlur: {
|
229
|
+
type: import('vue').PropType<boolean>;
|
230
|
+
default: boolean;
|
231
|
+
};
|
232
|
+
focusOnReset: {
|
233
|
+
type: import('vue').PropType<boolean>;
|
234
|
+
default: boolean;
|
235
|
+
};
|
236
|
+
disableTrim: {
|
237
|
+
type: import('vue').PropType<boolean>;
|
238
|
+
default: boolean;
|
239
|
+
};
|
240
|
+
inputClass: {
|
241
|
+
type: import('vue').PropType<string>;
|
242
|
+
default: string;
|
243
|
+
};
|
244
|
+
valueRange: {
|
245
|
+
type: import('vue').PropType<import('vue-currency-input').NumberRange>;
|
246
|
+
default: () => {
|
247
|
+
min: number;
|
248
|
+
};
|
249
|
+
};
|
250
|
+
currencyInputOptions: {
|
251
|
+
type: import('vue').PropType<import('vue-currency-input').CurrencyInputOptions>;
|
252
|
+
};
|
253
|
+
formatter: {
|
254
|
+
type: import('vue').PropType<Function>;
|
255
|
+
};
|
256
|
+
}>> & {
|
257
|
+
onBlur?: (...args: any[]) => any;
|
258
|
+
onTouchstart?: (...args: any[]) => any;
|
259
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
260
|
+
onResetValue?: (...args: any[]) => any;
|
261
|
+
"onCustom-blur"?: (...args: any[]) => any;
|
262
|
+
}, {
|
263
|
+
label: string;
|
264
|
+
textarea: boolean;
|
265
|
+
disabled: boolean;
|
266
|
+
width: string;
|
267
|
+
modelValue: import('./types').TInputModelValue;
|
268
|
+
placeholder: string;
|
269
|
+
prop: string;
|
270
|
+
helpertext: string;
|
271
|
+
optional: string;
|
272
|
+
tooltip: string;
|
273
|
+
leftIcon: import('../../components').TIcon;
|
274
|
+
rightIcon: import('../../components').TIcon;
|
275
|
+
clearable: boolean;
|
276
|
+
round: boolean;
|
277
|
+
containerClass: string;
|
278
|
+
showWordLimit: boolean;
|
279
|
+
currency: boolean;
|
280
|
+
password: boolean;
|
281
|
+
'show-word-limit': boolean;
|
282
|
+
maxlength: number;
|
283
|
+
currentPassword: boolean;
|
284
|
+
newPassword: boolean;
|
285
|
+
iconPointer: boolean;
|
286
|
+
customBlur: boolean;
|
287
|
+
focusOnReset: boolean;
|
288
|
+
disableTrim: boolean;
|
289
|
+
inputClass: string;
|
290
|
+
valueRange: {
|
291
|
+
min: number;
|
292
|
+
};
|
293
|
+
}, {}>>;
|
6
294
|
export default PlInputPlus;
|
@@ -27,6 +27,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
27
27
|
focusOnReset: boolean;
|
28
28
|
disableTrim: boolean;
|
29
29
|
inputClass: string;
|
30
|
+
containerClass: string;
|
30
31
|
valueRange: () => {
|
31
32
|
min: number;
|
32
33
|
};
|
@@ -67,6 +68,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
67
68
|
focusOnReset: boolean;
|
68
69
|
disableTrim: boolean;
|
69
70
|
inputClass: string;
|
71
|
+
containerClass: string;
|
70
72
|
valueRange: () => {
|
71
73
|
min: number;
|
72
74
|
};
|
@@ -87,10 +89,11 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
87
89
|
helpertext: string;
|
88
90
|
optional: string;
|
89
91
|
tooltip: string;
|
90
|
-
leftIcon:
|
91
|
-
rightIcon:
|
92
|
+
leftIcon: import('../../components').TIcon;
|
93
|
+
rightIcon: import('../../components').TIcon;
|
92
94
|
clearable: boolean;
|
93
95
|
round: boolean;
|
96
|
+
containerClass: string;
|
94
97
|
showWordLimit: boolean;
|
95
98
|
currency: boolean;
|
96
99
|
password: boolean;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { CurrencyInputOptions, NumberRange } from 'vue-currency-input';
|
2
|
-
import { TIcon } from '../../../pl-icon
|
2
|
+
import { TIcon } from '../../../shared/pl-icon';
|
3
3
|
|
4
4
|
export type TInputModelValue = string | number | null | undefined;
|
5
5
|
export type TMaxlength = number | null | undefined;
|
@@ -9,6 +9,7 @@ interface IBaseInputProps {
|
|
9
9
|
placeholder?: string;
|
10
10
|
disabled?: boolean;
|
11
11
|
inputClass?: string;
|
12
|
+
containerClass?: string;
|
12
13
|
}
|
13
14
|
export interface IPlInputPlusProps extends IBaseInputProps {
|
14
15
|
showWordLimit?: boolean;
|
@@ -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;
|
@@ -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';
|