-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sass updates - fixed deprecated apis (#28)
- Loading branch information
Showing
51 changed files
with
924 additions
and
536 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@use '../colors.scss'; | ||
@use '../colors'; | ||
|
||
a { | ||
&:link, | ||
|
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 |
---|---|---|
@@ -1,46 +1,44 @@ | ||
declare const classNames: { | ||
readonly button: "button"; | ||
readonly fa: "fa"; | ||
readonly fas: "fas"; | ||
readonly far: "far"; | ||
readonly dropdown: "dropdown"; | ||
readonly ellipsis: "ellipsis"; | ||
readonly fluid: "fluid"; | ||
readonly circular: "circular"; | ||
readonly color__average: "color__average"; | ||
readonly color__bad: "color__bad"; | ||
readonly compact: "compact"; | ||
readonly color__black: "color__black"; | ||
readonly color__white: "color__white"; | ||
readonly color__red: "color__red"; | ||
readonly color__orange: "color__orange"; | ||
readonly color__yellow: "color__yellow"; | ||
readonly color__olive: "color__olive"; | ||
readonly color__green: "color__green"; | ||
readonly color__teal: "color__teal"; | ||
readonly color__blue: "color__blue"; | ||
readonly color__violet: "color__violet"; | ||
readonly color__purple: "color__purple"; | ||
readonly color__pink: "color__pink"; | ||
readonly color__brown: "color__brown"; | ||
readonly color__caution: "color__caution"; | ||
readonly color__danger: "color__danger"; | ||
readonly color__default: "color__default"; | ||
readonly color__good: "color__good"; | ||
readonly color__green: "color__green"; | ||
readonly color__grey: "color__grey"; | ||
readonly color__label: "color__label"; | ||
readonly "color__light-grey": "color__light-grey"; | ||
readonly color__olive: "color__olive"; | ||
readonly color__orange: "color__orange"; | ||
readonly color__pink: "color__pink"; | ||
readonly color__purple: "color__purple"; | ||
readonly color__red: "color__red"; | ||
readonly color__teal: "color__teal"; | ||
readonly color__good: "color__good"; | ||
readonly color__average: "color__average"; | ||
readonly color__bad: "color__bad"; | ||
readonly color__label: "color__label"; | ||
readonly color__default: "color__default"; | ||
readonly color__caution: "color__caution"; | ||
readonly color__danger: "color__danger"; | ||
readonly color__transparent: "color__transparent"; | ||
readonly color__violet: "color__violet"; | ||
readonly color__white: "color__white"; | ||
readonly color__yellow: "color__yellow"; | ||
readonly compact: "compact"; | ||
readonly content: "content"; | ||
readonly disabled: "disabled"; | ||
readonly dropdown: "dropdown"; | ||
readonly ellipsis: "ellipsis"; | ||
readonly fa: "fa"; | ||
readonly far: "far"; | ||
readonly fas: "fas"; | ||
readonly selected: "selected"; | ||
readonly flex: "flex"; | ||
readonly flex__fluid: "flex__fluid"; | ||
readonly fluid: "fluid"; | ||
readonly hasContent: "hasContent"; | ||
readonly iconPosition__right: "iconPosition__right"; | ||
readonly selected: "selected"; | ||
readonly textMargin: "textMargin"; | ||
readonly verticalAlignContent__bottom: "verticalAlignContent__bottom"; | ||
readonly verticalAlignContent__middle: "verticalAlignContent__middle"; | ||
readonly verticalAlignContent__top: "verticalAlignContent__top"; | ||
readonly verticalAlignContent__middle: "verticalAlignContent__middle"; | ||
readonly verticalAlignContent__bottom: "verticalAlignContent__bottom"; | ||
readonly content: "content"; | ||
readonly textMargin: "textMargin"; | ||
}; | ||
export = classNames; |
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,6 +1,6 @@ | ||
declare const classNames: { | ||
readonly hidden: "hidden"; | ||
readonly horizontal: "horizontal"; | ||
readonly hidden: "hidden"; | ||
readonly vertical: "vertical"; | ||
}; | ||
export = classNames; |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
@use '../base.scss'; | ||
@use '../base'; | ||
|
||
.Dropdown { | ||
display: flex; | ||
|
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,5 +1,5 @@ | ||
declare const classNames: { | ||
readonly icon: 'icon'; | ||
readonly iconStack: 'iconStack'; | ||
readonly iconStack: "iconStack"; | ||
readonly icon: "icon"; | ||
}; | ||
export = classNames; |
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.