cnhis-design-vue 3.2.4-beta.24 → 3.2.4-beta.25

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 (34) hide show
  1. package/es/components/big-table/src/components/edit-form/edit-select.d.ts +1 -1
  2. package/es/components/big-table/src/hooks/useEdit.d.ts +1 -1
  3. package/es/components/biunique-chat/index.d.ts +4 -1
  4. package/es/components/biunique-chat/src/Index.vue.d.ts +4 -1
  5. package/es/components/biunique-chat/src/components/ChatFile.vue.d.ts +4 -0
  6. package/es/components/biunique-chat/src/components/ChatFile.vue2.js +1 -1
  7. package/es/components/biunique-chat/src/components/ChatFooter.vue2.js +1 -1
  8. package/es/components/biunique-chat/src/components/ChatHeader.vue.d.ts +3 -0
  9. package/es/components/biunique-chat/src/components/ChatMain.vue.d.ts +2 -2
  10. package/es/components/biunique-chat/src/components/ChatMain.vue2.js +1 -1
  11. package/es/components/biunique-chat/src/utils/index.d.ts +2 -0
  12. package/es/components/biunique-chat/src/utils/index.js +1 -1
  13. package/es/components/biunique-chat/style/index.css +1 -1
  14. package/es/components/button-print/index.d.ts +3825 -1370
  15. package/es/components/button-print/src/ButtonPrint.vue.d.ts +3827 -1370
  16. package/es/components/button-print/src/ButtonPrint.vue2.js +1 -1
  17. package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +2061 -0
  18. package/es/components/button-print/src/components/NewPrintComponent.vue.js +1 -0
  19. package/es/components/button-print/src/components/NewPrintComponent.vue2.js +1 -0
  20. package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +1996 -0
  21. package/es/components/button-print/src/components/OldPrintComponent.vue.js +1 -0
  22. package/es/components/button-print/src/components/OldPrintComponent.vue2.js +1 -0
  23. package/es/components/button-print/src/constants/index.d.ts +2 -0
  24. package/es/components/button-print/src/constants/index.js +1 -0
  25. package/es/components/button-print/style/index.css +1 -1
  26. package/es/components/classification/src/components/table-modal/index.vue.d.ts +0 -3
  27. package/es/components/classification/src/index.vue.d.ts +0 -3
  28. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/levelSearchCascadePlugin/levelSearchCascade.vue.d.ts +1 -1
  29. package/es/components/index.css +1 -1
  30. package/es/components/search-cascader/index.d.ts +1 -1
  31. package/es/components/search-cascader/src/SearchCascader.vue.d.ts +1 -1
  32. package/es/env.d.ts +25 -25
  33. package/es/shared/package.json.js +1 -1
  34. package/package.json +2 -2
@@ -131,7 +131,7 @@ declare const SearchCascader: SFCWithInstall<import("vue").DefineComponent<{
131
131
  }>;
132
132
  eventBus: import("../../shared/types").AnyObject;
133
133
  uuid: string;
134
- show: import("vue").Ref<boolean> | import("vue").WritableComputedRef<boolean>;
134
+ show: import("vue").WritableComputedRef<boolean> | import("vue").Ref<boolean>;
135
135
  patternContent: import("vue").Ref<string>;
136
136
  editPlaceholderRef: import("vue").ComputedRef<string>;
137
137
  displayValue: import("vue").WritableComputedRef<string>;
@@ -133,7 +133,7 @@ declare const _default: import("vue").DefineComponent<{
133
133
  }>;
134
134
  eventBus: AnyObject;
135
135
  uuid: string;
136
- show: import("vue").Ref<boolean> | import("vue").WritableComputedRef<boolean>;
136
+ show: import("vue").WritableComputedRef<boolean> | import("vue").Ref<boolean>;
137
137
  patternContent: import("vue").Ref<string>;
138
138
  editPlaceholderRef: import("vue").ComputedRef<string>;
139
139
  displayValue: import("vue").WritableComputedRef<string>;
package/es/env.d.ts CHANGED
@@ -1,25 +1,25 @@
1
- /// <reference types="vite/client" />
2
-
3
- interface ImportMetaEnv {
4
- readonly VITE_APP_TYPE: string;
5
- // 更多环境变量...
6
- }
7
-
8
- interface ImportMeta {
9
- readonly env: ImportMetaEnv;
10
- }
11
-
12
- declare module '*.vue' {
13
- // @ts-ignore
14
- import type { App, defineComponent } from 'vue';
15
- // // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
16
- // // const component: DefineComponent<{}, {}, any>
17
- const component: ReturnType<typeof defineComponent> & {
18
- install(app: App): void;
19
- };
20
- // @ts-ignore
21
- export default component;
22
- }
23
-
24
- declare module '*.js';
25
-
1
+ /// <reference types="vite/client" />
2
+
3
+ interface ImportMetaEnv {
4
+ readonly VITE_APP_TYPE: string;
5
+ // 更多环境变量...
6
+ }
7
+
8
+ interface ImportMeta {
9
+ readonly env: ImportMetaEnv;
10
+ }
11
+
12
+ declare module '*.vue' {
13
+ // @ts-ignore
14
+ import type { App, defineComponent } from 'vue';
15
+ // // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
16
+ // // const component: DefineComponent<{}, {}, any>
17
+ const component: ReturnType<typeof defineComponent> & {
18
+ install(app: App): void;
19
+ };
20
+ // @ts-ignore
21
+ export default component;
22
+ }
23
+
24
+ declare module '*.js';
25
+
@@ -1 +1 @@
1
- var e="@cnhis-design-vue/shared",i="3.2.4-beta.24",s="index.ts",n={"naive-ui":"^2.30.0",vue:"^3.2.0"},a={"@vicons/ionicons5":"^0.12.0","lodash-es":"^4.17.21",moment:"^2.29.1","video.js":"^7.19.2","videojs-contrib-hls":"^5.15.0",viewerjs:"^1.10.5","xe-utils":"^3.5.4"},d={name:e,version:"3.2.4-beta.24",private:!0,main:"index.ts",peerDependencies:n,dependencies:a};export{d as default,a as dependencies,s as main,e as name,n as peerDependencies,i as version};
1
+ var e="@cnhis-design-vue/shared",i="3.2.4-beta.25",s="index.ts",n={"naive-ui":"^2.30.0",vue:"^3.2.0"},a={"@vicons/ionicons5":"^0.12.0","lodash-es":"^4.17.21",moment:"^2.29.1","video.js":"^7.19.2","videojs-contrib-hls":"^5.15.0",viewerjs:"^1.10.5","xe-utils":"^3.5.4"},d={name:e,version:"3.2.4-beta.25",private:!0,main:"index.ts",peerDependencies:n,dependencies:a};export{d as default,a as dependencies,s as main,e as name,n as peerDependencies,i as version};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
- "version": "3.2.4-beta.24",
3
+ "version": "3.2.4-beta.25",
4
4
  "license": "ISC",
5
5
  "module": "./es/components/index.js",
6
6
  "main": "./es/components/index.js",
@@ -71,5 +71,5 @@
71
71
  "iOS 7",
72
72
  "last 3 iOS versions"
73
73
  ],
74
- "gitHead": "ffd3e7085f23a8c163d34ee95ef77aa14ee62d3f"
74
+ "gitHead": "9c25cb9479e290b078d8f7121d7b9f1d99ca59cf"
75
75
  }