@pega/angular-sdk-components 0.242.1 → 0.242.2
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/_components/field/group/group.component.mjs +3 -3
- package/esm2022/lib/_components/field/scalar-list/scalar-list.component.mjs +3 -3
- package/esm2022/lib/_components/infra/Containers/flow-container/flow-container.component.mjs +5 -3
- package/esm2022/lib/_components/infra/Containers/view-container/view-container.component.mjs +14 -11
- package/esm2022/lib/_components/infra/defer-load/defer-load.component.mjs +2 -2
- package/esm2022/lib/_components/infra/root-container/root-container.component.mjs +3 -1
- package/esm2022/lib/_components/infra/view/view.component.mjs +3 -3
- package/esm2022/lib/_components/template/data-reference/data-reference.component.mjs +2 -2
- package/esm2022/lib/_components/template/default-form/default-form.component.mjs +5 -3
- package/esm2022/lib/_components/template/details/details.component.mjs +2 -2
- package/esm2022/lib/_components/template/details-one-column/details-one-column.component.mjs +2 -2
- package/esm2022/lib/_components/template/details-three-column/details-three-column.component.mjs +2 -2
- package/esm2022/lib/_components/template/details-two-column/details-two-column.component.mjs +2 -2
- package/esm2022/lib/_components/template/details-wide-narrow/details-wide-narrow.component.mjs +2 -2
- package/esm2022/lib/_components/template/dynamic-tabs/dynamic-tabs.component.mjs +2 -2
- package/esm2022/lib/_components/template/field-group-template/field-group-template.component.mjs +3 -3
- package/esm2022/lib/_components/template/field-value-list/field-value-list.component.mjs +3 -3
- package/esm2022/lib/_components/template/form-template-base/form-template-base.component.mjs +13 -0
- package/esm2022/lib/_components/template/list-view/list-view.component.mjs +2 -2
- package/esm2022/lib/_components/template/one-column/one-column.component.mjs +5 -4
- package/esm2022/lib/_components/template/page/page.component.mjs +3 -1
- package/esm2022/lib/_components/template/simple-table-manual/helpers.mjs +2 -2
- package/esm2022/lib/_components/template/three-column/three-column.component.mjs +5 -4
- package/esm2022/lib/_components/template/two-column/two-column.component.mjs +5 -4
- package/esm2022/lib/_components/template/wide-narrow-form/wide-narrow-form.component.mjs +5 -4
- package/esm2022/lib/_helpers/field-group-utils.mjs +3 -3
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/pega-angular-sdk-components.mjs +72 -51
- package/fesm2022/pega-angular-sdk-components.mjs.map +1 -1
- package/lib/_components/template/default-form/default-form.component.d.ts +2 -1
- package/lib/_components/template/form-template-base/form-template-base.component.d.ts +8 -0
- package/lib/_components/template/one-column/one-column.component.d.ts +2 -1
- package/lib/_components/template/three-column/three-column.component.d.ts +2 -1
- package/lib/_components/template/two-column/two-column.component.d.ts +2 -1
- package/lib/_components/template/wide-narrow-form/wide-narrow-form.component.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
3
|
import { FormGroup } from '@angular/forms';
|
|
4
4
|
import { TemplateUtils } from '../../../_helpers/template-utils';
|
|
5
|
+
import { FormTemplateBaseComponent } from '../form-template-base/form-template-base.component';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class DefaultFormComponent implements OnInit {
|
|
7
|
+
export declare class DefaultFormComponent extends FormTemplateBaseComponent implements OnInit {
|
|
7
8
|
private templateUtils;
|
|
8
9
|
pConn$: typeof PConnect;
|
|
9
10
|
formGroup$: FormGroup;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FormTemplateBaseComponent implements OnDestroy {
|
|
4
|
+
pConn$: any;
|
|
5
|
+
ngOnDestroy(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormTemplateBaseComponent, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FormTemplateBaseComponent, never, never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
2
|
import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { FormTemplateBaseComponent } from '../form-template-base/form-template-base.component';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class OneColumnComponent implements OnInit, OnChanges {
|
|
6
|
+
export declare class OneColumnComponent extends FormTemplateBaseComponent implements OnInit, OnChanges {
|
|
6
7
|
pConn$: typeof PConnect;
|
|
7
8
|
formGroup$: FormGroup;
|
|
8
9
|
arChildren$: any[];
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
2
|
import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { FormTemplateBaseComponent } from '../form-template-base/form-template-base.component';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ThreeColumnComponent implements OnInit, OnChanges {
|
|
6
|
+
export declare class ThreeColumnComponent extends FormTemplateBaseComponent implements OnInit, OnChanges {
|
|
6
7
|
pConn$: typeof PConnect;
|
|
7
8
|
formGroup$: FormGroup;
|
|
8
9
|
arChildren$: any[];
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
2
|
import { OnInit, SimpleChanges, OnChanges } from '@angular/core';
|
|
3
3
|
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { FormTemplateBaseComponent } from '../form-template-base/form-template-base.component';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TwoColumnComponent implements OnInit, OnChanges {
|
|
6
|
+
export declare class TwoColumnComponent extends FormTemplateBaseComponent implements OnInit, OnChanges {
|
|
6
7
|
pConn$: typeof PConnect;
|
|
7
8
|
formGroup$: FormGroup;
|
|
8
9
|
arChildren$: any[];
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
2
|
import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { FormTemplateBaseComponent } from '../form-template-base/form-template-base.component';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class WideNarrowFormComponent implements OnInit, OnChanges {
|
|
6
|
+
export declare class WideNarrowFormComponent extends FormTemplateBaseComponent implements OnInit, OnChanges {
|
|
6
7
|
pConn$: typeof PConnect;
|
|
7
8
|
formGroup$: FormGroup;
|
|
8
9
|
arChildren$: any[];
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -59,6 +59,7 @@ export * from './lib/_components/template/details-wide-narrow/details-wide-narro
|
|
|
59
59
|
export * from './lib/_components/template/field-group-list/field-group-list.component';
|
|
60
60
|
export * from './lib/_components/template/field-group-template/field-group-template.component';
|
|
61
61
|
export * from './lib/_components/template/field-value-list/field-value-list.component';
|
|
62
|
+
export * from './lib/_components/template/form-template-base/form-template-base.component';
|
|
62
63
|
export * from './lib/_components/template/inline-dashboard/inline-dashboard.component';
|
|
63
64
|
export * from './lib/_components/template/inline-dashboard-page/inline-dashboard-page.component';
|
|
64
65
|
export * from './lib/_components/template/list-page/list-page.component';
|