@innoways/hooks 6.3.1 → 6.3.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.
- package/CHANGELOG.md +16 -0
- package/dist/index.js +3 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feature: place auto complete search feature added, version 6.3.3
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @innoways/utils@6.3.3
|
|
10
|
+
|
|
11
|
+
## 6.3.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- feature: Added new field component place auto complete, version 6.3.2
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @innoways/utils@6.3.2
|
|
18
|
+
|
|
3
19
|
## 6.3.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -1199,7 +1199,9 @@ var useGlobalOptions = function useGlobalOptions() {
|
|
|
1199
1199
|
// 默认全局状态
|
|
1200
1200
|
var defaultGlobalState = {
|
|
1201
1201
|
stageErrors: {},
|
|
1202
|
-
apiJson: {}
|
|
1202
|
+
apiJson: {},
|
|
1203
|
+
webModalForPlaceAutoCompleteField: null,
|
|
1204
|
+
setGlobalState: function setGlobalState() {}
|
|
1203
1205
|
};
|
|
1204
1206
|
var globalStateContext = /*#__PURE__*/createContext(defaultGlobalState); // 返回上一次的value值
|
|
1205
1207
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@innoways/hooks",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.3",
|
|
4
4
|
"description": "drip-form通用hooks",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"hooks",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@babel/runtime": "^7.10.2",
|
|
34
|
-
"@innoways/utils": "^6.3.
|
|
34
|
+
"@innoways/utils": "^6.3.3",
|
|
35
35
|
"ahooks": "^2.10.12",
|
|
36
36
|
"ajv": "^8.6.2",
|
|
37
37
|
"immer": "^9.0.5",
|