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 CHANGED
@@ -1733,6 +1733,12 @@ emit('select', row, checked)
1733
1733
  * @param checked 切换的列
1734
1734
  */
1735
1735
  emit('change-col', checked)
1736
+
1737
+ /**
1738
+ * 切换最大化后触发
1739
+ * @param maximized 是否最大化
1740
+ */
1741
+ emit('maximize-change', maximized)
1736
1742
  ```
1737
1743
 
1738
1744
  **slots**
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[];