@blocklet/pages-kit 0.6.104 → 0.6.106
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/lib/cjs/components/CustomComponentRenderer/state.js +3 -2
- package/lib/cjs/hooks/use-deep-compare-callback.js +8 -0
- package/lib/cjs/hooks/use-deep-compare-memo.js +16 -0
- package/lib/cjs/tsconfig.tsbuildinfo +1 -1
- package/lib/esm/components/CustomComponentRenderer/state.js +3 -2
- package/lib/esm/hooks/use-deep-compare-callback.js +4 -0
- package/lib/esm/hooks/use-deep-compare-memo.js +9 -0
- package/lib/esm/tsconfig.tsbuildinfo +1 -1
- package/lib/types/hooks/use-deep-compare-callback.d.ts +1 -0
- package/lib/types/hooks/use-deep-compare-memo.d.ts +1 -0
- package/lib/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +19 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/pages-kit",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.106",
|
|
4
4
|
"description": "Pages Kit components and utils for blocklet(s)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -44,6 +44,10 @@
|
|
|
44
44
|
"import": "./lib/esm/utils/*.js",
|
|
45
45
|
"require": "./lib/cjs/utils/*.js"
|
|
46
46
|
},
|
|
47
|
+
"./hooks/*": {
|
|
48
|
+
"import": "./lib/esm/hooks/*.js",
|
|
49
|
+
"require": "./lib/cjs/hooks/*.js"
|
|
50
|
+
},
|
|
47
51
|
"./contexts/*": {
|
|
48
52
|
"import": "./lib/esm/contexts/*.js",
|
|
49
53
|
"require": "./lib/cjs/contexts/*.js"
|
|
@@ -78,6 +82,10 @@
|
|
|
78
82
|
"./lib/types/utils/*.d.ts",
|
|
79
83
|
"./lib/types/utils/*/index.d.ts"
|
|
80
84
|
],
|
|
85
|
+
"hooks/*": [
|
|
86
|
+
"./lib/types/hooks/*.d.ts",
|
|
87
|
+
"./lib/types/hooks/*/index.d.ts"
|
|
88
|
+
],
|
|
81
89
|
"contexts/*": [
|
|
82
90
|
"./lib/types/contexts/*.d.ts",
|
|
83
91
|
"./lib/types/contexts/*/index.d.ts"
|
|
@@ -97,12 +105,12 @@
|
|
|
97
105
|
},
|
|
98
106
|
"dependencies": {
|
|
99
107
|
"@arcblock/did-connect-react": "^3.1.52",
|
|
100
|
-
"@blocklet/aigne-hub": "^0.4.
|
|
108
|
+
"@blocklet/aigne-hub": "^0.4.61",
|
|
101
109
|
"@blocklet/aigne-sdk": "^0.5.26",
|
|
102
|
-
"@blocklet/js-sdk": "^1.16.54-beta-
|
|
103
|
-
"@blocklet/sdk": "^1.16.54-beta-
|
|
104
|
-
"@blocklet/uploader": "^0.
|
|
105
|
-
"@blocklet/xss": "^0.
|
|
110
|
+
"@blocklet/js-sdk": "^1.16.54-beta-20251028-092308-569763e6",
|
|
111
|
+
"@blocklet/sdk": "^1.16.54-beta-20251028-092308-569763e6",
|
|
112
|
+
"@blocklet/uploader": "^0.3.1",
|
|
113
|
+
"@blocklet/xss": "^0.3.1",
|
|
106
114
|
"@faker-js/faker": "^9.0.3",
|
|
107
115
|
"@iconify-icons/tabler": "^1.2.95",
|
|
108
116
|
"@iconify/react": "^5.0.2",
|
|
@@ -131,6 +139,7 @@
|
|
|
131
139
|
"node-fetch": "^2.7.0",
|
|
132
140
|
"react-best-gradient-color-picker": "^3.0.14",
|
|
133
141
|
"react-error-boundary": "^4.0.13",
|
|
142
|
+
"react-fast-compare": "^3.2.2",
|
|
134
143
|
"react-flags-select": "^2.2.3",
|
|
135
144
|
"react-frame-component": "^5.2.7",
|
|
136
145
|
"react-helmet": "^6.1.0",
|
|
@@ -150,13 +159,13 @@
|
|
|
150
159
|
"yaml": "^2.5.0",
|
|
151
160
|
"zod": "^3.25.76",
|
|
152
161
|
"zustand": "^4.5.5",
|
|
153
|
-
"@blocklet/pages-kit-core": "^0.6.
|
|
162
|
+
"@blocklet/pages-kit-core": "^0.6.106"
|
|
154
163
|
},
|
|
155
164
|
"peerDependencies": {
|
|
156
165
|
"@arcblock/ux": "^3.1.39",
|
|
157
166
|
"@blocklet/js-sdk": "^1.16.48",
|
|
158
167
|
"@blocklet/sdk": "^1.16.48",
|
|
159
|
-
"@blocklet/uploader": "^0.
|
|
168
|
+
"@blocklet/uploader": "^0.3.1",
|
|
160
169
|
"@emotion/cache": "^11.11.0",
|
|
161
170
|
"@emotion/css": "^11.11.2",
|
|
162
171
|
"@emotion/react": "^11.11.1",
|
|
@@ -171,8 +180,8 @@
|
|
|
171
180
|
},
|
|
172
181
|
"devDependencies": {
|
|
173
182
|
"@arcblock/ux": "^3.1.52",
|
|
174
|
-
"@blocklet/js-sdk": "^1.16.54-beta-
|
|
175
|
-
"@blocklet/sdk": "^1.16.54-beta-
|
|
183
|
+
"@blocklet/js-sdk": "^1.16.54-beta-20251028-092308-569763e6",
|
|
184
|
+
"@blocklet/sdk": "^1.16.54-beta-20251028-092308-569763e6",
|
|
176
185
|
"@emotion/cache": "^11.14.0",
|
|
177
186
|
"@emotion/css": "^11.13.5",
|
|
178
187
|
"@emotion/react": "^11.14.0",
|