lkt-item-crud 2.0.26 → 2.0.27
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/build.js
CHANGED
|
@@ -486,7 +486,7 @@ const V = (...N) => {
|
|
|
486
486
|
"update:perms",
|
|
487
487
|
"update:customData",
|
|
488
488
|
"update:modifications",
|
|
489
|
-
"update:
|
|
489
|
+
"update:visibleView",
|
|
490
490
|
"read",
|
|
491
491
|
"create",
|
|
492
492
|
"update",
|
|
@@ -501,7 +501,7 @@ const V = (...N) => {
|
|
|
501
501
|
b(() => a.visibleView, (e) => {
|
|
502
502
|
X.value = e;
|
|
503
503
|
}), b(X, (e) => {
|
|
504
|
-
y("update:
|
|
504
|
+
y("update:visibleView", e);
|
|
505
505
|
}), b(() => a.mode, (e) => {
|
|
506
506
|
J.value = e === A.Create;
|
|
507
507
|
}), b(() => a.perms, (e) => {
|
|
@@ -70,7 +70,7 @@ declare const __VLS_component: import("vue").DefineComponent<ItemCrudConfig, {
|
|
|
70
70
|
"update:perms": (...args: any[]) => void;
|
|
71
71
|
"update:customData": (...args: any[]) => void;
|
|
72
72
|
"update:modifications": (...args: any[]) => void;
|
|
73
|
-
"update:
|
|
73
|
+
"update:visibleView": (...args: any[]) => void;
|
|
74
74
|
"before-save": (...args: any[]) => void;
|
|
75
75
|
"modified-data": (...args: any[]) => void;
|
|
76
76
|
}, string, import("vue").PublicProps, Readonly<ItemCrudConfig> & Readonly<{
|
|
@@ -85,7 +85,7 @@ declare const __VLS_component: import("vue").DefineComponent<ItemCrudConfig, {
|
|
|
85
85
|
"onUpdate:perms"?: ((...args: any[]) => any) | undefined;
|
|
86
86
|
"onUpdate:customData"?: ((...args: any[]) => any) | undefined;
|
|
87
87
|
"onUpdate:modifications"?: ((...args: any[]) => any) | undefined;
|
|
88
|
-
"onUpdate:
|
|
88
|
+
"onUpdate:visibleView"?: ((...args: any[]) => any) | undefined;
|
|
89
89
|
"onBefore-save"?: ((...args: any[]) => any) | undefined;
|
|
90
90
|
"onModified-data"?: ((...args: any[]) => any) | undefined;
|
|
91
91
|
}>, {
|
package/package.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
'update:perms',
|
|
45
45
|
'update:customData',
|
|
46
46
|
'update:modifications',
|
|
47
|
-
'update:
|
|
47
|
+
'update:visibleView',
|
|
48
48
|
'read',
|
|
49
49
|
'create',
|
|
50
50
|
'update',
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
});
|
|
87
87
|
|
|
88
88
|
watch(pickedModificationView, (v) => {
|
|
89
|
-
emit('update:
|
|
89
|
+
emit('update:visibleView', v);
|
|
90
90
|
})
|
|
91
91
|
|
|
92
92
|
watch(() => props.mode, (v) => {
|