@piying/view-vue 1.1.15 → 1.1.17

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.
@@ -1,8 +1,10 @@
1
1
  import type { ControlValueAccessor } from '@piying/view-core';
2
2
  export declare function useControlValueAccessor(): {
3
3
  cva: ControlValueAccessor;
4
- value: import("vue").Ref<any>;
5
- disabled: import("vue").Ref<boolean>;
6
- valueChange: (input: any) => void;
7
- touchedChange: () => void;
4
+ cvaa: {
5
+ value: import("vue").Ref<any>;
6
+ disabled: import("vue").Ref<boolean>;
7
+ valueChange: (input: any) => void;
8
+ touchedChange: () => void;
9
+ };
8
10
  };
package/index.js CHANGED
@@ -199,13 +199,15 @@ function Ve() {
199
199
  e.value = t;
200
200
  }
201
201
  },
202
- value: o,
203
- disabled: e,
204
- valueChange: (t) => {
205
- n(t), o.value = t;
206
- },
207
- touchedChange: () => {
208
- r();
202
+ cvaa: {
203
+ value: o,
204
+ disabled: e,
205
+ valueChange: (t) => {
206
+ n(t), o.value = t;
207
+ },
208
+ touchedChange: () => {
209
+ r();
210
+ }
209
211
  }
210
212
  };
211
213
  }
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
- {
2
- "name": "@piying/view-vue",
3
- "version": "1.1.15",
4
- "type": "module",
5
- "dependencies": {
6
- "@piying/view-core": "^0.6.27",
7
- "fast-equals": "^5.2.2",
8
- "rfdc": "^1.4.1",
9
- "static-injector": "^6.1.2"
10
- },
11
- "sideEffects": false,
12
- "peerDependencies": {
13
- "vue": "^3.4.21"
14
- },
15
- "module": "index.js",
16
- "typings": "index.d.ts",
17
- "exports": {
18
- "./package.json": {
19
- "default": "./package.json"
20
- },
21
- ".": {
22
- "types": "./index.d.ts",
23
- "default": "./index.js"
24
- }
25
- }
1
+ {
2
+ "name": "@piying/view-vue",
3
+ "version": "1.1.17",
4
+ "type": "module",
5
+ "dependencies": {
6
+ "@piying/view-core": "^0.6.31",
7
+ "fast-equals": "^5.2.2",
8
+ "rfdc": "^1.4.1",
9
+ "static-injector": "^6.1.2"
10
+ },
11
+ "sideEffects": false,
12
+ "peerDependencies": {
13
+ "vue": "^3.4.21"
14
+ },
15
+ "module": "index.js",
16
+ "typings": "index.d.ts",
17
+ "exports": {
18
+ "./package.json": {
19
+ "default": "./package.json"
20
+ },
21
+ ".": {
22
+ "types": "./index.d.ts",
23
+ "default": "./index.js"
24
+ }
25
+ }
26
26
  }