@crystaldesign/diva-backoffice 25.1.0-beta.32 → 25.1.0-beta.33

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.
@@ -33567,6 +33567,16 @@ function useModule (currentModules) {
33567
33567
  to: 'catalogs/idmeditor/catalogs/' + catalogId + '/detailinfos' + (searchParams ? '?' + searchParams.toString() : ''),
33568
33568
  children: t('backoffice.menu.items.label.IDMCatalogEditorTableDetailInfos')
33569
33569
  })
33570
+ }, {
33571
+ key: 'partlists',
33572
+ style: {
33573
+ margin: 0
33574
+ },
33575
+ icon: /*#__PURE__*/jsx(ApartmentOutlined, {}),
33576
+ label: /*#__PURE__*/jsx(Link, {
33577
+ to: 'catalogs/idmeditor/catalogs/' + catalogId + '/partlists' + (searchParams ? '?' + searchParams.toString() : ''),
33578
+ children: t('backoffice.menu.items.label.IDMCatalogEditorTablePartlists')
33579
+ })
33570
33580
  }];
33571
33581
  }, [catalogId]);
33572
33582
  if (!catalogId) throw new Error('catalogId is required');
@@ -34683,7 +34693,6 @@ function TableOptions () {
34683
34693
  }
34684
34694
 
34685
34695
  function TableFeatureClasses () {
34686
- var _root$contentStore$bo, _root$contentStore$ri;
34687
34696
  var _useTranslation = useTranslation(),
34688
34697
  t = _useTranslation.t;
34689
34698
  var root = useStore();
@@ -34829,10 +34838,7 @@ function TableFeatureClasses () {
34829
34838
  }, {
34830
34839
  field: 'featureRefs'
34831
34840
  }]
34832
- },
34833
- refSecondaryGrids: [(_root$contentStore$bo = root.contentStore.bottomToolBar.toolbarElement) !== null && _root$contentStore$bo !== void 0 ? _root$contentStore$bo : undefined, (_root$contentStore$ri = root.contentStore.rightToolBar.toolbarElement) !== null && _root$contentStore$ri !== void 0 ? _root$contentStore$ri : undefined].filter(function (element) {
34834
- return element !== undefined;
34835
- })
34841
+ }
34836
34842
  })]
34837
34843
  });
34838
34844
  }
@@ -35203,6 +35209,10 @@ function OptionCombinations(_ref8) {
35203
35209
  customParams: {
35204
35210
  expandedEditor: OptionCombinationsExpandedEditor
35205
35211
  }
35212
+ }] : decision.decisionType == 3 ? [{
35213
+ headerName: 'backoffice.idmCatalog.optionCombinations.label.actions',
35214
+ field: 'actions',
35215
+ cellDataType: 'text'
35206
35216
  }] : []), [{
35207
35217
  headerName: 'backoffice.idmCatalog.general.label.lastUpdatedDate',
35208
35218
  field: 'lastUpdatedDate',
@@ -35754,6 +35764,333 @@ function TableDetailInfos () {
35754
35764
  });
35755
35765
  }
35756
35766
 
35767
+ function PartlistPos(_ref) {
35768
+ var organizationId = _ref.organizationId,
35769
+ catalogId = _ref.catalogId,
35770
+ partlistId = _ref.partlistId,
35771
+ apiConfig = _ref.apiConfig,
35772
+ hooks = _ref.hooks;
35773
+ var _useTranslation = useTranslation(),
35774
+ t = _useTranslation.t;
35775
+ var visibility = [{
35776
+ name: t('backoffice.idmCatalog.partlistpos.label.visiblityDic.v0'),
35777
+ value: 0
35778
+ }, {
35779
+ name: t('backoffice.idmCatalog.partlistpos.label.visiblityDic.v1'),
35780
+ value: 1
35781
+ }];
35782
+ var applicationData = useMemo(function () {
35783
+ return {
35784
+ catalogId: catalogId,
35785
+ organizationId: organizationId,
35786
+ partlistId: partlistId
35787
+ };
35788
+ }, [catalogId, partlistId, organizationId]);
35789
+ var apiInterface = {
35790
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${partlistId}/partlistpos',
35791
+ create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${partlistId}/partlistpos',
35792
+ restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${partlistId}/partlistpos',
35793
+ "delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${partlistId}/partlistpos/${_id}',
35794
+ update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${partlistId}/partlistpos/${_id}'
35795
+ };
35796
+ return /*#__PURE__*/jsx(Spreadsheet, {
35797
+ gridId: 'crud-grid_partlistpos',
35798
+ applicationData: applicationData,
35799
+ hooks: hooks,
35800
+ configuration: {
35801
+ type: 'dotnetSSM',
35802
+ apiInterface: apiInterface,
35803
+ dateFormat: 'LL',
35804
+ colDef: [{
35805
+ field: 'sequenceNo',
35806
+ headerName: 'backoffice.idmCatalog.partlistpos.label.sequenceNo',
35807
+ required: true,
35808
+ cellDataType: 'number'
35809
+ }, {
35810
+ field: 'itemRefSerieNo',
35811
+ headerName: 'backoffice.idmCatalog.partlistpos.label.itemRefSerieNo',
35812
+ cellDataType: 'lookup',
35813
+ editable: true,
35814
+ customParams: {
35815
+ filterCellType: 'number',
35816
+ nameField: 'itemRefSerieNoDisplayText',
35817
+ displayLabelTemplate: '${name} (${value})',
35818
+ apiInterface: {
35819
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series'
35820
+ },
35821
+ lookupValue: 'seriesName',
35822
+ lookupKey: 'serieNo',
35823
+ lookupKeyFilterType: {
35824
+ type: 'equals',
35825
+ filterType: 'number'
35826
+ },
35827
+ additionalMappings: [{
35828
+ lookupField: '_id',
35829
+ targetField: 'itemRefSerieId'
35830
+ }],
35831
+ multiple: false,
35832
+ translated: true
35833
+ },
35834
+ additionalFields: ['itemRefSerieNoDisplayText', 'itemRefSerieId'],
35835
+ isDictionary: true
35836
+ }, {
35837
+ field: 'itemRefTypeNo',
35838
+ headerName: 'backoffice.idmCatalog.partlistpos.label.itemRefTypeNo',
35839
+ cellDataType: 'lookup',
35840
+ customParams: {
35841
+ nameField: 'itemRefTypeNoDisplayText',
35842
+ displayLabelTemplate: '${name} (${value})',
35843
+ apiInterface: {
35844
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/series/${itemRefSerieId}/items'
35845
+ },
35846
+ lookupValue: 'shortText',
35847
+ lookupKey: 'typeNo',
35848
+ multiple: false,
35849
+ translated: true
35850
+ },
35851
+ additionalFields: ['itemRefTypeNoDisplayText'],
35852
+ isDictionary: true,
35853
+ editable: function editable(_ref2) {
35854
+ var data = _ref2.data;
35855
+ return !!data.itemRefSerieNo;
35856
+ }
35857
+ }, {
35858
+ field: 'decisions',
35859
+ headerName: 'backoffice.idmCatalog.partlistpos.label.decisions',
35860
+ cellDataType: 'lookup',
35861
+ editable: true,
35862
+ customParams: {
35863
+ filterCellType: 'number',
35864
+ nameField: 'decisionRefsDisplayTexts',
35865
+ displayLabelTemplate: '${name} (${value})',
35866
+ apiInterface: {
35867
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions'
35868
+ },
35869
+ lookupValue: 'decisionText',
35870
+ lookupKey: 'decisionNo',
35871
+ lookupKeyFilterType: {
35872
+ type: 'equals',
35873
+ filterType: 'number'
35874
+ },
35875
+ multiple: true,
35876
+ translated: true
35877
+ },
35878
+ additionalFields: ['decisionRefsDisplayTexts'],
35879
+ isDictionary: true
35880
+ }, {
35881
+ field: 'decisionPosCount',
35882
+ headerName: 'backoffice.idmCatalog.partlistpos.label.decisionPosCount',
35883
+ cellDataType: 'lookup',
35884
+ editable: true,
35885
+ customParams: {
35886
+ filterCellType: 'number',
35887
+ nameField: 'decisionPosCountDisplayText',
35888
+ displayLabelTemplate: '${name} (${value})',
35889
+ apiInterface: {
35890
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/decisions'
35891
+ },
35892
+ lookupValue: 'decisionText',
35893
+ lookupKey: 'decisionNo',
35894
+ lookupKeyFilterType: {
35895
+ type: 'equals',
35896
+ filterType: 'number'
35897
+ },
35898
+ multiple: false,
35899
+ translated: true
35900
+ },
35901
+ additionalFields: ['decisionPosCountDisplayText'],
35902
+ isDictionary: true
35903
+ }, {
35904
+ headerName: 'backoffice.idmCatalog.partlistpos.label.posCountValue',
35905
+ field: 'posCountValue',
35906
+ cellDataType: 'number',
35907
+ defaultValue: 1,
35908
+ editable: true,
35909
+ required: true
35910
+ }, {
35911
+ headerName: 'backoffice.idmCatalog.partlistpos.label.posInvisibility',
35912
+ field: 'posInvisibility',
35913
+ defaultValue: 0,
35914
+ editable: true,
35915
+ cellDataType: 'enum',
35916
+ customParams: {
35917
+ enumData: visibility,
35918
+ displayLabelTemplate: '${name} (${value})'
35919
+ }
35920
+ }, {
35921
+ headerName: 'backoffice.idmCatalog.general.label.lastUpdatedDate',
35922
+ field: 'lastUpdatedDate',
35923
+ cellDataType: 'dateString',
35924
+ editable: false
35925
+ }, {
35926
+ headerName: 'backoffice.idmCatalog.general.label.createdDate',
35927
+ field: 'createdDate',
35928
+ cellDataType: 'dateString',
35929
+ editable: false
35930
+ }, {
35931
+ headerName: 'backoffice.idmCatalog.general.label.createdByDisplayText',
35932
+ field: 'createdByDisplayText',
35933
+ editable: false
35934
+ }, {
35935
+ headerName: 'backoffice.idmCatalog.general.label.lastUpdatedByDisplayText',
35936
+ field: 'lastUpdatedByDisplayText',
35937
+ editable: false
35938
+ }, {
35939
+ headerName: 'backoffice.idmCatalog.general.label._id',
35940
+ field: '_id',
35941
+ editable: false
35942
+ }, {
35943
+ field: 'organizationId',
35944
+ editable: false,
35945
+ hide: true,
35946
+ lockVisible: true,
35947
+ suppressColumnsToolPanel: true,
35948
+ defaultValue: '${organizationId}'
35949
+ }, {
35950
+ field: 'catalogId',
35951
+ editable: false,
35952
+ hide: true,
35953
+ lockVisible: true,
35954
+ suppressColumnsToolPanel: true,
35955
+ defaultValue: '${catalogId}'
35956
+ }]
35957
+ }
35958
+ });
35959
+ }
35960
+
35961
+ function TablePartlists () {
35962
+ var _useTranslation = useTranslation(),
35963
+ t = _useTranslation.t;
35964
+ var root = useStore();
35965
+ var _useModule = useModule(['partlists']),
35966
+ catalogId = _useModule.catalogId,
35967
+ organizationId = _useModule.organizationId,
35968
+ updateNavigation = _useModule.updateNavigation,
35969
+ apiConfig = _useModule.apiConfig;
35970
+ var _React$useState = React.useState(),
35971
+ _React$useState2 = _slicedToArray(_React$useState, 2),
35972
+ selectedPartlist = _React$useState2[0],
35973
+ setSelectedPartlist = _React$useState2[1];
35974
+ useEffect(function () {
35975
+ if (selectedPartlist !== null && selectedPartlist !== void 0 && selectedPartlist._id) {
35976
+ root.contentStore.bottomToolBar.tools = [{
35977
+ id: 'partlistpos',
35978
+ name: t('backoffice.menu.items.label.IDMCatalogEditorTablePartlistpos'),
35979
+ element: /*#__PURE__*/jsx(PartlistPos, {
35980
+ organizationId: organizationId,
35981
+ catalogId: catalogId,
35982
+ apiConfig: apiConfig,
35983
+ partlistId: selectedPartlist._id
35984
+ }),
35985
+ startWidth: 300,
35986
+ defaultPinned: false,
35987
+ defaultOpen: false
35988
+ }];
35989
+ } else {
35990
+ root.contentStore.bottomToolBar.tools = [];
35991
+ }
35992
+ }, [selectedPartlist]);
35993
+ useEffect(function () {
35994
+ //remove partilstpos table, when partlists are unmounted
35995
+ return function () {
35996
+ root.contentStore.bottomToolBar.tools = [];
35997
+ };
35998
+ }, []);
35999
+ var applicationData = useMemo(function () {
36000
+ return {
36001
+ catalogId: catalogId,
36002
+ organizationId: organizationId
36003
+ };
36004
+ }, [catalogId]);
36005
+ return /*#__PURE__*/jsxs(Fragment, {
36006
+ children: [/*#__PURE__*/jsx(Descriptions$1, {
36007
+ title: /*#__PURE__*/jsxs("div", {
36008
+ children: [t('backoffice.menu.items.label.IDMCatalogEditorTablePartlists'), /*#__PURE__*/jsx(Space$1, {
36009
+ style: {
36010
+ "float": 'right'
36011
+ },
36012
+ children: /*#__PURE__*/jsx(CatalogSelector, {
36013
+ selectedCatalog: catalogId,
36014
+ setSelectedCatalog: function setSelectedCatalog(id) {
36015
+ return updateNavigation(id);
36016
+ },
36017
+ idmService: apiConfig.idmService,
36018
+ organizationId: organizationId
36019
+ })
36020
+ })]
36021
+ })
36022
+ }), /*#__PURE__*/jsx(Spreadsheet, {
36023
+ gridId: 'crud-grid_partlists',
36024
+ applicationData: applicationData,
36025
+ hooks: {
36026
+ onCellSelectionChanged: function onCellSelectionChanged(event) {
36027
+ if (event.selection.length == 1) {
36028
+ setSelectedPartlist(event.selection[0].node.data);
36029
+ } else {
36030
+ setSelectedPartlist(null);
36031
+ }
36032
+ }
36033
+ },
36034
+ configuration: {
36035
+ type: 'dotnetSSM',
36036
+ apiInterface: {
36037
+ read: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists',
36038
+ create: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists',
36039
+ restore: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${_id}',
36040
+ "delete": apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${_id}',
36041
+ update: apiConfig.idmService + '/v3.0/catalogs/${catalogId}/partlists/${_id}'
36042
+ },
36043
+ dateFormat: 'LL',
36044
+ colDef: [{
36045
+ field: 'partlistKey',
36046
+ headerName: 'backoffice.idmCatalog.partlist.label.partlistKey',
36047
+ required: true
36048
+ }, {
36049
+ field: 'comment',
36050
+ headerName: 'backoffice.idmCatalog.partlist.label.comment',
36051
+ required: true
36052
+ }, {
36053
+ headerName: 'backoffice.idmCatalog.general.label.lastUpdatedDate',
36054
+ field: 'lastUpdatedDate',
36055
+ cellDataType: 'dateString',
36056
+ editable: false
36057
+ }, {
36058
+ headerName: 'backoffice.idmCatalog.general.label.createdDate',
36059
+ field: 'createdDate',
36060
+ cellDataType: 'dateString',
36061
+ editable: false
36062
+ }, {
36063
+ headerName: 'backoffice.idmCatalog.general.label.createdByDisplayText',
36064
+ field: 'createdByDisplayText',
36065
+ editable: false
36066
+ }, {
36067
+ headerName: 'backoffice.idmCatalog.general.label.lastUpdatedByDisplayText',
36068
+ field: 'lastUpdatedByDisplayText',
36069
+ editable: false
36070
+ }, {
36071
+ headerName: 'backoffice.idmCatalog.general.label._id',
36072
+ field: '_id',
36073
+ editable: false
36074
+ }, {
36075
+ field: 'organizationId',
36076
+ editable: false,
36077
+ hide: true,
36078
+ lockVisible: true,
36079
+ suppressColumnsToolPanel: true,
36080
+ defaultValue: '${organizationId}'
36081
+ }, {
36082
+ field: 'catalogId',
36083
+ editable: false,
36084
+ hide: true,
36085
+ lockVisible: true,
36086
+ suppressColumnsToolPanel: true,
36087
+ defaultValue: '${catalogId}'
36088
+ }]
36089
+ }
36090
+ })]
36091
+ });
36092
+ }
36093
+
35757
36094
  function IDMCatalogEditor (_ref) {
35758
36095
  _objectDestructuringEmpty(_ref);
35759
36096
  return /*#__PURE__*/jsx("div", {
@@ -35789,6 +36126,9 @@ function Content$1() {
35789
36126
  }), /*#__PURE__*/jsx(Route, {
35790
36127
  path: ":catalogId/decisions",
35791
36128
  element: /*#__PURE__*/jsx(TableDecisions, {})
36129
+ }), /*#__PURE__*/jsx(Route, {
36130
+ path: ":catalogId/partlists",
36131
+ element: /*#__PURE__*/jsx(TablePartlists, {})
35792
36132
  }), /*#__PURE__*/jsx(Route, {
35793
36133
  path: ":catalogId/detailinfos",
35794
36134
  element: /*#__PURE__*/jsx(TableDetailInfos, {})
@@ -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;AAgOrE,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,qBA0JA"}
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;AAgOrE,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,qBAkKA"}
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import { ApiConfig } from '@crystaldesign/diva-core';
3
+ import { DivaSpreadsheetHooks } from '@crystaldesign/spreadsheet';
4
+ export default function PartlistPos({ organizationId, catalogId, partlistId, apiConfig, hooks, }: {
5
+ organizationId: string;
6
+ catalogId: string;
7
+ partlistId?: string;
8
+ apiConfig: ApiConfig;
9
+ hooks?: DivaSpreadsheetHooks<any>;
10
+ }): React.JSX.Element;
11
+ //# sourceMappingURL=PartlistPos.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PartlistPos.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/IDMCatalogEditor/Tables/PartlistPos.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAkB,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAElE,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAClC,cAAc,EACd,SAAS,EACT,UAAU,EACV,SAAS,EACT,KAAK,GACN,EAAE;IACD,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,SAAS,CAAC;IACrB,KAAK,CAAC,EAAE,oBAAoB,CAAC,GAAG,CAAC,CAAC;CACnC,qBA8LA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMCatalogEditor/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,6BAA6B,EAAE,MAAM,SAAS,CAAC;AASxD,UAAU,KAAK;IACb,aAAa,EAAE,6BAA6B,CAAC;IAC7C,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,EAAE,KAAK,qBAMjC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMCatalogEditor/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAUxD,UAAU,KAAK;IACb,aAAa,EAAE,6BAA6B,CAAC;IAC7C,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,CAAC,OAAO,WAAW,EAAE,EAAE,KAAK,qBAMjC"}
@@ -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;AAUlD,MAAM,CAAC,OAAO,gCAsKb"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/ui/IDMCatalogEditor/modules/TableFeatureClasses/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAUlD,MAAM,CAAC,OAAO,gCAkKb"}
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export default function (): React.JSX.Element;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +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;AAUlD,MAAM,CAAC,OAAO,gCA0Ib"}
@@ -1 +1 @@
1
- {"version":3,"file":"useModule.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMCatalogEditor/useModule.tsx"],"names":[],"mappings":"AAUA,MAAM,CAAC,OAAO,WAAW,cAAc,EAAE,MAAM,EAAE;uCAqF5B,MAAM,YAAW,MAAM,EAAE;;;;EAmC7C"}
1
+ {"version":3,"file":"useModule.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMCatalogEditor/useModule.tsx"],"names":[],"mappings":"AAUA,MAAM,CAAC,OAAO,WAAW,cAAc,EAAE,MAAM,EAAE;uCA+F5B,MAAM,YAAW,MAAM,EAAE;;;;EAmC7C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-backoffice",
3
- "version": "25.1.0-beta.32",
3
+ "version": "25.1.0-beta.33",
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.1.0-beta.32",
19
- "@crystaldesign/content-item": "25.1.0-beta.32",
20
- "@crystaldesign/diva-core": "25.1.0-beta.32",
21
- "@crystaldesign/diva-utils": "25.1.0-beta.32",
22
- "@crystaldesign/media-upload": "25.1.0-beta.32",
23
- "@crystaldesign/rtf-editor": "25.1.0-beta.32",
24
- "@crystaldesign/spreadsheet": "25.1.0-beta.32",
18
+ "@crystaldesign/content-box": "25.1.0-beta.33",
19
+ "@crystaldesign/content-item": "25.1.0-beta.33",
20
+ "@crystaldesign/diva-core": "25.1.0-beta.33",
21
+ "@crystaldesign/diva-utils": "25.1.0-beta.33",
22
+ "@crystaldesign/media-upload": "25.1.0-beta.33",
23
+ "@crystaldesign/rtf-editor": "25.1.0-beta.33",
24
+ "@crystaldesign/spreadsheet": "25.1.0-beta.33",
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": "d89c58078785a62b9bfbb6a023fdbe7bed931593"
54
+ "gitHead": "a1955f9b8104a0c5bb6266270bef8abeb10b2c17"
55
55
  }