@crystaldesign/diva-backoffice 25.7.0-beta.25 → 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 +127 -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
@@ -7914,6 +7914,29 @@ function loadConfiguration(t, root, config, lang, apiConfig) {
|
|
7914
7914
|
{
|
7915
7915
|
name: ['defaultCatalog', 'catalogCodex'],
|
7916
7916
|
hidden: true
|
7917
|
+
}, {
|
7918
|
+
name: ['settings', 'sendOrders'],
|
7919
|
+
label: t('backoffice.form.organizationdetails.items.settings.sendOrders'),
|
7920
|
+
type: 'radio',
|
7921
|
+
optionType: 'button',
|
7922
|
+
options: [{
|
7923
|
+
label: t('backoffice.form.organizationdetails.items.vererbt'),
|
7924
|
+
value: undefined
|
7925
|
+
}, {
|
7926
|
+
label: t('backoffice.form.organizationdetails.items.ja'),
|
7927
|
+
value: true
|
7928
|
+
}, {
|
7929
|
+
label: t('backoffice.form.organizationdetails.items.nein'),
|
7930
|
+
value: false
|
7931
|
+
}],
|
7932
|
+
permission: 'backoffice_sys_admin_organizations'
|
7933
|
+
}, {
|
7934
|
+
name: ['settings', 'sendOrdersEmail'],
|
7935
|
+
label: t('backoffice.form.organizationdetails.items.settings.sendOrdersEmail'),
|
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
|
+
}
|
7917
7940
|
}, {
|
7918
7941
|
name: 'iwofurn',
|
7919
7942
|
label: t('backoffice.form.organizationdetails.items.iwofurn'),
|
@@ -33350,12 +33373,18 @@ function getConfig(t) {
|
|
33350
33373
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
|
33351
33374
|
field: 'validFromDate',
|
33352
33375
|
cellDataType: 'dateString',
|
33353
|
-
editable: false
|
33376
|
+
editable: false,
|
33377
|
+
customParams: {
|
33378
|
+
dateFormat: 'DD.MM.YYYY'
|
33379
|
+
}
|
33354
33380
|
}, {
|
33355
33381
|
field: 'validUntilDate',
|
33356
33382
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
|
33357
33383
|
cellDataType: 'dateString',
|
33358
|
-
editable: false
|
33384
|
+
editable: false,
|
33385
|
+
customParams: {
|
33386
|
+
dateFormat: 'DD.MM.YYYY'
|
33387
|
+
}
|
33359
33388
|
}]
|
33360
33389
|
},
|
33361
33390
|
item: {
|
@@ -33395,12 +33424,18 @@ function getConfig(t) {
|
|
33395
33424
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
|
33396
33425
|
field: 'validFromDate',
|
33397
33426
|
cellDataType: 'dateString',
|
33398
|
-
editable: false
|
33427
|
+
editable: false,
|
33428
|
+
customParams: {
|
33429
|
+
dateFormat: 'DD.MM.YYYY'
|
33430
|
+
}
|
33399
33431
|
}, {
|
33400
33432
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
|
33401
33433
|
field: 'validUntilDate',
|
33402
33434
|
cellDataType: 'dateString',
|
33403
|
-
editable: false
|
33435
|
+
editable: false,
|
33436
|
+
customParams: {
|
33437
|
+
dateFormat: 'DD.MM.YYYY'
|
33438
|
+
}
|
33404
33439
|
}, {
|
33405
33440
|
headerName: 'backoffice.idmEnricher.exclusivity.label.weightBrutto',
|
33406
33441
|
field: 'weightBrutto',
|
@@ -33509,12 +33544,18 @@ function getConfig(t) {
|
|
33509
33544
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validFrom',
|
33510
33545
|
field: 'validFromDate',
|
33511
33546
|
cellDataType: 'dateString',
|
33512
|
-
editable: false
|
33547
|
+
editable: false,
|
33548
|
+
customParams: {
|
33549
|
+
dateFormat: 'DD.MM.YYYY'
|
33550
|
+
}
|
33513
33551
|
}, {
|
33514
33552
|
headerName: 'backoffice.idmEnricher.exclusivity.label.validUntil',
|
33515
33553
|
field: 'validUntilDate',
|
33516
33554
|
cellDataType: 'dateString',
|
33517
|
-
editable: false
|
33555
|
+
editable: false,
|
33556
|
+
customParams: {
|
33557
|
+
dateFormat: 'DD.MM.YYYY'
|
33558
|
+
}
|
33518
33559
|
}, {
|
33519
33560
|
field: 'materialId',
|
33520
33561
|
headerName: 'backoffice.idmEnricher.exclusivity.label.materialId',
|
@@ -35175,12 +35216,18 @@ var TablePriceList = observer(function () {
|
|
35175
35216
|
headerName: 'backoffice.idmEnricher.pricelists.label.validFrom',
|
35176
35217
|
field: 'validFrom',
|
35177
35218
|
editable: true,
|
35178
|
-
cellDataType: 'dateString'
|
35219
|
+
cellDataType: 'dateString',
|
35220
|
+
customParams: {
|
35221
|
+
dateFormat: 'DD.MM.YYYY'
|
35222
|
+
}
|
35179
35223
|
}, {
|
35180
35224
|
headerName: 'backoffice.idmEnricher.pricelists.label.validTo',
|
35181
35225
|
field: 'validTo',
|
35182
35226
|
editable: true,
|
35183
|
-
cellDataType: 'dateString'
|
35227
|
+
cellDataType: 'dateString',
|
35228
|
+
customParams: {
|
35229
|
+
dateFormat: 'DD.MM.YYYY'
|
35230
|
+
}
|
35184
35231
|
}, {
|
35185
35232
|
field: 'packageId',
|
35186
35233
|
editable: false,
|
@@ -36037,12 +36084,18 @@ var TableCatalogs = observer(function () {
|
|
36037
36084
|
headerName: 'backoffice.idmCatalog.general.label.validFromDate',
|
36038
36085
|
field: 'validFromDate',
|
36039
36086
|
cellDataType: 'dateString',
|
36040
|
-
required: true
|
36087
|
+
required: true,
|
36088
|
+
customParams: {
|
36089
|
+
dateFormat: 'DD.MM.YYYY'
|
36090
|
+
}
|
36041
36091
|
}, {
|
36042
36092
|
headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
|
36043
36093
|
field: 'validUntilDate',
|
36044
36094
|
cellDataType: 'dateString',
|
36045
|
-
required: true
|
36095
|
+
required: true,
|
36096
|
+
customParams: {
|
36097
|
+
dateFormat: 'DD.MM.YYYY'
|
36098
|
+
}
|
36046
36099
|
}, {
|
36047
36100
|
field: 'isoLanguageIds',
|
36048
36101
|
headerName: 'backoffice.idmCatalog.general.label.isoLanguageIds',
|
@@ -36087,7 +36140,10 @@ var TableCatalogs = observer(function () {
|
|
36087
36140
|
}, {
|
36088
36141
|
headerName: 'backoffice.idmCatalog.general.label.catalogDataVersion',
|
36089
36142
|
field: 'catalogDataVersion',
|
36090
|
-
cellDataType: 'dateString'
|
36143
|
+
cellDataType: 'dateString',
|
36144
|
+
customParams: {
|
36145
|
+
dateFormat: 'DD.MM.YYYY'
|
36146
|
+
}
|
36091
36147
|
}, {
|
36092
36148
|
headerName: 'backoffice.idmCatalog.general.label.catalogInfo',
|
36093
36149
|
marryChildren: true,
|
@@ -36126,7 +36182,10 @@ var TableCatalogs = observer(function () {
|
|
36126
36182
|
headerName: 'backoffice.idmCatalog.general.label.dataVersion',
|
36127
36183
|
field: 'dataVersion',
|
36128
36184
|
cellDataType: 'dateString',
|
36129
|
-
required: true
|
36185
|
+
required: true,
|
36186
|
+
customParams: {
|
36187
|
+
dateFormat: 'DD.MM.YYYY'
|
36188
|
+
}
|
36130
36189
|
}, {
|
36131
36190
|
field: 'catalogId',
|
36132
36191
|
headerName: 'backoffice.idmCatalog.general.label.catalogId',
|
@@ -36888,11 +36947,17 @@ function Items$1(_ref) {
|
|
36888
36947
|
children: [{
|
36889
36948
|
headerName: 'backoffice.idmCatalog.general.label.validFromDate',
|
36890
36949
|
field: 'validFromDate',
|
36891
|
-
cellDataType: 'dateString'
|
36950
|
+
cellDataType: 'dateString',
|
36951
|
+
customParams: {
|
36952
|
+
dateFormat: 'DD.MM.YYYY'
|
36953
|
+
}
|
36892
36954
|
}, {
|
36893
36955
|
headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
|
36894
36956
|
field: 'validUntilDate',
|
36895
|
-
cellDataType: 'dateString'
|
36957
|
+
cellDataType: 'dateString',
|
36958
|
+
customParams: {
|
36959
|
+
dateFormat: 'DD.MM.YYYY'
|
36960
|
+
}
|
36896
36961
|
}]
|
36897
36962
|
}, {
|
36898
36963
|
headerName: 'backoffice.idmCatalog.items.label.measurements',
|
@@ -37154,11 +37219,17 @@ var TableSeries = observer(function () {
|
|
37154
37219
|
}, {
|
37155
37220
|
headerName: 'backoffice.idmCatalog.general.label.validFromDate',
|
37156
37221
|
field: 'validFromDate',
|
37157
|
-
cellDataType: 'dateString'
|
37222
|
+
cellDataType: 'dateString',
|
37223
|
+
customParams: {
|
37224
|
+
dateFormat: 'DD.MM.YYYY'
|
37225
|
+
}
|
37158
37226
|
}, {
|
37159
37227
|
headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
|
37160
37228
|
field: 'validUntilDate',
|
37161
|
-
cellDataType: 'dateString'
|
37229
|
+
cellDataType: 'dateString',
|
37230
|
+
customParams: {
|
37231
|
+
dateFormat: 'DD.MM.YYYY'
|
37232
|
+
}
|
37162
37233
|
}, {
|
37163
37234
|
headerName: 'backoffice.idmCatalog.general.label.lastUpdatedDate',
|
37164
37235
|
field: 'lastUpdatedDate',
|
@@ -37481,11 +37552,17 @@ function Options(_ref) {
|
|
37481
37552
|
children: [{
|
37482
37553
|
headerName: 'backoffice.idmCatalog.general.label.validFromDate',
|
37483
37554
|
field: 'validFromDate',
|
37484
|
-
cellDataType: 'dateString'
|
37555
|
+
cellDataType: 'dateString',
|
37556
|
+
customParams: {
|
37557
|
+
dateFormat: 'DD.MM.YYYY'
|
37558
|
+
}
|
37485
37559
|
}, {
|
37486
37560
|
headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
|
37487
37561
|
field: 'validUntilDate',
|
37488
|
-
cellDataType: 'dateString'
|
37562
|
+
cellDataType: 'dateString',
|
37563
|
+
customParams: {
|
37564
|
+
dateFormat: 'DD.MM.YYYY'
|
37565
|
+
}
|
37489
37566
|
}]
|
37490
37567
|
}, {
|
37491
37568
|
headerName: 'backoffice.idmCatalog.options.label.material',
|
@@ -38543,12 +38620,18 @@ var TableDecisions = observer(function () {
|
|
38543
38620
|
field: 'validFromDate',
|
38544
38621
|
headerName: 'backoffice.idmCatalog.decisions.label.validFromDate',
|
38545
38622
|
cellDataType: 'dateString',
|
38546
|
-
editable: true
|
38623
|
+
editable: true,
|
38624
|
+
customParams: {
|
38625
|
+
dateFormat: 'DD.MM.YYYY'
|
38626
|
+
}
|
38547
38627
|
}, {
|
38548
38628
|
field: 'validUntilDate',
|
38549
38629
|
headerName: 'backoffice.idmCatalog.decisions.label.validUntilDate',
|
38550
38630
|
cellDataType: 'dateString',
|
38551
|
-
editable: true
|
38631
|
+
editable: true,
|
38632
|
+
customParams: {
|
38633
|
+
dateFormat: 'DD.MM.YYYY'
|
38634
|
+
}
|
38552
38635
|
}, {
|
38553
38636
|
headerName: 'backoffice.idmCatalog.general.label.lastUpdatedDate',
|
38554
38637
|
field: 'lastUpdatedDate',
|
@@ -39233,11 +39316,17 @@ function PriceFeatureGroupPercentageSurcharge(_ref) {
|
|
39233
39316
|
}, {
|
39234
39317
|
headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validFromDate',
|
39235
39318
|
field: 'validFromDate',
|
39236
|
-
cellDataType: 'dateString'
|
39319
|
+
cellDataType: 'dateString',
|
39320
|
+
customParams: {
|
39321
|
+
dateFormat: 'DD.MM.YYYY'
|
39322
|
+
}
|
39237
39323
|
}, {
|
39238
39324
|
headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validUntilDate',
|
39239
39325
|
field: 'validUntilDate',
|
39240
|
-
cellDataType: 'dateString'
|
39326
|
+
cellDataType: 'dateString',
|
39327
|
+
customParams: {
|
39328
|
+
dateFormat: 'DD.MM.YYYY'
|
39329
|
+
}
|
39241
39330
|
}, {
|
39242
39331
|
headerName: 'backoffice.idmCatalog.general.label.createdDate',
|
39243
39332
|
field: 'createdDate',
|
@@ -39414,11 +39503,17 @@ function PriceFeatureGroupFinishes(_ref) {
|
|
39414
39503
|
}, {
|
39415
39504
|
headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validFromDate',
|
39416
39505
|
field: 'validFromDate',
|
39417
|
-
cellDataType: 'dateString'
|
39506
|
+
cellDataType: 'dateString',
|
39507
|
+
customParams: {
|
39508
|
+
dateFormat: 'DD.MM.YYYY'
|
39509
|
+
}
|
39418
39510
|
}, {
|
39419
39511
|
headerName: 'backoffice.idmCatalog.priceGroupFinishes.label.validUntilDate',
|
39420
39512
|
field: 'validUntilDate',
|
39421
|
-
cellDataType: 'dateString'
|
39513
|
+
cellDataType: 'dateString',
|
39514
|
+
customParams: {
|
39515
|
+
dateFormat: 'DD.MM.YYYY'
|
39516
|
+
}
|
39422
39517
|
}, {
|
39423
39518
|
headerName: 'backoffice.idmCatalog.general.label.createdDate',
|
39424
39519
|
field: 'createdDate',
|
@@ -40222,11 +40317,17 @@ function TableCollections () {
|
|
40222
40317
|
children: [{
|
40223
40318
|
headerName: 'backoffice.idmCatalog.general.label.validFromDate',
|
40224
40319
|
field: 'validFromDate',
|
40225
|
-
cellDataType: 'dateString'
|
40320
|
+
cellDataType: 'dateString',
|
40321
|
+
customParams: {
|
40322
|
+
dateFormat: 'DD.MM.YYYY'
|
40323
|
+
}
|
40226
40324
|
}, {
|
40227
40325
|
headerName: 'backoffice.idmCatalog.general.label.validUntilDate',
|
40228
40326
|
field: 'validUntilDate',
|
40229
|
-
cellDataType: 'dateString'
|
40327
|
+
cellDataType: 'dateString',
|
40328
|
+
customParams: {
|
40329
|
+
dateFormat: 'DD.MM.YYYY'
|
40330
|
+
}
|
40230
40331
|
}]
|
40231
40332
|
}, {
|
40232
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
|
}
|