@vue-ui-kit/ant 2.4.1 → 2.4.3
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 +3 -3
- package/dist/cjs/index.js +5 -5
- package/dist/declarations/antProxy.d.ts +1 -1
- package/dist/es/index.js +10999 -12163
- package/dist/index.d.ts +2 -2
- package/dist/packages/components/CollapseCard.vue.d.ts +29 -0
- package/dist/packages/components/PCanvasTable.vue.d.ts +177 -0
- package/dist/packages/components/PForm.vue.d.ts +22 -0
- package/dist/packages/components/PFormCol.vue.d.ts +23 -0
- package/dist/packages/components/PFormGroup.vue.d.ts +38 -0
- package/dist/packages/components/PGroupBlock.vue.d.ts +16 -0
- package/dist/packages/components/PromisePicker.vue.d.ts +25 -0
- package/dist/packages/components/RenderAntCell.d.ts +27 -9
- package/dist/packages/components/RenderDefaultSlots.d.ts +33 -13
- package/dist/packages/components/RenderEditCell.d.ts +22 -7
- package/dist/packages/components/RenderItemSlots.d.ts +24 -11
- package/dist/packages/components/RenderTitleSlots.d.ts +15 -5
- package/dist/packages/renders/TableInput.vue.d.ts +25 -0
- package/dist/packages/utils/config.d.ts +8 -0
- package/dist/style.css +419 -1
- package/dist/style.scss +22 -1
- package/package.json +10 -9
- package/src/declarations/antProxy.ts +9 -5
- package/src/index.ts +15 -2
- package/src/packages/components/PFormCol.vue +30 -14
- package/src/packages/components/PGrid.vue +134 -95
- package/src/packages/components/RenderAntCell.tsx +29 -29
- package/src/packages/styles/index.scss +22 -1
- package/src/packages/utils/config.ts +105 -92
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ setup({
|
|
|
59
59
|
grid: {
|
|
60
60
|
align: 'center', // Set default table alignment
|
|
61
61
|
lazyReset: true, // Don't auto-submit after reset
|
|
62
|
-
fitHeight:
|
|
62
|
+
fitHeight: 30, // Set adaptive height
|
|
63
63
|
},
|
|
64
64
|
});
|
|
65
65
|
|
|
@@ -909,7 +909,7 @@ const kitConfig: UIKitConfig = {
|
|
|
909
909
|
grid: {
|
|
910
910
|
align: 'center',
|
|
911
911
|
lazyReset: true,
|
|
912
|
-
fitHeight:
|
|
912
|
+
fitHeight: 30,
|
|
913
913
|
},
|
|
914
914
|
};
|
|
915
915
|
```
|
|
@@ -1216,7 +1216,7 @@ import UIKit, { PForm, PGrid, setup } from '@vue-ui-kit/ant';
|
|
|
1216
1216
|
setup({
|
|
1217
1217
|
grid: {
|
|
1218
1218
|
align: 'center',
|
|
1219
|
-
fitHeight:
|
|
1219
|
+
fitHeight: 30,
|
|
1220
1220
|
},
|
|
1221
1221
|
form: {
|
|
1222
1222
|
labelCol: labelColDict[4],
|