@romainbx/wpic-components 0.0.0

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 (54) hide show
  1. package/README.md +9 -0
  2. package/dist/App.vue.d.ts +2 -0
  3. package/dist/components/Badge.vue.d.ts +17 -0
  4. package/dist/components/LoadingPanel.vue.d.ts +7 -0
  5. package/dist/components/ProgressBar.vue.d.ts +7 -0
  6. package/dist/components/Spinner.vue.d.ts +7 -0
  7. package/dist/components/TextEditor.vue.d.ts +8 -0
  8. package/dist/components/card/Card.vue.d.ts +14 -0
  9. package/dist/components/card/CardSection.vue.d.ts +2 -0
  10. package/dist/components/floating/Popover.vue.d.ts +27 -0
  11. package/dist/components/form/Button.vue.d.ts +42 -0
  12. package/dist/components/form/ButtonGroup.vue.d.ts +2 -0
  13. package/dist/components/form/ChoiceList.vue.d.ts +37 -0
  14. package/dist/components/form/Form.vue.d.ts +7 -0
  15. package/dist/components/form/FormField.vue.d.ts +108 -0
  16. package/dist/components/form/FormInput.vue.d.ts +2 -0
  17. package/dist/components/form/InputGroup.vue.d.ts +2 -0
  18. package/dist/components/icons/Bold.vue.d.ts +2 -0
  19. package/dist/components/icons/Check.vue.d.ts +2 -0
  20. package/dist/components/icons/ChevronDown.vue.d.ts +2 -0
  21. package/dist/components/icons/Circle.vue.d.ts +2 -0
  22. package/dist/components/icons/CodeBracket.vue.d.ts +2 -0
  23. package/dist/components/icons/Eye.vue.d.ts +2 -0
  24. package/dist/components/icons/EyeOff.vue.d.ts +2 -0
  25. package/dist/components/icons/Italic2.vue.d.ts +2 -0
  26. package/dist/components/icons/Minus copy.vue.d.ts +2 -0
  27. package/dist/components/icons/Minus.vue.d.ts +2 -0
  28. package/dist/components/icons/OrderedList.vue.d.ts +2 -0
  29. package/dist/components/icons/Paragraph.vue.d.ts +2 -0
  30. package/dist/components/icons/SpinnerThird.vue.d.ts +2 -0
  31. package/dist/components/icons/XMark.vue.d.ts +2 -0
  32. package/dist/components/icons/micro/ArrowUturnLeft.vue.d.ts +2 -0
  33. package/dist/components/icons/micro/ArrowUturnRight.vue.d.ts +2 -0
  34. package/dist/components/icons/micro/ChevronDown.vue.d.ts +2 -0
  35. package/dist/components/icons/micro/ChevronRight.vue.d.ts +2 -0
  36. package/dist/components/icons/micro/ListBullet.vue.d.ts +2 -0
  37. package/dist/components/icons/solid/Eye.vue.d.ts +2 -0
  38. package/dist/components/icons/solid/EyeOff.vue.d.ts +2 -0
  39. package/dist/components/icons/solid/InformationCircle.vue.d.ts +2 -0
  40. package/dist/components/pagination/Item.vue.d.ts +12 -0
  41. package/dist/components/pagination/Pagination.vue.d.ts +14 -0
  42. package/dist/components/table/Table.vue.d.ts +17 -0
  43. package/dist/components/table/TableCell.vue.d.ts +7 -0
  44. package/dist/components/table/TableColumn.vue.d.ts +98 -0
  45. package/dist/components/tag/Tag.vue.d.ts +13 -0
  46. package/dist/components/tag/TagGroup.vue.d.ts +12 -0
  47. package/dist/layouts/default.vue.d.ts +2 -0
  48. package/dist/main.d.ts +1 -0
  49. package/dist/style.css +1 -0
  50. package/dist/utils/index.d.ts +5 -0
  51. package/dist/vite.svg +1 -0
  52. package/dist/wpic-components.js +19936 -0
  53. package/dist/wpic-components.umd.cjs +120 -0
  54. package/package.json +47 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Vue 3 + TypeScript + Vite
2
+
3
+ This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
+
5
+ ## Recommended Setup
6
+
7
+ - [VS Code](https://code.visualstudio.com/) + [Vue - Official](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (previously Volar) and disable Vetur
8
+
9
+ - Use [vue-tsc](https://github.com/vuejs/language-tools/tree/master/packages/tsc) for performing the same type checking from the command line, or for generating d.ts files for SFCs.
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,17 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ success: boolean;
3
+ warning: boolean;
4
+ error: boolean;
5
+ $props: {
6
+ readonly success?: boolean | undefined;
7
+ readonly warning?: boolean | undefined;
8
+ readonly error?: boolean | undefined;
9
+ };
10
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
11
+ default?(_: {}): any;
12
+ }>;
13
+ export default _default;
14
+
15
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
16
+ $slots: S;
17
+ });
@@ -0,0 +1,7 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ color: string;
3
+ $props: {
4
+ readonly color?: string | undefined;
5
+ };
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ value?: number | undefined;
3
+ $props: {
4
+ readonly value?: number | undefined;
5
+ };
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ color: string;
3
+ $props: {
4
+ readonly color?: string | undefined;
5
+ };
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
7
+ export default _default;
@@ -0,0 +1,8 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ $emit: (event: "update:modelValue", ...args: any[]) => void;
3
+ modelValue: string;
4
+ $props: {
5
+ readonly modelValue?: string | undefined;
6
+ };
7
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
8
+ export default _default;
@@ -0,0 +1,14 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ title?: string | undefined;
3
+ $props: {
4
+ readonly title?: string | undefined;
5
+ };
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
7
+ actions?(_: {}): any;
8
+ default?(_: {}): any;
9
+ buttons?(_: {}): any;
10
+ }>;
11
+ export default _default;
12
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
13
+ $slots: S;
14
+ });
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,27 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ hide: () => void;
3
+ placement: string;
4
+ hover: boolean;
5
+ custom: boolean;
6
+ disabled: boolean;
7
+ offset: number;
8
+ label?: string | undefined;
9
+ $props: {
10
+ readonly placement?: string | undefined;
11
+ readonly hover?: boolean | undefined;
12
+ readonly custom?: boolean | undefined;
13
+ readonly disabled?: boolean | undefined;
14
+ readonly offset?: number | undefined;
15
+ readonly label?: string | undefined;
16
+ };
17
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
18
+ default?(_: {
19
+ isHidden: boolean;
20
+ }): any;
21
+ content?(_: {}): any;
22
+ content?(_: {}): any;
23
+ }>;
24
+ export default _default;
25
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
26
+ $slots: S;
27
+ });
@@ -0,0 +1,42 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ small: boolean;
3
+ type: string;
4
+ square: boolean;
5
+ disabled: boolean;
6
+ primary: boolean;
7
+ secondary: boolean;
8
+ inverse: boolean;
9
+ full: boolean;
10
+ loading: boolean;
11
+ outline: boolean;
12
+ medium: boolean;
13
+ mini: boolean;
14
+ plain: boolean;
15
+ outlining: boolean;
16
+ label?: string | undefined;
17
+ to?: string | Record<string, any> | undefined;
18
+ $props: {
19
+ readonly small?: boolean | undefined;
20
+ readonly type?: string | undefined;
21
+ readonly square?: boolean | undefined;
22
+ readonly disabled?: boolean | undefined;
23
+ readonly primary?: boolean | undefined;
24
+ readonly secondary?: boolean | undefined;
25
+ readonly inverse?: boolean | undefined;
26
+ readonly full?: boolean | undefined;
27
+ readonly loading?: boolean | undefined;
28
+ readonly outline?: boolean | undefined;
29
+ readonly medium?: boolean | undefined;
30
+ readonly mini?: boolean | undefined;
31
+ readonly plain?: boolean | undefined;
32
+ readonly outlining?: boolean | undefined;
33
+ readonly label?: string | undefined;
34
+ readonly to?: string | Record<string, any> | undefined;
35
+ };
36
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
37
+ default?(_: {}): any;
38
+ }>;
39
+ export default _default;
40
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
41
+ $slots: S;
42
+ });
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,37 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ $emit: (event: "input" | "update:modelValue" | "blur" | "change", ...args: any[]) => void;
3
+ small: boolean;
4
+ disabled: boolean;
5
+ hideSelect: boolean;
6
+ multiple: boolean;
7
+ required: boolean;
8
+ isInvalid: boolean;
9
+ label?: string | undefined;
10
+ name?: string | undefined;
11
+ value?: unknown;
12
+ modelValue?: unknown;
13
+ placeholder?: string | undefined;
14
+ options?: unknown[] | undefined;
15
+ maxDisplay?: number | undefined;
16
+ $props: {
17
+ readonly small?: boolean | undefined;
18
+ readonly disabled?: boolean | undefined;
19
+ readonly hideSelect?: boolean | undefined;
20
+ readonly multiple?: boolean | undefined;
21
+ readonly required?: boolean | undefined;
22
+ readonly isInvalid?: boolean | undefined;
23
+ readonly label?: string | undefined;
24
+ readonly name?: string | undefined;
25
+ readonly value?: unknown;
26
+ readonly modelValue?: unknown;
27
+ readonly placeholder?: string | undefined;
28
+ readonly options?: unknown[] | undefined;
29
+ readonly maxDisplay?: number | undefined;
30
+ };
31
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
32
+ default?(_: {}): any;
33
+ }>;
34
+ export default _default;
35
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
36
+ $slots: S;
37
+ });
@@ -0,0 +1,7 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ default?(_: {}): any;
3
+ }>;
4
+ export default _default;
5
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
6
+ $slots: S;
7
+ });
@@ -0,0 +1,108 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ focus: () => void;
3
+ isValid: () => any;
4
+ $emit: (event: "onChange" | "update:modelValue" | "onClear", ...args: any[]) => void;
5
+ select: boolean;
6
+ textarea: boolean;
7
+ name: string;
8
+ error: boolean;
9
+ type: string;
10
+ blur: boolean;
11
+ disabled: boolean;
12
+ loading: boolean;
13
+ tag: string;
14
+ hideSelect: boolean;
15
+ multiple: boolean;
16
+ required: boolean;
17
+ checkbox: boolean;
18
+ radio: boolean;
19
+ email: boolean;
20
+ slim: boolean;
21
+ clearable: boolean;
22
+ debounce: number;
23
+ password: boolean;
24
+ addLabel: string;
25
+ labelName: boolean;
26
+ half: boolean;
27
+ date: boolean;
28
+ range: boolean;
29
+ rows: string | number;
30
+ transparent: boolean;
31
+ loadingPercent: number;
32
+ loadingPulse: boolean;
33
+ large: boolean;
34
+ noResize: boolean;
35
+ autoResize: boolean;
36
+ minHeight: string | number;
37
+ maxHeight: string | number;
38
+ hideFocus: boolean;
39
+ min: string | number;
40
+ max: string | number;
41
+ label?: string | number | undefined;
42
+ modelValue?: unknown;
43
+ placeholder?: string | undefined;
44
+ options?: unknown[] | undefined;
45
+ rules?: unknown;
46
+ checkboxValue?: unknown;
47
+ uncheckedValue?: unknown;
48
+ radioValue?: unknown;
49
+ help?: string | undefined;
50
+ info?: string | undefined;
51
+ $props: {
52
+ readonly select?: boolean | undefined;
53
+ readonly textarea?: boolean | undefined;
54
+ readonly name?: string | undefined;
55
+ readonly error?: boolean | undefined;
56
+ readonly type?: string | undefined;
57
+ readonly blur?: boolean | undefined;
58
+ readonly disabled?: boolean | undefined;
59
+ readonly loading?: boolean | undefined;
60
+ readonly tag?: string | undefined;
61
+ readonly hideSelect?: boolean | undefined;
62
+ readonly multiple?: boolean | undefined;
63
+ readonly required?: boolean | undefined;
64
+ readonly checkbox?: boolean | undefined;
65
+ readonly radio?: boolean | undefined;
66
+ readonly email?: boolean | undefined;
67
+ readonly slim?: boolean | undefined;
68
+ readonly clearable?: boolean | undefined;
69
+ readonly debounce?: number | undefined;
70
+ readonly password?: boolean | undefined;
71
+ readonly addLabel?: string | undefined;
72
+ readonly labelName?: boolean | undefined;
73
+ readonly half?: boolean | undefined;
74
+ readonly date?: boolean | undefined;
75
+ readonly range?: boolean | undefined;
76
+ readonly rows?: string | number | undefined;
77
+ readonly transparent?: boolean | undefined;
78
+ readonly loadingPercent?: number | undefined;
79
+ readonly loadingPulse?: boolean | undefined;
80
+ readonly large?: boolean | undefined;
81
+ readonly noResize?: boolean | undefined;
82
+ readonly autoResize?: boolean | undefined;
83
+ readonly minHeight?: string | number | undefined;
84
+ readonly maxHeight?: string | number | undefined;
85
+ readonly hideFocus?: boolean | undefined;
86
+ readonly min?: string | number | undefined;
87
+ readonly max?: string | number | undefined;
88
+ readonly label?: string | number | undefined;
89
+ readonly modelValue?: unknown;
90
+ readonly placeholder?: string | undefined;
91
+ readonly options?: unknown[] | undefined;
92
+ readonly rules?: unknown;
93
+ readonly checkboxValue?: unknown;
94
+ readonly uncheckedValue?: unknown;
95
+ readonly radioValue?: unknown;
96
+ readonly help?: string | undefined;
97
+ readonly info?: string | undefined;
98
+ };
99
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
100
+ default?(_: {}): any;
101
+ prepend?(_: {}): any;
102
+ append?(_: {}): any;
103
+ help?(_: {}): any;
104
+ }>;
105
+ export default _default;
106
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
107
+ $slots: S;
108
+ });
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,12 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ active: boolean;
3
+ $props: {
4
+ readonly active?: boolean | undefined;
5
+ };
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
7
+ default?(_: {}): any;
8
+ }>;
9
+ export default _default;
10
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
11
+ $slots: S;
12
+ });
@@ -0,0 +1,14 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ getStart: () => number;
3
+ getEnd: () => number | undefined;
4
+ $emit: (event: "update:perPage" | "update:currentPage", ...args: any[]) => void;
5
+ perPage: number;
6
+ total?: number | undefined;
7
+ currentPage?: number | undefined;
8
+ $props: {
9
+ readonly perPage?: number | undefined;
10
+ readonly total?: number | undefined;
11
+ readonly currentPage?: number | undefined;
12
+ };
13
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
14
+ export default _default;
@@ -0,0 +1,17 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ buildColumns: () => void;
3
+ $emit: (event: "changeSort", ...args: any[]) => void;
4
+ data: unknown[];
5
+ border: boolean;
6
+ hideHeaders: boolean;
7
+ noXPadding: boolean;
8
+ sortOptions?: unknown;
9
+ $props: {
10
+ readonly data?: unknown[] | undefined;
11
+ readonly border?: boolean | undefined;
12
+ readonly hideHeaders?: boolean | undefined;
13
+ readonly noXPadding?: boolean | undefined;
14
+ readonly sortOptions?: unknown;
15
+ };
16
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
17
+ export default _default;
@@ -0,0 +1,7 @@
1
+ export default DynamicHeading;
2
+ declare function DynamicHeading(props: any, context: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
3
+ [key: string]: any;
4
+ }>;
5
+ declare namespace DynamicHeading {
6
+ let props: string[];
7
+ }
@@ -0,0 +1,98 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ label: {
3
+ type: StringConstructor;
4
+ };
5
+ help: {
6
+ type: StringConstructor;
7
+ };
8
+ field: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
12
+ selectable: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ sortable: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ type: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ width: {
25
+ type: (StringConstructor | NumberConstructor)[];
26
+ default: null;
27
+ };
28
+ minWidth: {
29
+ type: (StringConstructor | NumberConstructor)[];
30
+ default: null;
31
+ };
32
+ maxWidth: {
33
+ type: (StringConstructor | NumberConstructor)[];
34
+ default: null;
35
+ };
36
+ align: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ visible: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ }, () => null, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
45
+ label: {
46
+ type: StringConstructor;
47
+ };
48
+ help: {
49
+ type: StringConstructor;
50
+ };
51
+ field: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ selectable: {
56
+ type: BooleanConstructor;
57
+ default: boolean;
58
+ };
59
+ sortable: {
60
+ type: BooleanConstructor;
61
+ default: boolean;
62
+ };
63
+ type: {
64
+ type: StringConstructor;
65
+ default: string;
66
+ };
67
+ width: {
68
+ type: (StringConstructor | NumberConstructor)[];
69
+ default: null;
70
+ };
71
+ minWidth: {
72
+ type: (StringConstructor | NumberConstructor)[];
73
+ default: null;
74
+ };
75
+ maxWidth: {
76
+ type: (StringConstructor | NumberConstructor)[];
77
+ default: null;
78
+ };
79
+ align: {
80
+ type: StringConstructor;
81
+ default: string;
82
+ };
83
+ visible: {
84
+ type: BooleanConstructor;
85
+ default: boolean;
86
+ };
87
+ }>>, {
88
+ type: string;
89
+ width: string | number;
90
+ field: string;
91
+ minWidth: string | number;
92
+ maxWidth: string | number;
93
+ align: string;
94
+ sortable: boolean;
95
+ selectable: boolean;
96
+ visible: boolean;
97
+ }, {}>;
98
+ export default _default;
@@ -0,0 +1,13 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ $emit: (event: "clear", ...args: any[]) => void;
3
+ clearable: boolean;
4
+ $props: {
5
+ readonly clearable?: boolean | undefined;
6
+ };
7
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
8
+ default?(_: {}): any;
9
+ }>;
10
+ export default _default;
11
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
12
+ $slots: S;
13
+ });
@@ -0,0 +1,12 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ full: boolean;
3
+ $props: {
4
+ readonly full?: boolean | undefined;
5
+ };
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
7
+ default?(_: {}): any;
8
+ }>;
9
+ export default _default;
10
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
11
+ $slots: S;
12
+ });
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
package/dist/main.d.ts ADDED
@@ -0,0 +1 @@
1
+ import './style.css';