@crystaldesign/diva-seller 26.4.0-beta.2 → 26.4.0-beta.21
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
CHANGED
|
@@ -12577,7 +12577,7 @@ function useProductState (basket, divaNr) {
|
|
|
12577
12577
|
}, [updateCategoriesInternal, state]);
|
|
12578
12578
|
var save = /*#__PURE__*/function () {
|
|
12579
12579
|
var _ref = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
|
|
12580
|
-
var _state$classification, data, params, _productHandler$close, _savedProducts, _productHandler$close2, _productHandler$close3, savedProducts, _ref2, _e$message;
|
|
12580
|
+
var _state$classification, isExternalSave, isBaseConfigUseCase, showSyncEKTextModal, originProduct, syncEKText, data, params, _productHandler$close, _savedProducts, _productHandler$close2, _productHandler$close3, savedProducts, _ref2, _e$message;
|
|
12581
12581
|
return _regeneratorRuntime.wrap(function _callee2$(_context2) {
|
|
12582
12582
|
while (1) switch (_context2.prev = _context2.next) {
|
|
12583
12583
|
case 0:
|
|
@@ -12588,12 +12588,51 @@ function useProductState (basket, divaNr) {
|
|
|
12588
12588
|
return _context2.abrupt("return");
|
|
12589
12589
|
case 2:
|
|
12590
12590
|
_context2.prev = 2;
|
|
12591
|
+
isExternalSave = !!originProductId || sendProductsToExternalService;
|
|
12592
|
+
isBaseConfigUseCase = !!originProductId || forceTab === 'BASECONFIG';
|
|
12593
|
+
showSyncEKTextModal = false;
|
|
12594
|
+
if (!(isExternalSave && isBaseConfigUseCase && originProductId)) {
|
|
12595
|
+
_context2.next = 11;
|
|
12596
|
+
break;
|
|
12597
|
+
}
|
|
12598
|
+
_context2.next = 9;
|
|
12599
|
+
return productHandler.apiGetProducts(originProductId);
|
|
12600
|
+
case 9:
|
|
12601
|
+
originProduct = _context2.sent[0];
|
|
12602
|
+
if (originProduct.retailerArticleNr == undefined) {
|
|
12603
|
+
showSyncEKTextModal = true;
|
|
12604
|
+
}
|
|
12605
|
+
case 11:
|
|
12606
|
+
if (!showSyncEKTextModal) {
|
|
12607
|
+
_context2.next = 17;
|
|
12608
|
+
break;
|
|
12609
|
+
}
|
|
12610
|
+
_context2.next = 14;
|
|
12611
|
+
return new Promise(function (resolve) {
|
|
12612
|
+
openModal({
|
|
12613
|
+
accept: t('modals.yes'),
|
|
12614
|
+
reject: t('modals.no'),
|
|
12615
|
+
title: t('productcreator.syncEKText.title', 'EK Text übernehmen'),
|
|
12616
|
+
text: t('productcreator.syncEKText.text', 'Soll der EK Text in den Artikelübernommen werden?'),
|
|
12617
|
+
callback: function callback(confirmed) {
|
|
12618
|
+
return resolve(!!confirmed);
|
|
12619
|
+
}
|
|
12620
|
+
});
|
|
12621
|
+
});
|
|
12622
|
+
case 14:
|
|
12623
|
+
_context2.t0 = _context2.sent;
|
|
12624
|
+
_context2.next = 18;
|
|
12625
|
+
break;
|
|
12626
|
+
case 17:
|
|
12627
|
+
_context2.t0 = false;
|
|
12628
|
+
case 18:
|
|
12629
|
+
syncEKText = _context2.t0;
|
|
12591
12630
|
openModal({
|
|
12592
12631
|
progress: 0.05,
|
|
12593
12632
|
title: t('productcreator.savebasket'),
|
|
12594
12633
|
dontRenderForm: true
|
|
12595
12634
|
});
|
|
12596
|
-
_context2.next =
|
|
12635
|
+
_context2.next = 22;
|
|
12597
12636
|
return productHandler.prepareData({
|
|
12598
12637
|
basket: basket,
|
|
12599
12638
|
baseData: state.baseData,
|
|
@@ -12613,95 +12652,96 @@ function useProductState (basket, divaNr) {
|
|
|
12613
12652
|
optMap: state.optClassMap,
|
|
12614
12653
|
originProductId: originProductId
|
|
12615
12654
|
});
|
|
12616
|
-
case
|
|
12655
|
+
case 22:
|
|
12617
12656
|
data = _context2.sent;
|
|
12618
12657
|
setIsNew(false);
|
|
12619
12658
|
if (!(originProductId || sendProductsToExternalService)) {
|
|
12620
|
-
_context2.next =
|
|
12659
|
+
_context2.next = 51;
|
|
12621
12660
|
break;
|
|
12622
12661
|
}
|
|
12623
12662
|
params = {
|
|
12624
12663
|
products: data.products,
|
|
12625
12664
|
removedProductIds: data.removedProducts,
|
|
12626
|
-
parentProductId: originProductId ? originProductId : undefined
|
|
12665
|
+
parentProductId: originProductId ? originProductId : undefined,
|
|
12666
|
+
syncEKText: syncEKText
|
|
12627
12667
|
};
|
|
12628
12668
|
if (!(clientArticleHandler !== null && clientArticleHandler !== void 0 && clientArticleHandler.clientArticleService)) {
|
|
12629
|
-
_context2.next =
|
|
12669
|
+
_context2.next = 46;
|
|
12630
12670
|
break;
|
|
12631
12671
|
}
|
|
12632
|
-
_context2.prev =
|
|
12633
|
-
_context2.next =
|
|
12672
|
+
_context2.prev = 27;
|
|
12673
|
+
_context2.next = 30;
|
|
12634
12674
|
return clientArticleHandler.saveProductsSMArticles(params, clientArticleHandler.clientArticleService, organization._id);
|
|
12635
|
-
case
|
|
12675
|
+
case 30:
|
|
12636
12676
|
_savedProducts = _context2.sent;
|
|
12637
12677
|
(_productHandler$close = productHandler.closeModal) === null || _productHandler$close === void 0 || _productHandler$close.call(productHandler);
|
|
12638
|
-
_context2.next =
|
|
12678
|
+
_context2.next = 34;
|
|
12639
12679
|
return reset(currentBasketState === null || currentBasketState === void 0 ? void 0 : currentBasketState.basket, _savedProducts);
|
|
12640
|
-
case
|
|
12680
|
+
case 34:
|
|
12641
12681
|
if (originProductId) clearOriginProductId();
|
|
12642
12682
|
return _context2.abrupt("return", true);
|
|
12643
|
-
case
|
|
12644
|
-
_context2.prev =
|
|
12645
|
-
_context2.
|
|
12683
|
+
case 38:
|
|
12684
|
+
_context2.prev = 38;
|
|
12685
|
+
_context2.t1 = _context2["catch"](27);
|
|
12646
12686
|
(_productHandler$close2 = productHandler.closeModal) === null || _productHandler$close2 === void 0 || _productHandler$close2.call(productHandler);
|
|
12647
|
-
_context2.next =
|
|
12687
|
+
_context2.next = 43;
|
|
12648
12688
|
return reset(currentBasketState === null || currentBasketState === void 0 ? void 0 : currentBasketState.basket);
|
|
12649
|
-
case
|
|
12650
|
-
throw new Error(_context2.
|
|
12651
|
-
case
|
|
12652
|
-
_context2.next =
|
|
12689
|
+
case 43:
|
|
12690
|
+
throw new Error(_context2.t1.message);
|
|
12691
|
+
case 44:
|
|
12692
|
+
_context2.next = 51;
|
|
12653
12693
|
break;
|
|
12654
|
-
case
|
|
12694
|
+
case 46:
|
|
12655
12695
|
(_productHandler$close3 = productHandler.closeModal) === null || _productHandler$close3 === void 0 || _productHandler$close3.call(productHandler);
|
|
12656
12696
|
if (originProductId) clearOriginProductId();
|
|
12657
12697
|
LOG$3.error(new DivaError$1("Articles cannot be saved - ClientArticleService or JWT not set"));
|
|
12658
12698
|
setError(t('modal.general_error') + ' ' + t('modal.errorcode') + ':' + DivaUtils.getCurrentTraceId() + ' ' + DivaUtils.formatDate(new Date(), true, undefined, true));
|
|
12659
12699
|
return _context2.abrupt("return", false);
|
|
12660
|
-
case
|
|
12661
|
-
_context2.next =
|
|
12700
|
+
case 51:
|
|
12701
|
+
_context2.next = 53;
|
|
12662
12702
|
return productHandler.saveProducts(_objectSpread$5(_objectSpread$5({}, data), {}, {
|
|
12663
12703
|
awaitPDF: undefined
|
|
12664
12704
|
}));
|
|
12665
|
-
case
|
|
12705
|
+
case 53:
|
|
12666
12706
|
savedProducts = _context2.sent;
|
|
12667
|
-
_context2.next =
|
|
12707
|
+
_context2.next = 56;
|
|
12668
12708
|
return reset(currentBasketState === null || currentBasketState === void 0 ? void 0 : currentBasketState.basket, savedProducts);
|
|
12669
|
-
case
|
|
12709
|
+
case 56:
|
|
12670
12710
|
return _context2.abrupt("return", true);
|
|
12671
|
-
case
|
|
12672
|
-
_context2.prev =
|
|
12673
|
-
_context2.
|
|
12711
|
+
case 59:
|
|
12712
|
+
_context2.prev = 59;
|
|
12713
|
+
_context2.t2 = _context2["catch"](2);
|
|
12674
12714
|
LOG$3.error(new DivaError$1("Error saving product", {
|
|
12675
12715
|
code: 'PROD_0002',
|
|
12676
|
-
cause: _context2.
|
|
12716
|
+
cause: _context2.t2
|
|
12677
12717
|
}));
|
|
12678
|
-
if (Number(_context2.
|
|
12718
|
+
if (Number(_context2.t2.message) === 413) {
|
|
12679
12719
|
setError(t('modal.error_payload_to_big'));
|
|
12680
12720
|
} else {
|
|
12681
12721
|
setError(t('modal.general_error') + ' ' + t('modal.errorcode') + ':' + DivaUtils.getCurrentTraceId() + ' ' + DivaUtils.formatDate(new Date(), true, undefined, true));
|
|
12682
12722
|
}
|
|
12683
|
-
if (!(_context2.
|
|
12684
|
-
_context2.next =
|
|
12723
|
+
if (!(_context2.t2.message.includes('PRODSM_0001') || _context2.t2.errorCode == 'PRODSM_0001')) {
|
|
12724
|
+
_context2.next = 68;
|
|
12685
12725
|
break;
|
|
12686
12726
|
}
|
|
12687
12727
|
openModal({
|
|
12688
12728
|
title: t('productcreator.errorsavingsmarticle', 'Error saving SM-Article'),
|
|
12689
|
-
text: (_ref2 = (_e$message = _context2.
|
|
12729
|
+
text: (_ref2 = (_e$message = _context2.t2.message) !== null && _e$message !== void 0 ? _e$message : _context2.t2.error) !== null && _ref2 !== void 0 ? _ref2 : 'Error saving SM-Article',
|
|
12690
12730
|
accept: true
|
|
12691
12731
|
});
|
|
12692
12732
|
return _context2.abrupt("return", false);
|
|
12693
|
-
case
|
|
12733
|
+
case 68:
|
|
12694
12734
|
openModal({
|
|
12695
12735
|
title: t('errorcodes._source.labels.error.SELLER_0002'),
|
|
12696
12736
|
text: t('grid.error'),
|
|
12697
12737
|
accept: true
|
|
12698
12738
|
});
|
|
12699
12739
|
return _context2.abrupt("return", false);
|
|
12700
|
-
case
|
|
12740
|
+
case 70:
|
|
12701
12741
|
case "end":
|
|
12702
12742
|
return _context2.stop();
|
|
12703
12743
|
}
|
|
12704
|
-
}, _callee2, null, [[2,
|
|
12744
|
+
}, _callee2, null, [[2, 59], [27, 38]]);
|
|
12705
12745
|
}));
|
|
12706
12746
|
return function save() {
|
|
12707
12747
|
return _ref.apply(this, arguments);
|
|
@@ -13109,7 +13149,7 @@ function updateVariants(prevState, currentState, configurationData, baseDataFiel
|
|
|
13109
13149
|
var _currentState$modifie6, _configurationData$Pr3, _currentState$modifie7;
|
|
13110
13150
|
var variant = prevState.variantData[_i];
|
|
13111
13151
|
var newVariant = currentState.variantData[_i];
|
|
13112
|
-
var finalVariant =
|
|
13152
|
+
var finalVariant = structuredClone(variant);
|
|
13113
13153
|
var newModified = {};
|
|
13114
13154
|
var _iterator = _createForOfIteratorHelper(prevState.classificationFields || []),
|
|
13115
13155
|
_step;
|
|
@@ -13186,9 +13226,12 @@ function updateVariants(prevState, currentState, configurationData, baseDataFiel
|
|
|
13186
13226
|
} else if (field.includes('.')) {
|
|
13187
13227
|
var _currentState$modifie2;
|
|
13188
13228
|
//handle nested fields
|
|
13189
|
-
|
|
13229
|
+
// Wenn baseData am Pfad keinen Wert hat (typisch für variant-only Felder wie delivery.*),
|
|
13230
|
+
// sonst: prev === updated && !modified → calculateComputedValue setzt value = undefined und DB-Werte verschwinden nach Grid-Sync.
|
|
13190
13231
|
var _path = field.split('.');
|
|
13191
|
-
var
|
|
13232
|
+
var computedFromBase = getData(_path, currentState.baseData);
|
|
13233
|
+
var computedValueForMerge = computedFromBase === undefined ? getData(_path, variant) : computedFromBase;
|
|
13234
|
+
var _ProductHandler$calcu2 = ProductHandler.calculateComputedValue(getData(_path, variant), newVariant ? getData(_path, newVariant) : undefined, computedValueForMerge, (_currentState$modifie2 = currentState.modified.variantData[_i]) === null || _currentState$modifie2 === void 0 ? void 0 : _currentState$modifie2[field]),
|
|
13192
13235
|
_value2 = _ProductHandler$calcu2.value,
|
|
13193
13236
|
_modified2 = _ProductHandler$calcu2.modified;
|
|
13194
13237
|
setData(_path, _value2, finalVariant);
|
|
@@ -14682,7 +14725,11 @@ function Seller(props) {
|
|
|
14682
14725
|
}
|
|
14683
14726
|
}, [props.activeAccountId, sessionGuid, props.activeCatalogGuid]);
|
|
14684
14727
|
useEffect(function () {
|
|
14685
|
-
if (error || isLoading || !props.activeModule)
|
|
14728
|
+
if (error || isLoading || !props.activeModule) {
|
|
14729
|
+
setActiveModule();
|
|
14730
|
+
} else {
|
|
14731
|
+
setActiveModule(props.activeModule);
|
|
14732
|
+
}
|
|
14686
14733
|
toggleLoading('SellerLoading', false, isLoading);
|
|
14687
14734
|
}, [props.activeModule, error, isLoading]);
|
|
14688
14735
|
if (error) {
|
|
@@ -14758,6 +14805,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
14758
14805
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
14759
14806
|
var LOG = getLogger('Seller', 'Main');
|
|
14760
14807
|
var Main = function Main(_ref) {
|
|
14808
|
+
var _organization$_id;
|
|
14761
14809
|
var settings = _ref.settings,
|
|
14762
14810
|
parameters = _ref.parameters,
|
|
14763
14811
|
internal = _ref.internal,
|
|
@@ -14852,7 +14900,7 @@ var Main = function Main(_ref) {
|
|
|
14852
14900
|
assignNewDivaNr: (parameters === null || parameters === void 0 ? void 0 : parameters.assignNewDivaNr) === 'true'
|
|
14853
14901
|
})
|
|
14854
14902
|
})
|
|
14855
|
-
});
|
|
14903
|
+
}, (_organization$_id = organization === null || organization === void 0 ? void 0 : organization._id) !== null && _organization$_id !== void 0 ? _organization$_id : 'no-organization');
|
|
14856
14904
|
};
|
|
14857
14905
|
function getId(module) {
|
|
14858
14906
|
switch (module) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useProductState.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/ProductCreator/hooks/useProductState.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EAKV,WAAW,EACX,KAAK,EAGN,MAAM,0BAA0B,CAAC;AAElC,OAAO,EAAE,cAAc,EAAE,mBAAmB,EAAE,KAAK,EAAE,aAAa,EAAyC,MAAM,gCAAgC,CAAC;AAKlJ,OAAO,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AAEvD,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAGnC,UAAU,KAAK;IACb,kBAAkB,EAAE,MAAM,EAAE,CAAC;IAC7B,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,WAAW,CAAC;IACtB,kBAAkB,CAAC,EAAE,GAAG,CAAC;IACzB,SAAS,EAAE,aAAa,EAAE,CAAC;IAC3B,WAAW,CAAC,EAAE;QAAE,CAAC,UAAU,EAAE,MAAM,GAAG,aAAa,CAAA;KAAE,CAAC;IACtD,qBAAqB,EAAE,KAAK,EAAE,CAAC;IAC/B,oBAAoB,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAC7C,qBAAqB,CAAC,EAAE;QACtB,CAAC,SAAS,EAAE,MAAM,GAAG;YACnB,CAAC,OAAO,EAAE,MAAM,GAAG,GAAG,CAAC;SACxB,CAAC;KACH,CAAC;IACF,WAAW,EAAE,GAAG,EAAE,CAAC;IACnB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,QAAQ,EAAE;QACR,gBAAgB,EAAE,OAAO,CAAC;QAC1B,WAAW,EAAE,GAAG,EAAE,CAAC;KACpB,CAAC;IACF,YAAY,CAAC,EAAE,KAAK,EAAE,CAAC;CACxB;AA6ED,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAoJ3C,MAAM,GAAG,SAAS,iBAAiB,MAAM,GAAG,SAAS,gBAAgB,MAAM,GAAG,SAAS;2BAlE9F,WAAW;kCAaX,GAAG;2BAcH,GAAG,EAAE;wBAQL,QAAQ,EAAE,aAAa,MAAM,EAAE;wBAQ/B,KAAK,aAAa,MAAM,EAAE;sBAQ1B,MAAM,MAAM,MAAM,cAAc,OAAO,cAAc,MAAM;4BAQ3D,MAAM,MAAM,MAAM,oBAAoB,GAAG,EAAE,GAAG,SAAS;;
|
|
1
|
+
{"version":3,"file":"useProductState.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/ProductCreator/hooks/useProductState.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EAKV,WAAW,EACX,KAAK,EAGN,MAAM,0BAA0B,CAAC;AAElC,OAAO,EAAE,cAAc,EAAE,mBAAmB,EAAE,KAAK,EAAE,aAAa,EAAyC,MAAM,gCAAgC,CAAC;AAKlJ,OAAO,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AAEvD,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAC;AAGnC,UAAU,KAAK;IACb,kBAAkB,EAAE,MAAM,EAAE,CAAC;IAC7B,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,WAAW,CAAC;IACtB,kBAAkB,CAAC,EAAE,GAAG,CAAC;IACzB,SAAS,EAAE,aAAa,EAAE,CAAC;IAC3B,WAAW,CAAC,EAAE;QAAE,CAAC,UAAU,EAAE,MAAM,GAAG,aAAa,CAAA;KAAE,CAAC;IACtD,qBAAqB,EAAE,KAAK,EAAE,CAAC;IAC/B,oBAAoB,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAC7C,qBAAqB,CAAC,EAAE;QACtB,CAAC,SAAS,EAAE,MAAM,GAAG;YACnB,CAAC,OAAO,EAAE,MAAM,GAAG,GAAG,CAAC;SACxB,CAAC;KACH,CAAC;IACF,WAAW,EAAE,GAAG,EAAE,CAAC;IACnB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,QAAQ,EAAE;QACR,gBAAgB,EAAE,OAAO,CAAC;QAC1B,WAAW,EAAE,GAAG,EAAE,CAAC;KACpB,CAAC;IACF,YAAY,CAAC,EAAE,KAAK,EAAE,CAAC;CACxB;AA6ED,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAoJ3C,MAAM,GAAG,SAAS,iBAAiB,MAAM,GAAG,SAAS,gBAAgB,MAAM,GAAG,SAAS;2BAlE9F,WAAW;kCAaX,GAAG;2BAcH,GAAG,EAAE;wBAQL,QAAQ,EAAE,aAAa,MAAM,EAAE;wBAQ/B,KAAK,aAAa,MAAM,EAAE;sBAQ1B,MAAM,MAAM,MAAM,cAAc,OAAO,cAAc,MAAM;4BAQ3D,MAAM,MAAM,MAAM,oBAAoB,GAAG,EAAE,GAAG,SAAS;;qBAwJlC,UAAU,gBAAgB,GAAG,EAAE;yBA5Mb;QAAE,CAAC,UAAU,EAAE,MAAM,GAAG,aAAa,CAAA;KAAE;;EAqaxF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Seller/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAMzC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAGrC,OAAO,EAAE,UAAU,EAAwB,MAAM,0BAA0B,CAAC;AAM5E,UAAU,KAAK;IACb,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAED,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,KAAK,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Seller/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAMzC,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAGrC,OAAO,EAAE,UAAU,EAAwB,MAAM,0BAA0B,CAAC;AAM5E,UAAU,KAAK;IACb,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAED,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,KAAK,EAAE,KAAK,qBA0C1C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAU,MAAM,SAAS,CAAC;AAIhD,OAAO,EAAE,mBAAmB,EAA0C,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAU,MAAM,SAAS,CAAC;AAIhD,OAAO,EAAE,mBAAmB,EAA0C,MAAM,0BAA0B,CAAC;AA+HvG,QAAA,MAAM,eAAe,EAAE,mBAAmB,CAAC,aAAa,CAGvD,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crystaldesign/diva-seller",
|
|
3
|
-
"version": "26.4.0-beta.
|
|
3
|
+
"version": "26.4.0-beta.21",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"react-dom": "^18.3.1"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@crystaldesign/analytics": "26.4.0-beta.
|
|
33
|
-
"@crystaldesign/products-component": "26.4.0-beta.
|
|
34
|
-
"@crystaldesign/real-time-viewer": "26.4.0-beta.
|
|
32
|
+
"@crystaldesign/analytics": "26.4.0-beta.21",
|
|
33
|
+
"@crystaldesign/products-component": "26.4.0-beta.21",
|
|
34
|
+
"@crystaldesign/real-time-viewer": "26.4.0-beta.21",
|
|
35
35
|
"@emotion/react": "^11.4.1",
|
|
36
36
|
"@emotion/styled": "^11.3.0",
|
|
37
37
|
"@mui/icons-material": "^6.1.5",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
},
|
|
44
44
|
"types": "./build/types/seller/src/index.d.ts",
|
|
45
45
|
"module": "build/esm/index.js",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "ac4ae1500b65a00b4dc47c406861eed3f7ee766b"
|
|
47
47
|
}
|