@abtnode/ux 1.16.19-beta-340de95d → 1.16.19-beta-7b2db880
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/es/blocklet/component/add-component-core.js +3 -0
- package/es/blocklet/component/space-connector.js +3 -3
- package/es/blocklet/storage/connect-to.js +2 -0
- package/es/blocklet/transfer-owner.js +4 -1
- package/es/contexts/blocklet-storage.js +9 -9
- package/es/invitation/invitation-receive.js +4 -1
- package/es/team/members/transfer-node.js +1 -0
- package/es/util/index.js +6 -6
- package/lib/blocklet/component/add-component-core.js +3 -0
- package/lib/blocklet/component/space-connector.js +3 -3
- package/lib/blocklet/storage/connect-to.js +2 -0
- package/lib/blocklet/transfer-owner.js +4 -1
- package/lib/contexts/blocklet-storage.js +9 -9
- package/lib/invitation/invitation-receive.js +8 -1
- package/lib/team/members/transfer-node.js +1 -0
- package/lib/util/index.js +8 -8
- package/package.json +16 -16
|
@@ -215,6 +215,7 @@ export default function AddComponentCore({
|
|
|
215
215
|
}));
|
|
216
216
|
useEffect(() => {
|
|
217
217
|
if (params.pathPrefix) {
|
|
218
|
+
// eslint-disable-next-line no-use-before-define
|
|
218
219
|
const {
|
|
219
220
|
errMsg
|
|
220
221
|
} = validateInput({
|
|
@@ -253,6 +254,7 @@ export default function AddComponentCore({
|
|
|
253
254
|
onClick: async () => {
|
|
254
255
|
// set button disabled and show spinner
|
|
255
256
|
update(true);
|
|
257
|
+
// eslint-disable-next-line no-use-before-define
|
|
256
258
|
await onInstall(component.current.installInput);
|
|
257
259
|
},
|
|
258
260
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
@@ -415,6 +417,7 @@ export default function AddComponentCore({
|
|
|
415
417
|
setError(errMsg);
|
|
416
418
|
|
|
417
419
|
// the step can complete, install component
|
|
420
|
+
// eslint-disable-next-line no-use-before-define
|
|
418
421
|
if (activeStep === steps.length - 2) {
|
|
419
422
|
await onInstall(payload);
|
|
420
423
|
}
|
|
@@ -94,6 +94,9 @@ const SpaceConnector = /*#__PURE__*/forwardRef(({
|
|
|
94
94
|
Toast.error(error.message);
|
|
95
95
|
});
|
|
96
96
|
}
|
|
97
|
+
const [authorizeConnect, setAuthorizeConnect] = useState({
|
|
98
|
+
open: false
|
|
99
|
+
});
|
|
97
100
|
const onAuthorizeConnectSuccess = async (response, decrypt) => {
|
|
98
101
|
await saveSpaceConnectorEndpoint(blocklet.meta.did, decrypt(response.endpoint));
|
|
99
102
|
setTimeout(() => {
|
|
@@ -105,9 +108,6 @@ const SpaceConnector = /*#__PURE__*/forwardRef(({
|
|
|
105
108
|
refreshBlocklet();
|
|
106
109
|
}, 3000);
|
|
107
110
|
};
|
|
108
|
-
const [authorizeConnect, setAuthorizeConnect] = useState({
|
|
109
|
-
open: false
|
|
110
|
-
});
|
|
111
111
|
|
|
112
112
|
// eslint-disable-next-line no-shadow
|
|
113
113
|
const handleOnClickAuthorize = gatewayUrl => {
|
|
@@ -108,6 +108,8 @@ function ConnectTo({
|
|
|
108
108
|
try {
|
|
109
109
|
const endpoint = decrypt(response.endpoint);
|
|
110
110
|
const space = response.space ? decrypt(response.space) : {};
|
|
111
|
+
|
|
112
|
+
// eslint-disable-next-line no-use-before-define
|
|
111
113
|
await addSpaceGatewayNow({
|
|
112
114
|
endpoint,
|
|
113
115
|
// name 默认为 DID Space,兼容旧版本的 DID Spaces
|
|
@@ -46,6 +46,7 @@ export default function TransferOwner({
|
|
|
46
46
|
setLoading(true);
|
|
47
47
|
try {
|
|
48
48
|
setResult(res.result);
|
|
49
|
+
// eslint-disable-next-line no-use-before-define
|
|
49
50
|
setActiveStep(steps.length - 1); // 跳转到最后一步
|
|
50
51
|
} catch (err) {
|
|
51
52
|
const errMsg = formatError(err);
|
|
@@ -104,7 +105,9 @@ export default function TransferOwner({
|
|
|
104
105
|
endpoint
|
|
105
106
|
});
|
|
106
107
|
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
107
|
-
children: [/*#__PURE__*/_jsx(Box
|
|
108
|
+
children: [/*#__PURE__*/_jsx(Box
|
|
109
|
+
// eslint-disable-next-line no-use-before-define
|
|
110
|
+
, {
|
|
108
111
|
component: Bold,
|
|
109
112
|
dangerouslySetInnerHTML: {
|
|
110
113
|
__html: t('team.transferApp.transferDialog.createSuccessTip1')
|
|
@@ -86,6 +86,15 @@ function BlockletStorageProvider({
|
|
|
86
86
|
const autoBackup = useAutoBackup({
|
|
87
87
|
deps: [autoBackupRefresh]
|
|
88
88
|
});
|
|
89
|
+
const refreshSpaceGateways = () => {
|
|
90
|
+
setSpaceGatewaysRefresh(p => !p);
|
|
91
|
+
};
|
|
92
|
+
const refreshBackupEndpoint = () => {
|
|
93
|
+
setBackupEndpointRefresh(p => !p);
|
|
94
|
+
};
|
|
95
|
+
const refreshAutoBackup = () => {
|
|
96
|
+
setAutoBackupRefresh(x => !x);
|
|
97
|
+
};
|
|
89
98
|
|
|
90
99
|
/**
|
|
91
100
|
* @description
|
|
@@ -171,9 +180,6 @@ function BlockletStorageProvider({
|
|
|
171
180
|
}));
|
|
172
181
|
refreshSpaceGateways();
|
|
173
182
|
};
|
|
174
|
-
const refreshSpaceGateways = () => {
|
|
175
|
-
setSpaceGatewaysRefresh(p => !p);
|
|
176
|
-
};
|
|
177
183
|
|
|
178
184
|
/**
|
|
179
185
|
* @description
|
|
@@ -194,12 +200,6 @@ function BlockletStorageProvider({
|
|
|
194
200
|
});
|
|
195
201
|
refreshAutoBackup();
|
|
196
202
|
};
|
|
197
|
-
const refreshBackupEndpoint = () => {
|
|
198
|
-
setBackupEndpointRefresh(p => !p);
|
|
199
|
-
};
|
|
200
|
-
const refreshAutoBackup = () => {
|
|
201
|
-
setAutoBackupRefresh(x => !x);
|
|
202
|
-
};
|
|
203
203
|
return /*#__PURE__*/_jsx(Provider, {
|
|
204
204
|
value: {
|
|
205
205
|
spaceGateways,
|
|
@@ -56,7 +56,10 @@ function InvitationReceive({
|
|
|
56
56
|
forceConnected: false,
|
|
57
57
|
autoConnect: false,
|
|
58
58
|
locale,
|
|
59
|
-
extraParams
|
|
59
|
+
extraParams: {
|
|
60
|
+
provider: 'wallet',
|
|
61
|
+
...extraParams
|
|
62
|
+
},
|
|
60
63
|
baseUrl: window.location.origin,
|
|
61
64
|
prefix: joinURL(window.location.origin, AUTH_SERVICE_PREFIX, API_DID_PREFIX),
|
|
62
65
|
messages: {
|
package/es/util/index.js
CHANGED
|
@@ -165,6 +165,12 @@ export function patchJsxToLocale(rawStr, replaceMap = {}) {
|
|
|
165
165
|
return item;
|
|
166
166
|
}).filter(Boolean);
|
|
167
167
|
}
|
|
168
|
+
export const formatLocale = (locale = 'en') => {
|
|
169
|
+
if (locale === 'tw') {
|
|
170
|
+
return 'zh';
|
|
171
|
+
}
|
|
172
|
+
return locale;
|
|
173
|
+
};
|
|
168
174
|
export function formatToDate(date, locale = 'en') {
|
|
169
175
|
if (!date) {
|
|
170
176
|
return '-';
|
|
@@ -186,12 +192,6 @@ export function formatTime(date, format = 'lll', locale = 'en') {
|
|
|
186
192
|
export function formatDateTime(date, locale = 'en') {
|
|
187
193
|
return dayjs(date).locale(formatLocale(locale)).format('YYYY-MM-DD HH:mm');
|
|
188
194
|
}
|
|
189
|
-
export const formatLocale = (locale = 'en') => {
|
|
190
|
-
if (locale === 'tw') {
|
|
191
|
-
return 'zh';
|
|
192
|
-
}
|
|
193
|
-
return locale;
|
|
194
|
-
};
|
|
195
195
|
export const formatPrettyMsLocale = locale => locale === 'zh' ? 'zh_CN' : 'en_US';
|
|
196
196
|
export const parseQuery = str => str.replace(/^\?/, '').split('&').map(x => x.split('=')).filter(([key]) => !!key).reduce((memo, x) => {
|
|
197
197
|
const key = x[0];
|
|
@@ -232,6 +232,7 @@ function AddComponentCore(_ref3) {
|
|
|
232
232
|
const updateParams = obj => setParams(x => _objectSpread(_objectSpread({}, x), obj));
|
|
233
233
|
(0, _react.useEffect)(() => {
|
|
234
234
|
if (params.pathPrefix) {
|
|
235
|
+
// eslint-disable-next-line no-use-before-define
|
|
235
236
|
const {
|
|
236
237
|
errMsg
|
|
237
238
|
} = validateInput(_objectSpread(_objectSpread({}, params), {}, {
|
|
@@ -270,6 +271,7 @@ function AddComponentCore(_ref3) {
|
|
|
270
271
|
onClick: async () => {
|
|
271
272
|
// set button disabled and show spinner
|
|
272
273
|
update(true);
|
|
274
|
+
// eslint-disable-next-line no-use-before-define
|
|
273
275
|
await onInstall(component.current.installInput);
|
|
274
276
|
},
|
|
275
277
|
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_Box.default, {
|
|
@@ -427,6 +429,7 @@ function AddComponentCore(_ref3) {
|
|
|
427
429
|
setError(errMsg);
|
|
428
430
|
|
|
429
431
|
// the step can complete, install component
|
|
432
|
+
// eslint-disable-next-line no-use-before-define
|
|
430
433
|
if (activeStep === steps.length - 2) {
|
|
431
434
|
await onInstall(payload);
|
|
432
435
|
}
|
|
@@ -112,6 +112,9 @@ const SpaceConnector = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
|
112
112
|
_Toast.default.error(error.message);
|
|
113
113
|
});
|
|
114
114
|
}
|
|
115
|
+
const [authorizeConnect, setAuthorizeConnect] = (0, _react.useState)({
|
|
116
|
+
open: false
|
|
117
|
+
});
|
|
115
118
|
const onAuthorizeConnectSuccess = async (response, decrypt) => {
|
|
116
119
|
await saveSpaceConnectorEndpoint(blocklet.meta.did, decrypt(response.endpoint));
|
|
117
120
|
setTimeout(() => {
|
|
@@ -122,9 +125,6 @@ const SpaceConnector = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
|
122
125
|
refreshBlocklet();
|
|
123
126
|
}, 3000);
|
|
124
127
|
};
|
|
125
|
-
const [authorizeConnect, setAuthorizeConnect] = (0, _react.useState)({
|
|
126
|
-
open: false
|
|
127
|
-
});
|
|
128
128
|
|
|
129
129
|
// eslint-disable-next-line no-shadow
|
|
130
130
|
const handleOnClickAuthorize = gatewayUrl => {
|
|
@@ -117,6 +117,8 @@ function ConnectTo(_ref) {
|
|
|
117
117
|
try {
|
|
118
118
|
const endpoint = decrypt(response.endpoint);
|
|
119
119
|
const space = response.space ? decrypt(response.space) : {};
|
|
120
|
+
|
|
121
|
+
// eslint-disable-next-line no-use-before-define
|
|
120
122
|
await addSpaceGatewayNow(_objectSpread(_objectSpread({
|
|
121
123
|
endpoint
|
|
122
124
|
}, {
|
|
@@ -54,6 +54,7 @@ function TransferOwner(_ref) {
|
|
|
54
54
|
setLoading(true);
|
|
55
55
|
try {
|
|
56
56
|
setResult(res.result);
|
|
57
|
+
// eslint-disable-next-line no-use-before-define
|
|
57
58
|
setActiveStep(steps.length - 1); // 跳转到最后一步
|
|
58
59
|
} catch (err) {
|
|
59
60
|
const errMsg = (0, _util.formatError)(err);
|
|
@@ -112,7 +113,9 @@ function TransferOwner(_ref) {
|
|
|
112
113
|
endpoint
|
|
113
114
|
});
|
|
114
115
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
115
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_Box.default
|
|
116
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_Box.default
|
|
117
|
+
// eslint-disable-next-line no-use-before-define
|
|
118
|
+
, {
|
|
116
119
|
component: Bold,
|
|
117
120
|
dangerouslySetInnerHTML: {
|
|
118
121
|
__html: t('team.transferApp.transferDialog.createSuccessTip1')
|
|
@@ -97,6 +97,15 @@ function BlockletStorageProvider(_ref) {
|
|
|
97
97
|
const autoBackup = (0, _useAutoBackup.useAutoBackup)({
|
|
98
98
|
deps: [autoBackupRefresh]
|
|
99
99
|
});
|
|
100
|
+
const refreshSpaceGateways = () => {
|
|
101
|
+
setSpaceGatewaysRefresh(p => !p);
|
|
102
|
+
};
|
|
103
|
+
const refreshBackupEndpoint = () => {
|
|
104
|
+
setBackupEndpointRefresh(p => !p);
|
|
105
|
+
};
|
|
106
|
+
const refreshAutoBackup = () => {
|
|
107
|
+
setAutoBackupRefresh(x => !x);
|
|
108
|
+
};
|
|
100
109
|
|
|
101
110
|
/**
|
|
102
111
|
* @description
|
|
@@ -182,9 +191,6 @@ function BlockletStorageProvider(_ref) {
|
|
|
182
191
|
}));
|
|
183
192
|
refreshSpaceGateways();
|
|
184
193
|
};
|
|
185
|
-
const refreshSpaceGateways = () => {
|
|
186
|
-
setSpaceGatewaysRefresh(p => !p);
|
|
187
|
-
};
|
|
188
194
|
|
|
189
195
|
/**
|
|
190
196
|
* @description
|
|
@@ -205,12 +211,6 @@ function BlockletStorageProvider(_ref) {
|
|
|
205
211
|
});
|
|
206
212
|
refreshAutoBackup();
|
|
207
213
|
};
|
|
208
|
-
const refreshBackupEndpoint = () => {
|
|
209
|
-
setBackupEndpointRefresh(p => !p);
|
|
210
|
-
};
|
|
211
|
-
const refreshAutoBackup = () => {
|
|
212
|
-
setAutoBackupRefresh(x => !x);
|
|
213
|
-
};
|
|
214
214
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(Provider, {
|
|
215
215
|
value: {
|
|
216
216
|
spaceGateways,
|
|
@@ -18,6 +18,11 @@ var _jsxRuntime = require("react/jsx-runtime");
|
|
|
18
18
|
var _templateObject;
|
|
19
19
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
20
20
|
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
21
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
22
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
23
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
24
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
25
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
21
26
|
function InvitationReceive(_ref) {
|
|
22
27
|
let {
|
|
23
28
|
invitation,
|
|
@@ -66,7 +71,9 @@ function InvitationReceive(_ref) {
|
|
|
66
71
|
forceConnected: false,
|
|
67
72
|
autoConnect: false,
|
|
68
73
|
locale,
|
|
69
|
-
extraParams
|
|
74
|
+
extraParams: _objectSpread({
|
|
75
|
+
provider: 'wallet'
|
|
76
|
+
}, extraParams),
|
|
70
77
|
baseUrl: window.location.origin,
|
|
71
78
|
prefix: (0, _urlJoin.default)(window.location.origin, _constant.AUTH_SERVICE_PREFIX, _constant.API_DID_PREFIX),
|
|
72
79
|
messages: {
|
package/lib/util/index.js
CHANGED
|
@@ -220,6 +220,14 @@ function patchJsxToLocale(rawStr) {
|
|
|
220
220
|
return item;
|
|
221
221
|
}).filter(Boolean);
|
|
222
222
|
}
|
|
223
|
+
const formatLocale = function formatLocale() {
|
|
224
|
+
let locale = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'en';
|
|
225
|
+
if (locale === 'tw') {
|
|
226
|
+
return 'zh';
|
|
227
|
+
}
|
|
228
|
+
return locale;
|
|
229
|
+
};
|
|
230
|
+
exports.formatLocale = formatLocale;
|
|
223
231
|
function formatToDate(date) {
|
|
224
232
|
let locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en';
|
|
225
233
|
if (!date) {
|
|
@@ -246,14 +254,6 @@ function formatDateTime(date) {
|
|
|
246
254
|
let locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en';
|
|
247
255
|
return (0, _dayjs.default)(date).locale(formatLocale(locale)).format('YYYY-MM-DD HH:mm');
|
|
248
256
|
}
|
|
249
|
-
const formatLocale = function formatLocale() {
|
|
250
|
-
let locale = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'en';
|
|
251
|
-
if (locale === 'tw') {
|
|
252
|
-
return 'zh';
|
|
253
|
-
}
|
|
254
|
-
return locale;
|
|
255
|
-
};
|
|
256
|
-
exports.formatLocale = formatLocale;
|
|
257
257
|
const formatPrettyMsLocale = locale => locale === 'zh' ? 'zh_CN' : 'en_US';
|
|
258
258
|
exports.formatPrettyMsLocale = formatPrettyMsLocale;
|
|
259
259
|
const parseQuery = str => str.replace(/^\?/, '').split('&').map(x => x.split('=')).filter(_ref => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/ux",
|
|
3
|
-
"version": "1.16.19-beta-
|
|
3
|
+
"version": "1.16.19-beta-7b2db880",
|
|
4
4
|
"description": "UX components shared across abtnode packages",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -27,24 +27,24 @@
|
|
|
27
27
|
"author": "linchen <linchen1987@foxmail.com> (http://github.com/linchen1987)",
|
|
28
28
|
"license": "Apache-2.0",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@abtnode/auth": "1.16.19-beta-
|
|
31
|
-
"@abtnode/constant": "1.16.19-beta-
|
|
32
|
-
"@abtnode/util": "1.16.19-beta-
|
|
30
|
+
"@abtnode/auth": "1.16.19-beta-7b2db880",
|
|
31
|
+
"@abtnode/constant": "1.16.19-beta-7b2db880",
|
|
32
|
+
"@abtnode/util": "1.16.19-beta-7b2db880",
|
|
33
33
|
"@ahooksjs/use-url-state": "^3.5.1",
|
|
34
34
|
"@arcblock/did": "^1.18.95",
|
|
35
|
-
"@arcblock/did-connect": "^2.8.
|
|
35
|
+
"@arcblock/did-connect": "^2.8.14",
|
|
36
36
|
"@arcblock/did-motif": "^1.1.13",
|
|
37
|
-
"@arcblock/icons": "^2.8.
|
|
38
|
-
"@arcblock/nft-display": "2.8.
|
|
39
|
-
"@arcblock/react-hooks": "^2.8.
|
|
40
|
-
"@arcblock/terminal": "^2.8.
|
|
41
|
-
"@arcblock/ux": "^2.8.
|
|
42
|
-
"@blocklet/constant": "1.16.19-beta-
|
|
43
|
-
"@blocklet/launcher-layout": "2.2.
|
|
37
|
+
"@arcblock/icons": "^2.8.14",
|
|
38
|
+
"@arcblock/nft-display": "2.8.14",
|
|
39
|
+
"@arcblock/react-hooks": "^2.8.14",
|
|
40
|
+
"@arcblock/terminal": "^2.8.14",
|
|
41
|
+
"@arcblock/ux": "^2.8.14",
|
|
42
|
+
"@blocklet/constant": "1.16.19-beta-7b2db880",
|
|
43
|
+
"@blocklet/launcher-layout": "2.2.36",
|
|
44
44
|
"@blocklet/list": "^0.12.52",
|
|
45
|
-
"@blocklet/meta": "1.16.19-beta-
|
|
46
|
-
"@blocklet/ui-react": "^2.8.
|
|
47
|
-
"@blocklet/uploader": "^0.0.
|
|
45
|
+
"@blocklet/meta": "1.16.19-beta-7b2db880",
|
|
46
|
+
"@blocklet/ui-react": "^2.8.14",
|
|
47
|
+
"@blocklet/uploader": "^0.0.40",
|
|
48
48
|
"@emotion/react": "^11.10.4",
|
|
49
49
|
"@emotion/styled": "^11.10.4",
|
|
50
50
|
"@iconify/react": "^4.0.0",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"babel-plugin-inline-react-svg": "^1.1.2",
|
|
101
101
|
"glob": "^10.3.3"
|
|
102
102
|
},
|
|
103
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "598b576b97dd7accbfa1bb509b75e423ad27e5e2",
|
|
104
104
|
"exports": {
|
|
105
105
|
".": {
|
|
106
106
|
"import": "./es/index.js",
|