claritas-web-framework 8.0.53 → 8.1.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.
Files changed (73) hide show
  1. package/.stylelintrc.json +2 -0
  2. package/dist/index.css +1 -1
  3. package/package.json +13 -13
  4. package/sass/_functions.scss +15 -2
  5. package/sass/_helpers.scss +6 -0
  6. package/sass/_mixins.scss +11 -0
  7. package/sass/_modules.scss +30 -0
  8. package/sass/_reboot.scss +17 -4
  9. package/sass/_root.scss +7 -0
  10. package/sass/_utilities.scss +16 -0
  11. package/sass/_variables.scss +2 -18
  12. package/sass/helpers/_container.scss +3 -0
  13. package/sass/helpers/_embed.scss +1 -0
  14. package/sass/helpers/_grid.scss +11 -0
  15. package/sass/helpers/_link.scss +1 -0
  16. package/sass/helpers/_screenReader.scss +2 -0
  17. package/sass/helpers/_wrap.scss +1 -0
  18. package/sass/index.scss +7 -0
  19. package/sass/mixins/_breakpoints.scss +36 -6
  20. package/sass/mixins/_button.scss +1 -15
  21. package/sass/mixins/_caret.scss +5 -1
  22. package/sass/mixins/_clearfix.scss +1 -0
  23. package/sass/mixins/_colors.scss +1 -0
  24. package/sass/mixins/_container.scss +3 -0
  25. package/sass/mixins/_gradient.scss +2 -0
  26. package/sass/mixins/_grid.scss +24 -1
  27. package/sass/mixins/_group.scss +7 -1
  28. package/sass/mixins/_list.scss +6 -1
  29. package/sass/mixins/_screenReader.scss +1 -0
  30. package/sass/modules/_alert.scss +4 -1
  31. package/sass/modules/_breadcrumbs.scss +3 -0
  32. package/sass/modules/_button.scss +12 -6
  33. package/sass/modules/_card.scss +9 -1
  34. package/sass/modules/_close.scss +1 -0
  35. package/sass/modules/_details.scss +6 -1
  36. package/sass/modules/_dialog.scss +1 -0
  37. package/sass/modules/_dropdown.scss +2 -0
  38. package/sass/modules/_form.scss +11 -12
  39. package/sass/modules/_list.scss +13 -2
  40. package/sass/modules/_loader.scss +10 -0
  41. package/sass/modules/_modal.scss +1 -0
  42. package/sass/modules/_nav.scss +3 -3
  43. package/sass/modules/_pill.scss +6 -0
  44. package/sass/modules/_table.scss +17 -0
  45. package/sass/modules/_tabs.scss +5 -1
  46. package/sass/modules/_tag.scss +7 -0
  47. package/sass/modules/_tile.scss +7 -1
  48. package/sass/modules/_tooltip.scss +5 -0
  49. package/sass/modules/form/_checkbox.scss +5 -0
  50. package/sass/modules/form/_file.scss +10 -0
  51. package/sass/modules/form/_formFieldGroup.scss +2 -2
  52. package/sass/modules/form/_progress.scss +1 -0
  53. package/sass/modules/form/_radio.scss +5 -0
  54. package/sass/modules/form/_range.scss +20 -3
  55. package/sass/modules/form/_select.scss +1 -0
  56. package/sass/modules/form/_switch.scss +4 -0
  57. package/sass/modules/form/_text.scss +0 -3
  58. package/sass/modules/form/_toggle.scss +3 -0
  59. package/sass/utilities/_align.scss +3 -0
  60. package/sass/utilities/_border.scss +1 -0
  61. package/sass/utilities/_colors.scss +17 -0
  62. package/sass/utilities/_display.scss +3 -0
  63. package/sass/utilities/_flex.scss +2 -0
  64. package/sass/utilities/_float.scss +2 -0
  65. package/sass/utilities/_order.scss +2 -0
  66. package/sass/utilities/_overflow.scss +2 -0
  67. package/sass/utilities/_pointerEvents.scss +2 -0
  68. package/sass/utilities/_position.scss +2 -0
  69. package/sass/utilities/_size.scss +3 -0
  70. package/sass/utilities/_spacing.scss +2 -0
  71. package/sass/utilities/_typography.scss +2 -0
  72. package/sass/utilities/_visibility.scss +2 -0
  73. package/sass/utilities/_zIndex.scss +2 -0
@@ -1,6 +1,7 @@
1
1
  @use "sass:color";
2
2
 
3
3
  @use "./../../variables" as *;
4
+
4
5
  @use "./../../functions" as *;
5
6
 
6
7
  .form--control-fancyfile {
@@ -33,6 +34,7 @@
33
34
  }
34
35
 
35
36
  &:empty {
37
+
36
38
  & ~ .form--label {
37
39
  border-bottom-right-radius: var(--border-radius-medium);
38
40
  border-bottom-left-radius: var(--border-radius-medium);
@@ -74,6 +76,7 @@
74
76
  }
75
77
 
76
78
  &:hover {
79
+
77
80
  & ~ .form--label {
78
81
  border-color: var(--input-hover-border-color);
79
82
  background-color: var(--gray-2);
@@ -84,6 +87,7 @@
84
87
  }
85
88
 
86
89
  & ~ .file--name {
90
+
87
91
  &:not(:empty) {
88
92
  border-color: var(--input-hover-border-color);
89
93
  }
@@ -92,22 +96,26 @@
92
96
 
93
97
  @each $key, $value in $theme-colors {
94
98
  &.input--#{$key} {
99
+
95
100
  & ~ .form--label {
96
101
  border-color: $value;
97
102
  }
98
103
 
99
104
  & ~ .file--name {
105
+
100
106
  &:not(:empty) {
101
107
  border-color: $value;
102
108
  }
103
109
  }
104
110
 
105
111
  &:hover {
112
+
106
113
  & ~ .form--label {
107
114
  border-color: color.mix(black, $value, 25%);
108
115
  }
109
116
 
110
117
  & ~ .file--name {
118
+
111
119
  &:not(:empty) {
112
120
  border-color: color.mix(black, $value, 25%);
113
121
  }
@@ -140,7 +148,9 @@ input[type="file"] {
140
148
  }
141
149
 
142
150
  &:hover {
151
+
143
152
  &:not(:disabled, [readonly]) {
153
+
144
154
  &::-webkit-file-upload-button,
145
155
  &::file-selector-button {
146
156
  background-color: var(--gray-2);
@@ -26,11 +26,11 @@
26
26
  }
27
27
 
28
28
  &:first-child {
29
+
29
30
  & * {
30
31
  --input-border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
31
32
  --input-small-border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
32
33
  --input-large-border-radius: var(--border-radius-large) 0 0 var(--border-radius-large);
33
-
34
34
  --button-border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
35
35
  --button-small-border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
36
36
  --button-large-border-radius: var(--border-radius-large) 0 0 var(--border-radius-large);
@@ -43,11 +43,11 @@
43
43
  }
44
44
 
45
45
  &:last-child {
46
+
46
47
  & * {
47
48
  --input-border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
48
49
  --input-small-border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
49
50
  --input-large-border-radius: 0 var(--border-radius-large) var(--border-radius-large) 0;
50
-
51
51
  --button-border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
52
52
  --button-small-border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
53
53
  --button-large-border-radius: 0 var(--border-radius-large) var(--border-radius-large) 0;
@@ -36,6 +36,7 @@ progress {
36
36
 
37
37
  @each $key, $value in $theme-colors {
38
38
  &.input--#{$key} {
39
+
39
40
  &::-webkit-progress-bar {
40
41
  background-color: hsl(var(--#{$key}-h) var(--#{$key}-s) var(--#{$key}-l) / 5%);
41
42
  }
@@ -1,11 +1,15 @@
1
1
  @use "sass:map";
2
+
2
3
  @use "sass:color";
3
4
 
4
5
  @use "./../../variables" as *;
6
+
5
7
  @use "./../../mixins/breakpoints" as *;
6
8
 
7
9
  .form--control-radio {
10
+
8
11
  & > * {
12
+
9
13
  &:not(:last-child) {
10
14
  margin-right: var(--spacer);
11
15
 
@@ -48,6 +52,7 @@
48
52
 
49
53
  @each $key, $value in $theme-colors {
50
54
  &.input--#{$key} {
55
+
51
56
  &:checked {
52
57
  --input-detail-background: hsl(var(--#{$key}-h) var(--#{$key}-s) var(--#{$key}-l));
53
58
  --input-disabled-detail-background: hsl(
@@ -43,15 +43,12 @@ input[type="range"] {
43
43
  --input-focus-border-color: transparent;
44
44
  --input-active-border-color: transparent;
45
45
  --input-disabled-border-color: transparent;
46
-
47
46
  --input-box-shadow: none;
48
47
  --input-hover-box-shadow: none;
49
48
  --input-focus-box-shadow: none;
50
49
  --input-active-box-shadow: none;
51
50
  --input-disabled-box-shadow: none;
52
-
53
51
  --input-disabled-background: hsl(var(--body-color-h) var(--body-color-s) 100%);
54
-
55
52
  --input-padding-x: 0;
56
53
  --input-small-padding-x: 0;
57
54
  --input-large-padding-x: 0;
@@ -59,31 +56,39 @@ input[type="range"] {
59
56
  margin: calc(var(--spacer) * 0.5) 0;
60
57
 
61
58
  &::-moz-range-track {
59
+
62
60
  @include make-track;
63
61
  }
64
62
 
65
63
  &::-webkit-slider-runnable-track {
64
+
66
65
  @include make-track;
67
66
  }
68
67
 
69
68
  &::-moz-range-thumb {
69
+
70
70
  @include make-thumb(false, false);
71
71
  }
72
72
 
73
73
  &::-webkit-slider-thumb {
74
+
74
75
  @include make-thumb(false, false);
75
76
  }
76
77
 
77
78
  &:focus {
79
+
78
80
  &::-webkit-slider-runnable-track {
81
+
79
82
  @include make-track;
80
83
  }
81
84
 
82
85
  &::-moz-range-track {
86
+
83
87
  @include make-track;
84
88
  }
85
89
 
86
90
  &::-webkit-slider-thumb {
91
+
87
92
  @include make-thumb(true, false);
88
93
  }
89
94
  }
@@ -94,18 +99,22 @@ input[type="range"] {
94
99
  --input-disabled-detail-background: hsl(var(--primary-h) var(--primary-s) calc(var(--primary-l) + 20%));
95
100
 
96
101
  &::-webkit-slider-runnable-track {
102
+
97
103
  @include make-track;
98
104
  }
99
105
 
100
106
  &::-moz-range-track {
107
+
101
108
  @include make-track;
102
109
  }
103
110
 
104
111
  &::-moz-range-thumb {
112
+
105
113
  @include make-thumb(false, true);
106
114
  }
107
115
 
108
116
  &::-webkit-slider-thumb {
117
+
109
118
  @include make-thumb(false, true);
110
119
  }
111
120
  }
@@ -115,19 +124,24 @@ input[type="range"] {
115
124
  --input-disabled-detail-background: hsl(var(--#{$key}-h) var(--#{$key}-s) calc(var(--#{$key}-l) + 20%));
116
125
 
117
126
  &::-moz-range-thumb {
127
+
118
128
  @include make-thumb(false, false, $value, hsl(var(--#{$key}-h) var(--#{$key}-s) var(--#{$key}-l) / 25%));
119
129
  }
120
130
 
121
131
  &::-webkit-slider-thumb {
132
+
122
133
  @include make-thumb(false, false, $value, hsl(var(--#{$key}-h) var(--#{$key}-s) var(--#{$key}-l) / 25%));
123
134
  }
124
135
 
125
136
  &:focus {
137
+
126
138
  &::-moz-range-thumb {
139
+
127
140
  @include make-thumb(true, false, $value, hsl(var(--#{$key}-h) var(--#{$key}-s) var(--#{$key}-l) / 25%));
128
141
  }
129
142
 
130
143
  &::-webkit-slider-thumb {
144
+
131
145
  @include make-thumb(true, false, $value, hsl(var(--#{$key}-h) var(--#{$key}-s) var(--#{$key}-l) / 25%));
132
146
  }
133
147
  }
@@ -135,11 +149,14 @@ input[type="range"] {
135
149
  &:disabled,
136
150
  &.disabled,
137
151
  &[aria-disabled="true"] {
152
+
138
153
  &::-moz-range-thumb {
154
+
139
155
  @include make-thumb(false, true, $value, hsl(var(--#{$key}-h) var(--#{$key}-s) var(--#{$key}-l) / 25%));
140
156
  }
141
157
 
142
158
  &::-webkit-slider-thumb {
159
+
143
160
  @include make-thumb(false, true, $value, hsl(var(--#{$key}-h) var(--#{$key}-s) var(--#{$key}-l) / 25%));
144
161
  }
145
162
  }
@@ -1,4 +1,5 @@
1
1
  @use "./../../variables" as *;
2
+
2
3
  @use "./../../functions" as *;
3
4
 
4
5
  select {
@@ -1,6 +1,7 @@
1
1
  @use "sass:color";
2
2
 
3
3
  @use "./../../variables" as *;
4
+
4
5
  @use "./../../mixins" as *;
5
6
 
6
7
  .button--switch {
@@ -13,6 +14,7 @@
13
14
 
14
15
  &[disabled],
15
16
  &:disabled {
17
+
16
18
  + .button {
17
19
  pointer-events: none;
18
20
  filter: none;
@@ -22,6 +24,7 @@
22
24
  }
23
25
 
24
26
  .switches {
27
+
25
28
  @include make-group-row;
26
29
 
27
30
  &.switches--grouped {
@@ -29,6 +32,7 @@
29
32
  flex-wrap: nowrap;
30
33
 
31
34
  & > .button {
35
+
32
36
  &:not(:last-child) {
33
37
  border-bottom-right-radius: 0;
34
38
  border-top-right-radius: 0;
@@ -4,17 +4,14 @@
4
4
 
5
5
  .input--text {
6
6
  --input-border-width: 0 0 1px;
7
-
8
7
  --input-padding-x: 0;
9
8
  --input-small-padding-x: 0;
10
9
  --input-large-padding-x: 0;
11
-
12
10
  --input-box-shadow: 0 0 0 0.125em hsl(var(--body-color-h) var(--body-color-s) var(--body-color-l) / 0%);
13
11
  --input-hover-box-shadow: 0 0 0 0.125em hsl(var(--body-color-h) var(--body-color-s) var(--body-color-l) / 0%);
14
12
  --input-focus-box-shadow: 0 0 0 0.125em hsl(var(--body-color-h) var(--body-color-s) var(--body-color-l) / 0%);
15
13
  --input-active-box-shadow: 0 0 0 0.125em hsl(var(--body-color-h) var(--body-color-s) var(--body-color-l) / 0%);
16
14
  --input-disabled-box-shadow: 0 0 0 0.125em hsl(var(--body-color-h) var(--body-color-s) var(--body-color-l) / 0%);
17
-
18
15
  --input-border-radius: 0;
19
16
  --input-small-border-radius: 0;
20
17
  --input-large-border-radius: 0;
@@ -1,10 +1,13 @@
1
1
  @use "sass:color";
2
2
 
3
3
  @use "./../../variables" as *;
4
+
4
5
  @use "./../../mixins/breakpoints" as *;
5
6
 
6
7
  .form--control-toggle {
8
+
7
9
  & > * {
10
+
8
11
  &:not(:last-child) {
9
12
  margin-right: var(--spacer);
10
13
 
@@ -1,11 +1,13 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  $alignments: (baseline, top, middle, bottom, text-bottom, text-top) !default;
7
8
 
8
9
  @each $breakpoint in map.keys($breakpoints) {
10
+
9
11
  @include media-breakpoint-up($breakpoint) {
10
12
  $infix: breakpoint-infix($breakpoint, $breakpoints);
11
13
 
@@ -18,6 +20,7 @@ $alignments: (baseline, top, middle, bottom, text-bottom, text-top) !default;
18
20
  }
19
21
 
20
22
  @media print {
23
+
21
24
  @each $value in $alignments {
22
25
  .vertical-align--print-#{$value} {
23
26
  vertical-align: #{$value} !important;
@@ -1,6 +1,7 @@
1
1
  @use "sass:color";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins" as *;
5
6
 
6
7
  .border {
@@ -1,15 +1,20 @@
1
1
  @use "./../variables" as *;
2
+
2
3
  @use "./../mixins/colors" as *;
3
4
 
4
5
  @each $key, $value in $all-colors {
5
6
  .color--#{$key} {
7
+
6
8
  @include make-color($key);
9
+
7
10
  color: var(--color) !important;
8
11
  }
9
12
 
10
13
  button.color--#{$key},
11
14
  a.color--#{$key} {
15
+
12
16
  @include make-color($key);
17
+
13
18
  color: var(--color) !important;
14
19
 
15
20
  &:hover,
@@ -24,25 +29,33 @@
24
29
  }
25
30
 
26
31
  .background--#{$key} {
32
+
27
33
  @include make-background-color($key);
34
+
28
35
  background-color: var(--background-color) !important;
29
36
  }
30
37
 
31
38
  .border--#{$key} {
39
+
32
40
  @include make-border-color($key);
41
+
33
42
  border-color: var(--border-color) !important;
34
43
  }
35
44
  }
36
45
 
37
46
  @each $key, $value in $grays {
38
47
  .color--#{$key} {
48
+
39
49
  @include make-color($key);
50
+
40
51
  color: var(--color) !important;
41
52
  }
42
53
 
43
54
  button.color--#{$key},
44
55
  a.color--#{$key} {
56
+
45
57
  @include make-color($key);
58
+
46
59
  color: var(--color) !important;
47
60
 
48
61
  &:hover,
@@ -57,12 +70,16 @@
57
70
  }
58
71
 
59
72
  .background--#{$key} {
73
+
60
74
  @include make-background-color($key);
75
+
61
76
  background-color: var(--background-color) !important;
62
77
  }
63
78
 
64
79
  .border--#{$key} {
80
+
65
81
  @include make-border-color($key);
82
+
66
83
  border-color: var(--border-color) !important;
67
84
  }
68
85
  }
@@ -1,11 +1,13 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  $displays: (initial, none, inline, inline-block, block, table-row, table-cell, flex, inline-flex, grid) !default;
7
8
 
8
9
  @each $breakpoint in map.keys($breakpoints) {
10
+
9
11
  @include media-breakpoint-up($breakpoint) {
10
12
  $infix: breakpoint-infix($breakpoint, $breakpoints);
11
13
 
@@ -18,6 +20,7 @@ $displays: (initial, none, inline, inline-block, block, table-row, table-cell, f
18
20
  }
19
21
 
20
22
  @media print {
23
+
21
24
  @each $value in $displays {
22
25
  .display--print-#{$value} {
23
26
  display: #{$value} !important;
@@ -1,6 +1,7 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  $flex-directions: (row, column, row-reverse, column-reverse) !default;
@@ -10,6 +11,7 @@ $flex-item-alignments: (auto, flex-start, flex-end, center, baseline, stretch) !
10
11
  $flex-content-alignments: (flex-start, flex-end, center, space-between, space-around, stretch) !default;
11
12
 
12
13
  @each $breakpoint in map.keys($breakpoints) {
14
+
13
15
  @include media-breakpoint-up($breakpoint) {
14
16
  $infix: breakpoint-infix($breakpoint, $breakpoints);
15
17
 
@@ -1,11 +1,13 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  $floats: (left, right, none) !default;
7
8
 
8
9
  @each $breakpoint in map.keys($breakpoints) {
10
+
9
11
  @include media-breakpoint-up($breakpoint) {
10
12
  $infix: breakpoint-infix($breakpoint, $breakpoints);
11
13
 
@@ -1,9 +1,11 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  @each $breakpoint in map.keys($breakpoints) {
8
+
7
9
  @include media-breakpoint-up($breakpoint) {
8
10
  $infix: breakpoint-infix($breakpoint, $breakpoints);
9
11
 
@@ -1,11 +1,13 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  $overflows: (auto, hidden, visible, scroll) !default;
7
8
 
8
9
  @each $breakpoint in map.keys($breakpoints) {
10
+
9
11
  @include media-breakpoint-up($breakpoint) {
10
12
  $infix: breakpoint-infix($breakpoint, $breakpoints);
11
13
 
@@ -1,11 +1,13 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  $pointer-events: (auto, none) !default;
7
8
 
8
9
  @each $breakpoint in map.keys($breakpoints) {
10
+
9
11
  @include media-breakpoint-up($breakpoint) {
10
12
  $infix: breakpoint-infix($breakpoint, $breakpoints);
11
13
 
@@ -1,12 +1,14 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  $positions: (static, relative, absolute, fixed, sticky) !default;
7
8
  $position-ints: (0, 25, 50, 75, 100) !default;
8
9
 
9
10
  @each $breakpoint in map.keys($breakpoints) {
11
+
10
12
  @include media-breakpoint-up($breakpoint) {
11
13
  $infix: breakpoint-infix($breakpoint, $breakpoints);
12
14
 
@@ -1,7 +1,9 @@
1
1
  @use "sass:map";
2
+
2
3
  @use "sass:list";
3
4
 
4
5
  @use "./../variables" as *;
6
+
5
7
  @use "./../mixins/breakpoints" as *;
6
8
 
7
9
  @each $key in ("none", "auto") {
@@ -31,6 +33,7 @@
31
33
  }
32
34
 
33
35
  @each $breakpoint in map.keys($breakpoints) {
36
+
34
37
  @include media-breakpoint-up($breakpoint) {
35
38
  $infix: breakpoint-infix($breakpoint, $breakpoints);
36
39
 
@@ -1,9 +1,11 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  @each $breakpoint in map.keys($breakpoints) {
8
+
7
9
  @include media-breakpoint-up($breakpoint) {
8
10
  $infix: breakpoint-infix($breakpoint, $breakpoints);
9
11
 
@@ -1,6 +1,7 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  @each $key, $value in $font-sizes {
@@ -16,6 +17,7 @@
16
17
  }
17
18
 
18
19
  @each $breakpoint in map.keys($breakpoints) {
20
+
19
21
  @include media-breakpoint-up($breakpoint) {
20
22
  $infix: breakpoint-infix($breakpoint, $breakpoints);
21
23
 
@@ -1,11 +1,13 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  $visibilities: (visible, hidden) !default;
7
8
 
8
9
  @each $breakpoint in map.keys($breakpoints) {
10
+
9
11
  @include media-breakpoint-up($breakpoint) {
10
12
  $infix: breakpoint-infix($breakpoint, $breakpoints);
11
13
 
@@ -1,9 +1,11 @@
1
1
  @use "sass:map";
2
2
 
3
3
  @use "./../variables" as *;
4
+
4
5
  @use "./../mixins/breakpoints" as *;
5
6
 
6
7
  @each $breakpoint in map.keys($breakpoints) {
8
+
7
9
  @include media-breakpoint-up($breakpoint) {
8
10
  $infix: breakpoint-infix($breakpoint, $breakpoints);
9
11