@alfresco/adf-core 8.1.0-14711395239 → 8.1.0-14714093103

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.
@@ -1,7 +1,5 @@
1
- @use '../../styles/mat-selectors' as ms;
2
-
3
1
  .adf-edit-json-dialog {
4
- #{ms.$mat-dialog-content} {
2
+ .adf-edit-json-dialog-content {
5
3
  height: 300px;
6
4
  overflow: hidden;
7
5
  }
@@ -8,8 +8,6 @@ export declare class FormRendererComponent<T> implements OnInit, OnDestroy {
8
8
  formService: FormService;
9
9
  private formRulesManager;
10
10
  private middlewareServices?;
11
- /** Toggle debug options. */
12
- showDebugButton: boolean;
13
11
  formDefinition: FormModel;
14
12
  readOnly: boolean;
15
13
  debugMode: boolean;
@@ -37,5 +35,5 @@ export declare class FormRendererComponent<T> implements OnInit, OnDestroy {
37
35
  getColumnWidth(container: ContainerModel): string;
38
36
  private runMiddlewareServices;
39
37
  static ɵfac: i0.ɵɵFactoryDeclaration<FormRendererComponent<any>, [null, null, { optional: true; }]>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<FormRendererComponent<any>, "adf-form-renderer", never, { "showDebugButton": { "alias": "showDebugButton"; "required": false; }; "formDefinition": { "alias": "formDefinition"; "required": true; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, {}, never, never, true, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormRendererComponent<any>, "adf-form-renderer", never, { "formDefinition": { "alias": "formDefinition"; "required": true; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, {}, never, never, true, never>;
41
39
  }
@@ -150,19 +150,6 @@
150
150
  text-overflow: ellipsis;
151
151
  }
152
152
 
153
- &-form-debug-container {
154
- padding: 10px;
155
- }
156
-
157
- &-form-debug-container .adf-debug-toggle-text {
158
- padding-left: 15px;
159
- cursor: pointer;
160
- }
161
-
162
- &-form-debug-container .adf-debug-toggle-text:hover {
163
- font-weight: bold;
164
- }
165
-
166
153
  &-form-reload-button {
167
154
  position: absolute;
168
155
  right: 12px;
@@ -1,41 +1,21 @@
1
- $material-icons: '.material-icons';
2
1
  $mat-icon: '.mat-icon';
3
- $mat-icon-button: '.mat-mdc-icon-button';
4
- $mat-icon-button-hover: '.mdc-icon-button__ripple';
5
- $mat-accent: '.mat-accent';
6
2
  $mat-focused: '.mat-focused';
7
3
  $mat-line: '.mat-line';
8
4
  $mat-tab-label: '.mat-mdc-tab';
9
5
  $mat-tab-label-active: '.mdc-tab--active';
10
- $mat-tab-label-content: '.mdc-tab__content';
11
6
  $mat-tab-label-container: '.mat-mdc-tab-label-container';
12
- $mat-expansion-panel-body: '.mat-expansion-panel-body';
13
7
  $mat-tab-label-text: '.mdc-tab__text-label';
14
- $mat-tab-list: '.mat-mdc-tab-list';
15
8
  $mat-tab-body: '.mat-mdc-tab-body';
16
- $mat-tab-body-wrapper: '.mat-mdc-tab-body-wrapper';
17
9
  $mat-tab-body-content: '.mat-mdc-tab-body-content';
18
- $mat-tab-header: '.mat-mdc-tab-header';
19
- $mat-tab-labels: '.mat-mdc-tab-labels';
20
10
  $mat-tab-ink-bar: '.mdc-tab-indicator';
21
11
  $mat-chip: '.mat-mdc-chip';
22
12
  $mat-chip-list: '.mat-mdc-chip-list';
23
- $mat-chip-list-wrapper: '.mat-chip-list-wrapper';
24
13
  $mat-checkbox: '.mat-mdc-checkbox';
25
- $mat-checkbox-box: '.mdc-checkbox';
26
- $mat-checkbox-frame: '.mdc-checkbox__checkmark';
27
14
  $mat-checkbox-label: '.mdc-label';
28
- $mat-checkbox-checked: '.mat-mdc-checkbox-checked';
29
15
  $mat-button: '.mat-mdc-button';
30
16
  $mat-button-label: '.mdc-button__label';
31
- $mat-button-label-text: '.mdc-button__label';
32
- $mat-radio-checked: '.mat-mdc-radio-checked';
33
- $mat-radio-label: '.mdc-label';
34
- $mat-progress-bar: '.mat-mdc-progress-bar';
35
- $mat-progress-spinner: '.mat-mdc-progress-spinner';
36
17
  $mat-form-field: '.mat-mdc-form-field';
37
18
  $mat-form-field-flex: '.mat-mdc-form-field-flex';
38
- $mat-form-field-outline: '.mat-mdc-form-field-outline';
39
19
  $mat-form-field-wrapper: '.mat-mdc-text-field-wrapper';
40
20
  $mat-line-ripple: '.mdc-line-ripple';
41
21
  $mat-form-field-subscript-wrapper: '.mat-mdc-form-field-subscript-wrapper';
@@ -44,37 +24,22 @@ $mat-form-field-suffix: '.mat-mdc-form-field-text-suffix';
44
24
  $mat-form-text-field-infix: '.mat-mdc-form-text-infix';
45
25
  $mat-form-field-label: '.mat-mdc-floating-label';
46
26
  $mat-form-field-invalid: '.mat-form-field-invalid';
47
- $mat-form-field-appearance-outline: '.mat-form-field-appearance-outline';
48
- $mat-text-field-outlined: '.mdc-text-field--outlined';
49
- $mat-text-field-outlined-thick: '.mdc-text-field--outlined-thick';
50
27
  $mat-text-field-focused: '.mdc-text-field--focused';
51
- $mat-dialog-actions: '.mat-mdc-dialog-actions';
52
28
  $mat-dialog-container: '.mdc-dialog__container';
53
- $mat-dialog-content: '.mat-mdc-dialog-content';
54
- $mat-button-toggle: '.mat-button-toggle';
55
- $mat-button-toggle-checked: '.mat-button-toggle-checked';
56
29
  $mat-button-touch-target: '.mat-mdc-button-touch-target';
57
30
  $mat-input-element: '.mat-mdc-input-element';
58
31
  $mat-card: '.mat-mdc-card';
59
- $mat-card-actions: '.mat-mdc-card-actions';
60
32
  $mat-card-header-text: '.mat-mdc-card-header-text';
61
- $mat-card-title: '.mat-mdc-card-title';
62
- $mat-card-content: '.mat-mdc-card-content';
63
- $mat-mini-fab: '.mat-mdc-mini-fab';
64
- $mat-list-item-primary-text: '.mdc-list-item__primary-text';
65
- $mat-list-item-end: '.mdc-list-item__end';
66
33
  $mat-table: '.mat-mdc-table';
67
34
  $mat-header-row: '.mat-mdc-header-row';
68
35
  $mat-row: '.mat-mdc-row';
69
36
  $mat-select: '.mat-mdc-select';
70
37
  $mat-select-value: '.mat-select-value';
71
- $mat-select-value-text: '.mat-mdc-select-value-text';
72
38
  $mat-select-panel: '.mat-mdc-select-panel';
73
39
  $mat-grid-tile: '.mat-grid-tile';
74
40
  $mat-sidenav-content: '.mat-sidenav-content';
75
41
  $mat-drawer-transition: '.mat-drawer-transition';
76
42
  $mat-drawer-content: '.mat-drawer-content';
77
- $mat-subheader: '.mat-mdc-subheader';
78
43
  $mat-menu-panel: '.mat-mdc-menu-panel';
79
44
  $mat-menu-content: '.mat-mdc-menu-content';
80
45
  $mat-expansion-panel: '.mat-expansion-panel';
@@ -86,105 +51,34 @@ $mat-calendar-content: '.mat-calendar-content';
86
51
  $mat-calendar-table-header: '.mat-calendar-table-header';
87
52
  $mat-calendar-body-disabled: '.mat-calendar-body-disabled';
88
53
  $mat-toolbar: '.mat-toolbar';
89
- $mat-slide-toggle: '.mat-mdc-slide-toggle';
90
- $mat-list-item-content: '.mdc-list-item__content';
91
54
  $mat-list-item-unscoped-content: '.mat-mdc-list-item-unscoped-content';
92
55
  $mat-text-field-no-label: '.mdc-text-field--no-label';
93
56
  $mat-form-field-infix: '.mat-mdc-form-field-infix';
94
- $mat-form-field-hide-placeholder: '.mat-form-field-hide-placeholder';
95
- $mat-form-field-hint-wrapper: '.mat-mdc-form-field-hint-wrapper';
96
57
  $mat-form-field-error-wrapper: '.mat-mdc-form-field-error-wrapper';
97
58
  $mat-form-field-error: '.mat-mdc-form-field-error';
98
59
  $mat-checkbox-background: '.mdc-checkbox__background';
99
- $mat-dialog-content: '.mdc-dialog__content';
100
60
  $mat-floating-label: '.mdc-floating-label';
101
61
  $mat-floating-label-above: '.mdc-floating-label--float-above';
102
- $mat-select-arrow-wrapper: '.mat-mdc-select-arrow-wrapper';
103
- $mat-dialog-title: '.mdc-dialog__title';
104
- $mat-expansion-panel-body: '.mat-expansion-panel-body';
105
62
  $mat-dialog-surface: '.mat-mdc-dialog-surface';
106
- $mdc-dialog: '.mdc-dialog';
107
- $mat-text-filed-input: '.mdc-text-field__input';
108
- $mat-floating-label-float-above: '.mdc-floating-label--float-above';
109
63
  $mat-floating-label-required: '.mdc-floating-label--required';
110
64
  $mat-evolution-chip: '.mdc-evolution-chip';
111
- $mat-standard-chip: '.mat-mdc-standard-chip';
112
65
  $mat-evolution-chip-action: '.mdc-evolution-chip__action';
113
66
  $mat-evolution-chip-text-label: '.mdc-evolution-chip__text-label';
114
67
  $mat-notched-outline: '.mdc-notched-outline';
115
68
  $mat-evolution-chip-graphic: '.mdc-evolution-chip__graphic';
116
69
  $mat-select-trigger: '.mat-mdc-select-trigger';
117
- $mat-select-arrow: '.mat-mdc-select-arrow';
118
- $mat-notched-outline-leading: '.mdc-notched-outline__leading';
119
- $mat-notched-outline-trailing: '.mdc-notched-outline__trailing';
120
- $mat-notched-outline-notch: '.mdc-notched-outline__notch';
121
- $mat-evolution-chip-set: '.mdc-evolution-chip-set';
122
- $mat-mdc-button: '.mdc-button';
123
- $mat-outlined-button: '.mat-mdc-outlined-button';
124
70
  $mat-button-base: '.mat-mdc-button-base';
125
71
  $mat-button-touch-target: '.mat-mdc-button-touch-target';
126
- $mat-evolution-chip-text-label: '.mdc-evolution-chip__text-label';
127
- $cdk-overlay-pane: '.cdk-overlay-pane';
128
72
  $cdk-drag-preview: '.cdk-drag-preview';
129
73
  $mat-snackbar: '.mdc-snackbar';
130
74
  $mat-snack-bar-container: '.mat-mdc-snack-bar-container';
131
75
  $mat-snackbar-label: '.mdc-snackbar__label';
132
76
  $mat-datetimepicker-dialog: '.mat-datetimepicker-dialog';
133
77
  $mat-tab-indicator-underline: '.mdc-tab-indicator__content--underline';
134
- $mat-autocomplete-panel: '.mat-mdc-autocomplete-panel';
135
- $mat-menu-surface: '.mdc-menu-surface';
136
- $mat-text-field-filled: '.mdc-text-field--filled';
137
- $mat-text-field-disabled: '.mdc-text-field--disabled';
138
- $mat-form-field-focus-overlay: '.mat-mdc-form-field-focus-overlay';
139
- $mat-form-field-error-wrapper: '.mat-mdc-form-field-error-wrapper';
140
- $mat-text-field-textarea: '.mdc-text-field--textarea';
141
- $mat-list-item-disabled: '.mdc-list-item--disabled';
142
- $mat-chip-focus-overlay: '.mat-mdc-chip-focus-overlay';
143
- $mat-primary: '.mat-primary';
144
- $mat-checkbox-touch-target: '.mat-mdc-checkbox-touch-target';
145
- $mat-switch: '.mdc-switch';
146
- $mat-switch-ripple: '.mdc-switch-ripple';
147
- $mat-switch-selected: '.mdc-switch--selected';
148
- $mat-switch-checked: '.mdc-switch--checked';
149
- $mat-switch-handle-track: '.mdc-switch__handle-track';
150
- $mat-switch-handle: '.mdc-switch__handle';
151
- $mat-switch-track: '.mdc-switch__track';
152
- $mat-switch-icons: '.mdc-switch__icons';
153
- $mat-switch-shadow: '.mdc-switch__shadow';
154
- $mat-switch-unselected: '.mdc-switch--unselected';
155
- $mat-chip-action: '.mat-mdc-chip-action';
156
- $mat-chip-graphic: '.mat-mdc-chip-graphic';
157
- $mat-data-table-row: '.mdc-data-table__row';
158
- $mat-data-table-cell: '.mdc-data-table__cell';
159
- $mat-data-table-header-cell: '.mdc-data-table__header-cell';
160
- $mat-toolbar-single-row: '.mat-toolbar-single-row';
161
- $mat-toolbar-multiple-row: '.mat-toolbar-multiple-row';
162
- $mat-unthemed: '.mat-unthemed';
163
- $mat-calendar-period-button: '.mat-calendar-period-button';
164
- $mat-radio-button: '.mat-mdc-radio-button';
165
- $mat-radio: '.mdc-radio';
166
- $mat-tab-ripple: '.mdc-tab__ripple';
167
- $mat-tab-disabled: '.mat-mdc-tab-disabled';
168
- $mat-tab-group: '.mat-mdc-tab-group';
169
- $mat-tab-group-stretch: '.mat-mdc-tab-group-stretch-tabs';
170
78
  $mat-list-item: '.mdc-list-item';
171
- $mat-menu-item: '.mat-mdc-menu-item';
172
- $mat-icon-no-color: '.mat-icon-no-color';
173
- $mat-submenu-icon: '.mat-menu-submenu-icon';
174
- $mat-mdc-submenu-icon: '.mat-mdc-menu-submenu-icon';
175
- $mdc-form-field: '.mdc-form-field';
176
- $mat-divider-horizontal: '.mat-divider-horizontal';
177
- $mat-accordion: '.mat-accordion';
178
- $mdc-list: '.mdc-list';
179
79
  $mat-form-field-icon-suffix: '.mat-mdc-form-field-icon-suffix';
180
80
  $mat-text-field: '.mdc-text-field';
181
- $mat-form-field-disabled: '.mat-form-field-disabled';
182
- $mat-select-disabled: '.mat-mdc-select-disabled';
183
81
  $mat-select-value: '.mat-mdc-select-value';
184
- $mat-checkbox-native-control: '.mdc-checkbox__native-control';
185
- $mat-checkbox-selected: '.mdc-checkbox--selected';
186
- $mat-checkbox-ripple: '.mat-mdc-checkbox-ripple';
187
- $mat-list-base: '.mat-mdc-list-base';
188
82
  $mat-card-header: '.mat-mdc-card-header';
189
83
  $mat-datetimepicker-calendar: '.mat-datetimepicker-calendar';
190
84
  $mat-datetimepicker-calendar-header: '.mat-datetimepicker-calendar-header';
@@ -79,7 +79,7 @@
79
79
  max-height: 100px;
80
80
  max-width: 300px;
81
81
 
82
- #{ms.$mat-progress-bar} {
82
+ .adf-loader-item-progress-bar {
83
83
  max-width: 300px;
84
84
  margin: 0;
85
85
  position: absolute;
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-14711395239",
4
+ "version": "8.1.0-14714093103",
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-14711395239",
79
- "@alfresco/adf-extensions": ">=8.1.0-14711395239",
78
+ "@alfresco/js-api": ">=9.1.0-14714093103",
79
+ "@alfresco/adf-extensions": ">=8.1.0-14714093103",
80
80
  "minimatch": ">=10.0.0",
81
81
  "pdfjs-dist": ">=3.3.122",
82
82
  "ts-morph": ">=20.0.0"