@alfresco/adf-core 8.1.0-14664375052 → 8.1.0-14711395239
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/esm2022/lib/card-view/components/card-view/card-view.component.mjs +3 -3
- package/esm2022/shell/lib/components/shell/shell.component.mjs +3 -3
- package/fesm2022/adf-core.mjs +2 -2
- package/fesm2022/adf-core.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-shell.mjs +2 -2
- package/fesm2022/alfresco-adf-core-shell.mjs.map +1 -1
- package/lib/card-view/components/card-view/card-view.component.scss +10 -10
- package/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.scss +4 -4
- package/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.scss +2 -2
- package/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.scss +5 -5
- package/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.scss +8 -8
- package/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.scss +3 -3
- package/lib/card-view/components/card-view-textitem/card-view-textitem.component.scss +6 -6
- package/lib/comments/comments.component.scss +9 -9
- package/lib/datatable/components/datatable/datatable.component.scss +13 -13
- package/lib/dialogs/edit-json/edit-json.dialog.scss +2 -2
- package/lib/dynamic-chip-list/dynamic-chip-list.component.scss +3 -3
- package/lib/form/components/form-renderer.component.scss +18 -18
- package/lib/form/components/inplace-form-input/inplace-form-input.component.scss +4 -4
- package/lib/form/components/widgets/amount/amount.widget.scss +4 -4
- package/lib/form/components/widgets/date-time/date-time.widget.scss +6 -6
- package/lib/form/components/widgets/form.theme.scss +9 -8
- package/lib/form/components/widgets/text/text.widget.scss +2 -2
- package/lib/identity-user-info/identity-user-info.component.scss +3 -3
- package/lib/info-drawer/info-drawer-layout.component.scss +8 -8
- package/lib/info-drawer/info-drawer.component.scss +10 -10
- package/lib/layout/components/header/header.component.scss +2 -2
- package/lib/layout/components/layout-container/layout-container.component.scss +3 -3
- package/lib/layout/components/sidenav-layout/sidenav-layout.component.scss +6 -6
- package/lib/login/components/login/login.component.scss +5 -5
- package/lib/notifications/components/notification-history.component.scss +4 -4
- package/lib/search-text/search-text-input.component.scss +2 -2
- package/lib/snackbar-content/snackbar-content.component.scss +2 -2
- package/lib/styles/_mat-selectors.scss +10 -0
- package/lib/styles/material.theme.scss +27 -26
- package/lib/templates/empty-content/empty-content.component.scss +0 -2
- package/lib/templates/error-content/error-content.component.scss +2 -2
- package/lib/viewer/components/img-viewer/img-viewer.component.scss +2 -2
- package/lib/viewer/components/pdf-viewer/pdf-viewer.component.scss +3 -3
- package/lib/viewer/components/viewer-render/viewer-render.component.scss +0 -1
- package/lib/viewer/components/viewer.component.scss +3 -3
- package/package.json +3 -3
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use './mat-selectors' as ms;
|
|
2
2
|
|
|
3
3
|
@mixin adf-material-theme() {
|
|
4
|
-
#{
|
|
5
|
-
& #{
|
|
6
|
-
& #{
|
|
7
|
-
&:not(#{
|
|
4
|
+
#{ms.$mat-expansion-panel} {
|
|
5
|
+
& #{ms.$mat-expansion-panel-header}.cdk-keyboard-focused,
|
|
6
|
+
& #{ms.$mat-expansion-panel-header}.cdk-program-focused,
|
|
7
|
+
&:not(#{ms.$mat-expanded}) #{ms.$mat-expansion-panel-header}:hover {
|
|
8
8
|
&:not([aria-disabled='true']) {
|
|
9
9
|
background-color: var(--adf-theme-background-hover-color);
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
#{
|
|
15
|
-
#{
|
|
14
|
+
#{ms.$mat-calendar} {
|
|
15
|
+
#{ms.$mat-calendar-header} {
|
|
16
16
|
button {
|
|
17
17
|
color: var(--adf-theme-foreground-text-color-087);
|
|
18
18
|
|
|
@@ -22,68 +22,69 @@
|
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
#{
|
|
26
|
-
#{
|
|
25
|
+
#{ms.$mat-calendar-content} {
|
|
26
|
+
#{ms.$mat-calendar-table-header} th {
|
|
27
27
|
color: var(--adf-theme-foreground-text-color-054);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
#{
|
|
30
|
+
#{ms.$mat-calendar-body-disabled} > div {
|
|
31
|
+
/* stylelint-disable-next-line declaration-no-important */
|
|
31
32
|
color: var(--adf-theme-foreground-text-color-054) !important;
|
|
32
33
|
}
|
|
33
34
|
}
|
|
34
35
|
}
|
|
35
36
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
#{ms.$mat-datetimepicker-calendar} {
|
|
38
|
+
#{ms.$mat-datetimepicker-calendar-header} {
|
|
39
|
+
#{ms.$mat-datetimepicker-calendar-header-year} {
|
|
39
40
|
opacity: 1;
|
|
40
41
|
}
|
|
41
42
|
|
|
42
|
-
|
|
43
|
+
#{ms.$mat-datetimepicker-calendar-header-date} {
|
|
43
44
|
opacity: 1;
|
|
44
45
|
}
|
|
45
46
|
|
|
46
|
-
|
|
47
|
+
#{ms.$mat-datetimepicker-calendar-header-time} {
|
|
47
48
|
opacity: 1;
|
|
48
49
|
}
|
|
49
50
|
}
|
|
50
51
|
|
|
51
|
-
|
|
52
|
-
|
|
52
|
+
#{ms.$mat-datetimepicker-calendar-content} {
|
|
53
|
+
#{ms.$mat-datetimepicker-calendar-table-header} th {
|
|
53
54
|
color: var(--adf-theme-foreground-text-color-054);
|
|
54
55
|
}
|
|
55
56
|
|
|
56
|
-
|
|
57
|
+
#{ms.$mat-datetimepicker-calendar-body-disabled} > div {
|
|
57
58
|
color: var(--adf-theme-foreground-text-color-054);
|
|
58
59
|
}
|
|
59
60
|
}
|
|
60
61
|
}
|
|
61
62
|
|
|
62
|
-
#{
|
|
63
|
-
&#{
|
|
63
|
+
#{ms.$mat-snackbar} {
|
|
64
|
+
&#{ms.$mat-snack-bar-container} {
|
|
64
65
|
margin: 24px;
|
|
65
66
|
|
|
66
|
-
#{
|
|
67
|
+
#{ms.$mat-snackbar-label} {
|
|
67
68
|
line-height: unset;
|
|
68
69
|
}
|
|
69
70
|
}
|
|
70
71
|
}
|
|
71
72
|
|
|
72
|
-
#{
|
|
73
|
+
#{ms.$mat-input-element} {
|
|
73
74
|
&:focus::placeholder {
|
|
74
75
|
color: var(--theme-primary-color);
|
|
75
76
|
}
|
|
76
77
|
}
|
|
77
78
|
|
|
78
|
-
#{
|
|
79
|
-
#{
|
|
80
|
-
#{
|
|
79
|
+
#{ms.$mat-datetimepicker-dialog} {
|
|
80
|
+
#{ms.$mat-dialog-container} {
|
|
81
|
+
#{ms.$mat-dialog-surface} {
|
|
81
82
|
padding: 0;
|
|
82
83
|
}
|
|
83
84
|
}
|
|
84
85
|
}
|
|
85
86
|
|
|
86
|
-
#{
|
|
87
|
+
#{ms.$mat-button-base} {
|
|
87
88
|
-webkit-font-smoothing: antialiased;
|
|
88
89
|
}
|
|
89
90
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use '../../styles/flex' as flex;
|
|
2
2
|
|
|
3
3
|
.adf-error-content {
|
|
4
4
|
color: var(--adf-theme-foreground-text-color-054);
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
@include layout-bp(lt-md) {
|
|
39
|
+
@include flex.layout-bp(lt-md) {
|
|
40
40
|
.adf-error-content {
|
|
41
41
|
&-code {
|
|
42
42
|
margin-top: 100px;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use '../../../styles/mat-selectors' as ms;
|
|
2
2
|
|
|
3
3
|
.adf-image-viewer {
|
|
4
4
|
width: 100%;
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
left: 50%;
|
|
34
34
|
transform: translateX(-50%);
|
|
35
35
|
|
|
36
|
-
.adf-toolbar #{
|
|
36
|
+
.adf-toolbar #{ms.$mat-toolbar} {
|
|
37
37
|
max-height: 48px;
|
|
38
38
|
background-color: var(--adf-theme-background-card-color);
|
|
39
39
|
border-width: 0;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use '../../../styles/mat-selectors' as ms;
|
|
2
2
|
|
|
3
3
|
.adf-pdf-viewer {
|
|
4
4
|
width: 100%;
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
max-height: 100px;
|
|
80
80
|
max-width: 300px;
|
|
81
81
|
|
|
82
|
-
#{
|
|
82
|
+
#{ms.$mat-progress-bar} {
|
|
83
83
|
max-width: 300px;
|
|
84
84
|
margin: 0;
|
|
85
85
|
position: absolute;
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
left: 50%;
|
|
99
99
|
transform: translateX(-50%);
|
|
100
100
|
|
|
101
|
-
.adf-toolbar #{
|
|
101
|
+
.adf-toolbar #{ms.$mat-toolbar} {
|
|
102
102
|
max-height: 48px;
|
|
103
103
|
background-color: var(--adf-theme-background-card-color);
|
|
104
104
|
border-width: 0;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* stylelint-disable scss/at-extend-no-missing-placeholder */
|
|
2
|
-
@
|
|
2
|
+
@use '../../styles/mat-selectors' as ms;
|
|
3
3
|
|
|
4
4
|
.adf-full-screen {
|
|
5
5
|
width: 100%;
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
width: 100%;
|
|
13
13
|
height: 100%;
|
|
14
14
|
|
|
15
|
-
#{
|
|
15
|
+
#{ms.$mat-toolbar} {
|
|
16
16
|
color: var(--adf-theme-foreground-text-color-054);
|
|
17
17
|
|
|
18
18
|
.adf-toolbar-title {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
&-toolbar {
|
|
36
|
-
#{
|
|
36
|
+
#{ms.$mat-toolbar} {
|
|
37
37
|
background-color: var(--adf-theme-background-card-color-087);
|
|
38
38
|
}
|
|
39
39
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfresco/adf-core",
|
|
3
3
|
"description": "Alfresco ADF core",
|
|
4
|
-
"version": "8.1.0-
|
|
4
|
+
"version": "8.1.0-14711395239",
|
|
5
5
|
"author": "Hyland Software, Inc. and its affiliates",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"@angular/router": ">=16.0.0",
|
|
76
76
|
"@mat-datetimepicker/core": ">=12.0.1",
|
|
77
77
|
"@ngx-translate/core": ">=14.0.0",
|
|
78
|
-
"@alfresco/js-api": ">=9.1.0-
|
|
79
|
-
"@alfresco/adf-extensions": ">=8.1.0-
|
|
78
|
+
"@alfresco/js-api": ">=9.1.0-14711395239",
|
|
79
|
+
"@alfresco/adf-extensions": ">=8.1.0-14711395239",
|
|
80
80
|
"minimatch": ">=10.0.0",
|
|
81
81
|
"pdfjs-dist": ">=3.3.122",
|
|
82
82
|
"ts-morph": ">=20.0.0"
|