-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* hotfix/2.2.1: fix(package): update project version number from `2.2.0` to `2.2.1` style(sass): sort sass imports alphabetically fix(sass): use `list.length` instead of `list` to avoid deprecation warnings fix(sass): use `list.nth` instead of `list` to avoid deprecation warnings fix(sass): use `math.unit` instead of `unit` to avoid deprecation warnings fix(sass): use `math.is-unitless` instead of `unitless` to avoid deprecation warnings fix(sass): use `map.keys` instead of `map-keys` to avoid deprecation warnings fix(sass): use `meta.inspect` instead of `inspect` to avoid deprecation warnings fix(sass): use `map.has-key` instead of `map-has-key` to avoid deprecation warnings fix(sass): use `map.get` instead of `map-get` to avoid deprecation warnings fix(sass): use `list.index` instead of `list` to avoid deprecation warnings fix(sass): use `meta.type-of` instead of `type-of` to avoid deprecation warnings fix(sass): use `meta.variable-exists` instead of `variable-exists` to avoid deprecation warnings fix(sass): add default `unit` validation to the `media` mixin fix(sass): correct assignment of `$dimension` parameter in `media` mixin fix(sass): rename `variable_exists` function to `variable-exists` fix(sass): use `@forward` and `@use` instead of `@import` to avoid deprecation warnings
- Loading branch information
Showing
26 changed files
with
86 additions
and
57 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// PARTIALS SASS | ||
// =============================================================================== | ||
// ABSTRACTS | ||
// ---------------------------------------------------------------------- | ||
@forward "./functions/abstracts-functions-contains" | ||
// ------------------ | ||
@forward "./mixins/abstracts-mixins-media" | ||
@forward "./mixins/abstracts-mixins-position" | ||
@forward "./mixins/abstracts-mixins-prefix" | ||
@forward "./mixins/abstracts-mixins-prefix-keyframes" | ||
@forward "./mixins/abstracts-mixins-prefix-animation" | ||
// ------------------ | ||
@forward "./variables/abstracts-variables-colors" | ||
@forward "./variables/abstracts-variables-fonts" | ||
@forward "./variables/abstracts-variables-breakpoints" |
3 changes: 2 additions & 1 deletion
3
src/sass/abstracts/functions/_abstracts-functions-contains.sass
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,10 +1,11 @@ | ||
// ABSTRACTS - FUNCTIONS | ||
// CONTAINS | ||
// ================================================= | ||
@use "sass:list" | ||
|
||
|
||
|
||
|
||
|
||
@function contains($list, $item) | ||
@return index($list, $item) != null | ||
@return list.index($list, $item) != null |
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
6 changes: 4 additions & 2 deletions
6
src/sass/abstracts/mixins/_abstracts-mixins-prefix-animation.sass
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,6 +1,7 @@ | ||
// BASE | ||
// FONTS | ||
// ================================================= | ||
@use "../abstracts/index" as * | ||
|
||
|
||
|
||
|
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,7 @@ | ||
// COMPONENTS | ||
// BUTTON | ||
// ================================================= | ||
@use "../abstracts/index" as * | ||
|
||
|
||
|
||
|
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,7 @@ | ||
// COMPONENTS | ||
// CONTAINER | ||
// ================================================= | ||
@use "../abstracts/index" as * | ||
|
||
|
||
|
||
|
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,7 @@ | ||
// COMPONENTS | ||
// FORM-ERROR | ||
// ================================================= | ||
@use "../abstracts/index" as * | ||
|
||
|
||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
// COMPONENTS | ||
// FORM | ||
// ================================================= | ||
@use "../abstracts/index" as * | ||
|
||
|
||
|
||
|
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,7 @@ | ||
// COMPONENTS | ||
// ICON | ||
// ================================================= | ||
@use "../abstracts/index" as * | ||
|
||
|
||
|
||
|
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,7 @@ | ||
// COMPONENTS | ||
// LINK | ||
// ================================================= | ||
@use "../abstracts/index" as * | ||
|
||
|
||
|
||
|
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,7 @@ | ||
// COMPONENTS | ||
// MESSAGE | ||
// ================================================= | ||
@use "../abstracts/index" as * | ||
|
||
|
||
|
||
|
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