@point-hub/papp 0.0.79 → 0.0.80

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/components/app-footer.vue.d.ts +15 -0
  2. package/dist/components/app-header.vue.d.ts +2 -0
  3. package/dist/components/app-preloader.vue.d.ts +2 -0
  4. package/dist/components/app-sidebar-menu.vue.d.ts +19 -0
  5. package/dist/components/app-sidebar-panel.vue.d.ts +19 -0
  6. package/dist/components/app-sidebar.vue.d.ts +27 -0
  7. package/dist/components/base-accordion-item.vue.d.ts +46 -0
  8. package/dist/components/base-accordion.vue.d.ts +38 -0
  9. package/dist/components/base-alert.vue.d.ts +64 -0
  10. package/dist/components/base-autocomplete.vue.d.ts +122 -0
  11. package/dist/components/base-avatar-group.vue.d.ts +11 -0
  12. package/dist/components/base-avatar.vue.d.ts +61 -0
  13. package/dist/components/base-badge.vue.d.ts +50 -0
  14. package/dist/components/base-breadcrumb.vue.d.ts +48 -0
  15. package/dist/components/base-button.vue.d.ts +73 -0
  16. package/dist/components/base-card.vue.d.ts +40 -0
  17. package/dist/components/base-checkbox.vue.d.ts +59 -0
  18. package/dist/components/base-choosen.vue.d.ts +143 -0
  19. package/dist/components/base-datepicker.vue.d.ts +107 -0
  20. package/dist/components/base-divider.vue.d.ts +18 -0
  21. package/dist/components/base-dropdown-item.vue.d.ts +39 -0
  22. package/dist/components/base-dropdown.vue.d.ts +43 -0
  23. package/dist/components/base-file-upload.vue.d.ts +74 -0
  24. package/dist/components/base-form.vue.d.ts +49 -0
  25. package/dist/components/base-icon.vue.d.ts +31 -0
  26. package/dist/components/base-input-mask.vue.d.ts +60 -0
  27. package/dist/components/base-input-number.vue.d.ts +77 -0
  28. package/dist/components/base-input.vue.d.ts +79 -0
  29. package/dist/components/base-link.vue.d.ts +64 -0
  30. package/dist/components/base-loader.vue.d.ts +43 -0
  31. package/dist/components/base-mask.vue.d.ts +16 -0
  32. package/dist/components/base-modal.vue.d.ts +47 -0
  33. package/dist/components/base-pagination.vue.d.ts +35 -0
  34. package/dist/components/base-popover.vue.d.ts +41 -0
  35. package/dist/components/base-progress.vue.d.ts +52 -0
  36. package/dist/components/base-radio.vue.d.ts +66 -0
  37. package/dist/components/base-range.vue.d.ts +47 -0
  38. package/dist/components/base-select.vue.d.ts +61 -0
  39. package/dist/components/base-sitemap.vue.d.ts +36 -0
  40. package/dist/components/base-spinner.vue.d.ts +36 -0
  41. package/dist/components/base-step.vue.d.ts +45 -0
  42. package/dist/components/base-switch.vue.d.ts +68 -0
  43. package/dist/components/base-tab-group.vue.d.ts +11 -0
  44. package/dist/components/base-tab-list.vue.d.ts +11 -0
  45. package/dist/components/base-tab-panel.vue.d.ts +11 -0
  46. package/dist/components/base-tab-panels.vue.d.ts +11 -0
  47. package/dist/components/base-tab.vue.d.ts +13 -0
  48. package/dist/components/base-table.vue.d.ts +11 -0
  49. package/dist/components/base-textarea.vue.d.ts +62 -0
  50. package/dist/components/base-timeline-content.vue.d.ts +12 -0
  51. package/dist/components/base-timeline.vue.d.ts +11 -0
  52. package/dist/components/base-toast.vue.d.ts +23 -0
  53. package/dist/components/base-tooltip.vue.d.ts +43 -0
  54. package/dist/components/base-treeview.vue.d.ts +46 -0
  55. package/dist/index.d.ts +69 -0
  56. package/dist/index.js +1 -1
  57. package/dist/style.css +1 -1
  58. package/package.json +3 -3
  59. package/dist/index.umd.cjs +0 -98
@@ -0,0 +1,77 @@
1
+ import { type BaseFormLayoutType } from './base-form.vue';
2
+ export type BaseInputNumberBorderType = 'none' | 'simple' | 'full';
3
+ export interface Props {
4
+ modelValue: number | null;
5
+ id?: string;
6
+ label?: string;
7
+ align?: 'left' | 'right';
8
+ description?: string;
9
+ placeholder?: string;
10
+ border?: BaseInputNumberBorderType;
11
+ layout?: BaseFormLayoutType;
12
+ decimalLength: number;
13
+ autofocus?: boolean;
14
+ required?: boolean;
15
+ disabled?: boolean;
16
+ helpers?: string[];
17
+ errors?: string[];
18
+ }
19
+ declare function __VLS_template(): {
20
+ suffix?(_: {}): any;
21
+ prefix?(_: {}): any;
22
+ };
23
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
24
+ decimalLength: number;
25
+ align: string;
26
+ border: string;
27
+ layout: string;
28
+ autofocus: boolean;
29
+ required: boolean;
30
+ disabled: boolean;
31
+ }>>, {
32
+ inputRef: import("vue").Ref<any, any>;
33
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
34
+ "update:modelValue": (value: number) => void;
35
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
36
+ decimalLength: number;
37
+ align: string;
38
+ border: string;
39
+ layout: string;
40
+ autofocus: boolean;
41
+ required: boolean;
42
+ disabled: boolean;
43
+ }>>> & Readonly<{
44
+ "onUpdate:modelValue"?: (value: number) => any;
45
+ }>, {
46
+ required: boolean;
47
+ disabled: boolean;
48
+ layout: BaseFormLayoutType;
49
+ border: BaseInputNumberBorderType;
50
+ autofocus: boolean;
51
+ align: "left" | "right";
52
+ decimalLength: number;
53
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
54
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
55
+ export default _default;
56
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
57
+ type __VLS_TypePropsToRuntimeProps<T> = {
58
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
59
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
60
+ } : {
61
+ type: import('vue').PropType<T[K]>;
62
+ required: true;
63
+ };
64
+ };
65
+ type __VLS_WithDefaults<P, D> = {
66
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
67
+ default: D[K];
68
+ }> : P[K];
69
+ };
70
+ type __VLS_Prettify<T> = {
71
+ [K in keyof T]: T[K];
72
+ } & {};
73
+ type __VLS_WithTemplateSlots<T, S> = T & {
74
+ new (): {
75
+ $slots: S;
76
+ };
77
+ };
@@ -0,0 +1,79 @@
1
+ import { type BaseFormLayoutType } from './base-form.vue';
2
+ export type BaseInputType = 'text' | 'tel' | 'email' | 'password' | 'date' | 'number';
3
+ export type BaseInputBorderType = 'none' | 'simple' | 'full';
4
+ export interface Props {
5
+ modelValue: string;
6
+ id?: string;
7
+ label?: string;
8
+ description?: string;
9
+ placeholder?: string;
10
+ type?: BaseInputType;
11
+ border?: BaseInputBorderType;
12
+ layout?: BaseFormLayoutType;
13
+ maxlength?: number;
14
+ autofocus?: boolean;
15
+ required?: boolean;
16
+ readonly?: boolean;
17
+ disabled?: boolean;
18
+ helpers?: string[];
19
+ errors?: string[];
20
+ }
21
+ declare function __VLS_template(): {
22
+ suffix?(_: {}): any;
23
+ prefix?(_: {}): any;
24
+ };
25
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
26
+ border: string;
27
+ layout: string;
28
+ type: string;
29
+ autofocus: boolean;
30
+ required: boolean;
31
+ readonly: boolean;
32
+ disabled: boolean;
33
+ }>>, {
34
+ inputRef: import("vue").Ref<any, any>;
35
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
36
+ "update:modelValue": (value: string) => void;
37
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
38
+ border: string;
39
+ layout: string;
40
+ type: string;
41
+ autofocus: boolean;
42
+ required: boolean;
43
+ readonly: boolean;
44
+ disabled: boolean;
45
+ }>>> & Readonly<{
46
+ "onUpdate:modelValue"?: (value: string) => any;
47
+ }>, {
48
+ type: BaseInputType;
49
+ required: boolean;
50
+ disabled: boolean;
51
+ layout: BaseFormLayoutType;
52
+ border: BaseInputBorderType;
53
+ autofocus: boolean;
54
+ readonly: boolean;
55
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
56
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
57
+ export default _default;
58
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
59
+ type __VLS_TypePropsToRuntimeProps<T> = {
60
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
61
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
62
+ } : {
63
+ type: import('vue').PropType<T[K]>;
64
+ required: true;
65
+ };
66
+ };
67
+ type __VLS_WithDefaults<P, D> = {
68
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
69
+ default: D[K];
70
+ }> : P[K];
71
+ };
72
+ type __VLS_Prettify<T> = {
73
+ [K in keyof T]: T[K];
74
+ } & {};
75
+ type __VLS_WithTemplateSlots<T, S> = T & {
76
+ new (): {
77
+ $slots: S;
78
+ };
79
+ };
@@ -0,0 +1,64 @@
1
+ export type BaseButtonColorType = 'none' | 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
2
+ export type BaseButtonVariantType = 'filled' | 'light' | 'outlined' | 'text';
3
+ export type BaseButtonShapeType = 'sharp' | 'rounded' | 'pill';
4
+ export type BaseButtonSizeType = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
5
+ declare function __VLS_template(): {
6
+ default?(_: {}): any;
7
+ };
8
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
+ href: string;
10
+ size?: BaseButtonSizeType;
11
+ color?: BaseButtonColorType;
12
+ variant?: BaseButtonVariantType;
13
+ shape?: BaseButtonShapeType;
14
+ isBlock?: boolean;
15
+ }>, {
16
+ size: string;
17
+ color: string;
18
+ shape: string;
19
+ variant: string;
20
+ isBlock: boolean;
21
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
22
+ href: string;
23
+ size?: BaseButtonSizeType;
24
+ color?: BaseButtonColorType;
25
+ variant?: BaseButtonVariantType;
26
+ shape?: BaseButtonShapeType;
27
+ isBlock?: boolean;
28
+ }>, {
29
+ size: string;
30
+ color: string;
31
+ shape: string;
32
+ variant: string;
33
+ isBlock: boolean;
34
+ }>>> & Readonly<{}>, {
35
+ size: BaseButtonSizeType;
36
+ color: BaseButtonColorType;
37
+ variant: BaseButtonVariantType;
38
+ shape: BaseButtonShapeType;
39
+ isBlock: boolean;
40
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
41
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
42
+ export default _default;
43
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
44
+ 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
+ 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
+ type __VLS_Prettify<T> = {
58
+ [K in keyof T]: T[K];
59
+ } & {};
60
+ type __VLS_WithTemplateSlots<T, S> = T & {
61
+ new (): {
62
+ $slots: S;
63
+ };
64
+ };
@@ -0,0 +1,43 @@
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
5
+ type?: "classic";
6
+ sample?: string;
7
+ }>, {
8
+ type: string;
9
+ sample: string;
10
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
11
+ type?: "classic";
12
+ sample?: string;
13
+ }>, {
14
+ type: string;
15
+ sample: string;
16
+ }>>> & Readonly<{}>, {
17
+ type: "classic";
18
+ sample: string;
19
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
21
+ export default _default;
22
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
23
+ type __VLS_TypePropsToRuntimeProps<T> = {
24
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
25
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
26
+ } : {
27
+ type: import('vue').PropType<T[K]>;
28
+ required: true;
29
+ };
30
+ };
31
+ type __VLS_WithDefaults<P, D> = {
32
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
33
+ default: D[K];
34
+ }> : P[K];
35
+ };
36
+ type __VLS_Prettify<T> = {
37
+ [K in keyof T]: T[K];
38
+ } & {};
39
+ type __VLS_WithTemplateSlots<T, S> = T & {
40
+ new (): {
41
+ $slots: S;
42
+ };
43
+ };
@@ -0,0 +1,16 @@
1
+ export type BaseMaskShapeType = 'squircle' | 'diamond' | 'reuleaux-triangle' | 'hexagon' | 'hexagon-2' | 'heart' | 'octagon' | 'star' | 'star-2';
2
+ interface Props {
3
+ shape: BaseMaskShapeType;
4
+ src: string;
5
+ }
6
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
7
+ export default _default;
8
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
9
+ type __VLS_TypePropsToRuntimeProps<T> = {
10
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
11
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
12
+ } : {
13
+ type: import('vue').PropType<T[K]>;
14
+ required: true;
15
+ };
16
+ };
@@ -0,0 +1,47 @@
1
+ export type BaseModalSizeType = 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full' | 'maximize';
2
+ declare function __VLS_template(): {
3
+ default?(_: {}): any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
6
+ isOpen: boolean;
7
+ size?: BaseModalSizeType;
8
+ }>, {
9
+ size: string;
10
+ }>>, {
11
+ isOpen: import("vue").Ref<boolean, boolean>;
12
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ onClose: (...args: any[]) => void;
14
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
15
+ isOpen: boolean;
16
+ size?: BaseModalSizeType;
17
+ }>, {
18
+ size: string;
19
+ }>>> & Readonly<{
20
+ onOnClose?: (...args: any[]) => any;
21
+ }>, {
22
+ size: BaseModalSizeType;
23
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
24
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
25
+ export default _default;
26
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
27
+ type __VLS_TypePropsToRuntimeProps<T> = {
28
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
29
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
30
+ } : {
31
+ type: import('vue').PropType<T[K]>;
32
+ required: true;
33
+ };
34
+ };
35
+ type __VLS_WithDefaults<P, D> = {
36
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
37
+ default: D[K];
38
+ }> : P[K];
39
+ };
40
+ type __VLS_Prettify<T> = {
41
+ [K in keyof T]: T[K];
42
+ } & {};
43
+ type __VLS_WithTemplateSlots<T, S> = T & {
44
+ new (): {
45
+ $slots: S;
46
+ };
47
+ };
@@ -0,0 +1,35 @@
1
+ export interface Props {
2
+ modelValue: number;
3
+ pageSize: number;
4
+ totalDocument: number;
5
+ maxButton: number;
6
+ }
7
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
8
+ maxButton: number;
9
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ "update:modelValue": (value: number) => void;
11
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
12
+ maxButton: number;
13
+ }>>> & Readonly<{
14
+ "onUpdate:modelValue"?: (value: number) => any;
15
+ }>, {
16
+ maxButton: number;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default _default;
19
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
20
+ type __VLS_TypePropsToRuntimeProps<T> = {
21
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
22
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
23
+ } : {
24
+ type: import('vue').PropType<T[K]>;
25
+ required: true;
26
+ };
27
+ };
28
+ type __VLS_WithDefaults<P, D> = {
29
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
30
+ default: D[K];
31
+ }> : P[K];
32
+ };
33
+ type __VLS_Prettify<T> = {
34
+ [K in keyof T]: T[K];
35
+ } & {};
@@ -0,0 +1,41 @@
1
+ export type BasePopoverPlacementType = 'auto' | 'auto-start' | 'auto-end' | 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'right' | 'right-start' | 'right-end' | 'left' | 'left-start' | 'left-end';
2
+ export interface Props {
3
+ placement?: BasePopoverPlacementType;
4
+ }
5
+ declare function __VLS_template(): {
6
+ default?(_: {}): any;
7
+ content?(_: any): any;
8
+ };
9
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
10
+ placement: string;
11
+ }>>, {
12
+ toggle: (val: boolean) => void;
13
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
14
+ placement: string;
15
+ }>>> & Readonly<{}>, {
16
+ placement: BasePopoverPlacementType;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
19
+ export default _default;
20
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
21
+ type __VLS_TypePropsToRuntimeProps<T> = {
22
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
23
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
24
+ } : {
25
+ type: import('vue').PropType<T[K]>;
26
+ required: true;
27
+ };
28
+ };
29
+ type __VLS_WithDefaults<P, D> = {
30
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
31
+ default: D[K];
32
+ }> : P[K];
33
+ };
34
+ type __VLS_Prettify<T> = {
35
+ [K in keyof T]: T[K];
36
+ } & {};
37
+ type __VLS_WithTemplateSlots<T, S> = T & {
38
+ new (): {
39
+ $slots: S;
40
+ };
41
+ };
@@ -0,0 +1,52 @@
1
+ export type BaseProgressColorType = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
2
+ export type BaseProgressSizeType = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
3
+ export interface Props {
4
+ modelValue: number;
5
+ color?: BaseProgressColorType;
6
+ size?: BaseProgressSizeType;
7
+ isIndeterminate?: boolean;
8
+ }
9
+ declare function __VLS_template(): {
10
+ default?(_: {}): any;
11
+ };
12
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
13
+ color: string;
14
+ size: string;
15
+ isIndeterminate: boolean;
16
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
+ "update:modelValue": (value: number) => void;
18
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
19
+ color: string;
20
+ size: string;
21
+ isIndeterminate: boolean;
22
+ }>>> & Readonly<{
23
+ "onUpdate:modelValue"?: (value: number) => any;
24
+ }>, {
25
+ size: BaseProgressSizeType;
26
+ color: BaseProgressColorType;
27
+ isIndeterminate: boolean;
28
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
29
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
30
+ export default _default;
31
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
32
+ type __VLS_TypePropsToRuntimeProps<T> = {
33
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
34
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
35
+ } : {
36
+ type: import('vue').PropType<T[K]>;
37
+ required: true;
38
+ };
39
+ };
40
+ type __VLS_WithDefaults<P, D> = {
41
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
42
+ default: D[K];
43
+ }> : P[K];
44
+ };
45
+ type __VLS_Prettify<T> = {
46
+ [K in keyof T]: T[K];
47
+ } & {};
48
+ type __VLS_WithTemplateSlots<T, S> = T & {
49
+ new (): {
50
+ $slots: S;
51
+ };
52
+ };
@@ -0,0 +1,66 @@
1
+ import { type BaseFormLayoutType } from './base-form.vue';
2
+ export type BaseRadioOptionsLayout = 'vertical' | 'horizontal';
3
+ export interface Props {
4
+ modelValue: Record<string, any> | null | undefined | string | number | boolean;
5
+ id?: string;
6
+ label?: string;
7
+ description?: string;
8
+ layout?: BaseFormLayoutType;
9
+ optionsLayout?: BaseRadioOptionsLayout;
10
+ required?: boolean;
11
+ disabled?: boolean;
12
+ helpers?: string[];
13
+ errors?: string[];
14
+ options: Record<string, any>[];
15
+ }
16
+ declare function __VLS_template(): {
17
+ default?(_: {
18
+ active: any;
19
+ checked: any;
20
+ option: Record<string, any>;
21
+ }): any;
22
+ };
23
+ declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
24
+ layout: string;
25
+ optionsLayout: string;
26
+ required: boolean;
27
+ disabled: boolean;
28
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
29
+ "update:modelValue": (value: string | number | boolean | Record<string, any>) => void;
30
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
31
+ layout: string;
32
+ optionsLayout: string;
33
+ required: boolean;
34
+ disabled: boolean;
35
+ }>>> & Readonly<{
36
+ "onUpdate:modelValue"?: (value: string | number | boolean | Record<string, any>) => any;
37
+ }>, {
38
+ required: boolean;
39
+ disabled: boolean;
40
+ layout: BaseFormLayoutType;
41
+ optionsLayout: BaseRadioOptionsLayout;
42
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
44
+ export default _default;
45
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
46
+ type __VLS_TypePropsToRuntimeProps<T> = {
47
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
48
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
49
+ } : {
50
+ type: import('vue').PropType<T[K]>;
51
+ required: true;
52
+ };
53
+ };
54
+ type __VLS_WithDefaults<P, D> = {
55
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
56
+ default: D[K];
57
+ }> : P[K];
58
+ };
59
+ type __VLS_Prettify<T> = {
60
+ [K in keyof T]: T[K];
61
+ } & {};
62
+ type __VLS_WithTemplateSlots<T, S> = T & {
63
+ new (): {
64
+ $slots: S;
65
+ };
66
+ };
@@ -0,0 +1,47 @@
1
+ import { type BaseFormLayoutType } from './base-form.vue';
2
+ export interface Props {
3
+ modelValue: number;
4
+ id?: string;
5
+ label?: string;
6
+ description?: string;
7
+ layout?: BaseFormLayoutType;
8
+ disabled?: boolean;
9
+ showText?: boolean;
10
+ helpers?: string[];
11
+ errors?: string[];
12
+ }
13
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
14
+ layout: string;
15
+ disabled: boolean;
16
+ showText: boolean;
17
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ "update:modelValue": (value: number) => void;
19
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
20
+ layout: string;
21
+ disabled: boolean;
22
+ showText: boolean;
23
+ }>>> & Readonly<{
24
+ "onUpdate:modelValue"?: (value: number) => any;
25
+ }>, {
26
+ disabled: boolean;
27
+ layout: BaseFormLayoutType;
28
+ showText: boolean;
29
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
30
+ export default _default;
31
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
32
+ type __VLS_TypePropsToRuntimeProps<T> = {
33
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
34
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
35
+ } : {
36
+ type: import('vue').PropType<T[K]>;
37
+ required: true;
38
+ };
39
+ };
40
+ type __VLS_WithDefaults<P, D> = {
41
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
42
+ default: D[K];
43
+ }> : P[K];
44
+ };
45
+ type __VLS_Prettify<T> = {
46
+ [K in keyof T]: T[K];
47
+ } & {};
@@ -0,0 +1,61 @@
1
+ import { type BaseFormLayoutType } from './base-form.vue';
2
+ export interface BaseSelectOptionInterface {
3
+ label: string;
4
+ [key: string]: any;
5
+ }
6
+ export type BaseSelectBorderType = 'none' | 'simple' | 'full';
7
+ export interface Props {
8
+ modelValue: BaseSelectOptionInterface | null;
9
+ options: BaseSelectOptionInterface[];
10
+ id?: string;
11
+ label?: string;
12
+ description?: string;
13
+ placeholder?: string;
14
+ border?: BaseSelectBorderType;
15
+ layout?: BaseFormLayoutType;
16
+ required?: boolean;
17
+ disabled?: boolean;
18
+ helpers?: string[];
19
+ errors?: string[];
20
+ }
21
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
22
+ border: string;
23
+ layout: string;
24
+ placeholder: string;
25
+ required: boolean;
26
+ disabled: boolean;
27
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
28
+ "update:modelValue": (value: BaseSelectOptionInterface) => void;
29
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
30
+ border: string;
31
+ layout: string;
32
+ placeholder: string;
33
+ required: boolean;
34
+ disabled: boolean;
35
+ }>>> & Readonly<{
36
+ "onUpdate:modelValue"?: (value: BaseSelectOptionInterface) => any;
37
+ }>, {
38
+ required: boolean;
39
+ disabled: boolean;
40
+ layout: BaseFormLayoutType;
41
+ placeholder: string;
42
+ border: BaseSelectBorderType;
43
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
44
+ export default _default;
45
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
46
+ type __VLS_TypePropsToRuntimeProps<T> = {
47
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
48
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
49
+ } : {
50
+ type: import('vue').PropType<T[K]>;
51
+ required: true;
52
+ };
53
+ };
54
+ type __VLS_WithDefaults<P, D> = {
55
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
56
+ default: D[K];
57
+ }> : P[K];
58
+ };
59
+ type __VLS_Prettify<T> = {
60
+ [K in keyof T]: T[K];
61
+ } & {};
@@ -0,0 +1,36 @@
1
+ export interface ISitemap {
2
+ title: string;
3
+ subtitle: string;
4
+ homepage: {
5
+ link?: string;
6
+ name: string;
7
+ desc?: string;
8
+ };
9
+ menu: {
10
+ link?: string;
11
+ name: string;
12
+ desc?: string;
13
+ child?: {
14
+ link?: string;
15
+ name: string;
16
+ desc?: string;
17
+ child?: {
18
+ link?: string;
19
+ name?: string;
20
+ desc?: string;
21
+ }[];
22
+ }[];
23
+ }[];
24
+ }
25
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
26
+ sitemap: {
27
+ required: true;
28
+ type: import("vue").PropType<ISitemap>;
29
+ };
30
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
31
+ sitemap: {
32
+ required: true;
33
+ type: import("vue").PropType<ISitemap>;
34
+ };
35
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
36
+ export default _default;