claritas-web-framework 8.0.20 → 8.0.21

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": "claritas-web-framework",
3
- "version": "8.0.20",
3
+ "version": "8.0.21",
4
4
  "description": "The CSS framework built for Claritas front end.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -22,12 +22,12 @@
22
22
  "html-webpack-plugin": "^5.5.3",
23
23
  "mini-css-extract-plugin": "^2.7.6",
24
24
  "prettier": "^3.0.1",
25
- "sass": "^1.64.2",
25
+ "sass": "^1.65.1",
26
26
  "sass-loader": "^13.3.2",
27
27
  "stylelint": "^15.10.2",
28
28
  "stylelint-config-standard": "^34.0.0",
29
29
  "stylelint-config-standard-scss": "^10.0.0",
30
- "stylelint-scss": "^5.0.1",
30
+ "stylelint-scss": "^5.1.0",
31
31
  "webpack": "^5.88.2",
32
32
  "webpack-cli": "^5.1.4",
33
33
  "webpack-dev-server": "^4.15.1"
@@ -1,7 +1,7 @@
1
1
  @use "./../variables" as *;
2
2
  @use "./../mixins/group" as *;
3
3
 
4
- @mixin make-list-unsyled() {
4
+ @mixin make-list-unstyled() {
5
5
  list-style: none;
6
6
  margin: 0;
7
7
  padding: 0;
@@ -15,5 +15,5 @@
15
15
 
16
16
  @mixin make-list-inline($gap: calc(var(--spacer) * 0.5)) {
17
17
  @include make-group-row($gap);
18
- @include make-list-unsyled;
18
+ @include make-list-unstyled;
19
19
  }
@@ -8,7 +8,7 @@
8
8
  var(--medium-h) var(--medium-s) calc(var(--medium-l) - #{$link-shade-percentage}) / 100%
9
9
  );
10
10
 
11
- @include make-list-unsyled;
11
+ @include make-list-unstyled;
12
12
 
13
13
  display: flex;
14
14
  flex-wrap: wrap;
@@ -4,7 +4,7 @@
4
4
  @use "./../mixins/list" as *;
5
5
 
6
6
  .list--unstyled {
7
- @include make-list-unsyled;
7
+ @include make-list-unstyled;
8
8
  }
9
9
 
10
10
  .list--inline {
@@ -24,7 +24,7 @@ dl {
24
24
  }
25
25
 
26
26
  .list--group {
27
- @include make-list-unsyled;
27
+ @include make-list-unstyled;
28
28
 
29
29
  & > li {
30
30
  border: 1px solid hsl(var(--border-color-h) var(--border-color-s) var(--border-color-l) / #{$border-opacity});
@@ -47,7 +47,7 @@ dl {
47
47
  }
48
48
 
49
49
  .list--nested {
50
- @include make-list-unsyled;
50
+ @include make-list-unstyled;
51
51
 
52
52
  & > li {
53
53
  background-color: var(--white);
@@ -39,10 +39,10 @@
39
39
  align-items: center;
40
40
  position: relative;
41
41
 
42
- @include make-list-unsyled;
42
+ @include make-list-unstyled;
43
43
 
44
44
  & ul {
45
- @include make-list-unsyled;
45
+ @include make-list-unstyled;
46
46
 
47
47
  margin: 0;
48
48
  }