@crystaldesign/diva-backoffice 25.7.0-beta.29 → 25.7.0-beta.30

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.
@@ -13498,14 +13498,23 @@ function getIcon(icon) {
13498
13498
  }
13499
13499
 
13500
13500
  var DEFAULT_WIDTH = 500;
13501
+
13502
+ /**
13503
+ * Store for managing the toolbar state and tools in the application.
13504
+ * Handles tool selection, visibility, loading states, and toolbar dimensions.
13505
+ */
13501
13506
  var ToolBarStore = /*#__PURE__*/function () {
13507
+ /**
13508
+ * Creates a new ToolBarStore instance.
13509
+ * @param defaultLanguage - The default language to use for tools
13510
+ */
13502
13511
  function ToolBarStore(defaultLanguage) {
13503
13512
  _classCallCheck(this, ToolBarStore);
13504
13513
  this.defaultLanguage = defaultLanguage;
13505
13514
  _defineProperty(this, "_tools", []);
13506
13515
  _defineProperty(this, "_hidden", true);
13507
13516
  _defineProperty(this, "_pinned", false);
13508
- _defineProperty(this, "_openedToolId", void 0);
13517
+ _defineProperty(this, "_selectedToolId", void 0);
13509
13518
  _defineProperty(this, "_loadingTools", new Map());
13510
13519
  _defineProperty(this, "_currentLanguage", void 0);
13511
13520
  _defineProperty(this, "_width", 0);
@@ -13515,6 +13524,10 @@ var ToolBarStore = /*#__PURE__*/function () {
13515
13524
  _toolbarElement: observable.ref
13516
13525
  });
13517
13526
  }
13527
+
13528
+ /**
13529
+ * The list of available tools in the toolbar
13530
+ */
13518
13531
  return _createClass(ToolBarStore, [{
13519
13532
  key: "tools",
13520
13533
  get: function get() {
@@ -13524,6 +13537,13 @@ var ToolBarStore = /*#__PURE__*/function () {
13524
13537
  this._tools = tools;
13525
13538
  this.updateToolState();
13526
13539
  }
13540
+
13541
+ /**
13542
+ * Adds or updates tools in the toolbar.
13543
+ *
13544
+ * If a tool with the same id already exists, it will be updated.
13545
+ * @param {...Tool} tools - Variable number of Tool objects to add
13546
+ */
13527
13547
  }, {
13528
13548
  key: "addTools",
13529
13549
  value: function addTools() {
@@ -13543,6 +13563,11 @@ var ToolBarStore = /*#__PURE__*/function () {
13543
13563
  });
13544
13564
  this.updateToolState();
13545
13565
  }
13566
+
13567
+ /**
13568
+ * Removes tools from the toolbar by their IDs.
13569
+ * @param {...string} toolIds - Variable number of tool IDs to remove
13570
+ */
13546
13571
  }, {
13547
13572
  key: "removeTools",
13548
13573
  value: function removeTools() {
@@ -13554,6 +13579,11 @@ var ToolBarStore = /*#__PURE__*/function () {
13554
13579
  });
13555
13580
  this.updateToolState();
13556
13581
  }
13582
+
13583
+ /**
13584
+ * Updates the internal tool state based on available tools.
13585
+ * Sets default values for selected tool, pinned state, visibility and width.
13586
+ */
13557
13587
  }, {
13558
13588
  key: "updateToolState",
13559
13589
  value: function updateToolState() {
@@ -13566,17 +13596,23 @@ var ToolBarStore = /*#__PURE__*/function () {
13566
13596
  _this$_tools$4;
13567
13597
  if (this._tools.length === 0) return;
13568
13598
  var newToolState = this._tools.find(function (t) {
13569
- return t.id === _this2._openedToolId;
13599
+ return t.id === _this2._selectedToolId;
13570
13600
  });
13571
13601
  if (newToolState || this._tools.length === 0) {
13572
13602
  //if current tool is in the new list or the list is empty, don't change the current state
13573
13603
  return;
13574
13604
  }
13575
- this._openedToolId = (_this$_tools$ = this._tools[0]) === null || _this$_tools$ === void 0 ? void 0 : _this$_tools$.id;
13605
+ this._selectedToolId = (_this$_tools$ = this._tools[0]) === null || _this$_tools$ === void 0 ? void 0 : _this$_tools$.id;
13576
13606
  this._pinned = (_this$_tools$0$defaul = (_this$_tools$2 = this._tools[0]) === null || _this$_tools$2 === void 0 ? void 0 : _this$_tools$2.defaultPinned) !== null && _this$_tools$0$defaul !== void 0 ? _this$_tools$0$defaul : this._pinned;
13577
13607
  this._hidden = ((_this$_tools$3 = this._tools[0]) === null || _this$_tools$3 === void 0 ? void 0 : _this$_tools$3.defaultOpen) !== undefined ? !this._tools[0].defaultOpen : this._hidden;
13578
13608
  this._width = (_this$_tools$0$startW = (_this$_tools$4 = this._tools[0]) === null || _this$_tools$4 === void 0 ? void 0 : _this$_tools$4.startWidth) !== null && _this$_tools$0$startW !== void 0 ? _this$_tools$0$startW : this._width;
13579
13609
  }
13610
+
13611
+ /**
13612
+ * Controls the visibility state of the toolbar
13613
+ *
13614
+ * If toolbar becomes visible and no width is set, sets also default width.
13615
+ */
13580
13616
  }, {
13581
13617
  key: "hidden",
13582
13618
  get: function get() {
@@ -13589,6 +13625,10 @@ var ToolBarStore = /*#__PURE__*/function () {
13589
13625
  this._width = (_this$currentOpenTool = (_this$currentOpenTool2 = this.currentOpenTool) === null || _this$currentOpenTool2 === void 0 ? void 0 : _this$currentOpenTool2.startWidth) !== null && _this$currentOpenTool !== void 0 ? _this$currentOpenTool : DEFAULT_WIDTH;
13590
13626
  }
13591
13627
  }
13628
+
13629
+ /**
13630
+ * Controls whether the toolbar is pinned in place
13631
+ */
13592
13632
  }, {
13593
13633
  key: "pinned",
13594
13634
  get: function get() {
@@ -13597,6 +13637,10 @@ var ToolBarStore = /*#__PURE__*/function () {
13597
13637
  set: function set(pinned) {
13598
13638
  this._pinned = pinned;
13599
13639
  }
13640
+
13641
+ /**
13642
+ * The current language setting for tools
13643
+ */
13600
13644
  }, {
13601
13645
  key: "currentLanguage",
13602
13646
  get: function get() {
@@ -13605,14 +13649,24 @@ var ToolBarStore = /*#__PURE__*/function () {
13605
13649
  set: function set(language) {
13606
13650
  this._currentLanguage = language;
13607
13651
  }
13652
+
13653
+ /**
13654
+ * The currently selected and open tool
13655
+ */
13608
13656
  }, {
13609
13657
  key: "currentOpenTool",
13610
13658
  get: function get() {
13611
13659
  var _this3 = this;
13612
13660
  return this._tools.find(function (t) {
13613
- return t.id === _this3._openedToolId;
13661
+ return t.id === _this3._selectedToolId;
13614
13662
  });
13615
13663
  }
13664
+
13665
+ /**
13666
+ * Controls the current width of the toolbar in pixels
13667
+ *
13668
+ * If toolbar is hidden, it is always 0.
13669
+ */
13616
13670
  }, {
13617
13671
  key: "width",
13618
13672
  get: function get() {
@@ -13628,6 +13682,10 @@ var ToolBarStore = /*#__PURE__*/function () {
13628
13682
  this._hidden = true;
13629
13683
  }
13630
13684
  }
13685
+
13686
+ /**
13687
+ * Controls the DOM element representing the toolbar
13688
+ */
13631
13689
  }, {
13632
13690
  key: "toolbarElement",
13633
13691
  get: function get() {
@@ -13636,11 +13694,17 @@ var ToolBarStore = /*#__PURE__*/function () {
13636
13694
  set: function set(element) {
13637
13695
  this._toolbarElement = element;
13638
13696
  }
13697
+
13698
+ /**
13699
+ * Selects a tool by its ID.
13700
+ * Updates toolbar state based on tool's default settings.
13701
+ * @param {string|undefined} toolId - ID of the tool to select, or undefined to deselect
13702
+ */
13639
13703
  }, {
13640
- key: "openTool",
13641
- value: function openTool(toolId) {
13704
+ key: "selectTool",
13705
+ value: function selectTool(toolId) {
13642
13706
  // If the tool is already open, do nothing
13643
- if (toolId === this._openedToolId) {
13707
+ if (toolId === this._selectedToolId) {
13644
13708
  return;
13645
13709
  }
13646
13710
  // Only allow opening enabled tools
@@ -13650,7 +13714,7 @@ var ToolBarStore = /*#__PURE__*/function () {
13650
13714
  if (tool !== null && tool !== void 0 && tool.disabled) {
13651
13715
  return;
13652
13716
  }
13653
- this._openedToolId = toolId;
13717
+ this._selectedToolId = toolId;
13654
13718
  this._currentLanguage = this.defaultLanguage;
13655
13719
  if (tool) {
13656
13720
  var _tool$startWidth, _tool$defaultPinned;
@@ -13659,12 +13723,25 @@ var ToolBarStore = /*#__PURE__*/function () {
13659
13723
  this._pinned = (_tool$defaultPinned = tool.defaultPinned) !== null && _tool$defaultPinned !== void 0 ? _tool$defaultPinned : this._pinned;
13660
13724
  }
13661
13725
  }
13726
+
13727
+ /**
13728
+ * Checks if a tool is currently in a loading state.
13729
+ * @param {string} toolId - ID of the tool to check
13730
+ * @returns {boolean} True if tool is loading, false otherwise
13731
+ */
13662
13732
  }, {
13663
13733
  key: "isLoading",
13664
13734
  value: function isLoading(toolId) {
13665
13735
  var loading = this._loadingTools.get(toolId);
13666
13736
  return loading !== undefined && loading.length > 0;
13667
13737
  }
13738
+
13739
+ /**
13740
+ * Toggles or sets the loading state for a tool or its sub-components.
13741
+ * @param {string} toolId - ID of the tool to update
13742
+ * @param {string} [subId] - Optional ID of sub-component to update
13743
+ * @param {boolean} [toggle] - Optional boolean to explicitly set loading state
13744
+ */
13668
13745
  }, {
13669
13746
  key: "toggleLoading",
13670
13747
  value: function toggleLoading(toolId, subId, toggle) {
@@ -31395,7 +31472,8 @@ var useTools = function useTools(_ref) {
31395
31472
  defaultOpen: open
31396
31473
  });
31397
31474
  if (open) {
31398
- root.contentStore.rightToolBar.openTool('info');
31475
+ root.contentStore.rightToolBar.selectTool('info');
31476
+ root.contentStore.rightToolBar.hidden = false;
31399
31477
  }
31400
31478
  }, [root.contentStore.rightToolBar]);
31401
31479
  var addSecondaryTables = useCallback(function () {
@@ -39622,7 +39700,7 @@ var TablePriceFeatureGroups = observer(function () {
39622
39700
  disabled: isPercentage === false
39623
39701
  });
39624
39702
  var openTool = (_root$contentStore$bo = root.contentStore.bottomToolBar.currentOpenTool) === null || _root$contentStore$bo === void 0 ? void 0 : _root$contentStore$bo.id;
39625
- root.contentStore.bottomToolBar.openTool(isPercentage === true ? 'priceFeatureGroupPercentageSurcharge' : isPercentage === false ? 'priceFeatureGroupFinishes' : openTool !== null && openTool !== void 0 ? openTool : 'priceFeatureGroupFinishes');
39703
+ root.contentStore.bottomToolBar.selectTool(isPercentage === true ? 'priceFeatureGroupPercentageSurcharge' : isPercentage === false ? 'priceFeatureGroupFinishes' : openTool !== null && openTool !== void 0 ? openTool : 'priceFeatureGroupFinishes');
39626
39704
  } else {
39627
39705
  removeSecondaryTables('priceFeatureGroupFinishes', 'priceFeatureGroupPercentageSurcharge');
39628
39706
  }
@@ -42003,7 +42081,7 @@ var Toolbar = function Toolbar(_ref) {
42003
42081
  var _toolBar$currentOpenT2;
42004
42082
  if (t.disabled) return;
42005
42083
  if (((_toolBar$currentOpenT2 = toolBar.currentOpenTool) === null || _toolBar$currentOpenT2 === void 0 ? void 0 : _toolBar$currentOpenT2.id) != t.id) {
42006
- toolBar.openTool(t.id);
42084
+ toolBar.selectTool(t.id);
42007
42085
  toolBar.hidden = false;
42008
42086
  } else {
42009
42087
  toolBar.hidden = !toolBar.hidden;
@@ -1,33 +1,96 @@
1
1
  import { Tool } from '../layout/Navigation/types';
2
+ /**
3
+ * Store for managing the toolbar state and tools in the application.
4
+ * Handles tool selection, visibility, loading states, and toolbar dimensions.
5
+ */
2
6
  export default class ToolBarStore {
3
7
  private defaultLanguage;
4
8
  private _tools;
5
9
  private _hidden;
6
10
  private _pinned;
7
- private _openedToolId;
11
+ private _selectedToolId;
8
12
  private _loadingTools;
9
13
  private _currentLanguage;
10
14
  private _width;
11
15
  private _toolbarElement;
16
+ /**
17
+ * Creates a new ToolBarStore instance.
18
+ * @param defaultLanguage - The default language to use for tools
19
+ */
12
20
  constructor(defaultLanguage: string);
21
+ /**
22
+ * The list of available tools in the toolbar
23
+ */
13
24
  get tools(): Tool[];
14
25
  set tools(tools: Tool[]);
26
+ /**
27
+ * Adds or updates tools in the toolbar.
28
+ *
29
+ * If a tool with the same id already exists, it will be updated.
30
+ * @param {...Tool} tools - Variable number of Tool objects to add
31
+ */
15
32
  addTools(...tools: Tool[]): void;
33
+ /**
34
+ * Removes tools from the toolbar by their IDs.
35
+ * @param {...string} toolIds - Variable number of tool IDs to remove
36
+ */
16
37
  removeTools(...toolIds: string[]): void;
38
+ /**
39
+ * Updates the internal tool state based on available tools.
40
+ * Sets default values for selected tool, pinned state, visibility and width.
41
+ */
17
42
  private updateToolState;
43
+ /**
44
+ * Controls the visibility state of the toolbar
45
+ *
46
+ * If toolbar becomes visible and no width is set, sets also default width.
47
+ */
18
48
  get hidden(): boolean;
19
49
  set hidden(hidden: boolean);
50
+ /**
51
+ * Controls whether the toolbar is pinned in place
52
+ */
20
53
  get pinned(): boolean;
21
54
  set pinned(pinned: boolean);
55
+ /**
56
+ * The current language setting for tools
57
+ */
22
58
  get currentLanguage(): string;
23
59
  set currentLanguage(language: string);
24
- get currentOpenTool(): Tool<any> | undefined;
60
+ /**
61
+ * The currently selected and open tool
62
+ */
63
+ get currentOpenTool(): Tool | undefined;
64
+ /**
65
+ * Controls the current width of the toolbar in pixels
66
+ *
67
+ * If toolbar is hidden, it is always 0.
68
+ */
25
69
  get width(): number;
26
70
  set width(width: number);
71
+ /**
72
+ * Controls the DOM element representing the toolbar
73
+ */
27
74
  get toolbarElement(): HTMLDivElement | null;
28
75
  set toolbarElement(element: HTMLDivElement | null);
29
- openTool(toolId: string | undefined): void;
76
+ /**
77
+ * Selects a tool by its ID.
78
+ * Updates toolbar state based on tool's default settings.
79
+ * @param {string|undefined} toolId - ID of the tool to select, or undefined to deselect
80
+ */
81
+ selectTool(toolId: string | undefined): void;
82
+ /**
83
+ * Checks if a tool is currently in a loading state.
84
+ * @param {string} toolId - ID of the tool to check
85
+ * @returns {boolean} True if tool is loading, false otherwise
86
+ */
30
87
  isLoading(toolId: string): boolean;
88
+ /**
89
+ * Toggles or sets the loading state for a tool or its sub-components.
90
+ * @param {string} toolId - ID of the tool to update
91
+ * @param {string} [subId] - Optional ID of sub-component to update
92
+ * @param {boolean} [toggle] - Optional boolean to explicitly set loading state
93
+ */
31
94
  toggleLoading(toolId: string, subId?: string, toggle?: boolean): void;
32
95
  }
33
96
  //# sourceMappingURL=ToolBarStore.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ToolBarStore.d.ts","sourceRoot":"","sources":["../../../../../src/store/ToolBarStore.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAKlD,MAAM,CAAC,OAAO,OAAO,YAAY;IAUnB,OAAO,CAAC,eAAe;IATnC,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,OAAO,CAAiB;IAChC,OAAO,CAAC,OAAO,CAAkB;IACjC,OAAO,CAAC,aAAa,CAAqB;IAC1C,OAAO,CAAC,aAAa,CAAoC;IACzD,OAAO,CAAC,gBAAgB,CAAS;IACjC,OAAO,CAAC,MAAM,CAAa;IAC3B,OAAO,CAAC,eAAe,CAA+B;gBAElC,eAAe,EAAE,MAAM;IAO3C,IAAI,KAAK,IAIQ,IAAI,EAAE,CAFtB;IAED,IAAI,KAAK,CAAC,KAAK,EAAE,IAAI,EAAE,EAGtB;IAED,QAAQ,CAAC,GAAG,KAAK,EAAE,IAAI,EAAE;IAYzB,WAAW,CAAC,GAAG,OAAO,EAAE,MAAM,EAAE;IAKhC,OAAO,CAAC,eAAe;IAavB,IAAI,MAAM,IAIS,OAAO,CAFzB;IAED,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,EAKzB;IAED,IAAI,MAAM,IAIS,OAAO,CAFzB;IAED,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,EAEzB;IAED,IAAI,eAAe,IAIW,MAAM,CAFnC;IAED,IAAI,eAAe,CAAC,QAAQ,EAAE,MAAM,EAEnC;IAED,IAAI,eAAe,0BAElB;IAED,IAAI,KAAK,IAIQ,MAAM,CAFtB;IAED,IAAI,KAAK,CAAC,KAAK,EAAE,MAAM,EAStB;IAED,IAAI,cAAc,IAIU,cAAc,GAAG,IAAI,CAFhD;IAED,IAAI,cAAc,CAAC,OAAO,EAAE,cAAc,GAAG,IAAI,EAEhD;IAED,QAAQ,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS;IAmBnC,SAAS,CAAC,MAAM,EAAE,MAAM;IAKxB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,OAAO;CAsD/D"}
1
+ {"version":3,"file":"ToolBarStore.d.ts","sourceRoot":"","sources":["../../../../../src/store/ToolBarStore.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAMlD;;;GAGG;AACH,MAAM,CAAC,OAAO,OAAO,YAAY;IAcnB,OAAO,CAAC,eAAe;IAbnC,OAAO,CAAC,MAAM,CAAc;IAC5B,OAAO,CAAC,OAAO,CAAiB;IAChC,OAAO,CAAC,OAAO,CAAkB;IACjC,OAAO,CAAC,eAAe,CAAqB;IAC5C,OAAO,CAAC,aAAa,CAAoC;IACzD,OAAO,CAAC,gBAAgB,CAAS;IACjC,OAAO,CAAC,MAAM,CAAa;IAC3B,OAAO,CAAC,eAAe,CAA+B;IAEtD;;;OAGG;gBACiB,eAAe,EAAE,MAAM;IAO3C;;OAEG;IACH,IAAI,KAAK,IAAI,IAAI,EAAE,CAElB;IAED,IAAI,KAAK,CAAC,KAAK,EAAE,IAAI,EAAE,EAGtB;IAED;;;;;OAKG;IACH,QAAQ,CAAC,GAAG,KAAK,EAAE,IAAI,EAAE;IAYzB;;;OAGG;IACH,WAAW,CAAC,GAAG,OAAO,EAAE,MAAM,EAAE;IAKhC;;;OAGG;IACH,OAAO,CAAC,eAAe;IAavB;;;;OAIG;IACH,IAAI,MAAM,IAAI,OAAO,CAEpB;IAED,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,EAKzB;IAED;;OAEG;IACH,IAAI,MAAM,IAAI,OAAO,CAEpB;IAED,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,EAEzB;IAED;;OAEG;IACH,IAAI,eAAe,IAAI,MAAM,CAE5B;IAED,IAAI,eAAe,CAAC,QAAQ,EAAE,MAAM,EAEnC;IAED;;OAEG;IACH,IAAI,eAAe,IAAI,IAAI,GAAG,SAAS,CAEtC;IAED;;;;OAIG;IACH,IAAI,KAAK,IAAI,MAAM,CAElB;IAED,IAAI,KAAK,CAAC,KAAK,EAAE,MAAM,EAStB;IAED;;OAEG;IACH,IAAI,cAAc,IAAI,cAAc,GAAG,IAAI,CAE1C;IAED,IAAI,cAAc,CAAC,OAAO,EAAE,cAAc,GAAG,IAAI,EAEhD;IAED;;;;OAIG;IACH,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS;IAmBrC;;;;OAIG;IACH,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO;IAKlC;;;;;OAKG;IACH,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,OAAO;CAsD/D"}
@@ -1 +1 @@
1
- {"version":3,"file":"useTools.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMCommonComponents/useTools.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAErD,MAAM,MAAM,aAAa,GAAG;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,0BAA0B,CAAC,EAAE,MAAM,CAAC;CACrC,CAAC;AAEF,eAAO,MAAM,QAAQ,iEAAkE,aAAa;mCAKxF,MAAM,QAAQ,OAAO;mCAkBlB,IAAI,EAAE;oCASR,MAAM,EAAE;CA4DpB,CAAC"}
1
+ {"version":3,"file":"useTools.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/IDMCommonComponents/useTools.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAErD,MAAM,MAAM,aAAa,GAAG;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,0BAA0B,CAAC,EAAE,MAAM,CAAC;CACrC,CAAC;AAEF,eAAO,MAAM,QAAQ,iEAAkE,aAAa;mCAKxF,MAAM,QAAQ,OAAO;mCAmBlB,IAAI,EAAE;oCASR,MAAM,EAAE;CA4DpB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystaldesign/diva-backoffice",
3
- "version": "25.7.0-beta.29",
3
+ "version": "25.7.0-beta.30",
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.7.0-beta.29",
19
- "@crystaldesign/content-item": "25.7.0-beta.29",
20
- "@crystaldesign/diva-core": "25.7.0-beta.29",
21
- "@crystaldesign/diva-utils": "25.7.0-beta.29",
22
- "@crystaldesign/media-upload": "25.7.0-beta.29",
23
- "@crystaldesign/rtf-editor": "25.7.0-beta.29",
24
- "@crystaldesign/spreadsheet": "25.7.0-beta.29",
18
+ "@crystaldesign/content-box": "25.7.0-beta.30",
19
+ "@crystaldesign/content-item": "25.7.0-beta.30",
20
+ "@crystaldesign/diva-core": "25.7.0-beta.30",
21
+ "@crystaldesign/diva-utils": "25.7.0-beta.30",
22
+ "@crystaldesign/media-upload": "25.7.0-beta.30",
23
+ "@crystaldesign/rtf-editor": "25.7.0-beta.30",
24
+ "@crystaldesign/spreadsheet": "25.7.0-beta.30",
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": "ed678c2522788906647d63dd1deb35afcc5fcd28"
54
+ "gitHead": "b0f9e05c577bbcbc2cadebce8cc473d2d71f0f5d"
55
55
  }