@crystaldesign/diva-backoffice 25.10.0-beta.25 → 25.10.0-beta.26
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 +74 -12
- package/build/types/backoffice/src/ui/IDMCatalogEditor/hooks/useCatalogContext.d.ts +2 -0
- package/build/types/backoffice/src/ui/IDMCatalogEditor/hooks/useCatalogContext.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMCatalogEditor/hooks/useModule.d.ts +2 -0
- package/build/types/backoffice/src/ui/IDMCatalogEditor/hooks/useModule.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/modules/TableCollections/index.d.ts.map +1 -1
- package/build/types/backoffice/src/ui/IDMEnricherEditor/modules/TableRenaming/tableConfiguration/optionsConfig.d.ts.map +1 -1
- package/package.json +9 -9
package/build/esm/index.js
CHANGED
@@ -33823,6 +33823,17 @@ var getConfig$2 = function getConfig(isoLanguageIds, t, viewOnly) {
|
|
33823
33823
|
placeHolderField: 'origOptionCommentText',
|
33824
33824
|
combinedField: 'optionCommentText'
|
33825
33825
|
}, ['origOptionCommentText', 'optionCommentText'], !viewOnly), {
|
33826
|
+
field: 'translatedSequenceNo',
|
33827
|
+
cellDataType: 'withPlaceholder',
|
33828
|
+
type: ['withPlaceholderNumber'],
|
33829
|
+
headerName: 'backoffice.idmEnricher.renaming.label.sequenceNo',
|
33830
|
+
customParams: {
|
33831
|
+
placeHolderField: 'origSequenceNo',
|
33832
|
+
combinedField: 'sequenceNo'
|
33833
|
+
},
|
33834
|
+
additionalFields: ['origSequenceNo', 'sequenceNo'],
|
33835
|
+
editable: !viewOnly
|
33836
|
+
}, {
|
33826
33837
|
field: 'featureNos',
|
33827
33838
|
headerName: 'backoffice.idmCatalogEditor.catalogoptions.label.featureIds',
|
33828
33839
|
cellDataType: 'lookup',
|
@@ -37493,6 +37504,16 @@ var useCatalogContext = function useCatalogContext() {
|
|
37493
37504
|
navigate(path + newCatalog._id + (modules.length ? '/' + modules.join('/') : '') + (searchParams ? '?' + searchParams.toString() : ''));
|
37494
37505
|
}
|
37495
37506
|
}, [root.contextStore, getContext().selectedCatalog._id, navigate, currentModules, searchParams, createDefaultSelectState]);
|
37507
|
+
var resetSeriesSelector = useCallback(function () {
|
37508
|
+
root.contextStore.updateContext('catalog', {
|
37509
|
+
seriesSelectorState: createDefaultSelectState('seriesSelectorState')
|
37510
|
+
});
|
37511
|
+
}, [root.contextStore, createDefaultSelectState]);
|
37512
|
+
var resetFeatureSelector = useCallback(function () {
|
37513
|
+
root.contextStore.updateContext('catalog', {
|
37514
|
+
featureSelectorState: createDefaultSelectState('featureSelectorState')
|
37515
|
+
});
|
37516
|
+
}, [root.contextStore, createDefaultSelectState]);
|
37496
37517
|
|
37497
37518
|
// Sync with URL parameters
|
37498
37519
|
useEffect(function () {
|
@@ -37508,7 +37529,9 @@ var useCatalogContext = function useCatalogContext() {
|
|
37508
37529
|
setSelectedSerie: setSelectedSerie,
|
37509
37530
|
setSelectedItem: setSelectedItem,
|
37510
37531
|
setSelectedFeature: setSelectedFeature,
|
37511
|
-
setSelectedCatalog: setSelectedCatalog
|
37532
|
+
setSelectedCatalog: setSelectedCatalog,
|
37533
|
+
resetSeriesSelector: resetSeriesSelector,
|
37534
|
+
resetFeatureSelector: resetFeatureSelector
|
37512
37535
|
});
|
37513
37536
|
};
|
37514
37537
|
|
@@ -38496,7 +38519,9 @@ function useModule (currentModules) {
|
|
38496
38519
|
selectedItem = _useCatalogContext.selectedItem,
|
38497
38520
|
selectedFeature = _useCatalogContext.selectedFeature,
|
38498
38521
|
setSelectedSerie = _useCatalogContext.setSelectedSerie,
|
38499
|
-
setSelectedItem = _useCatalogContext.setSelectedItem
|
38522
|
+
setSelectedItem = _useCatalogContext.setSelectedItem,
|
38523
|
+
resetSeriesSelector = _useCatalogContext.resetSeriesSelector,
|
38524
|
+
resetFeatureSelector = _useCatalogContext.resetFeatureSelector;
|
38500
38525
|
var menuItems = useMemo(function () {
|
38501
38526
|
return [{
|
38502
38527
|
key: 'series',
|
@@ -38634,7 +38659,9 @@ function useModule (currentModules) {
|
|
38634
38659
|
catalogId: catalogId,
|
38635
38660
|
selectedSerie: selectedSerie,
|
38636
38661
|
selectedItem: selectedItem,
|
38637
|
-
selectedFeature: selectedFeature
|
38662
|
+
selectedFeature: selectedFeature,
|
38663
|
+
resetSeriesSelector: resetSeriesSelector,
|
38664
|
+
resetFeatureSelector: resetFeatureSelector
|
38638
38665
|
};
|
38639
38666
|
}
|
38640
38667
|
|
@@ -39013,7 +39040,8 @@ var TableSeries = observer(function () {
|
|
39013
39040
|
setGlobalSelectedSerie = _useModule.setSelectedSerie,
|
39014
39041
|
catalogId = _useModule.catalogId,
|
39015
39042
|
organizationId = _useModule.organizationId,
|
39016
|
-
apiConfig = _useModule.apiConfig
|
39043
|
+
apiConfig = _useModule.apiConfig,
|
39044
|
+
resetSeriesSelector = _useModule.resetSeriesSelector;
|
39017
39045
|
var _React$useState = React.useState(),
|
39018
39046
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
39019
39047
|
selectedSerie = _React$useState2[0],
|
@@ -39025,8 +39053,7 @@ var TableSeries = observer(function () {
|
|
39025
39053
|
setSerie: setGlobalSelectedSerie
|
39026
39054
|
}),
|
39027
39055
|
addSecondaryTables = _useTools.addSecondaryTables,
|
39028
|
-
removeSecondaryTables = _useTools.removeSecondaryTables
|
39029
|
-
updateConfigurator = _useTools.updateConfigurator;
|
39056
|
+
removeSecondaryTables = _useTools.removeSecondaryTables;
|
39030
39057
|
useEffect(function () {
|
39031
39058
|
if (selectedSerie !== null && selectedSerie !== void 0 && selectedSerie._id) {
|
39032
39059
|
addSecondaryTables({
|
@@ -39043,6 +39070,9 @@ var TableSeries = observer(function () {
|
|
39043
39070
|
} else {
|
39044
39071
|
removeSecondaryTables('items');
|
39045
39072
|
}
|
39073
|
+
return function () {
|
39074
|
+
removeSecondaryTables('items');
|
39075
|
+
};
|
39046
39076
|
}, [selectedSerie, t, organizationId, catalogId, apiConfig]);
|
39047
39077
|
var applicationData = useMemo(function () {
|
39048
39078
|
return {
|
@@ -39053,16 +39083,33 @@ var TableSeries = observer(function () {
|
|
39053
39083
|
var hooks = useMemo(function () {
|
39054
39084
|
return {
|
39055
39085
|
onCellSelectionChanged: function onCellSelectionChanged(event) {
|
39056
|
-
if (event.
|
39057
|
-
var _event$
|
39058
|
-
|
39059
|
-
|
39086
|
+
if (event.nodes.length == 1) {
|
39087
|
+
var _event$nodes$;
|
39088
|
+
var _selectedSerie = (_event$nodes$ = event.nodes[0]) === null || _event$nodes$ === void 0 ? void 0 : _event$nodes$.data;
|
39089
|
+
if (_selectedSerie !== null && _selectedSerie !== void 0 && _selectedSerie._id) {
|
39090
|
+
setGlobalSelectedSerie(_selectedSerie);
|
39091
|
+
setSelectedSerie(_selectedSerie);
|
39092
|
+
} else {
|
39093
|
+
setSelectedSerie(null);
|
39094
|
+
}
|
39060
39095
|
} else {
|
39061
39096
|
setSelectedSerie(null);
|
39062
39097
|
}
|
39098
|
+
},
|
39099
|
+
onDataUpdated: function onDataUpdated(event) {
|
39100
|
+
//if an entry was removed or added invalidated the selector state
|
39101
|
+
if (event.updates.length == 0 || event.updates.some(function (update) {
|
39102
|
+
var _update$oldData;
|
39103
|
+
return !((_update$oldData = update.oldData) !== null && _update$oldData !== void 0 && _update$oldData.serieNo);
|
39104
|
+
})) {
|
39105
|
+
resetSeriesSelector();
|
39106
|
+
}
|
39107
|
+
if (event.updates.length == 0) {
|
39108
|
+
setGlobalSelectedSerie(null);
|
39109
|
+
}
|
39063
39110
|
}
|
39064
39111
|
};
|
39065
|
-
}, [
|
39112
|
+
}, [setGlobalSelectedSerie, setSelectedSerie, resetSeriesSelector]);
|
39066
39113
|
var configuration = useMemo(function () {
|
39067
39114
|
var purchaseRetailId = [{
|
39068
39115
|
name: t('backoffice.idmCatalog.series.label.purchaseRetail.p0'),
|
@@ -39856,6 +39903,9 @@ var TableFeatureClasses = observer(function () {
|
|
39856
39903
|
} else {
|
39857
39904
|
removeSecondaryTables('features');
|
39858
39905
|
}
|
39906
|
+
return function () {
|
39907
|
+
removeSecondaryTables('features');
|
39908
|
+
};
|
39859
39909
|
}, [selectedFeatureClass, selectedCatalog === null || selectedCatalog === void 0 ? void 0 : selectedCatalog._id]);
|
39860
39910
|
var applicationData = useMemo(function () {
|
39861
39911
|
return {
|
@@ -40606,7 +40656,7 @@ function OptionCombinations(_ref) {
|
|
40606
40656
|
hide: true,
|
40607
40657
|
lockVisible: true,
|
40608
40658
|
suppressColumnsToolPanel: true,
|
40609
|
-
defaultValue:
|
40659
|
+
defaultValue: {}
|
40610
40660
|
}])
|
40611
40661
|
};
|
40612
40662
|
}, [apiInterface, decision, i18n.language, removeFeature, addFeature]);
|
@@ -41279,6 +41329,9 @@ var TablePartlists = observer(function () {
|
|
41279
41329
|
} else {
|
41280
41330
|
removeSecondaryTables('partlistpos');
|
41281
41331
|
}
|
41332
|
+
return function () {
|
41333
|
+
removeSecondaryTables('partlistpos');
|
41334
|
+
};
|
41282
41335
|
}, [selectedPartlist, organizationId, selectedCatalog]);
|
41283
41336
|
var applicationData = useMemo(function () {
|
41284
41337
|
return {
|
@@ -41832,6 +41885,9 @@ var TablePriceFeatureGroups = observer(function () {
|
|
41832
41885
|
} else {
|
41833
41886
|
removeSecondaryTables('priceFeatureGroupFinishes', 'priceFeatureGroupPercentageSurcharge');
|
41834
41887
|
}
|
41888
|
+
return function () {
|
41889
|
+
removeSecondaryTables('priceFeatureGroupFinishes', 'priceFeatureGroupPercentageSurcharge');
|
41890
|
+
};
|
41835
41891
|
}, [selectedPriceFeatureGroup, setNodeDataValue, isPercentage]);
|
41836
41892
|
var applicationData = useMemo(function () {
|
41837
41893
|
return {
|
@@ -42224,6 +42280,9 @@ var TableOptionGroups = observer(function () {
|
|
42224
42280
|
} else {
|
42225
42281
|
removeSecondaryTables('optionGroupOptions');
|
42226
42282
|
}
|
42283
|
+
return function () {
|
42284
|
+
removeSecondaryTables('optionGroupOptions');
|
42285
|
+
};
|
42227
42286
|
}, [selectedOptionGroup, t, organizationId, catalogId, apiConfig]);
|
42228
42287
|
var applicationData = useMemo(function () {
|
42229
42288
|
return {
|
@@ -42475,6 +42534,9 @@ function TableCollections () {
|
|
42475
42534
|
} else {
|
42476
42535
|
removeSecondaryTables('collectionMembers');
|
42477
42536
|
}
|
42537
|
+
return function () {
|
42538
|
+
removeSecondaryTables('collectionMembers');
|
42539
|
+
};
|
42478
42540
|
}, [selectedCollection]);
|
42479
42541
|
var applicationData = useMemo(function () {
|
42480
42542
|
return {
|
@@ -4,6 +4,8 @@ export declare const useCatalogContext: (currentModules?: string[]) => {
|
|
4
4
|
setSelectedItem: (item: any | undefined) => void;
|
5
5
|
setSelectedFeature: (feature: any | undefined) => void;
|
6
6
|
setSelectedCatalog: (catalog: any | string, modules?: string[], path?: string, reset?: boolean) => void;
|
7
|
+
resetSeriesSelector: () => void;
|
8
|
+
resetFeatureSelector: () => void;
|
7
9
|
catalogId: string;
|
8
10
|
selectedCatalog: any;
|
9
11
|
idmService: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"useCatalogContext.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/hooks/useCatalogContext.ts"],"names":[],"mappings":"AAGA,OAAO,EAAU,iBAAiB,EAAE,MAAM,sDAAsD,CAAC;AAiBjG,eAAO,MAAM,iBAAiB,oBAAoB,MAAM,EAAE;8BAqD9C,GAAG,GAAG,SAAS;4BAOhB,GAAG,GAAG,SAAS;kCAOZ,GAAG,GAAG,SAAS;kCAOf,GAAG,GAAG,MAAM,YAAW,MAAM,EAAE,SAAyB,MAAM,UAAiB,OAAO
|
1
|
+
{"version":3,"file":"useCatalogContext.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/hooks/useCatalogContext.ts"],"names":[],"mappings":"AAGA,OAAO,EAAU,iBAAiB,EAAE,MAAM,sDAAsD,CAAC;AAiBjG,eAAO,MAAM,iBAAiB,oBAAoB,MAAM,EAAE;8BAqD9C,GAAG,GAAG,SAAS;4BAOhB,GAAG,GAAG,SAAS;kCAOZ,GAAG,GAAG,SAAS;kCAOf,GAAG,GAAG,MAAM,YAAW,MAAM,EAAE,SAAyB,MAAM,UAAiB,OAAO;;;eAvFvF,MAAM;qBACA,GAAG;gBACR,MAAM;oBACF,MAAM;0BACA,iBAAiB;oBACvB,GAAG;yBACE,iBAAiB;mBACvB,GAAG;uBACC,iBAAiB;sBAClB,GAAG;0BACC,iBAAiB;CAoJxC,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"useModule.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/hooks/useModule.tsx"],"names":[],"mappings":"AAQA,MAAM,CAAC,OAAO,WAAW,cAAc,EAAE,MAAM,EAAE
|
1
|
+
{"version":3,"file":"useModule.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/hooks/useModule.tsx"],"names":[],"mappings":"AAQA,MAAM,CAAC,OAAO,WAAW,cAAc,EAAE,MAAM,EAAE;;;;;;;;;;;;EAoKhD"}
|
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;;CAmJ9B,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,KAA6B,MAAM,OAAO,CAAC;AAalD,eAAO,MAAM,iBAAiB;;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableOptionGroups/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAalD,eAAO,MAAM,iBAAiB;;CAqH5B,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;;CA6IzB,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;AAevE,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;AAevE,eAAO,MAAM,uBAAuB;;CAqNlC,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;;CA+NtB,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,gCAkMb"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"optionsConfig.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/ui/IDMEnricherEditor/modules/TableRenaming/tableConfiguration/optionsConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAEzE,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC,QAAA,MAAM,SAAS,mBAAoB,MAAM,EAAE,KAAK,SAAS,aAAa,OAAO,KAAG;IAAE,MAAM,EAAE,CAAC,UAAU,CAAC,GAAG,CAAC,GAAG,eAAe,CAAC,GAAG,CAAC,CAAC,EAAE,CAAA;
|
1
|
+
{"version":3,"file":"optionsConfig.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/ui/IDMEnricherEditor/modules/TableRenaming/tableConfiguration/optionsConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAEzE,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC,QAAA,MAAM,SAAS,mBAAoB,MAAM,EAAE,KAAK,SAAS,aAAa,OAAO,KAAG;IAAE,MAAM,EAAE,CAAC,UAAU,CAAC,GAAG,CAAC,GAAG,eAAe,CAAC,GAAG,CAAC,CAAC,EAAE,CAAA;CAqEnI,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@crystaldesign/diva-backoffice",
|
3
|
-
"version": "25.10.0-beta.
|
3
|
+
"version": "25.10.0-beta.26",
|
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.10.0-beta.
|
19
|
-
"@crystaldesign/content-item": "25.10.0-beta.
|
20
|
-
"@crystaldesign/diva-core": "25.10.0-beta.
|
21
|
-
"@crystaldesign/diva-utils": "25.10.0-beta.
|
22
|
-
"@crystaldesign/media-upload": "25.10.0-beta.
|
23
|
-
"@crystaldesign/rtf-editor": "25.10.0-beta.
|
24
|
-
"@crystaldesign/spreadsheet": "25.10.0-beta.
|
18
|
+
"@crystaldesign/content-box": "25.10.0-beta.26",
|
19
|
+
"@crystaldesign/content-item": "25.10.0-beta.26",
|
20
|
+
"@crystaldesign/diva-core": "25.10.0-beta.26",
|
21
|
+
"@crystaldesign/diva-utils": "25.10.0-beta.26",
|
22
|
+
"@crystaldesign/media-upload": "25.10.0-beta.26",
|
23
|
+
"@crystaldesign/rtf-editor": "25.10.0-beta.26",
|
24
|
+
"@crystaldesign/spreadsheet": "25.10.0-beta.26",
|
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": "9a6f4a1255806282586247ea03645f35df18f9d9"
|
55
55
|
}
|