@crystaldesign/diva-backoffice 25.4.0-beta.21 → 25.4.0-beta.22

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.
@@ -30858,6 +30858,87 @@ var getInfoTypeKey = function getInfoTypeKey(t) {
30858
30858
  value: 14
30859
30859
  }];
30860
30860
  };
30861
+ var getItemTypeKey = function getItemTypeKey(t) {
30862
+ return [{
30863
+ name: t('backoffice.idmCatalogEditor.items.label.sessel'),
30864
+ value: '1'
30865
+ }, {
30866
+ name: t('backoffice.idmCatalogEditor.items.label.clubchair'),
30867
+ value: '2'
30868
+ }, {
30869
+ name: t('backoffice.idmCatalogEditor.items.label.relaxSessel'),
30870
+ value: '3'
30871
+ }, {
30872
+ name: t('backoffice.idmCatalogEditor.items.label.longChair'),
30873
+ value: '4'
30874
+ }, {
30875
+ name: t('backoffice.idmCatalogEditor.items.label.sofa'),
30876
+ value: '5'
30877
+ }, {
30878
+ name: t('backoffice.idmCatalogEditor.items.label.zwischenlement'),
30879
+ value: '6'
30880
+ }, {
30881
+ name: t('backoffice.idmCatalogEditor.items.label.eckelement'),
30882
+ value: '7'
30883
+ }, {
30884
+ name: t('backoffice.idmCatalogEditor.items.label.einzelliege'),
30885
+ value: '8'
30886
+ }, {
30887
+ name: t('backoffice.idmCatalogEditor.items.label.hocker'),
30888
+ value: '9'
30889
+ }, {
30890
+ name: t('backoffice.idmCatalogEditor.items.label.kissen'),
30891
+ value: '10'
30892
+ }, {
30893
+ name: t('backoffice.idmCatalogEditor.items.label.anstelltisch'),
30894
+ value: '11'
30895
+ }, {
30896
+ name: t('backoffice.idmCatalogEditor.items.label.esstisch'),
30897
+ value: '12'
30898
+ }, {
30899
+ name: t('backoffice.idmCatalogEditor.items.label.kombinationen'),
30900
+ value: '13'
30901
+ }, {
30902
+ name: t('backoffice.idmCatalogEditor.items.label.abschlusselement'),
30903
+ value: '14'
30904
+ }, {
30905
+ name: t('backoffice.idmCatalogEditor.items.label.bettsofa'),
30906
+ value: '15'
30907
+ }, {
30908
+ name: t('backoffice.idmCatalogEditor.items.label.sitzbank'),
30909
+ value: '16'
30910
+ }, {
30911
+ name: t('backoffice.idmCatalogEditor.items.label.stuhl'),
30912
+ value: '17'
30913
+ }, {
30914
+ name: t('backoffice.idmCatalogEditor.items.label.fussbank'),
30915
+ value: '18'
30916
+ }, {
30917
+ name: t('backoffice.idmCatalogEditor.items.label.kopfstuetze'),
30918
+ value: '19'
30919
+ }, {
30920
+ name: t('backoffice.idmCatalogEditor.items.label.leuchten'),
30921
+ value: '20'
30922
+ }, {
30923
+ name: t('backoffice.idmCatalogEditor.items.label.teppiche'),
30924
+ value: '21'
30925
+ }, {
30926
+ name: t('backoffice.idmCatalogEditor.items.label.kleinteile'),
30927
+ value: '22'
30928
+ }, {
30929
+ name: t('backoffice.idmCatalogEditor.items.label.polsterbetten'),
30930
+ value: '23'
30931
+ }, {
30932
+ name: t('backoffice.idmCatalogEditor.items.label.polsterbettgestelle'),
30933
+ value: '24'
30934
+ }, {
30935
+ name: t('backoffice.idmCatalogEditor.items.label.metrage'),
30936
+ value: '25'
30937
+ }, {
30938
+ name: t('backoffice.idmCatalogEditor.items.label.sonstiges'),
30939
+ value: '26'
30940
+ }];
30941
+ };
30861
30942
 
30862
30943
  function TablePackages () {
30863
30944
  var root = useStore();
@@ -33527,6 +33608,39 @@ function Prices (_ref) {
33527
33608
  articlePricefactors: newFactors
33528
33609
  });
33529
33610
  }, [pricelist, selectedSerie, setNodeDataValue]);
33611
+ var updateTypeKeyPriceFactor = useCallback(function (typeKey, value) {
33612
+ if (!selectedSerie) return;
33613
+
33614
+ // Create copies of the objects to modify
33615
+ var newFactors = _objectSpread$a({}, pricelist.typeKeyPricefactors);
33616
+ var serieFactors = _objectSpread$a({}, newFactors[selectedSerie.serieNo]);
33617
+ if (value.length === 0) {
33618
+ // Remove the empty article price factor
33619
+ delete serieFactors[typeKey];
33620
+
33621
+ // If serie factors is now empty, remove the entire serie entry
33622
+ if (Object.keys(serieFactors).length === 0) {
33623
+ delete newFactors[selectedSerie.serieNo];
33624
+ } else {
33625
+ newFactors[selectedSerie.serieNo] = serieFactors;
33626
+ }
33627
+
33628
+ // If no more series exist, set articlePricefactors to undefined
33629
+ if (Object.keys(newFactors).length === 0) {
33630
+ setNodeDataValue({
33631
+ typeKeyPricefactors: undefined
33632
+ });
33633
+ return;
33634
+ }
33635
+ } else {
33636
+ // Add/update the value
33637
+ serieFactors[typeKey] = value;
33638
+ newFactors[selectedSerie.serieNo] = serieFactors;
33639
+ }
33640
+ setNodeDataValue({
33641
+ typeKeyPricefactors: newFactors
33642
+ });
33643
+ }, [pricelist, selectedSerie, setNodeDataValue]);
33530
33644
  var updateSeriePriceFactor = useCallback(function (value) {
33531
33645
  if (!selectedSerie) return;
33532
33646
 
@@ -33619,6 +33733,48 @@ function Prices (_ref) {
33619
33733
  filter: false,
33620
33734
  sortable: false,
33621
33735
  editable: false
33736
+ }, {
33737
+ headerName: 'backoffice.idmCatalog.general.items.typeKey',
33738
+ field: 'typeKey',
33739
+ cellDataType: 'enum',
33740
+ customParams: {
33741
+ enumData: getItemTypeKey(t),
33742
+ displayLabelTemplate: '${name} (${value})'
33743
+ },
33744
+ editable: false
33745
+ }, {
33746
+ headerName: 'backoffice.idmCatalog.prices.typeKeyPricefactors.label.factor',
33747
+ field: 'typeKeyPricefactors',
33748
+ cellDataType: 'number',
33749
+ cellRenderer: PriceFactorCellRenderer,
33750
+ valueGetter: function valueGetter(_ref3) {
33751
+ var _pricelist$typeKeyPri;
33752
+ var data = _ref3.data;
33753
+ if (!data) return;
33754
+ return (_pricelist$typeKeyPri = pricelist.typeKeyPricefactors) === null || _pricelist$typeKeyPri === void 0 || (_pricelist$typeKeyPri = _pricelist$typeKeyPri[selectedSerie === null || selectedSerie === void 0 ? void 0 : selectedSerie.serieNo]) === null || _pricelist$typeKeyPri === void 0 ? void 0 : _pricelist$typeKeyPri[data.typeKey];
33755
+ },
33756
+ cellRendererParams: {
33757
+ onSave: function () {
33758
+ var _onSave2 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2(data, value) {
33759
+ return _regeneratorRuntime.wrap(function _callee2$(_context2) {
33760
+ while (1) switch (_context2.prev = _context2.next) {
33761
+ case 0:
33762
+ updateTypeKeyPriceFactor(data.typeKey, value);
33763
+ case 1:
33764
+ case "end":
33765
+ return _context2.stop();
33766
+ }
33767
+ }, _callee2);
33768
+ }));
33769
+ function onSave(_x3, _x4) {
33770
+ return _onSave2.apply(this, arguments);
33771
+ }
33772
+ return onSave;
33773
+ }()
33774
+ },
33775
+ filter: false,
33776
+ sortable: false,
33777
+ editable: false
33622
33778
  }].concat(_toConsumableArray((_priceFeatureGroups$m = priceFeatureGroups === null || priceFeatureGroups === void 0 ? void 0 : priceFeatureGroups.map(function (priceFeatureGroup) {
33623
33779
  var _priceFeatureGroup$ke, _priceFeatureGroup$ke2;
33624
33780
  return {
@@ -33645,19 +33801,19 @@ function Prices (_ref) {
33645
33801
  headerComponentParams: {
33646
33802
  additionalElement: /*#__PURE__*/jsx(PriceFactorInput, {
33647
33803
  onSave: (/*#__PURE__*/function () {
33648
- var _ref3 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2(data, value) {
33649
- return _regeneratorRuntime.wrap(function _callee2$(_context2) {
33650
- while (1) switch (_context2.prev = _context2.next) {
33804
+ var _ref4 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee3(data, value) {
33805
+ return _regeneratorRuntime.wrap(function _callee3$(_context3) {
33806
+ while (1) switch (_context3.prev = _context3.next) {
33651
33807
  case 0:
33652
33808
  updatePgPriceFactor(priceFeatureGroupItem, value);
33653
33809
  case 1:
33654
33810
  case "end":
33655
- return _context2.stop();
33811
+ return _context3.stop();
33656
33812
  }
33657
- }, _callee2);
33813
+ }, _callee3);
33658
33814
  }));
33659
- return function (_x3, _x4) {
33660
- return _ref3.apply(this, arguments);
33815
+ return function (_x5, _x6) {
33816
+ return _ref4.apply(this, arguments);
33661
33817
  };
33662
33818
  }()),
33663
33819
  value: (_pricelist$pgPricefac = pricelist.pgPricefactors) === null || _pricelist$pgPricefac === void 0 || (_pricelist$pgPricefac = _pricelist$pgPricefac[selectedSerie === null || selectedSerie === void 0 ? void 0 : selectedSerie.serieNo]) === null || _pricelist$pgPricefac === void 0 ? void 0 : _pricelist$pgPricefac[priceFeatureGroupItem],
@@ -33725,19 +33881,19 @@ function Prices (_ref) {
33725
33881
  value: (_pricelist$seriePrice = pricelist.seriePricefactors) === null || _pricelist$seriePrice === void 0 ? void 0 : _pricelist$seriePrice[selectedSerie === null || selectedSerie === void 0 ? void 0 : selectedSerie.serieNo],
33726
33882
  title: t('backoffice.idmCatalog.prices.priceFactor.label.series'),
33727
33883
  onSave: (/*#__PURE__*/function () {
33728
- var _ref4 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee3(_, value) {
33729
- return _regeneratorRuntime.wrap(function _callee3$(_context3) {
33730
- while (1) switch (_context3.prev = _context3.next) {
33884
+ var _ref5 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee4(_, value) {
33885
+ return _regeneratorRuntime.wrap(function _callee4$(_context4) {
33886
+ while (1) switch (_context4.prev = _context4.next) {
33731
33887
  case 0:
33732
33888
  updateSeriePriceFactor(value);
33733
33889
  case 1:
33734
33890
  case "end":
33735
- return _context3.stop();
33891
+ return _context4.stop();
33736
33892
  }
33737
- }, _callee3);
33893
+ }, _callee4);
33738
33894
  }));
33739
- return function (_x5, _x6) {
33740
- return _ref4.apply(this, arguments);
33895
+ return function (_x7, _x8) {
33896
+ return _ref5.apply(this, arguments);
33741
33897
  };
33742
33898
  }()),
33743
33899
  disabled: !selectedSerie
@@ -33981,6 +34137,11 @@ function TablePriceList () {
33981
34137
  cellDataType: 'object',
33982
34138
  editable: false,
33983
34139
  hide: true
34140
+ }, {
34141
+ field: 'typeKeyPricefactors',
34142
+ cellDataType: 'object',
34143
+ editable: false,
34144
+ hide: true
33984
34145
  }]
33985
34146
  };
33986
34147
  }, [apiInterface, i18n.language]);
@@ -35389,7 +35550,8 @@ function Items$1(_ref) {
35389
35550
  apiConfig = _ref.apiConfig,
35390
35551
  selectedSerie = _ref.selectedSerie;
35391
35552
  var _useTranslation = useTranslation(),
35392
- t = _useTranslation.t;
35553
+ t = _useTranslation.t,
35554
+ i18n = _useTranslation.i18n;
35393
35555
  var applicationData = useMemo(function () {
35394
35556
  return {
35395
35557
  organizationId: organizationId,
@@ -35408,85 +35570,6 @@ function Items$1(_ref) {
35408
35570
  name: t('backoffice.idmCatalogEditor.items.label.combination'),
35409
35571
  value: '2'
35410
35572
  }];
35411
- var typeKey = [{
35412
- name: t('backoffice.idmCatalogEditor.items.label.sessel'),
35413
- value: '1'
35414
- }, {
35415
- name: t('backoffice.idmCatalogEditor.items.label.clubchair'),
35416
- value: '2'
35417
- }, {
35418
- name: t('backoffice.idmCatalogEditor.items.label.relaxSessel'),
35419
- value: '3'
35420
- }, {
35421
- name: t('backoffice.idmCatalogEditor.items.label.longChair'),
35422
- value: '4'
35423
- }, {
35424
- name: t('backoffice.idmCatalogEditor.items.label.sofa'),
35425
- value: '5'
35426
- }, {
35427
- name: t('backoffice.idmCatalogEditor.items.label.zwischenlement'),
35428
- value: '6'
35429
- }, {
35430
- name: t('backoffice.idmCatalogEditor.items.label.eckelement'),
35431
- value: '7'
35432
- }, {
35433
- name: t('backoffice.idmCatalogEditor.items.label.einzelliege'),
35434
- value: '8'
35435
- }, {
35436
- name: t('backoffice.idmCatalogEditor.items.label.hocker'),
35437
- value: '9'
35438
- }, {
35439
- name: t('backoffice.idmCatalogEditor.items.label.kissen'),
35440
- value: '10'
35441
- }, {
35442
- name: t('backoffice.idmCatalogEditor.items.label.anstelltisch'),
35443
- value: '11'
35444
- }, {
35445
- name: t('backoffice.idmCatalogEditor.items.label.esstisch'),
35446
- value: '12'
35447
- }, {
35448
- name: t('backoffice.idmCatalogEditor.items.label.kombinationen'),
35449
- value: '13'
35450
- }, {
35451
- name: t('backoffice.idmCatalogEditor.items.label.abschlusselement'),
35452
- value: '14'
35453
- }, {
35454
- name: t('backoffice.idmCatalogEditor.items.label.bettsofa'),
35455
- value: '15'
35456
- }, {
35457
- name: t('backoffice.idmCatalogEditor.items.label.sitzbank'),
35458
- value: '16'
35459
- }, {
35460
- name: t('backoffice.idmCatalogEditor.items.label.stuhl'),
35461
- value: '17'
35462
- }, {
35463
- name: t('backoffice.idmCatalogEditor.items.label.fussbank'),
35464
- value: '18'
35465
- }, {
35466
- name: t('backoffice.idmCatalogEditor.items.label.kopfstuetze'),
35467
- value: '19'
35468
- }, {
35469
- name: t('backoffice.idmCatalogEditor.items.label.leuchten'),
35470
- value: '20'
35471
- }, {
35472
- name: t('backoffice.idmCatalogEditor.items.label.teppiche'),
35473
- value: '21'
35474
- }, {
35475
- name: t('backoffice.idmCatalogEditor.items.label.kleinteile'),
35476
- value: '22'
35477
- }, {
35478
- name: t('backoffice.idmCatalogEditor.items.label.polsterbetten'),
35479
- value: '23'
35480
- }, {
35481
- name: t('backoffice.idmCatalogEditor.items.label.polsterbettgestelle'),
35482
- value: '24'
35483
- }, {
35484
- name: t('backoffice.idmCatalogEditor.items.label.metrage'),
35485
- value: '25'
35486
- }, {
35487
- name: t('backoffice.idmCatalogEditor.items.label.sonstiges'),
35488
- value: '26'
35489
- }];
35490
35573
  return {
35491
35574
  type: 'dotnetSSM',
35492
35575
  idCol: 'typeNo',
@@ -35538,7 +35621,7 @@ function Items$1(_ref) {
35538
35621
  field: 'typeKey',
35539
35622
  cellDataType: 'enum',
35540
35623
  customParams: {
35541
- enumData: typeKey,
35624
+ enumData: getItemTypeKey(t),
35542
35625
  displayLabelTemplate: '${name} (${value})'
35543
35626
  },
35544
35627
  required: true
@@ -35717,7 +35800,7 @@ function Items$1(_ref) {
35717
35800
  suppressColumnsToolPanel: true
35718
35801
  }]
35719
35802
  };
35720
- }, [selectedCatalog === null || selectedCatalog === void 0 ? void 0 : selectedCatalog.isoLanguageIds]);
35803
+ }, [selectedCatalog === null || selectedCatalog === void 0 ? void 0 : selectedCatalog.isoLanguageIds, i18n.language]);
35721
35804
  return /*#__PURE__*/jsx(Spreadsheet, {
35722
35805
  gridId: 'crud-grid_items',
35723
35806
  applicationData: applicationData,
@@ -1 +1 @@
1
- {"version":3,"file":"Items.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/Items.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAErE,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAGvC,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,EAC5B,cAAc,EACd,eAAe,EACf,SAAS,EACT,aAAa,GACd,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,WAAW,CAAC;IAC7B,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,SAAS,CAAC;CACtB,qBA+UA"}
1
+ {"version":3,"file":"Items.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/Items.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAErE,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAIvC,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,EAC5B,cAAc,EACd,eAAe,EACf,SAAS,EACT,aAAa,GACd,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,WAAW,CAAC;IAC7B,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,SAAS,CAAC;CACtB,qBAkTA"}
@@ -23,4 +23,8 @@ export declare const getInfoTypeKey: (t: TFunction) => {
23
23
  name: string;
24
24
  value: number;
25
25
  }[];
26
+ export declare const getItemTypeKey: (t: TFunction) => {
27
+ name: string;
28
+ value: string;
29
+ }[];
26
30
  //# sourceMappingURL=commonEnums.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"commonEnums.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMCommonComponents/commonEnums.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAK1C,CAAC;AAEF,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAK1C,CAAC;AAEF,eAAO,MAAM,aAAa,MAAO,SAAS;;;GAQzC,CAAC;AAEF,eAAO,MAAM,mBAAmB,MAAO,SAAS;;;GAG/C,CAAC;AAEF,eAAO,MAAM,aAAa,MAAO,SAAS;;;GAOzC,CAAC;AAEF,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAe1C,CAAC"}
1
+ {"version":3,"file":"commonEnums.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMCommonComponents/commonEnums.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAK1C,CAAC;AAEF,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAK1C,CAAC;AAEF,eAAO,MAAM,aAAa,MAAO,SAAS;;;GAQzC,CAAC;AAEF,eAAO,MAAM,mBAAmB,MAAO,SAAS;;;GAG/C,CAAC;AAEF,eAAO,MAAM,aAAa,MAAO,SAAS;;;GAOzC,CAAC;AAEF,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAe1C,CAAC;AAEF,eAAO,MAAM,cAAc,MAAO,SAAS;;;GA2B1C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/Tables/Prices/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAWrE,MAAM,CAAC,OAAO,WAAW,EACvB,cAAc,EACd,SAAS,EACT,SAAS,EACT,SAAS,EACT,gBAAgB,GACjB,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,GAAG,CAAC;IACf,gBAAgB,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC;CAC1D,qBA4RA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/Tables/Prices/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAYrE,MAAM,CAAC,OAAO,WAAW,EACvB,cAAc,EACd,SAAS,EACT,SAAS,EACT,SAAS,EACT,gBAAgB,GACjB,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,GAAG,CAAC;IACf,gBAAgB,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC;CAC1D,qBA2VA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePriceList/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAYvE,MAAM,CAAC,OAAO,gCAwQb"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePriceList/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAYvE,MAAM,CAAC,OAAO,gCA8Qb"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-backoffice",
3
- "version": "25.4.0-beta.21",
3
+ "version": "25.4.0-beta.22",
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.4.0-beta.21",
19
- "@crystaldesign/content-item": "25.4.0-beta.21",
20
- "@crystaldesign/diva-core": "25.4.0-beta.21",
21
- "@crystaldesign/diva-utils": "25.4.0-beta.21",
22
- "@crystaldesign/media-upload": "25.4.0-beta.21",
23
- "@crystaldesign/rtf-editor": "25.4.0-beta.21",
24
- "@crystaldesign/spreadsheet": "25.4.0-beta.21",
18
+ "@crystaldesign/content-box": "25.4.0-beta.22",
19
+ "@crystaldesign/content-item": "25.4.0-beta.22",
20
+ "@crystaldesign/diva-core": "25.4.0-beta.22",
21
+ "@crystaldesign/diva-utils": "25.4.0-beta.22",
22
+ "@crystaldesign/media-upload": "25.4.0-beta.22",
23
+ "@crystaldesign/rtf-editor": "25.4.0-beta.22",
24
+ "@crystaldesign/spreadsheet": "25.4.0-beta.22",
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": "7628c562cb214a93339186bd495eac6b0b52b1aa"
54
+ "gitHead": "802cdeb86f1ea47faa16f4ece49a91a976e404d0"
55
55
  }