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.
|
|
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.
|
|
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
|
|
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"
|
package/sass/mixins/_list.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use "./../variables" as *;
|
|
2
2
|
@use "./../mixins/group" as *;
|
|
3
3
|
|
|
4
|
-
@mixin make-list-
|
|
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-
|
|
18
|
+
@include make-list-unstyled;
|
|
19
19
|
}
|
package/sass/modules/_list.scss
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
@use "./../mixins/list" as *;
|
|
5
5
|
|
|
6
6
|
.list--unstyled {
|
|
7
|
-
@include make-list-
|
|
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-
|
|
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-
|
|
50
|
+
@include make-list-unstyled;
|
|
51
51
|
|
|
52
52
|
& > li {
|
|
53
53
|
background-color: var(--white);
|
package/sass/modules/_nav.scss
CHANGED