claritas-web-framework 8.1.2 → 8.3.0
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/dist/index.css +6 -67
- package/dist/index.html +1 -1
- package/index.html +3 -1
- package/package.json +9 -15
- package/sass/_functions.scss +3 -11
- package/sass/_helpers.scss +0 -6
- package/sass/_mixins.scss +0 -11
- package/sass/_modules.scss +0 -30
- package/sass/_reboot.scss +7 -8
- package/sass/_root.scss +24 -33
- package/sass/_utilities.scss +0 -16
- package/sass/_variables.scss +9 -4
- package/sass/helpers/_container.scss +0 -2
- package/sass/helpers/_embed.scss +0 -1
- package/sass/helpers/_grid.scss +0 -6
- package/sass/helpers/_link.scss +0 -1
- package/sass/helpers/_screenReader.scss +0 -2
- package/sass/helpers/_wrap.scss +0 -1
- package/sass/index.scss +2 -7
- package/sass/mixins/_breakpoints.scss +6 -28
- package/sass/mixins/_caret.scss +1 -5
- package/sass/mixins/_clearfix.scss +0 -1
- package/sass/mixins/_colors.scss +3 -3
- package/sass/mixins/_container.scss +0 -2
- package/sass/mixins/_grid.scss +3 -18
- package/sass/mixins/_group.scss +1 -7
- package/sass/mixins/_list.scss +1 -4
- package/sass/mixins/_screenReader.scss +0 -1
- package/sass/modules/_alert.scss +1 -4
- package/sass/modules/_breadcrumbs.scss +0 -1
- package/sass/modules/_button.scss +0 -8
- package/sass/modules/_card.scss +1 -8
- package/sass/modules/_details.scss +3 -4
- package/sass/modules/_dropdown.scss +0 -1
- package/sass/modules/_form.scss +0 -2
- package/sass/modules/_loader.scss +0 -10
- package/sass/modules/_pill.scss +0 -3
- package/sass/modules/_tabs.scss +1 -5
- package/sass/modules/_tag.scss +0 -3
- package/sass/modules/_tile.scss +1 -6
- package/sass/modules/_tooltip.scss +0 -5
- package/sass/modules/form/_checkbox.scss +0 -4
- package/sass/modules/form/_file.scss +0 -9
- package/sass/modules/form/_formFieldGroup.scss +0 -2
- package/sass/modules/form/_progress.scss +0 -1
- package/sass/modules/form/_radio.scss +0 -3
- package/sass/modules/form/_switch.scss +0 -3
- package/sass/modules/form/_toggle.scss +0 -2
- package/sass/utilities/_align.scss +0 -2
- package/sass/utilities/_colors.scss +0 -8
- package/sass/utilities/_display.scss +0 -2
- package/sass/utilities/_flex.scss +0 -1
- package/sass/utilities/_float.scss +0 -1
- package/sass/utilities/_order.scss +0 -1
- package/sass/utilities/_overflow.scss +0 -1
- package/sass/utilities/_pointerEvents.scss +0 -1
- package/sass/utilities/_spacing.scss +0 -1
- package/sass/utilities/_visibility.scss +0 -1
- package/sass/utilities/_zIndex.scss +0 -1
- package/.stylelintrc.json +0 -40
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
$alignments: (baseline, top, middle, bottom, text-bottom, text-top) !default;
|
|
8
8
|
|
|
9
9
|
@each $breakpoint in map.keys($breakpoints) {
|
|
10
|
-
|
|
11
10
|
@include media-breakpoint-up($breakpoint) {
|
|
12
11
|
$infix: breakpoint-infix($breakpoint, $breakpoints);
|
|
13
12
|
|
|
@@ -20,7 +19,6 @@ $alignments: (baseline, top, middle, bottom, text-bottom, text-top) !default;
|
|
|
20
19
|
}
|
|
21
20
|
|
|
22
21
|
@media print {
|
|
23
|
-
|
|
24
22
|
@each $value in $alignments {
|
|
25
23
|
.vertical-align--print-#{$value} {
|
|
26
24
|
vertical-align: #{$value} !important;
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
@each $key, $value in $all-colors {
|
|
6
6
|
.color--#{$key} {
|
|
7
|
-
|
|
8
7
|
@include make-color($key);
|
|
9
8
|
|
|
10
9
|
color: var(--color) !important;
|
|
@@ -12,7 +11,6 @@
|
|
|
12
11
|
|
|
13
12
|
button.color--#{$key},
|
|
14
13
|
a.color--#{$key} {
|
|
15
|
-
|
|
16
14
|
@include make-color($key);
|
|
17
15
|
|
|
18
16
|
color: var(--color) !important;
|
|
@@ -29,14 +27,12 @@
|
|
|
29
27
|
}
|
|
30
28
|
|
|
31
29
|
.background--#{$key} {
|
|
32
|
-
|
|
33
30
|
@include make-background-color($key);
|
|
34
31
|
|
|
35
32
|
background-color: var(--background-color) !important;
|
|
36
33
|
}
|
|
37
34
|
|
|
38
35
|
.border--#{$key} {
|
|
39
|
-
|
|
40
36
|
@include make-border-color($key);
|
|
41
37
|
|
|
42
38
|
border-color: var(--border-color) !important;
|
|
@@ -45,7 +41,6 @@
|
|
|
45
41
|
|
|
46
42
|
@each $key, $value in $grays {
|
|
47
43
|
.color--#{$key} {
|
|
48
|
-
|
|
49
44
|
@include make-color($key);
|
|
50
45
|
|
|
51
46
|
color: var(--color) !important;
|
|
@@ -53,7 +48,6 @@
|
|
|
53
48
|
|
|
54
49
|
button.color--#{$key},
|
|
55
50
|
a.color--#{$key} {
|
|
56
|
-
|
|
57
51
|
@include make-color($key);
|
|
58
52
|
|
|
59
53
|
color: var(--color) !important;
|
|
@@ -70,14 +64,12 @@
|
|
|
70
64
|
}
|
|
71
65
|
|
|
72
66
|
.background--#{$key} {
|
|
73
|
-
|
|
74
67
|
@include make-background-color($key);
|
|
75
68
|
|
|
76
69
|
background-color: var(--background-color) !important;
|
|
77
70
|
}
|
|
78
71
|
|
|
79
72
|
.border--#{$key} {
|
|
80
|
-
|
|
81
73
|
@include make-border-color($key);
|
|
82
74
|
|
|
83
75
|
border-color: var(--border-color) !important;
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
$displays: (initial, none, inline, inline-block, block, table-row, table-cell, flex, inline-flex, grid) !default;
|
|
8
8
|
|
|
9
9
|
@each $breakpoint in map.keys($breakpoints) {
|
|
10
|
-
|
|
11
10
|
@include media-breakpoint-up($breakpoint) {
|
|
12
11
|
$infix: breakpoint-infix($breakpoint, $breakpoints);
|
|
13
12
|
|
|
@@ -20,7 +19,6 @@ $displays: (initial, none, inline, inline-block, block, table-row, table-cell, f
|
|
|
20
19
|
}
|
|
21
20
|
|
|
22
21
|
@media print {
|
|
23
|
-
|
|
24
22
|
@each $value in $displays {
|
|
25
23
|
.display--print-#{$value} {
|
|
26
24
|
display: #{$value} !important;
|
|
@@ -11,7 +11,6 @@ $flex-item-alignments: (auto, flex-start, flex-end, center, baseline, stretch) !
|
|
|
11
11
|
$flex-content-alignments: (flex-start, flex-end, center, space-between, space-around, stretch) !default;
|
|
12
12
|
|
|
13
13
|
@each $breakpoint in map.keys($breakpoints) {
|
|
14
|
-
|
|
15
14
|
@include media-breakpoint-up($breakpoint) {
|
|
16
15
|
$infix: breakpoint-infix($breakpoint, $breakpoints);
|
|
17
16
|
|
package/.stylelintrc.json
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": [
|
|
3
|
-
"stylelint-config-standard",
|
|
4
|
-
"stylelint-config-standard-scss"
|
|
5
|
-
],
|
|
6
|
-
"ignorePatterns": [
|
|
7
|
-
"/dist/*"
|
|
8
|
-
],
|
|
9
|
-
"plugins": [
|
|
10
|
-
"stylelint-scss"
|
|
11
|
-
],
|
|
12
|
-
"rules": {
|
|
13
|
-
"rule-empty-line-before": "always-multi-line",
|
|
14
|
-
"at-rule-empty-line-before": "always",
|
|
15
|
-
"color-function-notation": "modern",
|
|
16
|
-
"selector-id-pattern": "^[a-z][a-zA-Z0-9]+$",
|
|
17
|
-
"selector-class-pattern": "^[a-z][a-zA-Z0-9]+|^([a-z][a-z0-9]*)(--[a-z0-9]+)*$",
|
|
18
|
-
"at-rule-no-unknown": null,
|
|
19
|
-
"no-descending-specificity": null,
|
|
20
|
-
"scss/selector-no-redundant-nesting-selector": null,
|
|
21
|
-
"scss/dollar-variable-empty-line-before": [
|
|
22
|
-
"always",
|
|
23
|
-
{
|
|
24
|
-
"except": [
|
|
25
|
-
"first-nested",
|
|
26
|
-
"after-comment",
|
|
27
|
-
"after-dollar-variable"
|
|
28
|
-
]
|
|
29
|
-
}
|
|
30
|
-
],
|
|
31
|
-
"scss/at-rule-no-unknown": [
|
|
32
|
-
true,
|
|
33
|
-
{
|
|
34
|
-
"ignoreAtRules": [
|
|
35
|
-
"container"
|
|
36
|
-
]
|
|
37
|
-
}
|
|
38
|
-
]
|
|
39
|
-
}
|
|
40
|
-
}
|