@crystaldesign/diva-backoffice 25.7.0-beta.26 → 25.7.0-beta.28

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.
@@ -7929,14 +7929,12 @@ function loadConfiguration(t, root, config, lang, apiConfig) {
7929
7929
  label: t('backoffice.form.organizationdetails.items.nein'),
7930
7930
  value: false
7931
7931
  }],
7932
- permission: 'backoffice_sys_admin_organizations'
7932
+ permission: 'backoffice_admin_organizations'
7933
7933
  }, {
7934
7934
  name: ['settings', 'sendOrdersEmail'],
7935
7935
  label: t('backoffice.form.organizationdetails.items.settings.sendOrdersEmail'),
7936
7936
  type: 'input',
7937
- hidden: function hidden(data) {
7938
- return (data === null || data === void 0 ? void 0 : data.type) !== 'RETAILER' && (data === null || data === void 0 ? void 0 : data.parentType) !== 'RETAILER';
7939
- }
7937
+ permission: 'backoffice_admin_organizations'
7940
7938
  }, {
7941
7939
  name: 'iwofurn',
7942
7940
  label: t('backoffice.form.organizationdetails.items.iwofurn'),
@@ -8059,7 +8057,7 @@ function loadConfiguration(t, root, config, lang, apiConfig) {
8059
8057
  label: t('backoffice.form.organizationdetails.items.nein'),
8060
8058
  value: false
8061
8059
  }],
8062
- permission: 'backoffice_sys_admin_organizations'
8060
+ permission: 'backoffice_admin_organizations'
8063
8061
  }, {
8064
8062
  name: ['settings', 'renderjobSeparateMaterials'],
8065
8063
  label: t('backoffice.form.organizationdetails.items.settings.renderjobSeparateMaterials'),
@@ -33373,12 +33371,18 @@ function getConfig(t) {
33373
33371
  headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
33374
33372
  field: 'validFromDate',
33375
33373
  cellDataType: 'dateString',
33376
- editable: false
33374
+ editable: false,
33375
+ customParams: {
33376
+ dateFormat: 'DD.MM.YYYY'
33377
+ }
33377
33378
  }, {
33378
33379
  field: 'validUntilDate',
33379
33380
  headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
33380
33381
  cellDataType: 'dateString',
33381
- editable: false
33382
+ editable: false,
33383
+ customParams: {
33384
+ dateFormat: 'DD.MM.YYYY'
33385
+ }
33382
33386
  }]
33383
33387
  },
33384
33388
  item: {
@@ -33418,12 +33422,18 @@ function getConfig(t) {
33418
33422
  headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
33419
33423
  field: 'validFromDate',
33420
33424
  cellDataType: 'dateString',
33421
- editable: false
33425
+ editable: false,
33426
+ customParams: {
33427
+ dateFormat: 'DD.MM.YYYY'
33428
+ }
33422
33429
  }, {
33423
33430
  headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
33424
33431
  field: 'validUntilDate',
33425
33432
  cellDataType: 'dateString',
33426
- editable: false
33433
+ editable: false,
33434
+ customParams: {
33435
+ dateFormat: 'DD.MM.YYYY'
33436
+ }
33427
33437
  }, {
33428
33438
  headerName: 'backoffice.idmEnricher.exclusivity.label.weightBrutto',
33429
33439
  field: 'weightBrutto',
@@ -33532,12 +33542,18 @@ function getConfig(t) {
33532
33542
  headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
33533
33543
  field: 'validFromDate',
33534
33544
  cellDataType: 'dateString',
33535
- editable: false
33545
+ editable: false,
33546
+ customParams: {
33547
+ dateFormat: 'DD.MM.YYYY'
33548
+ }
33536
33549
  }, {
33537
33550
  headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
33538
33551
  field: 'validUntilDate',
33539
33552
  cellDataType: 'dateString',
33540
- editable: false
33553
+ editable: false,
33554
+ customParams: {
33555
+ dateFormat: 'DD.MM.YYYY'
33556
+ }
33541
33557
  }, {
33542
33558
  field: 'materialId',
33543
33559
  headerName: 'backoffice.idmEnricher.exclusivity.label.materialId',
@@ -35198,12 +35214,18 @@ var TablePriceList = observer(function () {
35198
35214
  headerName: 'backoffice.idmEnricher.pricelists.label.validFrom',
35199
35215
  field: 'validFrom',
35200
35216
  editable: true,
35201
- cellDataType: 'dateString'
35217
+ cellDataType: 'dateString',
35218
+ customParams: {
35219
+ dateFormat: 'DD.MM.YYYY'
35220
+ }
35202
35221
  }, {
35203
35222
  headerName: 'backoffice.idmEnricher.pricelists.label.validTo',
35204
35223
  field: 'validTo',
35205
35224
  editable: true,
35206
- cellDataType: 'dateString'
35225
+ cellDataType: 'dateString',
35226
+ customParams: {
35227
+ dateFormat: 'DD.MM.YYYY'
35228
+ }
35207
35229
  }, {
35208
35230
  field: 'packageId',
35209
35231
  editable: false,
@@ -36060,12 +36082,18 @@ var TableCatalogs = observer(function () {
36060
36082
  headerName: 'backoffice.idmCatalog.general.label.validFromDate',
36061
36083
  field: 'validFromDate',
36062
36084
  cellDataType: 'dateString',
36063
- required: true
36085
+ required: true,
36086
+ customParams: {
36087
+ dateFormat: 'DD.MM.YYYY'
36088
+ }
36064
36089
  }, {
36065
36090
  headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
36066
36091
  field: 'validUntilDate',
36067
36092
  cellDataType: 'dateString',
36068
- required: true
36093
+ required: true,
36094
+ customParams: {
36095
+ dateFormat: 'DD.MM.YYYY'
36096
+ }
36069
36097
  }, {
36070
36098
  field: 'isoLanguageIds',
36071
36099
  headerName: 'backoffice.idmCatalog.general.label.isoLanguageIds',
@@ -36110,7 +36138,10 @@ var TableCatalogs = observer(function () {
36110
36138
  }, {
36111
36139
  headerName: 'backoffice.idmCatalog.general.label.catalogDataVersion',
36112
36140
  field: 'catalogDataVersion',
36113
- cellDataType: 'dateString'
36141
+ cellDataType: 'dateString',
36142
+ customParams: {
36143
+ dateFormat: 'DD.MM.YYYY'
36144
+ }
36114
36145
  }, {
36115
36146
  headerName: 'backoffice.idmCatalog.general.label.catalogInfo',
36116
36147
  marryChildren: true,
@@ -36149,7 +36180,10 @@ var TableCatalogs = observer(function () {
36149
36180
  headerName: 'backoffice.idmCatalog.general.label.dataVersion',
36150
36181
  field: 'dataVersion',
36151
36182
  cellDataType: 'dateString',
36152
- required: true
36183
+ required: true,
36184
+ customParams: {
36185
+ dateFormat: 'DD.MM.YYYY'
36186
+ }
36153
36187
  }, {
36154
36188
  field: 'catalogId',
36155
36189
  headerName: 'backoffice.idmCatalog.general.label.catalogId',
@@ -36911,11 +36945,17 @@ function Items$1(_ref) {
36911
36945
  children: [{
36912
36946
  headerName: 'backoffice.idmCatalog.general.label.validFromDate',
36913
36947
  field: 'validFromDate',
36914
- cellDataType: 'dateString'
36948
+ cellDataType: 'dateString',
36949
+ customParams: {
36950
+ dateFormat: 'DD.MM.YYYY'
36951
+ }
36915
36952
  }, {
36916
36953
  headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
36917
36954
  field: 'validUntilDate',
36918
- cellDataType: 'dateString'
36955
+ cellDataType: 'dateString',
36956
+ customParams: {
36957
+ dateFormat: 'DD.MM.YYYY'
36958
+ }
36919
36959
  }]
36920
36960
  }, {
36921
36961
  headerName: 'backoffice.idmCatalog.items.label.measurements',
@@ -37177,11 +37217,17 @@ var TableSeries = observer(function () {
37177
37217
  }, {
37178
37218
  headerName: 'backoffice.idmCatalog.general.label.validFromDate',
37179
37219
  field: 'validFromDate',
37180
- cellDataType: 'dateString'
37220
+ cellDataType: 'dateString',
37221
+ customParams: {
37222
+ dateFormat: 'DD.MM.YYYY'
37223
+ }
37181
37224
  }, {
37182
37225
  headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
37183
37226
  field: 'validUntilDate',
37184
- cellDataType: 'dateString'
37227
+ cellDataType: 'dateString',
37228
+ customParams: {
37229
+ dateFormat: 'DD.MM.YYYY'
37230
+ }
37185
37231
  }, {
37186
37232
  headerName: 'backoffice.idmCatalog.general.label.lastUpdatedDate',
37187
37233
  field: 'lastUpdatedDate',
@@ -37504,11 +37550,17 @@ function Options(_ref) {
37504
37550
  children: [{
37505
37551
  headerName: 'backoffice.idmCatalog.general.label.validFromDate',
37506
37552
  field: 'validFromDate',
37507
- cellDataType: 'dateString'
37553
+ cellDataType: 'dateString',
37554
+ customParams: {
37555
+ dateFormat: 'DD.MM.YYYY'
37556
+ }
37508
37557
  }, {
37509
37558
  headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
37510
37559
  field: 'validUntilDate',
37511
- cellDataType: 'dateString'
37560
+ cellDataType: 'dateString',
37561
+ customParams: {
37562
+ dateFormat: 'DD.MM.YYYY'
37563
+ }
37512
37564
  }]
37513
37565
  }, {
37514
37566
  headerName: 'backoffice.idmCatalog.options.label.material',
@@ -38566,12 +38618,18 @@ var TableDecisions = observer(function () {
38566
38618
  field: 'validFromDate',
38567
38619
  headerName: 'backoffice.idmCatalog.decisions.label.validFromDate',
38568
38620
  cellDataType: 'dateString',
38569
- editable: true
38621
+ editable: true,
38622
+ customParams: {
38623
+ dateFormat: 'DD.MM.YYYY'
38624
+ }
38570
38625
  }, {
38571
38626
  field: 'validUntilDate',
38572
38627
  headerName: 'backoffice.idmCatalog.decisions.label.validUntilDate',
38573
38628
  cellDataType: 'dateString',
38574
- editable: true
38629
+ editable: true,
38630
+ customParams: {
38631
+ dateFormat: 'DD.MM.YYYY'
38632
+ }
38575
38633
  }, {
38576
38634
  headerName: 'backoffice.idmCatalog.general.label.lastUpdatedDate',
38577
38635
  field: 'lastUpdatedDate',
@@ -39256,11 +39314,17 @@ function PriceFeatureGroupPercentageSurcharge(_ref) {
39256
39314
  }, {
39257
39315
  headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validFromDate',
39258
39316
  field: 'validFromDate',
39259
- cellDataType: 'dateString'
39317
+ cellDataType: 'dateString',
39318
+ customParams: {
39319
+ dateFormat: 'DD.MM.YYYY'
39320
+ }
39260
39321
  }, {
39261
39322
  headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validUntilDate',
39262
39323
  field: 'validUntilDate',
39263
- cellDataType: 'dateString'
39324
+ cellDataType: 'dateString',
39325
+ customParams: {
39326
+ dateFormat: 'DD.MM.YYYY'
39327
+ }
39264
39328
  }, {
39265
39329
  headerName: 'backoffice.idmCatalog.general.label.createdDate',
39266
39330
  field: 'createdDate',
@@ -39437,11 +39501,17 @@ function PriceFeatureGroupFinishes(_ref) {
39437
39501
  }, {
39438
39502
  headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validFromDate',
39439
39503
  field: 'validFromDate',
39440
- cellDataType: 'dateString'
39504
+ cellDataType: 'dateString',
39505
+ customParams: {
39506
+ dateFormat: 'DD.MM.YYYY'
39507
+ }
39441
39508
  }, {
39442
39509
  headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validUntilDate',
39443
39510
  field: 'validUntilDate',
39444
- cellDataType: 'dateString'
39511
+ cellDataType: 'dateString',
39512
+ customParams: {
39513
+ dateFormat: 'DD.MM.YYYY'
39514
+ }
39445
39515
  }, {
39446
39516
  headerName: 'backoffice.idmCatalog.general.label.createdDate',
39447
39517
  field: 'createdDate',
@@ -40245,11 +40315,17 @@ function TableCollections () {
40245
40315
  children: [{
40246
40316
  headerName: 'backoffice.idmCatalog.general.label.validFromDate',
40247
40317
  field: 'validFromDate',
40248
- cellDataType: 'dateString'
40318
+ cellDataType: 'dateString',
40319
+ customParams: {
40320
+ dateFormat: 'DD.MM.YYYY'
40321
+ }
40249
40322
  }, {
40250
40323
  headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
40251
40324
  field: 'validUntilDate',
40252
- cellDataType: 'dateString'
40325
+ cellDataType: 'dateString',
40326
+ customParams: {
40327
+ dateFormat: 'DD.MM.YYYY'
40328
+ }
40253
40329
  }]
40254
40330
  }, {
40255
40331
  headerName: 'backoffice.idmEnricher.general.label.lastUpdatedDate',
@@ -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;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,qBAwTA"}
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,qBA8TA"}
@@ -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;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,EAC9B,cAAc,EACd,eAAe,EACf,SAAS,GACV,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,WAAW,CAAC;IAC7B,SAAS,EAAE,SAAS,CAAC;CACtB,qBA4KA"}
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;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,EAC9B,cAAc,EACd,eAAe,EACf,SAAS,GACV,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,WAAW,CAAC;IAC7B,SAAS,EAAE,SAAS,CAAC;CACtB,qBAkLA"}
@@ -1 +1 @@
1
- {"version":3,"file":"PriceFeatureGroupFinishes.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/PriceFeatureGroupFinishes.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAKrE,MAAM,CAAC,OAAO,UAAU,yBAAyB,CAAC,EAChD,iBAAiB,EACjB,SAAS,EACT,SAAS,EACT,gBAAgB,EAChB,eAAe,GAChB,EAAE;IACD,iBAAiB,EAAE,GAAG,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,gBAAgB,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC;IACzD,eAAe,EAAE,CAAC,YAAY,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;CACnD,qBA8LA"}
1
+ {"version":3,"file":"PriceFeatureGroupFinishes.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/PriceFeatureGroupFinishes.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAKrE,MAAM,CAAC,OAAO,UAAU,yBAAyB,CAAC,EAChD,iBAAiB,EACjB,SAAS,EACT,SAAS,EACT,gBAAgB,EAChB,eAAe,GAChB,EAAE;IACD,iBAAiB,EAAE,GAAG,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,gBAAgB,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC;IACzD,eAAe,EAAE,CAAC,YAAY,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;CACnD,qBAoMA"}
@@ -1 +1 @@
1
- {"version":3,"file":"PriceFeatureGroupPercentageSurcharge.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/PriceFeatureGroupPercentageSurcharge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAMrE,MAAM,CAAC,OAAO,UAAU,oCAAoC,CAAC,EAC3D,iBAAiB,EACjB,SAAS,EACT,SAAS,EACT,gBAAgB,EAChB,eAAe,GAChB,EAAE;IACD,iBAAiB,EAAE,GAAG,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,gBAAgB,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC;IACzD,eAAe,EAAE,CAAC,YAAY,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;CACnD,qBA0MA"}
1
+ {"version":3,"file":"PriceFeatureGroupPercentageSurcharge.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/PriceFeatureGroupPercentageSurcharge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAMrE,MAAM,CAAC,OAAO,UAAU,oCAAoC,CAAC,EAC3D,iBAAiB,EACjB,SAAS,EACT,SAAS,EACT,gBAAgB,EAChB,eAAe,GAChB,EAAE;IACD,iBAAiB,EAAE,GAAG,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,gBAAgB,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC;IACzD,eAAe,EAAE,CAAC,YAAY,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;CACnD,qBAgNA"}
@@ -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;AAqBvE,eAAO,MAAM,aAAa;;CA+wBxB,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;AAqBvE,eAAO,MAAM,aAAa;;CA2xBxB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableDecisions/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAavE,eAAO,MAAM,cAAc;;CA4NzB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableDecisions/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAavE,eAAO,MAAM,cAAc;;CAkOzB,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;;CA6LtB,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;;CAmMtB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCollectionEditor/modules/TableCollections/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAC;AAS1D,MAAM,CAAC,OAAO,gCAyLb"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCollectionEditor/modules/TableCollections/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAC;AAS1D,MAAM,CAAC,OAAO,gCA+Lb"}
@@ -119,12 +119,23 @@ export default function getConfig(t: TFunction): {
119
119
  editable: boolean;
120
120
  cellDataType: string;
121
121
  isDictionary?: undefined;
122
+ customParams?: undefined;
122
123
  } | {
123
124
  field: string;
124
125
  headerName: string;
125
126
  editable: boolean;
126
127
  cellDataType: string;
127
128
  isDictionary: boolean;
129
+ customParams?: undefined;
130
+ } | {
131
+ headerName: string;
132
+ field: string;
133
+ cellDataType: string;
134
+ editable: boolean;
135
+ customParams: {
136
+ dateFormat: string;
137
+ };
138
+ isDictionary?: undefined;
128
139
  })[];
129
140
  };
130
141
  item: {
@@ -134,18 +145,30 @@ export default function getConfig(t: TFunction): {
134
145
  editable: boolean;
135
146
  cellDataType?: undefined;
136
147
  isDictionary?: undefined;
148
+ customParams?: undefined;
137
149
  } | {
138
150
  headerName: string;
139
151
  field: string;
140
152
  editable: boolean;
141
153
  cellDataType: string;
142
154
  isDictionary: boolean;
155
+ customParams?: undefined;
143
156
  } | {
144
157
  headerName: string;
145
158
  field: string;
146
159
  cellDataType: string;
147
160
  editable: boolean;
161
+ customParams: {
162
+ dateFormat: string;
163
+ };
148
164
  isDictionary?: undefined;
165
+ } | {
166
+ headerName: string;
167
+ field: string;
168
+ editable: boolean;
169
+ cellDataType: string;
170
+ isDictionary?: undefined;
171
+ customParams?: undefined;
149
172
  })[];
150
173
  };
151
174
  option: {
@@ -167,6 +190,7 @@ export default function getConfig(t: TFunction): {
167
190
  };
168
191
  multiple: boolean;
169
192
  translated: boolean;
193
+ dateFormat?: undefined;
170
194
  };
171
195
  additionalFields: string[];
172
196
  isDictionary: boolean;
@@ -197,6 +221,25 @@ export default function getConfig(t: TFunction): {
197
221
  customParams?: undefined;
198
222
  additionalFields?: undefined;
199
223
  isDictionary?: undefined;
224
+ } | {
225
+ headerName: string;
226
+ field: string;
227
+ cellDataType: string;
228
+ editable: boolean;
229
+ customParams: {
230
+ dateFormat: string;
231
+ nameField?: undefined;
232
+ filterCellType?: undefined;
233
+ displayLabelTemplate?: undefined;
234
+ lookupValue?: undefined;
235
+ lookupKey?: undefined;
236
+ lookupKeyFilterType?: undefined;
237
+ multiple?: undefined;
238
+ translated?: undefined;
239
+ };
240
+ required?: undefined;
241
+ additionalFields?: undefined;
242
+ isDictionary?: undefined;
200
243
  })[];
201
244
  };
202
245
  };
@@ -1 +1 @@
1
- {"version":3,"file":"tableConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableExclusivity/tableConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAGpC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,CAAC,EAAE,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6b7C"}
1
+ {"version":3,"file":"tableConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableExclusivity/tableConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAGpC,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,CAAC,EAAE,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+c7C"}
@@ -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;AAevE,eAAO,MAAM,cAAc;;CA4QzB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePriceList/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAevE,eAAO,MAAM,cAAc;;CAkRzB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-backoffice",
3
- "version": "25.7.0-beta.26",
3
+ "version": "25.7.0-beta.28",
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.7.0-beta.26",
19
- "@crystaldesign/content-item": "25.7.0-beta.26",
20
- "@crystaldesign/diva-core": "25.7.0-beta.26",
21
- "@crystaldesign/diva-utils": "25.7.0-beta.26",
22
- "@crystaldesign/media-upload": "25.7.0-beta.26",
23
- "@crystaldesign/rtf-editor": "25.7.0-beta.26",
24
- "@crystaldesign/spreadsheet": "25.7.0-beta.26",
18
+ "@crystaldesign/content-box": "25.7.0-beta.28",
19
+ "@crystaldesign/content-item": "25.7.0-beta.28",
20
+ "@crystaldesign/diva-core": "25.7.0-beta.28",
21
+ "@crystaldesign/diva-utils": "25.7.0-beta.28",
22
+ "@crystaldesign/media-upload": "25.7.0-beta.28",
23
+ "@crystaldesign/rtf-editor": "25.7.0-beta.28",
24
+ "@crystaldesign/spreadsheet": "25.7.0-beta.28",
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": "79a02aaa76bb35623dfdf6dbd2cfc03b33e923ed"
54
+ "gitHead": "9762e3d78aee81f084e8f8ecae37e893a83e13ea"
55
55
  }