@oliasoft-open-source/react-ui-library 6.17.1-beta-1 → 7.0.0-beta-2

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/README.md CHANGED
@@ -458,23 +458,23 @@ The `CheckBox` component is used to create a checkbox input field, often utilize
458
458
 
459
459
  ### Props
460
460
 
461
- | Prop | Description | Default Value |
462
- | ------------- | --------------------------------------------------------------------------- | --------------- |
463
- | `checked` | Determines whether the checkbox is checked. | `false` |
464
- | `isInTable` | If true, optimizes the checkbox for use within a table. | `false` |
465
- | `label` | The text label associated with the checkbox. | None (optional) |
466
- | `name` | The name of the checkbox input, useful for form submission. | None (required) |
467
- | `noMargin` | If true, removes the margin around the checkbox for tighter UI integration. | `false` |
468
- | `onChange` | A callback function that is called when the checkbox state changes. | None (required) |
469
- | `tabIndex` | The tab index of the checkbox. | `0` |
470
- | `disabled` | If true, disables the checkbox preventing user interaction. | `false` |
471
- | `small` | If true, renders a smaller version of the checkbox. | `false` |
472
- | `testId` | A unique identifier for testing purposes. | None (optional) |
473
- | `key` | A unique key for rendering the component in lists. | `''` |
474
- | `dataix` | Custom data index attribute for the component. | `0` |
475
- | `value` | The value of the checkbox. | None (optional) |
476
- | `helpText` | Optional help text displayed near the checkbox. | None (optional) |
477
- | `onClickHelp` | A callback function triggered when the help text is clicked. | None (optional) |
461
+ | Prop | Description | Default Value |
462
+ | --------------- | --------------------------------------------------------------------------- | --------------- |
463
+ | `checked` | Determines whether the checkbox is checked. | `false` |
464
+ | `indeterminate` | When true, shows an indeterminate state. | `false` |
465
+ | `isInTable` | If true, optimizes the checkbox for use within a table. | `false` |
466
+ | `label` | The text label associated with the checkbox. | None (optional) |
467
+ | `name` | The name of the checkbox input, useful for form submission. | None (optional) |
468
+ | `noMargin` | If true, removes the margin around the checkbox for tighter UI integration. | `false` |
469
+ | `onChange` | A callback function that is called when the checkbox state changes. | None (required) |
470
+ | `tabIndex` | The tab index of the checkbox. Values below 0 exclude it from tab order. | `0` |
471
+ | `disabled` | If true, disables the checkbox preventing user interaction. | `false` |
472
+ | `small` | If true, renders a smaller version of the checkbox. | `false` |
473
+ | `testId` | A unique identifier for testing purposes. | None (optional) |
474
+ | `dataix` | Custom data index attribute for the component. | `0` |
475
+ | `helpText` | Optional help text displayed near the checkbox. | None (optional) |
476
+ | `onClickHelp` | A callback function triggered when the help text is clicked. | None (optional) |
477
+ | `textTransform` | CSS text-transform applied to the label. | `'capitalize'` |
478
478
 
479
479
  ### Usage Example
480
480
 
@@ -1515,44 +1515,59 @@ The `ProgressBar` component is used to display a visual progress bar indicating
1515
1515
 
1516
1516
  ## RadioButton <a id="radiobutton"></a>
1517
1517
 
1518
- The `RadioButton` component provides a set of radio buttons for selecting options within a group.
1518
+ The `RadioButton` component provides a set of radio buttons for selecting options within a group. Use the `Field` component to provide a group label.
1519
1519
 
1520
1520
  ### Props
1521
1521
 
1522
- | Prop | Description | Default Value |
1523
- | ------------------- | ----------------------------------------------------------------------------- | ------------------ |
1524
- | `name` | The name attribute of the radio button group. | - |
1525
- | `label` | The label for the radio button group. | `null` |
1526
- | `options` | An array of objects representing each radio button option. | - |
1527
- | `value` | The currently selected value or option object. | - |
1528
- | `inline` | (Deprecated) Determines whether the radio buttons should be displayed inline. | `false` |
1529
- | `disabled` | Determines whether the radio buttons are disabled. | `false` |
1530
- | `small` | Determines whether to use a smaller size for the radio buttons. | `false` |
1531
- | `onChange` | A function called when the selected value changes. | - |
1532
- | `noMargin` | Determines whether to remove margins around the radio buttons. | `false` |
1533
- | `onClick` | (Deprecated) A function called when a radio button is clicked. | `() => {}` |
1534
- | `mainLabel` | (Deprecated) The main label for the radio button group. | `''` |
1535
- | `radioButtonsData` | (Deprecated) An array of objects representing each radio button option. | - |
1536
- | `classForContainer` | (Deprecated) A class name for the container element. | `'grouped fields'` |
1537
- | `testId` | A string used to define a test ID for testing purposes. | - |
1522
+ <<<<<<< HEAD
1523
+
1524
+ | Prop | Description | Default Value |
1525
+ | ------------------- | --------------------------------------------------------------------------------------- | ------------------ |
1526
+ | `name` | The name attribute of the radio button group. | None (optional) |
1527
+ | `label` | (Deprecated) Group label. Wrap the control in a `Field` component instead. | None (optional) |
1528
+ | `options` | An array of objects representing each radio button option. | None (required) |
1529
+ | `value` | The currently selected value or option object. | None (required) |
1530
+ | `inline` | Displays radio buttons in a horizontal row and enables Left/Right arrow key navigation. | `false` |
1531
+ | `disabled` | Determines whether the radio buttons are disabled. | `false` |
1532
+ | `small` | Determines whether to use a smaller size for the radio buttons. | `false` |
1533
+ | `onChange` | A function called when the selected value changes. | None (optional) |
1534
+ | `noMargin` | Determines whether to remove margins around the radio buttons. | `false` |
1535
+ | `testId` | A string used to define a test ID for testing purposes. | - |
1536
+ | ======= |
1537
+ | Prop | Description | Default Value |
1538
+ | ------------------- | ----------------------------------------------------------------------------- | ------------------ |
1539
+ | `name` | The name attribute of the radio button group. | - |
1540
+ | `label` | The label for the radio button group. | `null` |
1541
+ | `options` | An array of objects representing each radio button option. | - |
1542
+ | `value` | The currently selected value or option object. | - |
1543
+ | `inline` | (Deprecated) Determines whether the radio buttons should be displayed inline. | `false` |
1544
+ | `disabled` | Determines whether the radio buttons are disabled. | `false` |
1545
+ | `small` | Determines whether to use a smaller size for the radio buttons. | `false` |
1546
+ | `onChange` | A function called when the selected value changes. | - |
1547
+ | `noMargin` | Determines whether to remove margins around the radio buttons. | `false` |
1548
+ | `onClick` | (Deprecated) A function called when a radio button is clicked. | `() => {}` |
1549
+ | `mainLabel` | (Deprecated) The main label for the radio button group. | `''` |
1550
+ | `radioButtonsData` | (Deprecated) An array of objects representing each radio button option. | - |
1551
+ | `classForContainer` | (Deprecated) A class name for the container element. | `'grouped fields'` |
1552
+ | `testId` | A string used to define a test ID for testing purposes. | - |
1553
+
1554
+ > > > > > > > master
1538
1555
 
1539
1556
  ### Usage Example
1540
1557
 
1541
1558
  ```jsx
1542
- <RadioButton
1543
- name="gender"
1544
- label="Gender"
1545
- options={[
1546
- { label: 'Male', value: 'male' },
1547
- { label: 'Female', value: 'female' },
1548
- { label: 'Other', value: 'other' },
1549
- ]}
1550
- value="male"
1551
- onChange={(e) => console.log('Selected value:', e.target.value)}
1552
- disabled={false}
1553
- small={true}
1554
- noMargin={false}
1555
- />
1559
+ <Field label="Gender">
1560
+ <RadioButton
1561
+ name="gender"
1562
+ options={[
1563
+ { label: 'Male', value: 'male' },
1564
+ { label: 'Female', value: 'female' },
1565
+ { label: 'Other', value: 'other' },
1566
+ ]}
1567
+ value="male"
1568
+ onChange={(e) => console.log('Selected value:', e.target.value)}
1569
+ />
1570
+ </Field>
1556
1571
  ```
1557
1572
 
1558
1573
  <hr style="border: none; border-right: 2px solid black; width: 100%; height: 1px;">
@@ -1 +1 @@
1
- {"version":3,"file":"check-box.d.ts","sourceRoot":"","sources":["../../../src/components/check-box/check-box.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8C,MAAM,OAAO,CAAC;AAEnE,OAAO,EAAE,MAAM,EAAE,MAAM,iCAAiC,CAAC;AACzD,OAAO,EAA2B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAM/E,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE;QACN,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,OAAO,CAAC;QACjB,KAAK,EAAE,OAAO,CAAC;KAChB,CAAC;CACH;AAED,MAAM,MAAM,qBAAqB,GAAG,CAClC,GAAG,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc,EAAE,UAAU,CAAC,GAAG;IAClD,MAAM,EAAE,mBAAmB,CAAC,QAAQ,CAAC,CAAC;CACvC,KACE,IAAI,CAAC;AAEV,MAAM,WAAW,cAAc;IAC7B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,qBAAqB,CAAC;IAChC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,cAAc,CAAC;CAChC;AAED,eAAO,MAAM,QAAQ,GAAI,0JAgBtB,cAAc,4CAgEhB,CAAC"}
1
+ {"version":3,"file":"check-box.d.ts","sourceRoot":"","sources":["../../../src/components/check-box/check-box.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAG1C,OAAO,EAAE,MAAM,EAAE,MAAM,iCAAiC,CAAC;AACzD,OAAO,EAA2B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAM/E,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE;QACN,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,OAAO,CAAC;QACjB,KAAK,EAAE,OAAO,CAAC;KAChB,CAAC;CACH;AAED,MAAM,MAAM,qBAAqB,GAAG,CAClC,GAAG,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc,EAAE,UAAU,CAAC,GAAG;IAClD,MAAM,EAAE,mBAAmB,CAAC,QAAQ,CAAC,CAAC;CACvC,KACE,IAAI,CAAC;AAEV,MAAM,WAAW,cAAc;IAC7B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,qBAAqB,CAAC;IAChC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,cAAc,CAAC;CAChC;AAED,eAAO,MAAM,QAAQ,GAAI,0JAgBtB,cAAc,4CA+ChB,CAAC"}
@@ -2,8 +2,9 @@ import { Meta, StoryFn } from '@storybook/react-vite';
2
2
  import { ICheckBoxProps } from './check-box';
3
3
  declare const _default: Meta<ICheckBoxProps>;
4
4
  export default _default;
5
- export declare const TestKeys: () => import("react/jsx-runtime").JSX.Element[];
5
+ export declare const TestKeys: StoryFn<ICheckBoxProps>;
6
6
  export declare const Test: StoryFn<ICheckBoxProps>;
7
7
  export declare const TestDisabled: StoryFn<ICheckBoxProps>;
8
8
  export declare const CheckUncheckAll: StoryFn<ICheckBoxProps>;
9
+ export declare const TestStandalone: StoryFn<ICheckBoxProps>;
9
10
  //# sourceMappingURL=check-box.test-case.stories.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"check-box.test-case.stories.d.ts","sourceRoot":"","sources":["../../../src/components/check-box/check-box.test-case.stories.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,EAAY,cAAc,EAAE,MAAM,aAAa,CAAC;wBAWlD,IAAI,CAAC,cAAc,CAAC;AARzB,wBAQ0B;AAE1B,eAAO,MAAM,QAAQ,iDAYpB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,OAAO,CAAC,cAAc,CAGxC,CAAC;AAeF,eAAO,MAAM,YAAY,EAAE,OAAO,CAAC,cAAc,CAKhD,CAAC;AAUF,eAAO,MAAM,eAAe,EAAE,OAAO,CAAC,cAAc,CA8BnD,CAAC"}
1
+ {"version":3,"file":"check-box.test-case.stories.d.ts","sourceRoot":"","sources":["../../../src/components/check-box/check-box.test-case.stories.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,EAAY,cAAc,EAAE,MAAM,aAAa,CAAC;wBAWlD,IAAI,CAAC,cAAc,CAAC;AARzB,wBAQ0B;AAE1B,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,cAAc,CAM5C,CAAC;AAoBF,eAAO,MAAM,IAAI,EAAE,OAAO,CAAC,cAAc,CAGxC,CAAC;AAuCF,eAAO,MAAM,YAAY,EAAE,OAAO,CAAC,cAAc,CAKhD,CAAC;AA2BF,eAAO,MAAM,eAAe,EAAE,OAAO,CAAC,cAAc,CA8BnD,CAAC;AAgCF,eAAO,MAAM,cAAc,EAAE,OAAO,CAAC,cAAc,CAKlD,CAAC"}
@@ -7,8 +7,6 @@ export interface IRadioButtonOption {
7
7
  testId?: string;
8
8
  helpText?: string;
9
9
  onClickHelp?: (evt: MouseEvent<HTMLButtonElement>) => void;
10
- name?: string;
11
- checked?: boolean;
12
10
  disabled?: boolean;
13
11
  textTransform?: TTextTransform;
14
12
  }
@@ -22,10 +20,7 @@ export interface IRadioButtonProps {
22
20
  small?: boolean;
23
21
  onChange?: TChangeEventHandler;
24
22
  noMargin?: boolean;
25
- mainLabel?: string;
26
- onClick?: (target: HTMLInputElement) => void;
27
- radioButtonsData?: IRadioButtonOption[];
28
- classForContainer?: 'grouped fields' | 'inline fields';
23
+ testId?: string;
29
24
  }
30
- export declare const RadioButton: ({ name, label: rawLabel, options: rawOptions, value: rawValue, onChange, disabled, small, noMargin, onClick, inline, mainLabel, radioButtonsData, classForContainer, }: IRadioButtonProps) => import("react/jsx-runtime").JSX.Element;
25
+ export declare const RadioButton: ({ name, label, options: rawOptions, value: rawValue, onChange, disabled, small, noMargin, inline, testId, }: IRadioButtonProps) => import("react/jsx-runtime").JSX.Element;
31
26
  //# sourceMappingURL=radio-button.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"radio-button.d.ts","sourceRoot":"","sources":["../../../src/components/radio-button/radio-button.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,UAAU,EAAc,MAAM,OAAO,CAAC;AAEtD,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAKvF,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEtD,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,eAAe,CAAC;IACvB,KAAK,EAAE,eAAe,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,UAAU,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IAC3D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,aAAa,CAAC,EAAE,cAAc,CAAC;CAChC;AAED,MAAM,WAAW,iBAAiB;IAChC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,OAAO,EAAE,kBAAkB,EAAE,CAAC;IAC9B,KAAK,EAAE,eAAe,GAAG,kBAAkB,CAAC;IAC5C,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,mBAAmB,CAAC;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,CAAC,MAAM,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAC7C,gBAAgB,CAAC,EAAE,kBAAkB,EAAE,CAAC;IACxC,iBAAiB,CAAC,EAAE,gBAAgB,GAAG,eAAe,CAAC;CACxD;AAED,eAAO,MAAM,WAAW,GAAI,wKAezB,iBAAiB,4CAiEnB,CAAC"}
1
+ {"version":3,"file":"radio-button.d.ts","sourceRoot":"","sources":["../../../src/components/radio-button/radio-button.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,UAAU,EAAc,MAAM,OAAO,CAAC;AAEtD,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAKvF,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEtD,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,eAAe,CAAC;IACvB,KAAK,EAAE,eAAe,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,UAAU,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IAC3D,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,aAAa,CAAC,EAAE,cAAc,CAAC;CAChC;AAED,MAAM,WAAW,iBAAiB;IAChC,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,OAAO,EAAE,kBAAkB,EAAE,CAAC;IAC9B,KAAK,EAAE,eAAe,GAAG,kBAAkB,CAAC;IAC5C,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,mBAAmB,CAAC;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,WAAW,GAAI,6GAWzB,iBAAiB,4CAgDnB,CAAC"}
@@ -1,5 +1,7 @@
1
- import { Meta } from '@storybook/react-vite';
1
+ import { Meta, StoryFn } from '@storybook/react-vite';
2
2
  declare const _default: Meta;
3
3
  export default _default;
4
4
  export declare const Test: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react-vite').ReactRenderer, any>;
5
+ export declare const TestInline: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react-vite').ReactRenderer, any>;
6
+ export declare const TestStandalone: StoryFn;
5
7
  //# sourceMappingURL=radio-button.test-case.stories.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"radio-button.test-case.stories.d.ts","sourceRoot":"","sources":["../../../src/components/radio-button/radio-button.test-case.stories.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAW,MAAM,uBAAuB,CAAC;wBA8BjD,IAAI;AAXT,wBAWU;AAcV,eAAO,MAAM,IAAI,uGAAoB,CAAC"}
1
+ {"version":3,"file":"radio-button.test-case.stories.d.ts","sourceRoot":"","sources":["../../../src/components/radio-button/radio-button.test-case.stories.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;wBAqCjD,IAAI;AAXT,wBAWU;AAiBV,eAAO,MAAM,IAAI,uGAAoB,CAAC;AA4FtC,eAAO,MAAM,UAAU,uGAAoB,CAAC;AAc5C,eAAO,MAAM,cAAc,EAAE,OAU5B,CAAC"}
@@ -1,11 +1,11 @@
1
1
  import { default as React } from 'react';
2
2
  import { TTextTransform } from '../../typings/common-types';
3
3
  import { TStringOrNumber } from '../../typings/common-type-definitions';
4
- interface IRadioInputProps {
5
- name: TStringOrNumber;
4
+ export interface IRadioInputProps {
5
+ name?: TStringOrNumber;
6
6
  label?: TStringOrNumber;
7
7
  value: TStringOrNumber;
8
- selected: boolean;
8
+ selected?: boolean;
9
9
  disabled?: boolean;
10
10
  small?: boolean;
11
11
  onChange?: (evt: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
@@ -16,5 +16,4 @@ interface IRadioInputProps {
16
16
  textTransform?: TTextTransform;
17
17
  }
18
18
  export declare const RadioInput: ({ name, label, value, selected, disabled, small, onChange, noMargin, testId, helpText, onClickHelp, textTransform, }: IRadioInputProps) => import("react/jsx-runtime").JSX.Element;
19
- export {};
20
19
  //# sourceMappingURL=radio-input.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"radio-input.d.ts","sourceRoot":"","sources":["../../../src/components/radio-button/radio-input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAA4B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAChF,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAIlE,UAAU,gBAAgB;IACxB,IAAI,EAAE,eAAe,CAAC;IACtB,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,KAAK,EAAE,eAAe,CAAC;IACvB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,CAAC,GAAG,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc,EAAE,UAAU,CAAC,KAAK,IAAI,CAAC;IACvE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IACpC,aAAa,CAAC,EAAE,cAAc,CAAC;CAChC;AAED,eAAO,MAAM,UAAU,GAAI,sHAaxB,gBAAgB,4CA0BlB,CAAC"}
1
+ {"version":3,"file":"radio-input.d.ts","sourceRoot":"","sources":["../../../src/components/radio-button/radio-input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAQ1C,OAAO,EAAiB,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAIlE,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,KAAK,EAAE,eAAe,CAAC;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,CAAC,GAAG,EAAE,KAAK,CAAC,UAAU,CAAC,cAAc,EAAE,UAAU,CAAC,KAAK,IAAI,CAAC;IACvE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IACpC,aAAa,CAAC,EAAE,cAAc,CAAC;CAChC;AAED,eAAO,MAAM,UAAU,GAAI,sHAaxB,gBAAgB,4CAoDlB,CAAC"}
@@ -2102,7 +2102,7 @@ export declare const tableRadio: {
2102
2102
  type: string;
2103
2103
  selected: boolean;
2104
2104
  onChange: () => void;
2105
- value?: undefined;
2105
+ value: string;
2106
2106
  } | {
2107
2107
  type: string;
2108
2108
  value: string;
@@ -1 +1 @@
1
- {"version":3,"file":"table.stories-data.d.ts","sourceRoot":"","sources":["../../../src/components/table/table.stories-data.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"table.stories-data.d.ts","sourceRoot":"","sources":["../../../src/components/table/table.stories-data.tsx"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"toggle.d.ts","sourceRoot":"","sources":["../../../src/components/toggle/toggle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,EAA4B,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAEhF,OAAO,EAAgB,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAIpF,MAAM,WAAW,YAAY;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,YAAY,GAAG,IAAI,CAAC;IAC3C,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,mBAAmB,CAAC;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAC;IACjC,aAAa,CAAC,EAAE,cAAc,CAAC;CAChC;AAED,eAAO,MAAM,MAAM,GAAI,uHAapB,YAAY,4CAwCd,CAAC"}
1
+ {"version":3,"file":"toggle.d.ts","sourceRoot":"","sources":["../../../src/components/toggle/toggle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAG1C,OAAO,EAAiB,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAErE,OAAO,EAAgB,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAIpF,MAAM,WAAW,YAAY;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,YAAY,GAAG,IAAI,CAAC;IAC3C,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,mBAAmB,CAAC;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAC;IACjC,aAAa,CAAC,EAAE,cAAc,CAAC;CAChC;AAED,eAAO,MAAM,MAAM,GAAI,uHAapB,YAAY,4CA8Bd,CAAC"}
@@ -2,7 +2,9 @@ import { Meta, StoryFn } from '@storybook/react-vite';
2
2
  import { IToggleProps } from './toggle';
3
3
  declare const _default: Meta;
4
4
  export default _default;
5
+ export declare const TestKeys: StoryFn<IToggleProps>;
5
6
  export declare const TestClicked: StoryFn<IToggleProps>;
6
7
  export declare const Test: StoryFn<IToggleProps>;
7
8
  export declare const TestDisabled: StoryFn<IToggleProps>;
9
+ export declare const TestStandalone: StoryFn<IToggleProps>;
8
10
  //# sourceMappingURL=toggle.test-case.stories.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toggle.test-case.stories.d.ts","sourceRoot":"","sources":["../../../src/components/toggle/toggle.test-case.stories.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAU,MAAM,UAAU,CAAC;wBAS3C,IAAI;AAPT,wBAOU;AAEV,eAAO,MAAM,WAAW,EAAE,OAAO,CAAC,YAAY,CAc7C,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,OAAO,CAAC,YAAY,CActC,CAAC;AAoBF,eAAO,MAAM,YAAY,EAAE,OAAO,CAAC,YAAY,CAe9C,CAAC"}
1
+ {"version":3,"file":"toggle.test-case.stories.d.ts","sourceRoot":"","sources":["../../../src/components/toggle/toggle.test-case.stories.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAU,MAAM,UAAU,CAAC;wBAS3C,IAAI;AAPT,wBAOU;AAEV,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,YAAY,CAM1C,CAAC;AA8BF,eAAO,MAAM,WAAW,EAAE,OAAO,CAAC,YAAY,CAc7C,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,OAAO,CAAC,YAAY,CAatC,CAAC;AA8CF,eAAO,MAAM,YAAY,EAAE,OAAO,CAAC,YAAY,CAc9C,CAAC;AA4BF,eAAO,MAAM,cAAc,EAAE,OAAO,CAAC,YAAY,CAUhD,CAAC"}