@epie/bi-crud 2.0.40 → 2.0.43
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/lib/bi-crud.esm.js
CHANGED
|
@@ -8703,10 +8703,7 @@ var Crud$1 = defineComponent({
|
|
|
8703
8703
|
props: {
|
|
8704
8704
|
name: String,
|
|
8705
8705
|
border: Boolean,
|
|
8706
|
-
|
|
8707
|
-
type: String,
|
|
8708
|
-
default: "10px"
|
|
8709
|
-
},
|
|
8706
|
+
class: String,
|
|
8710
8707
|
onDelete: Function,
|
|
8711
8708
|
onRefresh: Function
|
|
8712
8709
|
},
|
|
@@ -8804,10 +8801,7 @@ var Crud$1 = defineComponent({
|
|
|
8804
8801
|
return createVNode("div", {
|
|
8805
8802
|
"class": ["epie-crud", {
|
|
8806
8803
|
"is-border": ctx.border
|
|
8807
|
-
}]
|
|
8808
|
-
"style": {
|
|
8809
|
-
padding: ctx.padding
|
|
8810
|
-
}
|
|
8804
|
+
}, ...(ctx.class || "").split(" ")]
|
|
8811
8805
|
}, [ctx.$slots.default && ctx.$slots.default()]);
|
|
8812
8806
|
}
|
|
8813
8807
|
});
|
package/lib/bi-crud.umd.js
CHANGED
|
@@ -8706,10 +8706,7 @@
|
|
|
8706
8706
|
props: {
|
|
8707
8707
|
name: String,
|
|
8708
8708
|
border: Boolean,
|
|
8709
|
-
|
|
8710
|
-
type: String,
|
|
8711
|
-
default: "10px"
|
|
8712
|
-
},
|
|
8709
|
+
class: String,
|
|
8713
8710
|
onDelete: Function,
|
|
8714
8711
|
onRefresh: Function
|
|
8715
8712
|
},
|
|
@@ -8807,10 +8804,7 @@
|
|
|
8807
8804
|
return vue.createVNode("div", {
|
|
8808
8805
|
"class": ["epie-crud", {
|
|
8809
8806
|
"is-border": ctx.border
|
|
8810
|
-
}]
|
|
8811
|
-
"style": {
|
|
8812
|
-
padding: ctx.padding
|
|
8813
|
-
}
|
|
8807
|
+
}, ...(ctx.class || "").split(" ")]
|
|
8814
8808
|
}, [ctx.$slots.default && ctx.$slots.default()]);
|
|
8815
8809
|
}
|
|
8816
8810
|
});
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
name: StringConstructor;
|
|
3
3
|
border: BooleanConstructor;
|
|
4
|
-
|
|
5
|
-
type: StringConstructor;
|
|
6
|
-
default: string;
|
|
7
|
-
};
|
|
4
|
+
class: StringConstructor;
|
|
8
5
|
onDelete: FunctionConstructor;
|
|
9
6
|
onRefresh: FunctionConstructor;
|
|
10
7
|
}, {
|
|
@@ -83,14 +80,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
83
80
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
84
81
|
name: StringConstructor;
|
|
85
82
|
border: BooleanConstructor;
|
|
86
|
-
|
|
87
|
-
type: StringConstructor;
|
|
88
|
-
default: string;
|
|
89
|
-
};
|
|
83
|
+
class: StringConstructor;
|
|
90
84
|
onDelete: FunctionConstructor;
|
|
91
85
|
onRefresh: FunctionConstructor;
|
|
92
86
|
}>>, {
|
|
93
87
|
border: boolean;
|
|
94
|
-
padding: string;
|
|
95
88
|
}, {}>;
|
|
96
89
|
export default _default;
|