@alfresco/adf-content-services 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/fesm2022/adf-content-services.mjs +30 -30
- package/lib/aspect-list/aspect-list.component.scss +1 -1
- package/lib/breadcrumb/breadcrumb.component.scss +2 -2
- package/lib/breadcrumb/dropdown-breadcrumb.component.scss +1 -1
- package/lib/content-metadata/components/content-metadata/content-metadata.component.scss +1 -1
- package/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.scss +1 -1
- package/lib/content-node-selector/name-location-cell/name-location-cell.component.scss +1 -1
- package/lib/content-node-share/content-node-share.dialog.scss +1 -1
- package/lib/dialogs/folder/folder.dialog.scss +1 -1
- package/lib/document-list/components/document-list.component.scss +1 -1
- package/lib/flex.scss +12 -7
- package/lib/new-version-uploader/new-version-uploader.dialog.scss +1 -1
- package/lib/search/components/search-facet-field/search-facet-field.component.scss +1 -1
- package/lib/search/components/search-filter/search-filter.component.scss +1 -1
- package/lib/search/components/search-filter-chips/search-filter-menu-card/search-filter-menu-card.component.scss +1 -1
- package/lib/search/components/search-sorting-picker/search-sorting-picker.component.scss +1 -1
- package/lib/upload/components/file-uploading-dialog.component.scss +2 -2
- package/package.json +3 -3
|
@@ -83,7 +83,7 @@ $dialog-list-height: calc(65vh - ($dialog-title-height + $dialog-information-hei
|
|
|
83
83
|
.adf-aspect-property-table-column-title,
|
|
84
84
|
.adf-aspect-property-table-column-data-type {
|
|
85
85
|
font-size: 12px;
|
|
86
|
-
color: var(--adf-theme-foreground-text-color-
|
|
86
|
+
color: var(--adf-theme-foreground-text-color-064);
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
.adf-aspect-property-table-column {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
font-size: var(--theme-body-1-font-size);
|
|
6
6
|
font-weight: 600;
|
|
7
7
|
letter-spacing: -0.2px;
|
|
8
|
-
color: var(--adf-theme-foreground-text-color-
|
|
8
|
+
color: var(--adf-theme-foreground-text-color-064);
|
|
9
9
|
overflow: hidden;
|
|
10
10
|
|
|
11
11
|
&-container {
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
font-weight: 600;
|
|
76
76
|
letter-spacing: -0.2px;
|
|
77
77
|
text-align: left;
|
|
78
|
-
color: var(--adf-theme-foreground-text-color-
|
|
78
|
+
color: var(--adf-theme-foreground-text-color-064);
|
|
79
79
|
flex: 0 1 auto;
|
|
80
80
|
min-width: 35px;
|
|
81
81
|
margin-top: auto;
|
|
@@ -10,7 +10,7 @@ $dropdown-horizontal-offset: 30px;
|
|
|
10
10
|
font-size: var(--theme-body-1-font-size);
|
|
11
11
|
font-weight: 600;
|
|
12
12
|
letter-spacing: -0.2px;
|
|
13
|
-
color: var(--adf-theme-foreground-text-color-
|
|
13
|
+
color: var(--adf-theme-foreground-text-color-064);
|
|
14
14
|
overflow: hidden;
|
|
15
15
|
margin-top: 10px;
|
|
16
16
|
|
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 */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* stylelint-disable no-descending-specificity */
|
|
2
2
|
.adf-upload-dialog {
|
|
3
3
|
background: var(--adf-theme-background-dialog-color);
|
|
4
|
-
color: var(--adf-theme-foreground-text-color-
|
|
4
|
+
color: var(--adf-theme-foreground-text-color-064);
|
|
5
5
|
position: fixed;
|
|
6
6
|
bottom: 20px;
|
|
7
7
|
width: 40%;
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
width: 24px;
|
|
37
37
|
padding: 0;
|
|
38
38
|
line-height: 0;
|
|
39
|
-
color: var(--adf-theme-foreground-text-color-
|
|
39
|
+
color: var(--adf-theme-foreground-text-color-064);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfresco/adf-content-services",
|
|
3
3
|
"description": "Alfresco ADF content services",
|
|
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-
|
|
24
|
+
"@alfresco/js-api": ">=9.4.0-20032496569",
|
|
25
25
|
"@ngx-translate/core": ">=16.0.0",
|
|
26
|
-
"@alfresco/adf-core": ">=8.4.0-
|
|
26
|
+
"@alfresco/adf-core": ">=8.4.0-20032496569"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"content-services",
|