@apexcura/ui-components 0.0.11-Beta164 → 0.0.11-Beta166
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 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -398,6 +398,7 @@ var ButtonElement = (props) => {
|
|
|
398
398
|
onClick: handleClick,
|
|
399
399
|
className: `${defaultClassName} ${props.className ? props.className : ""}`
|
|
400
400
|
},
|
|
401
|
+
props.icon && /* @__PURE__ */ import_react12.default.createElement("span", { className: props.iconsClassName }, props.icon),
|
|
401
402
|
props.label
|
|
402
403
|
);
|
|
403
404
|
};
|
|
@@ -657,6 +658,7 @@ var DatePickerElement = (props) => {
|
|
|
657
658
|
props.onChange(formatedData);
|
|
658
659
|
}
|
|
659
660
|
setDate(formatedData);
|
|
661
|
+
setDate(formatedData);
|
|
660
662
|
console.log("date--------", date);
|
|
661
663
|
};
|
|
662
664
|
const onHandleDecrement = () => {
|
package/dist/index.mjs
CHANGED
|
@@ -347,6 +347,7 @@ var ButtonElement = (props) => {
|
|
|
347
347
|
onClick: handleClick,
|
|
348
348
|
className: `${defaultClassName} ${props.className ? props.className : ""}`
|
|
349
349
|
},
|
|
350
|
+
props.icon && /* @__PURE__ */ React11.createElement("span", { className: props.iconsClassName }, props.icon),
|
|
350
351
|
props.label
|
|
351
352
|
);
|
|
352
353
|
};
|
|
@@ -606,6 +607,7 @@ var DatePickerElement = (props) => {
|
|
|
606
607
|
props.onChange(formatedData);
|
|
607
608
|
}
|
|
608
609
|
setDate(formatedData);
|
|
610
|
+
setDate(formatedData);
|
|
609
611
|
console.log("date--------", date);
|
|
610
612
|
};
|
|
611
613
|
const onHandleDecrement = () => {
|