@apexcura/ui-components 0.0.14-Beta191 → 0.0.14-Beta193
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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -462,7 +462,7 @@ var ButtonElement = (props) => {
|
|
|
462
462
|
src: props.icon,
|
|
463
463
|
alt: props.label
|
|
464
464
|
}
|
|
465
|
-
) : svgContent && /* @__PURE__ */ import_react11.default.createElement("span", { dangerouslySetInnerHTML: { __html: svgContent } }), props.label)
|
|
465
|
+
) : svgContent && /* @__PURE__ */ import_react11.default.createElement("span", { className: props.iconsClassName, dangerouslySetInnerHTML: { __html: svgContent } }), props.label)
|
|
466
466
|
);
|
|
467
467
|
};
|
|
468
468
|
|
|
@@ -969,7 +969,7 @@ var DateRangePickerElement = (props) => {
|
|
|
969
969
|
if (dates) {
|
|
970
970
|
props.onChange && props.onChange(dateStrings);
|
|
971
971
|
} else {
|
|
972
|
-
props.onChange && props.onChange(
|
|
972
|
+
props.onChange && props.onChange("");
|
|
973
973
|
}
|
|
974
974
|
};
|
|
975
975
|
const rangePresets = [
|
package/dist/index.mjs
CHANGED
|
@@ -396,7 +396,7 @@ var ButtonElement = (props) => {
|
|
|
396
396
|
src: props.icon,
|
|
397
397
|
alt: props.label
|
|
398
398
|
}
|
|
399
|
-
) : svgContent && /* @__PURE__ */ React11.createElement("span", { dangerouslySetInnerHTML: { __html: svgContent } }), props.label)
|
|
399
|
+
) : svgContent && /* @__PURE__ */ React11.createElement("span", { className: props.iconsClassName, dangerouslySetInnerHTML: { __html: svgContent } }), props.label)
|
|
400
400
|
);
|
|
401
401
|
};
|
|
402
402
|
|
|
@@ -903,7 +903,7 @@ var DateRangePickerElement = (props) => {
|
|
|
903
903
|
if (dates) {
|
|
904
904
|
props.onChange && props.onChange(dateStrings);
|
|
905
905
|
} else {
|
|
906
|
-
props.onChange && props.onChange(
|
|
906
|
+
props.onChange && props.onChange("");
|
|
907
907
|
}
|
|
908
908
|
};
|
|
909
909
|
const rangePresets = [
|