beathers 5.7.0 → 5.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG +1 -1
- package/css/beathers.min.css +1 -1
- package/css/beathers.min.css.map +1 -1
- package/package.json +1 -1
- package/scss/beathers.min.scss +1 -1
- package/scss/style/_loader.scss +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beathers",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Beather is a lightweight SCSS library that serves as a comprehensive design system for your projects. It offers a structured and consistent approach to manage colors, fonts, and other design related variables, making it easier to maintain a cohesive visual identity across your application.",
|
|
6
6
|
"main": "index.js",
|
package/scss/beathers.min.scss
CHANGED
package/scss/style/_loader.scss
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
@use '../settings/index' as settings;
|
|
2
2
|
@use '../variables' as vars;
|
|
3
|
+
@use '../settings/defaults' as defs;
|
|
3
4
|
|
|
4
5
|
// Definitions
|
|
5
6
|
$useLoader: if(vars.$useLoader != null, vars.$useLoader, settings.$useLoader);
|
|
6
7
|
$useColorsLightMode: if(vars.$useColorsLightMode != null, vars.$useColorsLightMode, settings.$useColorsLightMode);
|
|
7
8
|
$useColorsDarkMode: if(vars.$useColorsDarkMode != null, vars.$useColorsDarkMode, settings.$useColorsDarkMode);
|
|
8
|
-
$loaderColorMain: if(vars.$loaderColorMain != null, vars.$loaderColorMain,
|
|
9
|
+
$loaderColorMain: if(vars.$loaderColorMain != null, vars.$loaderColorMain, loaderColorMain.$loaderColorMain);
|
|
9
10
|
$loaderColorSecond: if(vars.$loaderColorSecond != null, vars.$loaderColorSecond, defs.$loaderColorSecond);
|
|
10
11
|
$loaderDuration: if(vars.$loaderDuration != null, vars.$loaderDuration, defs.$loaderDuration);
|
|
11
12
|
|