@jamsrui/button 0.0.16 → 0.0.17

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +3 -3
  2. package/package.json +3 -3
package/dist/index.d.mts CHANGED
@@ -9,11 +9,11 @@ import '@jamsrui/utils';
9
9
  import '@jamsrui/core';
10
10
  import 'react';
11
11
 
12
- interface ButtonComponent {
12
+ interface Button {
13
13
  (props: ButtonRoot.Props): React.ReactNode;
14
14
  Loading: typeof ButtonLoading;
15
15
  }
16
- declare const Button: ButtonComponent;
16
+ declare const Button: Button;
17
17
  declare namespace Button {
18
18
  interface Props extends ButtonRoot.Props {
19
19
  }
@@ -21,4 +21,4 @@ declare namespace Button {
21
21
  }
22
22
  }
23
23
 
24
- export { Button, type ButtonComponent, ButtonConfig, ButtonLoading };
24
+ export { Button, ButtonConfig, ButtonLoading };
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@jamsrui/button",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "peerDependencies": {
5
5
  "react": ">=19",
6
6
  "react-dom": ">=19"
7
7
  },
8
8
  "dependencies": {
9
9
  "@jamsrui/hooks": "^0.0.15",
10
- "@jamsrui/utils": "^0.0.15",
11
- "@jamsrui/core": "^0.0.13"
10
+ "@jamsrui/core": "^0.0.13",
11
+ "@jamsrui/utils": "^0.0.15"
12
12
  },
13
13
  "exports": {
14
14
  ".": {