@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.
Files changed (57) hide show
  1. package/components/api-tables-select/index.cjs +468 -0
  2. package/components/api-tables-select/index.d.ts +4 -0
  3. package/components/api-tables-select/index.mjs +462 -0
  4. package/components/api-tables-select/src/ctx.d.ts +340 -0
  5. package/components/api-tables-select/src/index.vue.d.ts +845 -0
  6. package/components/api-tables-select/src/types.d.ts +19 -0
  7. package/components/button/src/index.vue.d.ts +16 -16
  8. package/components/card-input-collection/index.cjs +1 -0
  9. package/components/card-input-collection/index.mjs +1 -0
  10. package/components/card-input-collection/src/index.vue.d.ts +3 -3
  11. package/components/cascader/src/ctx.d.ts +2 -2
  12. package/components/cascader/src/index.vue.d.ts +22 -22
  13. package/components/checkbox/src/ctx.d.ts +1 -1
  14. package/components/checkbox/src/index.vue.d.ts +8 -8
  15. package/components/cloneDeep.cjs +25 -180
  16. package/components/cloneDeep.mjs +1 -156
  17. package/components/color-picker/src/index.vue.d.ts +4 -4
  18. package/components/date-picker/src/ctx.d.ts +2 -2
  19. package/components/date-picker/src/index.vue.d.ts +18 -18
  20. package/components/date-picker-range/src/ctx.d.ts +21 -21
  21. package/components/date-picker-range/src/index.vue.d.ts +50 -50
  22. package/components/download-plus/src/index.vue.d.ts +1 -1
  23. package/components/esri-input-geojson/src/append.vue.d.ts +1 -1
  24. package/components/esri-input-geojson/src/ctx.d.ts +2 -2
  25. package/components/esri-input-geojson/src/index.vue.d.ts +18 -18
  26. package/components/form/src/ctx.d.ts +2 -2
  27. package/components/form/src/index.vue.d.ts +11 -11
  28. package/components/form-item/src/index.vue.d.ts +2 -2
  29. package/components/input/src/ctx.d.ts +2 -2
  30. package/components/input/src/index.vue.d.ts +13 -13
  31. package/components/input-collection/index.cjs +1 -0
  32. package/components/input-collection/index.mjs +1 -0
  33. package/components/input-collection/src/index.vue.d.ts +4 -4
  34. package/components/input-link/src/index.vue.d.ts +6 -6
  35. package/components/input-number/src/ctx.d.ts +2 -2
  36. package/components/input-number/src/index.vue.d.ts +9 -9
  37. package/components/isObject.cjs +165 -0
  38. package/components/isObject.mjs +158 -0
  39. package/components/monaco-editor/src/index.vue.d.ts +2 -2
  40. package/components/radio/src/index.vue.d.ts +7 -7
  41. package/components/select/src/ctx.d.ts +3 -3
  42. package/components/select/src/index.vue.d.ts +24 -24
  43. package/components/slider/src/index.vue.d.ts +11 -11
  44. package/components/switch/src/index.vue.d.ts +10 -10
  45. package/components/tables-select/index.cjs +30 -4
  46. package/components/tables-select/index.d.ts +1 -0
  47. package/components/tables-select/index.mjs +30 -5
  48. package/components/tables-select/src/ctx.d.ts +15 -6
  49. package/components/tables-select/src/index.vue.d.ts +126 -116
  50. package/components/tables-select/src/types.d.ts +9 -1
  51. package/components/upload/src/ctx.d.ts +1 -1
  52. package/components/upload/src/index.vue.d.ts +4 -4
  53. package/components/upload-plus/src/index.vue.d.ts +1 -1
  54. package/components/van-cascader/src/index.vue.d.ts +14 -14
  55. package/components/var-datetime-picker/src/index.vue.d.ts +2 -2
  56. package/components/vditor/src/index.vue.d.ts +2 -2
  57. package/package.json +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vunk/form",
3
- "version": "2.2.3",
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
  },