coer-elements 2.0.70 → 2.0.72
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-dropdown/coer-dropdown.component.d.ts +1 -1
- package/components/lib/coer-grid/coer-grid-header/coer-grid-header.component.d.ts +1 -1
- package/components/lib/coer-modal/coer-modal.component.d.ts +1 -1
- package/components/lib/components.module.d.ts +1 -1
- package/components/public-api.d.ts +1 -1
- package/fesm2022/coer-elements-components.mjs +15 -15
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +3 -3
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +3 -3
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +5 -5
- package/styles/coer-elements.css +1 -1
- package/styles/colors.scss +5 -2
- package/styles/components.scss +3 -2
- package/styles/displays.scss +1 -1
- package/styles/font-size.scss +22 -0
- package/styles/fonts.scss +1 -8
- package/styles/index.scss +26 -4
- /package/components/lib/{coer-sidenav/coer-toolbar → coer-toolbar}/coer-toolbar.component.d.ts +0 -0
- /package/styles/{borders.scss → border.scss} +0 -0
package/styles/colors.scss
CHANGED
@@ -68,8 +68,8 @@
|
|
68
68
|
|
69
69
|
//App Colors
|
70
70
|
'breadcrumbs' : var(--breadcrumbs-inner),
|
71
|
-
'app-background': var(--background-inner),
|
72
71
|
'containers' : var(--containers-inner),
|
72
|
+
'app-background': var(--background-inner),
|
73
73
|
|
74
74
|
//Inputs
|
75
75
|
'inputs' : var(--inputs-inner),
|
@@ -87,7 +87,10 @@
|
|
87
87
|
'toolbar-text': var(--toolbar-text-inner)
|
88
88
|
) {
|
89
89
|
// Text
|
90
|
-
.#{$breakpoint}text-#{$key}
|
90
|
+
.#{$breakpoint}text-#{$key},
|
91
|
+
.#{$breakpoint}color-#{$key} {
|
92
|
+
color: $value !important;
|
93
|
+
}
|
91
94
|
|
92
95
|
// Backgrounds
|
93
96
|
.#{$breakpoint}background-color-#{$key} { background-color: $value !important; }
|
package/styles/components.scss
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
@use "../components/lib/coer-sidenav/coer-sidenav.component.scss";
|
11
11
|
@use "../components/lib/coer-sidenav/coer-menu-option/coer-menu-option.component.scss";
|
12
12
|
@use "../components/lib/coer-sidenav/coer-tree-accordion/coer-tree-accordion.component.scss";
|
13
|
-
@use "../components/lib/coer-
|
13
|
+
@use "../components/lib/coer-toolbar/coer-toolbar.component.scss";
|
14
14
|
@use "../components/lib/coer-switch/coer-switch.component.scss";
|
15
15
|
@use "../components/lib/coer-tab/coer-tab.component.scss";
|
16
16
|
@use "../tools/lib/coer-alert/coer-alert.component.scss";
|
@@ -342,6 +342,7 @@ coer-textbox,
|
|
342
342
|
coer-numberbox,
|
343
343
|
coer-dropdown,
|
344
344
|
coer-selectbox,
|
345
|
-
coer-filebox
|
345
|
+
coer-filebox,
|
346
|
+
login-page {
|
346
347
|
display: contents !important;
|
347
348
|
}
|
package/styles/displays.scss
CHANGED
@@ -0,0 +1,22 @@
|
|
1
|
+
@mixin mixin($breakpoint) {
|
2
|
+
|
3
|
+
@for $i from 0 through 100 {
|
4
|
+
.#{$breakpoint}font-size-#{$i}px {
|
5
|
+
font-size: $i * 1px !important;
|
6
|
+
}
|
7
|
+
}
|
8
|
+
|
9
|
+
@each $key, $value in (
|
10
|
+
'xx-small': xx-small,
|
11
|
+
'x-small' : x-small,
|
12
|
+
'small' : small,
|
13
|
+
'medium' : medium,
|
14
|
+
'large' : large,
|
15
|
+
'x-large' : x-large,
|
16
|
+
'xx-large': xx-large
|
17
|
+
) {
|
18
|
+
.#{$breakpoint}font-size-#{$key} {
|
19
|
+
font-size: $value;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
package/styles/fonts.scss
CHANGED
package/styles/index.scss
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
@use "./animations.scss" as _animations;
|
2
|
-
@use "./
|
2
|
+
@use "./border.scss" as _border;
|
3
3
|
@use "./colors.scss" as _colors;
|
4
4
|
@use "./components.scss";
|
5
5
|
@use "./containers.scss";
|
6
6
|
@use "./cursors.scss" as _cursors;
|
7
7
|
@use "./displays.scss" as _displays;
|
8
|
+
@use "./font-size.scss" as _font-size;
|
8
9
|
@use "./fonts.scss" as _fonts;
|
9
10
|
@use "./icons/icons.scss";
|
10
11
|
@use "./layout-flex-wrap.scss" as _layout-flex-wrap;
|
@@ -30,14 +31,34 @@
|
|
30
31
|
'xl-' : 1200px,
|
31
32
|
'xxl-' : 1400px,
|
32
33
|
) {
|
34
|
+
@if ($breakpoint == '') {
|
35
|
+
@include _animations.mixin($breakpoint);
|
36
|
+
@include _border.mixin($breakpoint);
|
37
|
+
@include _colors.mixin($breakpoint);
|
38
|
+
@include _cursors.mixin($breakpoint);
|
39
|
+
@include _displays.mixin($breakpoint);
|
40
|
+
@include _font-size.mixin($breakpoint);
|
41
|
+
@include _fonts.mixin($breakpoint);
|
42
|
+
@include _layout-flex-wrap.mixin($breakpoint);
|
43
|
+
@include _layout-flex.mixin($breakpoint);
|
44
|
+
@include _layout-grid.mixin($breakpoint);
|
45
|
+
@include _margins.mixin($breakpoint);
|
46
|
+
@include _orders.mixin($breakpoint);
|
47
|
+
@include _overflow.mixin($breakpoint);
|
48
|
+
@include _padding.mixin($breakpoint);
|
49
|
+
@include _paragraphs.mixin($breakpoint);
|
50
|
+
@include _positions.mixin($breakpoint);
|
51
|
+
@include _width-height.mixin($breakpoint);
|
52
|
+
}
|
33
53
|
|
34
|
-
@if ($breakpoint == 'mv-') {
|
54
|
+
@else if ($breakpoint == 'mv-') {
|
35
55
|
@media (min-width: $min-width) and (max-width: 499px) {
|
36
56
|
@include _animations.mixin($breakpoint);
|
37
|
-
@include
|
57
|
+
@include _border.mixin($breakpoint);
|
38
58
|
@include _colors.mixin($breakpoint);
|
39
59
|
@include _cursors.mixin($breakpoint);
|
40
60
|
@include _displays.mixin($breakpoint);
|
61
|
+
@include _font-size.mixin($breakpoint);
|
41
62
|
@include _fonts.mixin($breakpoint);
|
42
63
|
@include _layout-flex-wrap.mixin($breakpoint);
|
43
64
|
@include _layout-flex.mixin($breakpoint);
|
@@ -55,10 +76,11 @@
|
|
55
76
|
@else {
|
56
77
|
@media (min-width: $min-width) {
|
57
78
|
@include _animations.mixin($breakpoint);
|
58
|
-
@include
|
79
|
+
@include _border.mixin($breakpoint);
|
59
80
|
@include _colors.mixin($breakpoint);
|
60
81
|
@include _cursors.mixin($breakpoint);
|
61
82
|
@include _displays.mixin($breakpoint);
|
83
|
+
@include _font-size.mixin($breakpoint);
|
62
84
|
@include _fonts.mixin($breakpoint);
|
63
85
|
@include _layout-flex-wrap.mixin($breakpoint);
|
64
86
|
@include _layout-flex.mixin($breakpoint);
|
/package/components/lib/{coer-sidenav/coer-toolbar → coer-toolbar}/coer-toolbar.component.d.ts
RENAMED
File without changes
|
File without changes
|