ods-component-lib 1.18.77 → 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.
package/dist/index.js CHANGED
@@ -47469,34 +47469,6 @@ if (process.env.NODE_ENV === 'production') {
47469
47469
  }
47470
47470
  });
47471
47471
 
47472
- var client = createCommonjsModule(function (module, exports) {
47473
-
47474
-
47475
- if (process.env.NODE_ENV === 'production') {
47476
- exports.createRoot = reactDom.createRoot;
47477
- exports.hydrateRoot = reactDom.hydrateRoot;
47478
- } else {
47479
- var i = reactDom.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
47480
- exports.createRoot = function(c, o) {
47481
- i.usingClientEntryPoint = true;
47482
- try {
47483
- return reactDom.createRoot(c, o);
47484
- } finally {
47485
- i.usingClientEntryPoint = false;
47486
- }
47487
- };
47488
- exports.hydrateRoot = function(c, h, o) {
47489
- i.usingClientEntryPoint = true;
47490
- try {
47491
- return reactDom.hydrateRoot(c, h, o);
47492
- } finally {
47493
- i.usingClientEntryPoint = false;
47494
- }
47495
- };
47496
- }
47497
- });
47498
- var client_1 = client.createRoot;
47499
-
47500
47472
  var exportFormats$2 = ['xlsx'];
47501
47473
  var totalPageCount = 1;
47502
47474
  var loadedPageCount = 1;
@@ -47968,8 +47940,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
47968
47940
  template: function template(_, __, container) {
47969
47941
  var wrapper = document.createElement('div');
47970
47942
  container.appendChild(wrapper);
47971
- var root = client_1(wrapper);
47972
- root.render(React__default.createElement(React__default.StrictMode, null, props.toolbarButtonGroup && Array.isArray(props.toolbarButtonGroup) && props.toolbarButtonGroup.map(function (buttonGroupItem, index) {
47943
+ reactDom.render(React__default.createElement(React__default.StrictMode, null, props.toolbarButtonGroup && Array.isArray(props.toolbarButtonGroup) && props.toolbarButtonGroup.map(function (buttonGroupItem, index) {
47973
47944
  return React__default.createElement(OdsButton, {
47974
47945
  key: index,
47975
47946
  style: {
@@ -47978,7 +47949,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
47978
47949
  type: buttonGroupItem.type,
47979
47950
  onClick: buttonGroupItem.onclick
47980
47951
  }, buttonGroupItem.label);
47981
- })));
47952
+ })), wrapper);
47982
47953
  }
47983
47954
  });
47984
47955
  }
@@ -47988,8 +47959,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
47988
47959
  template: function template(_, __, container) {
47989
47960
  var wrapper = document.createElement('div');
47990
47961
  container.appendChild(wrapper);
47991
- var root = client_1(wrapper);
47992
- root.render(React__default.createElement(React__default.StrictMode, null, React__default.createElement(OdsTitle, {
47962
+ reactDom.render(React__default.createElement(React__default.StrictMode, null, React__default.createElement(OdsTitle, {
47993
47963
  level: 5,
47994
47964
  style: {
47995
47965
  display: "flex",
@@ -47997,7 +47967,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
47997
47967
  alignSelf: "stretch",
47998
47968
  margin: 0
47999
47969
  }
48000
- }, props.pageTitle)));
47970
+ }, props.pageTitle)), wrapper);
48001
47971
  }
48002
47972
  });
48003
47973
  };