@yamada-ui/close-button 0.1.11 → 0.2.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.
@@ -2,6 +2,11 @@ import * as _yamada_ui_core from '@yamada-ui/core';
2
2
  import { HTMLUIProps, ThemeProps } from '@yamada-ui/core';
3
3
 
4
4
  type CloseButtonOptions = {
5
+ /**
6
+ * If `true`, the button is disabled.
7
+ *
8
+ * @default false
9
+ */
5
10
  isDisabled?: boolean;
6
11
  };
7
12
  type CloseButtonProps = HTMLUIProps<'button'> & ThemeProps<'CloseButton'> & CloseButtonOptions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamada-ui/close-button",
3
- "version": "0.1.11",
3
+ "version": "0.2.1",
4
4
  "description": "Yamada UI close button component",
5
5
  "keywords": [
6
6
  "yamada",
@@ -35,9 +35,9 @@
35
35
  "url": "https://github.com/hirotomoyamada/yamada-ui/issues"
36
36
  },
37
37
  "dependencies": {
38
- "@yamada-ui/core": "0.3.0",
38
+ "@yamada-ui/core": "0.4.0",
39
39
  "@yamada-ui/utils": "0.1.1",
40
- "@yamada-ui/icon": "0.1.11"
40
+ "@yamada-ui/icon": "0.2.1"
41
41
  },
42
42
  "devDependencies": {
43
43
  "react": "^18.0.0",
@@ -71,6 +71,6 @@
71
71
  "build:fast": "tsup src",
72
72
  "clean": "rimraf dist .turbo",
73
73
  "typecheck": "tsc --noEmit",
74
- "gen:types": "tsx ../../../scripts/generate-types"
74
+ "gen:docs": "tsx ../../../scripts/generate-docs"
75
75
  }
76
76
  }