Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
•
d4c0a6c
1
Parent(s):
cbbccfd
remove the safety belt
Browse files- package.json +2 -2
- src/components/uikit/default/button.tsx +2 -1
package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
{
|
2 |
"name": "@jbilcke-hf/clap-viewer",
|
3 |
-
"version": "0.0.
|
4 |
"private": true,
|
5 |
-
"description": "Clap Viewer - Visualize
|
6 |
"scripts": {
|
7 |
"dev": "next dev",
|
8 |
"build": "next build",
|
|
|
1 |
{
|
2 |
"name": "@jbilcke-hf/clap-viewer",
|
3 |
+
"version": "0.0.1",
|
4 |
"private": true,
|
5 |
+
"description": "Clap Viewer - Visualize screenplays and OpenClap files 🎞️",
|
6 |
"scripts": {
|
7 |
"dev": "next dev",
|
8 |
"build": "next build",
|
src/components/uikit/default/button.tsx
CHANGED
@@ -79,6 +79,7 @@ export type ButtonProperties = ContainerProperties & {
|
|
79 |
disabled?: boolean
|
80 |
}
|
81 |
|
|
|
82 |
export const Button: (props: ButtonProperties & RefAttributes<ComponentInternals>) => ReactNode = forwardRef(
|
83 |
({ children, variant = 'default', size = 'default', disabled = false, hover, ...props }, ref) => {
|
84 |
const {
|
@@ -123,4 +124,4 @@ export const Button: (props: ButtonProperties & RefAttributes<ComponentInternals
|
|
123 |
</Container>
|
124 |
)
|
125 |
},
|
126 |
-
)
|
|
|
79 |
disabled?: boolean
|
80 |
}
|
81 |
|
82 |
+
// eslint-disable-next-line
|
83 |
export const Button: (props: ButtonProperties & RefAttributes<ComponentInternals>) => ReactNode = forwardRef(
|
84 |
({ children, variant = 'default', size = 'default', disabled = false, hover, ...props }, ref) => {
|
85 |
const {
|
|
|
124 |
</Container>
|
125 |
)
|
126 |
},
|
127 |
+
)
|