@team_yumi/ramen 1.0.0-next.20240227-5ae36a0-2e30918df5296c9d3eba0e407289dc87 → 1.0.0-next.20240227-f74b994-ee8958a50fc4918616d66958e5595b95

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team_yumi/ramen",
3
- "version": "1.0.0-next.20240227-5ae36a0-2e30918df5296c9d3eba0e407289dc87",
3
+ "version": "1.0.0-next.20240227-f74b994-ee8958a50fc4918616d66958e5595b95",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "react": ">=16.8.0"
@@ -1,2 +1,2 @@
1
- import Root from "./root";
1
+ import Root from './root';
2
2
  export default Root;
@@ -0,0 +1,2 @@
1
+ import Root from './root';
2
+ export default Root;
@@ -0,0 +1,15 @@
1
+ import { FC } from 'react';
2
+ export type Options = {
3
+ value: string;
4
+ label: string;
5
+ };
6
+ export interface Props {
7
+ selectedOptions?: string[];
8
+ options: Options[];
9
+ onChange: (checkedItems: string[]) => void;
10
+ searchable?: boolean;
11
+ showSelectAll?: boolean;
12
+ selectAllText?: string;
13
+ }
14
+ export declare const XGroupCheckBox: FC<Props>;
15
+ export default XGroupCheckBox;
@@ -13,6 +13,7 @@ export interface IProps {
13
13
  columns?: number;
14
14
  values?: IValue[];
15
15
  onChange?: (values: IValue[]) => void;
16
+ disabled?: boolean;
16
17
  }
17
18
  declare const XCheckboxGroup: React.FC<IProps>;
18
19
  export default XCheckboxGroup;
@@ -78,6 +78,7 @@ declare const _default: {
78
78
  XGroupRadioButton: import("react").FC<import("./components/mobile/x-group-radio-button/root").IProps>;
79
79
  XBottomSheet: import("react").FC<import("./components/mobile/x-bottom-sheet/root").IProps>;
80
80
  XRadioButtonOption: import("react").FC<import("./components/mobile/x-radio-button-option/root").IProps>;
81
+ XGroupCheckBox: import("react").FC<import("./components/mobile/x-group-checkbox/root").Props>;
81
82
  XCardCounter: import("react").FC<import("./components/core/x-card-counter/root").IProps>;
82
83
  XBox: import("react").FC<import("./components/core/x-box/root").IProps>;
83
84
  XText: import("react").FC<import("./components/core/x-text/root").IProps>;
@@ -206,3 +207,4 @@ export { default as XOptionRadioButton } from './components/mobile/x-option-radi
206
207
  export { default as XGroupRadioButton } from './components/mobile/x-group-radio-button';
207
208
  export { default as XBottomSheet } from './components/mobile/x-bottom-sheet';
208
209
  export { default as XRadioButtonOption } from './components/mobile/x-radio-button-option';
210
+ export { default as XGroupCheckBox } from './components/mobile/x-group-checkbox';