@horang-corp/react-button-round 0.1.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/index.js +6875 -0
- package/index.d.ts +15 -0
- package/package.json +30 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { FC } from 'react'
|
|
2
|
+
import type { BoxProps } from '@horang-corp/react-system/jsx'
|
|
3
|
+
|
|
4
|
+
export interface ButtonRoundProps extends BoxProps {
|
|
5
|
+
[key: string]: unknown
|
|
6
|
+
Content?: string
|
|
7
|
+
Disabled?: string
|
|
8
|
+
handlers?: Record<string, any>
|
|
9
|
+
Size?: string
|
|
10
|
+
Style?: string
|
|
11
|
+
Theme?: string
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export declare const ButtonRound: FC<ButtonRoundProps>
|
|
15
|
+
export declare const impl: FC<ButtonRoundProps>
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@horang-corp/react-button-round",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./index.d.ts",
|
|
10
|
+
"import": "./dist/index.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"index.d.ts"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "vite build",
|
|
19
|
+
"pack:local": "pnpm pack"
|
|
20
|
+
},
|
|
21
|
+
"peerDependencies": {
|
|
22
|
+
"react": "^19",
|
|
23
|
+
"react-dom": "^19"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@horang-corp/react-icon": "^0.1.1",
|
|
27
|
+
"@horang-corp/react-interaction": "^0.1.1",
|
|
28
|
+
"@horang-corp/react-system": "^0.1.1"
|
|
29
|
+
}
|
|
30
|
+
}
|