minolith 0.0.12 → 0.0.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minolith",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "design system by minominolyly",
5
5
  "main": "src/minolith.scss",
6
6
  "scripts": {
@@ -16,7 +16,7 @@
16
16
  @each $color in variables.$colors {
17
17
  $name: map.get($color, "name");
18
18
  $hue: map.get($color, "hue");
19
- $p: "0" !default;
19
+ $p: "0";
20
20
  @for $i from 1 through 19 {
21
21
  $p: "" + ($i * 5);
22
22
  @if (string.length($p) == 1) {
@@ -52,18 +52,18 @@
52
52
  }
53
53
 
54
54
  @mixin setColor($colorShade, $colorName, $pseudoName, $componentName: "") {
55
- $srcColorName: $colorName !default;
56
- $destColorName: $colorName !default;
55
+ $srcColorName: $colorName;
56
+ $destColorName: $colorName;
57
57
  @if ($colorName == "default") {
58
58
  $srcColorName: "gray";
59
59
  }
60
60
 
61
- $pseudo: "" !default;
61
+ $pseudo: "";
62
62
  @if ($pseudoName != "plain") {
63
63
  $pseudo: "-#{$pseudoName}"
64
64
  }
65
65
 
66
- $component: "" !default;
66
+ $component: "";
67
67
  @if ($componentName != "") {
68
68
  $component: "-#{$componentName}"
69
69
  }
@@ -11,7 +11,7 @@
11
11
 
12
12
  @each $color in variables.$colors {
13
13
  $colorName: map.get($color, "name");
14
- $numStr: "00" !default;
14
+ $numStr: "00";
15
15
  @for $p from 1 through 19 {
16
16
  $numStr: ($p * 5) + "";
17
17
  @if (string.length($numStr) == 1) {