@vunk/form 2.2.3 → 2.3.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/components/api-tables-select/index.cjs +468 -0
- package/components/api-tables-select/index.d.ts +4 -0
- package/components/api-tables-select/index.mjs +462 -0
- package/components/api-tables-select/src/ctx.d.ts +340 -0
- package/components/api-tables-select/src/index.vue.d.ts +845 -0
- package/components/api-tables-select/src/types.d.ts +19 -0
- package/components/button/src/index.vue.d.ts +16 -16
- package/components/card-input-collection/index.cjs +1 -0
- package/components/card-input-collection/index.mjs +1 -0
- package/components/card-input-collection/src/index.vue.d.ts +3 -3
- package/components/cascader/src/ctx.d.ts +2 -2
- package/components/cascader/src/index.vue.d.ts +22 -22
- package/components/checkbox/src/ctx.d.ts +1 -1
- package/components/checkbox/src/index.vue.d.ts +8 -8
- package/components/cloneDeep.cjs +25 -180
- package/components/cloneDeep.mjs +1 -156
- package/components/color-picker/src/index.vue.d.ts +4 -4
- package/components/date-picker/src/ctx.d.ts +2 -2
- package/components/date-picker/src/index.vue.d.ts +18 -18
- package/components/date-picker-range/src/ctx.d.ts +21 -21
- package/components/date-picker-range/src/index.vue.d.ts +50 -50
- package/components/download-plus/src/index.vue.d.ts +1 -1
- package/components/esri-input-geojson/src/append.vue.d.ts +1 -1
- package/components/esri-input-geojson/src/ctx.d.ts +2 -2
- package/components/esri-input-geojson/src/index.vue.d.ts +18 -18
- package/components/form/src/ctx.d.ts +2 -2
- package/components/form/src/index.vue.d.ts +11 -11
- package/components/form-item/src/index.vue.d.ts +2 -2
- package/components/input/src/ctx.d.ts +2 -2
- package/components/input/src/index.vue.d.ts +13 -13
- package/components/input-collection/index.cjs +1 -0
- package/components/input-collection/index.mjs +1 -0
- package/components/input-collection/src/index.vue.d.ts +4 -4
- package/components/input-link/src/index.vue.d.ts +6 -6
- package/components/input-number/src/ctx.d.ts +2 -2
- package/components/input-number/src/index.vue.d.ts +9 -9
- package/components/isObject.cjs +165 -0
- package/components/isObject.mjs +158 -0
- package/components/monaco-editor/src/index.vue.d.ts +2 -2
- package/components/radio/src/index.vue.d.ts +7 -7
- package/components/select/src/ctx.d.ts +3 -3
- package/components/select/src/index.vue.d.ts +24 -24
- package/components/slider/src/index.vue.d.ts +11 -11
- package/components/switch/src/index.vue.d.ts +10 -10
- package/components/tables-select/index.cjs +30 -4
- package/components/tables-select/index.d.ts +1 -0
- package/components/tables-select/index.mjs +30 -5
- package/components/tables-select/src/ctx.d.ts +15 -6
- package/components/tables-select/src/index.vue.d.ts +126 -116
- package/components/tables-select/src/types.d.ts +9 -1
- package/components/upload/src/ctx.d.ts +1 -1
- package/components/upload/src/index.vue.d.ts +4 -4
- package/components/upload-plus/src/index.vue.d.ts +1 -1
- package/components/van-cascader/src/index.vue.d.ts +14 -14
- package/components/var-datetime-picker/src/index.vue.d.ts +2 -2
- package/components/vditor/src/index.vue.d.ts +2 -2
- package/package.json +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vunk/form",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.esm.js",
|
|
6
6
|
"scripts": {
|
|
@@ -265,6 +265,11 @@
|
|
|
265
265
|
"types": "./components/button/index.d.ts",
|
|
266
266
|
"require": "./components/button/index.cjs"
|
|
267
267
|
},
|
|
268
|
+
"./components/api-tables-select": {
|
|
269
|
+
"import": "./components/api-tables-select/index.mjs",
|
|
270
|
+
"types": "./components/api-tables-select/index.d.ts",
|
|
271
|
+
"require": "./components/api-tables-select/index.cjs"
|
|
272
|
+
},
|
|
268
273
|
"./index.css": {
|
|
269
274
|
"import": "./index.css"
|
|
270
275
|
},
|