dce-reactkit 3.7.24 → 3.7.27

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/cjs/index.js CHANGED
@@ -1303,7 +1303,7 @@ const AppWrapper = (props) => {
1303
1303
  : `
1304
1304
  .tooltip-inner {
1305
1305
  background-color: black;
1306
- color: black;
1306
+ color: white;
1307
1307
  border: 0.1rem solid white;
1308
1308
  pointer-events: none;
1309
1309
  }
@@ -1855,7 +1855,7 @@ const Drawer = (props) => {
1855
1855
  /*------------------------------------------------------------------------*/
1856
1856
  /* -------------- Props ------------- */
1857
1857
  // Destructure all props
1858
- const { customBackgroundColor, children, } = props;
1858
+ const { grayBackground, customBackgroundColor, children, } = props;
1859
1859
  /*------------------------------------------------------------------------*/
1860
1860
  /* ------------------------------- Render ------------------------------- */
1861
1861
  /*------------------------------------------------------------------------*/
@@ -1863,7 +1863,9 @@ const Drawer = (props) => {
1863
1863
  /* --------------- Main UI -------------- */
1864
1864
  /*----------------------------------------*/
1865
1865
  return (React__default["default"].createElement("div", { className: "Drawer-container", style: {
1866
- backgroundColor: (customBackgroundColor !== null && customBackgroundColor !== void 0 ? customBackgroundColor : undefined),
1866
+ backgroundColor: (grayBackground
1867
+ ? '#E2E3E5'
1868
+ : (customBackgroundColor !== null && customBackgroundColor !== void 0 ? customBackgroundColor : undefined)),
1867
1869
  } },
1868
1870
  React__default["default"].createElement("style", null, style$6),
1869
1871
  children));