@crystaldesign/diva-backoffice 25.6.0-beta.8 → 25.6.0-beta.9
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 +44 -22
- package/build/types/backoffice/src/ui/IDMCatalogEditor/Tables/Features.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/Tables/Items.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/Tables/OptionCombinations/index.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/TableDetailInfos/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableOptionGroups/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TablePartlists/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TablePriceFeatureGroups/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/Tables/CollectionMembers.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/TableGroups/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TablePackages/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TablePartlistPos/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableProperties/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableTabGroups/index.d.ts.map +1 -1
- package/package.json +9 -9
package/build/esm/index.js
CHANGED
@@ -31064,7 +31064,8 @@ var TableGroups = observer(function () {
|
|
31064
31064
|
create: apiConfig.enricherService + '/packages/${packageId}/groups',
|
31065
31065
|
restore: apiConfig.enricherService + '/packages/${packageId}/groups/${_id}',
|
31066
31066
|
"delete": apiConfig.enricherService + '/packages/${packageId}/groups/${_id}',
|
31067
|
-
update: apiConfig.enricherService + '/packages/${packageId}/groups/${_id}'
|
31067
|
+
update: apiConfig.enricherService + '/packages/${packageId}/groups/${_id}',
|
31068
|
+
bulk: apiConfig.enricherService + '/packages/${packageId}/groups/bulk'
|
31068
31069
|
};
|
31069
31070
|
}, []);
|
31070
31071
|
var configuration = useMemo(function () {
|
@@ -31700,7 +31701,8 @@ var TablePackages = observer(function () {
|
|
31700
31701
|
create: apiConfig.enricherService + '/packages',
|
31701
31702
|
restore: apiConfig.enricherService + '/packages/${_id}',
|
31702
31703
|
"delete": apiConfig.enricherService + '/packages/${_id}',
|
31703
|
-
update: apiConfig.enricherService + '/packages/${_id}'
|
31704
|
+
update: apiConfig.enricherService + '/packages/${_id}',
|
31705
|
+
bulk: apiConfig.enricherService + '/packages/bulk?organizationId=${organizationId}'
|
31704
31706
|
};
|
31705
31707
|
}, [apiConfig.enricherService]);
|
31706
31708
|
var configuration = useMemo(function () {
|
@@ -31885,7 +31887,8 @@ var TableProperties = observer(function () {
|
|
31885
31887
|
create: apiConfig.enricherService + '/packages/${packageId}/properties',
|
31886
31888
|
restore: apiConfig.enricherService + '/packages/${packageId}/properties/${_id}',
|
31887
31889
|
"delete": apiConfig.enricherService + '/packages/${packageId}/properties/${_id}',
|
31888
|
-
update: apiConfig.enricherService + '/packages/${packageId}/properties/${_id}'
|
31890
|
+
update: apiConfig.enricherService + '/packages/${packageId}/properties/${_id}',
|
31891
|
+
bulk: apiConfig.enricherService + '/packages/${packageId}/properties/bulk'
|
31889
31892
|
};
|
31890
31893
|
}, []);
|
31891
31894
|
var configuration = useMemo(function () {
|
@@ -32686,7 +32689,8 @@ var RenamingTable = observer(function (_ref) {
|
|
32686
32689
|
var apiInterface = useMemo(function () {
|
32687
32690
|
return {
|
32688
32691
|
read: apiConfig.enricherService + '/packages/${packageId}/renamings/' + type,
|
32689
|
-
update: apiConfig.enricherService + '/packages/${packageId}/renamings/' + type + '/${_id}'
|
32692
|
+
update: apiConfig.enricherService + '/packages/${packageId}/renamings/' + type + '/${_id}',
|
32693
|
+
bulk: apiConfig.enricherService + '/packages/${packageId}/renamings/' + type + '/bulk'
|
32690
32694
|
};
|
32691
32695
|
}, [type]);
|
32692
32696
|
var configuration = useMemo(function () {
|
@@ -33306,7 +33310,8 @@ var TableTabGroups = observer(function () {
|
|
33306
33310
|
create: apiConfig.enricherService + '/packages/${packageId}/tabgroups',
|
33307
33311
|
restore: apiConfig.enricherService + '/packages/${packageId}/tabgroups/${_id}',
|
33308
33312
|
"delete": apiConfig.enricherService + '/packages/${packageId}/tabgroups/${_id}',
|
33309
|
-
update: apiConfig.enricherService + '/packages/${packageId}/tabgroups/${_id}'
|
33313
|
+
update: apiConfig.enricherService + '/packages/${packageId}/tabgroups/${_id}',
|
33314
|
+
bulk: apiConfig.enricherService + '/packages/${packageId}/tabgroups/bulk'
|
33310
33315
|
};
|
33311
33316
|
}, []);
|
33312
33317
|
var configuration = useMemo(function () {
|
@@ -33416,7 +33421,8 @@ var TablePartlistPos = observer(function () {
|
|
33416
33421
|
create: apiConfig.enricherService + '/packages/${packageId}/partlistpos',
|
33417
33422
|
restore: apiConfig.enricherService + '/packages/${packageId}/partlistpos/${_id}',
|
33418
33423
|
"delete": apiConfig.enricherService + '/packages/${packageId}/partlistpos/${_id}',
|
33419
|
-
update: apiConfig.enricherService + '/packages/${packageId}/partlistpos/${_id}'
|
33424
|
+
update: apiConfig.enricherService + '/packages/${packageId}/partlistpos/${_id}',
|
33425
|
+
bulk: apiConfig.enricherService + '/packages/${packageId}/partlistpos/bulk'
|
33420
33426
|
};
|
33421
33427
|
}, []);
|
33422
33428
|
var configuration = useMemo(function () {
|
@@ -35439,7 +35445,8 @@ var TableCatalogs = observer(function () {
|
|
35439
35445
|
create: apiConfig.idmService + '/v3.0/catalogs',
|
35440
35446
|
restore: apiConfig.idmService + '/v3.0/catalogs/${_id}',
|
35441
35447
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${_id}',
|
35442
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${_id}'
|
35448
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${_id}',
|
35449
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/bulk?organizationId=${organizationId}'
|
35443
35450
|
},
|
35444
35451
|
dateFormat: 'DD.MM.YYYY, HH:mm:ss',
|
35445
35452
|
floatingFilter: true,
|
@@ -36259,7 +36266,8 @@ function Items$1(_ref) {
|
|
36259
36266
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${selectedSerie}/items',
|
36260
36267
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${selectedSerie}/items/${_id}',
|
36261
36268
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${selectedSerie}/items/${_id}',
|
36262
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${selectedSerie}/items/${_id}'
|
36269
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${selectedSerie}/items/${_id}',
|
36270
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${selectedSerie}/items/bulk'
|
36263
36271
|
},
|
36264
36272
|
dateFormat: 'DD.MM.YYYY, HH:mm:ss',
|
36265
36273
|
floatingFilter: true,
|
@@ -36602,7 +36610,8 @@ var TableSeries = observer(function () {
|
|
36602
36610
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series',
|
36603
36611
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${_id}',
|
36604
36612
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${_id}',
|
36605
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${_id}'
|
36613
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${_id}',
|
36614
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/bulk'
|
36606
36615
|
},
|
36607
36616
|
dateFormat: 'DD.MM.YYYY, HH:mm:ss',
|
36608
36617
|
colDef: [{
|
@@ -36743,7 +36752,8 @@ function Features(_ref) {
|
|
36743
36752
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/features',
|
36744
36753
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/features/${_id}',
|
36745
36754
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/features/${_id}',
|
36746
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/features/${_id}'
|
36755
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/features/${_id}',
|
36756
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/features/bulk'
|
36747
36757
|
};
|
36748
36758
|
}, [featureClassId]);
|
36749
36759
|
var configuration = useMemo(function () {
|
@@ -36923,7 +36933,8 @@ function Options(_ref) {
|
|
36923
36933
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/options',
|
36924
36934
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/options/${_id}',
|
36925
36935
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/options/${_id}',
|
36926
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/options/${_id}'
|
36936
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/options/${_id}',
|
36937
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/options/bulk'
|
36927
36938
|
},
|
36928
36939
|
dateFormat: 'DD.MM.YYYY, HH:mm:ss',
|
36929
36940
|
floatingFilter: true,
|
@@ -37145,7 +37156,8 @@ var TableFeatureClasses = observer(function () {
|
|
37145
37156
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/featureclasses',
|
37146
37157
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/featureclasses/${_id}',
|
37147
37158
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/featureclasses/${_id}',
|
37148
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/featureclasses/${_id}'
|
37159
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/featureclasses/${_id}',
|
37160
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/featureclasses/bulk'
|
37149
37161
|
},
|
37150
37162
|
dateFormat: 'DD.MM.YYYY, HH:mm:ss',
|
37151
37163
|
colDef: [{
|
@@ -37751,7 +37763,8 @@ function OptionCombinations(_ref) {
|
|
37751
37763
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/${decisionId}/optioncombinations',
|
37752
37764
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/${decisionId}/optioncombinations/${_id}',
|
37753
37765
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/${decisionId}/optioncombinations/${_id}',
|
37754
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/${decisionId}/optioncombinations/${_id}'
|
37766
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/${decisionId}/optioncombinations/${_id}',
|
37767
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/${decisionId}/optioncombinations/bulk'
|
37755
37768
|
};
|
37756
37769
|
}, []);
|
37757
37770
|
var configuration = useMemo(function () {
|
@@ -37982,7 +37995,8 @@ var TableDecisions = observer(function () {
|
|
37982
37995
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions',
|
37983
37996
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/${_id}',
|
37984
37997
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/${_id}',
|
37985
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/${_id}'
|
37998
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/${_id}',
|
37999
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions/bulk'
|
37986
38000
|
},
|
37987
38001
|
dateFormat: 'DD.MM.YYYY, HH:mm:ss',
|
37988
38002
|
colDef: [{
|
@@ -38117,7 +38131,8 @@ var TableDetailInfos = observer(function () {
|
|
38117
38131
|
type: 'dotnetSSM',
|
38118
38132
|
apiInterface: {
|
38119
38133
|
read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/detailinfos',
|
38120
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/detailinfos/${_id}'
|
38134
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/detailinfos/${_id}',
|
38135
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/detailinfos/bulk'
|
38121
38136
|
},
|
38122
38137
|
dateFormat: 'DD.MM.YYYY, HH:mm:ss',
|
38123
38138
|
colDef: [{
|
@@ -38507,7 +38522,8 @@ var TablePartlists = observer(function () {
|
|
38507
38522
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists',
|
38508
38523
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${_id}',
|
38509
38524
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${_id}',
|
38510
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${_id}'
|
38525
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${_id}',
|
38526
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/bulk'
|
38511
38527
|
};
|
38512
38528
|
}, []);
|
38513
38529
|
var configuration = useMemo(function () {
|
@@ -38641,7 +38657,8 @@ function PriceFeatureGroupPercentageSurcharge(_ref) {
|
|
38641
38657
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/percentagesurcharges',
|
38642
38658
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/percentagesurcharges/${_id}',
|
38643
38659
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/percentagesurcharges/${_id}',
|
38644
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/percentagesurcharges/${_id}'
|
38660
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/percentagesurcharges/${_id}',
|
38661
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/percentagesurcharges/bulk'
|
38645
38662
|
};
|
38646
38663
|
}, []);
|
38647
38664
|
var hooks = useMemo(function () {
|
@@ -38832,7 +38849,8 @@ function PriceFeatureGroupFinishes(_ref) {
|
|
38832
38849
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/finishes',
|
38833
38850
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/finishes/${_id}',
|
38834
38851
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/finishes/${_id}',
|
38835
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/finishes/${_id}'
|
38852
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/finishes/${_id}',
|
38853
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${priceFeatureGroupId}/finishes/bulk'
|
38836
38854
|
},
|
38837
38855
|
dateFormat: 'DD.MM.YYYY, HH:mm:ss',
|
38838
38856
|
colDef: [].concat(_toConsumableArray((_priceFeatureGroup$fe3 = (_priceFeatureGroup$fe4 = priceFeatureGroup.featureNos) === null || _priceFeatureGroup$fe4 === void 0 ? void 0 : _priceFeatureGroup$fe4.map(function (featureNos, i) {
|
@@ -39060,7 +39078,8 @@ var TablePriceFeatureGroups = observer(function () {
|
|
39060
39078
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups',
|
39061
39079
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${_id}',
|
39062
39080
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${_id}',
|
39063
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${_id}'
|
39081
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/${_id}',
|
39082
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/pricefeaturegroups/bulk'
|
39064
39083
|
},
|
39065
39084
|
dateFormat: 'DD.MM.YYYY, HH:mm:ss',
|
39066
39085
|
colDef: [{
|
@@ -39399,7 +39418,8 @@ var TableOptionGroups = observer(function () {
|
|
39399
39418
|
create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/optiongroups',
|
39400
39419
|
restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/optiongroups/${optionGroupKey}',
|
39401
39420
|
"delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/optiongroups/${optionGroupKey}',
|
39402
|
-
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/optiongroups/${optionGroupKey}'
|
39421
|
+
update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/optiongroups/${optionGroupKey}',
|
39422
|
+
bulk: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/optiongroups/bulk'
|
39403
39423
|
},
|
39404
39424
|
dateFormat: 'DD.MM.YYYY, HH:mm:ss',
|
39405
39425
|
colDef: [{
|
@@ -39517,7 +39537,8 @@ function CollectionMembers(_ref) {
|
|
39517
39537
|
read: apiConfig.enricherService + '/collections/${collectionId}/members',
|
39518
39538
|
create: apiConfig.enricherService + '/collections/${collectionId}/members',
|
39519
39539
|
"delete": apiConfig.enricherService + '/collections/${collectionId}/members/${_id}',
|
39520
|
-
update: apiConfig.enricherService + '/collections/${collectionId}/members/${_id}'
|
39540
|
+
update: apiConfig.enricherService + '/collections/${collectionId}/members/${_id}',
|
39541
|
+
bulk: apiConfig.enricherService + '/collections/${collectionId}/members/bulk'
|
39521
39542
|
};
|
39522
39543
|
}, []);
|
39523
39544
|
var configuration = useMemo(function () {
|
@@ -39668,7 +39689,8 @@ function TableCollections () {
|
|
39668
39689
|
create: apiConfig.enricherService + '/collections',
|
39669
39690
|
restore: apiConfig.enricherService + '/collections/${_id}',
|
39670
39691
|
"delete": apiConfig.enricherService + '/collections/${_id}',
|
39671
|
-
update: apiConfig.enricherService + '/collections/${_id}'
|
39692
|
+
update: apiConfig.enricherService + '/collections/${_id}',
|
39693
|
+
bulk: apiConfig.enricherService + '/collections/bulk?organizationId=${organizationId}'
|
39672
39694
|
};
|
39673
39695
|
}, []);
|
39674
39696
|
var configuration = useMemo(function () {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Features.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/Features.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAiB,MAAM,4BAA4B,CAAC;AACjF,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAGvC,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAC/B,cAAc,EACd,eAAe,EACf,cAAc,EACd,SAAS,EACT,KAAK,GACN,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,WAAW,CAAC;IAC7B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,EAAE,SAAS,CAAC;IACrB,KAAK,CAAC,EAAE,oBAAoB,CAAC,GAAG,CAAC,CAAC;CACnC,
|
1
|
+
{"version":3,"file":"Features.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/Features.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAiB,MAAM,4BAA4B,CAAC;AACjF,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAGvC,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAC/B,cAAc,EACd,eAAe,EACf,cAAc,EACd,SAAS,EACT,KAAK,GACN,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,WAAW,CAAC;IAC7B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,EAAE,SAAS,CAAC;IACrB,KAAK,CAAC,EAAE,oBAAoB,CAAC,GAAG,CAAC,CAAC;CACnC,qBA0LA"}
|
@@ -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,qBAwTA"}
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/Tables/OptionCombinations/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/Tables/OptionCombinations/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAMrE,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EACzC,QAAQ,EACR,SAAS,EACT,SAAS,EACT,gBAAgB,GACjB,EAAE;IACD,QAAQ,EAAE,GAAG,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,gBAAgB,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC;CAC1D,
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/Tables/OptionCombinations/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAMrE,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EACzC,QAAQ,EACR,SAAS,EACT,SAAS,EACT,gBAAgB,GACjB,EAAE;IACD,QAAQ,EAAE,GAAG,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,gBAAgB,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC;CAC1D,qBAmLA"}
|
@@ -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,qBA4KA"}
|
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,qBA8LA"}
|
@@ -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,qBA0MA"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableCatalogs/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAkB5D,eAAO,MAAM,aAAa;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableCatalogs/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAkB5D,eAAO,MAAM,aAAa;;CAuwBxB,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;;CAoOzB,CAAC"}
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableDetailInfos/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableDetailInfos/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAYvC,eAAO,MAAM,gBAAgB;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableDetailInfos/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAYvC,eAAO,MAAM,gBAAgB;;CAgK3B,CAAC"}
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAalD,eAAO,MAAM,mBAAmB;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAalD,eAAO,MAAM,mBAAmB;;CA2J9B,CAAC"}
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TableOptionGroups/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableOptionGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAC;AAa1D,eAAO,MAAM,iBAAiB;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableOptionGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqC,MAAM,OAAO,CAAC;AAa1D,eAAO,MAAM,iBAAiB;;CA8H5B,CAAC"}
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/modules/TablePartlists/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TablePartlists/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAYlD,eAAO,MAAM,cAAc;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TablePartlists/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAYlD,eAAO,MAAM,cAAc;;CAsJzB,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TablePriceFeatureGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAcvE,eAAO,MAAM,uBAAuB;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TablePriceFeatureGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAcvE,eAAO,MAAM,uBAAuB;;CA0NlC,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;AAalD,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;AAalD,eAAO,MAAM,WAAW;;CAmMtB,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"CollectionMembers.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCollectionEditor/Tables/CollectionMembers.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AACrD,OAAO,EAAE,oBAAoB,EAAiB,MAAM,4BAA4B,CAAC;AAEjF,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EACxC,UAAU,EACV,cAAc,EACd,SAAS,GACV,EAAE;IACD,UAAU,EAAE,GAAG,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,SAAS,CAAC;IACrB,KAAK,CAAC,EAAE,oBAAoB,CAAC,GAAG,CAAC,CAAC;CACnC,
|
1
|
+
{"version":3,"file":"CollectionMembers.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCollectionEditor/Tables/CollectionMembers.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AACrD,OAAO,EAAE,oBAAoB,EAAiB,MAAM,4BAA4B,CAAC;AAEjF,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EACxC,UAAU,EACV,cAAc,EACd,SAAS,GACV,EAAE;IACD,UAAU,EAAE,GAAG,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,SAAS,CAAC;IACrB,KAAK,CAAC,EAAE,oBAAoB,CAAC,GAAG,CAAC,CAAC;CACnC,qBAoFA"}
|
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;AAQ1D,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;AAQ1D,MAAM,CAAC,OAAO,gCAkMb"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAWvC,eAAO,MAAM,WAAW;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAWvC,eAAO,MAAM,WAAW;;CAsItB,CAAC"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TablePackages/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePackages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAcvC,eAAO,MAAM,aAAa;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePackages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAcvC,eAAO,MAAM,aAAa;;CAyPxB,CAAC"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TablePartlistPos/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePartlistPos/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAUvC,eAAO,MAAM,gBAAgB;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePartlistPos/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAUvC,eAAO,MAAM,gBAAgB;;CAuL3B,CAAC"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableProperties/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableProperties/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAWvC,eAAO,MAAM,eAAe;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableProperties/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAWvC,eAAO,MAAM,eAAe;;CAwL1B,CAAC"}
|
package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableTabGroups/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableTabGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAWvC,eAAO,MAAM,cAAc;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableTabGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAWvC,eAAO,MAAM,cAAc;;CA0GzB,CAAC"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@crystaldesign/diva-backoffice",
|
3
|
-
"version": "25.6.0-beta.
|
3
|
+
"version": "25.6.0-beta.9",
|
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.6.0-beta.
|
19
|
-
"@crystaldesign/content-item": "25.6.0-beta.
|
20
|
-
"@crystaldesign/diva-core": "25.6.0-beta.
|
21
|
-
"@crystaldesign/diva-utils": "25.6.0-beta.
|
22
|
-
"@crystaldesign/media-upload": "25.6.0-beta.
|
23
|
-
"@crystaldesign/rtf-editor": "25.6.0-beta.
|
24
|
-
"@crystaldesign/spreadsheet": "25.6.0-beta.
|
18
|
+
"@crystaldesign/content-box": "25.6.0-beta.9",
|
19
|
+
"@crystaldesign/content-item": "25.6.0-beta.9",
|
20
|
+
"@crystaldesign/diva-core": "25.6.0-beta.9",
|
21
|
+
"@crystaldesign/diva-utils": "25.6.0-beta.9",
|
22
|
+
"@crystaldesign/media-upload": "25.6.0-beta.9",
|
23
|
+
"@crystaldesign/rtf-editor": "25.6.0-beta.9",
|
24
|
+
"@crystaldesign/spreadsheet": "25.6.0-beta.9",
|
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": "8c646d7f428e05a8be23fc79b92e8b03b1a10c2e"
|
55
55
|
}
|