@crystaldesign/diva-backoffice 25.1.0-beta.30 → 25.1.0-beta.32

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.
@@ -30096,7 +30096,7 @@ function PackageSelector(_ref) {
30096
30096
  t = _useTranslation.t;
30097
30097
  return /*#__PURE__*/jsx(SimpleSelect, {
30098
30098
  apiInterface: {
30099
- read: enricherService + "/packages?filter=organizationId==\"".concat(organizationId, "\"")
30099
+ read: enricherService + "/packages?filter=organizationId==\"".concat(organizationId, "\"&fields=name;_id")
30100
30100
  },
30101
30101
  apiMapping: {
30102
30102
  type: 'query',
@@ -30317,6 +30317,16 @@ function useModule$1 (currentModules) {
30317
30317
  to: 'catalogs/idmeditor/packages/' + packageId + '/properties' + (searchParams ? '?' + searchParams.toString() : ''),
30318
30318
  children: t('backoffice.menu.items.label.IDMEnricherEditorTableProperties')
30319
30319
  })
30320
+ }, {
30321
+ key: 'partlistpos',
30322
+ style: {
30323
+ margin: 0
30324
+ },
30325
+ icon: /*#__PURE__*/jsx(ApartmentOutlined, {}),
30326
+ label: /*#__PURE__*/jsx(Link, {
30327
+ to: 'catalogs/idmeditor/packages/' + packageId + '/partlistpos' + (searchParams ? '?' + searchParams.toString() : ''),
30328
+ children: t('backoffice.menu.partlistpos.label.IDMEnricherEditorTablePartlistPos')
30329
+ })
30320
30330
  }, {
30321
30331
  key: 'groups',
30322
30332
  style: {
@@ -31509,7 +31519,7 @@ function PrefilterSelector$1 (_ref) {
31509
31519
  return /*#__PURE__*/jsxs(Fragment, {
31510
31520
  children: [type === 'item' && /*#__PURE__*/jsx(SimpleSelect, {
31511
31521
  apiInterface: {
31512
- read: enricherService + '/packages/' + packageId + '/' + dataSet + '/series'
31522
+ read: enricherService + '/packages/' + packageId + '/' + dataSet + "/series?fields=seriesName[".concat(i18n.language.toLocaleUpperCase(), "];_id")
31513
31523
  },
31514
31524
  selectMapping: {
31515
31525
  label: "${seriesName.".concat(i18n.language.toLocaleUpperCase(), "}"),
@@ -31527,7 +31537,7 @@ function PrefilterSelector$1 (_ref) {
31527
31537
  }
31528
31538
  }), type === 'option' && /*#__PURE__*/jsx(SimpleSelect, {
31529
31539
  apiInterface: {
31530
- read: enricherService + '/packages/' + packageId + '/' + dataSet + '/features'
31540
+ read: enricherService + '/packages/' + packageId + '/' + dataSet + "/features?fields=featureText[".concat(i18n.language.toLocaleUpperCase(), "];featureNo;_id")
31531
31541
  },
31532
31542
  selectMapping: {
31533
31543
  label: "${featureText.".concat(i18n.language.toLocaleUpperCase(), "} (${featureNo})"),
@@ -32257,6 +32267,228 @@ function TableTabGroups () {
32257
32267
  });
32258
32268
  }
32259
32269
 
32270
+ function TablePartlistPos () {
32271
+ var _useTranslation = useTranslation(),
32272
+ t = _useTranslation.t;
32273
+ var _useModule = useModule$1(['epartlistpos']),
32274
+ packageId = _useModule.packageId,
32275
+ organizationId = _useModule.organizationId,
32276
+ updateNavigation = _useModule.updateNavigation,
32277
+ apiConfig = _useModule.apiConfig;
32278
+ var posInvisibility = [{
32279
+ name: t('backoffice.idmCatalogEditor.partlistpos.label.pi0'),
32280
+ value: '0'
32281
+ }, {
32282
+ name: t('backoffice.idmCatalogEditor.partlistpos.label.pi1'),
32283
+ value: '1'
32284
+ }, {
32285
+ name: t('backoffice.idmCatalogEditor.partlistpos.label.pi2'),
32286
+ value: '2'
32287
+ }];
32288
+ var applicationData = useMemo(function () {
32289
+ return {
32290
+ packageId: packageId,
32291
+ organizationId: organizationId
32292
+ };
32293
+ }, [packageId, organizationId]);
32294
+ return /*#__PURE__*/jsxs(Fragment, {
32295
+ children: [/*#__PURE__*/jsx(Descriptions$1, {
32296
+ title: /*#__PURE__*/jsxs("div", {
32297
+ children: [t('backoffice.menu.items.label.IDMEnricherEditorTablePartlistPos'), /*#__PURE__*/jsx(Space$1, {
32298
+ style: {
32299
+ "float": 'right'
32300
+ },
32301
+ children: /*#__PURE__*/jsx(PackageSelector, {
32302
+ organizationId: organizationId,
32303
+ selectedPackage: packageId,
32304
+ setSelectedPackage: function setSelectedPackage(id) {
32305
+ return updateNavigation(id);
32306
+ },
32307
+ enricherService: apiConfig.enricherService
32308
+ })
32309
+ })]
32310
+ })
32311
+ }), /*#__PURE__*/jsx(Spreadsheet, {
32312
+ gridId: 'crud-grid_epartlistpos',
32313
+ applicationData: applicationData,
32314
+ configuration: {
32315
+ type: 'dotnetSSM',
32316
+ apiInterface: {
32317
+ //TODO: Es gibt globale Tabgroups, die vordefiniert sind und pro Enricher Paket nochmals angepasst werden können -endpoint anpassen?
32318
+ read: apiConfig.enricherService + '/packages/${packageId}/partlistpos',
32319
+ create: apiConfig.enricherService + '/packages/${packageId}/partlistpos',
32320
+ restore: apiConfig.enricherService + '/packages/${packageId}/partlistpos/${_id}',
32321
+ "delete": apiConfig.enricherService + '/packages/${packageId}/partlistpos/${_id}',
32322
+ update: apiConfig.enricherService + '/packages/${packageId}/partlistpos/${_id}'
32323
+ },
32324
+ dateFormat: 'LL',
32325
+ floatingFilter: true,
32326
+ colDef: [{
32327
+ field: 'backoffice.idmEnricher.partlistpos.label.partlistKey',
32328
+ cellDataType: 'string',
32329
+ editable: false
32330
+ }, {
32331
+ headerName: 'backoffice.idmEnricher.partlistpos.label.itemRefSerieNo',
32332
+ field: 'itemRefSerieNo',
32333
+ cellDataType: 'number',
32334
+ editable: false
32335
+ }, {
32336
+ headerName: 'backoffice.idmEnricher.properties.partlistpos.itemRefSerieNoDisplayText',
32337
+ marryChildren: true,
32338
+ editable: false,
32339
+ children: [{
32340
+ field: 'itemRefSerieNoDisplayText.DE',
32341
+ headerName: 'backoffice.idmEnricher.general.label.DE',
32342
+ isDictionary: true,
32343
+ editable: false
32344
+ }, {
32345
+ field: 'itemRefSerieNoDisplayText.EN',
32346
+ headerName: 'backoffice.idmEnricher.general.label.EN',
32347
+ isDictionary: true,
32348
+ editable: false
32349
+ }, {
32350
+ field: 'itemRefSerieNoDisplayText.FR',
32351
+ headerName: 'backoffice.idmEnricher.general.label.FR',
32352
+ isDictionary: true,
32353
+ editable: false
32354
+ }, {
32355
+ field: 'itemRefSerieNoDisplayText.IT',
32356
+ headerName: 'backoffice.idmEnricher.general.label.IT',
32357
+ isDictionary: true,
32358
+ editable: false
32359
+ }]
32360
+ }, {
32361
+ headerName: 'backoffice.idmEnricher.partlistpos.label.itemRefTypeNo',
32362
+ cellDataType: 'string',
32363
+ editable: false
32364
+ }, {
32365
+ headerName: 'backoffice.idmEnricher.properties.partlistpos.itemRefTypeNoDisplayText',
32366
+ marryChildren: true,
32367
+ editable: false,
32368
+ children: [{
32369
+ field: 'itemRefTypeNoDisplayText.DE',
32370
+ headerName: 'backoffice.idmEnricher.general.label.DE',
32371
+ isDictionary: true,
32372
+ editable: false
32373
+ }, {
32374
+ field: 'itemRefTypeNoDisplayText.EN',
32375
+ headerName: 'backoffice.idmEnricher.general.label.EN',
32376
+ isDictionary: true,
32377
+ editable: false
32378
+ }, {
32379
+ field: 'itemRefTypeNoDisplayText.FR',
32380
+ headerName: 'backoffice.idmEnricher.general.label.FR',
32381
+ isDictionary: true,
32382
+ editable: false
32383
+ }, {
32384
+ field: 'itemRefTypeNoDisplayText.IT',
32385
+ headerName: 'backoffice.idmEnricher.general.label.IT',
32386
+ isDictionary: true,
32387
+ editable: false
32388
+ }]
32389
+ }, {
32390
+ headerName: 'backoffice.idmEnricher.partlistpos.label.decisionPosCount',
32391
+ field: 'posCountValue',
32392
+ cellDataType: 'number',
32393
+ editable: false
32394
+ }, {
32395
+ headerName: 'backoffice.idmEnricher.partlistpos.label.decisionPosCountDisplayText',
32396
+ marryChildren: true,
32397
+ editable: false,
32398
+ children: [{
32399
+ field: 'decisionPosCountDisplayText.DE',
32400
+ headerName: 'backoffice.idmEnricher.general.label.DE',
32401
+ isDictionary: true,
32402
+ editable: false
32403
+ }, {
32404
+ field: 'decisionPosCountDisplayText.EN',
32405
+ headerName: 'backoffice.idmEnricher.general.label.EN',
32406
+ isDictionary: true,
32407
+ editable: false
32408
+ }, {
32409
+ field: 'decisionPosCountDisplayText.FR',
32410
+ headerName: 'backoffice.idmEnricher.general.label.FR',
32411
+ isDictionary: true,
32412
+ editable: false
32413
+ }, {
32414
+ field: 'decisionPosCountDisplayText.IT',
32415
+ headerName: 'backoffice.idmEnricher.general.label.IT',
32416
+ isDictionary: true,
32417
+ editable: false
32418
+ }]
32419
+ }, {
32420
+ field: 'decisions',
32421
+ headerName: 'backoffice.idmEnricher.partlistpos.label.decisions',
32422
+ cellDataType: 'lookup',
32423
+ editable: true,
32424
+ customParams: {
32425
+ nameField: 'decisionRefsDisplayTexts',
32426
+ filterCellType: 'number',
32427
+ displayLabelTemplate: '${name} (${value})',
32428
+ multiple: true,
32429
+ translated: true
32430
+ },
32431
+ additionalFields: ['decisionRefsDisplayTexts'],
32432
+ isDictionary: true
32433
+ }, {
32434
+ headerName: 'backoffice.idmEnricher.partlistpos.label.posCountValue',
32435
+ field: 'posCountValue',
32436
+ cellDataType: 'number',
32437
+ editable: false
32438
+ }, {
32439
+ headerName: 'backoffice.idmEnricher.general.partlistpos.label.posInvisibility',
32440
+ field: 'posInvisibility',
32441
+ cellDataType: 'enum',
32442
+ customParams: {
32443
+ enumData: posInvisibility,
32444
+ displayLabelTemplate: '${name} (${value})'
32445
+ },
32446
+ editable: false
32447
+ }, {
32448
+ headerName: 'backoffice.idmEnricher.partlistpos.label.retailPrefix',
32449
+ field: 'retailPrefix',
32450
+ cellDataType: 'string',
32451
+ editable: true
32452
+ }, {
32453
+ headerName: 'backoffice.idmEnricher.partlistpos.label.retailArtilceNumber',
32454
+ field: 'retailArtilceNumber',
32455
+ cellDataType: 'string',
32456
+ editable: true
32457
+ }, {
32458
+ field: 'organizationId',
32459
+ cellDataType: 'string',
32460
+ editable: false,
32461
+ hide: true,
32462
+ defaultValue: '${organizationId}'
32463
+ }, {
32464
+ headerName: 'backoffice.idmEnricher.general.label.lastUpdatedDate',
32465
+ field: 'lastUpdatedDate',
32466
+ cellDataType: 'dateString',
32467
+ editable: false
32468
+ }, {
32469
+ headerName: 'backoffice.idmEnricher.general.label.createdDate',
32470
+ field: 'createdDate',
32471
+ cellDataType: 'dateString',
32472
+ editable: false
32473
+ }, {
32474
+ headerName: 'backoffice.idmEnricher.general.label.createdBy',
32475
+ field: 'createdByDisplayText',
32476
+ editable: false
32477
+ }, {
32478
+ headerName: 'backoffice.idmEnricher.general.label.lastUpdatedBy',
32479
+ field: 'lastUpdatedByDisplayText',
32480
+ editable: false
32481
+ }, {
32482
+ headerName: 'backoffice.idmEnricher.general.label._id',
32483
+ field: '_id',
32484
+ editable: false,
32485
+ cellDataType: 'objectId'
32486
+ }]
32487
+ }
32488
+ })]
32489
+ });
32490
+ }
32491
+
32260
32492
  function IDMEnricherEditor (_ref) {
32261
32493
  _objectDestructuringEmpty(_ref);
32262
32494
  return /*#__PURE__*/jsx("div", {
@@ -32298,6 +32530,9 @@ function Content$2() {
32298
32530
  }), /*#__PURE__*/jsx(Route, {
32299
32531
  path: ":packageId/properties",
32300
32532
  element: /*#__PURE__*/jsx(TableProperties, {})
32533
+ }), /*#__PURE__*/jsx(Route, {
32534
+ path: ":packageId/partlistpos",
32535
+ element: /*#__PURE__*/jsx(TablePartlistPos, {})
32301
32536
  }), /*#__PURE__*/jsx(Route, {
32302
32537
  path: ":packageId/groups",
32303
32538
  element: /*#__PURE__*/jsx(TableGroups, {})
@@ -33169,7 +33404,7 @@ function CatalogSelector(_ref) {
33169
33404
  t = _useTranslation.t;
33170
33405
  return /*#__PURE__*/jsx(SimpleSelect, {
33171
33406
  apiInterface: {
33172
- read: idmService + "/v3.0/catalogs?filter=organizationId==\"".concat(organizationId)
33407
+ read: idmService + "/v3.0/catalogs?fields=name;_id&filter=organizationId==\"".concat(organizationId)
33173
33408
  },
33174
33409
  apiMapping: {
33175
33410
  type: 'query',
@@ -33210,7 +33445,7 @@ function PrefilterSelector (_ref) {
33210
33445
  return /*#__PURE__*/jsxs(Fragment, {
33211
33446
  children: [type === 'item' && /*#__PURE__*/jsx(SimpleSelect, {
33212
33447
  apiInterface: {
33213
- read: idmService + '/v3.0/catalogs/' + catalogId + '/series'
33448
+ read: idmService + '/v3.0/catalogs/' + catalogId + "/series?fields=seriesName[".concat(i18n.language.toLocaleUpperCase(), "];_id")
33214
33449
  },
33215
33450
  selectMapping: {
33216
33451
  label: "${seriesName.".concat(i18n.language.toLocaleUpperCase(), "}"),
@@ -33228,7 +33463,7 @@ function PrefilterSelector (_ref) {
33228
33463
  }
33229
33464
  }), type === 'option' && /*#__PURE__*/jsx(SimpleSelect, {
33230
33465
  apiInterface: {
33231
- read: idmService + '/v3.0/catalogs/' + catalogId + '/features'
33466
+ read: idmService + '/v3.0/catalogs/' + catalogId + "/features?fields=featureText[".concat(i18n.language.toLocaleUpperCase(), "];featureNo;_id")
33232
33467
  },
33233
33468
  selectMapping: {
33234
33469
  label: "${featureText.".concat(i18n.language.toLocaleUpperCase(), "} (${featureNo})"),
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/PrefilterSelector/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,CAAC,OAAO,WAAW,EACvB,IAAI,EACJ,SAAS,EACT,aAAa,EACb,gBAAgB,EAChB,eAAe,EACf,kBAAkB,EAClB,UAAU,GACX,EAAE;IACD,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,GAAG,CAAC;IACpB,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACxC,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAC1C,UAAU,EAAE,MAAM,CAAC;CACpB,qBAqCA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/PrefilterSelector/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,CAAC,OAAO,WAAW,EACvB,IAAI,EACJ,SAAS,EACT,aAAa,EACb,gBAAgB,EAChB,eAAe,EACf,kBAAkB,EAClB,UAAU,GACX,EAAE;IACD,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,GAAG,CAAC;IACpB,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACxC,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IAC1C,UAAU,EAAE,MAAM,CAAC;CACpB,qBAyCA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/components/PrefilterSelector/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,CAAC,OAAO,WAAW,EACvB,IAAI,EACJ,SAAS,EACT,aAAa,EACb,gBAAgB,EAChB,eAAe,EACf,kBAAkB,EAClB,eAAe,EACf,OAAO,GACR,EAAE;IACD,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,GAAG,CAAC;IACnB,gBAAgB,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACvC,eAAe,EAAE,GAAG,CAAC;IACrB,kBAAkB,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACzC,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,QAAQ,GAAG,eAAe,CAAC;CACrC,qBAqCA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/components/PrefilterSelector/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,CAAC,OAAO,WAAW,EACvB,IAAI,EACJ,SAAS,EACT,aAAa,EACb,gBAAgB,EAChB,eAAe,EACf,kBAAkB,EAClB,eAAe,EACf,OAAO,GACR,EAAE;IACD,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,GAAG,CAAC;IACnB,gBAAgB,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACvC,eAAe,EAAE,GAAG,CAAC;IACrB,kBAAkB,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;IACzC,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,QAAQ,GAAG,eAAe,CAAC;CACrC,qBA+CA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMEnricherEditor/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAe1B,OAAO,EAAE,8BAA8B,EAAE,MAAM,SAAS,CAAC;AAEzD,UAAU,KAAK;IACb,aAAa,EAAE,8BAA8B,CAAC;IAC9C,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,EAAE,KAAK,qBAMjC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMEnricherEditor/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAe1B,OAAO,EAAE,8BAA8B,EAAE,MAAM,SAAS,CAAC;AAGzD,UAAU,KAAK;IACb,aAAa,EAAE,8BAA8B,CAAC;IAC9C,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,EAAE,KAAK,qBAMjC"}
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export default function (): React.JSX.Element;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePartlistPos/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAQvC,MAAM,CAAC,OAAO,gCA2Pb"}
@@ -1 +1 @@
1
- {"version":3,"file":"useModule.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMEnricherEditor/useModule.tsx"],"names":[],"mappings":"AAUA,MAAM,CAAC,OAAO,WAAW,cAAc,EAAE,MAAM,EAAE;uCA8K5B,MAAM,YAAW,MAAM,EAAE;;;;EAqC7C"}
1
+ {"version":3,"file":"useModule.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMEnricherEditor/useModule.tsx"],"names":[],"mappings":"AAUA,MAAM,CAAC,OAAO,WAAW,cAAc,EAAE,MAAM,EAAE;uCAyL5B,MAAM,YAAW,MAAM,EAAE;;;;EAqC7C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-backoffice",
3
- "version": "25.1.0-beta.30",
3
+ "version": "25.1.0-beta.32",
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.30",
19
- "@crystaldesign/content-item": "25.1.0-beta.30",
20
- "@crystaldesign/diva-core": "25.1.0-beta.30",
21
- "@crystaldesign/diva-utils": "25.1.0-beta.30",
22
- "@crystaldesign/media-upload": "25.1.0-beta.30",
23
- "@crystaldesign/rtf-editor": "25.1.0-beta.30",
24
- "@crystaldesign/spreadsheet": "25.1.0-beta.30",
18
+ "@crystaldesign/content-box": "25.1.0-beta.32",
19
+ "@crystaldesign/content-item": "25.1.0-beta.32",
20
+ "@crystaldesign/diva-core": "25.1.0-beta.32",
21
+ "@crystaldesign/diva-utils": "25.1.0-beta.32",
22
+ "@crystaldesign/media-upload": "25.1.0-beta.32",
23
+ "@crystaldesign/rtf-editor": "25.1.0-beta.32",
24
+ "@crystaldesign/spreadsheet": "25.1.0-beta.32",
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": "ca34bcb415e552de31f9acdcdd8375dd69f69bf8"
54
+ "gitHead": "d89c58078785a62b9bfbb6a023fdbe7bed931593"
55
55
  }