@vue-ui-kit/ant 2.0.8 → 2.1.0
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/cjs/index.js +5 -4
- package/dist/declarations/antProxy.d.ts +2 -0
- package/dist/es/index.js +4811 -4031
- package/dist/packages/components/PCanvasTable.vue.d.ts +46 -12
- package/dist/style.css +1 -1
- package/dist/style.scss +22 -0
- package/package.json +2 -2
- package/src/declarations/antProxy.ts +3 -1
- package/src/packages/components/CollapseCard.vue +26 -54
- package/src/packages/components/PCanvasGrid.vue +1 -1
- package/src/packages/components/PFormGroup.vue +8 -2
- package/src/packages/store/renderStore.tsx +31 -14
- package/src/packages/styles/index.scss +21 -0
- package/src/packages/styles/variables.scss +1 -0
|
@@ -356,6 +356,8 @@ export interface PFormGroupInstance {
|
|
|
356
356
|
validateAll: () => Promise<void>;
|
|
357
357
|
validate: (index: number, ignoreTabError?: boolean) => Promise<void>;
|
|
358
358
|
validateFields: (index: number, fields: string[], ignoreTabError?: boolean) => Promise<void>;
|
|
359
|
+
collapse: () => void;
|
|
360
|
+
expand: () => void;
|
|
359
361
|
}
|
|
360
362
|
export interface PCanvasTableInstance<T extends Recordable = Recordable> {
|
|
361
363
|
$table: InstanceType<typeof EVirtTable>;
|