plugin-ui-for-kzt 0.0.28 → 0.0.29

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 (33) hide show
  1. package/dist/components/BaseBadge/BaseBadge.vue.d.ts +2 -2
  2. package/dist/components/BaseButton/BaseButton.vue.d.ts +1 -1
  3. package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +2 -2
  4. package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +1 -1
  5. package/dist/components/BaseInput/BaseInput.vue.d.ts +4 -4
  6. package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +3 -3
  7. package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +4 -4
  8. package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +3 -3
  9. package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +3 -3
  10. package/dist/components/BasePagination/BasePagination.vue.d.ts +1 -1
  11. package/dist/components/BaseRadio/BaseRadio.vue.d.ts +2 -2
  12. package/dist/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +1 -1
  13. package/dist/components/BaseSelect/BaseSelect.vue.d.ts +14 -4
  14. package/dist/components/BaseTable/BaseTable.vue.d.ts +14 -1
  15. package/dist/components/BaseTag/BaseTag.vue.d.ts +1 -1
  16. package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +3 -3
  17. package/dist/components/BaseToast/BaseToast.vue.d.ts +1 -1
  18. package/dist/components/BaseToggle/BaseToggle.vue.d.ts +2 -2
  19. package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +2 -2
  20. package/dist/index.js +1 -1
  21. package/dist/sprite.svg +1 -1
  22. package/example/App.vue +270 -6
  23. package/package.json +1 -1
  24. package/src/assets/icons/search.svg +4 -0
  25. package/src/components/BaseButton/BaseButton.vue +20 -20
  26. package/src/components/BaseSelect/BaseSelect.vue +155 -10
  27. package/src/components/BaseTable/BaseTable.vue +278 -26
  28. package/src/components/BaseTable/README.md +96 -1
  29. package/src/components/BaseTooltip/BaseTooltip.vue +9 -5
  30. package/src/components/BaseUpload/BaseUpload.vue +97 -25
  31. package/src/types/input.d.ts +1 -0
  32. package/src/types/table.d.ts +6 -0
  33. package/src/vue-virtual-scroller.d.ts +4 -0
@@ -40,10 +40,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
40
40
  };
41
41
  }>> & Readonly<{}>, {
42
42
  size: string;
43
- color: string;
44
43
  closable: boolean;
44
+ color: string;
45
+ arrowRightIcon: boolean;
45
46
  hasDot: boolean;
46
47
  arrowUpIcon: boolean;
47
- arrowRightIcon: boolean;
48
48
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
49
49
  export default _default;
@@ -80,13 +80,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
80
80
  };
81
81
  }>> & Readonly<{}>, {
82
82
  size: string;
83
- color: string;
84
83
  tag: string;
85
84
  selected: boolean;
86
85
  active: boolean;
87
86
  disabled: boolean;
88
87
  required: boolean;
89
88
  loading: boolean;
89
+ color: string;
90
90
  outline: boolean;
91
91
  rounded: boolean;
92
92
  underline: boolean;
@@ -66,12 +66,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
66
66
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
67
67
  }>, {
68
68
  size: string;
69
+ modelValue: boolean;
70
+ readonly: boolean;
69
71
  selected: boolean;
70
72
  active: boolean;
71
73
  disabled: boolean;
72
74
  required: boolean;
73
75
  loading: boolean;
74
- modelValue: boolean;
75
- readonly: boolean;
76
76
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
77
77
  export default _default;
@@ -70,12 +70,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
70
70
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
71
71
  }>, {
72
72
  size: string;
73
+ modelValue: boolean;
73
74
  selected: boolean;
74
75
  active: boolean;
75
76
  disabled: boolean;
76
77
  required: boolean;
77
78
  loading: boolean;
78
- modelValue: boolean;
79
79
  parentWidth: boolean;
80
80
  preventControl: boolean;
81
81
  autoClose: boolean;
@@ -94,17 +94,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
94
94
  };
95
95
  }>> & Readonly<{}>, {
96
96
  size: string;
97
- type: string;
98
97
  id: string;
99
98
  mask: string;
100
- placeholder: string;
99
+ type: string;
100
+ modelValue: string;
101
+ readonly: boolean;
101
102
  selected: boolean;
102
103
  active: boolean;
103
104
  disabled: boolean;
104
105
  required: boolean;
105
106
  loading: boolean;
106
- modelValue: string;
107
- readonly: boolean;
107
+ placeholder: string;
108
108
  focusable: boolean;
109
109
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
110
110
  export default _default;
@@ -108,14 +108,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
108
108
  }>, {
109
109
  size: string;
110
110
  type: string;
111
- placeholder: string;
111
+ modelValue: string;
112
+ readonly: boolean;
112
113
  selected: boolean;
113
114
  active: boolean;
114
115
  disabled: boolean;
115
116
  required: boolean;
116
117
  loading: boolean;
117
- modelValue: string;
118
- readonly: boolean;
118
+ placeholder: string;
119
119
  focusable: boolean;
120
120
  range: boolean | Record<string, any>;
121
121
  minDate: null;
@@ -86,16 +86,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
86
86
  };
87
87
  }>> & Readonly<{}>, {
88
88
  size: string;
89
- type: string;
90
89
  error: string | boolean;
91
- placeholder: string;
90
+ type: string;
91
+ modelValue: string;
92
+ readonly: boolean;
92
93
  selected: boolean;
93
94
  active: boolean;
94
95
  disabled: boolean;
95
96
  required: boolean;
96
97
  loading: boolean;
97
- modelValue: string;
98
- readonly: boolean;
98
+ placeholder: string;
99
99
  focusable: boolean;
100
100
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
101
101
  export default _default;
@@ -87,14 +87,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
87
87
  }>, {
88
88
  size: string;
89
89
  type: string;
90
- placeholder: string;
90
+ modelValue: string;
91
+ readonly: boolean;
91
92
  selected: boolean;
92
93
  active: boolean;
93
94
  disabled: boolean;
94
95
  required: boolean;
95
96
  loading: boolean;
96
- modelValue: string;
97
- readonly: boolean;
97
+ placeholder: string;
98
98
  focusable: boolean;
99
99
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
100
100
  export default _default;
@@ -85,14 +85,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
85
85
  }>> & Readonly<{}>, {
86
86
  size: string;
87
87
  type: string;
88
- placeholder: string;
88
+ modelValue: string;
89
+ readonly: boolean;
89
90
  selected: boolean;
90
91
  active: boolean;
91
92
  disabled: boolean;
92
93
  required: boolean;
93
94
  loading: boolean;
94
- modelValue: string;
95
- readonly: boolean;
95
+ placeholder: string;
96
96
  focusable: boolean;
97
97
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
98
98
  export default _default;
@@ -42,8 +42,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
42
42
  "onUpdate:currentPage"?: ((...args: any[]) => any) | undefined;
43
43
  }>, {
44
44
  size: string;
45
- color: string;
46
45
  type: string;
46
+ color: string;
47
47
  currentPage: number;
48
48
  totalPages: number;
49
49
  maxDisplayedPages: number;
@@ -66,12 +66,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
66
66
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
67
67
  }>, {
68
68
  size: string;
69
+ modelValue: boolean;
70
+ readonly: boolean;
69
71
  selected: boolean;
70
72
  active: boolean;
71
73
  disabled: boolean;
72
74
  required: boolean;
73
75
  loading: boolean;
74
- modelValue: boolean;
75
- readonly: boolean;
76
76
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
77
77
  export default _default;
@@ -85,10 +85,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
85
85
  disabled: boolean;
86
86
  required: boolean;
87
87
  loading: boolean;
88
- options: never[];
89
88
  outline: boolean;
90
89
  rounded: boolean;
91
90
  underline: boolean;
92
91
  onlyIcon: boolean;
92
+ options: never[];
93
93
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
94
94
  export default _default;
@@ -22,6 +22,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
22
22
  transitionName: {};
23
23
  label: {};
24
24
  hint: {};
25
+ searchable: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
25
29
  size: {
26
30
  default: string;
27
31
  };
@@ -51,7 +55,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
51
55
  modelValue: {};
52
56
  }>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
53
57
  [key: string]: any;
54
- }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
58
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "change" | "update:modelValue")[], "error" | "change" | "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
55
59
  id: {};
56
60
  icon: {};
57
61
  name: {};
@@ -74,6 +78,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
74
78
  transitionName: {};
75
79
  label: {};
76
80
  hint: {};
81
+ searchable: {
82
+ type: BooleanConstructor;
83
+ default: boolean;
84
+ };
77
85
  size: {
78
86
  default: string;
79
87
  };
@@ -102,21 +110,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
102
110
  placeholder: {};
103
111
  modelValue: {};
104
112
  }>> & Readonly<{
113
+ onError?: ((...args: any[]) => any) | undefined;
105
114
  onChange?: ((...args: any[]) => any) | undefined;
106
115
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
107
116
  }>, {
108
117
  size: string;
118
+ readonly: boolean;
109
119
  selected: boolean;
110
120
  active: boolean;
111
121
  disabled: boolean;
112
122
  required: boolean;
113
123
  loading: boolean;
114
- readonly: boolean;
115
- options: never[];
116
- parentWidth: boolean;
117
124
  outline: boolean;
118
125
  rounded: boolean;
119
126
  underline: boolean;
127
+ options: never[];
128
+ parentWidth: boolean;
120
129
  multiple: boolean;
130
+ searchable: boolean;
121
131
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
122
132
  export default _default;
@@ -1,3 +1,4 @@
1
+ import 'vue-virtual-scroller/dist/vue-virtual-scroller.css';
1
2
  declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
3
  columns: {};
3
4
  data: {};
@@ -14,9 +15,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
14
15
  actions: {};
15
16
  pagination: {};
16
17
  subTable: {};
18
+ virtualScroll: {
19
+ type: BooleanConstructor;
20
+ };
21
+ virtualScrollThreshold: {};
22
+ virtualScrollHeight: {};
17
23
  }>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
18
24
  [key: string]: any;
19
- }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:selected" | "select-all" | "sort-change" | "page-change")[], "update:selected" | "select-all" | "sort-change" | "page-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
25
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:selected" | "select-all" | "sort-change" | "page-change" | "scroll-end")[], "update:selected" | "select-all" | "sort-change" | "page-change" | "scroll-end", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
20
26
  columns: {};
21
27
  data: {};
22
28
  rowKey: {
@@ -32,13 +38,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
32
38
  actions: {};
33
39
  pagination: {};
34
40
  subTable: {};
41
+ virtualScroll: {
42
+ type: BooleanConstructor;
43
+ };
44
+ virtualScrollThreshold: {};
45
+ virtualScrollHeight: {};
35
46
  }>> & Readonly<{
36
47
  "onUpdate:selected"?: ((...args: any[]) => any) | undefined;
37
48
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
38
49
  "onSort-change"?: ((...args: any[]) => any) | undefined;
39
50
  "onPage-change"?: ((...args: any[]) => any) | undefined;
51
+ "onScroll-end"?: ((...args: any[]) => any) | undefined;
40
52
  }>, {
41
53
  showRowSelection: boolean;
42
54
  showActions: boolean;
55
+ virtualScroll: boolean;
43
56
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
44
57
  export default _default;
@@ -52,9 +52,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
52
52
  onAddTag?: ((...args: any[]) => any) | undefined;
53
53
  }>, {
54
54
  size: string;
55
- color: string;
56
55
  closable: boolean;
57
56
  text: string;
57
+ color: string;
58
58
  isHasAddTag: boolean;
59
59
  addingTag: boolean;
60
60
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -80,14 +80,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
80
80
  maxLength: {};
81
81
  }>> & Readonly<{}>, {
82
82
  size: string;
83
- placeholder: string;
83
+ modelValue: string;
84
+ readonly: boolean;
84
85
  selected: boolean;
85
86
  active: boolean;
86
87
  disabled: boolean;
87
88
  required: boolean;
88
89
  loading: boolean;
89
- modelValue: string;
90
- readonly: boolean;
90
+ placeholder: string;
91
91
  focusable: boolean;
92
92
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
93
93
  export default _default;
@@ -59,9 +59,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
59
59
  onPrimaryAction?: ((...args: any[]) => any) | undefined;
60
60
  onSecondaryAction?: ((...args: any[]) => any) | undefined;
61
61
  }>, {
62
- type: string;
63
62
  isOpen: boolean;
64
63
  closable: boolean;
64
+ type: string;
65
65
  withBackground: boolean;
66
66
  showIcon: boolean;
67
67
  duration: undefined;
@@ -64,12 +64,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
64
64
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
65
65
  }>, {
66
66
  size: string;
67
+ modelValue: boolean;
68
+ readonly: boolean;
67
69
  selected: boolean;
68
70
  active: boolean;
69
71
  disabled: boolean;
70
72
  required: boolean;
71
73
  loading: boolean;
72
- modelValue: boolean;
73
- readonly: boolean;
74
74
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
75
75
  export default _default;
@@ -33,9 +33,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
33
33
  default: string;
34
34
  };
35
35
  }>> & Readonly<{}>, {
36
+ arrow: boolean;
36
37
  theme: string;
37
- trigger: string;
38
38
  position: string;
39
- arrow: boolean;
39
+ trigger: string;
40
40
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
41
41
  export default _default;