@vue-ui-kit/ant 2.0.6 → 2.0.8
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 +3 -3
- package/dist/declarations/antProxy.d.ts +3 -0
- package/dist/es/index.js +2296 -2183
- package/dist/packages/components/CollapseCard.vue.d.ts +33 -0
- package/dist/packages/components/PFormGroup.vue.d.ts +2 -0
- package/dist/packages/utils/core.d.ts +2 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/declarations/antProxy.ts +4 -0
- package/src/packages/components/CollapseCard.vue +74 -0
- package/src/packages/components/PCanvasTable.vue +2 -1
- package/src/packages/components/PFormCol.vue +61 -43
- package/src/packages/components/PFormGroup.vue +11 -4
- package/src/packages/utils/core.ts +22 -1
|
@@ -103,6 +103,9 @@ export interface PFormGroupProps<F extends Recordable = Recordable> {
|
|
|
103
103
|
tabLabel?: string;
|
|
104
104
|
editAble?: boolean;
|
|
105
105
|
showAdd?: boolean;
|
|
106
|
+
collapsible?: boolean;
|
|
107
|
+
/** 是否默认折叠 */
|
|
108
|
+
defaultCollapsed?: boolean;
|
|
106
109
|
lazyErrorMark?: boolean;
|
|
107
110
|
forceRender?: boolean;
|
|
108
111
|
keepSerial?: boolean;
|