nk_jtb 0.9.17 → 0.9.18

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,7 +1,7 @@
1
1
  {
2
2
  "name": "nk_jtb",
3
3
  "description": "Yet another utility based framework.",
4
- "version": "0.9.17",
4
+ "version": "0.9.18",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/naykel76/nk_jtb.git"
package/readme.md CHANGED
@@ -7,10 +7,12 @@ Why!
7
7
  > Because without reinventing the wheel we wouldn’t have fast cars.
8
8
  > -- Nathan Watts
9
9
 
10
-
11
-
12
10
  ## Create documentation
13
11
 
14
12
  ```bash
15
13
  sassdoc ./src --dest ./docs
16
- ```
14
+ ```
15
+
16
+ ## Next Release
17
+
18
+ Remove `.hide`, has been replaced with `.hidden`
@@ -72,7 +72,7 @@ abbr:where([title]) {
72
72
  :where(h1, h2, h3, h4, h5, h6) {
73
73
  font-weight: $heading-font-weight;
74
74
  color: $heading-and-title-color;
75
- line-height: 1.125;
75
+ line-height: 1.25;
76
76
  text-wrap: balance;
77
77
  }
78
78
 
@@ -31,6 +31,7 @@ $num-grid-cols: get("grid.num-grid-cols", $config);
31
31
  gap: $gap;
32
32
  }
33
33
 
34
+
34
35
  // ==========================================================================
35
36
  // -- GENERAL --
36
37
  // ==========================================================================
@@ -40,7 +41,8 @@ $grid-properties-map: (
40
41
  gap: (
41
42
  prefix: "gap-",
42
43
  values: $gap-sizes,
43
- unit: "rem"
44
+ unit: "rem",
45
+ breakpoints: ("sm", "md", "lg", "xl")
44
46
  ),
45
47
  justify-items: (
46
48
  prefix: "justify-items-",
@@ -95,7 +97,7 @@ $grid-properties-map: (
95
97
  // ==========================================================================
96
98
  // -- MAGIC CLASSES --
97
99
  // ==========================================================================
98
- // THIS IS EXPERIMENTAL AND MAY NAT STAY IN THE CODEBASE
100
+ // THIS IS EXPERIMENTAL AND MAY NOT STAY IN THE CODEBASE
99
101
 
100
102
  // ---------------- BEFORE YOU DO ANYTHING CRAZY ------------------
101
103
  // ALL MAGIC MIXINS MUST HAVE AT LEAST TWO MAPS OR YOU WILL GET AN
@@ -2,12 +2,10 @@
2
2
 
3
3
  // prettier-ignore
4
4
  $layout-properties-map: (
5
- display: ( values: ( block, contents, flex, (hidden: none), inline-block, inline-flex, inline, ) ),
6
5
  float: ( prefix: "float-", values: ( left, right, none ) ),
7
6
  overflow: ( prefix:'overflow-', values: ( auto, clip, hidden, scroll, visible ) ),
8
7
  overflow-x: ( prefix:'overflow-x-', values: ( auto, clip, hidden, scroll, visible ) ),
9
8
  overflow-y: ( prefix:'overflow-y-', values: ( auto, clip, hidden, scroll, visible ) ),
10
- visibility: ( values: ( collapse, (invisible: hidden), visible ) ),
11
9
  z-index: ( prefix: "z-", values: ( 0, 1, 50, 100, (bottom: -1), (top: 999)) )
12
10
  );
13
11