-
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.
Signed-off-by: hxtree <[email protected]>
- Loading branch information
Showing
23 changed files
with
207 additions
and
194 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
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,8 @@ | ||
export type SelectChangeEvent<T = string> = | ||
| (Event & { | ||
target: { | ||
value: T; | ||
name: string; | ||
}; | ||
}) | ||
| React.ChangeEvent<HTMLInputElement>; |
2 changes: 1 addition & 1 deletion
2
...esign-system/src/components/Mui/Alert.tsx → ...ign-system/src/components/Alert/Alert.tsx
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
File renamed without changes.
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
11 changes: 11 additions & 0 deletions
11
services/design-system/src/components/CodeSnippet/CodeSnippetProps.ts
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,11 @@ | ||
export enum CodeSnippetLanguages { | ||
JSON = 'json', | ||
HTML = 'html', | ||
CSS = 'css', | ||
JAVASCRIPT = 'javascript', | ||
} | ||
|
||
export type CodeSnippetProps = { | ||
data: string; | ||
language: CodeSnippetLanguages; | ||
}; |
4 changes: 3 additions & 1 deletion
4
services/design-system/src/components/CodeSnippet/hljs-custom.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export enum OrientationType { | ||
RIGHT = 'RIGHT', | ||
LEFT = 'LEFT', | ||
} | ||
|
||
export type GaugeProps = { | ||
width: number; | ||
height: number; | ||
color?: string; | ||
strokeWidth?: number; | ||
orientation?: OrientationType; | ||
current?: number; | ||
max?: number; | ||
boundingBox: boolean; | ||
}; |
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
2 changes: 1 addition & 1 deletion
2
...design-system/src/components/Mui/Link.tsx → ...esign-system/src/components/Link/Link.tsx
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
2 changes: 1 addition & 1 deletion
2
...NonInteractiveLink/NonInteractiveLink.tsx → ...rc/components/Link/NonInteractiveLink.tsx
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
105 changes: 0 additions & 105 deletions
105
services/design-system/src/components/Mui/Typography.tsx
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export { | ||
Drawer, | ||
CssBaseline, | ||
Toolbar, | ||
List, | ||
Divider, | ||
IconButton, | ||
ListItem, | ||
ListItemButton, | ||
FormControl, | ||
InputLabel, | ||
Select, | ||
CardContent, | ||
Card, | ||
Container, | ||
OutlinedInput, | ||
MenuItem, | ||
ListItemIcon, | ||
ListItemText, | ||
styled, | ||
useTheme, | ||
} from '@mui/material'; |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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
Oops, something went wrong.