hplx-react-elements-dev 1.0.72 → 1.0.73
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/esm/index.js
CHANGED
|
@@ -4634,12 +4634,13 @@ var RadioBtn = function RadioBtn(_a) {
|
|
|
4634
4634
|
iconfile = _a.iconfile,
|
|
4635
4635
|
id = _a.id,
|
|
4636
4636
|
text = _a.text,
|
|
4637
|
-
secondaryText = _a.secondaryText
|
|
4637
|
+
secondaryText = _a.secondaryText,
|
|
4638
|
+
className = _a.className;
|
|
4638
4639
|
return jsxRuntime.exports.jsx("div", __assign({
|
|
4639
4640
|
className: "radiobutton"
|
|
4640
4641
|
}, {
|
|
4641
4642
|
children: jsxRuntime.exports.jsxs("div", __assign({
|
|
4642
|
-
className: "hplxt-
|
|
4643
|
+
className: "hplxt-flex hplxt-flex-row hplxt-flex-1 ".concat(className)
|
|
4643
4644
|
}, {
|
|
4644
4645
|
children: [jsxRuntime.exports.jsx("input", {
|
|
4645
4646
|
className: "hplxt-sr-only hplxt-peer hplxt-border-0 focus:hplxt-border-0",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { RadioBtnProps } from "../types";
|
|
3
|
-
declare const RadioBtn: ({ size, disabled, iconfile, id, text, secondaryText }: RadioBtnProps) => JSX.Element;
|
|
3
|
+
declare const RadioBtn: ({ size, disabled, iconfile, id, text, secondaryText, className }: RadioBtnProps) => JSX.Element;
|
|
4
4
|
export default RadioBtn;
|
package/dist/esm/types.d.ts
CHANGED