@crystaldesign/diva-backoffice 25.1.0-beta.7 → 25.1.0-beta.9

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.
@@ -123,6 +123,9 @@ import { Spreadsheet as Spreadsheet$1 } from '@crystaldesign/spreadsheet';
123
123
  import EditOutlined from '@ant-design/icons/lib/icons/EditOutlined';
124
124
  import Checkbox$1 from 'antd/es/checkbox/Checkbox';
125
125
  import Modal$3 from 'antd/es/modal';
126
+ import Spin$1 from 'antd/es/spin';
127
+ import Flex from 'antd/es/flex';
128
+ import Alert$1 from 'antd/es/alert/Alert';
126
129
  import Switch$1 from 'antd/es/switch';
127
130
  import Layout$1 from 'antd/es/layout';
128
131
  import Menu from 'antd/es/menu';
@@ -131,7 +134,6 @@ import { WebPlannerReact } from '@crystaldesign/diva-web-planner-react';
131
134
  import { ErrorBoundary as ErrorBoundary$1 } from 'react-error-boundary';
132
135
  import { ContentItemComponent } from '@crystaldesign/content-item';
133
136
  import PushpinOutlined from '@ant-design/icons/lib/icons/PushpinOutlined';
134
- import Spin$1 from 'antd/es/spin';
135
137
 
136
138
  (function() {
137
139
  const env = {"STAGE":"production"};
@@ -30071,17 +30073,18 @@ var CatalogEditor$1 = observer(CatalogEditor);
30071
30073
 
30072
30074
  function ownKeys$6(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
30073
30075
  function _objectSpread$6(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$6(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$6(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
30074
- function SpreadsheetWrapper(props) {
30076
+ var SpreadsheetWrapper = /*#__PURE__*/forwardRef(function SpreadsheetWrapper(props, ref) {
30075
30077
  var _root$contentStore$bo, _root$contentStore$ri;
30076
30078
  var root = useStore();
30077
30079
  return /*#__PURE__*/jsx(Spreadsheet$1, _objectSpread$6(_objectSpread$6({}, props), {}, {
30080
+ ref: ref,
30078
30081
  darkMode: root.contentStore.theme == 'darkmode',
30079
30082
  jwt: root.dataStore.jwt,
30080
30083
  refSecondaryGrids: [(_root$contentStore$bo = root.contentStore.bottomToolBar.toolbarElement) !== null && _root$contentStore$bo !== void 0 ? _root$contentStore$bo : undefined, (_root$contentStore$ri = root.contentStore.rightToolBar.toolbarElement) !== null && _root$contentStore$ri !== void 0 ? _root$contentStore$ri : undefined].filter(function (element) {
30081
30084
  return element !== undefined;
30082
30085
  })
30083
30086
  }));
30084
- }
30087
+ });
30085
30088
  var Spreadsheet = observer(SpreadsheetWrapper);
30086
30089
 
30087
30090
  function useNavigation$1 () {
@@ -30220,6 +30223,54 @@ function hasUnpublishedChanges(publishDateString, lastUpdatedDateString) {
30220
30223
  return false;
30221
30224
  }
30222
30225
 
30226
+ function LoadingModal (_ref) {
30227
+ var isModalOpen = _ref.isModalOpen,
30228
+ handleOk = _ref.handleOk,
30229
+ error = _ref.error;
30230
+ var _useTranslation = useTranslation(),
30231
+ t = _useTranslation.t;
30232
+ var contentStyle = {
30233
+ padding: 50,
30234
+ borderRadius: 4
30235
+ };
30236
+ var content = /*#__PURE__*/jsx("div", {
30237
+ style: contentStyle
30238
+ });
30239
+ return /*#__PURE__*/jsx(Fragment, {
30240
+ children: /*#__PURE__*/jsxs(Modal$3, {
30241
+ open: isModalOpen,
30242
+ onOk: handleOk,
30243
+ cancelButtonProps: {
30244
+ style: {
30245
+ display: 'none'
30246
+ }
30247
+ },
30248
+ closable: false,
30249
+ okButtonProps: {
30250
+ style: {
30251
+ display: !error ? 'none' : undefined
30252
+ }
30253
+ },
30254
+ children: [error && /*#__PURE__*/jsx(Alert$1, {
30255
+ message: error,
30256
+ type: "error",
30257
+ showIcon: true
30258
+ }), !error && /*#__PURE__*/jsx(Flex, {
30259
+ gap: "middle",
30260
+ vertical: true,
30261
+ children: /*#__PURE__*/jsx(Flex, {
30262
+ gap: "middle",
30263
+ children: /*#__PURE__*/jsx(Spin$1, {
30264
+ tip: t('backoffice.idmEnricher.export.modaltext'),
30265
+ size: "large",
30266
+ children: content
30267
+ })
30268
+ })
30269
+ })]
30270
+ })
30271
+ });
30272
+ }
30273
+
30223
30274
  function TablePackages () {
30224
30275
  var root = useStore();
30225
30276
  var _useTranslation = useTranslation(),
@@ -30228,6 +30279,14 @@ function TablePackages () {
30228
30279
  organizationId = _useNavigation.organizationId,
30229
30280
  apiConfig = _useNavigation.apiConfig,
30230
30281
  updateNavigation = _useNavigation.updateNavigation;
30282
+ var _React$useState = React.useState(false),
30283
+ _React$useState2 = _slicedToArray(_React$useState, 2),
30284
+ fileIsLoading = _React$useState2[0],
30285
+ setFileIsLoading = _React$useState2[1];
30286
+ var _React$useState3 = React.useState(''),
30287
+ _React$useState4 = _slicedToArray(_React$useState3, 2),
30288
+ fileDownloadError = _React$useState4[0],
30289
+ setFileDownloadError = _React$useState4[1];
30231
30290
  var applicationData = useMemo(function () {
30232
30291
  return {
30233
30292
  organizationId: organizationId
@@ -30245,6 +30304,9 @@ function TablePackages () {
30245
30304
  //remove the packages submenu when opening this module
30246
30305
  root.contentStore.removeAdditionalElement('idmenricher');
30247
30306
  }, []);
30307
+ var handleLoadingModalOk = function handleLoadingModalOk() {
30308
+ setFileIsLoading(false);
30309
+ };
30248
30310
  return /*#__PURE__*/jsxs(Fragment, {
30249
30311
  children: [/*#__PURE__*/jsx(Descriptions$1, {
30250
30312
  title: t('backoffice.menu.items.label.IDMEnricherTablePackages')
@@ -30265,19 +30327,36 @@ function TablePackages () {
30265
30327
  icon: /*#__PURE__*/jsx(DownloadOutlined, {}),
30266
30328
  action: function () {
30267
30329
  var _action = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee(_ref3) {
30268
- var selectedNodes, url;
30330
+ var selectedNodes, url, alertTimeout;
30269
30331
  return _regeneratorRuntime.wrap(function _callee$(_context) {
30270
30332
  while (1) switch (_context.prev = _context.next) {
30271
30333
  case 0:
30272
30334
  selectedNodes = _ref3.selectedNodes;
30273
- url = apiConfig.enricherService + '/packages/' + selectedNodes[0].data._id + '/catalog';
30274
- _context.next = 4;
30335
+ url = apiConfig.enricherService + '/packages/' + selectedNodes[0].data._id + '/catalog'; // Show modal if download takes more than 3 seconds
30336
+ alertTimeout = setTimeout(function () {
30337
+ setFileIsLoading(true);
30338
+ }, 3000);
30339
+ _context.prev = 3;
30340
+ _context.next = 6;
30275
30341
  return downloadFile(url, root.dataStore.jwt, 'application/xml', selectedNodes[0].data.name + '.xml');
30276
- case 4:
30342
+ case 6:
30343
+ setFileIsLoading(false);
30344
+ _context.next = 12;
30345
+ break;
30346
+ case 9:
30347
+ _context.prev = 9;
30348
+ _context.t0 = _context["catch"](3);
30349
+ setFileDownloadError('File download failed:' + _context.t0);
30350
+ case 12:
30351
+ _context.prev = 12;
30352
+ // Clear the alert timeout once the download is complete or fails
30353
+ clearTimeout(alertTimeout);
30354
+ return _context.finish(12);
30355
+ case 15:
30277
30356
  case "end":
30278
30357
  return _context.stop();
30279
30358
  }
30280
- }, _callee);
30359
+ }, _callee, null, [[3, 9, 12, 15]]);
30281
30360
  }));
30282
30361
  function action(_x) {
30283
30362
  return _action.apply(this, arguments);
@@ -30402,6 +30481,10 @@ function TablePackages () {
30402
30481
  defaultValue: '${organizationId}'
30403
30482
  }]
30404
30483
  }
30484
+ }), /*#__PURE__*/jsx(LoadingModal, {
30485
+ isModalOpen: fileIsLoading,
30486
+ handleOk: handleLoadingModalOk,
30487
+ error: fileDownloadError
30405
30488
  })]
30406
30489
  });
30407
30490
  }
@@ -32189,7 +32272,8 @@ function OpenModalButton (_ref) {
32189
32272
  var title = _ref.title,
32190
32273
  type = _ref.type,
32191
32274
  idmService = _ref.idmService,
32192
- organizationId = _ref.organizationId;
32275
+ organizationId = _ref.organizationId,
32276
+ onClose = _ref.onClose;
32193
32277
  var _useTranslation = useTranslation(),
32194
32278
  t = _useTranslation.t;
32195
32279
  var _useState = useState(false),
@@ -32205,9 +32289,11 @@ function OpenModalButton (_ref) {
32205
32289
  };
32206
32290
  var handleOk = function handleOk() {
32207
32291
  setIsModalOpen(false);
32292
+ onClose();
32208
32293
  };
32209
32294
  var handleCancel = function handleCancel() {
32210
32295
  setIsModalOpen(false);
32296
+ onClose();
32211
32297
  };
32212
32298
  return /*#__PURE__*/jsxs(Fragment, {
32213
32299
  children: [/*#__PURE__*/jsx(Button$1, {
@@ -32242,6 +32328,15 @@ function TableCatalogs () {
32242
32328
  organizationId = _useNavigation.organizationId,
32243
32329
  apiConfig = _useNavigation.apiConfig,
32244
32330
  updateNavigation = _useNavigation.updateNavigation;
32331
+ var _React$useState = React.useState(false),
32332
+ _React$useState2 = _slicedToArray(_React$useState, 2),
32333
+ fileIsLoading = _React$useState2[0],
32334
+ setFileIsLoading = _React$useState2[1];
32335
+ var _React$useState3 = React.useState(''),
32336
+ _React$useState4 = _slicedToArray(_React$useState3, 2),
32337
+ fileDownloadError = _React$useState4[0],
32338
+ setFileDownloadError = _React$useState4[1];
32339
+ var spreadsheetRef = useRef(null);
32245
32340
  var format = [{
32246
32341
  name: t('backoffice.idmCatalogEditor.items.label.arbeitsplattenhersteller'),
32247
32342
  value: 'A'
@@ -32346,6 +32441,9 @@ function TableCatalogs () {
32346
32441
  //remove the packages submenu when opening this module
32347
32442
  root.contentStore.removeAdditionalElement('idmenricher');
32348
32443
  }, []);
32444
+ var handleLoadingModalOk = function handleLoadingModalOk() {
32445
+ setFileIsLoading(false);
32446
+ };
32349
32447
  return /*#__PURE__*/jsxs(Fragment, {
32350
32448
  children: [/*#__PURE__*/jsx(Descriptions$1, {
32351
32449
  title: /*#__PURE__*/jsxs("div", {
@@ -32357,11 +32455,16 @@ function TableCatalogs () {
32357
32455
  title: "IDM Import",
32358
32456
  type: "IDM_IMPORT",
32359
32457
  idmService: apiConfig.idmService,
32360
- organizationId: organizationId
32458
+ organizationId: organizationId,
32459
+ onClose: function onClose() {
32460
+ var _spreadsheetRef$curre;
32461
+ return spreadsheetRef === null || spreadsheetRef === void 0 || (_spreadsheetRef$curre = spreadsheetRef.current) === null || _spreadsheetRef$curre === void 0 ? void 0 : _spreadsheetRef$curre.refresh();
32462
+ }
32361
32463
  })
32362
32464
  })]
32363
32465
  })
32364
32466
  }), /*#__PURE__*/jsx(Spreadsheet, {
32467
+ ref: spreadsheetRef,
32365
32468
  gridId: 'catalogs-grid',
32366
32469
  applicationData: applicationData,
32367
32470
  rowActions: [{
@@ -32374,21 +32477,36 @@ function TableCatalogs () {
32374
32477
  icon: /*#__PURE__*/jsx(DownloadOutlined$1, {}),
32375
32478
  action: function () {
32376
32479
  var _action = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee(_ref2) {
32377
- var selectedNodes, context, url;
32480
+ var selectedNodes, url, alertTimeout;
32378
32481
  return _regeneratorRuntime.wrap(function _callee$(_context) {
32379
32482
  while (1) switch (_context.prev = _context.next) {
32380
32483
  case 0:
32381
- selectedNodes = _ref2.selectedNodes, context = _ref2.context;
32382
- url = apiConfig.idmService + '/v3.0/catalogs/' + selectedNodes[0].data._id + '/complete';
32383
- _context.next = 4;
32484
+ selectedNodes = _ref2.selectedNodes;
32485
+ url = apiConfig.idmService + '/v3.0/catalogs/' + selectedNodes[0].data._id + '/complete'; // Show modal if download takes more than 3 seconds
32486
+ alertTimeout = setTimeout(function () {
32487
+ setFileIsLoading(true);
32488
+ }, 3000);
32489
+ _context.prev = 3;
32490
+ _context.next = 6;
32384
32491
  return downloadFile(url, root.dataStore.jwt, 'application/xml', selectedNodes[0].data.name + '.xml');
32385
- case 4:
32386
- context.refresh();
32387
- case 5:
32492
+ case 6:
32493
+ setFileIsLoading(false);
32494
+ _context.next = 12;
32495
+ break;
32496
+ case 9:
32497
+ _context.prev = 9;
32498
+ _context.t0 = _context["catch"](3);
32499
+ setFileDownloadError('File download failed:' + _context.t0);
32500
+ case 12:
32501
+ _context.prev = 12;
32502
+ // Clear the alert timeout once the download is complete or fails
32503
+ clearTimeout(alertTimeout);
32504
+ return _context.finish(12);
32505
+ case 15:
32388
32506
  case "end":
32389
32507
  return _context.stop();
32390
32508
  }
32391
- }, _callee);
32509
+ }, _callee, null, [[3, 9, 12, 15]]);
32392
32510
  }));
32393
32511
  function action(_x) {
32394
32512
  return _action.apply(this, arguments);
@@ -32865,6 +32983,10 @@ function TableCatalogs () {
32865
32983
  editable: false
32866
32984
  }]
32867
32985
  }
32986
+ }), /*#__PURE__*/jsx(LoadingModal, {
32987
+ isModalOpen: fileIsLoading,
32988
+ handleOk: handleLoadingModalOk,
32989
+ error: fileDownloadError
32868
32990
  })]
32869
32991
  });
32870
32992
  }
@@ -4,7 +4,8 @@ interface Props {
4
4
  type: 'IDM_IMPORT';
5
5
  idmService: string;
6
6
  organizationId: string;
7
+ onClose: () => void;
7
8
  }
8
- export default function ({ title, type, idmService, organizationId }: Props): React.JSX.Element;
9
+ export default function ({ title, type, idmService, organizationId, onClose }: Props): React.JSX.Element;
9
10
  export {};
10
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/OpenModalButton/index.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAKxC,UAAU,KAAK;IACb,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,YAAY,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,cAAc,EAAE,EAAE,KAAK,qBAmC1E"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/OpenModalButton/index.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAKxC,UAAU,KAAK;IACb,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,YAAY,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,cAAc,EAAE,OAAO,EAAE,EAAE,KAAK,qBAsCnF"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableCatalogs/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAalD,MAAM,CAAC,OAAO,gCAgrBb"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableCatalogs/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAC;AAc1D,MAAM,CAAC,OAAO,gCA6sBb"}
@@ -1,8 +1,6 @@
1
- import { Props } from '@crystaldesign/spreadsheet';
1
+ import { Props, SpreadsheetRefProps } from '@crystaldesign/spreadsheet';
2
2
  import React from 'react';
3
- declare function SpreadsheetWrapper(props: Omit<Props, 'jwt'>): React.JSX.Element;
4
- declare const _default: typeof SpreadsheetWrapper & {
5
- displayName: string;
6
- };
3
+ declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<Omit<Props, "jwt"> & React.RefAttributes<SpreadsheetRefProps>, "ref"> & React.RefAttributes<SpreadsheetRefProps>>>;
7
4
  export default _default;
5
+ export { SpreadsheetRefProps } from '@crystaldesign/spreadsheet';
8
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCommonComponents/SpreadsheetWrapper/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAe,MAAM,4BAA4B,CAAC;AAEhE,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,iBAAS,kBAAkB,CAAC,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE,KAAK,CAAC,qBAcpD;;;;AAED,wBAA4C"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCommonComponents/SpreadsheetWrapper/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAe,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAErF,OAAO,KAAqB,MAAM,OAAO,CAAC;;AAoB1C,wBAA4C;AAC5C,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePackages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAWlD,MAAM,CAAC,OAAO,gCA4Kb"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePackages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAYlD,MAAM,CAAC,OAAO,gCAkMb"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ interface Props {
3
+ isModalOpen: boolean;
4
+ handleOk: () => void;
5
+ error?: string;
6
+ }
7
+ export default function ({ isModalOpen, handleOk, error }: Props): React.JSX.Element;
8
+ export {};
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/LoadingModal/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,UAAU,KAAK;IACb,WAAW,EAAE,OAAO,CAAC;IACrB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,WAAW,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE,KAAK,qBAgC/D"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-backoffice",
3
- "version": "25.1.0-beta.7",
3
+ "version": "25.1.0-beta.9",
4
4
  "license": "COMMERCIAL",
5
5
  "devDependencies": {
6
6
  "@testing-library/jest-dom": "^6.5.0",
@@ -15,13 +15,13 @@
15
15
  "dependencies": {
16
16
  "@ant-design/icons": "5.4.0",
17
17
  "@babel/runtime": "7.24.7",
18
- "@crystaldesign/content-box": "25.1.0-beta.7",
19
- "@crystaldesign/content-item": "25.1.0-beta.7",
20
- "@crystaldesign/diva-core": "25.1.0-beta.7",
21
- "@crystaldesign/diva-utils": "25.1.0-beta.7",
22
- "@crystaldesign/media-upload": "25.1.0-beta.7",
23
- "@crystaldesign/rtf-editor": "25.1.0-beta.7",
24
- "@crystaldesign/spreadsheet": "25.1.0-beta.7",
18
+ "@crystaldesign/content-box": "25.1.0-beta.9",
19
+ "@crystaldesign/content-item": "25.1.0-beta.9",
20
+ "@crystaldesign/diva-core": "25.1.0-beta.9",
21
+ "@crystaldesign/diva-utils": "25.1.0-beta.9",
22
+ "@crystaldesign/media-upload": "25.1.0-beta.9",
23
+ "@crystaldesign/rtf-editor": "25.1.0-beta.9",
24
+ "@crystaldesign/spreadsheet": "25.1.0-beta.9",
25
25
  "@google/model-viewer": "3.5.0",
26
26
  "ag-charts-community": "^10.1.0",
27
27
  "ag-charts-react": "^10.1.0",
@@ -51,5 +51,5 @@
51
51
  },
52
52
  "module": "build/esm/index.js",
53
53
  "types": "./build/types/backoffice/src/index.d.ts",
54
- "gitHead": "d7d53793eeedbe4cb621d39f7e658171ecf1c659"
54
+ "gitHead": "61dc736816088f6bb197d50f948273693043f026"
55
55
  }