claritas-web-framework 5.1.276 → 6.0.0-alpha-1

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": "5.1.276",
3
+ "version": "6.0.0-alpha-1",
4
4
  "updated": "24/06/2022",
5
5
  "description": "The CSS framework built for Claritas front end.",
6
6
  "main": "index.js",
@@ -19,24 +19,24 @@
19
19
  "@alexlafroscia/postcss-color-mod-function": "^4.0.0",
20
20
  "@babel/eslint-plugin": "^7.17.7",
21
21
  "css-loader": "^6.7.1",
22
- "cssnano": "^5.1.11",
23
- "eslint": "^8.17.0",
22
+ "cssnano": "^5.1.12",
23
+ "eslint": "^8.18.0",
24
24
  "eslint-config-prettier": "^8.5.0",
25
- "eslint-plugin-prettier": "^4.0.0",
25
+ "eslint-plugin-prettier": "^4.1.0",
26
26
  "html-webpack-plugin": "^5.5.0",
27
- "mini-css-extract-plugin": "^2.6.0",
27
+ "mini-css-extract-plugin": "^2.6.1",
28
28
  "postcss": "^8.4.14",
29
29
  "postcss-advanced-variables": "^3.0.1",
30
30
  "postcss-import": "^14.1.0",
31
31
  "postcss-inline-svg": "^5.0.0",
32
32
  "postcss-loader": "^7.0.0",
33
- "postcss-preset-env": "^7.7.1",
33
+ "postcss-preset-env": "^7.7.2",
34
34
  "postcss-scss": "^4.0.4",
35
- "prettier": "^2.6.2",
36
- "sass": "^1.52.2",
37
- "sass-loader": "^13.0.0",
35
+ "prettier": "^2.7.1",
36
+ "sass": "^1.53.0",
37
+ "sass-loader": "^13.0.2",
38
38
  "webpack": "^5.73.0",
39
- "webpack-cli": "^4.9.2",
40
- "webpack-dev-server": "^4.9.1"
39
+ "webpack-cli": "^4.10.0",
40
+ "webpack-dev-server": "^4.9.2"
41
41
  }
42
42
  }
package/scss/_reboot.scss CHANGED
@@ -327,6 +327,7 @@ h6,
327
327
  margin-bottom: calc($spacer * 0.5);
328
328
  font-weight: $header-weight;
329
329
  line-height: 1.5;
330
+ color: $header-color;
330
331
 
331
332
  & small {
332
333
  font-weight: normal;
@@ -5,12 +5,14 @@
5
5
  z-index: $zindex-dropdown;
6
6
 
7
7
  & .dropdown--trigger {
8
- @include make-caret-down($body-color);
8
+ &.has-caret {
9
+ @include make-caret-down($body-color);
9
10
 
10
- padding: calc(($spacer * 0.5) - 1.5px) calc($spacer * 2) calc(($spacer * 0.5) - 1.5px) $spacer;
11
+ padding: calc(($spacer * 0.5) - 1.5px) calc($spacer * 2) calc(($spacer * 0.5) - 1.5px) $spacer;
11
12
 
12
- &::after {
13
- right: calc($spacer * 0.75);
13
+ &::after {
14
+ right: calc($spacer * 0.75);
15
+ }
14
16
  }
15
17
 
16
18
  &[data-active="true"],
@@ -38,6 +38,12 @@ $flex-content-alignments: (flex-start, flex-end, center, space-between, space-ar
38
38
  }
39
39
  }
40
40
 
41
+ @each $value in $flex-content-alignments {
42
+ .align-self-#{$infix}-#{$value} {
43
+ align-self: #{$value} !important;
44
+ }
45
+ }
46
+
41
47
  @for $value from 0 through 1 {
42
48
  .flex-grow-#{$infix}-#{$value} {
43
49
  flex-grow: #{$value} !important;