@apexcura/ui-components 0.0.14-Beta66 → 0.0.14-Beta67
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 +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -378,6 +378,7 @@ var MultipleSelectElement = (props) => {
|
|
|
378
378
|
// src/Components/Button.tsx
|
|
379
379
|
var import_react11 = __toESM(require("react"));
|
|
380
380
|
var ButtonElement = (props) => {
|
|
381
|
+
console.log("props", props);
|
|
381
382
|
const [svgContent, setSvgContent] = (0, import_react11.useState)(null);
|
|
382
383
|
const [originalSvgContent, setOriginalSvgContent] = (0, import_react11.useState)(null);
|
|
383
384
|
const [hoverColor, setHoverColor] = (0, import_react11.useState)(null);
|
|
@@ -595,7 +596,8 @@ var Sidebar = (props) => {
|
|
|
595
596
|
ButtonElement,
|
|
596
597
|
{
|
|
597
598
|
...item,
|
|
598
|
-
className: props.className
|
|
599
|
+
className: props.className,
|
|
600
|
+
iconsClassName: props.iconsClassName
|
|
599
601
|
}
|
|
600
602
|
));
|
|
601
603
|
})));
|
package/dist/index.mjs
CHANGED
|
@@ -318,6 +318,7 @@ var MultipleSelectElement = (props) => {
|
|
|
318
318
|
// src/Components/Button.tsx
|
|
319
319
|
import React11, { useEffect, useState as useState4 } from "react";
|
|
320
320
|
var ButtonElement = (props) => {
|
|
321
|
+
console.log("props", props);
|
|
321
322
|
const [svgContent, setSvgContent] = useState4(null);
|
|
322
323
|
const [originalSvgContent, setOriginalSvgContent] = useState4(null);
|
|
323
324
|
const [hoverColor, setHoverColor] = useState4(null);
|
|
@@ -535,7 +536,8 @@ var Sidebar = (props) => {
|
|
|
535
536
|
ButtonElement,
|
|
536
537
|
{
|
|
537
538
|
...item,
|
|
538
|
-
className: props.className
|
|
539
|
+
className: props.className,
|
|
540
|
+
iconsClassName: props.iconsClassName
|
|
539
541
|
}
|
|
540
542
|
));
|
|
541
543
|
})));
|