@crystaldesign/diva-backoffice 25.7.0-beta.26 → 25.7.0-beta.27
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.
- package/build/esm/index.js +104 -26
- package/build/types/backoffice/src/ui/IDMCatalogEditor/Tables/Items.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/Tables/Options.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/Tables/PriceFeatureGroupFinishes.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/Tables/PriceFeatureGroupPercentageSurcharge.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableCatalogs/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableDecisions/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableSeries/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCollectionEditor/modules/TableCollections/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableExclusivity/tableConfiguration.d.ts +43 -0
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableExclusivity/tableConfiguration.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TablePriceList/index.d.ts.map +1 -1
- package/package.json +9 -9
package/build/esm/index.js
CHANGED
@@ -33373,12 +33373,18 @@ function getConfig(t) {
|
|
33373
33373
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
|
33374
33374
|
field: 'validFromDate',
|
33375
33375
|
cellDataType: 'dateString',
|
33376
|
-
editable: false
|
33376
|
+
editable: false,
|
33377
|
+
customParams: {
|
33378
|
+
dateFormat: 'DD.MM.YYYY'
|
33379
|
+
}
|
33377
33380
|
}, {
|
33378
33381
|
field: 'validUntilDate',
|
33379
33382
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
|
33380
33383
|
cellDataType: 'dateString',
|
33381
|
-
editable: false
|
33384
|
+
editable: false,
|
33385
|
+
customParams: {
|
33386
|
+
dateFormat: 'DD.MM.YYYY'
|
33387
|
+
}
|
33382
33388
|
}]
|
33383
33389
|
},
|
33384
33390
|
item: {
|
@@ -33418,12 +33424,18 @@ function getConfig(t) {
|
|
33418
33424
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
|
33419
33425
|
field: 'validFromDate',
|
33420
33426
|
cellDataType: 'dateString',
|
33421
|
-
editable: false
|
33427
|
+
editable: false,
|
33428
|
+
customParams: {
|
33429
|
+
dateFormat: 'DD.MM.YYYY'
|
33430
|
+
}
|
33422
33431
|
}, {
|
33423
33432
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
|
33424
33433
|
field: 'validUntilDate',
|
33425
33434
|
cellDataType: 'dateString',
|
33426
|
-
editable: false
|
33435
|
+
editable: false,
|
33436
|
+
customParams: {
|
33437
|
+
dateFormat: 'DD.MM.YYYY'
|
33438
|
+
}
|
33427
33439
|
}, {
|
33428
33440
|
headerName: 'backoffice.idmEnricher.exclusivity.label.weightBrutto',
|
33429
33441
|
field: 'weightBrutto',
|
@@ -33532,12 +33544,18 @@ function getConfig(t) {
|
|
33532
33544
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
|
33533
33545
|
field: 'validFromDate',
|
33534
33546
|
cellDataType: 'dateString',
|
33535
|
-
editable: false
|
33547
|
+
editable: false,
|
33548
|
+
customParams: {
|
33549
|
+
dateFormat: 'DD.MM.YYYY'
|
33550
|
+
}
|
33536
33551
|
}, {
|
33537
33552
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
|
33538
33553
|
field: 'validUntilDate',
|
33539
33554
|
cellDataType: 'dateString',
|
33540
|
-
editable: false
|
33555
|
+
editable: false,
|
33556
|
+
customParams: {
|
33557
|
+
dateFormat: 'DD.MM.YYYY'
|
33558
|
+
}
|
33541
33559
|
}, {
|
33542
33560
|
field: 'materialId',
|
33543
33561
|
headerName: 'backoffice.idmEnricher.exclusivity.label.materialId',
|
@@ -35198,12 +35216,18 @@ var TablePriceList = observer(function () {
|
|
35198
35216
|
headerName: 'backoffice.idmEnricher.pricelists.label.validFrom',
|
35199
35217
|
field: 'validFrom',
|
35200
35218
|
editable: true,
|
35201
|
-
cellDataType: 'dateString'
|
35219
|
+
cellDataType: 'dateString',
|
35220
|
+
customParams: {
|
35221
|
+
dateFormat: 'DD.MM.YYYY'
|
35222
|
+
}
|
35202
35223
|
}, {
|
35203
35224
|
headerName: 'backoffice.idmEnricher.pricelists.label.validTo',
|
35204
35225
|
field: 'validTo',
|
35205
35226
|
editable: true,
|
35206
|
-
cellDataType: 'dateString'
|
35227
|
+
cellDataType: 'dateString',
|
35228
|
+
customParams: {
|
35229
|
+
dateFormat: 'DD.MM.YYYY'
|
35230
|
+
}
|
35207
35231
|
}, {
|
35208
35232
|
field: 'packageId',
|
35209
35233
|
editable: false,
|
@@ -36060,12 +36084,18 @@ var TableCatalogs = observer(function () {
|
|
36060
36084
|
headerName: 'backoffice.idmCatalog.general.label.validFromDate',
|
36061
36085
|
field: 'validFromDate',
|
36062
36086
|
cellDataType: 'dateString',
|
36063
|
-
required: true
|
36087
|
+
required: true,
|
36088
|
+
customParams: {
|
36089
|
+
dateFormat: 'DD.MM.YYYY'
|
36090
|
+
}
|
36064
36091
|
}, {
|
36065
36092
|
headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
|
36066
36093
|
field: 'validUntilDate',
|
36067
36094
|
cellDataType: 'dateString',
|
36068
|
-
required: true
|
36095
|
+
required: true,
|
36096
|
+
customParams: {
|
36097
|
+
dateFormat: 'DD.MM.YYYY'
|
36098
|
+
}
|
36069
36099
|
}, {
|
36070
36100
|
field: 'isoLanguageIds',
|
36071
36101
|
headerName: 'backoffice.idmCatalog.general.label.isoLanguageIds',
|
@@ -36110,7 +36140,10 @@ var TableCatalogs = observer(function () {
|
|
36110
36140
|
}, {
|
36111
36141
|
headerName: 'backoffice.idmCatalog.general.label.catalogDataVersion',
|
36112
36142
|
field: 'catalogDataVersion',
|
36113
|
-
cellDataType: 'dateString'
|
36143
|
+
cellDataType: 'dateString',
|
36144
|
+
customParams: {
|
36145
|
+
dateFormat: 'DD.MM.YYYY'
|
36146
|
+
}
|
36114
36147
|
}, {
|
36115
36148
|
headerName: 'backoffice.idmCatalog.general.label.catalogInfo',
|
36116
36149
|
marryChildren: true,
|
@@ -36149,7 +36182,10 @@ var TableCatalogs = observer(function () {
|
|
36149
36182
|
headerName: 'backoffice.idmCatalog.general.label.dataVersion',
|
36150
36183
|
field: 'dataVersion',
|
36151
36184
|
cellDataType: 'dateString',
|
36152
|
-
required: true
|
36185
|
+
required: true,
|
36186
|
+
customParams: {
|
36187
|
+
dateFormat: 'DD.MM.YYYY'
|
36188
|
+
}
|
36153
36189
|
}, {
|
36154
36190
|
field: 'catalogId',
|
36155
36191
|
headerName: 'backoffice.idmCatalog.general.label.catalogId',
|
@@ -36911,11 +36947,17 @@ function Items$1(_ref) {
|
|
36911
36947
|
children: [{
|
36912
36948
|
headerName: 'backoffice.idmCatalog.general.label.validFromDate',
|
36913
36949
|
field: 'validFromDate',
|
36914
|
-
cellDataType: 'dateString'
|
36950
|
+
cellDataType: 'dateString',
|
36951
|
+
customParams: {
|
36952
|
+
dateFormat: 'DD.MM.YYYY'
|
36953
|
+
}
|
36915
36954
|
}, {
|
36916
36955
|
headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
|
36917
36956
|
field: 'validUntilDate',
|
36918
|
-
cellDataType: 'dateString'
|
36957
|
+
cellDataType: 'dateString',
|
36958
|
+
customParams: {
|
36959
|
+
dateFormat: 'DD.MM.YYYY'
|
36960
|
+
}
|
36919
36961
|
}]
|
36920
36962
|
}, {
|
36921
36963
|
headerName: 'backoffice.idmCatalog.items.label.measurements',
|
@@ -37177,11 +37219,17 @@ var TableSeries = observer(function () {
|
|
37177
37219
|
}, {
|
37178
37220
|
headerName: 'backoffice.idmCatalog.general.label.validFromDate',
|
37179
37221
|
field: 'validFromDate',
|
37180
|
-
cellDataType: 'dateString'
|
37222
|
+
cellDataType: 'dateString',
|
37223
|
+
customParams: {
|
37224
|
+
dateFormat: 'DD.MM.YYYY'
|
37225
|
+
}
|
37181
37226
|
}, {
|
37182
37227
|
headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
|
37183
37228
|
field: 'validUntilDate',
|
37184
|
-
cellDataType: 'dateString'
|
37229
|
+
cellDataType: 'dateString',
|
37230
|
+
customParams: {
|
37231
|
+
dateFormat: 'DD.MM.YYYY'
|
37232
|
+
}
|
37185
37233
|
}, {
|
37186
37234
|
headerName: 'backoffice.idmCatalog.general.label.lastUpdatedDate',
|
37187
37235
|
field: 'lastUpdatedDate',
|
@@ -37504,11 +37552,17 @@ function Options(_ref) {
|
|
37504
37552
|
children: [{
|
37505
37553
|
headerName: 'backoffice.idmCatalog.general.label.validFromDate',
|
37506
37554
|
field: 'validFromDate',
|
37507
|
-
cellDataType: 'dateString'
|
37555
|
+
cellDataType: 'dateString',
|
37556
|
+
customParams: {
|
37557
|
+
dateFormat: 'DD.MM.YYYY'
|
37558
|
+
}
|
37508
37559
|
}, {
|
37509
37560
|
headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
|
37510
37561
|
field: 'validUntilDate',
|
37511
|
-
cellDataType: 'dateString'
|
37562
|
+
cellDataType: 'dateString',
|
37563
|
+
customParams: {
|
37564
|
+
dateFormat: 'DD.MM.YYYY'
|
37565
|
+
}
|
37512
37566
|
}]
|
37513
37567
|
}, {
|
37514
37568
|
headerName: 'backoffice.idmCatalog.options.label.material',
|
@@ -38566,12 +38620,18 @@ var TableDecisions = observer(function () {
|
|
38566
38620
|
field: 'validFromDate',
|
38567
38621
|
headerName: 'backoffice.idmCatalog.decisions.label.validFromDate',
|
38568
38622
|
cellDataType: 'dateString',
|
38569
|
-
editable: true
|
38623
|
+
editable: true,
|
38624
|
+
customParams: {
|
38625
|
+
dateFormat: 'DD.MM.YYYY'
|
38626
|
+
}
|
38570
38627
|
}, {
|
38571
38628
|
field: 'validUntilDate',
|
38572
38629
|
headerName: 'backoffice.idmCatalog.decisions.label.validUntilDate',
|
38573
38630
|
cellDataType: 'dateString',
|
38574
|
-
editable: true
|
38631
|
+
editable: true,
|
38632
|
+
customParams: {
|
38633
|
+
dateFormat: 'DD.MM.YYYY'
|
38634
|
+
}
|
38575
38635
|
}, {
|
38576
38636
|
headerName: 'backoffice.idmCatalog.general.label.lastUpdatedDate',
|
38577
38637
|
field: 'lastUpdatedDate',
|
@@ -39256,11 +39316,17 @@ function PriceFeatureGroupPercentageSurcharge(_ref) {
|
|
39256
39316
|
}, {
|
39257
39317
|
headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validFromDate',
|
39258
39318
|
field: 'validFromDate',
|
39259
|
-
cellDataType: 'dateString'
|
39319
|
+
cellDataType: 'dateString',
|
39320
|
+
customParams: {
|
39321
|
+
dateFormat: 'DD.MM.YYYY'
|
39322
|
+
}
|
39260
39323
|
}, {
|
39261
39324
|
headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validUntilDate',
|
39262
39325
|
field: 'validUntilDate',
|
39263
|
-
cellDataType: 'dateString'
|
39326
|
+
cellDataType: 'dateString',
|
39327
|
+
customParams: {
|
39328
|
+
dateFormat: 'DD.MM.YYYY'
|
39329
|
+
}
|
39264
39330
|
}, {
|
39265
39331
|
headerName: 'backoffice.idmCatalog.general.label.createdDate',
|
39266
39332
|
field: 'createdDate',
|
@@ -39437,11 +39503,17 @@ function PriceFeatureGroupFinishes(_ref) {
|
|
39437
39503
|
}, {
|
39438
39504
|
headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validFromDate',
|
39439
39505
|
field: 'validFromDate',
|
39440
|
-
cellDataType: 'dateString'
|
39506
|
+
cellDataType: 'dateString',
|
39507
|
+
customParams: {
|
39508
|
+
dateFormat: 'DD.MM.YYYY'
|
39509
|
+
}
|
39441
39510
|
}, {
|
39442
39511
|
headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validUntilDate',
|
39443
39512
|
field: 'validUntilDate',
|
39444
|
-
cellDataType: 'dateString'
|
39513
|
+
cellDataType: 'dateString',
|
39514
|
+
customParams: {
|
39515
|
+
dateFormat: 'DD.MM.YYYY'
|
39516
|
+
}
|
39445
39517
|
}, {
|
39446
39518
|
headerName: 'backoffice.idmCatalog.general.label.createdDate',
|
39447
39519
|
field: 'createdDate',
|
@@ -40245,11 +40317,17 @@ function TableCollections () {
|
|
40245
40317
|
children: [{
|
40246
40318
|
headerName: 'backoffice.idmCatalog.general.label.validFromDate',
|
40247
40319
|
field: 'validFromDate',
|
40248
|
-
cellDataType: 'dateString'
|
40320
|
+
cellDataType: 'dateString',
|
40321
|
+
customParams: {
|
40322
|
+
dateFormat: 'DD.MM.YYYY'
|
40323
|
+
}
|
40249
40324
|
}, {
|
40250
40325
|
headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
|
40251
40326
|
field: 'validUntilDate',
|
40252
|
-
cellDataType: 'dateString'
|
40327
|
+
cellDataType: 'dateString',
|
40328
|
+
customParams: {
|
40329
|
+
dateFormat: 'DD.MM.YYYY'
|
40330
|
+
}
|
40253
40331
|
}]
|
40254
40332
|
}, {
|
40255
40333
|
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,
|
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,
|
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"}
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/Tables/PriceFeatureGroupFinishes.d.ts.map
CHANGED
@@ -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,
|
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,
|
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;;
|
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"}
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableDecisions/index.d.ts.map
CHANGED
@@ -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;;
|
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;;
|
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"}
|
package/build/types/backoffice/src/ui/IDMCollectionEditor/modules/TableCollections/index.d.ts.map
CHANGED
@@ -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,
|
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
|
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"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TablePriceList/index.d.ts.map
CHANGED
@@ -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;;
|
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.
|
3
|
+
"version": "25.7.0-beta.27",
|
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.
|
19
|
-
"@crystaldesign/content-item": "25.7.0-beta.
|
20
|
-
"@crystaldesign/diva-core": "25.7.0-beta.
|
21
|
-
"@crystaldesign/diva-utils": "25.7.0-beta.
|
22
|
-
"@crystaldesign/media-upload": "25.7.0-beta.
|
23
|
-
"@crystaldesign/rtf-editor": "25.7.0-beta.
|
24
|
-
"@crystaldesign/spreadsheet": "25.7.0-beta.
|
18
|
+
"@crystaldesign/content-box": "25.7.0-beta.27",
|
19
|
+
"@crystaldesign/content-item": "25.7.0-beta.27",
|
20
|
+
"@crystaldesign/diva-core": "25.7.0-beta.27",
|
21
|
+
"@crystaldesign/diva-utils": "25.7.0-beta.27",
|
22
|
+
"@crystaldesign/media-upload": "25.7.0-beta.27",
|
23
|
+
"@crystaldesign/rtf-editor": "25.7.0-beta.27",
|
24
|
+
"@crystaldesign/spreadsheet": "25.7.0-beta.27",
|
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": "
|
54
|
+
"gitHead": "a7063af7336433f4f8c29902926f469408a6cb27"
|
55
55
|
}
|