cnhis-design-vue 3.1.8-beta.8 → 3.1.9-beta.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 (38) 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 +6 -4
  6. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +3 -0
  7. package/es/packages/chunk-upload/style/index.less +394 -394
  8. package/es/packages/drag-layout/src/DragLayout.vue.d.ts +8 -5
  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 +14 -0
  12. package/es/packages/form-render/src/FormRender.vue.d.ts +14 -0
  13. package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.mjs +12 -4
  14. package/es/packages/form-render/src/components/complex.d.ts +13 -0
  15. package/es/packages/form-render/src/components/complex.mjs +31 -0
  16. package/es/packages/form-render/src/components/index.d.ts +1 -0
  17. package/es/packages/form-render/src/components/index.mjs +1 -0
  18. package/es/packages/form-render/src/hooks/useFieldList2Schema.mjs +10 -1
  19. package/es/packages/form-render/src/types/fieldItem.d.ts +2 -0
  20. package/es/packages/form-render/style/index.css +8 -0
  21. package/es/packages/form-render/style/index.less +8 -0
  22. package/es/packages/form-table/style/index.less +301 -301
  23. package/es/packages/grid/style/index.less +12 -12
  24. package/es/packages/index.css +8 -0
  25. package/es/packages/index.less +2953 -2945
  26. package/es/packages/info-header/style/index.less +153 -153
  27. package/es/packages/map/style/index.less +59 -59
  28. package/es/packages/scale-view/style/index.less +748 -748
  29. package/es/packages/select-label/src/LabelFormContent.vue.d.ts +3 -0
  30. package/es/packages/select-label/style/index.less +151 -151
  31. package/es/packages/select-person/src/SelectPerson.vue.d.ts +6 -8
  32. package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.mjs +43 -18
  33. package/es/packages/select-person/src/utils/index.mjs +15 -2
  34. package/es/packages/select-person/style/index.less +229 -229
  35. package/es/packages/time-line/style/index.less +34 -34
  36. package/global.d.ts +8 -8
  37. package/package.json +1 -1
  38. package/yarn-error.log +103 -8659
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
  ```