@romainbx/wpic-components 0.0.14 → 0.0.16

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 (35) hide show
  1. package/dist/App.vue.d.ts +1 -0
  2. package/dist/components/Alert.vue.d.ts +22 -0
  3. package/dist/components/Badge.vue.d.ts +2 -3
  4. package/dist/components/date/Calendar.vue.d.ts +4 -2
  5. package/dist/components/date/DateField.vue.d.ts +10 -4
  6. package/dist/components/floating/Popover.vue.d.ts +4 -0
  7. package/dist/components/floating/Tooltip.vue.d.ts +18 -0
  8. package/dist/components/form/Button.vue.d.ts +6 -2
  9. package/dist/components/form/ChoiceList.vue.d.ts +18 -4
  10. package/dist/components/form/Form.vue.d.ts +6 -1
  11. package/dist/components/form/FormField.vue.d.ts +28 -16
  12. package/dist/components/form/FormInput.vue.d.ts +7 -1
  13. package/dist/components/form/Textarea.vue.d.ts +29 -0
  14. package/dist/components/icons/ExclamationCircle.vue.d.ts +2 -0
  15. package/dist/components/icons/ExclamationTriangle.vue.d.ts +2 -0
  16. package/dist/components/icons/InformationCircle.vue.d.ts +2 -0
  17. package/dist/components/icons/Plus.vue.d.ts +2 -0
  18. package/dist/components/icons/QuestionMarkCircle.vue.d.ts +2 -0
  19. package/dist/components/icons/XCircle.vue.d.ts +2 -0
  20. package/dist/components/icons/mini/CheckCircle.vue.d.ts +2 -0
  21. package/dist/components/icons/mini/ExclamationTriangle.vue.d.ts +2 -0
  22. package/dist/components/icons/mini/InformationCircle.vue.d.ts +2 -0
  23. package/dist/components/icons/mini/XCircle.vue.d.ts +2 -0
  24. package/dist/components/modal/Confirm.vue.d.ts +2 -0
  25. package/dist/components/modal/Dialog.vue.d.ts +31 -0
  26. package/dist/components/pagination/Pagination.vue.d.ts +2 -2
  27. package/dist/components/tab/TabPane.vue.d.ts +14 -0
  28. package/dist/components/tab/Tabs.vue.d.ts +13 -0
  29. package/dist/components/table/Table.vue.d.ts +5 -1
  30. package/dist/components/table/TableColumn.vue.d.ts +1 -1
  31. package/dist/style.css +1 -1
  32. package/dist/wpic-components.js +8555 -7140
  33. package/dist/wpic-components.umd.cjs +29 -29
  34. package/package.json +1 -1
  35. /package/dist/components/icons/{Minus copy.vue.d.ts → CheckCircle.vue.d.ts} +0 -0
package/dist/App.vue.d.ts CHANGED
@@ -1,2 +1,3 @@
1
+ import './plugins/validators';
1
2
  declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
3
  export default _default;
@@ -0,0 +1,22 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ warning: boolean;
3
+ success: boolean;
4
+ error: boolean;
5
+ info: boolean;
6
+ title?: string | undefined;
7
+ text?: string | undefined;
8
+ $props: {
9
+ readonly warning?: boolean | undefined;
10
+ readonly success?: boolean | undefined;
11
+ readonly error?: boolean | undefined;
12
+ readonly info?: boolean | undefined;
13
+ readonly title?: string | undefined;
14
+ readonly text?: string | undefined;
15
+ };
16
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
17
+ default?(_: {}): any;
18
+ }>;
19
+ export default _default;
20
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
21
+ $slots: S;
22
+ });
@@ -1,17 +1,16 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
- success: boolean;
3
2
  warning: boolean;
3
+ success: boolean;
4
4
  error: boolean;
5
5
  $props: {
6
- readonly success?: boolean | undefined;
7
6
  readonly warning?: boolean | undefined;
7
+ readonly success?: boolean | undefined;
8
8
  readonly error?: boolean | undefined;
9
9
  };
10
10
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
11
11
  default?(_: {}): any;
12
12
  }>;
13
13
  export default _default;
14
-
15
14
  type __VLS_WithTemplateSlots<T, S> = T & (new () => {
16
15
  $slots: S;
17
16
  });
@@ -1,16 +1,18 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: (event: "update:modelValue", ...args: any[]) => void;
3
+ week: boolean;
3
4
  range: boolean;
4
5
  doubleMonths: boolean;
5
- week: boolean;
6
6
  modelValue?: unknown;
7
7
  maxDate?: unknown;
8
+ initDates?: unknown;
8
9
  $props: {
10
+ readonly week?: boolean | undefined;
9
11
  readonly range?: boolean | undefined;
10
12
  readonly doubleMonths?: boolean | undefined;
11
- readonly week?: boolean | undefined;
12
13
  readonly modelValue?: unknown;
13
14
  readonly maxDate?: unknown;
15
+ readonly initDates?: unknown;
14
16
  };
15
17
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
16
18
  export default _default;
@@ -1,28 +1,34 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $emit: (event: "update:modelValue", ...args: any[]) => void;
3
+ week: boolean;
3
4
  placeholder: string;
4
5
  range: boolean;
5
6
  doubleMonths: boolean;
6
- week: boolean;
7
7
  disabled: boolean;
8
8
  large: boolean;
9
9
  clearable: boolean;
10
+ shortcuts: boolean;
11
+ slim: boolean;
10
12
  label?: string | undefined;
13
+ info?: string | undefined;
11
14
  modelValue?: unknown;
12
15
  maxDate?: unknown;
13
- info?: string | undefined;
16
+ initDates?: unknown;
14
17
  $props: {
18
+ readonly week?: boolean | undefined;
15
19
  readonly placeholder?: string | undefined;
16
20
  readonly range?: boolean | undefined;
17
21
  readonly doubleMonths?: boolean | undefined;
18
- readonly week?: boolean | undefined;
19
22
  readonly disabled?: boolean | undefined;
20
23
  readonly large?: boolean | undefined;
21
24
  readonly clearable?: boolean | undefined;
25
+ readonly shortcuts?: boolean | undefined;
26
+ readonly slim?: boolean | undefined;
22
27
  readonly label?: string | undefined;
28
+ readonly info?: string | undefined;
23
29
  readonly modelValue?: unknown;
24
30
  readonly maxDate?: unknown;
25
- readonly info?: string | undefined;
31
+ readonly initDates?: unknown;
26
32
  };
27
33
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
28
34
  export default _default;
@@ -1,18 +1,22 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
2
  hide: () => void;
3
+ expand: boolean;
3
4
  disabled: boolean;
4
5
  placement: string;
5
6
  hover: boolean;
6
7
  custom: boolean;
7
8
  offset: number;
9
+ maxWidth: string;
8
10
  label?: string | undefined;
9
11
  customWidth?: unknown;
10
12
  $props: {
13
+ readonly expand?: boolean | undefined;
11
14
  readonly disabled?: boolean | undefined;
12
15
  readonly placement?: string | undefined;
13
16
  readonly hover?: boolean | undefined;
14
17
  readonly custom?: boolean | undefined;
15
18
  readonly offset?: number | undefined;
19
+ readonly maxWidth?: string | undefined;
16
20
  readonly label?: string | undefined;
17
21
  readonly customWidth?: unknown;
18
22
  };
@@ -0,0 +1,18 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ placement: string;
3
+ offset: number;
4
+ delay: number;
5
+ text?: string | undefined;
6
+ $props: {
7
+ readonly placement?: string | undefined;
8
+ readonly offset?: number | undefined;
9
+ readonly delay?: number | undefined;
10
+ readonly text?: string | undefined;
11
+ };
12
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
13
+ default?(_: {}): any;
14
+ }>;
15
+ export default _default;
16
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
17
+ $slots: S;
18
+ });
@@ -5,16 +5,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
5
5
  disabled: boolean;
6
6
  primary: boolean;
7
7
  secondary: boolean;
8
+ destructive: boolean;
8
9
  inverse: boolean;
9
10
  full: boolean;
10
11
  loading: boolean;
12
+ colorless: boolean;
11
13
  outline: boolean;
12
14
  medium: boolean;
13
15
  mini: boolean;
14
16
  plain: boolean;
15
17
  outlining: boolean;
16
- label?: string | undefined;
17
18
  to?: string | Record<string, any> | undefined;
19
+ label?: string | undefined;
18
20
  $props: {
19
21
  readonly small?: boolean | undefined;
20
22
  readonly type?: string | undefined;
@@ -22,16 +24,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
22
24
  readonly disabled?: boolean | undefined;
23
25
  readonly primary?: boolean | undefined;
24
26
  readonly secondary?: boolean | undefined;
27
+ readonly destructive?: boolean | undefined;
25
28
  readonly inverse?: boolean | undefined;
26
29
  readonly full?: boolean | undefined;
27
30
  readonly loading?: boolean | undefined;
31
+ readonly colorless?: boolean | undefined;
28
32
  readonly outline?: boolean | undefined;
29
33
  readonly medium?: boolean | undefined;
30
34
  readonly mini?: boolean | undefined;
31
35
  readonly plain?: boolean | undefined;
32
36
  readonly outlining?: boolean | undefined;
33
- readonly label?: string | undefined;
34
37
  readonly to?: string | Record<string, any> | undefined;
38
+ readonly label?: string | undefined;
35
39
  };
36
40
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
37
41
  default?(_: {}): any;
@@ -1,39 +1,53 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ isAllSelected: import("vue").ComputedRef<boolean>;
2
3
  $emit: (event: "input" | "update:modelValue" | "blur" | "change", ...args: any[]) => void;
3
4
  small: boolean;
5
+ placeholder: string;
4
6
  disabled: boolean;
7
+ clearable: boolean;
5
8
  hideSelect: boolean;
6
9
  multiple: boolean;
7
10
  required: boolean;
8
11
  isInvalid: boolean;
9
12
  batchSelect: boolean;
10
- label?: string | undefined;
13
+ filterable: boolean;
14
+ debounce: number;
11
15
  name?: string | undefined;
16
+ label?: string | undefined;
12
17
  value?: unknown;
13
18
  options?: unknown[] | undefined;
14
19
  modelValue?: unknown;
15
- placeholder?: string | undefined;
16
20
  maxDisplay?: number | undefined;
21
+ allSelectedText?: string | undefined;
22
+ remoteMethod?: unknown;
23
+ noDataText?: string | undefined;
17
24
  $props: {
18
25
  readonly small?: boolean | undefined;
26
+ readonly placeholder?: string | undefined;
19
27
  readonly disabled?: boolean | undefined;
28
+ readonly clearable?: boolean | undefined;
20
29
  readonly hideSelect?: boolean | undefined;
21
30
  readonly multiple?: boolean | undefined;
22
31
  readonly required?: boolean | undefined;
23
32
  readonly isInvalid?: boolean | undefined;
24
33
  readonly batchSelect?: boolean | undefined;
25
- readonly label?: string | undefined;
34
+ readonly filterable?: boolean | undefined;
35
+ readonly debounce?: number | undefined;
26
36
  readonly name?: string | undefined;
37
+ readonly label?: string | undefined;
27
38
  readonly value?: unknown;
28
39
  readonly options?: unknown[] | undefined;
29
40
  readonly modelValue?: unknown;
30
- readonly placeholder?: string | undefined;
31
41
  readonly maxDisplay?: number | undefined;
42
+ readonly allSelectedText?: string | undefined;
43
+ readonly remoteMethod?: unknown;
44
+ readonly noDataText?: string | undefined;
32
45
  };
33
46
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
34
47
  default?(_: {}): any;
35
48
  }>;
36
49
  export default _default;
50
+
37
51
  type __VLS_WithTemplateSlots<T, S> = T & (new () => {
38
52
  $slots: S;
39
53
  });
@@ -1,4 +1,9 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ validate: () => Promise<any>;
3
+ resetForm: () => void;
4
+ getForm: () => any;
5
+ errors: () => any;
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
7
  default?(_: {}): any;
3
8
  }>;
4
9
  export default _default;
@@ -2,30 +2,32 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
2
2
  focus: () => void;
3
3
  isValid: () => any;
4
4
  $emit: (event: "onChange" | "update:modelValue" | "onClear", ...args: any[]) => void;
5
+ date: boolean;
6
+ max: string | number;
7
+ min: string | number;
8
+ name: string;
5
9
  select: boolean;
6
10
  small: boolean;
7
11
  textarea: boolean;
8
- name: string;
9
- error: boolean;
10
12
  type: string;
13
+ error: boolean;
11
14
  blur: boolean;
12
15
  range: boolean;
13
- date: boolean;
14
- max: string | number;
15
- min: string | number;
16
16
  disabled: boolean;
17
17
  large: boolean;
18
18
  clearable: boolean;
19
+ slim: boolean;
19
20
  loading: boolean;
20
21
  tag: string;
21
22
  hideSelect: boolean;
22
23
  multiple: boolean;
23
24
  required: boolean;
25
+ batchSelect: boolean;
26
+ filterable: boolean;
27
+ debounce: number;
24
28
  checkbox: boolean;
25
29
  radio: boolean;
26
30
  email: boolean;
27
- slim: boolean;
28
- debounce: number;
29
31
  password: boolean;
30
32
  addLabel: string;
31
33
  labelName: boolean;
@@ -40,40 +42,46 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
40
42
  maxHeight: string | number;
41
43
  hideFocus: boolean;
42
44
  label?: string | number | undefined;
45
+ info?: string | undefined;
43
46
  options?: unknown[] | undefined;
44
47
  modelValue?: unknown;
45
48
  placeholder?: string | undefined;
46
- info?: string | undefined;
49
+ maxDisplay?: number | undefined;
50
+ allSelectedText?: string | undefined;
51
+ remoteMethod?: unknown;
52
+ noDataText?: string | undefined;
47
53
  rules?: unknown;
48
54
  checkboxValue?: unknown;
49
55
  uncheckedValue?: unknown;
50
56
  radioValue?: unknown;
51
57
  help?: string | undefined;
52
58
  $props: {
59
+ readonly date?: boolean | undefined;
60
+ readonly max?: string | number | undefined;
61
+ readonly min?: string | number | undefined;
62
+ readonly name?: string | undefined;
53
63
  readonly select?: boolean | undefined;
54
64
  readonly small?: boolean | undefined;
55
65
  readonly textarea?: boolean | undefined;
56
- readonly name?: string | undefined;
57
- readonly error?: boolean | undefined;
58
66
  readonly type?: string | undefined;
67
+ readonly error?: boolean | undefined;
59
68
  readonly blur?: boolean | undefined;
60
69
  readonly range?: boolean | undefined;
61
- readonly date?: boolean | undefined;
62
- readonly max?: string | number | undefined;
63
- readonly min?: string | number | undefined;
64
70
  readonly disabled?: boolean | undefined;
65
71
  readonly large?: boolean | undefined;
66
72
  readonly clearable?: boolean | undefined;
73
+ readonly slim?: boolean | undefined;
67
74
  readonly loading?: boolean | undefined;
68
75
  readonly tag?: string | undefined;
69
76
  readonly hideSelect?: boolean | undefined;
70
77
  readonly multiple?: boolean | undefined;
71
78
  readonly required?: boolean | undefined;
79
+ readonly batchSelect?: boolean | undefined;
80
+ readonly filterable?: boolean | undefined;
81
+ readonly debounce?: number | undefined;
72
82
  readonly checkbox?: boolean | undefined;
73
83
  readonly radio?: boolean | undefined;
74
84
  readonly email?: boolean | undefined;
75
- readonly slim?: boolean | undefined;
76
- readonly debounce?: number | undefined;
77
85
  readonly password?: boolean | undefined;
78
86
  readonly addLabel?: string | undefined;
79
87
  readonly labelName?: boolean | undefined;
@@ -88,10 +96,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
88
96
  readonly maxHeight?: string | number | undefined;
89
97
  readonly hideFocus?: boolean | undefined;
90
98
  readonly label?: string | number | undefined;
99
+ readonly info?: string | undefined;
91
100
  readonly options?: unknown[] | undefined;
92
101
  readonly modelValue?: unknown;
93
102
  readonly placeholder?: string | undefined;
94
- readonly info?: string | undefined;
103
+ readonly maxDisplay?: number | undefined;
104
+ readonly allSelectedText?: string | undefined;
105
+ readonly remoteMethod?: unknown;
106
+ readonly noDataText?: string | undefined;
95
107
  readonly rules?: unknown;
96
108
  readonly checkboxValue?: unknown;
97
109
  readonly uncheckedValue?: unknown;
@@ -1,16 +1,22 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
- $emit: (event: "onClear", ...args: any[]) => void;
2
+ $emit: (event: "update:modelValue" | "onClear", ...args: any[]) => void;
3
+ small: boolean;
3
4
  disabled: boolean;
4
5
  large: boolean;
5
6
  clearable: boolean;
7
+ slim: boolean;
6
8
  loading: boolean;
9
+ invalid: boolean;
7
10
  label?: string | undefined;
8
11
  info?: string | undefined;
9
12
  $props: {
13
+ readonly small?: boolean | undefined;
10
14
  readonly disabled?: boolean | undefined;
11
15
  readonly large?: boolean | undefined;
12
16
  readonly clearable?: boolean | undefined;
17
+ readonly slim?: boolean | undefined;
13
18
  readonly loading?: boolean | undefined;
19
+ readonly invalid?: boolean | undefined;
14
20
  readonly label?: string | undefined;
15
21
  readonly info?: string | undefined;
16
22
  };
@@ -0,0 +1,29 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ focus: () => void;
3
+ $emit: (event: "update:modelValue", ...args: any[]) => void;
4
+ disabled: boolean;
5
+ required: boolean;
6
+ isInvalid: boolean;
7
+ rows: string | number;
8
+ noResize: boolean;
9
+ autoResize: boolean;
10
+ minHeight: string | number;
11
+ maxHeight: string | number;
12
+ label?: string | undefined;
13
+ modelValue?: unknown;
14
+ placeholder?: string | undefined;
15
+ $props: {
16
+ readonly disabled?: boolean | undefined;
17
+ readonly required?: boolean | undefined;
18
+ readonly isInvalid?: boolean | undefined;
19
+ readonly rows?: string | number | undefined;
20
+ readonly noResize?: boolean | undefined;
21
+ readonly autoResize?: boolean | undefined;
22
+ readonly minHeight?: string | number | undefined;
23
+ readonly maxHeight?: string | number | undefined;
24
+ readonly label?: string | undefined;
25
+ readonly modelValue?: unknown;
26
+ readonly placeholder?: string | undefined;
27
+ };
28
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
29
+ 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,31 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ goBottom: () => void;
3
+ goTop: () => void;
4
+ isScrolledToBottom: import("vue").Ref<boolean>;
5
+ $emit: (event: "close", ...args: any[]) => void;
6
+ border: boolean;
7
+ visible: boolean;
8
+ expand: boolean;
9
+ large: boolean;
10
+ smooth: boolean;
11
+ high: boolean;
12
+ overflow: boolean;
13
+ title?: string | undefined;
14
+ $props: {
15
+ readonly border?: boolean | undefined;
16
+ readonly visible?: boolean | undefined;
17
+ readonly expand?: boolean | undefined;
18
+ readonly large?: boolean | undefined;
19
+ readonly smooth?: boolean | undefined;
20
+ readonly high?: boolean | undefined;
21
+ readonly overflow?: boolean | undefined;
22
+ readonly title?: string | undefined;
23
+ };
24
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
25
+ default?(_: {}): any;
26
+ buttons?(_: {}): any;
27
+ }>;
28
+ export default _default;
29
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
30
+ $slots: S;
31
+ });
@@ -6,15 +6,15 @@ declare const _default: import("vue").DefineComponent<{}, {
6
6
  pages: boolean;
7
7
  perPages: boolean;
8
8
  perPage: number;
9
+ currentPage: number;
9
10
  total?: number | undefined;
10
- currentPage?: number | undefined;
11
11
  $props: {
12
12
  readonly info?: boolean | undefined;
13
13
  readonly pages?: boolean | undefined;
14
14
  readonly perPages?: boolean | undefined;
15
15
  readonly perPage?: number | undefined;
16
- readonly total?: number | undefined;
17
16
  readonly currentPage?: number | undefined;
17
+ readonly total?: number | undefined;
18
18
  };
19
19
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
20
20
  export default _default;
@@ -0,0 +1,14 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
2
+ name: string;
3
+ label: string;
4
+ $props: {
5
+ readonly name?: string | undefined;
6
+ readonly label?: string | undefined;
7
+ };
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
9
+ default?(_: {}): any;
10
+ }>;
11
+ export default _default;
12
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
13
+ $slots: S;
14
+ });
@@ -0,0 +1,13 @@
1
+ declare const _default: __VLS_WithTemplateSlots<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
+ default?(_: {}): any;
9
+ }>;
10
+ export default _default;
11
+ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
12
+ $slots: S;
13
+ });
@@ -1,23 +1,27 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  buildColumns: () => void;
3
- $emit: (event: "changeSort", ...args: any[]) => void;
3
+ $emit: (event: "changeSort" | "expandRow", ...args: any[]) => void;
4
4
  data: unknown[];
5
5
  border: boolean;
6
6
  loading: boolean;
7
+ stripe: boolean;
7
8
  hideHeaders: boolean;
8
9
  noXPadding: boolean;
9
10
  totalOnBottom: boolean;
10
11
  totalOnTop: boolean;
12
+ valign: string;
11
13
  sortOptions?: unknown;
12
14
  totalItem?: unknown;
13
15
  $props: {
14
16
  readonly data?: unknown[] | undefined;
15
17
  readonly border?: boolean | undefined;
16
18
  readonly loading?: boolean | undefined;
19
+ readonly stripe?: boolean | undefined;
17
20
  readonly hideHeaders?: boolean | undefined;
18
21
  readonly noXPadding?: boolean | undefined;
19
22
  readonly totalOnBottom?: boolean | undefined;
20
23
  readonly totalOnTop?: boolean | undefined;
24
+ readonly valign?: string | undefined;
21
25
  readonly sortOptions?: unknown;
22
26
  readonly totalItem?: unknown;
23
27
  };
@@ -88,9 +88,9 @@ declare const _default: import("vue").DefineComponent<{
88
88
  type: string;
89
89
  width: string | number;
90
90
  visible: boolean;
91
+ maxWidth: string | number;
91
92
  field: string;
92
93
  minWidth: string | number;
93
- maxWidth: string | number;
94
94
  align: string;
95
95
  sortable: boolean;
96
96
  selectable: boolean;