@vue-ui-kit/ant 2.0.5 → 2.0.6
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 +1393 -1393
- package/dist/cjs/index.js +3 -3
- package/dist/declarations/antProxy.d.ts +5 -1
- package/dist/es/index.js +247 -240
- package/package.json +1 -1
- package/src/declarations/antProxy.ts +5 -1
- package/src/packages/components/PCanvasGrid.vue +34 -13
- package/src/packages/components/PFormGroup.vue +4 -1
|
@@ -297,7 +297,11 @@ export interface CanvasTableProps<T extends Recordable = Recordable, B extends R
|
|
|
297
297
|
loading?: boolean;
|
|
298
298
|
}
|
|
299
299
|
export interface PCanvasGridProps<D extends Recordable = Recordable, F extends Recordable = Recordable> {
|
|
300
|
-
|
|
300
|
+
staticConfig?: {
|
|
301
|
+
selectable?: boolean;
|
|
302
|
+
showCount?: boolean;
|
|
303
|
+
tree?: boolean;
|
|
304
|
+
};
|
|
301
305
|
manualFetch?: boolean;
|
|
302
306
|
formConfig?: PFormProps<F>;
|
|
303
307
|
columns: CanvasColumnProps<D>[];
|