@alfresco/adf-core 8.1.0-15056899369 → 8.1.0-15062126690
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/app-config/app-config.loader.mjs +1 -5
- package/esm2022/lib/form/components/form-base.component.mjs +2 -1
- package/esm2022/lib/form/components/form-field/form-field.component.mjs +5 -2
- package/esm2022/lib/form/components/form-renderer.component.mjs +9 -3
- package/esm2022/lib/form/components/widgets/core/form-field.model.mjs +3 -11
- package/fesm2022/adf-core.mjs +15 -17
- package/fesm2022/adf-core.mjs.map +1 -1
- package/lib/form/components/form-field/form-field.component.d.ts +3 -2
- package/lib/form/components/form-renderer.component.d.ts +4 -2
- package/package.json +3 -3
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
-
import { ComponentRef, OnDestroy, OnInit, ViewContainerRef } from '@angular/core';
|
|
17
|
+
import { ComponentRef, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
|
|
18
18
|
import { FormFieldModel } from '../widgets/core/form-field.model';
|
|
19
19
|
import * as i0 from "@angular/core";
|
|
20
|
-
export declare class FormFieldComponent implements OnInit, OnDestroy {
|
|
20
|
+
export declare class FormFieldComponent implements OnInit, OnDestroy, OnChanges {
|
|
21
21
|
container: ViewContainerRef;
|
|
22
22
|
/**
|
|
23
23
|
* Contains all the necessary data needed to determine what UI Widget
|
|
@@ -33,6 +33,7 @@ export declare class FormFieldComponent implements OnInit, OnDestroy {
|
|
|
33
33
|
private readonly destroyRef;
|
|
34
34
|
private readonly compiler;
|
|
35
35
|
ngOnInit(): void;
|
|
36
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
36
37
|
private updateReactiveFormControlOnFormRulesEvent;
|
|
37
38
|
private triggerFormFieldChanged;
|
|
38
39
|
ngOnDestroy(): void;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
1
|
+
import { AfterContentInit, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { FormRulesManager } from '../models/form-rules.model';
|
|
3
3
|
import { FormService } from '../services/form.service';
|
|
4
4
|
import { FormFieldModelRenderMiddleware } from './middlewares/middleware';
|
|
5
5
|
import { ContainerModel, FormFieldModel, FormModel, TabModel } from './widgets';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class FormRendererComponent<T> implements OnInit, OnDestroy {
|
|
7
|
+
export declare class FormRendererComponent<T> implements OnInit, OnDestroy, OnChanges, AfterContentInit {
|
|
8
8
|
formService: FormService;
|
|
9
9
|
private formRulesManager;
|
|
10
10
|
private middlewareServices?;
|
|
@@ -13,7 +13,9 @@ export declare class FormRendererComponent<T> implements OnInit, OnDestroy {
|
|
|
13
13
|
debugMode: boolean;
|
|
14
14
|
fields: FormFieldModel[];
|
|
15
15
|
constructor(formService: FormService, formRulesManager: FormRulesManager<T>, middlewareServices?: FormFieldModelRenderMiddleware[]);
|
|
16
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
16
17
|
ngOnInit(): void;
|
|
18
|
+
ngAfterContentInit(): void;
|
|
17
19
|
ngOnDestroy(): void;
|
|
18
20
|
hasTabs(): boolean;
|
|
19
21
|
visibleTabs(): TabModel[];
|
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-15062126690",
|
|
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-15062126690",
|
|
79
|
+
"@alfresco/adf-extensions": ">=8.1.0-15062126690",
|
|
80
80
|
"minimatch": ">=10.0.0",
|
|
81
81
|
"pdfjs-dist": ">=3.3.122",
|
|
82
82
|
"ts-morph": ">=20.0.0"
|