1mpacto-react-ui 0.0.89 → 0.0.90

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.
@@ -1,4 +1,4 @@
1
1
  import { IRadioCheckboxLabel } from '../../interfaces/components/RadioCheckbox/RadioCheckboxLabel';
2
2
 
3
- declare const RadioCheckboxLabel: ({ radioCheckboxProps, name, id, type, typographyLabel, typographyDesc, fonts, borderRadius, className, disabled, variants, label, desc, ...props }: IRadioCheckboxLabel) => import("react/jsx-runtime").JSX.Element;
3
+ declare const RadioCheckboxLabel: ({ radioCheckboxProps, name, id, type, typographyLabel, typographyDesc, fonts, borderRadius, className, disabled, variants, label, desc, backgroundWithHover, ...props }: IRadioCheckboxLabel) => import("react/jsx-runtime").JSX.Element;
4
4
  export default RadioCheckboxLabel;
@@ -7,7 +7,7 @@ export interface IModalDialog<T extends ElementType> {
7
7
  idModal?: string;
8
8
  className?: string | undefined;
9
9
  classNameContainer?: string | undefined;
10
- size?: 'small' | 'regular' | 'large';
10
+ size?: 'small' | 'regular' | 'large' | 'medium';
11
11
  show: boolean;
12
12
  withOverlay?: boolean;
13
13
  onClose?: () => void;
@@ -13,4 +13,5 @@ export interface IRadioCheckboxLabel extends InputHTMLAttributes<HTMLInputElemen
13
13
  variants?: 'blue-50' | 'laba-blue-01';
14
14
  label: string | ReactNode | ReactNode[];
15
15
  desc?: string | ReactNode | ReactNode[];
16
+ backgroundWithHover?: boolean;
16
17
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "1mpacto-react-ui",
3
3
  "private": false,
4
- "version": "0.0.89",
4
+ "version": "0.0.90",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "copy:toastify-css": "cp ./node_modules/react-toastify/dist/ReactToastify.css ./dist/assets/toast.css",