coer-elements 2.0.29 → 2.0.31
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/components/lib/coer-button/coer-button.component.d.ts +1 -1
- package/components/lib/coer-datebox/coer-datebox.component.d.ts +1 -1
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
- package/components/lib/coer-secretbox/coer-secretbox.component.d.ts +1 -1
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +1 -1
- package/fesm2022/coer-elements-components.mjs +5 -5
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +2 -2
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/coer-elements.css +1 -1
- package/styles/index.scss +3 -0
- package/styles/layout-flex-wrap.scss +1 -1
- package/styles/margins.scss +5 -1
- package/styles/orders.scss +7 -0
- package/styles/paragraphs.scss +23 -2
package/styles/index.scss
CHANGED
@@ -11,6 +11,7 @@
|
|
11
11
|
@use "./layout-flex.scss" as _layout-flex;
|
12
12
|
@use "./layout-grid.scss" as _layout-grid;
|
13
13
|
@use "./margins.scss" as _margins;
|
14
|
+
@use "./orders.scss" as _orders;
|
14
15
|
@use "./overflow.scss" as _overflow;
|
15
16
|
@use "./paddings.scss" as _padding;
|
16
17
|
@use "./paragraphs" as _paragraphs;
|
@@ -45,6 +46,7 @@
|
|
45
46
|
@include _layout-flex.mixin($breakpoint);
|
46
47
|
@include _layout-grid.mixin($breakpoint);
|
47
48
|
@include _margins.mixin($breakpoint);
|
49
|
+
@include _orders.mixin($breakpoint);
|
48
50
|
@include _overflow.mixin($breakpoint);
|
49
51
|
@include _padding.mixin($breakpoint);
|
50
52
|
@include _paragraphs.mixin($breakpoint);
|
@@ -65,6 +67,7 @@
|
|
65
67
|
@include _layout-flex.mixin($breakpoint);
|
66
68
|
@include _layout-grid.mixin($breakpoint);
|
67
69
|
@include _margins.mixin($breakpoint);
|
70
|
+
@include _orders.mixin($breakpoint);
|
68
71
|
@include _overflow.mixin($breakpoint);
|
69
72
|
@include _padding.mixin($breakpoint);
|
70
73
|
@include _paragraphs.mixin($breakpoint);
|
package/styles/margins.scss
CHANGED
package/styles/paragraphs.scss
CHANGED
@@ -8,7 +8,28 @@ h1, h2, h3, h4, h5, h6, p, pre, hr, figure, fieldset {
|
|
8
8
|
}
|
9
9
|
|
10
10
|
@mixin mixin($breakpoint) {
|
11
|
-
|
12
|
-
|
11
|
+
|
12
|
+
@each $key, $value in (
|
13
|
+
'normal' : normal,
|
14
|
+
'nowrap' : nowrap,
|
15
|
+
'pre' : pre,
|
16
|
+
'pre-line' : pre-line,
|
17
|
+
'pre-wrap' : pre-wrap
|
18
|
+
) {
|
19
|
+
.#{$breakpoint}white-space-#{$key} {
|
20
|
+
white-space: $value !important;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
|
25
|
+
@each $key, $value in (
|
26
|
+
'left' : left,
|
27
|
+
'center' : center,
|
28
|
+
'right' : right,
|
29
|
+
'justify' : justify
|
30
|
+
) {
|
31
|
+
.#{$breakpoint}text-align-#{$key} {
|
32
|
+
text-align: $value;
|
33
|
+
}
|
13
34
|
}
|
14
35
|
}
|