@yamada-ui/checkbox 1.3.4 → 1.3.5
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-card.d.mts +1 -1
- package/dist/checkbox-card.d.ts +1 -1
- package/dist/checkbox-context.d.mts +1 -1
- package/dist/checkbox-context.d.ts +1 -1
- package/dist/checkbox.d.mts +1 -1
- package/dist/checkbox.d.ts +1 -1
- package/dist/use-checkbox-group.d.mts +1 -1
- package/dist/use-checkbox-group.d.ts +1 -1
- package/package.json +8 -8
package/dist/checkbox-card.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HTMLUIProps, ThemeProps, ComponentArgs } from '@yamada-ui/core';
|
|
2
2
|
import { Merge } from '@yamada-ui/utils';
|
|
3
|
-
import {
|
|
3
|
+
import { ReactNode, ReactElement, InputHTMLAttributes, RefAttributes } from 'react';
|
|
4
4
|
import { CheckboxCardAddonProps } from './checkbox-card-addon.mjs';
|
|
5
5
|
import { CheckboxCardDescriptionProps } from './checkbox-card-description.mjs';
|
|
6
6
|
import { CheckboxCardLabelProps } from './checkbox-card-label.mjs';
|
package/dist/checkbox-card.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HTMLUIProps, ThemeProps, ComponentArgs } from '@yamada-ui/core';
|
|
2
2
|
import { Merge } from '@yamada-ui/utils';
|
|
3
|
-
import {
|
|
3
|
+
import { ReactNode, ReactElement, InputHTMLAttributes, RefAttributes } from 'react';
|
|
4
4
|
import { CheckboxCardAddonProps } from './checkbox-card-addon.js';
|
|
5
5
|
import { CheckboxCardDescriptionProps } from './checkbox-card-description.js';
|
|
6
6
|
import { CheckboxCardLabelProps } from './checkbox-card-label.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ChangeEvent, ReactElement } from 'react';
|
|
3
3
|
import { ThemeProps, CSSUIObject, PropGetter, HTMLUIProps } from '@yamada-ui/core';
|
|
4
4
|
import { FormControlOptions } from '@yamada-ui/form-control';
|
|
5
5
|
import { CheckboxCardProps } from './checkbox-card.mjs';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ChangeEvent, ReactElement } from 'react';
|
|
3
3
|
import { ThemeProps, CSSUIObject, PropGetter, HTMLUIProps } from '@yamada-ui/core';
|
|
4
4
|
import { FormControlOptions } from '@yamada-ui/form-control';
|
|
5
5
|
import { CheckboxCardProps } from './checkbox-card.js';
|
package/dist/checkbox.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import { HTMLUIProps, ThemeProps, ComponentArgs, FC } from '@yamada-ui/core';
|
|
|
2
2
|
import { FormControlOptions } from '@yamada-ui/form-control';
|
|
3
3
|
import { MotionProps } from '@yamada-ui/motion';
|
|
4
4
|
import { Merge } from '@yamada-ui/utils';
|
|
5
|
-
import {
|
|
5
|
+
import { ReactNode, ReactElement, InputHTMLAttributes, Ref } from 'react';
|
|
6
6
|
import { UseCheckboxProps } from './use-checkbox.mjs';
|
|
7
7
|
|
|
8
8
|
interface CheckboxOptions {
|
package/dist/checkbox.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { HTMLUIProps, ThemeProps, ComponentArgs, FC } from '@yamada-ui/core';
|
|
|
2
2
|
import { FormControlOptions } from '@yamada-ui/form-control';
|
|
3
3
|
import { MotionProps } from '@yamada-ui/motion';
|
|
4
4
|
import { Merge } from '@yamada-ui/utils';
|
|
5
|
-
import {
|
|
5
|
+
import { ReactNode, ReactElement, InputHTMLAttributes, Ref } from 'react';
|
|
6
6
|
import { UseCheckboxProps } from './use-checkbox.js';
|
|
7
7
|
|
|
8
8
|
interface CheckboxOptions {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ChangeEvent, ReactNode } from 'react';
|
|
3
3
|
import { PropGetter } from '@yamada-ui/core';
|
|
4
4
|
import { Dict } from '@yamada-ui/utils';
|
|
5
5
|
import { CheckboxProps } from './checkbox.mjs';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ChangeEvent, ReactNode } from 'react';
|
|
3
3
|
import { PropGetter } from '@yamada-ui/core';
|
|
4
4
|
import { Dict } from '@yamada-ui/utils';
|
|
5
5
|
import { CheckboxProps } from './checkbox.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/checkbox",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"description": "Yamada UI checkbox component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yamada",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"url": "https://github.com/yamada-ui/yamada-ui/issues"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@yamada-ui/core": "1.17.
|
|
40
|
-
"@yamada-ui/form-control": "2.1.
|
|
41
|
-
"@yamada-ui/layouts": "1.4.
|
|
42
|
-
"@yamada-ui/motion": "2.3.
|
|
43
|
-
"@yamada-ui/use-controllable-state": "1.0.
|
|
44
|
-
"@yamada-ui/use-focus-visible": "1.1.
|
|
45
|
-
"@yamada-ui/utils": "1.7.
|
|
39
|
+
"@yamada-ui/core": "1.17.2",
|
|
40
|
+
"@yamada-ui/form-control": "2.1.14",
|
|
41
|
+
"@yamada-ui/layouts": "1.4.2",
|
|
42
|
+
"@yamada-ui/motion": "2.3.2",
|
|
43
|
+
"@yamada-ui/use-controllable-state": "1.0.28",
|
|
44
|
+
"@yamada-ui/use-focus-visible": "1.1.15",
|
|
45
|
+
"@yamada-ui/utils": "1.7.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"clean-package": "2.2.0",
|