rayyy-vue-table-components 1.2.18 → 1.2.19

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/dist/index.es.js +11230 -9141
  2. package/dist/index.umd.js +21 -21
  3. package/dist/rayyy-vue-table-components.css +1 -1
  4. package/dist/src/components/form/BaseMultipleInput.vue.d.ts +549 -0
  5. package/dist/src/components/index.d.ts +11 -7
  6. package/dist/src/components/items/BaseBtn.vue.d.ts +0 -1
  7. package/dist/src/components/layout/SearchableListPanel.vue.d.ts +40 -0
  8. package/dist/src/index.d.ts +2 -2
  9. package/dist/src/router/constants.d.ts +28 -0
  10. package/dist/src/types/OptionDto.d.ts +7 -0
  11. package/dist/src/types/components.d.ts +122 -0
  12. package/dist/src/views/DemoPage.vue.d.ts +1 -1
  13. package/dist/src/views/demo/BaseBtnDemo.vue.d.ts +2 -0
  14. package/dist/src/views/demo/BaseDialogDemo.vue.d.ts +2 -0
  15. package/dist/src/views/demo/BaseFormDemo.vue.d.ts +2 -0
  16. package/dist/src/views/demo/BaseInputDemo.vue.d.ts +2 -0
  17. package/dist/src/views/demo/BaseMultipleInputDemo.vue.d.ts +2 -0
  18. package/dist/src/views/demo/BaseTableDemo.vue.d.ts +2 -0
  19. package/dist/src/views/demo/FilterBtnDemo.vue.d.ts +2 -0
  20. package/dist/src/views/demo/FunctionHeaderDemo.vue.d.ts +2 -0
  21. package/dist/src/views/demo/MainPanelDemo.vue.d.ts +2 -0
  22. package/dist/src/views/demo/SearchBarDemo.vue.d.ts +2 -0
  23. package/dist/src/views/demo/SearchableListPanelDemo.vue.d.ts +2 -0
  24. package/dist/src/views/demo/SortTableDemo.vue.d.ts +2 -0
  25. package/dist/src/views/demo/TransferDialogDemo.vue.d.ts +2 -0
  26. package/dist/src/views/demo/TransferItemDemo.vue.d.ts +2 -0
  27. package/package.json +1 -1
  28. package/src/components/form/BaseMultipleInput.vue +112 -0
  29. package/src/components/form/BaseSelector.vue +58 -0
  30. package/src/components/index.ts +11 -7
  31. package/src/components/items/BaseBtn.vue +2 -2
  32. package/src/components/{BaseDialog.vue → items/BaseDialog.vue} +1 -1
  33. package/src/components/items/FilterBtn.vue +1 -1
  34. package/src/components/items/SearchBar.vue +1 -1
  35. package/src/components/{items → layout}/FunctionHeader.vue +1 -1
  36. package/src/components/layout/SearchableListPanel.vue +81 -0
  37. package/src/components/transfer/TransferDialog.vue +1 -1
  38. package/src/types/OptionDto.ts +7 -0
  39. package/src/types/components.d.ts +122 -0
  40. package/dist/src/components/{BaseForm.vue.d.ts → form/BaseForm.vue.d.ts} +0 -0
  41. package/dist/src/components/{items → form}/BaseInput.vue.d.ts +0 -0
  42. package/dist/src/components/{BaseDialog.vue.d.ts → items/BaseDialog.vue.d.ts} +0 -0
  43. package/dist/src/components/{items → layout}/FunctionHeader.vue.d.ts +0 -0
  44. package/dist/src/components/{items → layout}/MainPanel.vue.d.ts +0 -0
  45. package/src/components/{BaseForm.vue → form/BaseForm.vue} +0 -0
  46. package/src/components/{items → form}/BaseInput.vue +20 -20
  47. /package/src/components/{items → layout}/MainPanel.vue +0 -0
@@ -0,0 +1,549 @@
1
+ type __VLS_Props = {
2
+ modelValue: string[];
3
+ type?: string;
4
+ validateRule?: (inputString: string) => boolean;
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
7
+ "update:modelValue": (val: string[]) => any;
8
+ inputError: () => any;
9
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
+ "onUpdate:modelValue"?: ((val: string[]) => any) | undefined;
11
+ onInputError?: (() => any) | undefined;
12
+ }>, {
13
+ type: string;
14
+ validateRule: (inputString: string) => boolean;
15
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
16
+ InputRef: ({
17
+ $: import('vue').ComponentInternalInstance;
18
+ $data: {};
19
+ $props: Partial<{
20
+ readonly disabled: boolean;
21
+ readonly id: string;
22
+ readonly type: string;
23
+ readonly modelValue: string | number | null | undefined;
24
+ readonly tabindex: string | number;
25
+ readonly readonly: boolean;
26
+ readonly autosize: import('element-plus').InputAutoSize;
27
+ readonly autocomplete: string;
28
+ readonly containerRole: string;
29
+ readonly validateEvent: boolean;
30
+ readonly inputStyle: import('vue').StyleValue;
31
+ readonly rows: number;
32
+ readonly inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
33
+ readonly clearable: boolean;
34
+ readonly showPassword: boolean;
35
+ readonly showWordLimit: boolean;
36
+ readonly autofocus: boolean;
37
+ }> & Omit<{
38
+ readonly type: string;
39
+ readonly disabled: boolean;
40
+ readonly autofocus: boolean;
41
+ readonly modelValue: string | number | null;
42
+ readonly showPassword: boolean;
43
+ readonly readonly: boolean;
44
+ readonly autocomplete: string;
45
+ readonly autosize: import('element-plus').InputAutoSize;
46
+ readonly clearable: boolean;
47
+ readonly showWordLimit: boolean;
48
+ readonly tabindex: string | number;
49
+ readonly validateEvent: boolean;
50
+ readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
51
+ readonly rows: number;
52
+ readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
53
+ readonly size?: ("" | "default" | "small" | "large") | undefined;
54
+ readonly id?: string | undefined;
55
+ readonly ariaLabel?: string | undefined;
56
+ readonly placeholder?: string | undefined;
57
+ readonly formatter?: Function | undefined;
58
+ readonly form?: string | undefined;
59
+ readonly maxlength?: (string | number) | undefined;
60
+ readonly inputmode?: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
61
+ readonly name?: string | undefined;
62
+ readonly minlength?: (string | number) | undefined;
63
+ readonly parser?: Function | undefined;
64
+ readonly clearIcon?: (string | import('vue').Component) | undefined;
65
+ readonly suffixIcon?: (string | import('vue').Component) | undefined;
66
+ readonly prefixIcon?: (string | import('vue').Component) | undefined;
67
+ readonly containerRole?: string | undefined;
68
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
69
+ onChange?: ((value: string) => any) | undefined | undefined;
70
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
71
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
72
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
73
+ onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
74
+ onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
75
+ onInput?: ((value: string) => any) | undefined | undefined;
76
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
77
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
78
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
79
+ onClear?: (() => any) | undefined | undefined;
80
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "id" | "autofocus" | "modelValue" | "showPassword" | "readonly" | "autocomplete" | "inputmode" | "autosize" | "clearable" | "showWordLimit" | "containerRole" | "tabindex" | "validateEvent" | "inputStyle" | "rows">;
81
+ $attrs: {
82
+ [x: string]: unknown;
83
+ };
84
+ $refs: {
85
+ [x: string]: unknown;
86
+ };
87
+ $slots: Readonly<{
88
+ [name: string]: import('vue').Slot<any> | undefined;
89
+ }>;
90
+ $root: import('vue').ComponentPublicInstance | null;
91
+ $parent: import('vue').ComponentPublicInstance | null;
92
+ $host: Element | null;
93
+ $emit: ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "input", value: string) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void) & ((event: "clear") => void) & ((event: "update:modelValue", value: string) => void);
94
+ $el: any;
95
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
96
+ readonly inputmode: {
97
+ readonly type: import('vue').PropType<"none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
98
+ readonly required: false;
99
+ readonly validator: ((val: unknown) => boolean) | undefined;
100
+ __epPropKey: true;
101
+ } & {
102
+ readonly default: undefined;
103
+ };
104
+ readonly name: StringConstructor;
105
+ readonly ariaLabel: StringConstructor;
106
+ readonly id: {
107
+ readonly type: import('vue').PropType<string>;
108
+ readonly required: false;
109
+ readonly validator: ((val: unknown) => boolean) | undefined;
110
+ __epPropKey: true;
111
+ } & {
112
+ readonly default: undefined;
113
+ };
114
+ readonly size: {
115
+ readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
116
+ readonly required: false;
117
+ readonly validator: ((val: unknown) => boolean) | undefined;
118
+ __epPropKey: true;
119
+ };
120
+ readonly disabled: BooleanConstructor;
121
+ readonly modelValue: {
122
+ readonly type: import('vue').PropType<string | number | null | undefined>;
123
+ readonly required: false;
124
+ readonly validator: ((val: unknown) => boolean) | undefined;
125
+ __epPropKey: true;
126
+ } & {
127
+ readonly default: "";
128
+ };
129
+ readonly maxlength: {
130
+ readonly type: import('vue').PropType<string | number>;
131
+ readonly required: false;
132
+ readonly validator: ((val: unknown) => boolean) | undefined;
133
+ __epPropKey: true;
134
+ };
135
+ readonly minlength: {
136
+ readonly type: import('vue').PropType<string | number>;
137
+ readonly required: false;
138
+ readonly validator: ((val: unknown) => boolean) | undefined;
139
+ __epPropKey: true;
140
+ };
141
+ readonly type: {
142
+ readonly type: import('vue').PropType<string>;
143
+ readonly required: false;
144
+ readonly validator: ((val: unknown) => boolean) | undefined;
145
+ __epPropKey: true;
146
+ } & {
147
+ readonly default: "text";
148
+ };
149
+ readonly resize: {
150
+ readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
151
+ readonly required: false;
152
+ readonly validator: ((val: unknown) => boolean) | undefined;
153
+ __epPropKey: true;
154
+ };
155
+ readonly autosize: {
156
+ readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
157
+ readonly required: false;
158
+ readonly validator: ((val: unknown) => boolean) | undefined;
159
+ __epPropKey: true;
160
+ } & {
161
+ readonly default: false;
162
+ };
163
+ readonly autocomplete: {
164
+ readonly type: import('vue').PropType<string>;
165
+ readonly required: false;
166
+ readonly validator: ((val: unknown) => boolean) | undefined;
167
+ __epPropKey: true;
168
+ } & {
169
+ readonly default: "off";
170
+ };
171
+ readonly formatter: {
172
+ readonly type: import('vue').PropType<Function>;
173
+ readonly required: false;
174
+ readonly validator: ((val: unknown) => boolean) | undefined;
175
+ __epPropKey: true;
176
+ };
177
+ readonly parser: {
178
+ readonly type: import('vue').PropType<Function>;
179
+ readonly required: false;
180
+ readonly validator: ((val: unknown) => boolean) | undefined;
181
+ __epPropKey: true;
182
+ };
183
+ readonly placeholder: {
184
+ readonly type: import('vue').PropType<string>;
185
+ readonly required: false;
186
+ readonly validator: ((val: unknown) => boolean) | undefined;
187
+ __epPropKey: true;
188
+ };
189
+ readonly form: {
190
+ readonly type: import('vue').PropType<string>;
191
+ readonly required: false;
192
+ readonly validator: ((val: unknown) => boolean) | undefined;
193
+ __epPropKey: true;
194
+ };
195
+ readonly readonly: BooleanConstructor;
196
+ readonly clearable: BooleanConstructor;
197
+ readonly clearIcon: {
198
+ readonly type: import('vue').PropType<string | import('vue').Component>;
199
+ readonly required: false;
200
+ readonly validator: ((val: unknown) => boolean) | undefined;
201
+ __epPropKey: true;
202
+ };
203
+ readonly showPassword: BooleanConstructor;
204
+ readonly showWordLimit: BooleanConstructor;
205
+ readonly suffixIcon: {
206
+ readonly type: import('vue').PropType<string | import('vue').Component>;
207
+ readonly required: false;
208
+ readonly validator: ((val: unknown) => boolean) | undefined;
209
+ __epPropKey: true;
210
+ };
211
+ readonly prefixIcon: {
212
+ readonly type: import('vue').PropType<string | import('vue').Component>;
213
+ readonly required: false;
214
+ readonly validator: ((val: unknown) => boolean) | undefined;
215
+ __epPropKey: true;
216
+ };
217
+ readonly containerRole: {
218
+ readonly type: import('vue').PropType<string>;
219
+ readonly required: false;
220
+ readonly validator: ((val: unknown) => boolean) | undefined;
221
+ __epPropKey: true;
222
+ } & {
223
+ readonly default: undefined;
224
+ };
225
+ readonly tabindex: {
226
+ readonly type: import('vue').PropType<string | number>;
227
+ readonly required: false;
228
+ readonly validator: ((val: unknown) => boolean) | undefined;
229
+ __epPropKey: true;
230
+ } & {
231
+ readonly default: 0;
232
+ };
233
+ readonly validateEvent: {
234
+ readonly type: import('vue').PropType<boolean>;
235
+ readonly required: false;
236
+ readonly validator: ((val: unknown) => boolean) | undefined;
237
+ __epPropKey: true;
238
+ } & {
239
+ readonly default: true;
240
+ };
241
+ readonly inputStyle: {
242
+ readonly type: import('vue').PropType<import('vue').StyleValue>;
243
+ readonly required: false;
244
+ readonly validator: ((val: unknown) => boolean) | undefined;
245
+ __epPropKey: true;
246
+ } & {
247
+ readonly default: () => {};
248
+ };
249
+ readonly autofocus: BooleanConstructor;
250
+ readonly rows: {
251
+ readonly type: import('vue').PropType<number>;
252
+ readonly required: false;
253
+ readonly validator: ((val: unknown) => boolean) | undefined;
254
+ __epPropKey: true;
255
+ } & {
256
+ readonly default: 2;
257
+ };
258
+ }>> & {
259
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
260
+ onChange?: ((value: string) => any) | undefined;
261
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
262
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
263
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
264
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
265
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
266
+ onInput?: ((value: string) => any) | undefined;
267
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
268
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
269
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
270
+ onClear?: (() => any) | undefined;
271
+ }, {
272
+ input: import('vue').ShallowRef<HTMLInputElement | undefined>;
273
+ textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
274
+ ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
275
+ textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
276
+ autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
277
+ isComposing: import('vue').Ref<boolean>;
278
+ focus: () => void | undefined;
279
+ blur: () => void | undefined;
280
+ select: () => void;
281
+ clear: () => void;
282
+ resizeTextarea: () => void;
283
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
284
+ input: (value: string) => void;
285
+ clear: () => void;
286
+ "update:modelValue": (value: string) => void;
287
+ change: (value: string) => void;
288
+ blur: (evt: FocusEvent) => void;
289
+ compositionend: (evt: CompositionEvent) => void;
290
+ compositionstart: (evt: CompositionEvent) => void;
291
+ compositionupdate: (evt: CompositionEvent) => void;
292
+ focus: (evt: FocusEvent) => void;
293
+ keydown: (evt: Event | KeyboardEvent) => void;
294
+ mouseenter: (evt: MouseEvent) => void;
295
+ mouseleave: (evt: MouseEvent) => void;
296
+ }, string, {
297
+ readonly disabled: boolean;
298
+ readonly id: string;
299
+ readonly type: string;
300
+ readonly modelValue: string | number | null | undefined;
301
+ readonly tabindex: string | number;
302
+ readonly readonly: boolean;
303
+ readonly autosize: import('element-plus').InputAutoSize;
304
+ readonly autocomplete: string;
305
+ readonly containerRole: string;
306
+ readonly validateEvent: boolean;
307
+ readonly inputStyle: import('vue').StyleValue;
308
+ readonly rows: number;
309
+ readonly inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
310
+ readonly clearable: boolean;
311
+ readonly showPassword: boolean;
312
+ readonly showWordLimit: boolean;
313
+ readonly autofocus: boolean;
314
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
315
+ beforeCreate?: (() => void) | (() => void)[];
316
+ created?: (() => void) | (() => void)[];
317
+ beforeMount?: (() => void) | (() => void)[];
318
+ mounted?: (() => void) | (() => void)[];
319
+ beforeUpdate?: (() => void) | (() => void)[];
320
+ updated?: (() => void) | (() => void)[];
321
+ activated?: (() => void) | (() => void)[];
322
+ deactivated?: (() => void) | (() => void)[];
323
+ beforeDestroy?: (() => void) | (() => void)[];
324
+ beforeUnmount?: (() => void) | (() => void)[];
325
+ destroyed?: (() => void) | (() => void)[];
326
+ unmounted?: (() => void) | (() => void)[];
327
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
328
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
329
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
330
+ };
331
+ $forceUpdate: () => void;
332
+ $nextTick: typeof import('vue').nextTick;
333
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
334
+ } & Readonly<{
335
+ readonly disabled: boolean;
336
+ readonly id: string;
337
+ readonly type: string;
338
+ readonly modelValue: string | number | null | undefined;
339
+ readonly tabindex: string | number;
340
+ readonly readonly: boolean;
341
+ readonly autosize: import('element-plus').InputAutoSize;
342
+ readonly autocomplete: string;
343
+ readonly containerRole: string;
344
+ readonly validateEvent: boolean;
345
+ readonly inputStyle: import('vue').StyleValue;
346
+ readonly rows: number;
347
+ readonly inputmode: "none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
348
+ readonly clearable: boolean;
349
+ readonly showPassword: boolean;
350
+ readonly showWordLimit: boolean;
351
+ readonly autofocus: boolean;
352
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
353
+ readonly inputmode: {
354
+ readonly type: import('vue').PropType<"none" | "search" | "text" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
355
+ readonly required: false;
356
+ readonly validator: ((val: unknown) => boolean) | undefined;
357
+ __epPropKey: true;
358
+ } & {
359
+ readonly default: undefined;
360
+ };
361
+ readonly name: StringConstructor;
362
+ readonly ariaLabel: StringConstructor;
363
+ readonly id: {
364
+ readonly type: import('vue').PropType<string>;
365
+ readonly required: false;
366
+ readonly validator: ((val: unknown) => boolean) | undefined;
367
+ __epPropKey: true;
368
+ } & {
369
+ readonly default: undefined;
370
+ };
371
+ readonly size: {
372
+ readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
373
+ readonly required: false;
374
+ readonly validator: ((val: unknown) => boolean) | undefined;
375
+ __epPropKey: true;
376
+ };
377
+ readonly disabled: BooleanConstructor;
378
+ readonly modelValue: {
379
+ readonly type: import('vue').PropType<string | number | null | undefined>;
380
+ readonly required: false;
381
+ readonly validator: ((val: unknown) => boolean) | undefined;
382
+ __epPropKey: true;
383
+ } & {
384
+ readonly default: "";
385
+ };
386
+ readonly maxlength: {
387
+ readonly type: import('vue').PropType<string | number>;
388
+ readonly required: false;
389
+ readonly validator: ((val: unknown) => boolean) | undefined;
390
+ __epPropKey: true;
391
+ };
392
+ readonly minlength: {
393
+ readonly type: import('vue').PropType<string | number>;
394
+ readonly required: false;
395
+ readonly validator: ((val: unknown) => boolean) | undefined;
396
+ __epPropKey: true;
397
+ };
398
+ readonly type: {
399
+ readonly type: import('vue').PropType<string>;
400
+ readonly required: false;
401
+ readonly validator: ((val: unknown) => boolean) | undefined;
402
+ __epPropKey: true;
403
+ } & {
404
+ readonly default: "text";
405
+ };
406
+ readonly resize: {
407
+ readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
408
+ readonly required: false;
409
+ readonly validator: ((val: unknown) => boolean) | undefined;
410
+ __epPropKey: true;
411
+ };
412
+ readonly autosize: {
413
+ readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
414
+ readonly required: false;
415
+ readonly validator: ((val: unknown) => boolean) | undefined;
416
+ __epPropKey: true;
417
+ } & {
418
+ readonly default: false;
419
+ };
420
+ readonly autocomplete: {
421
+ readonly type: import('vue').PropType<string>;
422
+ readonly required: false;
423
+ readonly validator: ((val: unknown) => boolean) | undefined;
424
+ __epPropKey: true;
425
+ } & {
426
+ readonly default: "off";
427
+ };
428
+ readonly formatter: {
429
+ readonly type: import('vue').PropType<Function>;
430
+ readonly required: false;
431
+ readonly validator: ((val: unknown) => boolean) | undefined;
432
+ __epPropKey: true;
433
+ };
434
+ readonly parser: {
435
+ readonly type: import('vue').PropType<Function>;
436
+ readonly required: false;
437
+ readonly validator: ((val: unknown) => boolean) | undefined;
438
+ __epPropKey: true;
439
+ };
440
+ readonly placeholder: {
441
+ readonly type: import('vue').PropType<string>;
442
+ readonly required: false;
443
+ readonly validator: ((val: unknown) => boolean) | undefined;
444
+ __epPropKey: true;
445
+ };
446
+ readonly form: {
447
+ readonly type: import('vue').PropType<string>;
448
+ readonly required: false;
449
+ readonly validator: ((val: unknown) => boolean) | undefined;
450
+ __epPropKey: true;
451
+ };
452
+ readonly readonly: BooleanConstructor;
453
+ readonly clearable: BooleanConstructor;
454
+ readonly clearIcon: {
455
+ readonly type: import('vue').PropType<string | import('vue').Component>;
456
+ readonly required: false;
457
+ readonly validator: ((val: unknown) => boolean) | undefined;
458
+ __epPropKey: true;
459
+ };
460
+ readonly showPassword: BooleanConstructor;
461
+ readonly showWordLimit: BooleanConstructor;
462
+ readonly suffixIcon: {
463
+ readonly type: import('vue').PropType<string | import('vue').Component>;
464
+ readonly required: false;
465
+ readonly validator: ((val: unknown) => boolean) | undefined;
466
+ __epPropKey: true;
467
+ };
468
+ readonly prefixIcon: {
469
+ readonly type: import('vue').PropType<string | import('vue').Component>;
470
+ readonly required: false;
471
+ readonly validator: ((val: unknown) => boolean) | undefined;
472
+ __epPropKey: true;
473
+ };
474
+ readonly containerRole: {
475
+ readonly type: import('vue').PropType<string>;
476
+ readonly required: false;
477
+ readonly validator: ((val: unknown) => boolean) | undefined;
478
+ __epPropKey: true;
479
+ } & {
480
+ readonly default: undefined;
481
+ };
482
+ readonly tabindex: {
483
+ readonly type: import('vue').PropType<string | number>;
484
+ readonly required: false;
485
+ readonly validator: ((val: unknown) => boolean) | undefined;
486
+ __epPropKey: true;
487
+ } & {
488
+ readonly default: 0;
489
+ };
490
+ readonly validateEvent: {
491
+ readonly type: import('vue').PropType<boolean>;
492
+ readonly required: false;
493
+ readonly validator: ((val: unknown) => boolean) | undefined;
494
+ __epPropKey: true;
495
+ } & {
496
+ readonly default: true;
497
+ };
498
+ readonly inputStyle: {
499
+ readonly type: import('vue').PropType<import('vue').StyleValue>;
500
+ readonly required: false;
501
+ readonly validator: ((val: unknown) => boolean) | undefined;
502
+ __epPropKey: true;
503
+ } & {
504
+ readonly default: () => {};
505
+ };
506
+ readonly autofocus: BooleanConstructor;
507
+ readonly rows: {
508
+ readonly type: import('vue').PropType<number>;
509
+ readonly required: false;
510
+ readonly validator: ((val: unknown) => boolean) | undefined;
511
+ __epPropKey: true;
512
+ } & {
513
+ readonly default: 2;
514
+ };
515
+ }>> & {
516
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
517
+ onChange?: ((value: string) => any) | undefined;
518
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
519
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
520
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
521
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
522
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
523
+ onInput?: ((value: string) => any) | undefined;
524
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
525
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
526
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
527
+ onClear?: (() => any) | undefined;
528
+ }, "blur" | "focus" | "input" | "select" | "ref" | "type" | "disabled" | "id" | "textarea" | "autofocus" | "clear" | "modelValue" | "showPassword" | "readonly" | "autocomplete" | "inputmode" | "autosize" | "clearable" | "showWordLimit" | "containerRole" | "tabindex" | "validateEvent" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
529
+ input: import('vue').ShallowRef<HTMLInputElement | undefined>;
530
+ textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
531
+ ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
532
+ textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
533
+ autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
534
+ isComposing: import('vue').Ref<boolean>;
535
+ focus: () => void | undefined;
536
+ blur: () => void | undefined;
537
+ select: () => void;
538
+ clear: () => void;
539
+ resizeTextarea: () => void;
540
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
541
+ $slots: {
542
+ prepend?(_: {}): any;
543
+ prefix?(_: {}): any;
544
+ suffix?(_: {}): any;
545
+ append?(_: {}): any;
546
+ };
547
+ }) | null;
548
+ }, HTMLDivElement>;
549
+ export default _default;
@@ -1,22 +1,26 @@
1
1
  export { default as BaseTable } from './tables/BaseTable.vue';
2
2
  export { default as BaseBtn } from './items/BaseBtn.vue';
3
- export { default as BaseInput } from './items/BaseInput.vue';
3
+ export { default as BaseInput } from './form/BaseInput.vue';
4
4
  export { default as FilterBtn } from './items/FilterBtn.vue';
5
- export { default as BaseDialog } from './BaseDialog.vue';
6
- export { default as BaseForm } from './BaseForm.vue';
5
+ export { default as BaseDialog } from './items/BaseDialog.vue';
6
+ export { default as BaseForm } from './form/BaseForm.vue';
7
+ export { default as BaseMultipleInput } from './form/BaseMultipleInput.vue';
7
8
  export { default as SortTable } from './tables/SortTable.vue';
8
9
  export { default as SearchBar } from './items/SearchBar.vue';
9
10
  export { default as TransferDialog } from './transfer/TransferDialog.vue';
10
11
  export { default as TransferItem } from './transfer/transferItem.vue';
11
- export { default as FunctionHeader } from './items/FunctionHeader.vue';
12
- export { default as MainPanel } from './items/MainPanel.vue';
12
+ export { default as FunctionHeader } from './layout/FunctionHeader.vue';
13
+ export { default as MainPanel } from './layout/MainPanel.vue';
14
+ export { default as SearchableListPanel } from './layout/SearchableListPanel.vue';
13
15
  export type { BaseTableProps, BaseTableEmits, BaseTableInstance, BaseBtnProps, BaseBtnEmits, BaseBtnInstance, BaseDialogProps, BaseDialogEmits, BaseDialogInstance, PluginOptions, VueTableComponentsPlugin, } from '../types/components';
14
16
  export type { default as BaseTableType } from './tables/BaseTable.vue';
15
17
  export type { default as BaseBtnType } from './items/BaseBtn.vue';
16
- export type { default as BaseInputType } from './items/BaseInput.vue';
18
+ export type { default as BaseInputType } from './form/BaseInput.vue';
17
19
  export type { default as FilterBtnType } from './items/FilterBtn.vue';
18
- export type { default as BaseDialogType } from './BaseDialog.vue';
20
+ export type { default as BaseDialogType } from './items/BaseDialog.vue';
19
21
  export type { default as SortTableType } from './tables/SortTable.vue';
20
22
  export type { default as SearchBarType } from './items/SearchBar.vue';
21
23
  export type { default as TransferDialogType } from './transfer/TransferDialog.vue';
22
24
  export type { default as TransferItemType } from './transfer/transferItem.vue';
25
+ export type { default as SearchableListPanelType } from './layout/SearchableListPanel.vue';
26
+ export type { default as BaseMultipleInputType } from './form/BaseMultipleInput.vue';
@@ -10,7 +10,6 @@ type __VLS_Props = {
10
10
  link?: boolean;
11
11
  isFill?: boolean;
12
12
  loading?: boolean;
13
- dataCy?: string;
14
13
  };
15
14
  declare function __VLS_template(): {
16
15
  attrs: Partial<{}>;
@@ -0,0 +1,40 @@
1
+ import { Pager } from '../../types';
2
+ type __VLS_Props = {
3
+ title: string;
4
+ pagination: Pager;
5
+ showBack?: boolean | string | object;
6
+ showSearch?: boolean;
7
+ showEdit?: boolean;
8
+ showFilter?: boolean;
9
+ showDefaultSearch?: boolean;
10
+ badgeValue?: number;
11
+ };
12
+ declare function __VLS_template(): {
13
+ attrs: Partial<{}>;
14
+ slots: {
15
+ firstButton?(_: {}): any;
16
+ customButton?(_: {}): any;
17
+ lastButton?(_: {}): any;
18
+ filterDrawBody?(_: {}): any;
19
+ main?(_: {}): any;
20
+ };
21
+ refs: {};
22
+ rootEl: any;
23
+ };
24
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
25
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
26
+ search: (data: string | null) => any;
27
+ updatePage: (page: number) => any;
28
+ updatePageSize: (limit: number) => any;
29
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
30
+ onSearch?: ((data: string | null) => any) | undefined;
31
+ onUpdatePage?: ((page: number) => any) | undefined;
32
+ onUpdatePageSize?: ((limit: number) => any) | undefined;
33
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
34
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
35
+ export default _default;
36
+ type __VLS_WithTemplateSlots<T, S> = T & {
37
+ new (): {
38
+ $slots: S;
39
+ };
40
+ };
@@ -1,9 +1,9 @@
1
1
  import { App } from 'vue';
2
2
  import { default as BaseTable } from './components/tables/BaseTable.vue';
3
3
  import { default as BaseBtn } from './components/items/BaseBtn.vue';
4
- import { default as BaseInput } from './components/items/BaseInput.vue';
4
+ import { default as BaseInput } from './components/form/BaseInput.vue';
5
5
  import { default as FilterBtn } from './components/items/FilterBtn.vue';
6
- import { default as BaseDialog } from './components/BaseDialog.vue';
6
+ import { default as BaseDialog } from './components/items/BaseDialog.vue';
7
7
  import { default as SortTable } from './components/tables/SortTable.vue';
8
8
  import { default as SearchBar } from './components/items/SearchBar.vue';
9
9
  export * from './types';