@mezzanine-ui/core 0.14.9 → 0.15.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/accordion/_accordion-styles.scss +2 -1
- package/button/_button-styles.scss +4 -2
- package/date-range-picker/_date-range-picker-styles.scss +1 -4
- package/message/_message-styles.scss +1 -4
- package/modal/_modal-styles.scss +1 -4
- package/notification/_notification-styles.scss +1 -4
- package/overlay/_overlay-styles.scss +2 -8
- package/package.json +7 -7
- package/popover/_popover-styles.scss +1 -1
- package/stepper/_stepper-styles.scss +1 -2
- package/upload/_upload-picture-wall-styles.scss +1 -2
|
@@ -72,7 +72,8 @@ $details-right-padding: $accordion-horizontal-padding + $summary-icon-size + $su
|
|
|
72
72
|
|
|
73
73
|
.#{$prefix}__details {
|
|
74
74
|
width: 100%;
|
|
75
|
-
padding: $details-vertical-padding $details-right-padding
|
|
75
|
+
padding: $details-vertical-padding $details-right-padding
|
|
76
|
+
$details-vertical-padding $accordion-horizontal-padding;
|
|
76
77
|
height: auto;
|
|
77
78
|
min-height: 0;
|
|
78
79
|
border-bottom: 0;
|
|
@@ -88,8 +88,10 @@ $outlined-border-width: 1px !default;
|
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
@mixin _size() {
|
|
91
|
-
|
|
92
|
-
|
|
91
|
+
& {
|
|
92
|
+
padding: 0 $padding-x;
|
|
93
|
+
height: var(--#{$prefix}-height);
|
|
94
|
+
}
|
|
93
95
|
|
|
94
96
|
@each $size in $sizes {
|
|
95
97
|
$typography-variant: map.get(
|
package/modal/_modal-styles.scss
CHANGED
|
@@ -3,10 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
.#{$prefix} {
|
|
5
5
|
position: absolute;
|
|
6
|
-
|
|
7
|
-
left: 0;
|
|
8
|
-
bottom: 0;
|
|
9
|
-
right: 0;
|
|
6
|
+
inset: 0;
|
|
10
7
|
pointer-events: none;
|
|
11
8
|
|
|
12
9
|
&--open {
|
|
@@ -15,10 +12,7 @@
|
|
|
15
12
|
|
|
16
13
|
&__backdrop {
|
|
17
14
|
position: absolute;
|
|
18
|
-
|
|
19
|
-
left: 0;
|
|
20
|
-
right: 0;
|
|
21
|
-
bottom: 0;
|
|
15
|
+
inset: 0;
|
|
22
16
|
touch-action: none;
|
|
23
17
|
background-color: palette.color(overlay-bg);
|
|
24
18
|
-webkit-tap-highlight-color: transparent;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mezzanine-ui/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "Core for mezzanine-ui",
|
|
5
5
|
"author": "Mezzanine",
|
|
6
6
|
"repository": {
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"build:clean": "node ../../scripts/cleanBuild.js"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"dayjs": "
|
|
27
|
-
"lodash": "
|
|
28
|
-
"luxon": "
|
|
29
|
-
"moment": "
|
|
26
|
+
"dayjs": ">=1",
|
|
27
|
+
"lodash": ">=4",
|
|
28
|
+
"luxon": ">=3",
|
|
29
|
+
"moment": ">=2"
|
|
30
30
|
},
|
|
31
31
|
"peerDependenciesMeta": {
|
|
32
32
|
"dayjs": {
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@mezzanine-ui/icons": "^0.
|
|
44
|
-
"@mezzanine-ui/system": "^0.
|
|
43
|
+
"@mezzanine-ui/icons": "^0.15.0",
|
|
44
|
+
"@mezzanine-ui/system": "^0.15.0",
|
|
45
45
|
"lodash": "^4.17.21",
|
|
46
46
|
"tslib": "^2.4.1"
|
|
47
47
|
},
|
|
@@ -32,14 +32,13 @@ $step-items-margin-right: spacing.level(2) !default;
|
|
|
32
32
|
--#{$prefix-step}-icon-background-color: #{palette.color(on-primary)};
|
|
33
33
|
--#{$prefix-step}-icon-background-background: #{palette.color(primary)};
|
|
34
34
|
|
|
35
|
-
align-content: center;
|
|
36
35
|
align-items: center;
|
|
37
36
|
background-color: var(--#{$prefix-step}-icon-background-background);
|
|
38
37
|
border-radius: 50%;
|
|
39
38
|
color: var(--#{$prefix-step}-icon-background-color);
|
|
40
39
|
display: flex;
|
|
41
40
|
height: $icon-size;
|
|
42
|
-
|
|
41
|
+
place-content: center;
|
|
43
42
|
margin-right: $step-items-margin-right;
|
|
44
43
|
width: $icon-size;
|
|
45
44
|
}
|