hplx-react-elements-dev 1.0.71 → 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-p-4 hplxt-flex hplxt-flex-row hplxt-flex-1 "
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;
@@ -273,6 +273,7 @@ export interface RadioBtnProps {
273
273
  text: string;
274
274
  secondaryText: string;
275
275
  id: any;
276
+ className?: any;
276
277
  }
277
278
  export type ToggleSwitchThemeType = "Dark" | "Light";
278
279
  export type ToggleSwitchSizeType = "sm" | "md";
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "frontend",
10
10
  "healthplix"
11
11
  ],
12
- "version": "1.0.71",
12
+ "version": "1.0.73",
13
13
  "main": "dist/esm/index.js",
14
14
  "module": "dist/esm/index.js",
15
15
  "types": "dist/esm/index.d.ts",