cnhis-design-vue 3.1.9-beta.2 → 3.1.9-beta.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.
Files changed (47) hide show
  1. package/README.md +22 -22
  2. package/es/packages/big-table/style/index.less +557 -557
  3. package/es/packages/bpmn-workflow/style/index.less +29 -29
  4. package/es/packages/button-print/style/index.less +30 -30
  5. package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +4 -6
  6. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +0 -3
  7. package/es/packages/chunk-upload/style/index.less +394 -394
  8. package/es/packages/drag-layout/src/DragLayout.vue.d.ts +5 -8
  9. package/es/packages/drag-layout/style/index.less +208 -208
  10. package/es/packages/field-set/style/index.less +157 -157
  11. package/es/packages/form-render/index.d.ts +1 -2
  12. package/es/packages/form-render/index.mjs +1 -1
  13. package/es/packages/form-render/src/FormRender.vue.d.ts +1 -2
  14. package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.mjs +11 -6
  15. package/es/packages/form-render/src/components/cascader.d.ts +6 -2
  16. package/es/packages/form-render/src/components/cascader.mjs +11 -5
  17. package/es/packages/form-render/src/components/select.d.ts +2 -0
  18. package/es/packages/form-render/src/components/select.mjs +16 -10
  19. package/es/packages/form-render/src/constants/index.d.ts +2 -1
  20. package/es/packages/form-render/src/constants/index.mjs +2 -1
  21. package/es/packages/form-render/src/hooks/index.d.ts +1 -1
  22. package/es/packages/form-render/src/hooks/index.mjs +1 -1
  23. package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +3 -1
  24. package/es/packages/form-render/src/hooks/useBusinessBinding.mjs +15 -15
  25. package/es/packages/form-render/src/hooks/useFormField.d.ts +1 -0
  26. package/es/packages/form-render/src/hooks/useFormField.mjs +7 -1
  27. package/es/packages/form-render/src/hooks/useFormItemDeps.d.ts +8 -0
  28. package/es/packages/form-render/src/hooks/useFormItemDeps.mjs +29 -0
  29. package/es/packages/form-render/src/utils/index.d.ts +5 -3
  30. package/es/packages/form-render/src/utils/index.mjs +13 -1
  31. package/es/packages/form-table/style/index.less +301 -301
  32. package/es/packages/grid/style/index.less +12 -12
  33. package/es/packages/index.less +2945 -2945
  34. package/es/packages/index.mjs +1 -1
  35. package/es/packages/info-header/style/index.less +153 -153
  36. package/es/packages/map/style/index.less +59 -59
  37. package/es/packages/scale-view/style/index.less +748 -748
  38. package/es/packages/select-label/src/LabelFormContent.vue.d.ts +0 -3
  39. package/es/packages/select-label/style/index.less +151 -151
  40. package/es/packages/select-person/style/index.less +229 -229
  41. package/es/packages/time-line/style/index.less +34 -34
  42. package/es/src/types/index.d.ts +1 -0
  43. package/global.d.ts +8 -8
  44. package/package.json +1 -1
  45. package/yarn-error.log +8659 -103
  46. package/es/packages/form-render/src/hooks/useUrlDeps.d.ts +0 -1
  47. package/es/packages/form-render/src/hooks/useUrlDeps.mjs +0 -4
package/README.md CHANGED
@@ -1,23 +1,23 @@
1
- # Vue 3 + Typescript + Vite
2
-
3
- This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
-
5
- ## Recommended IDE Setup
6
-
7
- - [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar)
8
-
9
- ## Type Support For `.vue` Imports in TS
10
-
11
- Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can enable Volar's `.vue` type support plugin by running `Volar: Switch TS Plugin on/off` from VSCode command palette.
12
-
13
- ## 使用
14
- ```JavaScript
15
- import { createApp } from "vue";
16
- import App from "./App.vue";
17
- import cui from "cnhis-design-vue";
18
- import "cnhis-design-vue/es/index.css";
19
-
20
- const app = createApp(App);
21
- app.use(cui);
22
- app.mount("#app");
1
+ # Vue 3 + Typescript + Vite
2
+
3
+ This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
+
5
+ ## Recommended IDE Setup
6
+
7
+ - [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar)
8
+
9
+ ## Type Support For `.vue` Imports in TS
10
+
11
+ Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can enable Volar's `.vue` type support plugin by running `Volar: Switch TS Plugin on/off` from VSCode command palette.
12
+
13
+ ## 使用
14
+ ```JavaScript
15
+ import { createApp } from "vue";
16
+ import App from "./App.vue";
17
+ import cui from "cnhis-design-vue";
18
+ import "cnhis-design-vue/es/index.css";
19
+
20
+ const app = createApp(App);
21
+ app.use(cui);
22
+ app.mount("#app");
23
23
  ```