@crystaldesign/diva-backoffice 26.1.0-beta.24 → 26.1.0-beta.26

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.
@@ -3714,10 +3714,16 @@ function loadConfiguration(t, root, config, lang, apiConfig) {
3714
3714
  sorter: 1,
3715
3715
  filter: 'search',
3716
3716
  width: 200
3717
+ }, {
3718
+ title: 'Unique Cloud Key',
3719
+ field: 'key',
3720
+ sorter: 2,
3721
+ filter: 'search',
3722
+ width: 150
3717
3723
  }, {
3718
3724
  title: 'Base URL',
3719
3725
  field: 'url',
3720
- sorter: 2,
3726
+ sorter: 3,
3721
3727
  filter: 'search',
3722
3728
  width: 200
3723
3729
  }, {
@@ -3728,7 +3734,7 @@ function loadConfiguration(t, root, config, lang, apiConfig) {
3728
3734
  }],
3729
3735
  filter: {
3730
3736
  search: {
3731
- fields: ['_id', 'name', 'url', 'iln']
3737
+ fields: ['_id', 'name', 'url', 'key', 'iln']
3732
3738
  }
3733
3739
  },
3734
3740
  apiInterface: {
@@ -8038,6 +8044,10 @@ function loadConfiguration(t, root, config, lang, apiConfig) {
8038
8044
  name: 'name',
8039
8045
  label: t('backoffice.form.externalclouddetail.items.name'),
8040
8046
  type: 'input'
8047
+ }, {
8048
+ name: 'key',
8049
+ label: 'Key',
8050
+ type: 'input'
8041
8051
  }, {
8042
8052
  label: t('backoffice.form.externalclouddetail.items.url'),
8043
8053
  name: 'url',
@@ -33735,6 +33745,15 @@ var getInfoTypeKey = function getInfoTypeKey(t) {
33735
33745
  }, {
33736
33746
  name: t('backoffice.idmCatalog.detailinfos.label.infotype.i14'),
33737
33747
  value: 14
33748
+ }, {
33749
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i15'),
33750
+ value: 15
33751
+ }, {
33752
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i16'),
33753
+ value: 16
33754
+ }, {
33755
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i17'),
33756
+ value: 17
33738
33757
  }];
33739
33758
  };
33740
33759
 
@@ -39194,6 +39213,42 @@ var TableCatalogs = observer(function () {
39194
39213
  field: 'size',
39195
39214
  cellDataType: 'number',
39196
39215
  editable: false
39216
+ }, {
39217
+ headerName: 'backoffice.idmCatalog.catalogs.label.logo',
39218
+ field: 'logo',
39219
+ cellDataType: 'asset',
39220
+ customParams: {
39221
+ isObject: true,
39222
+ urlField: 'url',
39223
+ fileNameField: 'name',
39224
+ mediaItemIdField: 'mediaitemId',
39225
+ apiInterface: {
39226
+ create: {
39227
+ upload: apiConfig.mediaService + '/v1/assets/uploads',
39228
+ externalUpload: apiConfig.mediaService + '/v1/assets/uploads/externals',
39229
+ completeUpload: apiConfig.mediaService + '/v1/assets/uploads/complete'
39230
+ }
39231
+ },
39232
+ allowedTypes: ['image/png', 'image/jpeg', 'image/webp', 'image/svg+xml']
39233
+ }
39234
+ }, {
39235
+ headerName: 'backoffice.idmCatalog.catalogs.label.catalogImage',
39236
+ field: 'catalogImage',
39237
+ cellDataType: 'asset',
39238
+ customParams: {
39239
+ isObject: true,
39240
+ urlField: 'url',
39241
+ fileNameField: 'name',
39242
+ mediaItemIdField: 'mediaitemId',
39243
+ apiInterface: {
39244
+ create: {
39245
+ upload: apiConfig.mediaService + '/v1/assets/uploads',
39246
+ externalUpload: apiConfig.mediaService + '/v1/assets/uploads/externals',
39247
+ completeUpload: apiConfig.mediaService + '/v1/assets/uploads/complete'
39248
+ }
39249
+ },
39250
+ allowedTypes: ['image/png', 'image/jpeg', 'image/webp', 'image/svg+xml']
39251
+ }
39197
39252
  }, {
39198
39253
  headerName: 'backoffice.idmCatalog.general.label.lastUpdatedDate',
39199
39254
  field: 'lastUpdatedDate',
@@ -40185,6 +40240,82 @@ var Items$1 = /*#__PURE__*/forwardRef(function (_ref, ref) {
40185
40240
  },
40186
40241
  required: true
40187
40242
  }]
40243
+ }, {
40244
+ headerName: 'backoffice.idmCatalog.items.label.images',
40245
+ field: 'images',
40246
+ cellDataType: 'asset',
40247
+ customParams: {
40248
+ multiple: true,
40249
+ isObject: true,
40250
+ urlField: 'url',
40251
+ fileNameField: 'name',
40252
+ mediaItemIdField: 'mediaitemId',
40253
+ additionalFields: [{
40254
+ type: 'lookup',
40255
+ field: 'decisionNo',
40256
+ label: 'backoffice.idmCatalogEditor.items.label.decisionRefs',
40257
+ lookupLabelTemplate: '${name} (${value})',
40258
+ apiInterface: {
40259
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions'
40260
+ },
40261
+ lookupValue: 'decisionText',
40262
+ lookupKey: 'decisionNo',
40263
+ translated: true,
40264
+ filter: function filter(_, lookupData) {
40265
+ return lookupData.decisionType === 0 || lookupData.decisionType === 1;
40266
+ },
40267
+ additionalMappings: [{
40268
+ lookupField: 'decisionType',
40269
+ targetField: 'decisionType'
40270
+ }]
40271
+ }],
40272
+ apiInterface: {
40273
+ create: {
40274
+ upload: apiConfig.mediaService + '/v1/assets/uploads',
40275
+ externalUpload: apiConfig.mediaService + '/v1/assets/uploads/externals',
40276
+ completeUpload: apiConfig.mediaService + '/v1/assets/uploads/complete'
40277
+ }
40278
+ },
40279
+ allowedTypes: ['image/png', 'image/jpeg', 'image/webp']
40280
+ }
40281
+ }, {
40282
+ headerName: 'backoffice.idmCatalog.items.label.svgs',
40283
+ field: 'svgs',
40284
+ cellDataType: 'asset',
40285
+ customParams: {
40286
+ multiple: true,
40287
+ isObject: true,
40288
+ urlField: 'url',
40289
+ fileNameField: 'name',
40290
+ mediaItemIdField: 'mediaitemId',
40291
+ apiInterface: {
40292
+ create: {
40293
+ upload: apiConfig.mediaService + '/v1/assets/uploads',
40294
+ externalUpload: apiConfig.mediaService + '/v1/assets/uploads/externals',
40295
+ completeUpload: apiConfig.mediaService + '/v1/assets/uploads/complete'
40296
+ }
40297
+ },
40298
+ allowedTypes: ['image/svg+xml'],
40299
+ additionalFields: [{
40300
+ type: 'lookup',
40301
+ field: 'decisionNo',
40302
+ label: 'backoffice.idmCatalogEditor.items.label.decisionRefs',
40303
+ lookupLabelTemplate: '${name} (${value})',
40304
+ apiInterface: {
40305
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions'
40306
+ },
40307
+ lookupValue: 'decisionText',
40308
+ lookupKey: 'decisionNo',
40309
+ translated: true,
40310
+ filter: function filter(_, lookupData) {
40311
+ return lookupData.decisionType === 0 || lookupData.decisionType === 1;
40312
+ },
40313
+ additionalMappings: [{
40314
+ lookupField: 'decisionType',
40315
+ targetField: 'decisionType'
40316
+ }]
40317
+ }]
40318
+ }
40188
40319
  }, {
40189
40320
  headerName: 'backoffice.idmCatalog.items.label.common',
40190
40321
  children: [{
@@ -40651,7 +40782,8 @@ var TableSeries = observer(function () {
40651
40782
  var _useDivaCore = useDivaCore(),
40652
40783
  onEvent = _useDivaCore.actions.onEvent;
40653
40784
  var _useTranslation = useTranslation(),
40654
- t = _useTranslation.t;
40785
+ t = _useTranslation.t,
40786
+ i18n = _useTranslation.i18n;
40655
40787
  var _useModule = useModule(['series']),
40656
40788
  selectedCatalog = _useModule.selectedCatalog,
40657
40789
  selectedGlobalSerie = _useModule.selectedSerie,
@@ -40775,6 +40907,80 @@ var TableSeries = observer(function () {
40775
40907
  displayLabelTemplate: '${name} (${value})'
40776
40908
  }
40777
40909
  }, createTranslatedColumnConfig('seriesFullText', 'backoffice.idmCatalog.series.label.seriesFullText', selectedCatalog === null || selectedCatalog === void 0 ? void 0 : selectedCatalog.isoLanguageIds), {
40910
+ headerName: 'backoffice.idmCatalog.series.label.mainImage',
40911
+ field: 'mainImage',
40912
+ cellDataType: 'asset',
40913
+ customParams: {
40914
+ isObject: true,
40915
+ urlField: 'url',
40916
+ fileNameField: 'name',
40917
+ mediaItemIdField: 'mediaitemId',
40918
+ apiInterface: {
40919
+ create: {
40920
+ upload: apiConfig.mediaService + '/v1/assets/uploads',
40921
+ externalUpload: apiConfig.mediaService + '/v1/assets/uploads/externals',
40922
+ completeUpload: apiConfig.mediaService + '/v1/assets/uploads/complete'
40923
+ }
40924
+ },
40925
+ allowedTypes: ['image/png', 'image/jpeg', 'image/webp']
40926
+ }
40927
+ }, {
40928
+ headerName: 'backoffice.idmCatalog.series.label.showroomImages',
40929
+ field: 'showroomImages',
40930
+ cellDataType: 'asset',
40931
+ customParams: {
40932
+ multiple: true,
40933
+ isObject: true,
40934
+ urlField: 'url',
40935
+ fileNameField: 'name',
40936
+ mediaItemIdField: 'mediaitemId',
40937
+ apiInterface: {
40938
+ create: {
40939
+ upload: apiConfig.mediaService + '/v1/assets/uploads',
40940
+ externalUpload: apiConfig.mediaService + '/v1/assets/uploads/externals',
40941
+ completeUpload: apiConfig.mediaService + '/v1/assets/uploads/complete'
40942
+ }
40943
+ },
40944
+ allowedTypes: ['image/png', 'image/jpeg', 'image/webp']
40945
+ }
40946
+ }, {
40947
+ headerName: 'backoffice.idmCatalog.series.label.documents',
40948
+ field: 'documents',
40949
+ cellDataType: 'asset',
40950
+ customParams: {
40951
+ multiple: true,
40952
+ isObject: true,
40953
+ urlField: 'url',
40954
+ fileNameField: 'name',
40955
+ mediaItemIdField: 'mediaitemId',
40956
+ additionalFields: [{
40957
+ type: 'enum',
40958
+ field: 'infoType',
40959
+ label: 'backoffice.idmCatalog.detailinfos.label.infoType',
40960
+ enumData: [{
40961
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i9'),
40962
+ value: 9
40963
+ }, {
40964
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i10'),
40965
+ value: 10
40966
+ }, {
40967
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i11'),
40968
+ value: 11
40969
+ }, {
40970
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i12'),
40971
+ value: 12
40972
+ }]
40973
+ }],
40974
+ apiInterface: {
40975
+ create: {
40976
+ upload: apiConfig.mediaService + '/v1/assets/uploads',
40977
+ externalUpload: apiConfig.mediaService + '/v1/assets/uploads/externals',
40978
+ completeUpload: apiConfig.mediaService + '/v1/assets/uploads/complete'
40979
+ }
40980
+ },
40981
+ allowedTypes: ['application/pdf']
40982
+ }
40983
+ }, {
40778
40984
  field: 'decisionRefs',
40779
40985
  headerName: 'backoffice.idmCatalog.series.label.decisionRefs',
40780
40986
  cellDataType: 'lookup',
@@ -40850,7 +41056,7 @@ var TableSeries = observer(function () {
40850
41056
  defaultValue: '${catalogId}'
40851
41057
  }]
40852
41058
  };
40853
- }, [selectedCatalog === null || selectedCatalog === void 0 ? void 0 : selectedCatalog.isoLanguageIds]);
41059
+ }, [selectedCatalog === null || selectedCatalog === void 0 ? void 0 : selectedCatalog.isoLanguageIds, i18n.language]);
40854
41060
  return /*#__PURE__*/jsxs(Fragment, {
40855
41061
  children: [/*#__PURE__*/jsx(Descriptions$1, {
40856
41062
  title: /*#__PURE__*/jsxs("div", {
@@ -41204,6 +41410,9 @@ var Options$1 = /*#__PURE__*/forwardRef(function Options(_ref, ref) {
41204
41410
  selectedCatalog = _ref.selectedCatalog,
41205
41411
  apiConfig = _ref.apiConfig,
41206
41412
  hooks = _ref.hooks;
41413
+ var _useTranslation = useTranslation(),
41414
+ t = _useTranslation.t,
41415
+ i18n = _useTranslation.i18n;
41207
41416
  var applicationData = useMemo(function () {
41208
41417
  return {
41209
41418
  organizationId: organizationId,
@@ -41263,6 +41472,125 @@ var Options$1 = /*#__PURE__*/forwardRef(function Options(_ref, ref) {
41263
41472
  },
41264
41473
  additionalFields: ['featureIdsDisplayTexts', 'featureIds'],
41265
41474
  isDictionary: true
41475
+ }, {
41476
+ headerName: 'backoffice.idmCatalog.items.label.optionImages',
41477
+ field: 'optionImages',
41478
+ cellDataType: 'asset',
41479
+ customParams: {
41480
+ multiple: true,
41481
+ isObject: true,
41482
+ urlField: 'url',
41483
+ fileNameField: 'name',
41484
+ mediaItemIdField: 'mediaitemId',
41485
+ apiInterface: {
41486
+ create: {
41487
+ upload: apiConfig.mediaService + '/v1/assets/uploads',
41488
+ externalUpload: apiConfig.mediaService + '/v1/assets/uploads/externals',
41489
+ completeUpload: apiConfig.mediaService + '/v1/assets/uploads/complete'
41490
+ }
41491
+ },
41492
+ allowedTypes: ['image/png', 'image/jpeg', 'image/webp'],
41493
+ additionalFields: [{
41494
+ type: 'lookup',
41495
+ field: 'serieNo',
41496
+ label: 'backoffice.idmCatalog.series.label.serieNo',
41497
+ lookupLabelTemplate: '${name} (${value})',
41498
+ apiInterface: {
41499
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series'
41500
+ },
41501
+ lookupValue: 'seriesName',
41502
+ lookupKey: 'serieNo',
41503
+ translated: true,
41504
+ additionalMappings: [{
41505
+ lookupField: '_id',
41506
+ targetField: 'serieId'
41507
+ }]
41508
+ }, {
41509
+ type: 'lookup',
41510
+ field: 'itemTypeNo',
41511
+ label: 'backoffice.idmCatalog.prices.label.typeNo',
41512
+ lookupLabelTemplate: '${name} (${value})',
41513
+ apiInterface: {
41514
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${serieId}/items'
41515
+ },
41516
+ lookupValue: 'shortText',
41517
+ lookupKey: 'typeNo',
41518
+ translated: true,
41519
+ dependsOn: ['serieId']
41520
+ }]
41521
+ }
41522
+ }, {
41523
+ headerName: 'backoffice.idmCatalog.items.label.textures',
41524
+ field: 'textures',
41525
+ cellDataType: 'asset',
41526
+ customParams: {
41527
+ multiple: true,
41528
+ isObject: true,
41529
+ urlField: 'url',
41530
+ fileNameField: 'name',
41531
+ mediaItemIdField: 'mediaitemId',
41532
+ apiInterface: {
41533
+ create: {
41534
+ upload: apiConfig.mediaService + '/v1/assets/uploads',
41535
+ externalUpload: apiConfig.mediaService + '/v1/assets/uploads/externals',
41536
+ completeUpload: apiConfig.mediaService + '/v1/assets/uploads/complete'
41537
+ }
41538
+ },
41539
+ allowedTypes: ['image/png', 'image/jpeg', 'image/webp'],
41540
+ additionalFields: [{
41541
+ type: 'lookup',
41542
+ field: 'serieNo',
41543
+ label: 'backoffice.idmCatalog.series.label.serieNo',
41544
+ lookupLabelTemplate: '${name} (${value})',
41545
+ apiInterface: {
41546
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series'
41547
+ },
41548
+ lookupValue: 'seriesName',
41549
+ lookupKey: 'serieNo',
41550
+ translated: true,
41551
+ additionalMappings: [{
41552
+ lookupField: '_id',
41553
+ targetField: 'serieId'
41554
+ }]
41555
+ }]
41556
+ }
41557
+ }, {
41558
+ headerName: 'backoffice.idmCatalog.items.label.documents',
41559
+ field: 'documents',
41560
+ cellDataType: 'asset',
41561
+ customParams: {
41562
+ multiple: true,
41563
+ isObject: true,
41564
+ urlField: 'url',
41565
+ fileNameField: 'name',
41566
+ mediaItemIdField: 'mediaitemId',
41567
+ additionalFields: [{
41568
+ type: 'enum',
41569
+ field: 'infoType',
41570
+ label: 'backoffice.idmCatalog.detailinfos.label.infoType',
41571
+ enumData: [{
41572
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i8'),
41573
+ value: 8
41574
+ }, {
41575
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i15'),
41576
+ value: 15
41577
+ }, {
41578
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i16'),
41579
+ value: 16
41580
+ }, {
41581
+ name: t('backoffice.idmCatalog.detailinfos.label.infotype.i12'),
41582
+ value: 12
41583
+ }]
41584
+ }],
41585
+ apiInterface: {
41586
+ create: {
41587
+ upload: apiConfig.mediaService + '/v1/assets/uploads',
41588
+ externalUpload: apiConfig.mediaService + '/v1/assets/uploads/externals',
41589
+ completeUpload: apiConfig.mediaService + '/v1/assets/uploads/complete'
41590
+ }
41591
+ },
41592
+ allowedTypes: ['application/pdf']
41593
+ }
41266
41594
  }, {
41267
41595
  headerName: 'backoffice.idmCatalog.items.label.validation',
41268
41596
  children: [{
@@ -41353,7 +41681,7 @@ var Options$1 = /*#__PURE__*/forwardRef(function Options(_ref, ref) {
41353
41681
  defaultValue: '${catalogId}'
41354
41682
  }]
41355
41683
  };
41356
- }, [selectedCatalog === null || selectedCatalog === void 0 ? void 0 : selectedCatalog.isoLanguageIds]);
41684
+ }, [selectedCatalog === null || selectedCatalog === void 0 ? void 0 : selectedCatalog.isoLanguageIds, i18n.language]);
41357
41685
  return /*#__PURE__*/jsx(Spreadsheet, {
41358
41686
  ref: ref,
41359
41687
  gridId: 'crud-grid_catalogoptions',
@@ -1 +1 @@
1
- {"version":3,"file":"commonEnums.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/CommonComponents/commonEnums.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC;;;;;GAKG;AACH,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAK1C,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAK1C,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,aAAa,MAAO,SAAS;;;GAQzC,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,MAAO,SAAS;;;GAG/C,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,aAAa,MAAO,SAAS;;;GAOzC,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAe1C,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,cAAc,MAAO,SAAS;;;GA2B1C,CAAC"}
1
+ {"version":3,"file":"commonEnums.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/CommonComponents/commonEnums.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC;;;;;GAKG;AACH,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAK1C,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAK1C,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,aAAa,MAAO,SAAS;;;GAQzC,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,MAAO,SAAS;;;GAG/C,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,aAAa,MAAO,SAAS;;;GAOzC,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,cAAc,MAAO,SAAS;;;GAkB1C,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,cAAc,MAAO,SAAS;;;GA2B1C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Items.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/Items.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAEnD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAiB,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACtG,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAIvC,UAAU,UAAU;IAClB,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,WAAW,CAAC;IAC7B,aAAa,EAAE,GAAG,CAAC;IACnB,SAAS,EAAE,SAAS,CAAC;IACrB,KAAK,CAAC,EAAE,oBAAoB,CAAC,GAAG,CAAC,CAAC;CACnC;AAED,QAAA,MAAM,KAAK,wFAyUT,CAAC;AAIH,eAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"Items.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/Items.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAEnD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAiB,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACtG,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAIvC,UAAU,UAAU;IAClB,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,WAAW,CAAC;IAC7B,aAAa,EAAE,GAAG,CAAC;IACnB,SAAS,EAAE,SAAS,CAAC;IACrB,KAAK,CAAC,EAAE,oBAAoB,CAAC,GAAG,CAAC,CAAC;CACnC;AAED,QAAA,MAAM,KAAK,wFAqZT,CAAC;AAIH,eAAe,KAAK,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Options.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/Options.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAEnD,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AACrD,OAAO,EAAoC,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACzH,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAGvC,QAAA,MAAM,OAAO;oBAGO,MAAM;qBACL,WAAW;eACjB,SAAS;YACZ,oBAAoB,CAAC,GAAG,CAAC;6CAqLnC,CAAC;AAEH,eAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"Options.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/Options.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAEnD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAiB,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACtG,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAGvC,QAAA,MAAM,OAAO;oBAGO,MAAM;qBACL,WAAW;eACjB,SAAS;YACZ,oBAAoB,CAAC,GAAG,CAAC;6CA0SnC,CAAC;AAEH,eAAe,OAAO,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableCatalogs/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAuBvE,eAAO,MAAM,aAAa;;CAg3BxB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableCatalogs/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAuBvE,eAAO,MAAM,aAAa;;CAs5BxB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableSeries/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAclD,eAAO,MAAM,WAAW;;CAiOtB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableSeries/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAclD,eAAO,MAAM,WAAW;;CAyStB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-backoffice",
3
- "version": "26.1.0-beta.24",
3
+ "version": "26.1.0-beta.26",
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": "6.1.0",
17
17
  "@babel/runtime": "7.24.7",
18
- "@crystaldesign/content-box": "26.1.0-beta.24",
19
- "@crystaldesign/content-item": "26.1.0-beta.24",
20
- "@crystaldesign/diva-core": "26.1.0-beta.24",
21
- "@crystaldesign/diva-utils": "26.1.0-beta.24",
22
- "@crystaldesign/media-upload": "26.1.0-beta.24",
23
- "@crystaldesign/rtf-editor": "26.1.0-beta.24",
24
- "@crystaldesign/spreadsheet": "26.1.0-beta.24",
18
+ "@crystaldesign/content-box": "26.1.0-beta.26",
19
+ "@crystaldesign/content-item": "26.1.0-beta.26",
20
+ "@crystaldesign/diva-core": "26.1.0-beta.26",
21
+ "@crystaldesign/diva-utils": "26.1.0-beta.26",
22
+ "@crystaldesign/media-upload": "26.1.0-beta.26",
23
+ "@crystaldesign/rtf-editor": "26.1.0-beta.26",
24
+ "@crystaldesign/spreadsheet": "26.1.0-beta.26",
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": "de856c432e2f695542fc50f3788b97c670158337"
54
+ "gitHead": "92da46bc32f6b625f789a777f477efd1aea47ea2"
55
55
  }