@enos5/enos-vue 1.0.8 → 1.0.9

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 (47) hide show
  1. package/README.md +23 -10
  2. package/dist/components/ActionCard.vue.d.ts +33 -0
  3. package/dist/components/ActionMessage.vue.d.ts +16 -0
  4. package/dist/components/ActionSection.vue.d.ts +14 -0
  5. package/dist/components/ApplicationLogo.vue.d.ts +3 -0
  6. package/dist/components/AuthenticationCard.vue.d.ts +15 -0
  7. package/dist/components/Badge.vue.d.ts +59 -0
  8. package/dist/components/Banner.vue.d.ts +3 -0
  9. package/dist/components/Button.vue.d.ts +40 -0
  10. package/dist/components/Card.vue.d.ts +95 -0
  11. package/dist/components/CardTabs.vue.d.ts +32 -0
  12. package/dist/components/Checkbox.vue.d.ts +28 -0
  13. package/dist/components/CheckboxInput.vue.d.ts +55 -0
  14. package/dist/components/CheckboxMultipleInput.vue.d.ts +37 -0
  15. package/dist/components/ConfirmationModal.vue.d.ts +59 -0
  16. package/dist/components/CustomSelect.vue.d.ts +190 -0
  17. package/dist/components/DateInput.vue.d.ts +48 -0
  18. package/dist/components/DialogModal.vue.d.ts +48 -0
  19. package/dist/components/Divider.vue.d.ts +10 -0
  20. package/dist/components/Dropdown.vue.d.ts +44 -0
  21. package/dist/components/DropdownLink.vue.d.ts +20 -0
  22. package/dist/components/FormSection.vue.d.ts +20 -0
  23. package/dist/components/ImageInput.vue.d.ts +55 -0
  24. package/dist/components/InputError.vue.d.ts +7 -0
  25. package/dist/components/InputGroup.vue.d.ts +282 -0
  26. package/dist/components/InputLabel.vue.d.ts +14 -0
  27. package/dist/components/LinkButton.vue.d.ts +68 -0
  28. package/dist/components/Modal.vue.d.ts +55 -0
  29. package/dist/components/NavLink.vue.d.ts +18 -0
  30. package/dist/components/NotationInput.vue.d.ts +37 -0
  31. package/dist/components/RadioInput.vue.d.ts +55 -0
  32. package/dist/components/RadioMultipleInput.vue.d.ts +46 -0
  33. package/dist/components/ResponsiveNavLink.vue.d.ts +24 -0
  34. package/dist/components/SectionBorder.vue.d.ts +3 -0
  35. package/dist/components/SectionTitle.vue.d.ts +17 -0
  36. package/dist/components/SelectInput.vue.d.ts +190 -0
  37. package/dist/components/SortControls.vue.d.ts +67 -0
  38. package/dist/components/TableList.vue.d.ts +126 -0
  39. package/dist/components/TableListForm.vue.d.ts +258 -0
  40. package/dist/components/TextArea.vue.d.ts +41 -0
  41. package/dist/components/TextInput.vue.d.ts +41 -0
  42. package/dist/components/ThSortable.vue.d.ts +39 -0
  43. package/dist/index.d.ts +42 -0
  44. package/dist/index.js +2628 -1749
  45. package/dist/index.js.map +1 -0
  46. package/dist/plugin.d.ts +5 -0
  47. package/package.json +10 -4
package/README.md CHANGED
@@ -81,14 +81,26 @@ import { PrimaryButton, TextInput } from '@enos5/enos-vue'
81
81
 
82
82
  ## Publish To npm
83
83
 
84
- Before publishing:
84
+ Before publishing, build the package and verify the tarball:
85
85
 
86
- 1. Update the version in `package.json`.
87
- 2. Reinstall dependencies if needed with `npm install`.
88
- 3. Build the package with `npm run build`.
89
- 4. Make sure you are logged in to npm with `npm login`.
86
+ ```bash
87
+ npm run build
88
+ npm pack --dry-run
89
+ ```
90
+
91
+ `npm run build` generates the release artifacts in `dist/`:
92
+
93
+ - `dist/index.js` for runtime imports
94
+ - `dist/index.js.map` for debugging
95
+ - `dist/index.d.ts` for TypeScript consumers
96
+
97
+ Then bump the version in `package.json`, commit the change, and make sure you are logged in to npm:
98
+
99
+ ```bash
100
+ npm login
101
+ ```
90
102
 
91
- Publish:
103
+ Publish the package:
92
104
 
93
105
  ```bash
94
106
  npm publish
@@ -105,9 +117,10 @@ npm publish --access public
105
117
  For each release:
106
118
 
107
119
  1. Update the version number in `package.json`.
108
- 2. Commit and push the version change.
109
- 3. Build the package with `npm run build`.
110
- 4. Publish the new version to npm.
111
- 5. Create a matching release in Gitea for the same version tag.
120
+ 2. Commit the version change.
121
+ 3. Run `npm run build`.
122
+ 4. Run `npm pack --dry-run` if you want to inspect the publish contents.
123
+ 5. Run `npm publish`.
124
+ 6. Create a matching release in Gitea for the same version tag.
112
125
 
113
126
  Keeping the npm package version and the Gitea release aligned avoids release drift.
@@ -0,0 +1,33 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
4
+ type __VLS_WithSlots<T, S> = T & (new () => {
5
+ $slots: S;
6
+ });
7
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ title: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
12
+ actionsClass: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
17
+ title: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ actionsClass: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ }>> & Readonly<{}>, {
26
+ title: string;
27
+ actionsClass: string;
28
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
29
+ type __VLS_Slots = {
30
+ default?: ((props: {}) => any) | undefined;
31
+ } & {
32
+ danger?: ((props: {}) => any) | undefined;
33
+ };
@@ -0,0 +1,16 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
4
+ type __VLS_WithSlots<T, S> = T & (new () => {
5
+ $slots: S;
6
+ });
7
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ on: BooleanConstructor;
9
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
10
+ on: BooleanConstructor;
11
+ }>> & Readonly<{}>, {
12
+ on: boolean;
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
14
+ type __VLS_Slots = {
15
+ default?: ((props: {}) => any) | undefined;
16
+ };
@@ -0,0 +1,14 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
4
+ type __VLS_WithSlots<T, S> = T & (new () => {
5
+ $slots: S;
6
+ });
7
+ declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ type __VLS_Slots = {
9
+ title?: ((props: {}) => any) | undefined;
10
+ } & {
11
+ description?: ((props: {}) => any) | undefined;
12
+ } & {
13
+ content?: ((props: {}) => any) | undefined;
14
+ };
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,15 @@
1
+ declare var __VLS_1: {}, __VLS_3: {};
2
+ type __VLS_Slots = {} & {
3
+ logo?: (props: typeof __VLS_1) => any;
4
+ } & {
5
+ default?: (props: typeof __VLS_3) => any;
6
+ };
7
+ declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
11
+ type __VLS_WithSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
@@ -0,0 +1,59 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
4
+ type __VLS_WithSlots<T, S> = T & (new () => {
5
+ $slots: S;
6
+ });
7
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ type: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ validator: (value: unknown) => boolean;
12
+ };
13
+ color: {
14
+ type: StringConstructor;
15
+ default: string;
16
+ validator: (value: unknown) => boolean;
17
+ };
18
+ size: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ validator: (value: unknown) => boolean;
22
+ };
23
+ rounded: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ validator: (value: unknown) => boolean;
27
+ };
28
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
29
+ type: {
30
+ type: StringConstructor;
31
+ default: string;
32
+ validator: (value: unknown) => boolean;
33
+ };
34
+ color: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ validator: (value: unknown) => boolean;
38
+ };
39
+ size: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ validator: (value: unknown) => boolean;
43
+ };
44
+ rounded: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ validator: (value: unknown) => boolean;
48
+ };
49
+ }>> & Readonly<{}>, {
50
+ type: string;
51
+ color: string;
52
+ size: string;
53
+ rounded: string;
54
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
55
+ type __VLS_Slots = {
56
+ default?: ((props: {}) => any) | undefined;
57
+ } & {
58
+ default?: ((props: {}) => any) | undefined;
59
+ };
@@ -0,0 +1,3 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,40 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
4
+ type __VLS_WithSlots<T, S> = T & (new () => {
5
+ $slots: S;
6
+ });
7
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ type: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
12
+ disabled: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ variant: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
21
+ type: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ disabled: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
29
+ variant: {
30
+ type: StringConstructor;
31
+ default: string;
32
+ };
33
+ }>> & Readonly<{}>, {
34
+ type: string;
35
+ disabled: boolean;
36
+ variant: string;
37
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
38
+ type __VLS_Slots = {
39
+ default?: ((props: {}) => any) | undefined;
40
+ };
@@ -0,0 +1,95 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
4
+ type __VLS_WithSlots<T, S> = T & (new () => {
5
+ $slots: S;
6
+ });
7
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ title: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
12
+ sticky: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ paddingClass: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ cardClass: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ overflowClass: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ contentClass: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ tabs: {
33
+ type: ArrayConstructor;
34
+ default: () => never[];
35
+ validator: (tabs: unknown) => any;
36
+ };
37
+ activeTab: {
38
+ type: StringConstructor;
39
+ default: string;
40
+ };
41
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
42
+ "update:activeTab": (...args: any[]) => void;
43
+ "tab-click": (...args: any[]) => void;
44
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
45
+ title: {
46
+ type: StringConstructor;
47
+ default: string;
48
+ };
49
+ sticky: {
50
+ type: BooleanConstructor;
51
+ default: boolean;
52
+ };
53
+ paddingClass: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ cardClass: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ overflowClass: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ contentClass: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
69
+ tabs: {
70
+ type: ArrayConstructor;
71
+ default: () => never[];
72
+ validator: (tabs: unknown) => any;
73
+ };
74
+ activeTab: {
75
+ type: StringConstructor;
76
+ default: string;
77
+ };
78
+ }>> & Readonly<{
79
+ "onUpdate:activeTab"?: ((...args: any[]) => any) | undefined;
80
+ "onTab-click"?: ((...args: any[]) => any) | undefined;
81
+ }>, {
82
+ tabs: unknown[];
83
+ activeTab: string;
84
+ title: string;
85
+ sticky: boolean;
86
+ paddingClass: string;
87
+ cardClass: string;
88
+ overflowClass: string;
89
+ contentClass: string;
90
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
91
+ type __VLS_Slots = {
92
+ customTitle?: ((props: {}) => any) | undefined;
93
+ } & {
94
+ default?: ((props: {}) => any) | undefined;
95
+ };
@@ -0,0 +1,32 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ tabs: {
5
+ type: ArrayConstructor;
6
+ default: () => never[];
7
+ validator: (tabs: unknown) => any;
8
+ };
9
+ activeTab: {
10
+ type: StringConstructor;
11
+ default: string;
12
+ };
13
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "update:activeTab": (...args: any[]) => void;
15
+ "tab-click": (...args: any[]) => void;
16
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
17
+ tabs: {
18
+ type: ArrayConstructor;
19
+ default: () => never[];
20
+ validator: (tabs: unknown) => any;
21
+ };
22
+ activeTab: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ }>> & Readonly<{
27
+ "onUpdate:activeTab"?: ((...args: any[]) => any) | undefined;
28
+ "onTab-click"?: ((...args: any[]) => any) | undefined;
29
+ }>, {
30
+ tabs: unknown[];
31
+ activeTab: string;
32
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,28 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ checked: {
5
+ type: (ArrayConstructor | BooleanConstructor)[];
6
+ default: boolean;
7
+ };
8
+ value: {
9
+ type: StringConstructor;
10
+ default: null;
11
+ };
12
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ "update:checked": (...args: any[]) => void;
14
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
+ checked: {
16
+ type: (ArrayConstructor | BooleanConstructor)[];
17
+ default: boolean;
18
+ };
19
+ value: {
20
+ type: StringConstructor;
21
+ default: null;
22
+ };
23
+ }>> & Readonly<{
24
+ "onUpdate:checked"?: ((...args: any[]) => any) | undefined;
25
+ }>, {
26
+ checked: boolean | unknown[];
27
+ value: string;
28
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,55 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ modelValue: {
5
+ type: (StringConstructor | BooleanConstructor | NumberConstructor | null)[];
6
+ default: boolean;
7
+ };
8
+ value: {
9
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
10
+ default: boolean;
11
+ };
12
+ uncheckedValue: {
13
+ type: (StringConstructor | BooleanConstructor | NumberConstructor | null)[];
14
+ default: boolean;
15
+ };
16
+ label: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ disabled: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
+ "update:modelValue": (...args: any[]) => void;
26
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
27
+ modelValue: {
28
+ type: (StringConstructor | BooleanConstructor | NumberConstructor | null)[];
29
+ default: boolean;
30
+ };
31
+ value: {
32
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
33
+ default: boolean;
34
+ };
35
+ uncheckedValue: {
36
+ type: (StringConstructor | BooleanConstructor | NumberConstructor | null)[];
37
+ default: boolean;
38
+ };
39
+ label: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
43
+ disabled: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
47
+ }>> & Readonly<{
48
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
49
+ }>, {
50
+ label: string;
51
+ disabled: boolean;
52
+ value: string | number | boolean;
53
+ modelValue: string | number | boolean | null;
54
+ uncheckedValue: string | number | boolean | null;
55
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,37 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ modelValue: {
5
+ type: ArrayConstructor;
6
+ default: () => never[];
7
+ };
8
+ options: {
9
+ type: ArrayConstructor;
10
+ default: () => never[];
11
+ };
12
+ disabled: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
+ "update:modelValue": (...args: any[]) => void;
18
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
19
+ modelValue: {
20
+ type: ArrayConstructor;
21
+ default: () => never[];
22
+ };
23
+ options: {
24
+ type: ArrayConstructor;
25
+ default: () => never[];
26
+ };
27
+ disabled: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ }>> & Readonly<{
32
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
33
+ }>, {
34
+ disabled: boolean;
35
+ modelValue: unknown[];
36
+ options: unknown[];
37
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,59 @@
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
4
+ type __VLS_WithSlots<T, S> = T & (new () => {
5
+ $slots: S;
6
+ });
7
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ show: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ maxWidth: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ closeable: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ position: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ validator: (value: unknown) => boolean;
24
+ };
25
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
26
+ close: (...args: any[]) => void;
27
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
28
+ show: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ maxWidth: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ closeable: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ position: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ validator: (value: unknown) => boolean;
44
+ };
45
+ }>> & Readonly<{
46
+ onClose?: ((...args: any[]) => any) | undefined;
47
+ }>, {
48
+ show: boolean;
49
+ position: string;
50
+ maxWidth: string;
51
+ closeable: boolean;
52
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
53
+ type __VLS_Slots = {
54
+ title?: ((props: {}) => any) | undefined;
55
+ } & {
56
+ content?: ((props: {}) => any) | undefined;
57
+ } & {
58
+ footer?: ((props: {}) => any) | undefined;
59
+ };