@oliasoft-open-source/react-ui-library 4.4.2 → 4.4.3

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.d.ts CHANGED
@@ -58,7 +58,7 @@ export declare enum ButtonType {
58
58
 
59
59
  export declare const Card: ({ bordered, heading, children, margin, padding, raised, }: ICardProps) => JSX_2.Element;
60
60
 
61
- export declare const CheckBox: ({ noMargin, dataix, isInTable, tabIndex, checked, name, key, label, disabled, small, onChange, testId, value, helpText, onClickHelp, }: ICheckBoxProps) => JSX_2.Element;
61
+ export declare const CheckBox: ({ noMargin, dataix, isInTable, tabIndex, checked, name, label, disabled, small, onChange, testId, value, helpText, onClickHelp, }: ICheckBoxProps) => JSX_2.Element;
62
62
 
63
63
  export declare enum Color {
64
64
  DANGER = "danger",
@@ -250,7 +250,6 @@ export declare interface ICheckBoxProps {
250
250
  disabled?: boolean;
251
251
  small?: boolean;
252
252
  testId?: string;
253
- key?: string;
254
253
  dataix?: number;
255
254
  value?: string;
256
255
  helpText?: string;
package/dist/index.js CHANGED
@@ -3897,7 +3897,6 @@ const CheckBox = ({
3897
3897
  tabIndex = 0,
3898
3898
  checked = false,
3899
3899
  name: name2,
3900
- key: key2 = "",
3901
3900
  label: label2 = "",
3902
3901
  disabled: disabled2 = false,
3903
3902
  small: small2 = false,
@@ -3943,8 +3942,7 @@ const CheckBox = ({
3943
3942
  onChange: () => {
3944
3943
  },
3945
3944
  disabled: isDisabled
3946
- },
3947
- key2
3945
+ }
3948
3946
  ),
3949
3947
  /* @__PURE__ */ jsxs("label", { htmlFor: name2, children: [
3950
3948
  /* @__PURE__ */ jsx("span", { className: styles$R.checkmark, children: /* @__PURE__ */ jsx(Icon, { icon: IconType.CHECK }) }),