-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(components): updating theme mixin and styling updates (#2126)
* style(app-shell): adjustments to app shell nav styling and theming * feat(components): button color support * feat(tokens): normalizing tokens to use cv prefix * feat(components): moving theme file to a prebuilt folder * feat(components): adding iconFont attribute support for covalent icons * style(components): adding themed custom components * fix(components): adjusting theme package exports * feat(components): removing dep on needing style css file * fix(components): theme exports * feat(icons): moving icon styles support to icons package * feat(components): card full height property * style(app-shell): user scrolling updates * fix(components): list style adjustments * fix(components): removing list style updates * fix(components): nav list style adjustments * style(components): app shell navigation style adjustment * fix(app-shell): navigation items w/ meta * style(tokens): replace cov prefix with cv * docs(storybook): renaming theme file
- Loading branch information
1 parent
f8cf004
commit 302e287
Showing
40 changed files
with
449 additions
and
296 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
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 |
---|---|---|
|
@@ -11,11 +11,9 @@ All components are published in npm and available on any CDN that host npm modul | |
```html | ||
<!-- using a specific version --> | ||
<script type="module" src="https://cdn.jsdelivr.net/npm/@covalent/[email protected]/+esm"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@covalent/[email protected]/style.css" /> | ||
|
||
<!-- using the latest version --> | ||
<script type="module" src="https://cdn.jsdelivr.net/npm/@covalent/components@latest/+esm"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@covalent/components@latest/style.css" /> | ||
``` | ||
|
||
the component bundles are also available individually | ||
|
@@ -34,7 +32,7 @@ once the script is loaded, its now possible to start using our custom HTML eleme | |
<html> | ||
<head> | ||
<script type="module" src="https://cdn.jsdelivr.net/npm/@covalent/[email protected]/+esm"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@covalent/components@latest/style.css" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@covalent/components@latest/theme/prebuilt/light-theme.css" /> | ||
</head> | ||
<body> | ||
<cv-button label="Hello world" raised></cv-button> | ||
|
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 @@ | ||
@import '../../icons/covalent-icons.css'; |
Oops, something went wrong.