-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed typo * tweaked Badge appearance * removed table border-radius, added dev script * wrap table columns to cater to unusually long non-breaking words (if present) * fixed version in dev script * Cleanup for Themer --------- Co-authored-by: Aswin V <[email protected]>
- Loading branch information
1 parent
7758d84
commit 5848b75
Showing
9 changed files
with
55 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
VERSION=3.3.34 | ||
npm run cleanup:mitosis-out && npm run build | ||
|
||
cd react | ||
npm unpublish --registry http://localhost:4873/ @boxyhq/react-ui@$VERSION | ||
npm publish --registry http://localhost:4873/ | ||
|
||
cd ../.. | ||
cd saas-app | ||
npm uninstall @boxyhq/react-ui && npm i --save-exact --registry http://localhost:4873/ @boxyhq/react-ui@$VERSION | ||
rm -rf .next |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
.tableContainer { | ||
border-width: 1px; | ||
border-radius: 4px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
export type Theme = { | ||
'--primary-color': string; | ||
'--primary-foreground-color': string; | ||
'--primary-hover': string; | ||
'--primary-active': string; | ||
'--primary-disabled': string; | ||
'--primary-color-50': string; | ||
'--primary-color-100': string; | ||
'--primary-color-200': string; | ||
'--primary-color-300': string; | ||
'--primary-color-500': string; | ||
'--primary-color-600': string; | ||
'--primary-color-700': string; | ||
'--primary-color-800': string; | ||
'--primary-color-900': string; | ||
'--primary-color-950': string; | ||
'--secondary-color': string; | ||
/* --secondary-color: "#27272a", dark mode */ | ||
'--primary-text-color': string; | ||
/* --primary-text-color: #fafafa, dark mode */ | ||
'--primary-text-color-500': string; | ||
'--ring-offset': string; | ||
'--ring-offset-width': string; | ||
'--ring-offset-color': string; | ||
/* --ring-offset-color: hsl(240 10 3.9), dark mode*/ | ||
'--ring-color': string; | ||
/* --ring-color: hsl(240 4.9% 83.9%), dark mode */ | ||
'--border-color': string; | ||
'--border-width': string; | ||
'--border-radius': string; | ||
'--alert-color-success': string; | ||
'--alert-color-info': string; | ||
'--alert-color-warning': string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
.tableContainer { | ||
border-width: 1px; | ||
border-radius: 4px; | ||
} |