atom-nuxt 1.0.156 → 1.2.2
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.
- package/dist/module.cjs +5 -0
- package/dist/module.d.mts +1 -2
- package/dist/module.d.ts +22 -0
- package/dist/module.json +3 -3
- package/dist/runtime/components/AlertDisplay.vue +18 -11
- package/dist/runtime/components/CrudAddressSearchField.vue +35 -22
- package/dist/runtime/components/CrudApiSelectorField.vue +24 -11
- package/dist/runtime/components/CrudConfirmDialog.vue +17 -11
- package/dist/runtime/components/CrudErrorDisplay.vue +4 -3
- package/dist/runtime/components/CrudFilter.vue +46 -25
- package/dist/runtime/components/CrudFilterList.vue +6 -0
- package/dist/runtime/components/CrudFormDialog.vue +29 -12
- package/dist/runtime/components/CrudFormLoader.vue +121 -98
- package/dist/runtime/components/CrudListLoader.vue +28 -17
- package/dist/runtime/components/CrudPaginatedLoader.vue +112 -53
- package/dist/runtime/components/CrudUploadField.vue +28 -6
- package/dist/runtime/components/CrudUploadFieldSelection.vue +27 -19
- package/dist/types.d.mts +2 -4
- package/dist/types.d.ts +7 -0
- package/package.json +1 -1
- package/dist/runtime/components/AlertDisplay.vue.d.ts +0 -2
- package/dist/runtime/components/CrudAddressSearchField.vue.d.ts +0 -8
- package/dist/runtime/components/CrudApiSelectorField.vue.d.ts +0 -30
- package/dist/runtime/components/CrudConfirmDialog.vue.d.ts +0 -18
- package/dist/runtime/components/CrudErrorDisplay.vue.d.ts +0 -6
- package/dist/runtime/components/CrudFilter.vue.d.ts +0 -8
- package/dist/runtime/components/CrudFilterList.vue.d.ts +0 -5
- package/dist/runtime/components/CrudFormDialog.vue.d.ts +0 -31
- package/dist/runtime/components/CrudFormLoader.vue.d.ts +0 -41
- package/dist/runtime/components/CrudListLoader.vue.d.ts +0 -37
- package/dist/runtime/components/CrudPaginatedLoader.vue.d.ts +0 -72
- package/dist/runtime/components/CrudUploadField.vue.d.ts +0 -23
- package/dist/runtime/components/CrudUploadFieldSelection.vue.d.ts +0 -18
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
-
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
3
|
-
filter: Record<string, any>;
|
|
4
|
-
disabled: boolean;
|
|
5
|
-
modelValue?: any;
|
|
6
|
-
$props: any;
|
|
7
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
-
export default _default;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
-
filters: unknown[];
|
|
3
|
-
$props: any;
|
|
4
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5
|
-
export default _default;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
-
export default _default;
|
|
3
|
-
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
-
$slots: S;
|
|
5
|
-
});
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
-
disabled: boolean;
|
|
8
|
-
action: string;
|
|
9
|
-
formErrors: Record<string, any>;
|
|
10
|
-
itemErrors: Record<string, any>;
|
|
11
|
-
formPending: boolean;
|
|
12
|
-
itemPending: boolean;
|
|
13
|
-
createTitle: string;
|
|
14
|
-
updateTitle: string;
|
|
15
|
-
deleteTitle: string;
|
|
16
|
-
saveAction: Function;
|
|
17
|
-
btnIcon: string;
|
|
18
|
-
btnColor: string;
|
|
19
|
-
fullScreen: boolean;
|
|
20
|
-
hideActions: boolean;
|
|
21
|
-
originalItem: Record<string, any>;
|
|
22
|
-
btnText?: string | undefined;
|
|
23
|
-
$props: any;
|
|
24
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
25
|
-
type __VLS_Slots = {
|
|
26
|
-
default?: ((props: {
|
|
27
|
-
action: any;
|
|
28
|
-
item: any;
|
|
29
|
-
errors: any;
|
|
30
|
-
}) => any) | undefined;
|
|
31
|
-
};
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
-
export default _default;
|
|
3
|
-
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
-
$slots: S;
|
|
5
|
-
});
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
-
$emit: (event: "delete" | "create" | "update", ...args: any[]) => void;
|
|
8
|
-
path: string;
|
|
9
|
-
customFilters: Record<string, any>;
|
|
10
|
-
await: boolean;
|
|
11
|
-
listeners: unknown[];
|
|
12
|
-
createTitle: string;
|
|
13
|
-
updateTitle: string;
|
|
14
|
-
deleteTitle: string;
|
|
15
|
-
allowCreate: boolean;
|
|
16
|
-
hideFilters: boolean;
|
|
17
|
-
title?: string | undefined;
|
|
18
|
-
loaderKey?: string | undefined;
|
|
19
|
-
initialItem?: Record<string, any> | undefined;
|
|
20
|
-
transformItem?: Function | undefined;
|
|
21
|
-
transformItems?: Function | undefined;
|
|
22
|
-
beforeSave?: Function | undefined;
|
|
23
|
-
beforeCreate?: Function | undefined;
|
|
24
|
-
beforeUpdate?: Function | undefined;
|
|
25
|
-
beforeDelete?: Function | undefined;
|
|
26
|
-
$props: any;
|
|
27
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
28
|
-
type __VLS_Slots = {
|
|
29
|
-
default?: ((props: {
|
|
30
|
-
createAction: any;
|
|
31
|
-
updateAction: any;
|
|
32
|
-
deleteAction: any;
|
|
33
|
-
formPending: any;
|
|
34
|
-
}) => any) | undefined;
|
|
35
|
-
} & {
|
|
36
|
-
form?: ((props: {
|
|
37
|
-
action: any;
|
|
38
|
-
item: any;
|
|
39
|
-
errors: any;
|
|
40
|
-
}) => any) | undefined;
|
|
41
|
-
};
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
-
export default _default;
|
|
3
|
-
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
-
$slots: S;
|
|
5
|
-
});
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
-
page: number;
|
|
8
|
-
debounced: boolean;
|
|
9
|
-
disableNoResults: boolean;
|
|
10
|
-
path: string;
|
|
11
|
-
perPage: number;
|
|
12
|
-
await: boolean;
|
|
13
|
-
listeners: unknown[];
|
|
14
|
-
noResultsText: string;
|
|
15
|
-
useQueryParams: boolean;
|
|
16
|
-
customFilters?: Record<string, any> | undefined;
|
|
17
|
-
$props: any;
|
|
18
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
|
-
type __VLS_Slots = {
|
|
20
|
-
errors?: ((props: {}) => any) | undefined;
|
|
21
|
-
} & {
|
|
22
|
-
empty?: ((props: {}) => any) | undefined;
|
|
23
|
-
} & {
|
|
24
|
-
loader?: ((props: {
|
|
25
|
-
empty: boolean;
|
|
26
|
-
}) => any) | undefined;
|
|
27
|
-
} & {
|
|
28
|
-
default?: ((props: {
|
|
29
|
-
items: any;
|
|
30
|
-
pending: any;
|
|
31
|
-
totalItems: any;
|
|
32
|
-
totalPages: any;
|
|
33
|
-
currentPage: any;
|
|
34
|
-
perPage: any;
|
|
35
|
-
filters: any;
|
|
36
|
-
}) => any) | undefined;
|
|
37
|
-
};
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
-
export default _default;
|
|
3
|
-
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
-
$slots: S;
|
|
5
|
-
});
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
-
path: string;
|
|
8
|
-
customFilters: Record<string, any>;
|
|
9
|
-
perPage: number;
|
|
10
|
-
await: boolean;
|
|
11
|
-
listeners: unknown[];
|
|
12
|
-
noResultsText: string;
|
|
13
|
-
createTitle: string;
|
|
14
|
-
updateTitle: string;
|
|
15
|
-
deleteTitle: string;
|
|
16
|
-
allowCreate: boolean;
|
|
17
|
-
hideFilters: boolean;
|
|
18
|
-
fullScreenDialog: boolean;
|
|
19
|
-
contentClasses: string;
|
|
20
|
-
title?: string | undefined;
|
|
21
|
-
loaderKey?: string | undefined;
|
|
22
|
-
initialItem?: Record<string, any> | undefined;
|
|
23
|
-
transformItem?: Function | undefined;
|
|
24
|
-
transformItems?: Function | undefined;
|
|
25
|
-
beforeSave?: Function | undefined;
|
|
26
|
-
beforeCreate?: Function | undefined;
|
|
27
|
-
beforeUpdate?: Function | undefined;
|
|
28
|
-
beforeDelete?: Function | undefined;
|
|
29
|
-
$props: any;
|
|
30
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
31
|
-
type __VLS_Slots = {
|
|
32
|
-
before?: ((props: {
|
|
33
|
-
items: any;
|
|
34
|
-
totalItems: any;
|
|
35
|
-
totalPages: any;
|
|
36
|
-
pending: any;
|
|
37
|
-
createAction: any;
|
|
38
|
-
updateAction: any;
|
|
39
|
-
deleteAction: any;
|
|
40
|
-
formPending: any;
|
|
41
|
-
exportAction: any;
|
|
42
|
-
exportPending: any;
|
|
43
|
-
exportErrors: any;
|
|
44
|
-
}) => any) | undefined;
|
|
45
|
-
} & {
|
|
46
|
-
filters?: ((props: {
|
|
47
|
-
filters: any;
|
|
48
|
-
}) => any) | undefined;
|
|
49
|
-
} & {
|
|
50
|
-
empty?: ((props: {
|
|
51
|
-
createAction: any;
|
|
52
|
-
}) => any) | undefined;
|
|
53
|
-
} & {
|
|
54
|
-
error?: ((props: {
|
|
55
|
-
errors: any;
|
|
56
|
-
}) => any) | undefined;
|
|
57
|
-
} & {
|
|
58
|
-
default?: ((props: {
|
|
59
|
-
items: any;
|
|
60
|
-
pending: any;
|
|
61
|
-
updateAction: any;
|
|
62
|
-
deleteAction: any;
|
|
63
|
-
formPending: any;
|
|
64
|
-
}) => any) | undefined;
|
|
65
|
-
} & {
|
|
66
|
-
form?: ((props: {
|
|
67
|
-
action: any;
|
|
68
|
-
item: any;
|
|
69
|
-
originalItem: any;
|
|
70
|
-
errors: any;
|
|
71
|
-
}) => any) | undefined;
|
|
72
|
-
};
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
-
export default _default;
|
|
3
|
-
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
-
$slots: S;
|
|
5
|
-
});
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
-
path: string;
|
|
8
|
-
customFilters: Record<string, any>;
|
|
9
|
-
multiple: boolean;
|
|
10
|
-
disabled: boolean;
|
|
11
|
-
mimeKey: string;
|
|
12
|
-
fileNameKey: string;
|
|
13
|
-
replaceable: boolean;
|
|
14
|
-
isPublic: boolean;
|
|
15
|
-
additionalPostData: Record<string, any>;
|
|
16
|
-
title?: any;
|
|
17
|
-
$props: any;
|
|
18
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
|
-
type __VLS_Slots = {
|
|
20
|
-
additionalActions?: ((props: {
|
|
21
|
-
item: any;
|
|
22
|
-
}) => any) | undefined;
|
|
23
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
|
-
export default _default;
|
|
3
|
-
type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
|
-
$slots: S;
|
|
5
|
-
});
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
-
item: Record<string, any>;
|
|
8
|
-
mimeKey: string;
|
|
9
|
-
fileNameKey: string;
|
|
10
|
-
hideTitle: boolean;
|
|
11
|
-
imageClickAction: Function;
|
|
12
|
-
$props: any;
|
|
13
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
-
type __VLS_Slots = {
|
|
15
|
-
additionalActions?: ((props: {
|
|
16
|
-
item: any;
|
|
17
|
-
}) => any) | undefined;
|
|
18
|
-
};
|