@yamada-ui/checkbox 0.4.3 → 0.5.1
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/dist/checkbox-group.d.mts +1 -1
- package/dist/checkbox-group.d.ts +1 -1
- package/dist/checkbox-group.js +4 -4
- package/dist/checkbox-group.mjs +1 -1
- package/dist/checkbox.d.mts +3 -3
- package/dist/checkbox.d.ts +3 -3
- package/dist/checkbox.js +4 -4
- package/dist/checkbox.mjs +1 -1
- package/dist/{chunk-KKEQBJ6H.mjs → chunk-WSHGRNGF.mjs} +4 -4
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
|
@@ -49,7 +49,7 @@ declare const useCheckboxGroup: <Y extends string | number = string>({ isNative,
|
|
|
49
49
|
onChange: (ev: Y | ChangeEvent<HTMLInputElement>) => void;
|
|
50
50
|
}>;
|
|
51
51
|
};
|
|
52
|
-
type UseCheckboxGroupReturn = ReturnType<typeof useCheckboxGroup
|
|
52
|
+
type UseCheckboxGroupReturn<Y extends string | number = string> = ReturnType<typeof useCheckboxGroup<Y>>;
|
|
53
53
|
type CheckboxGroupProps<Y extends string | number = string> = ThemeProps<"Checkbox"> & Omit<FlexProps, "onChange"> & UseCheckboxGroupProps<Y> & FormControlOptions & {
|
|
54
54
|
/**
|
|
55
55
|
* If provided, generate checkboxes based on items.
|
package/dist/checkbox-group.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ declare const useCheckboxGroup: <Y extends string | number = string>({ isNative,
|
|
|
49
49
|
onChange: (ev: Y | ChangeEvent<HTMLInputElement>) => void;
|
|
50
50
|
}>;
|
|
51
51
|
};
|
|
52
|
-
type UseCheckboxGroupReturn = ReturnType<typeof useCheckboxGroup
|
|
52
|
+
type UseCheckboxGroupReturn<Y extends string | number = string> = ReturnType<typeof useCheckboxGroup<Y>>;
|
|
53
53
|
type CheckboxGroupProps<Y extends string | number = string> = ThemeProps<"Checkbox"> & Omit<FlexProps, "onChange"> & UseCheckboxGroupProps<Y> & FormControlOptions & {
|
|
54
54
|
/**
|
|
55
55
|
* If provided, generate checkboxes based on items.
|
package/dist/checkbox-group.js
CHANGED
|
@@ -45,7 +45,7 @@ var useCheckbox = (props) => {
|
|
|
45
45
|
id,
|
|
46
46
|
name,
|
|
47
47
|
value,
|
|
48
|
-
|
|
48
|
+
defaultIsChecked,
|
|
49
49
|
tabIndex,
|
|
50
50
|
required,
|
|
51
51
|
disabled,
|
|
@@ -59,7 +59,7 @@ var useCheckbox = (props) => {
|
|
|
59
59
|
const [isActive, setActive] = (0, import_react.useState)(false);
|
|
60
60
|
const inputRef = (0, import_react.useRef)(null);
|
|
61
61
|
const [isLabel, setIsLabel] = (0, import_react.useState)(true);
|
|
62
|
-
const [isChecked, setIsChecked] = (0, import_react.useState)(!!
|
|
62
|
+
const [isChecked, setIsChecked] = (0, import_react.useState)(!!defaultIsChecked);
|
|
63
63
|
const isControlled = props.isChecked !== void 0;
|
|
64
64
|
const checked = isControlled ? props.isChecked : isChecked;
|
|
65
65
|
const onChange = (0, import_utils.useCallbackRef)(
|
|
@@ -106,7 +106,7 @@ var useCheckbox = (props) => {
|
|
|
106
106
|
var _a;
|
|
107
107
|
if (!((_a = inputRef.current) == null ? void 0 : _a.form))
|
|
108
108
|
return;
|
|
109
|
-
inputRef.current.form.onreset = () => setIsChecked(!!
|
|
109
|
+
inputRef.current.form.onreset = () => setIsChecked(!!defaultIsChecked);
|
|
110
110
|
}, []);
|
|
111
111
|
(0, import_utils.useSafeLayoutEffect)(() => {
|
|
112
112
|
if (!inputRef.current)
|
|
@@ -316,7 +316,7 @@ var Checkbox = (0, import_react.forwardRef)(
|
|
|
316
316
|
"name",
|
|
317
317
|
"value",
|
|
318
318
|
"defaultValue",
|
|
319
|
-
"
|
|
319
|
+
"defaultIsChecked",
|
|
320
320
|
"isChecked",
|
|
321
321
|
"isIndeterminate",
|
|
322
322
|
"onChange",
|
package/dist/checkbox-group.mjs
CHANGED
package/dist/checkbox.d.mts
CHANGED
|
@@ -22,7 +22,7 @@ type UseCheckboxProps<Y extends string | number = string> = FormControlOptions &
|
|
|
22
22
|
*
|
|
23
23
|
* @default false
|
|
24
24
|
*/
|
|
25
|
-
|
|
25
|
+
defaultIsChecked?: boolean;
|
|
26
26
|
/**
|
|
27
27
|
* If `true`, the checkbox will be checked.
|
|
28
28
|
*
|
|
@@ -82,7 +82,7 @@ type CheckboxOptions = {
|
|
|
82
82
|
labelProps?: HTMLUIProps<"span">;
|
|
83
83
|
};
|
|
84
84
|
type CheckboxProps<Y extends string | number = string> = Omit<HTMLUIProps<"label">, keyof UseCheckboxProps | "checked"> & ThemeProps<"Checkbox"> & UseCheckboxProps<Y> & CheckboxOptions;
|
|
85
|
-
declare const Checkbox: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "
|
|
85
|
+
declare const Checkbox: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "id" | "tabIndex" | "onFocus" | "onBlur" | "onChange" | keyof FormControlOptions | "name" | "value" | "defaultIsChecked" | "isChecked" | "isIndeterminate" | "checked"> & ThemeProps<"Checkbox"> & FormControlOptions & {
|
|
86
86
|
/**
|
|
87
87
|
* id assigned to input.
|
|
88
88
|
*/
|
|
@@ -100,7 +100,7 @@ declare const Checkbox: (<Y extends string | number = string>(props: Omit<HTMLUI
|
|
|
100
100
|
*
|
|
101
101
|
* @default false
|
|
102
102
|
*/
|
|
103
|
-
|
|
103
|
+
defaultIsChecked?: boolean | undefined;
|
|
104
104
|
/**
|
|
105
105
|
* If `true`, the checkbox will be checked.
|
|
106
106
|
*
|
package/dist/checkbox.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ type UseCheckboxProps<Y extends string | number = string> = FormControlOptions &
|
|
|
22
22
|
*
|
|
23
23
|
* @default false
|
|
24
24
|
*/
|
|
25
|
-
|
|
25
|
+
defaultIsChecked?: boolean;
|
|
26
26
|
/**
|
|
27
27
|
* If `true`, the checkbox will be checked.
|
|
28
28
|
*
|
|
@@ -82,7 +82,7 @@ type CheckboxOptions = {
|
|
|
82
82
|
labelProps?: HTMLUIProps<"span">;
|
|
83
83
|
};
|
|
84
84
|
type CheckboxProps<Y extends string | number = string> = Omit<HTMLUIProps<"label">, keyof UseCheckboxProps | "checked"> & ThemeProps<"Checkbox"> & UseCheckboxProps<Y> & CheckboxOptions;
|
|
85
|
-
declare const Checkbox: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "
|
|
85
|
+
declare const Checkbox: (<Y extends string | number = string>(props: Omit<HTMLUIProps<"label">, "id" | "tabIndex" | "onFocus" | "onBlur" | "onChange" | keyof FormControlOptions | "name" | "value" | "defaultIsChecked" | "isChecked" | "isIndeterminate" | "checked"> & ThemeProps<"Checkbox"> & FormControlOptions & {
|
|
86
86
|
/**
|
|
87
87
|
* id assigned to input.
|
|
88
88
|
*/
|
|
@@ -100,7 +100,7 @@ declare const Checkbox: (<Y extends string | number = string>(props: Omit<HTMLUI
|
|
|
100
100
|
*
|
|
101
101
|
* @default false
|
|
102
102
|
*/
|
|
103
|
-
|
|
103
|
+
defaultIsChecked?: boolean | undefined;
|
|
104
104
|
/**
|
|
105
105
|
* If `true`, the checkbox will be checked.
|
|
106
106
|
*
|
package/dist/checkbox.js
CHANGED
|
@@ -143,7 +143,7 @@ var useCheckbox = (props) => {
|
|
|
143
143
|
id,
|
|
144
144
|
name,
|
|
145
145
|
value,
|
|
146
|
-
|
|
146
|
+
defaultIsChecked,
|
|
147
147
|
tabIndex,
|
|
148
148
|
required,
|
|
149
149
|
disabled,
|
|
@@ -157,7 +157,7 @@ var useCheckbox = (props) => {
|
|
|
157
157
|
const [isActive, setActive] = (0, import_react2.useState)(false);
|
|
158
158
|
const inputRef = (0, import_react2.useRef)(null);
|
|
159
159
|
const [isLabel, setIsLabel] = (0, import_react2.useState)(true);
|
|
160
|
-
const [isChecked, setIsChecked] = (0, import_react2.useState)(!!
|
|
160
|
+
const [isChecked, setIsChecked] = (0, import_react2.useState)(!!defaultIsChecked);
|
|
161
161
|
const isControlled = props.isChecked !== void 0;
|
|
162
162
|
const checked = isControlled ? props.isChecked : isChecked;
|
|
163
163
|
const onChange = (0, import_utils2.useCallbackRef)(
|
|
@@ -204,7 +204,7 @@ var useCheckbox = (props) => {
|
|
|
204
204
|
var _a;
|
|
205
205
|
if (!((_a = inputRef.current) == null ? void 0 : _a.form))
|
|
206
206
|
return;
|
|
207
|
-
inputRef.current.form.onreset = () => setIsChecked(!!
|
|
207
|
+
inputRef.current.form.onreset = () => setIsChecked(!!defaultIsChecked);
|
|
208
208
|
}, []);
|
|
209
209
|
(0, import_utils2.useSafeLayoutEffect)(() => {
|
|
210
210
|
if (!inputRef.current)
|
|
@@ -414,7 +414,7 @@ var Checkbox = (0, import_react2.forwardRef)(
|
|
|
414
414
|
"name",
|
|
415
415
|
"value",
|
|
416
416
|
"defaultValue",
|
|
417
|
-
"
|
|
417
|
+
"defaultIsChecked",
|
|
418
418
|
"isChecked",
|
|
419
419
|
"isIndeterminate",
|
|
420
420
|
"onChange",
|
package/dist/checkbox.mjs
CHANGED
|
@@ -147,7 +147,7 @@ var useCheckbox = (props) => {
|
|
|
147
147
|
id,
|
|
148
148
|
name,
|
|
149
149
|
value,
|
|
150
|
-
|
|
150
|
+
defaultIsChecked,
|
|
151
151
|
tabIndex,
|
|
152
152
|
required,
|
|
153
153
|
disabled,
|
|
@@ -161,7 +161,7 @@ var useCheckbox = (props) => {
|
|
|
161
161
|
const [isActive, setActive] = useState(false);
|
|
162
162
|
const inputRef = useRef(null);
|
|
163
163
|
const [isLabel, setIsLabel] = useState(true);
|
|
164
|
-
const [isChecked, setIsChecked] = useState(!!
|
|
164
|
+
const [isChecked, setIsChecked] = useState(!!defaultIsChecked);
|
|
165
165
|
const isControlled = props.isChecked !== void 0;
|
|
166
166
|
const checked = isControlled ? props.isChecked : isChecked;
|
|
167
167
|
const onChange = useCallbackRef2(
|
|
@@ -208,7 +208,7 @@ var useCheckbox = (props) => {
|
|
|
208
208
|
var _a;
|
|
209
209
|
if (!((_a = inputRef.current) == null ? void 0 : _a.form))
|
|
210
210
|
return;
|
|
211
|
-
inputRef.current.form.onreset = () => setIsChecked(!!
|
|
211
|
+
inputRef.current.form.onreset = () => setIsChecked(!!defaultIsChecked);
|
|
212
212
|
}, []);
|
|
213
213
|
useSafeLayoutEffect(() => {
|
|
214
214
|
if (!inputRef.current)
|
|
@@ -418,7 +418,7 @@ var Checkbox = forwardRef2(
|
|
|
418
418
|
"name",
|
|
419
419
|
"value",
|
|
420
420
|
"defaultValue",
|
|
421
|
-
"
|
|
421
|
+
"defaultIsChecked",
|
|
422
422
|
"isChecked",
|
|
423
423
|
"isIndeterminate",
|
|
424
424
|
"onChange",
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { Checkbox, CheckboxIcon, CheckboxIconProps, CheckboxProps, UseCheckboxProps, UseCheckboxReturn, useCheckbox } from './checkbox.mjs';
|
|
2
|
-
export { CheckboxGroup, CheckboxGroupProps, CheckboxItem, UseCheckboxGroupProps, useCheckboxGroup } from './checkbox-group.mjs';
|
|
2
|
+
export { CheckboxGroup, CheckboxGroupProps, CheckboxItem, UseCheckboxGroupProps, UseCheckboxGroupReturn, useCheckboxGroup } from './checkbox-group.mjs';
|
|
3
3
|
import '@yamada-ui/core';
|
|
4
4
|
import '@yamada-ui/form-control';
|
|
5
5
|
import '@yamada-ui/motion';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { Checkbox, CheckboxIcon, CheckboxIconProps, CheckboxProps, UseCheckboxProps, UseCheckboxReturn, useCheckbox } from './checkbox.js';
|
|
2
|
-
export { CheckboxGroup, CheckboxGroupProps, CheckboxItem, UseCheckboxGroupProps, useCheckboxGroup } from './checkbox-group.js';
|
|
2
|
+
export { CheckboxGroup, CheckboxGroupProps, CheckboxItem, UseCheckboxGroupProps, UseCheckboxGroupReturn, useCheckboxGroup } from './checkbox-group.js';
|
|
3
3
|
import '@yamada-ui/core';
|
|
4
4
|
import '@yamada-ui/form-control';
|
|
5
5
|
import '@yamada-ui/motion';
|
package/dist/index.js
CHANGED
|
@@ -147,7 +147,7 @@ var useCheckbox = (props) => {
|
|
|
147
147
|
id,
|
|
148
148
|
name,
|
|
149
149
|
value,
|
|
150
|
-
|
|
150
|
+
defaultIsChecked,
|
|
151
151
|
tabIndex,
|
|
152
152
|
required,
|
|
153
153
|
disabled,
|
|
@@ -161,7 +161,7 @@ var useCheckbox = (props) => {
|
|
|
161
161
|
const [isActive, setActive] = (0, import_react2.useState)(false);
|
|
162
162
|
const inputRef = (0, import_react2.useRef)(null);
|
|
163
163
|
const [isLabel, setIsLabel] = (0, import_react2.useState)(true);
|
|
164
|
-
const [isChecked, setIsChecked] = (0, import_react2.useState)(!!
|
|
164
|
+
const [isChecked, setIsChecked] = (0, import_react2.useState)(!!defaultIsChecked);
|
|
165
165
|
const isControlled = props.isChecked !== void 0;
|
|
166
166
|
const checked = isControlled ? props.isChecked : isChecked;
|
|
167
167
|
const onChange = (0, import_utils2.useCallbackRef)(
|
|
@@ -208,7 +208,7 @@ var useCheckbox = (props) => {
|
|
|
208
208
|
var _a;
|
|
209
209
|
if (!((_a = inputRef.current) == null ? void 0 : _a.form))
|
|
210
210
|
return;
|
|
211
|
-
inputRef.current.form.onreset = () => setIsChecked(!!
|
|
211
|
+
inputRef.current.form.onreset = () => setIsChecked(!!defaultIsChecked);
|
|
212
212
|
}, []);
|
|
213
213
|
(0, import_utils2.useSafeLayoutEffect)(() => {
|
|
214
214
|
if (!inputRef.current)
|
|
@@ -418,7 +418,7 @@ var Checkbox = (0, import_react2.forwardRef)(
|
|
|
418
418
|
"name",
|
|
419
419
|
"value",
|
|
420
420
|
"defaultValue",
|
|
421
|
-
"
|
|
421
|
+
"defaultIsChecked",
|
|
422
422
|
"isChecked",
|
|
423
423
|
"isIndeterminate",
|
|
424
424
|
"onChange",
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/checkbox",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Yamada UI checkbox component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yamada",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@yamada-ui/form-control": "0.3.20",
|
|
42
42
|
"@yamada-ui/motion": "0.4.17",
|
|
43
43
|
"@yamada-ui/use-focus-visible": "0.2.5",
|
|
44
|
-
"@yamada-ui/use-controllable-state": "0.
|
|
44
|
+
"@yamada-ui/use-controllable-state": "0.4.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"react": "^18.0.0",
|