@point-hub/papp 0.0.92 → 0.0.94

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 +114 -1
  4. package/dist/components/app-preloader.vue.d.ts +3 -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 +11 -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 +140 -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 +7 -5
  19. package/dist/components/base-choosen.vue.d.ts +20 -16
  20. package/dist/components/base-datepicker.vue.d.ts +8 -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 +10 -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 +7 -5
  28. package/dist/components/base-input-number.vue.d.ts +12 -7
  29. package/dist/components/base-input.vue.d.ts +11 -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 +5 -2
  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 +7 -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 +10 -9
  55. package/dist/index.css +1 -1
  56. package/dist/index.js +1418 -1412
  57. package/dist/index.umd.cjs +7 -7
  58. package/dist/pages/websocket.vue.d.ts +1 -1
  59. package/package.json +15 -15
@@ -3,23 +3,7 @@ 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
5
  export type BaseButtonType = 'submit' | 'button' | 'reset';
6
- declare function __VLS_template(): {
7
- slots: {
8
- default?(_: {}): any;
9
- };
10
- refs: {};
11
- attrs: Partial<{}>;
12
- };
13
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import('vue').DefineComponent<{
15
- type?: BaseButtonType;
16
- size?: BaseButtonSizeType;
17
- color?: BaseButtonColorType;
18
- variant?: BaseButtonVariantType;
19
- shape?: BaseButtonShapeType;
20
- isBlock?: boolean;
21
- isLoading?: boolean;
22
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
6
+ type __VLS_Props = {
23
7
  type?: BaseButtonType;
24
8
  size?: BaseButtonSizeType;
25
9
  color?: BaseButtonColorType;
@@ -27,7 +11,17 @@ declare const __VLS_component: import('vue').DefineComponent<{
27
11
  shape?: BaseButtonShapeType;
28
12
  isBlock?: boolean;
29
13
  isLoading?: boolean;
30
- }> & Readonly<{}>, {
14
+ };
15
+ declare function __VLS_template(): {
16
+ attrs: Partial<{}>;
17
+ slots: {
18
+ default?(_: {}): any;
19
+ };
20
+ refs: {};
21
+ rootEl: HTMLButtonElement;
22
+ };
23
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
24
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
31
25
  type: BaseButtonType;
32
26
  size: BaseButtonSizeType;
33
27
  color: BaseButtonColorType;
@@ -35,7 +29,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
35
29
  shape: BaseButtonShapeType;
36
30
  isBlock: boolean;
37
31
  isLoading: boolean;
38
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
32
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
39
33
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
40
34
  export default _default;
41
35
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,5 +1,5 @@
1
1
  export type BaseCardShapeType = 'sharp' | 'rounded';
2
- declare let __VLS_typeProps: {
2
+ type __VLS_Props = {
3
3
  shadow?: boolean;
4
4
  shape?: BaseCardShapeType;
5
5
  };
@@ -7,28 +7,29 @@ type __VLS_PublicProps = {
7
7
  'bgColor'?: string;
8
8
  'titleColor'?: string;
9
9
  'bodyColor'?: string;
10
- } & typeof __VLS_typeProps;
10
+ } & __VLS_Props;
11
11
  declare function __VLS_template(): {
12
+ attrs: Partial<{}>;
12
13
  slots: {
13
14
  header?(_: {}): any;
14
15
  default?(_: {}): any;
15
16
  };
16
17
  refs: {};
17
- attrs: Partial<{}>;
18
+ rootEl: HTMLDivElement;
18
19
  };
19
20
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
21
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
21
- "update:bgColor": (bgColor: string) => any;
22
- "update:titleColor": (titleColor: string) => any;
23
- "update:bodyColor": (bodyColor: string) => any;
22
+ "update:bgColor": (value: string) => any;
23
+ "update:titleColor": (value: string) => any;
24
+ "update:bodyColor": (value: string) => any;
24
25
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
25
- "onUpdate:bgColor"?: ((bgColor: string) => any) | undefined;
26
- "onUpdate:titleColor"?: ((titleColor: string) => any) | undefined;
27
- "onUpdate:bodyColor"?: ((bodyColor: string) => any) | undefined;
26
+ "onUpdate:bgColor"?: ((value: string) => any) | undefined;
27
+ "onUpdate:titleColor"?: ((value: string) => any) | undefined;
28
+ "onUpdate:bodyColor"?: ((value: string) => any) | undefined;
28
29
  }>, {
29
30
  shape: BaseCardShapeType;
30
31
  shadow: boolean;
31
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
32
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
32
33
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
33
34
  export default _default;
34
35
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -13,24 +13,26 @@ 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 const _default: import('vue').DefineComponent<__VLS_PublicProps, {
21
21
  inputRef: import('vue').Ref<any, any>;
22
22
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
23
- "update:errors": (errors: string[]) => any;
23
+ "update:errors": (value: string[]) => any;
24
24
  } & {
25
25
  "update:modelValue": (value: boolean) => any;
26
26
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
27
27
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
28
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
28
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
29
29
  }>, {
30
30
  required: boolean;
31
31
  disabled: boolean;
32
32
  modelValue: boolean;
33
33
  theme: BaseCheckboxThemeType;
34
34
  layout: BaseFormLayoutType;
35
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
35
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
36
+ inputRef: HTMLInputElement;
37
+ }, HTMLDivElement>;
36
38
  export default _default;
@@ -18,7 +18,7 @@ export interface Props {
18
18
  disabled?: boolean;
19
19
  helpers?: string[];
20
20
  }
21
- declare let __VLS_typeProps: Props;
21
+ type __VLS_Props = Props;
22
22
  type __VLS_PublicProps = {
23
23
  modelValue?: any;
24
24
  'isLoading'?: boolean;
@@ -26,8 +26,9 @@ type __VLS_PublicProps = {
26
26
  'search'?: string;
27
27
  'options'?: IOption[];
28
28
  'errors'?: string[];
29
- } & typeof __VLS_typeProps;
29
+ } & __VLS_Props;
30
30
  declare function __VLS_template(): {
31
+ attrs: Partial<{}>;
31
32
  slots: {
32
33
  default?(_: {
33
34
  option: any;
@@ -37,23 +38,23 @@ declare function __VLS_template(): {
37
38
  modalRef: unknown;
38
39
  inputRef: unknown;
39
40
  };
40
- attrs: Partial<{}>;
41
+ rootEl: any;
41
42
  };
42
43
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
43
44
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
44
- "update:modelValue": (modelValue: any) => any;
45
- "update:isLoading": (isLoading: boolean) => any;
46
- "update:errors": (errors: string[]) => any;
47
- "update:selected": (selected: IOption) => any;
48
- "update:search": (search: string) => any;
49
- "update:options": (options: IOption[]) => any;
45
+ "update:modelValue": (value: any) => any;
46
+ "update:isLoading": (value: boolean) => any;
47
+ "update:errors": (value: string[]) => any;
48
+ "update:selected": (value: IOption) => any;
49
+ "update:search": (value: string) => any;
50
+ "update:options": (value: IOption[]) => any;
50
51
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
51
- "onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
52
- "onUpdate:isLoading"?: ((isLoading: boolean) => any) | undefined;
53
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
54
- "onUpdate:selected"?: ((selected: IOption) => any) | undefined;
55
- "onUpdate:search"?: ((search: string) => any) | undefined;
56
- "onUpdate:options"?: ((options: IOption[]) => any) | undefined;
52
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
53
+ "onUpdate:isLoading"?: ((value: boolean) => any) | undefined;
54
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
55
+ "onUpdate:selected"?: ((value: IOption) => any) | undefined;
56
+ "onUpdate:search"?: ((value: string) => any) | undefined;
57
+ "onUpdate:options"?: ((value: IOption[]) => any) | undefined;
57
58
  }>, {
58
59
  required: boolean;
59
60
  disabled: boolean;
@@ -61,7 +62,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
61
62
  layout: BaseFormLayoutType;
62
63
  border: BaseChoosenBorderType;
63
64
  autofocus: boolean;
64
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
65
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
66
+ modalRef: unknown;
67
+ inputRef: unknown;
68
+ }, any>;
65
69
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
66
70
  export default _default;
67
71
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -12,21 +12,21 @@ export interface Props {
12
12
  disabled?: boolean;
13
13
  helpers?: string[];
14
14
  }
15
- declare let __VLS_typeProps: Props;
15
+ type __VLS_Props = Props;
16
16
  type __VLS_PublicProps = {
17
17
  'errors'?: string[];
18
- } & typeof __VLS_typeProps;
18
+ } & __VLS_Props;
19
19
  declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
20
20
  inputRef: import('vue').Ref<any, any>;
21
21
  dateRef: import('vue').Ref<any, any>;
22
22
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
23
- "update:errors": (errors: string[]) => any;
23
+ "update:errors": (value: string[]) => any;
24
24
  } & {
25
25
  "update:modelValue": (value: string) => any;
26
26
  isoValue: (value: string) => any;
27
27
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
28
28
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
29
- "onUpdate:errors"?: ((errors: string[]) => any) | undefined;
29
+ "onUpdate:errors"?: ((value: string[]) => any) | undefined;
30
30
  onIsoValue?: ((value: string) => any) | undefined;
31
31
  }>, {
32
32
  required: boolean;
@@ -34,5 +34,8 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
34
34
  layout: BaseFormLayoutType;
35
35
  border: BaseDatepickerBorderType;
36
36
  autofocus: boolean;
37
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
37
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
38
+ dateRef: HTMLInputElement;
39
+ inputRef: HTMLInputElement;
40
+ }, HTMLDivElement>;
38
41
  export default _default;
@@ -1,9 +1,7 @@
1
1
  export type BaseDividerOrientation = 'horizontal' | 'vertical';
2
- declare const _default: import('vue').DefineComponent<{
2
+ type __VLS_Props = {
3
3
  text?: string;
4
4
  orientation: BaseDividerOrientation;
5
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
6
- text?: string;
7
- orientation: BaseDividerOrientation;
8
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
9
7
  export default _default;
@@ -2,13 +2,14 @@ export interface Props {
2
2
  text?: string;
3
3
  }
4
4
  declare function __VLS_template(): {
5
+ attrs: Partial<{}>;
5
6
  slots: {
6
7
  default?(_: {
7
8
  active: any;
8
9
  }): any;
9
10
  };
10
11
  refs: {};
11
- attrs: Partial<{}>;
12
+ rootEl: any;
12
13
  };
13
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
15
  declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
@@ -4,12 +4,13 @@ export interface Props {
4
4
  text?: string;
5
5
  }
6
6
  declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
7
8
  slots: {
8
9
  trigger?(_: {}): any;
9
10
  default?(_: {}): any;
10
11
  };
11
12
  refs: {};
12
- attrs: Partial<{}>;
13
+ rootEl: any;
13
14
  };
14
15
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
16
  declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
@@ -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,10 @@ 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, {
52
+ inputRef: HTMLInputElement;
53
+ fileRef: HTMLInputElement;
54
+ }, HTMLDivElement>;
51
55
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
52
56
  export default _default;
53
57
  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,26 @@ 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, {
37
+ inputRef: HTMLInputElement;
38
+ }, HTMLDivElement>;
37
39
  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,11 @@ 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, {
62
+ inputRef: HTMLInputElement;
63
+ suffixRef: HTMLDivElement;
64
+ prefixRef: HTMLDivElement;
65
+ }, HTMLDivElement>;
61
66
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
62
67
  export default _default;
63
68
  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,11 @@ 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, {
66
+ inputRef: HTMLInputElement;
67
+ suffixRef: HTMLDivElement;
68
+ prefixRef: HTMLDivElement;
69
+ }, HTMLDivElement>;
65
70
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
66
71
  export default _default;
67
72
  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;