@crystaldesign/diva-backoffice 25.2.0-beta.24 → 25.2.0-beta.25

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.
@@ -2058,7 +2058,7 @@ function loadConfiguration(t, root, config, lang) {
2058
2058
  apiInterface: {
2059
2059
  read: {
2060
2060
  list: '${mediaService}/renderjobs/overview?from=${from}&to=${to}',
2061
- filterServerSide: true
2061
+ filterServerSide: false
2062
2062
  },
2063
2063
  update: {
2064
2064
  url: '${mediaService}/renderjobs/{_id}/state',
@@ -31386,6 +31386,9 @@ function SeriesSelector$1(_ref) {
31386
31386
  var _useTranslation = useTranslation(),
31387
31387
  t = _useTranslation.t,
31388
31388
  i18n = _useTranslation.i18n;
31389
+ useEffect(function () {
31390
+ setSelectedSerie(undefined);
31391
+ }, [packageId]);
31389
31392
  return /*#__PURE__*/jsx(SimpleSelect, {
31390
31393
  apiInterface: {
31391
31394
  read: enricherService + '/packages/' + packageId + '/' + dataSet + "/series?fields=seriesName[".concat(i18n.language.toLocaleUpperCase(), "];_id;serieNo").concat(additionalFields ? ";".concat(additionalFields.join(';')) : '')
@@ -31404,7 +31407,7 @@ function SeriesSelector$1(_ref) {
31404
31407
  style: {
31405
31408
  width: 200
31406
31409
  }
31407
- });
31410
+ }, packageId);
31408
31411
  }
31409
31412
 
31410
31413
  function FeatureSelector$1(_ref) {
@@ -31416,6 +31419,9 @@ function FeatureSelector$1(_ref) {
31416
31419
  var _useTranslation = useTranslation(),
31417
31420
  t = _useTranslation.t,
31418
31421
  i18n = _useTranslation.i18n;
31422
+ useEffect(function () {
31423
+ setSelectedFeature(undefined);
31424
+ }, [packageId]);
31419
31425
  return /*#__PURE__*/jsx(SimpleSelect, {
31420
31426
  apiInterface: {
31421
31427
  read: enricherService + '/packages/' + packageId + '/' + dataSet + "/features?fields=featureText[".concat(i18n.language.toLocaleUpperCase(), "];featureNo;_id")
@@ -31434,7 +31440,7 @@ function FeatureSelector$1(_ref) {
31434
31440
  style: {
31435
31441
  width: 200
31436
31442
  }
31437
- });
31443
+ }, packageId);
31438
31444
  }
31439
31445
 
31440
31446
  function useConfiguration (configuration) {
@@ -31764,7 +31770,8 @@ var config = {
31764
31770
  }, {
31765
31771
  field: 'purchaseRetailId',
31766
31772
  headerName: 'backoffice.idmEnricher.exclusivity.label.purchaseRetailId',
31767
- editable: false
31773
+ editable: false,
31774
+ cellDataType: 'number'
31768
31775
  }, {
31769
31776
  headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
31770
31777
  field: 'validFrom',
@@ -34579,6 +34586,9 @@ function SeriesSelector(_ref) {
34579
34586
  var _useTranslation = useTranslation(),
34580
34587
  t = _useTranslation.t,
34581
34588
  i18n = _useTranslation.i18n;
34589
+ useEffect(function () {
34590
+ setSelectedSerie(undefined);
34591
+ }, [catalogId]);
34582
34592
  return /*#__PURE__*/jsx(SimpleSelect, {
34583
34593
  apiInterface: {
34584
34594
  read: idmService + '/v3.0/catalogs/' + catalogId + "/series?fields=seriesName[".concat(i18n.language.toLocaleUpperCase(), "];_id;serieNo").concat(additionalFields ? ";".concat(additionalFields.join(';')) : '')
@@ -34873,11 +34883,6 @@ function Items(_ref) {
34873
34883
  field: 'typeNo',
34874
34884
  required: true,
34875
34885
  unique: true
34876
- }, {
34877
- headerName: 'backoffice.idmCatalogEditor.items.label.priceTypeRef',
34878
- field: 'priceTypeRef',
34879
- cellDataType: 'number',
34880
- required: true
34881
34886
  }, {
34882
34887
  headerName: 'backoffice.idmCatalogEditor.general.label.sequenceNo',
34883
34888
  field: 'sequenceNo',
@@ -35109,6 +35114,13 @@ function Items(_ref) {
35109
35114
  headerName: 'backoffice.idmCatalog.general.label.lastUpdatedByDisplayText',
35110
35115
  field: 'lastUpdatedByDisplayText',
35111
35116
  editable: false
35117
+ }, {
35118
+ field: 'priceTypeRef',
35119
+ defaultValue: 1,
35120
+ editable: false,
35121
+ hide: true,
35122
+ lockVisible: true,
35123
+ suppressColumnsToolPanel: true
35112
35124
  }]
35113
35125
  };
35114
35126
  }, []);
@@ -35513,7 +35525,8 @@ function Options(_ref) {
35513
35525
  headerName: 'backoffice.idmCatalog.options.label.measurement',
35514
35526
  children: [{
35515
35527
  headerName: 'backoffice.idmCatalog.options.label.measureNo',
35516
- field: 'measureNo'
35528
+ field: 'measureNo',
35529
+ cellDataType: 'number'
35517
35530
  }, {
35518
35531
  headerName: 'backoffice.idmCatalog.options.label.measureValue',
35519
35532
  field: 'measureValue',
@@ -35816,6 +35829,9 @@ function FeatureSelector(_ref) {
35816
35829
  var _useTranslation = useTranslation(),
35817
35830
  t = _useTranslation.t,
35818
35831
  i18n = _useTranslation.i18n;
35832
+ useEffect(function () {
35833
+ setSelectedFeature(undefined);
35834
+ }, [catalogId]);
35819
35835
  return /*#__PURE__*/jsx(SimpleSelect, {
35820
35836
  apiInterface: {
35821
35837
  read: idmService + '/v3.0/catalogs/' + catalogId + "/features?fields=featureText[".concat(i18n.language.toLocaleUpperCase(), "];featureNo;_id")
@@ -35834,7 +35850,7 @@ function FeatureSelector(_ref) {
35834
35850
  style: {
35835
35851
  width: 200
35836
35852
  }
35837
- });
35853
+ }, catalogId);
35838
35854
  }
35839
35855
 
35840
35856
  function TableOptions () {
@@ -35950,7 +35966,8 @@ function TableFeatureClasses () {
35950
35966
  colDef: [{
35951
35967
  field: 'featureClassNo',
35952
35968
  headerName: 'backoffice.idmCatalog.featureclasses.label.featureClassNo',
35953
- required: true
35969
+ required: true,
35970
+ cellDataType: 'number'
35954
35971
  }, {
35955
35972
  headerName: 'backoffice.idmCatalog.featureclasses.label.featureClassName',
35956
35973
  marryChildren: true,
@@ -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;AAIrE,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,EAC5B,cAAc,EACd,SAAS,EACT,SAAS,EACT,aAAa,GACd,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,SAAS,CAAC;CACtB,qBA4WA"}
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;AAIrE,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,EAC5B,cAAc,EACd,SAAS,EACT,SAAS,EACT,aAAa,GACd,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,SAAS,CAAC;CACtB,qBA8WA"}
@@ -1 +1 @@
1
- {"version":3,"file":"Options.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/Options.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAGrD,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,EAC9B,cAAc,EACd,SAAS,EACT,eAAe,EACf,SAAS,GACV,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,SAAS,EAAE,SAAS,CAAC;CACtB,qBAsLA"}
1
+ {"version":3,"file":"Options.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/Options.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAGrD,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,EAC9B,cAAc,EACd,SAAS,EACT,eAAe,EACf,SAAS,GACV,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,SAAS,EAAE,SAAS,CAAC;CACtB,qBAuLA"}
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  interface FeatureSelectorProps {
3
3
  catalogId: string;
4
4
  selectedFeature?: any;
5
- setSelectedFeature?: (value: any) => void;
5
+ setSelectedFeature: (value: any) => void;
6
6
  idmService: string;
7
7
  }
8
8
  export default function FeatureSelector({ catalogId, selectedFeature, setSelectedFeature, idmService }: FeatureSelectorProps): React.JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"FeatureSelector.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/PrefilterSelectors/FeatureSelector.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,oBAAoB;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAC1C,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EAAE,SAAS,EAAE,eAAe,EAAE,kBAAkB,EAAE,UAAU,EAAE,EAAE,oBAAoB,qBAoB3H"}
1
+ {"version":3,"file":"FeatureSelector.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/PrefilterSelectors/FeatureSelector.tsx"],"names":[],"mappings":"AACA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAGzC,UAAU,oBAAoB;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,kBAAkB,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACzC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EAAE,SAAS,EAAE,eAAe,EAAE,kBAAkB,EAAE,UAAU,EAAE,EAAE,oBAAoB,qBAyB3H"}
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  interface SeriesSelectorProps {
3
3
  catalogId: string;
4
4
  selectedSerie?: any;
5
- setSelectedSerie?: (value: any) => void;
5
+ setSelectedSerie: (value: any) => void;
6
6
  idmService: string;
7
7
  additionalFields?: string[];
8
8
  }
@@ -1 +1 @@
1
- {"version":3,"file":"SeriesSelector.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/PrefilterSelectors/SeriesSelector.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,mBAAmB;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,GAAG,CAAC;IACpB,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACxC,UAAU,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC7B;AAED,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EAAE,SAAS,EAAE,aAAa,EAAE,gBAAgB,EAAE,UAAU,EAAE,gBAAgB,EAAE,EAAE,mBAAmB,qBAyBvI"}
1
+ {"version":3,"file":"SeriesSelector.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/PrefilterSelectors/SeriesSelector.tsx"],"names":[],"mappings":"AACA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAGzC,UAAU,mBAAmB;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,GAAG,CAAC;IACpB,gBAAgB,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC7B;AAED,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EAAE,SAAS,EAAE,aAAa,EAAE,gBAAgB,EAAE,UAAU,EAAE,gBAAgB,EAAE,EAAE,mBAAmB,qBA6BvI"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAWlD,MAAM,CAAC,OAAO,gCA+Kb"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAWlD,MAAM,CAAC,OAAO,gCAgLb"}
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  interface FeatureSelectorProps {
3
3
  packageId: string;
4
4
  selectedFeature?: any;
5
- setSelectedFeature?: (value: any) => void;
5
+ setSelectedFeature: (value: any) => void;
6
6
  enricherService: string;
7
7
  dataSet: 'lookup' | 'exclusivities';
8
8
  }
@@ -1 +1 @@
1
- {"version":3,"file":"FeatureSelector.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/components/PrefilterSelectors/FeatureSelector.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,oBAAoB;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAC1C,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,QAAQ,GAAG,eAAe,CAAC;CACrC;AAED,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EAAE,SAAS,EAAE,eAAe,EAAE,kBAAkB,EAAE,eAAe,EAAE,OAAO,EAAE,EAAE,oBAAoB,qBA0BzI"}
1
+ {"version":3,"file":"FeatureSelector.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/components/PrefilterSelectors/FeatureSelector.tsx"],"names":[],"mappings":"AACA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAGzC,UAAU,oBAAoB;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,kBAAkB,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACzC,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,QAAQ,GAAG,eAAe,CAAC;CACrC;AAED,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EAAE,SAAS,EAAE,eAAe,EAAE,kBAAkB,EAAE,eAAe,EAAE,OAAO,EAAE,EAAE,oBAAoB,qBA+BzI"}
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  interface SeriesSelectorProps {
3
3
  packageId: string;
4
4
  selectedSerie?: any;
5
- setSelectedSerie?: (value: any) => void;
5
+ setSelectedSerie: (value: any) => void;
6
6
  enricherService: string;
7
7
  dataSet: 'lookup' | 'exclusivities';
8
8
  additionalFields?: string[];
@@ -1 +1 @@
1
- {"version":3,"file":"SeriesSelector.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/components/PrefilterSelectors/SeriesSelector.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,mBAAmB;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,GAAG,CAAC;IACpB,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACxC,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,QAAQ,GAAG,eAAe,CAAC;IACpC,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC7B;AAED,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EACrC,SAAS,EACT,aAAa,EACb,gBAAgB,EAChB,eAAe,EACf,OAAO,EACP,gBAAgB,GACjB,EAAE,mBAAmB,qBA0BrB"}
1
+ {"version":3,"file":"SeriesSelector.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/components/PrefilterSelectors/SeriesSelector.tsx"],"names":[],"mappings":"AACA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAGzC,UAAU,mBAAmB;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,GAAG,CAAC;IACpB,gBAAgB,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACvC,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,QAAQ,GAAG,eAAe,CAAC;IACpC,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC7B;AAED,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EACrC,SAAS,EACT,aAAa,EACb,gBAAgB,EAChB,eAAe,EACf,OAAO,EACP,gBAAgB,GACjB,EAAE,mBAAmB,qBA+BrB"}
@@ -1 +1 @@
1
- {"version":3,"file":"tableConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableExclusivity/tableConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAElF,QAAA,MAAM,MAAM,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,MAAM,EAAE,CAAC,mBAAmB,CAAC,GAAG,CAAC,GAAG,eAAe,CAAC,GAAG,EAAE,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,CAAA;CA8avH,CAAC;AAEF,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"tableConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableExclusivity/tableConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAElF,QAAA,MAAM,MAAM,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,MAAM,EAAE,CAAC,mBAAmB,CAAC,GAAG,CAAC,GAAG,eAAe,CAAC,GAAG,EAAE,mBAAmB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;KAAE,CAAA;CA+avH,CAAC;AAEF,eAAe,MAAM,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-backoffice",
3
- "version": "25.2.0-beta.24",
3
+ "version": "25.2.0-beta.25",
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.2.0-beta.24",
19
- "@crystaldesign/content-item": "25.2.0-beta.24",
20
- "@crystaldesign/diva-core": "25.2.0-beta.24",
21
- "@crystaldesign/diva-utils": "25.2.0-beta.24",
22
- "@crystaldesign/media-upload": "25.2.0-beta.24",
23
- "@crystaldesign/rtf-editor": "25.2.0-beta.24",
24
- "@crystaldesign/spreadsheet": "25.2.0-beta.24",
18
+ "@crystaldesign/content-box": "25.2.0-beta.25",
19
+ "@crystaldesign/content-item": "25.2.0-beta.25",
20
+ "@crystaldesign/diva-core": "25.2.0-beta.25",
21
+ "@crystaldesign/diva-utils": "25.2.0-beta.25",
22
+ "@crystaldesign/media-upload": "25.2.0-beta.25",
23
+ "@crystaldesign/rtf-editor": "25.2.0-beta.25",
24
+ "@crystaldesign/spreadsheet": "25.2.0-beta.25",
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": "eb23ef84159fd9ab57214e1d27effe774f6fe8ba"
54
+ "gitHead": "c84900d9f1790dbde05402f75e0fae70d6245ef4"
55
55
  }