1mpacto-react-ui 0.0.112 → 0.0.113

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 { ISwitch } from '../../interfaces/components/Switch';
2
2
 
3
- declare const Switch: ({ value, disabled, title, description, size, id, className, classNameTitle, classNameDesc, onChange, }: ISwitch) => import("react/jsx-runtime").JSX.Element;
3
+ declare const Switch: ({ value, disabled, title, description, size, kind, id, className, classNameTitle, classNameDesc, onChange, }: ISwitch) => import("react/jsx-runtime").JSX.Element;
4
4
  export default Switch;
@@ -2,7 +2,7 @@ import { StoryObj } from '@storybook/react';
2
2
 
3
3
  declare const meta: {
4
4
  title: string;
5
- component: ({ value, disabled, title, description, size, id, className, classNameTitle, classNameDesc, onChange, }: import('../../interfaces/components/Switch').ISwitch) => import("react/jsx-runtime").JSX.Element;
5
+ component: ({ value, disabled, title, description, size, kind, id, className, classNameTitle, classNameDesc, onChange, }: import('../../interfaces/components/Switch').ISwitch) => import("react/jsx-runtime").JSX.Element;
6
6
  parameters: {
7
7
  layout: string;
8
8
  };
@@ -9,6 +9,7 @@ export interface ISwitch {
9
9
  className?: string | undefined;
10
10
  classNameTitle?: string | undefined;
11
11
  classNameDesc?: string | undefined;
12
+ kind?: 'payhere' | 'laba';
12
13
  onChange: (v: boolean) => void;
13
14
  }
14
15
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "1mpacto-react-ui",
3
3
  "private": false,
4
- "version": "0.0.112",
4
+ "version": "0.0.113",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "copy:toastify-css": "cp ./node_modules/react-toastify/dist/ReactToastify.css ./dist/assets/toast.css",