qlu-20-ui-library 1.1.232 → 1.1.233

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.
@@ -6,7 +6,7 @@ export interface AdvanceFilterTitleWindow {
6
6
  crossOnClick: () => void;
7
7
  getRange: (value: RangeObject) => void;
8
8
  applyToAllOnClick: (value: RangeObject) => void;
9
- onSelectClick: () => void;
9
+ onSelectClick?: () => void;
10
10
  truncateTitleLength?: number;
11
11
  showApplyToAllButton?: boolean;
12
12
  isSelected?: boolean;
@@ -7,7 +7,7 @@ export interface AdvanceFilterTitleWindow {
7
7
  crossOnClick: () => void;
8
8
  getRange: (value: RangeObject) => void;
9
9
  applyToAllOnClick: (value: RangeObject) => void;
10
- onSelectClick: () => void;
10
+ onSelectClick?: () => void;
11
11
  truncateTitleLength?: number;
12
12
  showApplyToAllButton?: boolean;
13
13
  isSelected?: boolean;
@@ -0,0 +1,6 @@
1
+ import type { StoryObj, Meta } from "@storybook/react";
2
+ import PrimaryRadioButton from "../components/PrimaryRadioButton";
3
+ declare const meta: Meta<typeof PrimaryRadioButton>;
4
+ export default meta;
5
+ type PrimaryButtonProps = StoryObj<typeof PrimaryRadioButton>;
6
+ export declare const Primary: PrimaryButtonProps;
@@ -0,0 +1,12 @@
1
+ import PrimaryRadioButton from "../components/PrimaryRadioButton";
2
+ const meta = {
3
+ title: "Button/PrimaryRadioButton",
4
+ component: PrimaryRadioButton,
5
+ };
6
+ export default meta;
7
+ export const Primary = {
8
+ args: {
9
+ onClick: () => { },
10
+ value: true,
11
+ },
12
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qlu-20-ui-library",
3
- "version": "1.1.232",
3
+ "version": "1.1.233",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",