@alfresco/adf-process-services-cloud 8.4.0-20032228950 → 8.4.0-20032496569
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/lib/flex.scss +12 -7
- package/package.json +4 -4
package/lib/flex.scss
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
+
@use 'sass:map';
|
|
2
3
|
/* stylelint-disable */
|
|
3
4
|
|
|
4
5
|
// Non-overlapping Material Design breakpoints
|
|
@@ -60,22 +61,26 @@ $overlapping-lt: (
|
|
|
60
61
|
// background-color: red;
|
|
61
62
|
// }
|
|
62
63
|
@mixin layout-bp($bp) {
|
|
63
|
-
@if map
|
|
64
|
-
$min: map
|
|
65
|
-
$max: map
|
|
64
|
+
@if map.has-key($breakpoints, $bp) {
|
|
65
|
+
$min: map.get(map.get($breakpoints, $bp), begin);
|
|
66
|
+
$max: map.get(map.get($breakpoints, $bp), end);
|
|
67
|
+
|
|
66
68
|
@media (min-width: $min) and (max-width: $max) {
|
|
67
69
|
@content;
|
|
68
70
|
}
|
|
69
|
-
} @else if map
|
|
70
|
-
$min: map
|
|
71
|
+
} @else if map.has-key($overlapping-gt, $bp) {
|
|
72
|
+
$min: map.get($overlapping-gt, $bp);
|
|
73
|
+
|
|
71
74
|
@media (min-width: $min) {
|
|
72
75
|
@content;
|
|
73
76
|
}
|
|
74
|
-
} @else if map
|
|
75
|
-
$max: map
|
|
77
|
+
} @else if map.has-key($overlapping-lt, $bp) {
|
|
78
|
+
$max: map.get($overlapping-lt, $bp);
|
|
79
|
+
|
|
76
80
|
@media (max-width: $max) {
|
|
77
81
|
@content;
|
|
78
82
|
}
|
|
79
83
|
}
|
|
80
84
|
}
|
|
85
|
+
|
|
81
86
|
/* stylelint-enable */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfresco/adf-process-services-cloud",
|
|
3
3
|
"description": "Alfresco ADF process services cloud",
|
|
4
|
-
"version": "8.4.0-
|
|
4
|
+
"version": "8.4.0-20032496569",
|
|
5
5
|
"author": "Hyland Software, Inc. and its affiliates",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"@angular/platform-browser": ">=14.1.3",
|
|
22
22
|
"@angular/platform-browser-dynamic": ">=14.1.3",
|
|
23
23
|
"@angular/router": ">=14.1.3",
|
|
24
|
-
"@alfresco/js-api": ">=9.4.0-
|
|
25
|
-
"@alfresco/adf-core": ">=8.4.0-
|
|
26
|
-
"@alfresco/adf-content-services": ">=8.4.0-
|
|
24
|
+
"@alfresco/js-api": ">=9.4.0-20032496569",
|
|
25
|
+
"@alfresco/adf-core": ">=8.4.0-20032496569",
|
|
26
|
+
"@alfresco/adf-content-services": ">=8.4.0-20032496569",
|
|
27
27
|
"@apollo/client": ">=3.7.2",
|
|
28
28
|
"@ngx-translate/core": ">=14.0.0",
|
|
29
29
|
"apollo-angular": ">=4.0.1",
|