view-ui-plus-derive 0.1.0 → 0.1.1
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/README.md +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +806 -802
- package/dist/umd/index.js +1 -1
- package/package.json +15 -15
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1984,6 +1984,7 @@ load: (res: any) => any;
|
|
|
1984
1984
|
"selection-change": (val: Obj[]) => any;
|
|
1985
1985
|
reload: () => any;
|
|
1986
1986
|
"change-col": (val: Obj | Obj[]) => any;
|
|
1987
|
+
"maximize-change": (val: boolean) => any;
|
|
1987
1988
|
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1988
1989
|
columns: {
|
|
1989
1990
|
type: PropType<Obj[]>;
|
|
@@ -2141,6 +2142,7 @@ onLoad?: ((res: any) => any) | undefined;
|
|
|
2141
2142
|
"onSelection-change"?: ((val: Obj[]) => any) | undefined;
|
|
2142
2143
|
onReload?: (() => any) | undefined;
|
|
2143
2144
|
"onChange-col"?: ((val: Obj | Obj[]) => any) | undefined;
|
|
2145
|
+
"onMaximize-change"?: ((val: boolean) => any) | undefined;
|
|
2144
2146
|
}>, {
|
|
2145
2147
|
transfer: boolean;
|
|
2146
2148
|
modelValue: Obj[];
|