ods-component-lib 1.18.78 → 1.18.79

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.
@@ -47464,34 +47464,6 @@ if (process.env.NODE_ENV === 'production') {
47464
47464
  }
47465
47465
  });
47466
47466
 
47467
- var client = createCommonjsModule(function (module, exports) {
47468
-
47469
-
47470
- if (process.env.NODE_ENV === 'production') {
47471
- exports.createRoot = reactDom.createRoot;
47472
- exports.hydrateRoot = reactDom.hydrateRoot;
47473
- } else {
47474
- var i = reactDom.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
47475
- exports.createRoot = function(c, o) {
47476
- i.usingClientEntryPoint = true;
47477
- try {
47478
- return reactDom.createRoot(c, o);
47479
- } finally {
47480
- i.usingClientEntryPoint = false;
47481
- }
47482
- };
47483
- exports.hydrateRoot = function(c, h, o) {
47484
- i.usingClientEntryPoint = true;
47485
- try {
47486
- return reactDom.hydrateRoot(c, h, o);
47487
- } finally {
47488
- i.usingClientEntryPoint = false;
47489
- }
47490
- };
47491
- }
47492
- });
47493
- var client_1 = client.createRoot;
47494
-
47495
47467
  var exportFormats$2 = ['xlsx'];
47496
47468
  var totalPageCount = 1;
47497
47469
  var loadedPageCount = 1;
@@ -47963,8 +47935,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
47963
47935
  template: function template(_, __, container) {
47964
47936
  var wrapper = document.createElement('div');
47965
47937
  container.appendChild(wrapper);
47966
- var root = client_1(wrapper);
47967
- root.render(React.createElement(React.StrictMode, null, props.toolbarButtonGroup && Array.isArray(props.toolbarButtonGroup) && props.toolbarButtonGroup.map(function (buttonGroupItem, index) {
47938
+ reactDom.render(React.createElement(React.StrictMode, null, props.toolbarButtonGroup && Array.isArray(props.toolbarButtonGroup) && props.toolbarButtonGroup.map(function (buttonGroupItem, index) {
47968
47939
  return React.createElement(OdsButton, {
47969
47940
  key: index,
47970
47941
  style: {
@@ -47973,7 +47944,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
47973
47944
  type: buttonGroupItem.type,
47974
47945
  onClick: buttonGroupItem.onclick
47975
47946
  }, buttonGroupItem.label);
47976
- })));
47947
+ })), wrapper);
47977
47948
  }
47978
47949
  });
47979
47950
  }
@@ -47983,8 +47954,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
47983
47954
  template: function template(_, __, container) {
47984
47955
  var wrapper = document.createElement('div');
47985
47956
  container.appendChild(wrapper);
47986
- var root = client_1(wrapper);
47987
- root.render(React.createElement(React.StrictMode, null, React.createElement(OdsTitle, {
47957
+ reactDom.render(React.createElement(React.StrictMode, null, React.createElement(OdsTitle, {
47988
47958
  level: 5,
47989
47959
  style: {
47990
47960
  display: "flex",
@@ -47992,7 +47962,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
47992
47962
  alignSelf: "stretch",
47993
47963
  margin: 0
47994
47964
  }
47995
- }, props.pageTitle)));
47965
+ }, props.pageTitle)), wrapper);
47996
47966
  }
47997
47967
  });
47998
47968
  };