@point-hub/papp 0.0.91 → 0.0.93

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.
Files changed (59) hide show
  1. package/dist/app.vue.d.ts +1 -1
  2. package/dist/components/app-footer.vue.d.ts +3 -4
  3. package/dist/components/app-header.vue.d.ts +1 -1
  4. package/dist/components/app-preloader.vue.d.ts +1 -1
  5. package/dist/components/app-sidebar-menu.vue.d.ts +3 -6
  6. package/dist/components/app-sidebar-panel.vue.d.ts +5 -6
  7. package/dist/components/app-sidebar.vue.d.ts +4 -9
  8. package/dist/components/base-accordion-item.vue.d.ts +9 -11
  9. package/dist/components/base-accordion.vue.d.ts +7 -7
  10. package/dist/components/base-alert.vue.d.ts +11 -16
  11. package/dist/components/base-autocomplete.vue.d.ts +11 -11
  12. package/dist/components/base-avatar-group.vue.d.ts +3 -2
  13. package/dist/components/base-avatar.vue.d.ts +4 -12
  14. package/dist/components/base-badge.vue.d.ts +9 -11
  15. package/dist/components/base-breadcrumb.vue.d.ts +8 -9
  16. package/dist/components/base-button.vue.d.ts +13 -19
  17. package/dist/components/base-card.vue.d.ts +11 -10
  18. package/dist/components/base-checkbox.vue.d.ts +5 -5
  19. package/dist/components/base-choosen.vue.d.ts +16 -15
  20. package/dist/components/base-datepicker.vue.d.ts +5 -5
  21. package/dist/components/base-divider.vue.d.ts +3 -5
  22. package/dist/components/base-dropdown-item.vue.d.ts +2 -1
  23. package/dist/components/base-dropdown.vue.d.ts +2 -1
  24. package/dist/components/base-file-upload.vue.d.ts +7 -6
  25. package/dist/components/base-form.vue.d.ts +3 -2
  26. package/dist/components/base-icon.vue.d.ts +4 -6
  27. package/dist/components/base-input-mask.vue.d.ts +5 -5
  28. package/dist/components/base-input-number.vue.d.ts +8 -7
  29. package/dist/components/base-input.vue.d.ts +7 -6
  30. package/dist/components/base-link.vue.d.ts +12 -17
  31. package/dist/components/base-loader.vue.d.ts +8 -9
  32. package/dist/components/base-mask.vue.d.ts +1 -1
  33. package/dist/components/base-modal.vue.d.ts +8 -9
  34. package/dist/components/base-popover.vue.d.ts +2 -1
  35. package/dist/components/base-progress.vue.d.ts +3 -2
  36. package/dist/components/base-radio.vue.d.ts +7 -6
  37. package/dist/components/base-range.vue.d.ts +5 -5
  38. package/dist/components/base-select.vue.d.ts +5 -5
  39. package/dist/components/base-sitemap.vue.d.ts +3 -3
  40. package/dist/components/base-spinner.vue.d.ts +4 -6
  41. package/dist/components/base-step.vue.d.ts +1 -1
  42. package/dist/components/base-switch.vue.d.ts +7 -6
  43. package/dist/components/base-tab-group.vue.d.ts +2 -1
  44. package/dist/components/base-tab-list.vue.d.ts +2 -1
  45. package/dist/components/base-tab-panel.vue.d.ts +2 -1
  46. package/dist/components/base-tab-panels.vue.d.ts +2 -1
  47. package/dist/components/base-tab.vue.d.ts +2 -1
  48. package/dist/components/base-table.vue.d.ts +3 -2
  49. package/dist/components/base-textarea.vue.d.ts +5 -5
  50. package/dist/components/base-timeline-content.vue.d.ts +3 -2
  51. package/dist/components/base-timeline.vue.d.ts +3 -2
  52. package/dist/components/base-toast.vue.d.ts +2 -1
  53. package/dist/components/base-tooltip.vue.d.ts +2 -1
  54. package/dist/components/base-treeview.vue.d.ts +8 -9
  55. package/dist/index.css +1 -1
  56. package/dist/index.js +8 -5
  57. package/dist/index.umd.cjs +2 -2
  58. package/dist/pages/websocket.vue.d.ts +1 -1
  59. package/package.json +9 -9
@@ -13,11 +13,12 @@ export interface Props {
13
13
  disabled?: boolean;
14
14
  helpers?: string[];
15
15
  }
16
- declare let __VLS_typeProps: Props;
16
+ type __VLS_Props = Props;
17
17
  type __VLS_PublicProps = {
18
18
  'errors'?: string[];
19
- } & typeof __VLS_typeProps;
19
+ } & __VLS_Props;
20
20
  declare function __VLS_template(): {
21
+ attrs: Partial<{}>;
21
22
  slots: {
22
23
  default?(_: {
23
24
  fileRef: any;
@@ -27,18 +28,18 @@ declare function __VLS_template(): {
27
28
  inputRef: HTMLInputElement;
28
29
  fileRef: HTMLInputElement;
29
30
  };
30
- attrs: Partial<{}>;
31
+ rootEl: HTMLDivElement;
31
32
  };
32
33
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
33
34
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {
34
35
  fileRef: import('vue').Ref<any, any>;
35
36
  inputRef: import('vue').Ref<any, any>;
36
37
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
37
- "update:errors": (errors: string[]) => any;
38
+ "update:errors": (value: string[]) => any;
38
39
  } & {
39
40
  change: (event: any) => any;
40
41
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
41
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
42
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
42
43
  onChange?: ((event: any) => any) | undefined;
43
44
  }>, {
44
45
  required: boolean;
@@ -47,7 +48,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
47
48
  border: BaseFileUploadBorderType;
48
49
  autofocus: boolean;
49
50
  multiple: boolean;
50
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
51
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
51
52
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
52
53
  export default _default;
53
54
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -9,19 +9,20 @@ export interface Props {
9
9
  errors?: string[];
10
10
  }
11
11
  declare function __VLS_template(): {
12
+ attrs: Partial<{}>;
12
13
  slots: {
13
14
  default?(_: {}): any;
14
15
  helper?(_: {}): any;
15
16
  error?(_: {}): any;
16
17
  };
17
18
  refs: {};
18
- attrs: Partial<{}>;
19
+ rootEl: HTMLDivElement;
19
20
  };
20
21
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
22
  declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
22
23
  required: boolean;
23
24
  layout: BaseFormLayoutType;
24
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
25
26
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
26
27
  export default _default;
27
28
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,10 +1,8 @@
1
- declare const _default: import('vue').DefineComponent<{
1
+ type __VLS_Props = {
2
2
  icon: string;
3
3
  fixedWidth?: boolean;
4
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
5
- icon: string;
6
- fixedWidth?: boolean;
7
- }> & Readonly<{}>, {
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
8
6
  fixedWidth: boolean;
9
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
10
8
  export default _default;
@@ -14,24 +14,24 @@ export interface Props {
14
14
  helpers?: string[];
15
15
  options?: any;
16
16
  }
17
- declare let __VLS_typeProps: Props;
17
+ type __VLS_Props = Props;
18
18
  type __VLS_PublicProps = {
19
19
  'errors'?: string[];
20
- } & typeof __VLS_typeProps;
20
+ } & __VLS_Props;
21
21
  declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
22
22
  inputRef: import('vue').Ref<any, any>;
23
23
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
24
- "update:errors": (errors: string[]) => any;
24
+ "update:errors": (value: string[]) => any;
25
25
  } & {
26
26
  "update:modelValue": (value: string | number | boolean | null) => any;
27
27
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
28
28
  "onUpdate:modelValue"?: ((value: string | number | boolean | null) => any) | undefined;
29
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
29
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
30
30
  }>, {
31
31
  required: boolean;
32
32
  disabled: boolean;
33
33
  layout: BaseFormLayoutType;
34
34
  border: BaseInputMaskBorderType;
35
35
  autofocus: boolean;
36
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
36
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
37
37
  export default _default;
@@ -20,12 +20,13 @@ export interface Props {
20
20
  resetErrorsOnUpdate?: boolean;
21
21
  helpers?: string[];
22
22
  }
23
- declare let __VLS_typeProps: Props;
23
+ type __VLS_Props = Props;
24
24
  type __VLS_PublicProps = {
25
25
  modelValue?: string | number;
26
26
  'errors'?: string[];
27
- } & typeof __VLS_typeProps;
27
+ } & __VLS_Props;
28
28
  declare function __VLS_template(): {
29
+ attrs: Partial<{}>;
29
30
  slots: {
30
31
  suffix?(_: {}): any;
31
32
  prefix?(_: {}): any;
@@ -35,19 +36,19 @@ declare function __VLS_template(): {
35
36
  suffixRef: HTMLDivElement;
36
37
  prefixRef: HTMLDivElement;
37
38
  };
38
- attrs: Partial<{}>;
39
+ rootEl: HTMLDivElement;
39
40
  };
40
41
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
41
42
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {
42
43
  inputRef: import('vue').Ref<any, any>;
43
44
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
44
- "update:modelValue": (modelValue: string | number) => any;
45
- "update:errors": (errors: string[]) => any;
45
+ "update:modelValue": (value: string | number) => any;
46
+ "update:errors": (value: string[]) => any;
46
47
  } & {
47
48
  "update:modelValue": (value: number) => any;
48
49
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
49
50
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
50
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
51
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
51
52
  }>, {
52
53
  required: boolean;
53
54
  disabled: boolean;
@@ -57,7 +58,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
57
58
  resetErrorsOnUpdate: boolean;
58
59
  align: "left" | "right";
59
60
  decimalLength: number;
60
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
61
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
61
62
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
62
63
  export default _default;
63
64
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -26,11 +26,12 @@ export interface Props {
26
26
  */
27
27
  helpers?: string[];
28
28
  }
29
- declare let __VLS_typeProps: Props;
29
+ type __VLS_Props = Props;
30
30
  type __VLS_PublicProps = {
31
31
  'errors'?: string[];
32
- } & typeof __VLS_typeProps;
32
+ } & __VLS_Props;
33
33
  declare function __VLS_template(): {
34
+ attrs: Partial<{}>;
34
35
  slots: {
35
36
  suffix?(_: {}): any;
36
37
  prefix?(_: {}): any;
@@ -40,18 +41,18 @@ declare function __VLS_template(): {
40
41
  suffixRef: HTMLDivElement;
41
42
  prefixRef: HTMLDivElement;
42
43
  };
43
- attrs: Partial<{}>;
44
+ rootEl: HTMLDivElement;
44
45
  };
45
46
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
46
47
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {
47
48
  inputRef: import('vue').Ref<any, any>;
48
49
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
49
- "update:errors": (errors: string[]) => any;
50
+ "update:errors": (value: string[]) => any;
50
51
  } & {
51
52
  "update:modelValue": (value: string) => any;
52
53
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
53
54
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
54
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
55
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
55
56
  }>, {
56
57
  type: BaseInputType;
57
58
  required: boolean;
@@ -61,7 +62,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
61
62
  autofocus: boolean;
62
63
  readonly: boolean;
63
64
  resetErrorsOnUpdate: boolean;
64
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
65
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
65
66
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
66
67
  export default _default;
67
68
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -2,35 +2,30 @@ export type BaseButtonColorType = 'none' | 'primary' | 'secondary' | 'info' | 's
2
2
  export type BaseButtonVariantType = 'filled' | 'light' | 'outlined' | 'text';
3
3
  export type BaseButtonShapeType = 'sharp' | 'rounded' | 'pill';
4
4
  export type BaseButtonSizeType = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
5
+ type __VLS_Props = {
6
+ href: string;
7
+ size?: BaseButtonSizeType;
8
+ color?: BaseButtonColorType;
9
+ variant?: BaseButtonVariantType;
10
+ shape?: BaseButtonShapeType;
11
+ isBlock?: boolean;
12
+ };
5
13
  declare function __VLS_template(): {
14
+ attrs: Partial<{}>;
6
15
  slots: {
7
16
  default?(_: {}): any;
8
17
  };
9
18
  refs: {};
10
- attrs: Partial<{}>;
19
+ rootEl: HTMLAnchorElement;
11
20
  };
12
21
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
- declare const __VLS_component: import('vue').DefineComponent<{
14
- href: string;
15
- size?: BaseButtonSizeType;
16
- color?: BaseButtonColorType;
17
- variant?: BaseButtonVariantType;
18
- shape?: BaseButtonShapeType;
19
- isBlock?: boolean;
20
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
21
- href: string;
22
- size?: BaseButtonSizeType;
23
- color?: BaseButtonColorType;
24
- variant?: BaseButtonVariantType;
25
- shape?: BaseButtonShapeType;
26
- isBlock?: boolean;
27
- }> & Readonly<{}>, {
22
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
28
23
  size: BaseButtonSizeType;
29
24
  color: BaseButtonColorType;
30
25
  variant: BaseButtonVariantType;
31
26
  shape: BaseButtonShapeType;
32
27
  isBlock: boolean;
33
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
28
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLAnchorElement>;
34
29
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
35
30
  export default _default;
36
31
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,21 +1,20 @@
1
+ type __VLS_Props = {
2
+ type?: 'classic';
3
+ sample?: string;
4
+ };
1
5
  declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
2
7
  slots: {
3
8
  default?(_: {}): any;
4
9
  };
5
10
  refs: {};
6
- attrs: Partial<{}>;
11
+ rootEl: HTMLDivElement;
7
12
  };
8
13
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
- declare const __VLS_component: import('vue').DefineComponent<{
10
- type?: "classic";
11
- sample?: string;
12
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
13
- type?: "classic";
14
- sample?: string;
15
- }> & Readonly<{}>, {
14
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
16
15
  type: "classic";
17
16
  sample: string;
18
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
19
18
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
20
19
  export default _default;
21
20
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -3,5 +3,5 @@ interface Props {
3
3
  shape: BaseMaskShapeType;
4
4
  src: string;
5
5
  }
6
- declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLImageElement>;
7
7
  export default _default;
@@ -1,23 +1,22 @@
1
1
  export type BaseModalSizeType = 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full' | 'maximize';
2
+ type __VLS_Props = {
3
+ isOpen: boolean;
4
+ size?: BaseModalSizeType;
5
+ };
2
6
  declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
3
8
  slots: {
4
9
  default?(_: {}): any;
5
10
  };
6
11
  refs: {};
7
- attrs: Partial<{}>;
12
+ rootEl: any;
8
13
  };
9
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
- declare const __VLS_component: import('vue').DefineComponent<{
11
- isOpen: boolean;
12
- size?: BaseModalSizeType;
13
- }, {
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
14
16
  isOpen: import('vue').Ref<boolean, boolean>;
15
17
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
18
  onClose: (...args: any[]) => void;
17
- }, string, import('vue').PublicProps, Readonly<{
18
- isOpen: boolean;
19
- size?: BaseModalSizeType;
20
- }> & Readonly<{
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
21
20
  onOnClose?: ((...args: any[]) => any) | undefined;
22
21
  }>, {
23
22
  size: BaseModalSizeType;
@@ -3,6 +3,7 @@ export interface Props {
3
3
  placement?: BasePopoverPlacementType;
4
4
  }
5
5
  declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
6
7
  slots: {
7
8
  default?(_: {}): any;
8
9
  content?(_: any): any;
@@ -10,7 +11,7 @@ declare function __VLS_template(): {
10
11
  refs: {
11
12
  ignoreOutsideRef: HTMLButtonElement;
12
13
  };
13
- attrs: Partial<{}>;
14
+ rootEl: any;
14
15
  };
15
16
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
17
  declare const __VLS_component: import('vue').DefineComponent<Props, {
@@ -7,11 +7,12 @@ export interface Props {
7
7
  isIndeterminate?: boolean;
8
8
  }
9
9
  declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
10
11
  slots: {
11
12
  default?(_: {}): any;
12
13
  };
13
14
  refs: {};
14
- attrs: Partial<{}>;
15
+ rootEl: HTMLDivElement;
15
16
  };
16
17
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
18
  declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
@@ -22,7 +23,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
22
23
  size: BaseProgressSizeType;
23
24
  color: BaseProgressColorType;
24
25
  isIndeterminate: boolean;
25
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
26
27
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
28
  export default _default;
28
29
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -13,11 +13,12 @@ export interface Props {
13
13
  errors?: string[];
14
14
  options: Record<string, any>[];
15
15
  }
16
- declare let __VLS_typeProps: Props;
16
+ type __VLS_Props = Props;
17
17
  type __VLS_PublicProps = {
18
18
  'errors'?: string[];
19
- } & typeof __VLS_typeProps;
19
+ } & __VLS_Props;
20
20
  declare function __VLS_template(): {
21
+ attrs: Partial<{}>;
21
22
  slots: {
22
23
  default?(_: {
23
24
  active: any;
@@ -26,22 +27,22 @@ declare function __VLS_template(): {
26
27
  }): any;
27
28
  };
28
29
  refs: {};
29
- attrs: Partial<{}>;
30
+ rootEl: HTMLDivElement;
30
31
  };
31
32
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
32
33
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
33
- "update:errors": (errors: string[]) => any;
34
+ "update:errors": (value: string[]) => any;
34
35
  } & {
35
36
  "update:modelValue": (value: string | number | boolean | Record<string, any> | null | undefined) => any;
36
37
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
37
38
  "onUpdate:modelValue"?: ((value: string | number | boolean | Record<string, any> | null | undefined) => any) | undefined;
38
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
39
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
39
40
  }>, {
40
41
  required: boolean;
41
42
  disabled: boolean;
42
43
  layout: BaseFormLayoutType;
43
44
  optionsLayout: BaseRadioOptionsLayout;
44
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
45
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
45
46
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
46
47
  export default _default;
47
48
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -9,20 +9,20 @@ export interface Props {
9
9
  showText?: boolean;
10
10
  helpers?: string[];
11
11
  }
12
- declare let __VLS_typeProps: Props;
12
+ type __VLS_Props = Props;
13
13
  type __VLS_PublicProps = {
14
14
  'errors'?: string[];
15
- } & typeof __VLS_typeProps;
15
+ } & __VLS_Props;
16
16
  declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
- "update:errors": (errors: string[]) => any;
17
+ "update:errors": (value: string[]) => any;
18
18
  } & {
19
19
  "update:modelValue": (value: number) => any;
20
20
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
21
21
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
22
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
22
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
23
23
  }>, {
24
24
  disabled: boolean;
25
25
  layout: BaseFormLayoutType;
26
26
  showText: boolean;
27
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
27
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
28
28
  export default _default;
@@ -17,22 +17,22 @@ export interface Props {
17
17
  disabled?: boolean;
18
18
  helpers?: string[];
19
19
  }
20
- declare let __VLS_typeProps: Props;
20
+ type __VLS_Props = Props;
21
21
  type __VLS_PublicProps = {
22
22
  'errors'?: string[];
23
- } & typeof __VLS_typeProps;
23
+ } & __VLS_Props;
24
24
  declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25
- "update:errors": (errors: string[]) => any;
25
+ "update:errors": (value: string[]) => any;
26
26
  } & {
27
27
  "update:modelValue": (value: BaseSelectOptionInterface | null) => any;
28
28
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
29
29
  "onUpdate:modelValue"?: ((value: BaseSelectOptionInterface | null) => any) | undefined;
30
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
30
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
31
31
  }>, {
32
32
  required: boolean;
33
33
  disabled: boolean;
34
34
  layout: BaseFormLayoutType;
35
35
  placeholder: string;
36
36
  border: BaseSelectBorderType;
37
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
37
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
38
38
  export default _default;
@@ -26,8 +26,8 @@ type __VLS_PublicProps = {
26
26
  'sitemap': ISitemap;
27
27
  };
28
28
  declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
29
- "update:sitemap": (sitemap: ISitemap) => any;
29
+ "update:sitemap": (value: ISitemap) => any;
30
30
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
31
- "onUpdate:sitemap"?: ((sitemap: ISitemap) => any) | undefined;
32
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
31
+ "onUpdate:sitemap"?: ((value: ISitemap) => any) | undefined;
32
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
33
33
  export default _default;
@@ -1,13 +1,11 @@
1
1
  export type BaseSpinnerColorType = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger' | 'black' | 'white';
2
2
  export type BaseSpinnerSizeType = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
3
- declare const _default: import('vue').DefineComponent<{
3
+ type __VLS_Props = {
4
4
  size?: BaseSpinnerSizeType;
5
5
  color?: BaseSpinnerColorType;
6
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
7
- size?: BaseSpinnerSizeType;
8
- color?: BaseSpinnerColorType;
9
- }> & Readonly<{}>, {
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
10
8
  size: BaseSpinnerSizeType;
11
9
  color: BaseSpinnerColorType;
12
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
13
11
  export default _default;
@@ -16,5 +16,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
16
16
  onChoosen?: ((item: BaseStepItemInterface) => any) | undefined;
17
17
  }>, {
18
18
  showLabel: boolean;
19
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
20
20
  export default _default;
@@ -15,32 +15,33 @@ export interface Props {
15
15
  disabled?: boolean;
16
16
  helpers?: string[];
17
17
  }
18
- declare let __VLS_typeProps: Props;
18
+ type __VLS_Props = Props;
19
19
  type __VLS_PublicProps = {
20
20
  'errors'?: string[];
21
- } & typeof __VLS_typeProps;
21
+ } & __VLS_Props;
22
22
  declare function __VLS_template(): {
23
+ attrs: Partial<{}>;
23
24
  slots: {
24
25
  label?(_: {}): any;
25
26
  };
26
27
  refs: {};
27
- attrs: Partial<{}>;
28
+ rootEl: HTMLDivElement;
28
29
  };
29
30
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
30
31
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
31
- "update:errors": (errors: string[]) => any;
32
+ "update:errors": (value: string[]) => any;
32
33
  } & {
33
34
  "update:modelValue": (value: boolean) => any;
34
35
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
35
36
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
36
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
37
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
37
38
  }>, {
38
39
  size: BaseSwitchSize;
39
40
  required: boolean;
40
41
  disabled: boolean;
41
42
  layout: BaseFormLayoutType;
42
43
  textPosition: BaseSwitchTextPosition;
43
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
44
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
44
45
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
45
46
  export default _default;
46
47
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,9 +1,10 @@
1
1
  declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
2
3
  slots: {
3
4
  default?(_: {}): any;
4
5
  };
5
6
  refs: {};
6
- attrs: Partial<{}>;
7
+ rootEl: any;
7
8
  };
8
9
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
10
  declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -1,9 +1,10 @@
1
1
  declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
2
3
  slots: {
3
4
  default?(_: {}): any;
4
5
  };
5
6
  refs: {};
6
- attrs: Partial<{}>;
7
+ rootEl: any;
7
8
  };
8
9
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
10
  declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -1,9 +1,10 @@
1
1
  declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
2
3
  slots: {
3
4
  default?(_: {}): any;
4
5
  };
5
6
  refs: {};
6
- attrs: Partial<{}>;
7
+ rootEl: any;
7
8
  };
8
9
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
10
  declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -1,9 +1,10 @@
1
1
  declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
2
3
  slots: {
3
4
  default?(_: {}): any;
4
5
  };
5
6
  refs: {};
6
- attrs: Partial<{}>;
7
+ rootEl: any;
7
8
  };
8
9
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
10
  declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -1,11 +1,12 @@
1
1
  declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
2
3
  slots: {
3
4
  default?(_: {
4
5
  selected: any;
5
6
  }): any;
6
7
  };
7
8
  refs: {};
8
- attrs: Partial<{}>;
9
+ rootEl: any;
9
10
  };
10
11
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
12
  declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -1,12 +1,13 @@
1
1
  declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
2
3
  slots: {
3
4
  default?(_: {}): any;
4
5
  };
5
6
  refs: {};
6
- attrs: Partial<{}>;
7
+ rootEl: HTMLDivElement;
7
8
  };
8
9
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
- declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
10
11
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
11
12
  export default _default;
12
13
  type __VLS_WithTemplateSlots<T, S> = T & {