-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from ballyalley-o/development
Refactor Bootcamp tile and Bootcamp components
- Loading branch information
Showing
28 changed files
with
610 additions
and
325 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
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,7 @@ | ||
export const CATEGORY = { | ||
GENERAL: 'General', | ||
AI_DIGITAL_TRANSFORMATION: 'AI & Digital Transformation', | ||
SUSTAINABILITY: 'Sustainability', | ||
LEADERSHIP_INTERPERSONAL_SKILLS: 'Leadership & Interpersonal Skills', | ||
DATABASES: 'Databases' | ||
} |
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 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,14 @@ | ||
export enum COMPONENT { | ||
GS_LOADING_BUTTON = 'GSLoadingButton', | ||
S_TOOLBAR = 'SToolbar', | ||
S_BADGE_HEADER = 'SBadgeHeader', | ||
S_CARD = 'SCard', | ||
S_SCROLL_BOX = 'SScrollBox', | ||
S_SCROLL_GRID = 'SScrollGrid', | ||
GS_CONTAINER_GRID = 'GSContainerGrid', | ||
SECTION = 'section', | ||
GRID = 'Grid', | ||
DIV = 'div', | ||
IMG = 'img', | ||
A = 'a' | ||
} |
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 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,13 @@ | ||
export enum FLEX { | ||
FLEX = 'flex', | ||
INLINE_FLEX = 'inline-flex', | ||
FLEX_ROW = 'row', | ||
FLEX_COLUMN = 'column', | ||
FLEX_ROW_REVERSE = 'row-reverse', | ||
FLEX_COLUMN_REVERSE = 'column-reverse', | ||
FLEX_WRAP = 'wrap', | ||
FLEX_NOWRAP = 'nowrap', | ||
FLEX_WRAP_REVERSE = 'wrap-reverse', | ||
FLEX_END = 'flex-end', | ||
FLEX_START = 'flex-start' | ||
} |
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,33 @@ | ||
export enum BUTTON_VARIANT { | ||
CONTAINED = 'contained', | ||
OUTLINED = 'outlined', | ||
TEXT = 'text' | ||
} | ||
|
||
export enum TYPOGRAPHY_VARIANT { | ||
H1 = 'h1', | ||
H2 = 'h2', | ||
H3 = 'h3', | ||
H4 = 'h4', | ||
H5 = 'h5', | ||
H6 = 'h6', | ||
SUBTITLE1 = 'subtitle1', | ||
SUBTITLE2 = 'subtitle2', | ||
BODY1 = 'body1', | ||
BODY2 = 'body2', | ||
CAPTION = 'caption', | ||
OVERLINE = 'overline' | ||
} | ||
|
||
export enum SKELETON_VARIANT { | ||
RECTANGULAR = 'rectangular', | ||
CIRCULAR = 'circular', | ||
TEXT = 'text' | ||
} | ||
|
||
export enum VARIANT { | ||
RECTANGULAR = 'rectangular', | ||
CIRCULAR = 'circular', | ||
OUTLINED = 'outlined', | ||
COVER = 'cover' | ||
} |
Oops, something went wrong.