sprintify-ui 0.0.6 → 0.0.7

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 (41) hide show
  1. package/README.md +13 -0
  2. package/dist/sprintify-ui.es.js +8970 -7918
  3. package/dist/types/src/components/BaseApp.vue.d.ts +48 -0
  4. package/dist/types/src/components/BaseAppDialogs.vue.d.ts +80 -0
  5. package/dist/types/src/components/BaseAppNotifications.vue.d.ts +44 -0
  6. package/dist/types/src/components/BaseAutocomplete.vue.d.ts +7 -7
  7. package/dist/types/src/components/BaseAutocompleteFetch.vue.d.ts +7 -7
  8. package/dist/types/src/components/BaseBelongsTo.vue.d.ts +4 -4
  9. package/dist/types/src/components/BaseDataIterator.vue.d.ts +4 -4
  10. package/dist/types/src/components/BaseDataTable.vue.d.ts +4 -4
  11. package/dist/types/src/components/BaseFileUploader.vue.d.ts +20 -1
  12. package/dist/types/src/components/BaseInput.vue.d.ts +4 -4
  13. package/dist/types/src/components/BaseLoadingCover.vue.d.ts +4 -4
  14. package/dist/types/src/components/BasePassword.vue.d.ts +1 -1
  15. package/dist/types/src/components/BaseSelect.vue.d.ts +1 -1
  16. package/dist/types/src/components/BaseTextarea.vue.d.ts +4 -4
  17. package/dist/types/src/components/BaseTextareaAutoresize.vue.d.ts +1 -1
  18. package/dist/types/src/components/index.d.ts +9 -1
  19. package/dist/types/src/index.d.ts +10 -4
  20. package/dist/types/src/stores/dialogs.d.ts +9 -0
  21. package/dist/types/src/stores/notifications.d.ts +10 -0
  22. package/dist/types/src/stores/systemAlerts.d.ts +9 -0
  23. package/dist/types/src/types/types.d.ts +58 -0
  24. package/package.json +1 -1
  25. package/src/components/BaseApp.vue +15 -0
  26. package/src/components/BaseAppDialogs.vue +113 -0
  27. package/src/components/BaseAppNotifications.vue +73 -0
  28. package/src/components/BaseDataTable.vue +4 -4
  29. package/src/components/BaseDatePicker.vue +1 -1
  30. package/src/components/BaseDateSelect.vue +1 -1
  31. package/src/components/BaseDialog.vue +1 -0
  32. package/src/components/BaseFileUploader.vue +5 -1
  33. package/src/components/BaseInputLabel.vue +3 -3
  34. package/src/components/index.ts +16 -1
  35. package/src/index.ts +21 -14
  36. package/src/stores/dialogs.ts +45 -0
  37. package/src/stores/notifications.ts +47 -0
  38. package/src/stores/systemAlerts.ts +33 -0
  39. package/src/types/types.ts +67 -0
  40. package/dist/types/src/components/BaseLoadingPage.vue.d.ts +0 -2
  41. package/src/components/BaseLoadingPage.vue +0 -19
@@ -0,0 +1,48 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
6
+ $attrs: {
7
+ [x: string]: unknown;
8
+ };
9
+ $refs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $slots: Readonly<{
13
+ [name: string]: import("vue").Slot | undefined;
14
+ }>;
15
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
16
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
17
+ $emit: (event: string, ...args: any[]) => void;
18
+ $el: any;
19
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
20
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
21
+ created?: ((() => void) | (() => void)[]) | undefined;
22
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
23
+ mounted?: ((() => void) | (() => void)[]) | undefined;
24
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
25
+ updated?: ((() => void) | (() => void)[]) | undefined;
26
+ activated?: ((() => void) | (() => void)[]) | undefined;
27
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
28
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
29
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
30
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
31
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
32
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
33
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
34
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
35
+ };
36
+ $forceUpdate: () => void;
37
+ $nextTick: typeof import("vue").nextTick;
38
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
39
+ } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
40
+ __isFragment?: undefined;
41
+ __isTeleport?: undefined;
42
+ __isSuspense?: undefined;
43
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
44
+ $slots: {
45
+ default: (_: {}) => any;
46
+ };
47
+ });
48
+ export default _default;
@@ -0,0 +1,80 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
6
+ $attrs: {
7
+ [x: string]: unknown;
8
+ };
9
+ $refs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $slots: Readonly<{
13
+ [name: string]: import("vue").Slot | undefined;
14
+ }>;
15
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
16
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
17
+ $emit: (event: string, ...args: any[]) => void;
18
+ $el: any;
19
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
20
+ dialogs: import("vue").ComputedRef<{
21
+ id: number;
22
+ color: "success" | "info" | "danger" | "warning";
23
+ title: string;
24
+ message: string;
25
+ confirmText: string;
26
+ cancelText: string;
27
+ closeOnOutsideClick: boolean;
28
+ onConfirm: () => void;
29
+ onCancel: () => void;
30
+ }[]>;
31
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
32
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
33
+ created?: ((() => void) | (() => void)[]) | undefined;
34
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
35
+ mounted?: ((() => void) | (() => void)[]) | undefined;
36
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
37
+ updated?: ((() => void) | (() => void)[]) | undefined;
38
+ activated?: ((() => void) | (() => void)[]) | undefined;
39
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
40
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
41
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
42
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
43
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
44
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
45
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
46
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
47
+ };
48
+ $forceUpdate: () => void;
49
+ $nextTick: typeof import("vue").nextTick;
50
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
51
+ } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
52
+ dialogs: import("vue").ComputedRef<{
53
+ id: number;
54
+ color: "success" | "info" | "danger" | "warning";
55
+ title: string;
56
+ message: string;
57
+ confirmText: string;
58
+ cancelText: string;
59
+ closeOnOutsideClick: boolean;
60
+ onConfirm: () => void;
61
+ onCancel: () => void;
62
+ }[]>;
63
+ }> & {} & import("vue").ComponentCustomProperties & {};
64
+ __isFragment?: undefined;
65
+ __isTeleport?: undefined;
66
+ __isSuspense?: undefined;
67
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
68
+ dialogs: import("vue").ComputedRef<{
69
+ id: number;
70
+ color: "success" | "info" | "danger" | "warning";
71
+ title: string;
72
+ message: string;
73
+ confirmText: string;
74
+ cancelText: string;
75
+ closeOnOutsideClick: boolean;
76
+ onConfirm: () => void;
77
+ onCancel: () => void;
78
+ }[]>;
79
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
80
+ export default _default;
@@ -0,0 +1,44 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
6
+ $attrs: {
7
+ [x: string]: unknown;
8
+ };
9
+ $refs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $slots: Readonly<{
13
+ [name: string]: import("vue").Slot | undefined;
14
+ }>;
15
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
16
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
17
+ $emit: (event: string, ...args: any[]) => void;
18
+ $el: any;
19
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
20
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
21
+ created?: ((() => void) | (() => void)[]) | undefined;
22
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
23
+ mounted?: ((() => void) | (() => void)[]) | undefined;
24
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
25
+ updated?: ((() => void) | (() => void)[]) | undefined;
26
+ activated?: ((() => void) | (() => void)[]) | undefined;
27
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
28
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
29
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
30
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
31
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
32
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
33
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
34
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
35
+ };
36
+ $forceUpdate: () => void;
37
+ $nextTick: typeof import("vue").nextTick;
38
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
39
+ } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
40
+ __isFragment?: undefined;
41
+ __isTeleport?: undefined;
42
+ __isSuspense?: undefined;
43
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
44
+ export default _default;
@@ -54,10 +54,10 @@ declare const _default: {
54
54
  };
55
55
  }>> & {
56
56
  onFocus?: ((...args: any[]) => any) | undefined;
57
+ onClear?: ((...args: any[]) => any) | undefined;
57
58
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
58
59
  onTyping?: ((...args: any[]) => any) | undefined;
59
60
  onScrollBottom?: ((...args: any[]) => any) | undefined;
60
- onClear?: ((...args: any[]) => any) | undefined;
61
61
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "filter" | "required" | "inputClass" | "placeholder" | "loading" | "disabled">;
62
62
  $attrs: {
63
63
  [x: string]: unknown;
@@ -70,7 +70,7 @@ declare const _default: {
70
70
  }>;
71
71
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
72
72
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
73
- $emit: (event: "update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear", ...args: any[]) => void;
73
+ $emit: (event: "clear" | "update:modelValue" | "typing" | "focus" | "scrollBottom", ...args: any[]) => void;
74
74
  $el: any;
75
75
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
76
76
  modelValue: {
@@ -115,11 +115,11 @@ declare const _default: {
115
115
  };
116
116
  }>> & {
117
117
  onFocus?: ((...args: any[]) => any) | undefined;
118
+ onClear?: ((...args: any[]) => any) | undefined;
118
119
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
119
120
  onTyping?: ((...args: any[]) => any) | undefined;
120
121
  onScrollBottom?: ((...args: any[]) => any) | undefined;
121
- onClear?: ((...args: any[]) => any) | undefined;
122
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear")[], string, {
122
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "update:modelValue" | "typing" | "focus" | "scrollBottom")[], string, {
123
123
  filter: (option: NormalizedOption) => boolean;
124
124
  required: boolean;
125
125
  inputClass: string;
@@ -189,10 +189,10 @@ declare const _default: {
189
189
  };
190
190
  }>> & {
191
191
  onFocus?: ((...args: any[]) => any) | undefined;
192
+ onClear?: ((...args: any[]) => any) | undefined;
192
193
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
193
194
  onTyping?: ((...args: any[]) => any) | undefined;
194
195
  onScrollBottom?: ((...args: any[]) => any) | undefined;
195
- onClear?: ((...args: any[]) => any) | undefined;
196
196
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
197
197
  __isFragment?: undefined;
198
198
  __isTeleport?: undefined;
@@ -240,11 +240,11 @@ declare const _default: {
240
240
  };
241
241
  }>> & {
242
242
  onFocus?: ((...args: any[]) => any) | undefined;
243
+ onClear?: ((...args: any[]) => any) | undefined;
243
244
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
244
245
  onTyping?: ((...args: any[]) => any) | undefined;
245
246
  onScrollBottom?: ((...args: any[]) => any) | undefined;
246
- onClear?: ((...args: any[]) => any) | undefined;
247
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear")[], "update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear", {
247
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "update:modelValue" | "typing" | "focus" | "scrollBottom")[], "clear" | "update:modelValue" | "typing" | "focus" | "scrollBottom", {
248
248
  filter: (option: NormalizedOption) => boolean;
249
249
  required: boolean;
250
250
  inputClass: string;
@@ -55,10 +55,10 @@ declare const _default: {
55
55
  };
56
56
  }>> & {
57
57
  onFocus?: ((...args: any[]) => any) | undefined;
58
+ onClear?: ((...args: any[]) => any) | undefined;
58
59
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
59
60
  onTyping?: ((...args: any[]) => any) | undefined;
60
61
  onScrollBottom?: ((...args: any[]) => any) | undefined;
61
- onClear?: ((...args: any[]) => any) | undefined;
62
62
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "inputClass" | "placeholder" | "disabled" | "createNewUrl" | "queryKey">;
63
63
  $attrs: {
64
64
  [x: string]: unknown;
@@ -71,7 +71,7 @@ declare const _default: {
71
71
  }>;
72
72
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
73
73
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
74
- $emit: (event: "update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear", ...args: any[]) => void;
74
+ $emit: (event: "clear" | "update:modelValue" | "typing" | "focus" | "scrollBottom", ...args: any[]) => void;
75
75
  $el: any;
76
76
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
77
77
  modelValue: {
@@ -116,11 +116,11 @@ declare const _default: {
116
116
  };
117
117
  }>> & {
118
118
  onFocus?: ((...args: any[]) => any) | undefined;
119
+ onClear?: ((...args: any[]) => any) | undefined;
119
120
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
120
121
  onTyping?: ((...args: any[]) => any) | undefined;
121
122
  onScrollBottom?: ((...args: any[]) => any) | undefined;
122
- onClear?: ((...args: any[]) => any) | undefined;
123
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear")[], string, {
123
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "update:modelValue" | "typing" | "focus" | "scrollBottom")[], string, {
124
124
  required: boolean;
125
125
  inputClass: string;
126
126
  placeholder: string;
@@ -190,10 +190,10 @@ declare const _default: {
190
190
  };
191
191
  }>> & {
192
192
  onFocus?: ((...args: any[]) => any) | undefined;
193
+ onClear?: ((...args: any[]) => any) | undefined;
193
194
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
194
195
  onTyping?: ((...args: any[]) => any) | undefined;
195
196
  onScrollBottom?: ((...args: any[]) => any) | undefined;
196
- onClear?: ((...args: any[]) => any) | undefined;
197
197
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
198
198
  __isFragment?: undefined;
199
199
  __isTeleport?: undefined;
@@ -241,11 +241,11 @@ declare const _default: {
241
241
  };
242
242
  }>> & {
243
243
  onFocus?: ((...args: any[]) => any) | undefined;
244
+ onClear?: ((...args: any[]) => any) | undefined;
244
245
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
245
246
  onTyping?: ((...args: any[]) => any) | undefined;
246
247
  onScrollBottom?: ((...args: any[]) => any) | undefined;
247
- onClear?: ((...args: any[]) => any) | undefined;
248
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear")[], "update:modelValue" | "typing" | "focus" | "scrollBottom" | "clear", {
248
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "update:modelValue" | "typing" | "focus" | "scrollBottom")[], "clear" | "update:modelValue" | "typing" | "focus" | "scrollBottom", {
249
249
  required: boolean;
250
250
  inputClass: string;
251
251
  placeholder: string;
@@ -10,10 +10,10 @@ declare const _default: {
10
10
  inputClass: string;
11
11
  placeholder: string;
12
12
  disabled: boolean;
13
+ createNewUrl: RouteLocationRaw;
13
14
  showRouteUrl: ((id: string | number) => string) | undefined;
14
15
  foreignKey: string;
15
16
  currentModel: Selection;
16
- createNewUrl: RouteLocationRaw;
17
17
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
18
18
  modelValue: {
19
19
  required: true;
@@ -61,7 +61,7 @@ declare const _default: {
61
61
  };
62
62
  }>> & {
63
63
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
64
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "inputClass" | "placeholder" | "disabled" | "showRouteUrl" | "foreignKey" | "currentModel" | "createNewUrl">;
64
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "inputClass" | "placeholder" | "disabled" | "createNewUrl" | "showRouteUrl" | "foreignKey" | "currentModel">;
65
65
  $attrs: {
66
66
  [x: string]: unknown;
67
67
  };
@@ -127,10 +127,10 @@ declare const _default: {
127
127
  inputClass: string;
128
128
  placeholder: string;
129
129
  disabled: boolean;
130
+ createNewUrl: RouteLocationRaw;
130
131
  showRouteUrl: ((id: string | number) => string) | undefined;
131
132
  foreignKey: string;
132
133
  currentModel: Selection;
133
- createNewUrl: RouteLocationRaw;
134
134
  }, {}, string> & {
135
135
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
136
136
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -254,10 +254,10 @@ declare const _default: {
254
254
  inputClass: string;
255
255
  placeholder: string;
256
256
  disabled: boolean;
257
+ createNewUrl: RouteLocationRaw;
257
258
  showRouteUrl: ((id: string | number) => string) | undefined;
258
259
  foreignKey: string;
259
260
  currentModel: Selection;
260
- createNewUrl: RouteLocationRaw;
261
261
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
262
262
  $slots: {
263
263
  option: (_: any) => any;
@@ -6,11 +6,11 @@ declare const _default: {
6
6
  $: import("vue").ComponentInternalInstance;
7
7
  $data: {};
8
8
  $props: Partial<{
9
+ actions: MenuItemInterface[];
9
10
  routeKeyName: string;
10
11
  urlQuery: Record<string, any>;
11
12
  defaultQuery: DataTableQuery;
12
13
  searchable: boolean;
13
- actions: MenuItemInterface[];
14
14
  historyMode: boolean;
15
15
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16
16
  /**
@@ -72,7 +72,7 @@ declare const _default: {
72
72
  "onUpdate:checked-rows"?: ((...args: any[]) => any) | undefined;
73
73
  onCheck?: ((...args: any[]) => any) | undefined;
74
74
  "onUpdate:query"?: ((...args: any[]) => any) | undefined;
75
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "routeKeyName" | "urlQuery" | "defaultQuery" | "searchable" | "actions" | "historyMode">;
75
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "actions" | "routeKeyName" | "urlQuery" | "defaultQuery" | "searchable" | "historyMode">;
76
76
  $attrs: {
77
77
  [x: string]: unknown;
78
78
  };
@@ -151,11 +151,11 @@ declare const _default: {
151
151
  scrollIntoView: () => void;
152
152
  query: Ref<DataTableQuery>;
153
153
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "delete" | "checkAll" | "update:checked-rows" | "check" | "update:query")[], string, {
154
+ actions: MenuItemInterface[];
154
155
  routeKeyName: string;
155
156
  urlQuery: Record<string, any>;
156
157
  defaultQuery: DataTableQuery;
157
158
  searchable: boolean;
158
- actions: MenuItemInterface[];
159
159
  historyMode: boolean;
160
160
  }, {}, string> & {
161
161
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -310,11 +310,11 @@ declare const _default: {
310
310
  scrollIntoView: () => void;
311
311
  query: Ref<DataTableQuery>;
312
312
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "delete" | "checkAll" | "update:checked-rows" | "check" | "update:query")[], "click" | "delete" | "checkAll" | "update:checked-rows" | "check" | "update:query", {
313
+ actions: MenuItemInterface[];
313
314
  routeKeyName: string;
314
315
  urlQuery: Record<string, any>;
315
316
  defaultQuery: DataTableQuery;
316
317
  searchable: boolean;
317
- actions: MenuItemInterface[];
318
318
  historyMode: boolean;
319
319
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
320
320
  $slots: {
@@ -5,11 +5,11 @@ declare const _default: {
5
5
  $: import("vue").ComponentInternalInstance;
6
6
  $data: {};
7
7
  $props: Partial<{
8
+ actions: MenuItemInterface[];
8
9
  routeKeyName: string;
9
10
  urlQuery: Record<string, any>;
10
11
  defaultQuery: DataTableQuery;
11
12
  searchable: boolean;
12
- actions: MenuItemInterface[];
13
13
  historyMode: boolean;
14
14
  detailed: boolean;
15
15
  checkable: boolean;
@@ -153,7 +153,7 @@ declare const _default: {
153
153
  onCheckAll?: ((...args: any[]) => any) | undefined;
154
154
  "onUpdate:checked-rows"?: ((...args: any[]) => any) | undefined;
155
155
  onCheck?: ((...args: any[]) => any) | undefined;
156
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "routeKeyName" | "urlQuery" | "defaultQuery" | "searchable" | "actions" | "historyMode" | "detailed" | "checkable" | "checkableActions" | "isRowCheckable" | "checkedRows" | "hasDetailedVisible" | "maxHeight" | "editButton" | "deleteButton" | "editUrl" | "deleteUrl">;
156
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "actions" | "routeKeyName" | "urlQuery" | "defaultQuery" | "searchable" | "historyMode" | "detailed" | "checkable" | "checkableActions" | "isRowCheckable" | "checkedRows" | "hasDetailedVisible" | "maxHeight" | "editButton" | "deleteButton" | "editUrl" | "deleteUrl">;
157
157
  $attrs: {
158
158
  [x: string]: unknown;
159
159
  };
@@ -302,11 +302,11 @@ declare const _default: {
302
302
  fetch: () => void;
303
303
  query: import("vue").ComputedRef<DataTableQuery | null>;
304
304
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "delete" | "checkAll" | "update:checked-rows" | "check")[], string, {
305
+ actions: MenuItemInterface[];
305
306
  routeKeyName: string;
306
307
  urlQuery: Record<string, any>;
307
308
  defaultQuery: DataTableQuery;
308
309
  searchable: boolean;
309
- actions: MenuItemInterface[];
310
310
  historyMode: boolean;
311
311
  detailed: boolean;
312
312
  checkable: boolean;
@@ -612,11 +612,11 @@ declare const _default: {
612
612
  fetch: () => void;
613
613
  query: import("vue").ComputedRef<DataTableQuery | null>;
614
614
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "delete" | "checkAll" | "update:checked-rows" | "check")[], "click" | "delete" | "checkAll" | "update:checked-rows" | "check", {
615
+ actions: MenuItemInterface[];
615
616
  routeKeyName: string;
616
617
  urlQuery: Record<string, any>;
617
618
  defaultQuery: DataTableQuery;
618
619
  searchable: boolean;
619
- actions: MenuItemInterface[];
620
620
  historyMode: boolean;
621
621
  detailed: boolean;
622
622
  checkable: boolean;
@@ -6,12 +6,17 @@ declare const _default: {
6
6
  $props: Partial<{
7
7
  loading: boolean;
8
8
  disabled: boolean;
9
+ url: string;
9
10
  accept: string;
10
11
  buttonClass: string;
11
12
  beforeUpload: () => boolean;
12
13
  maxSize: number;
13
14
  acceptedExtensions: string[];
14
15
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
16
+ url: {
17
+ default: undefined;
18
+ type: StringConstructor;
19
+ };
15
20
  disabled: {
16
21
  default: boolean;
17
22
  type: BooleanConstructor;
@@ -45,7 +50,7 @@ declare const _default: {
45
50
  "onUpload:success"?: ((...args: any[]) => any) | undefined;
46
51
  "onUpload:fail"?: ((...args: any[]) => any) | undefined;
47
52
  "onUpload:end"?: ((...args: any[]) => any) | undefined;
48
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "loading" | "disabled" | "accept" | "buttonClass" | "beforeUpload" | "maxSize" | "acceptedExtensions">;
53
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "loading" | "disabled" | "url" | "accept" | "buttonClass" | "beforeUpload" | "maxSize" | "acceptedExtensions">;
49
54
  $attrs: {
50
55
  [x: string]: unknown;
51
56
  };
@@ -60,6 +65,10 @@ declare const _default: {
60
65
  $emit: (event: "upload:start" | "upload:success" | "upload:fail" | "upload:end", ...args: any[]) => void;
61
66
  $el: any;
62
67
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
68
+ url: {
69
+ default: undefined;
70
+ type: StringConstructor;
71
+ };
63
72
  disabled: {
64
73
  default: boolean;
65
74
  type: BooleanConstructor;
@@ -96,6 +105,7 @@ declare const _default: {
96
105
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("upload:start" | "upload:success" | "upload:fail" | "upload:end")[], string, {
97
106
  loading: boolean;
98
107
  disabled: boolean;
108
+ url: string;
99
109
  accept: string;
100
110
  buttonClass: string;
101
111
  beforeUpload: () => boolean;
@@ -122,6 +132,10 @@ declare const _default: {
122
132
  $nextTick: typeof import("vue").nextTick;
123
133
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
124
134
  } & Readonly<import("vue").ExtractPropTypes<{
135
+ url: {
136
+ default: undefined;
137
+ type: StringConstructor;
138
+ };
125
139
  disabled: {
126
140
  default: boolean;
127
141
  type: BooleanConstructor;
@@ -160,6 +174,10 @@ declare const _default: {
160
174
  __isTeleport?: undefined;
161
175
  __isSuspense?: undefined;
162
176
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
177
+ url: {
178
+ default: undefined;
179
+ type: StringConstructor;
180
+ };
163
181
  disabled: {
164
182
  default: boolean;
165
183
  type: BooleanConstructor;
@@ -196,6 +214,7 @@ declare const _default: {
196
214
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("upload:start" | "upload:success" | "upload:fail" | "upload:end")[], "upload:start" | "upload:success" | "upload:fail" | "upload:end", {
197
215
  loading: boolean;
198
216
  disabled: boolean;
217
+ url: string;
199
218
  accept: string;
200
219
  buttonClass: string;
201
220
  beforeUpload: () => boolean;
@@ -6,9 +6,9 @@ declare const _default: {
6
6
  $props: Partial<{
7
7
  required: boolean;
8
8
  type: string;
9
+ name: string;
9
10
  placeholder: string;
10
11
  disabled: boolean;
11
- name: string;
12
12
  autocomplete: boolean;
13
13
  preventSubmit: boolean;
14
14
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -46,7 +46,7 @@ declare const _default: {
46
46
  };
47
47
  }>> & {
48
48
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
49
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "type" | "placeholder" | "disabled" | "name" | "autocomplete" | "preventSubmit">;
49
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "type" | "name" | "placeholder" | "disabled" | "autocomplete" | "preventSubmit">;
50
50
  $attrs: {
51
51
  [x: string]: unknown;
52
52
  };
@@ -98,9 +98,9 @@ declare const _default: {
98
98
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], string, {
99
99
  required: boolean;
100
100
  type: string;
101
+ name: string;
101
102
  placeholder: string;
102
103
  disabled: boolean;
103
- name: string;
104
104
  autocomplete: boolean;
105
105
  preventSubmit: boolean;
106
106
  }, {}, string> & {
@@ -200,9 +200,9 @@ declare const _default: {
200
200
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", {
201
201
  required: boolean;
202
202
  type: string;
203
+ name: string;
203
204
  placeholder: string;
204
205
  disabled: boolean;
205
- name: string;
206
206
  autocomplete: boolean;
207
207
  preventSubmit: boolean;
208
208
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
@@ -6,10 +6,10 @@ declare const _default: {
6
6
  $props: Partial<{
7
7
  iconClass: string;
8
8
  icon: "line" | "spinner";
9
+ duration: string;
9
10
  delay: number;
10
11
  modelValue: boolean;
11
12
  backdropClass: string;
12
- duration: string;
13
13
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
14
14
  modelValue: {
15
15
  default: boolean;
@@ -35,7 +35,7 @@ declare const _default: {
35
35
  default: number;
36
36
  type: NumberConstructor;
37
37
  };
38
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "iconClass" | "icon" | "delay" | "modelValue" | "backdropClass" | "duration">;
38
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "iconClass" | "icon" | "duration" | "delay" | "modelValue" | "backdropClass">;
39
39
  $attrs: {
40
40
  [x: string]: unknown;
41
41
  };
@@ -77,10 +77,10 @@ declare const _default: {
77
77
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
78
78
  iconClass: string;
79
79
  icon: "line" | "spinner";
80
+ duration: string;
80
81
  delay: number;
81
82
  modelValue: boolean;
82
83
  backdropClass: string;
83
- duration: string;
84
84
  }, {}, string> & {
85
85
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
86
86
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -158,9 +158,9 @@ declare const _default: {
158
158
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
159
159
  iconClass: string;
160
160
  icon: "line" | "spinner";
161
+ duration: string;
161
162
  delay: number;
162
163
  modelValue: boolean;
163
164
  backdropClass: string;
164
- duration: string;
165
165
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
166
166
  export default _default;
@@ -57,10 +57,10 @@ declare const _default: import("vue").DefineComponent<{
57
57
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
58
58
  }, {
59
59
  required: boolean;
60
+ name: string;
60
61
  modelValue: string | null;
61
62
  inputClass: string;
62
63
  placeholder: string;
63
64
  disabled: boolean;
64
- name: string;
65
65
  }>;
66
66
  export default _default;
@@ -47,9 +47,9 @@ declare const _default: import("vue").DefineComponent<{
47
47
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
48
48
  }, {
49
49
  required: boolean;
50
+ name: string;
50
51
  modelValue: string | number | null;
51
52
  placeholder: string;
52
53
  disabled: boolean;
53
- name: string;
54
54
  }>;
55
55
  export default _default;