@crystaldesign/diva-backoffice 25.3.0-beta.10 → 25.3.0-beta.12
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 +30 -22
- package/build/types/backoffice/src/ui/IDMCatalogEditor/Tables/OptionCombinations.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/components/UploadButton/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/Tables/Prices/PriceDisplayCellRenderer/index.d.ts +5 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/Tables/Prices/PriceDisplayCellRenderer/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/Tables/Prices/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/TablePriceList/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
|
@@ -32572,7 +32572,6 @@ function TableTabGroups () {
|
|
|
32572
32572
|
isDictionary: true
|
|
32573
32573
|
}, createTranslatedColumnConfig('name', 'backoffice.idmEnricher.tabgroups.label.name', (selectedPackage === null || selectedPackage === void 0 ? void 0 : selectedPackage.isoLanguageIds) || ['DE'], true), {
|
|
32574
32574
|
field: 'organizationId',
|
|
32575
|
-
cellDataType: 'string',
|
|
32576
32575
|
editable: false,
|
|
32577
32576
|
hide: true,
|
|
32578
32577
|
defaultValue: '${organizationId}'
|
|
@@ -32751,7 +32750,6 @@ function TablePartlistPos () {
|
|
|
32751
32750
|
editable: false
|
|
32752
32751
|
}, {
|
|
32753
32752
|
field: 'organizationId',
|
|
32754
|
-
cellDataType: 'string',
|
|
32755
32753
|
editable: false,
|
|
32756
32754
|
hide: true,
|
|
32757
32755
|
defaultValue: '${organizationId}'
|
|
@@ -33259,16 +33257,13 @@ var css_248z$8 = ".container-T4Tzz {\n display: flex;\n align-items: center;\n
|
|
|
33259
33257
|
styleInject(css_248z$8);
|
|
33260
33258
|
|
|
33261
33259
|
function PriceDisplayCellRenderer(props) {
|
|
33262
|
-
var
|
|
33260
|
+
var _value$isManualPrice, _currentPrice$toFixed, _origPrice$toFixed;
|
|
33263
33261
|
var value = props.value,
|
|
33264
|
-
colDef = props.colDef,
|
|
33265
|
-
data = props.data,
|
|
33266
33262
|
commas = props.commas;
|
|
33267
|
-
var
|
|
33268
|
-
var
|
|
33269
|
-
var currentPrice = value !== null && value !== void 0 ? value : undefined;
|
|
33263
|
+
var origPrice = value === null || value === void 0 ? void 0 : value.origPrice;
|
|
33264
|
+
var currentPrice = value === null || value === void 0 ? void 0 : value.price;
|
|
33270
33265
|
var diffPercentage = origPrice && currentPrice ? (currentPrice - origPrice) / origPrice * 100 : undefined;
|
|
33271
|
-
var isManualPrice =
|
|
33266
|
+
var isManualPrice = (_value$isManualPrice = value === null || value === void 0 ? void 0 : value.isManualPrice) !== null && _value$isManualPrice !== void 0 ? _value$isManualPrice : false;
|
|
33272
33267
|
return /*#__PURE__*/jsxs("div", {
|
|
33273
33268
|
className: container$2,
|
|
33274
33269
|
children: [/*#__PURE__*/jsxs("span", {
|
|
@@ -33541,6 +33536,19 @@ function Prices (_ref) {
|
|
|
33541
33536
|
cellDataType: 'number',
|
|
33542
33537
|
headerTooltip: (_priceFeatureGroup$ke3 = priceFeatureGroup.keysDisplayTexts) === null || _priceFeatureGroup$ke3 === void 0 ? void 0 : _priceFeatureGroup$ke3[j],
|
|
33543
33538
|
cellRenderer: PriceDisplayCellRenderer,
|
|
33539
|
+
valueGetter: function valueGetter(_ref3) {
|
|
33540
|
+
var _data$prices, _data$origPrices, _data$manualPrices;
|
|
33541
|
+
var data = _ref3.data;
|
|
33542
|
+
if (!data) return;
|
|
33543
|
+
return {
|
|
33544
|
+
price: (_data$prices = data.prices) === null || _data$prices === void 0 ? void 0 : _data$prices[priceFeatureGroupItem],
|
|
33545
|
+
origPrice: (_data$origPrices = data.origPrices) === null || _data$origPrices === void 0 ? void 0 : _data$origPrices[priceFeatureGroupItem],
|
|
33546
|
+
isManualPrice: (_data$manualPrices = data.manualPrices) === null || _data$manualPrices === void 0 ? void 0 : _data$manualPrices.includes(priceFeatureGroupItem)
|
|
33547
|
+
};
|
|
33548
|
+
},
|
|
33549
|
+
equals: function equals(a, b) {
|
|
33550
|
+
return (a === null || a === void 0 ? void 0 : a.price) === (b === null || b === void 0 ? void 0 : b.price) && (a === null || a === void 0 ? void 0 : a.origPrice) === (b === null || b === void 0 ? void 0 : b.origPrice) && (a === null || a === void 0 ? void 0 : a.isManualPrice) === (b === null || b === void 0 ? void 0 : b.isManualPrice);
|
|
33551
|
+
},
|
|
33544
33552
|
cellRendererParams: {
|
|
33545
33553
|
commas: pricelist.commas
|
|
33546
33554
|
},
|
|
@@ -33549,7 +33557,7 @@ function Prices (_ref) {
|
|
|
33549
33557
|
headerComponentParams: {
|
|
33550
33558
|
additionalElement: /*#__PURE__*/jsx(PriceFactorInput, {
|
|
33551
33559
|
onSave: (/*#__PURE__*/function () {
|
|
33552
|
-
var
|
|
33560
|
+
var _ref4 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2(data, value) {
|
|
33553
33561
|
return _regeneratorRuntime.wrap(function _callee2$(_context2) {
|
|
33554
33562
|
while (1) switch (_context2.prev = _context2.next) {
|
|
33555
33563
|
case 0:
|
|
@@ -33561,7 +33569,7 @@ function Prices (_ref) {
|
|
|
33561
33569
|
}, _callee2);
|
|
33562
33570
|
}));
|
|
33563
33571
|
return function (_x3, _x4) {
|
|
33564
|
-
return
|
|
33572
|
+
return _ref4.apply(this, arguments);
|
|
33565
33573
|
};
|
|
33566
33574
|
}()),
|
|
33567
33575
|
value: (_pricelist$pgPricefac = pricelist.pgPricefactors) === null || _pricelist$pgPricefac === void 0 || (_pricelist$pgPricefac = _pricelist$pgPricefac[selectedSerie === null || selectedSerie === void 0 ? void 0 : selectedSerie.serieNo]) === null || _pricelist$pgPricefac === void 0 ? void 0 : _pricelist$pgPricefac[priceFeatureGroupItem],
|
|
@@ -33629,7 +33637,7 @@ function Prices (_ref) {
|
|
|
33629
33637
|
value: (_pricelist$seriePrice = pricelist.seriePricefactors) === null || _pricelist$seriePrice === void 0 ? void 0 : _pricelist$seriePrice[selectedSerie === null || selectedSerie === void 0 ? void 0 : selectedSerie.serieNo],
|
|
33630
33638
|
title: t('backoffice.idmCatalog.prices.priceFactor.label.series'),
|
|
33631
33639
|
onSave: (/*#__PURE__*/function () {
|
|
33632
|
-
var
|
|
33640
|
+
var _ref5 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee3(_, value) {
|
|
33633
33641
|
return _regeneratorRuntime.wrap(function _callee3$(_context3) {
|
|
33634
33642
|
while (1) switch (_context3.prev = _context3.next) {
|
|
33635
33643
|
case 0:
|
|
@@ -33641,7 +33649,7 @@ function Prices (_ref) {
|
|
|
33641
33649
|
}, _callee3);
|
|
33642
33650
|
}));
|
|
33643
33651
|
return function (_x5, _x6) {
|
|
33644
|
-
return
|
|
33652
|
+
return _ref5.apply(this, arguments);
|
|
33645
33653
|
};
|
|
33646
33654
|
}()),
|
|
33647
33655
|
disabled: !selectedSerie
|
|
@@ -33839,13 +33847,11 @@ function TablePriceList () {
|
|
|
33839
33847
|
cellDataType: 'dateString'
|
|
33840
33848
|
}, {
|
|
33841
33849
|
field: 'packageId',
|
|
33842
|
-
cellDataType: 'string',
|
|
33843
33850
|
editable: false,
|
|
33844
33851
|
hide: true,
|
|
33845
33852
|
defaultValue: '${packageId}'
|
|
33846
33853
|
}, {
|
|
33847
33854
|
field: 'organizationId',
|
|
33848
|
-
cellDataType: 'string',
|
|
33849
33855
|
editable: false,
|
|
33850
33856
|
hide: true,
|
|
33851
33857
|
defaultValue: '${organizationId}'
|
|
@@ -34101,7 +34107,12 @@ function UploadButton (_ref) {
|
|
|
34101
34107
|
},
|
|
34102
34108
|
multiple: false,
|
|
34103
34109
|
onChange: handleUploadChange,
|
|
34104
|
-
fileList: fileList
|
|
34110
|
+
fileList: fileList,
|
|
34111
|
+
showUploadList: {
|
|
34112
|
+
showPreviewIcon: false,
|
|
34113
|
+
showRemoveIcon: false,
|
|
34114
|
+
showDownloadIcon: false
|
|
34115
|
+
}
|
|
34105
34116
|
};
|
|
34106
34117
|
return /*#__PURE__*/jsx(Fragment, {
|
|
34107
34118
|
children: /*#__PURE__*/jsx(Upload$2, _objectSpread$9(_objectSpread$9({}, props), {}, {
|
|
@@ -35613,7 +35624,7 @@ function TableSeries () {
|
|
|
35613
35624
|
elementComponent: Items,
|
|
35614
35625
|
elementProps: {
|
|
35615
35626
|
organizationId: organizationId,
|
|
35616
|
-
|
|
35627
|
+
selectedCatalog: selectedCatalog,
|
|
35617
35628
|
selectedSerie: selectedSerie._id,
|
|
35618
35629
|
apiConfig: apiConfig
|
|
35619
35630
|
},
|
|
@@ -36079,7 +36090,7 @@ function TableFeatures () {
|
|
|
36079
36090
|
elementComponent: Options,
|
|
36080
36091
|
elementProps: {
|
|
36081
36092
|
organizationId: organizationId,
|
|
36082
|
-
|
|
36093
|
+
selectedCatalog: selectedCatalog,
|
|
36083
36094
|
selectedFeature: selectedFeature._id,
|
|
36084
36095
|
apiConfig: apiConfig
|
|
36085
36096
|
},
|
|
@@ -36232,7 +36243,7 @@ function TableFeatureClasses () {
|
|
|
36232
36243
|
elementComponent: Features,
|
|
36233
36244
|
elementProps: {
|
|
36234
36245
|
organizationId: organizationId,
|
|
36235
|
-
|
|
36246
|
+
selectedCatalog: selectedCatalog,
|
|
36236
36247
|
apiConfig: apiConfig,
|
|
36237
36248
|
featureClassId: selectedFeatureClass._id
|
|
36238
36249
|
},
|
|
@@ -36691,7 +36702,6 @@ function OptionCombinations(_ref8) {
|
|
|
36691
36702
|
field: 'featureRefs',
|
|
36692
36703
|
editable: false,
|
|
36693
36704
|
filter: false,
|
|
36694
|
-
lockPosition: 'left',
|
|
36695
36705
|
headerComponent: 'editColumnHeader',
|
|
36696
36706
|
headerComponentParams: {
|
|
36697
36707
|
onChange: addFeature,
|
|
@@ -37593,7 +37603,6 @@ function PriceFeatureGroupPercentageSurcharge(_ref) {
|
|
|
37593
37603
|
field: 'featureNos',
|
|
37594
37604
|
editable: false,
|
|
37595
37605
|
filter: false,
|
|
37596
|
-
lockPosition: 'left',
|
|
37597
37606
|
headerComponent: 'editColumnHeader',
|
|
37598
37607
|
headerComponentParams: {
|
|
37599
37608
|
onChange: addFeature,
|
|
@@ -37774,7 +37783,6 @@ function PriceFeatureGroupFinishes(_ref) {
|
|
|
37774
37783
|
field: 'featureNos',
|
|
37775
37784
|
editable: false,
|
|
37776
37785
|
filter: false,
|
|
37777
|
-
lockPosition: 'left',
|
|
37778
37786
|
headerComponent: 'editColumnHeader',
|
|
37779
37787
|
headerComponentParams: {
|
|
37780
37788
|
onChange: addFeature,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OptionCombinations.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/OptionCombinations.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoD,MAAM,OAAO,CAAC;AAEzE,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAiOrE,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":"OptionCombinations.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/OptionCombinations.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoD,MAAM,OAAO,CAAC;AAEzE,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAiOrE,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,qBA+KA"}
|
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,qBA6LA"}
|
|
@@ -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,qBAyMA"}
|
package/build/types/backoffice/src/ui/IDMCatalogEditor/components/UploadButton/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/UploadButton/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAC;AAItC,OAAO,KAAK,EAAE,UAAU,EAAe,MAAM,MAAM,CAAC;AAGpD,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAGlD,UAAU,KAAK;IACb,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,qBAAqB,CAAC;IACnC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,CAAC,KAAK,EAAE,sBAAsB,KAAK,IAAI,CAAC;IACrD,QAAQ,EAAE,sBAAsB,CAAC;IACjC,WAAW,EAAE,CAAC,QAAQ,EAAE,UAAU,CAAC,GAAG,CAAC,EAAE,KAAK,IAAI,CAAC;IACnD,QAAQ,EAAE,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC;CAC7B;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/components/UploadButton/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAC;AAItC,OAAO,KAAK,EAAE,UAAU,EAAe,MAAM,MAAM,CAAC;AAGpD,OAAO,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAGlD,UAAU,KAAK;IACb,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,qBAAqB,CAAC;IACnC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,CAAC,KAAK,EAAE,sBAAsB,KAAK,IAAI,CAAC;IACrD,QAAQ,EAAE,sBAAsB,CAAC;IACjC,WAAW,EAAE,CAAC,QAAQ,EAAE,UAAU,CAAC,GAAG,CAAC,EAAE,KAAK,IAAI,CAAC;IACnD,QAAQ,EAAE,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC;CAC7B;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,KAAK,qBAoGrH"}
|
|
@@ -9,7 +9,11 @@ export default function PriceDisplayCellRenderer(props: CustomCellRendererProps<
|
|
|
9
9
|
[key: string]: number;
|
|
10
10
|
};
|
|
11
11
|
manualPrices: string[];
|
|
12
|
-
},
|
|
12
|
+
}, {
|
|
13
|
+
price: number;
|
|
14
|
+
origPrice: number;
|
|
15
|
+
isManualPrice: boolean;
|
|
16
|
+
}, DivaContext> & {
|
|
13
17
|
commas?: number;
|
|
14
18
|
}): React.JSX.Element;
|
|
15
19
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/ui/IDMEnricherEditor/Tables/Prices/PriceDisplayCellRenderer/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAazD,MAAM,CAAC,OAAO,UAAU,wBAAwB,CAC9C,KAAK,EAAE,uBAAuB,CAC5B;IACE,MAAM,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAClC,UAAU,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IACtC,YAAY,EAAE,MAAM,EAAE,CAAC;CACxB,EACD,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/ui/IDMEnricherEditor/Tables/Prices/PriceDisplayCellRenderer/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAazD,MAAM,CAAC,OAAO,UAAU,wBAAwB,CAC9C,KAAK,EAAE,uBAAuB,CAC5B;IACE,MAAM,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAClC,UAAU,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IACtC,YAAY,EAAE,MAAM,EAAE,CAAC;CACxB,EACD;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,aAAa,EAAE,OAAO,CAAA;CAAE,EAC5D,WAAW,CACZ,GAAG;IAAE,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,qBAiCxB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/Tables/Prices/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/Tables/Prices/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+B,MAAM,OAAO,CAAC;AAEpD,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AAYrE,MAAM,CAAC,OAAO,WAAW,EACvB,cAAc,EACd,SAAS,EACT,SAAS,EACT,SAAS,EACT,gBAAgB,GACjB,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,SAAS,EAAE,GAAG,CAAC;IACf,gBAAgB,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC;CAC1D,qBAoSA"}
|
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;AASvC,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePartlistPos/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AASvC,MAAM,CAAC,OAAO,gCA2Lb"}
|
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;AAYvE,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TablePriceList/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkD,MAAM,OAAO,CAAC;AAYvE,MAAM,CAAC,OAAO,gCAwQb"}
|
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;AAUvC,MAAM,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMEnricherEditor/modules/TableTabGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAUvC,MAAM,CAAC,OAAO,gCA8Gb"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crystaldesign/diva-backoffice",
|
|
3
|
-
"version": "25.3.0-beta.
|
|
3
|
+
"version": "25.3.0-beta.12",
|
|
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.3.0-beta.
|
|
19
|
-
"@crystaldesign/content-item": "25.3.0-beta.
|
|
20
|
-
"@crystaldesign/diva-core": "25.3.0-beta.
|
|
21
|
-
"@crystaldesign/diva-utils": "25.3.0-beta.
|
|
22
|
-
"@crystaldesign/media-upload": "25.3.0-beta.
|
|
23
|
-
"@crystaldesign/rtf-editor": "25.3.0-beta.
|
|
24
|
-
"@crystaldesign/spreadsheet": "25.3.0-beta.
|
|
18
|
+
"@crystaldesign/content-box": "25.3.0-beta.12",
|
|
19
|
+
"@crystaldesign/content-item": "25.3.0-beta.12",
|
|
20
|
+
"@crystaldesign/diva-core": "25.3.0-beta.12",
|
|
21
|
+
"@crystaldesign/diva-utils": "25.3.0-beta.12",
|
|
22
|
+
"@crystaldesign/media-upload": "25.3.0-beta.12",
|
|
23
|
+
"@crystaldesign/rtf-editor": "25.3.0-beta.12",
|
|
24
|
+
"@crystaldesign/spreadsheet": "25.3.0-beta.12",
|
|
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": "d0fbb1af5447120bcbbba23b8cbd4474bf5b5b4e"
|
|
55
55
|
}
|