-
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.
- Loading branch information
1 parent
58f38b0
commit d493925
Showing
9 changed files
with
127 additions
and
122 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 |
---|---|---|
@@ -1,14 +1,8 @@ | ||
{ | ||
"version": "independent", | ||
"npmClient": "yarn", | ||
"npmClientArgs": [ | ||
"--frozen-lockfile" | ||
], | ||
"ignoreChanges": [ | ||
"**/stories/**", | ||
"**/*.md" | ||
], | ||
"packages": [ | ||
"packages/*" | ||
] | ||
"npmClientArgs": ["--frozen-lockfile"], | ||
"ignoreChanges": ["**/stories/**", "**/*.md"], | ||
"packages": ["packages/*"], | ||
"useWorkspaces": true | ||
} |
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,2 +1,2 @@ | ||
export { Paper } from './Alert'; | ||
export type { PaperProps } from './Alert'; | ||
export { Alert } from './Alert'; | ||
export type { AlertProps } from './Alert'; |
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 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 |
---|---|---|
@@ -1,4 +1,10 @@ | ||
import { CoPalette } from '../tokens'; | ||
import { FoundationPaletteColor, FoundationSemanticColor } from './CoFoundations'; | ||
|
||
export type CoColor = CoPalette | FoundationPaletteColor | FoundationSemanticColor | string; | ||
type RGB = `rgb(${number}, ${number}, ${number})`; | ||
type RGBA = `rgba(${number}, ${number}, ${number}, ${number})`; | ||
type HEX = `#${string}`; | ||
|
||
type Color = RGB | RGBA | HEX; | ||
|
||
export type CoColor = CoPalette | FoundationPaletteColor | FoundationSemanticColor | Color; |