@factoringplus/pl-components-pack-v3 1.0.0 → 1.0.1-pre-01

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 CHANGED
@@ -1,17 +1,17 @@
1
- # Библиотека компонентов Vue 3
2
-
3
- ## Установка
4
-
5
- ```bash
6
- npm i @factoringplus/pl-components-pack-v3
7
- ```
8
-
9
- ### Добавление компонентов в проект
10
-
11
- ```bash
12
- // src/main.js
13
- import components from '@factoringplus/pl-components-pack-v3';
14
- import '@factoringplus/pl-components-pack-v3/dist/style.css';
15
-
16
- app.use(components)
17
- ```
1
+ # Библиотека компонентов Vue 3
2
+
3
+ ## Установка
4
+
5
+ ```bash
6
+ npm i @factoringplus/pl-components-pack-v3
7
+ ```
8
+
9
+ ### Добавление компонентов в проект
10
+
11
+ ```bash
12
+ // src/main.js
13
+ import components from '@factoringplus/pl-components-pack-v3';
14
+ import '@factoringplus/pl-components-pack-v3/dist/style.css';
15
+
16
+ app.use(components)
17
+ ```
@@ -1,5 +1,7 @@
1
1
  import type { App } from 'vue';
2
+ import type { TButtonProps } from './types';
2
3
  declare const PlButton: {
3
4
  install(app: App): void;
4
5
  };
5
6
  export default PlButton;
7
+ export type { TButtonProps };
@@ -0,0 +1,64 @@
1
+ import type { TButtonProps } from './types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TButtonProps>, {
3
+ /**
4
+ * Выставляет ширину кнопки в 100%
5
+ */
6
+ fullWidth: boolean;
7
+ disabled: boolean;
8
+ type: string;
9
+ size: string;
10
+ icon: string;
11
+ iconColor: string;
12
+ iconPosition: string;
13
+ nativeType: string;
14
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ click: (...args: any[]) => void;
16
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TButtonProps>, {
17
+ /**
18
+ * Выставляет ширину кнопки в 100%
19
+ */
20
+ fullWidth: boolean;
21
+ disabled: boolean;
22
+ type: string;
23
+ size: string;
24
+ icon: string;
25
+ iconColor: string;
26
+ iconPosition: string;
27
+ nativeType: string;
28
+ }>>> & {
29
+ onClick?: ((...args: any[]) => any) | undefined;
30
+ }, {
31
+ type: "primary" | "secondary" | "alternative" | "error" | "empty";
32
+ icon: import("../pl-icon").TIcon;
33
+ fullWidth: boolean;
34
+ disabled: boolean;
35
+ size: "small" | "large" | "medium";
36
+ iconColor: string;
37
+ iconPosition: "left" | "right";
38
+ nativeType: "button" | "submit" | "reset";
39
+ }, {}>, {
40
+ default?(_: {}): any;
41
+ }>;
42
+ export default _default;
43
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
44
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
45
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
46
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
47
+ } : {
48
+ type: import('vue').PropType<T[K]>;
49
+ required: true;
50
+ };
51
+ };
52
+ declare type __VLS_WithDefaults<P, D> = {
53
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
54
+ default: D[K];
55
+ }> : P[K];
56
+ };
57
+ declare type __VLS_Prettify<T> = {
58
+ [K in keyof T]: T[K];
59
+ } & {};
60
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
61
+ new (): {
62
+ $slots: S;
63
+ };
64
+ };
@@ -0,0 +1,21 @@
1
+ import type { TIcon } from '../../pl-icon/types';
2
+ /**
3
+ * @param fullWidth boolean;
4
+ * @param disabled boolean;
5
+ * @param type 'primary' | 'secondary' | 'alternative' | 'error' | 'empty';
6
+ * @param size 'large' | 'medium' | 'small';
7
+ * @param icon IIcon;
8
+ * @param iconColor string;
9
+ * @param iconPosition 'left' | 'right';
10
+ * @param nativeType 'button'| 'submit'| 'reset' | undefined
11
+ */
12
+ export declare type TButtonProps = {
13
+ fullWidth?: boolean;
14
+ disabled?: boolean;
15
+ type?: 'primary' | 'secondary' | 'alternative' | 'error' | 'empty';
16
+ size?: 'large' | 'medium' | 'small';
17
+ icon?: TIcon;
18
+ iconColor?: string;
19
+ iconPosition?: 'left' | 'right';
20
+ nativeType?: 'button' | 'submit' | 'reset';
21
+ };
@@ -53,6 +53,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
53
53
  onChangeValue?: ((...args: any[]) => any) | undefined;
54
54
  }, {
55
55
  label: string;
56
+ disabled: boolean;
56
57
  helpertext: string;
57
58
  noSymbols: boolean;
58
59
  symbolsCountSearch: number;
@@ -61,7 +62,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
61
62
  uniqKey: string;
62
63
  defaultDropText: string;
63
64
  noData: string;
64
- disabled: boolean;
65
65
  leftIcon: string;
66
66
  rightIcon: string;
67
67
  width: string;
@@ -57,9 +57,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
57
57
  }, {
58
58
  label: string;
59
59
  disabled: boolean;
60
+ size: string;
60
61
  description: string;
61
62
  modelValue: boolean;
62
- size: string;
63
63
  isIndeterminate: boolean;
64
64
  }, {}>, {
65
65
  default?(_: {}): any;
@@ -58,8 +58,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
58
58
  onChangeOpen?: ((...args: any[]) => any) | undefined;
59
59
  }, {
60
60
  label: string;
61
- helpertext: string;
62
61
  disabled: boolean;
62
+ helpertext: string;
63
63
  width: string;
64
64
  modelValue: string | null;
65
65
  prop: string;
@@ -65,8 +65,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
65
65
  onChangeOpen?: ((...args: any[]) => any) | undefined;
66
66
  }, {
67
67
  label: string;
68
- helpertext: string;
69
68
  disabled: boolean;
69
+ helpertext: string;
70
70
  width: string;
71
71
  modelValue: string[] | null;
72
72
  prop: string;
@@ -353,7 +353,234 @@ export declare const PlDialogStory: () => {
353
353
  default?(_: {}): any;
354
354
  };
355
355
  });
356
- PlButton: import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
356
+ PlButton: {
357
+ new (...args: any[]): {
358
+ $: import("vue").ComponentInternalInstance;
359
+ $data: {};
360
+ $props: {
361
+ type?: "primary" | "secondary" | "alternative" | "error" | "empty" | undefined;
362
+ icon?: import("../pl-icon").TIcon | undefined;
363
+ fullWidth?: boolean | undefined;
364
+ disabled?: boolean | undefined;
365
+ size?: "small" | "large" | "medium" | undefined;
366
+ iconColor?: string | undefined;
367
+ iconPosition?: "left" | "right" | undefined;
368
+ nativeType?: "button" | "submit" | "reset" | undefined;
369
+ key?: string | number | symbol | undefined;
370
+ ref?: import("vue").VNodeRef | undefined;
371
+ style?: unknown;
372
+ onClick?: ((...args: any[]) => any) | undefined;
373
+ class?: unknown;
374
+ ref_for?: boolean | undefined;
375
+ ref_key?: string | undefined;
376
+ onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
377
+ [key: string]: any;
378
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
379
+ [key: string]: any;
380
+ }>) => void)[] | undefined;
381
+ onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
382
+ [key: string]: any;
383
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
384
+ [key: string]: any;
385
+ }>) => void)[] | undefined;
386
+ onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
387
+ [key: string]: any;
388
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
389
+ [key: string]: any;
390
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
391
+ [key: string]: any;
392
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
393
+ [key: string]: any;
394
+ }>) => void)[] | undefined;
395
+ onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
396
+ [key: string]: any;
397
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
398
+ [key: string]: any;
399
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
400
+ [key: string]: any;
401
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
402
+ [key: string]: any;
403
+ }>) => void)[] | undefined;
404
+ onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
405
+ [key: string]: any;
406
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
407
+ [key: string]: any;
408
+ }>) => void)[] | undefined;
409
+ onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
410
+ [key: string]: any;
411
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
412
+ [key: string]: any;
413
+ }>) => void)[] | undefined;
414
+ };
415
+ $attrs: {
416
+ [x: string]: unknown;
417
+ };
418
+ $refs: {
419
+ [x: string]: unknown;
420
+ };
421
+ $slots: Readonly<{
422
+ [name: string]: import("vue").Slot<any> | undefined;
423
+ }>;
424
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
425
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
426
+ $emit: (event: "click", ...args: any[]) => void;
427
+ $el: any;
428
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
429
+ type: {
430
+ type: import("vue").PropType<"primary" | "secondary" | "alternative" | "error" | "empty">;
431
+ default: string;
432
+ };
433
+ icon: {
434
+ type: import("vue").PropType<import("../pl-icon").TIcon>;
435
+ default: string;
436
+ };
437
+ fullWidth: {
438
+ type: import("vue").PropType<boolean>;
439
+ default: boolean;
440
+ };
441
+ disabled: {
442
+ type: import("vue").PropType<boolean>;
443
+ default: boolean;
444
+ };
445
+ size: {
446
+ type: import("vue").PropType<"small" | "large" | "medium">;
447
+ default: string;
448
+ };
449
+ iconColor: {
450
+ type: import("vue").PropType<string>;
451
+ default: string;
452
+ };
453
+ iconPosition: {
454
+ type: import("vue").PropType<"left" | "right">;
455
+ default: string;
456
+ };
457
+ nativeType: {
458
+ type: import("vue").PropType<"button" | "submit" | "reset">;
459
+ default: string;
460
+ };
461
+ }>> & {
462
+ onClick?: ((...args: any[]) => any) | undefined;
463
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
464
+ click: (...args: any[]) => void;
465
+ }, string, {
466
+ type: "primary" | "secondary" | "alternative" | "error" | "empty";
467
+ icon: import("../pl-icon").TIcon;
468
+ fullWidth: boolean;
469
+ disabled: boolean;
470
+ size: "small" | "large" | "medium";
471
+ iconColor: string;
472
+ iconPosition: "left" | "right";
473
+ nativeType: "button" | "submit" | "reset";
474
+ }, {}, string, {}> & {
475
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
476
+ created?: ((() => void) | (() => void)[]) | undefined;
477
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
478
+ mounted?: ((() => void) | (() => void)[]) | undefined;
479
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
480
+ updated?: ((() => void) | (() => void)[]) | undefined;
481
+ activated?: ((() => void) | (() => void)[]) | undefined;
482
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
483
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
484
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
485
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
486
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
487
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
488
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
489
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
490
+ };
491
+ $forceUpdate: () => void;
492
+ $nextTick: typeof import("vue").nextTick;
493
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
494
+ } & Readonly<import("vue").ExtractPropTypes<{
495
+ type: {
496
+ type: import("vue").PropType<"primary" | "secondary" | "alternative" | "error" | "empty">;
497
+ default: string;
498
+ };
499
+ icon: {
500
+ type: import("vue").PropType<import("../pl-icon").TIcon>;
501
+ default: string;
502
+ };
503
+ fullWidth: {
504
+ type: import("vue").PropType<boolean>;
505
+ default: boolean;
506
+ };
507
+ disabled: {
508
+ type: import("vue").PropType<boolean>;
509
+ default: boolean;
510
+ };
511
+ size: {
512
+ type: import("vue").PropType<"small" | "large" | "medium">;
513
+ default: string;
514
+ };
515
+ iconColor: {
516
+ type: import("vue").PropType<string>;
517
+ default: string;
518
+ };
519
+ iconPosition: {
520
+ type: import("vue").PropType<"left" | "right">;
521
+ default: string;
522
+ };
523
+ nativeType: {
524
+ type: import("vue").PropType<"button" | "submit" | "reset">;
525
+ default: string;
526
+ };
527
+ }>> & {
528
+ onClick?: ((...args: any[]) => any) | undefined;
529
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
530
+ __isFragment?: undefined;
531
+ __isTeleport?: undefined;
532
+ __isSuspense?: undefined;
533
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
534
+ type: {
535
+ type: import("vue").PropType<"primary" | "secondary" | "alternative" | "error" | "empty">;
536
+ default: string;
537
+ };
538
+ icon: {
539
+ type: import("vue").PropType<import("../pl-icon").TIcon>;
540
+ default: string;
541
+ };
542
+ fullWidth: {
543
+ type: import("vue").PropType<boolean>;
544
+ default: boolean;
545
+ };
546
+ disabled: {
547
+ type: import("vue").PropType<boolean>;
548
+ default: boolean;
549
+ };
550
+ size: {
551
+ type: import("vue").PropType<"small" | "large" | "medium">;
552
+ default: string;
553
+ };
554
+ iconColor: {
555
+ type: import("vue").PropType<string>;
556
+ default: string;
557
+ };
558
+ iconPosition: {
559
+ type: import("vue").PropType<"left" | "right">;
560
+ default: string;
561
+ };
562
+ nativeType: {
563
+ type: import("vue").PropType<"button" | "submit" | "reset">;
564
+ default: string;
565
+ };
566
+ }>> & {
567
+ onClick?: ((...args: any[]) => any) | undefined;
568
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
569
+ click: (...args: any[]) => void;
570
+ }, string, {
571
+ type: "primary" | "secondary" | "alternative" | "error" | "empty";
572
+ icon: import("../pl-icon").TIcon;
573
+ fullWidth: boolean;
574
+ disabled: boolean;
575
+ size: "small" | "large" | "medium";
576
+ iconColor: string;
577
+ iconPosition: "left" | "right";
578
+ nativeType: "button" | "submit" | "reset";
579
+ }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
580
+ $slots: {
581
+ default?(_: {}): any;
582
+ };
583
+ });
357
584
  };
358
585
  setup(): {
359
586
  modelValue: import("vue").Ref<boolean>;
@@ -1,5 +1,7 @@
1
1
  import type { App } from 'vue';
2
+ import type { TIconProps, TIcon } from './types';
2
3
  declare const PlIcon: {
3
4
  install(app: App): void;
4
5
  };
5
6
  export default PlIcon;
7
+ export type { TIconProps, TIcon };
@@ -1,14 +1,12 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- name: {
3
- type: StringConstructor;
4
- required: true;
5
- };
6
- color: StringConstructor;
7
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
8
- name: {
9
- type: StringConstructor;
1
+ import type { TIconProps } from './types';
2
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<TIconProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<TIconProps>>>, {}, {}>;
3
+ export default _default;
4
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
5
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
6
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
7
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
8
+ } : {
9
+ type: import('vue').PropType<T[K]>;
10
10
  required: true;
11
11
  };
12
- color: StringConstructor;
13
- }>>, {}, {}>;
14
- export default _default;
12
+ };
@@ -0,0 +1,5 @@
1
+ export declare type TIconProps = {
2
+ name: TIcon;
3
+ color?: string | '';
4
+ };
5
+ export declare type TIcon = '' | 'User20' | 'Group20' | 'Edit20' | 'BlankPan20' | 'Support20' | 'HandKey20' | 'Lock20' | 'Connection20' | 'Picture20' | 'Ruble20' | 'Document20' | 'Clip20' | 'Bell20' | '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' | 'Share20' | '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' | 'Bell24' | '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' | 'Share24' | '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';
@@ -0,0 +1,2 @@
1
+ import type { TIcon, TIconProps } from './iconsType';
2
+ export { TIcon, TIconProps };
@@ -106,8 +106,8 @@ declare const _default: import("vue").DefineComponent<{
106
106
  };
107
107
  }>>, {
108
108
  label: string;
109
- disableMarkerBottom: boolean;
110
109
  disabled: boolean;
110
+ disableMarkerBottom: boolean;
111
111
  leftIcon: string;
112
112
  leftIconColor: string;
113
113
  rightIcon: string;
@@ -62,8 +62,8 @@ declare const _default: import("vue").DefineComponent<{
62
62
  }, {
63
63
  label: string;
64
64
  disabled: boolean;
65
+ size: string;
65
66
  description: string;
66
67
  modelValue: boolean;
67
- size: string;
68
68
  }, {}>;
69
69
  export default _default;
@@ -41,8 +41,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
41
41
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
42
42
  }, {
43
43
  label: string;
44
- helpertext: string;
45
44
  disabled: boolean;
45
+ helpertext: string;
46
46
  leftIcon: string;
47
47
  rightIcon: string;
48
48
  width: string;
@@ -13,7 +13,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
13
13
  delay: boolean;
14
14
  truncated: boolean;
15
15
  }>>>, {
16
- placement: "top" | "left" | "bottom" | "right" | "top-right" | "top-left" | "right-top" | "right-bottom" | "bottom-left" | "bottom-right" | "left-bottom" | "left-top";
16
+ placement: "left" | "right" | "top" | "bottom" | "top-right" | "top-left" | "right-top" | "right-bottom" | "bottom-left" | "bottom-right" | "left-bottom" | "left-top";
17
17
  delay: boolean;
18
18
  truncated: boolean;
19
19
  }, {}>, {