@oliasoft-open-source/react-ui-library 6.14.0-beta-1 → 6.14.0-beta-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/README.md +29 -23
- package/dist/components/button/button.d.ts +3 -1
- package/dist/components/button/button.d.ts.map +1 -1
- package/dist/components/check-box/check-box.d.ts.map +1 -1
- package/dist/components/check-box/check-box.test-case.stories.d.ts +1 -2
- package/dist/components/check-box/check-box.test-case.stories.d.ts.map +1 -1
- package/dist/components/popover/popover.d.ts +1 -1
- package/dist/components/popover/popover.d.ts.map +1 -1
- package/dist/components/popover/popover.stories.d.ts +1 -0
- package/dist/components/popover/popover.stories.d.ts.map +1 -1
- package/dist/components/popover/popover.test-case.stories.d.ts +18 -0
- package/dist/components/popover/popover.test-case.stories.d.ts.map +1 -0
- package/dist/components/radio-button/radio-button.d.ts +7 -2
- package/dist/components/radio-button/radio-button.d.ts.map +1 -1
- package/dist/components/radio-button/radio-button.test-case.stories.d.ts +1 -3
- package/dist/components/radio-button/radio-button.test-case.stories.d.ts.map +1 -1
- package/dist/components/radio-button/radio-input.d.ts +4 -3
- package/dist/components/radio-button/radio-input.d.ts.map +1 -1
- package/dist/components/table/table.stories-data.d.ts +1 -1
- package/dist/components/table/table.stories-data.d.ts.map +1 -1
- package/dist/components/toggle/toggle.d.ts.map +1 -1
- package/dist/components/toggle/toggle.test-case.stories.d.ts +0 -2
- package/dist/components/toggle/toggle.test-case.stories.d.ts.map +1 -1
- package/dist/global.css +1 -1
- package/dist/helpers/overlay-trigger/index.d.ts +5 -0
- package/dist/helpers/overlay-trigger/index.d.ts.map +1 -0
- package/dist/helpers/overlay-trigger/overlay-trigger-child.d.ts +28 -0
- package/dist/helpers/overlay-trigger/overlay-trigger-child.d.ts.map +1 -0
- package/dist/helpers/overlay-trigger/utils.d.ts +30 -0
- package/dist/helpers/overlay-trigger/utils.d.ts.map +1 -0
- package/dist/index.js +2881 -2855
- package/dist/translations/config.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -472,20 +472,20 @@ The `CheckBox` component is used to create a checkbox input field, often utilize
|
|
|
472
472
|
| Prop | Description | Default Value |
|
|
473
473
|
|---------------|------------------------------------------------------------------|-----------------|
|
|
474
474
|
| `checked` | Determines whether the checkbox is checked. | `false` |
|
|
475
|
-
| `indeterminate` | When true, shows an indeterminate state. | `false` |
|
|
476
475
|
| `isInTable` | If true, optimizes the checkbox for use within a table. | `false` |
|
|
477
476
|
| `label` | The text label associated with the checkbox. | None (optional) |
|
|
478
|
-
| `name` | The name of the checkbox input, useful for form submission. | None (
|
|
477
|
+
| `name` | The name of the checkbox input, useful for form submission. | None (required) |
|
|
479
478
|
| `noMargin` | If true, removes the margin around the checkbox for tighter UI integration. | `false` |
|
|
480
479
|
| `onChange` | A callback function that is called when the checkbox state changes. | None (required) |
|
|
481
|
-
| `tabIndex` | The tab index of the checkbox.
|
|
480
|
+
| `tabIndex` | The tab index of the checkbox. | `0` |
|
|
482
481
|
| `disabled` | If true, disables the checkbox preventing user interaction. | `false` |
|
|
483
482
|
| `small` | If true, renders a smaller version of the checkbox. | `false` |
|
|
484
483
|
| `testId` | A unique identifier for testing purposes. | None (optional) |
|
|
484
|
+
| `key` | A unique key for rendering the component in lists. | `''` |
|
|
485
485
|
| `dataix` | Custom data index attribute for the component. | `0` |
|
|
486
|
+
| `value` | The value of the checkbox. | None (optional) |
|
|
486
487
|
| `helpText` | Optional help text displayed near the checkbox. | None (optional) |
|
|
487
488
|
| `onClickHelp` | A callback function triggered when the help text is clicked. | None (optional) |
|
|
488
|
-
| `textTransform` | CSS text-transform applied to the label. | `'capitalize'` |
|
|
489
489
|
|
|
490
490
|
### Usage Example
|
|
491
491
|
|
|
@@ -1566,38 +1566,44 @@ The `ProgressBar` component is used to display a visual progress bar indicating
|
|
|
1566
1566
|
|
|
1567
1567
|
## RadioButton <a id="radiobutton"></a>
|
|
1568
1568
|
|
|
1569
|
-
The `RadioButton` component provides a set of radio buttons for selecting options within a group.
|
|
1569
|
+
The `RadioButton` component provides a set of radio buttons for selecting options within a group.
|
|
1570
1570
|
|
|
1571
1571
|
### Props
|
|
1572
1572
|
|
|
1573
1573
|
| Prop | Description | Default Value |
|
|
1574
1574
|
|---------------------|-----------------------------------------------------------------------------------------------|---------------------|
|
|
1575
|
-
| `name` | The name attribute of the radio button group. |
|
|
1576
|
-
| `label` |
|
|
1577
|
-
| `options` | An array of objects representing each radio button option. |
|
|
1578
|
-
| `value` | The currently selected value or option object. |
|
|
1579
|
-
| `inline` |
|
|
1575
|
+
| `name` | The name attribute of the radio button group. | - |
|
|
1576
|
+
| `label` | The label for the radio button group. | `null` |
|
|
1577
|
+
| `options` | An array of objects representing each radio button option. | - |
|
|
1578
|
+
| `value` | The currently selected value or option object. | - |
|
|
1579
|
+
| `inline` | (Deprecated) Determines whether the radio buttons should be displayed inline. | `false` |
|
|
1580
1580
|
| `disabled` | Determines whether the radio buttons are disabled. | `false` |
|
|
1581
1581
|
| `small` | Determines whether to use a smaller size for the radio buttons. | `false` |
|
|
1582
|
-
| `onChange` | A function called when the selected value changes. |
|
|
1582
|
+
| `onChange` | A function called when the selected value changes. | - |
|
|
1583
1583
|
| `noMargin` | Determines whether to remove margins around the radio buttons. | `false` |
|
|
1584
|
+
| `onClick` | (Deprecated) A function called when a radio button is clicked. | `() => {}` |
|
|
1585
|
+
| `mainLabel` | (Deprecated) The main label for the radio button group. | `''` |
|
|
1586
|
+
| `radioButtonsData` | (Deprecated) An array of objects representing each radio button option. | - |
|
|
1587
|
+
| `classForContainer` | (Deprecated) A class name for the container element. | `'grouped fields'` |
|
|
1584
1588
|
| `testId` | A string used to define a test ID for testing purposes. | - |
|
|
1585
1589
|
|
|
1586
1590
|
### Usage Example
|
|
1587
1591
|
|
|
1588
1592
|
```jsx
|
|
1589
|
-
<
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1593
|
+
<RadioButton
|
|
1594
|
+
name="gender"
|
|
1595
|
+
label="Gender"
|
|
1596
|
+
options={[
|
|
1597
|
+
{ label: 'Male', value: 'male' },
|
|
1598
|
+
{ label: 'Female', value: 'female' },
|
|
1599
|
+
{ label: 'Other', value: 'other' },
|
|
1600
|
+
]}
|
|
1601
|
+
value="male"
|
|
1602
|
+
onChange={(e) => console.log('Selected value:', e.target.value)}
|
|
1603
|
+
disabled={false}
|
|
1604
|
+
small={true}
|
|
1605
|
+
noMargin={false}
|
|
1606
|
+
/>
|
|
1601
1607
|
```
|
|
1602
1608
|
|
|
1603
1609
|
<hr style="border: none; border-right: 2px solid black; width: 100%; height: 1px;">
|
|
@@ -19,6 +19,7 @@ export interface IButtonProps {
|
|
|
19
19
|
loading?: boolean;
|
|
20
20
|
name?: string | null;
|
|
21
21
|
onClick?: (evt: MouseEvent<HTMLButtonElement>) => void;
|
|
22
|
+
/** @deprecated */
|
|
22
23
|
pill?: boolean;
|
|
23
24
|
round?: boolean;
|
|
24
25
|
small?: boolean;
|
|
@@ -30,10 +31,11 @@ export interface IButtonProps {
|
|
|
30
31
|
warning?: string;
|
|
31
32
|
testId?: string;
|
|
32
33
|
tooltip?: ReactNode | string;
|
|
34
|
+
/** @deprecated */
|
|
33
35
|
inverted?: boolean;
|
|
34
36
|
component?: React.ElementType;
|
|
35
37
|
url?: string;
|
|
36
38
|
tabIndex?: number;
|
|
37
39
|
}
|
|
38
|
-
export declare const Button:
|
|
40
|
+
export declare const Button: React.ForwardRefExoticComponent<IButtonProps & React.RefAttributes<HTMLElement>>;
|
|
39
41
|
//# sourceMappingURL=button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/components/button/button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAE,SAAS,EAAc,MAAM,OAAO,CAAC;AAEjE,OAAO,EAAqB,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAMlE,OAAO,EAAc,WAAW,EAAE,MAAM,SAAS,CAAC;AAElD,MAAM,WAAW,0BAA0B;IACzC,QAAQ,EAAE,SAAS,CAAC;IACpB,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;CAC9B;
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/components/button/button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAE,SAAS,EAAc,MAAM,OAAO,CAAC;AAEjE,OAAO,EAAqB,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAMlE,OAAO,EAAc,WAAW,EAAE,MAAM,SAAS,CAAC;AAElD,MAAM,WAAW,0BAA0B;IACzC,QAAQ,EAAE,SAAS,CAAC;IACpB,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;CAC9B;AAaD,MAAM,WAAW,YAAY;IAC3B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,UAAU,CAAC,EAAE,WAAW,CAAC;IACzB,IAAI,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;IAC1B,SAAS,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;IAC/B,KAAK,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,IAAI,CAAC;IAClC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,OAAO,CAAC,EAAE,CAAC,GAAG,EAAE,UAAU,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IACvD,kBAAkB;IAClB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,WAAW,GAAG,MAAM,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;IAC7B,kBAAkB;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IAC9B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,MAAM,kFAgIlB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"check-box.d.ts","sourceRoot":"","sources":["../../../src/components/check-box/check-box.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
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"}
|
|
@@ -2,9 +2,8 @@ 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:
|
|
5
|
+
export declare const TestKeys: () => import("react/jsx-runtime").JSX.Element[];
|
|
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>;
|
|
10
9
|
//# 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,
|
|
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,iDAcpB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,OAAO,CAAC,cAAc,CAUxC,CAAC;AAeF,eAAO,MAAM,YAAY,EAAE,OAAO,CAAC,cAAc,CAWhD,CAAC;AAUF,eAAO,MAAM,eAAe,EAAE,OAAO,CAAC,cAAc,CAkCnD,CAAC"}
|
|
@@ -14,5 +14,5 @@ export interface IPopoverProps {
|
|
|
14
14
|
onToggle?: (isOpen: boolean) => void;
|
|
15
15
|
toggleOnTriggerClick?: boolean;
|
|
16
16
|
}
|
|
17
|
-
export declare const Popover: (
|
|
17
|
+
export declare const Popover: ({ children, content, placement, closeOnOutsideClick, fullWidth, showCloseButton, testId, disabled, isOpen: externalIsOpen, onToggle: externalOnToggle, toggleOnTriggerClick, }: IPopoverProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
18
18
|
//# sourceMappingURL=popover.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../../src/components/popover/popover.tsx"],"names":[],"mappings":"AAAA,OAAc,
|
|
1
|
+
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../../src/components/popover/popover.tsx"],"names":[],"mappings":"AAAA,OAAc,EAIZ,SAAS,EAMV,MAAM,OAAO,CAAC;AAOf,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAanD,MAAM,WAAW,aAAa;IAC5B,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;IACrC,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAChC;AAED,eAAO,MAAM,OAAO,GAAI,gLAYrB,aAAa,mDA6Hf,CAAC"}
|
|
@@ -5,6 +5,7 @@ export default _default;
|
|
|
5
5
|
export declare const Default: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react-vite').ReactRenderer, IPopoverProps>;
|
|
6
6
|
export declare const InputTrigger: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react-vite').ReactRenderer, IPopoverProps>;
|
|
7
7
|
export declare const CloseButton: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react-vite').ReactRenderer, IPopoverProps>;
|
|
8
|
+
export declare const Placement: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react-vite').ReactRenderer, IPopoverProps>;
|
|
8
9
|
export declare const Disabled: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react-vite').ReactRenderer, IPopoverProps>;
|
|
9
10
|
export declare const ExternalControl: StoryFn<IPopoverProps>;
|
|
10
11
|
//# sourceMappingURL=popover.stories.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"popover.stories.d.ts","sourceRoot":"","sources":["../../../src/components/popover/popover.stories.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAGtD,OAAO,EAAE,aAAa,EAAW,MAAM,WAAW,CAAC;wBA6C9C,IAAI;AAhBT,wBAgBU;AAIV,eAAO,MAAM,OAAO,iHAAoB,CAAC;AAEzC,eAAO,MAAM,YAAY,iHAAoB,CAAC;AAK9C,eAAO,MAAM,WAAW,iHAAoB,CAAC;AAM7C,eAAO,MAAM,QAAQ,iHAAoB,CAAC;AAK1C,eAAO,MAAM,eAAe,EAAE,OAAO,CAAC,aAAa,CAelD,CAAC"}
|
|
1
|
+
{"version":3,"file":"popover.stories.d.ts","sourceRoot":"","sources":["../../../src/components/popover/popover.stories.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAGtD,OAAO,EAAE,aAAa,EAAW,MAAM,WAAW,CAAC;wBA6C9C,IAAI;AAhBT,wBAgBU;AAIV,eAAO,MAAM,OAAO,iHAAoB,CAAC;AAEzC,eAAO,MAAM,YAAY,iHAAoB,CAAC;AAK9C,eAAO,MAAM,WAAW,iHAAoB,CAAC;AAM7C,eAAO,MAAM,SAAS,iHAAoB,CAAC;AAM3C,eAAO,MAAM,QAAQ,iHAAoB,CAAC;AAK1C,eAAO,MAAM,eAAe,EAAE,OAAO,CAAC,aAAa,CAelD,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Meta, StoryFn } from '@storybook/react-vite';
|
|
2
|
+
import { IPopoverProps } from './popover';
|
|
3
|
+
declare const _default: Meta;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const Test: StoryFn<IPopoverProps>;
|
|
6
|
+
export declare const TestFlipNearViewportEdge: {
|
|
7
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
play({ canvasElement, }: {
|
|
9
|
+
canvasElement: HTMLElement;
|
|
10
|
+
}): Promise<void>;
|
|
11
|
+
};
|
|
12
|
+
export declare const TestFlipNearViewportBottom: {
|
|
13
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
play({ canvasElement, }: {
|
|
15
|
+
canvasElement: HTMLElement;
|
|
16
|
+
}): Promise<void>;
|
|
17
|
+
};
|
|
18
|
+
//# sourceMappingURL=popover.test-case.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"popover.test-case.stories.d.ts","sourceRoot":"","sources":["../../../src/components/popover/popover.test-case.stories.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,EAAE,aAAa,EAAW,MAAM,WAAW,CAAC;wBAQ9C,IAAI;AAJT,wBAIU;AAEV,eAAO,MAAM,IAAI,EAAE,OAAO,CAAC,aAAa,CAAmC,CAAC;AAkD5E,eAAO,MAAM,wBAAwB;;6BAalC;QACD,aAAa,EAAE,WAAW,CAAC;KAC5B;CALA,CAAC;AAmBF,eAAO,MAAM,0BAA0B;;6BAapC;QACD,aAAa,EAAE,WAAW,CAAC;KAC5B;CALA,CAAC"}
|
|
@@ -7,6 +7,8 @@ export interface IRadioButtonOption {
|
|
|
7
7
|
testId?: string;
|
|
8
8
|
helpText?: string;
|
|
9
9
|
onClickHelp?: (evt: MouseEvent<HTMLButtonElement>) => void;
|
|
10
|
+
name?: string;
|
|
11
|
+
checked?: boolean;
|
|
10
12
|
disabled?: boolean;
|
|
11
13
|
textTransform?: TTextTransform;
|
|
12
14
|
}
|
|
@@ -20,7 +22,10 @@ export interface IRadioButtonProps {
|
|
|
20
22
|
small?: boolean;
|
|
21
23
|
onChange?: TChangeEventHandler;
|
|
22
24
|
noMargin?: boolean;
|
|
23
|
-
|
|
25
|
+
mainLabel?: string;
|
|
26
|
+
onClick?: (target: HTMLInputElement) => void;
|
|
27
|
+
radioButtonsData?: IRadioButtonOption[];
|
|
28
|
+
classForContainer?: 'grouped fields' | 'inline fields';
|
|
24
29
|
}
|
|
25
|
-
export declare const RadioButton: ({ name, label, options: rawOptions, value: rawValue, onChange, disabled, small, noMargin, inline,
|
|
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;
|
|
26
31
|
//# 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,EACL,mBAAmB,EACnB,eAAe,EAChB,MAAM,iCAAiC,CAAC;AAKzC,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;
|
|
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,EACL,mBAAmB,EACnB,eAAe,EAChB,MAAM,iCAAiC,CAAC;AAKzC,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,4CA0EnB,CAAC"}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import { Meta
|
|
1
|
+
import { Meta } 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;
|
|
7
5
|
//# 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,
|
|
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,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
|
-
|
|
5
|
-
name
|
|
4
|
+
interface IRadioInputProps {
|
|
5
|
+
name: TStringOrNumber;
|
|
6
6
|
label?: TStringOrNumber;
|
|
7
7
|
value: TStringOrNumber;
|
|
8
|
-
selected
|
|
8
|
+
selected: boolean;
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
small?: boolean;
|
|
11
11
|
onChange?: (evt: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
@@ -16,4 +16,5 @@ export 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 {};
|
|
19
20
|
//# 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,
|
|
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,4CAgClB,CAAC"}
|
|
@@ -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;
|
|
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,EAEL,mBAAmB,EACpB,MAAM,iCAAiC,CAAC;AAIzC,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"}
|
|
@@ -2,9 +2,7 @@ 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>;
|
|
6
5
|
export declare const TestClicked: StoryFn<IToggleProps>;
|
|
7
6
|
export declare const Test: StoryFn<IToggleProps>;
|
|
8
7
|
export declare const TestDisabled: StoryFn<IToggleProps>;
|
|
9
|
-
export declare const TestStandalone: StoryFn<IToggleProps>;
|
|
10
8
|
//# 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,
|
|
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"}
|