claritas-web-framework 8.0.40 → 8.0.42

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.40",
3
+ "version": "8.0.42",
4
4
  "description": "The CSS framework built for Claritas front end.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "git+ssh://10.10.10.21/GitRepositories/ClaWebFramework"
15
+ "url": "ssh://git@cla-git01/srv/git/ClaWebFramework"
16
16
  },
17
17
  "author": "David Brooks",
18
18
  "license": "UNLICENSED",
@@ -22,13 +22,13 @@
22
22
  "html-webpack-plugin": "^5.5.3",
23
23
  "mini-css-extract-plugin": "^2.7.6",
24
24
  "prettier": "^3.0.3",
25
- "sass": "^1.68.0",
25
+ "sass": "^1.69.5",
26
26
  "sass-loader": "^13.3.2",
27
- "stylelint": "^15.10.3",
27
+ "stylelint": "^15.11.0",
28
28
  "stylelint-config-standard": "^34.0.0",
29
- "stylelint-config-standard-scss": "^11.0.0",
30
- "stylelint-scss": "^5.2.1",
31
- "webpack": "^5.88.2",
29
+ "stylelint-config-standard-scss": "^11.1.0",
30
+ "stylelint-scss": "^5.3.1",
31
+ "webpack": "^5.89.0",
32
32
  "webpack-cli": "^5.1.4",
33
33
  "webpack-dev-server": "^4.15.1"
34
34
  },
@@ -100,7 +100,8 @@ $spacers: (
100
100
  4: $spacer * 1.5,
101
101
  5: $spacer * 3
102
102
  ) !default;
103
- $gutters: $spacers;
103
+
104
+ $gutters: $spacers !default;
104
105
 
105
106
  /* ---------------------------------- links --------------------------------- */
106
107
  $link-shade-percentage: 20% !default;
@@ -70,17 +70,17 @@
70
70
  @include font-size(var(--button-font-size));
71
71
 
72
72
  // Variable references
73
- padding: var(--button-padding-y) var(--button-padding-x);
74
- border: var(--button-border-width) var(--button-border-style) var(--button-border-color);
75
- border-radius: var(--button-border-radius);
76
73
  background: var(--button-background);
74
+ border-radius: var(--button-border-radius);
75
+ border: var(--button-border-width) var(--button-border-style) var(--button-border-color);
76
+ box-shadow: var(--button-box-shadow);
77
77
  color: var(--button-color);
78
78
  font-family: var(--button-font-family);
79
79
  font-weight: var(--button-font-weight);
80
80
  line-height: var(--button-line-height);
81
+ padding: var(--button-padding-y) var(--button-padding-x);
81
82
  text-decoration: var(--button-text-decoration);
82
83
  white-space: var(--button-white-space);
83
- box-shadow: var(--button-box-shadow);
84
84
 
85
85
  // Defaults
86
86
  display: inline-flex;
@@ -99,6 +99,6 @@
99
99
 
100
100
  @each $key, $value in $all-colors {
101
101
  .tile--#{$key} {
102
- --border-left-color: hsl(var(--#{$key}-h) var(--#{$key}-s) var(--#{$key}-l));
102
+ --tile-border-left-color: hsl(var(--#{$key}-h) var(--#{$key}-s) var(--#{$key}-l));
103
103
  }
104
104
  }
@@ -25,6 +25,7 @@
25
25
  @include make-group-row;
26
26
 
27
27
  &.switches--grouped {
28
+ gap: 0;
28
29
  flex-wrap: nowrap;
29
30
 
30
31
  & > .button {