@pega/angular-sdk-components 0.23.13 → 0.23.15
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/dropdown/dropdown.component.mjs +27 -13
- package/esm2022/lib/_components/infra/Containers/flow-container/flow-container.component.mjs +8 -5
- package/esm2022/lib/_components/infra/assignment/assignment.component.mjs +30 -31
- package/esm2022/lib/_services/banner.service.mjs +29 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/pega-angular-sdk-components.mjs +88 -46
- package/fesm2022/pega-angular-sdk-components.mjs.map +1 -1
- package/lib/_components/field/dropdown/dropdown.component.d.ts +1 -1
- package/lib/_components/infra/assignment/assignment.component.d.ts +5 -3
- package/lib/_services/banner.service.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -1215,6 +1215,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1215
1215
|
}]
|
|
1216
1216
|
}], ctorParameters: function () { return [{ type: ProgressSpinnerService }, { type: ErrorMessagesService }, { type: Utils }]; } });
|
|
1217
1217
|
|
|
1218
|
+
class BannerService {
|
|
1219
|
+
constructor() {
|
|
1220
|
+
this.banners = [];
|
|
1221
|
+
this.localizedVal = PCore.getLocaleUtils().getLocaleValue;
|
|
1222
|
+
}
|
|
1223
|
+
clearBanners() {
|
|
1224
|
+
this.banners = [];
|
|
1225
|
+
}
|
|
1226
|
+
updateBanners(itemKey) {
|
|
1227
|
+
let validationErrors = PCore.getMessageManager().getValidationErrorMessages(itemKey) || [];
|
|
1228
|
+
// const completeProps = this.angularPConnect.getCurrentCompleteProps(this) as FlowContainerProps;
|
|
1229
|
+
validationErrors = validationErrors.map(item => ({ message: typeof item === 'string' ? item : `${item.label}: ${item.description}` }));
|
|
1230
|
+
// this.showPageMessages(completeProps);
|
|
1231
|
+
if (validationErrors.length) {
|
|
1232
|
+
this.banners = [{ messages: validationErrors?.map(msg => this.localizedVal(msg.message, 'Messages')), variant: 'urgent' }];
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BannerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1236
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BannerService, providedIn: 'root' }); }
|
|
1237
|
+
}
|
|
1238
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BannerService, decorators: [{
|
|
1239
|
+
type: Injectable,
|
|
1240
|
+
args: [{
|
|
1241
|
+
providedIn: 'root'
|
|
1242
|
+
}]
|
|
1243
|
+
}] });
|
|
1244
|
+
|
|
1218
1245
|
/* eslint-disable no-case-declarations */
|
|
1219
1246
|
function getRefreshProps(refreshConditions) {
|
|
1220
1247
|
// refreshConditions cuurently supports only "Changes" event
|
|
@@ -1224,12 +1251,13 @@ function getRefreshProps(refreshConditions) {
|
|
|
1224
1251
|
return refreshConditions.filter(item => item.event && item.event === 'Changes').map(item => [item.field, item.field?.substring(1)]) || [];
|
|
1225
1252
|
}
|
|
1226
1253
|
class AssignmentComponent {
|
|
1227
|
-
constructor(angularPConnect, psService, erService, ngZone, snackBar) {
|
|
1254
|
+
constructor(angularPConnect, psService, erService, ngZone, snackBar, bannerService) {
|
|
1228
1255
|
this.angularPConnect = angularPConnect;
|
|
1229
1256
|
this.psService = psService;
|
|
1230
1257
|
this.erService = erService;
|
|
1231
1258
|
this.ngZone = ngZone;
|
|
1232
1259
|
this.snackBar = snackBar;
|
|
1260
|
+
this.bannerService = bannerService;
|
|
1233
1261
|
this.isInModal$ = false;
|
|
1234
1262
|
// For interaction with AngularPConnect
|
|
1235
1263
|
this.angularPConnectData = {};
|
|
@@ -1263,6 +1291,7 @@ class AssignmentComponent {
|
|
|
1263
1291
|
checkAndUpdate() {
|
|
1264
1292
|
// Should always check the bridge to see if the component should update itself (re-render)
|
|
1265
1293
|
const bUpdateSelf = this.angularPConnect.shouldComponentUpdate(this);
|
|
1294
|
+
this.bannerService.updateBanners(this.itemKey$);
|
|
1266
1295
|
// ONLY call updateSelf when the component should update
|
|
1267
1296
|
// AND removing the "gate" that was put there since shouldComponentUpdate
|
|
1268
1297
|
// should be the real "gate"
|
|
@@ -1421,6 +1450,10 @@ class AssignmentComponent {
|
|
|
1421
1450
|
this.buttonClick(oData.action, oData.buttonType);
|
|
1422
1451
|
}
|
|
1423
1452
|
buttonClick(sAction, sButtonType) {
|
|
1453
|
+
this.snackBarRef?.dismiss();
|
|
1454
|
+
this.bannerService.clearBanners();
|
|
1455
|
+
// @ts-ignore
|
|
1456
|
+
PCore.getPubSubUtils().publish('clearBannerMessages');
|
|
1424
1457
|
// right now, done on an individual basis, setting bReInit to true
|
|
1425
1458
|
// upon the next flow container state change, will cause the flow container
|
|
1426
1459
|
// to re-initialize
|
|
@@ -1451,7 +1484,7 @@ class AssignmentComponent {
|
|
|
1451
1484
|
})
|
|
1452
1485
|
.catch(() => {
|
|
1453
1486
|
this.psService.sendMessage(false);
|
|
1454
|
-
this.snackBar.open(`${this.localizedVal('Navigation failed!', this.localeCategory)}`, 'Ok');
|
|
1487
|
+
this.snackBarRef = this.snackBar.open(`${this.localizedVal('Navigation failed!', this.localeCategory)}`, 'Ok');
|
|
1455
1488
|
});
|
|
1456
1489
|
}
|
|
1457
1490
|
break;
|
|
@@ -1468,7 +1501,7 @@ class AssignmentComponent {
|
|
|
1468
1501
|
})
|
|
1469
1502
|
.catch(() => {
|
|
1470
1503
|
this.psService.sendMessage(false);
|
|
1471
|
-
this.snackBar.open(`${this.localizedVal('Save failed', this.localeCategory)}`, 'Ok');
|
|
1504
|
+
this.snackBarRef = this.snackBar.open(`${this.localizedVal('Save failed', this.localeCategory)}`, 'Ok');
|
|
1472
1505
|
});
|
|
1473
1506
|
break;
|
|
1474
1507
|
}
|
|
@@ -1493,7 +1526,7 @@ class AssignmentComponent {
|
|
|
1493
1526
|
})
|
|
1494
1527
|
.catch(() => {
|
|
1495
1528
|
this.psService.sendMessage(false);
|
|
1496
|
-
this.snackBar.open(`${this.localizedVal('Cancel failed!', this.localeCategory)}`, 'Ok');
|
|
1529
|
+
this.snackBarRef = this.snackBar.open(`${this.localizedVal('Cancel failed!', this.localeCategory)}`, 'Ok');
|
|
1497
1530
|
});
|
|
1498
1531
|
}
|
|
1499
1532
|
else {
|
|
@@ -1511,7 +1544,7 @@ class AssignmentComponent {
|
|
|
1511
1544
|
})
|
|
1512
1545
|
.catch(() => {
|
|
1513
1546
|
this.psService.sendMessage(false);
|
|
1514
|
-
this.snackBar.open(`${this.localizedVal('Cancel failed!', this.localeCategory)}`, 'Ok');
|
|
1547
|
+
this.snackBarRef = this.snackBar.open(`${this.localizedVal('Cancel failed!', this.localeCategory)}`, 'Ok');
|
|
1515
1548
|
});
|
|
1516
1549
|
}
|
|
1517
1550
|
break;
|
|
@@ -1524,24 +1557,18 @@ class AssignmentComponent {
|
|
|
1524
1557
|
switch (sAction) {
|
|
1525
1558
|
case 'finishAssignment':
|
|
1526
1559
|
this.erService.sendMessage('publish', '');
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
});
|
|
1540
|
-
}
|
|
1541
|
-
else {
|
|
1542
|
-
// let snackBarRef = this.snackBar.open("Please fix errors on form.", "Ok");
|
|
1543
|
-
this.erService.sendMessage('show', this.localizedVal('Please fix errors on form.', this.localeCategory));
|
|
1544
|
-
}
|
|
1560
|
+
this.bReInit = true;
|
|
1561
|
+
this.psService.sendMessage(true);
|
|
1562
|
+
const finishPromise = this.finishAssignment(this.itemKey$); // JA - was itemID but Nebula/Constellation uses itemKey
|
|
1563
|
+
finishPromise
|
|
1564
|
+
.then(() => {
|
|
1565
|
+
this.psService.sendMessage(false);
|
|
1566
|
+
this.updateChanges();
|
|
1567
|
+
})
|
|
1568
|
+
.catch(() => {
|
|
1569
|
+
this.psService.sendMessage(false);
|
|
1570
|
+
this.snackBarRef = this.snackBar.open(`${this.localizedVal('Submit failed!', this.localeCategory)}`, 'Ok');
|
|
1571
|
+
});
|
|
1545
1572
|
break;
|
|
1546
1573
|
default:
|
|
1547
1574
|
break;
|
|
@@ -1586,13 +1613,13 @@ class AssignmentComponent {
|
|
|
1586
1613
|
});
|
|
1587
1614
|
}
|
|
1588
1615
|
}
|
|
1589
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AssignmentComponent, deps: [{ token: AngularPConnectService }, { token: ProgressSpinnerService }, { token: ErrorMessagesService }, { token: i0.NgZone }, { token: i4$1.MatSnackBar }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1590
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AssignmentComponent, isStandalone: true, selector: "app-assignment", inputs: { pConn$: "pConn$", formGroup$: "formGroup$", arChildren$: "arChildren$", itemKey$: "itemKey$", isCreateStage$: "isCreateStage$", updateToken$: "updateToken$", isInModal$: "isInModal$"
|
|
1616
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AssignmentComponent, deps: [{ token: AngularPConnectService }, { token: ProgressSpinnerService }, { token: ErrorMessagesService }, { token: i0.NgZone }, { token: i4$1.MatSnackBar }, { token: BannerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1617
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AssignmentComponent, isStandalone: true, selector: "app-assignment", inputs: { pConn$: "pConn$", formGroup$: "formGroup$", arChildren$: "arChildren$", itemKey$: "itemKey$", isCreateStage$: "isCreateStage$", updateToken$: "updateToken$", isInModal$: "isInModal$" }, usesOnChanges: true, ngImport: i0, template: "<div>\n <div><component-mapper name=\"AlertBanner\" [props]=\"{ banners: bannerService.banners }\" [parent]=\"this\"></component-mapper></div>\n <div *ngIf=\"bHasNavigation$\" class=\"psdk-stepper\">\n <component-mapper\n name=\"MultiStep\"\n [props]=\"{\n pConn$: newPConn$,\n formGroup$,\n arChildren$,\n arMainButtons$,\n arSecondaryButtons$,\n bIsVertical$,\n arCurrentStepIndicies$,\n arNavigationSteps$\n }\"\n [parent]=\"this\"\n [outputEvents]=\"{ actionButtonClick: onActionButtonClick }\"\n ></component-mapper>\n </div>\n <div *ngIf=\"!bHasNavigation$\">\n <component-mapper\n name=\"AssignmentCard\"\n [props]=\"{ pConn$: newPConn$, formGroup$, arChildren$, arMainButtons$, arSecondaryButtons$, updateToken$ }\"\n [parent]=\"this\"\n [outputEvents]=\"{ actionButtonClick: onActionButtonClick }\"\n ></component-mapper>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: i0.forwardRef(function () { return CommonModule; }) }, { kind: "directive", type: i0.forwardRef(function () { return i3.NgIf; }), selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: i0.forwardRef(function () { return MatSnackBarModule; }) }, { kind: "component", type: i0.forwardRef(function () { return ComponentMapperComponent; }), selector: "component-mapper", inputs: ["name", "props", "errorMsg", "outputEvents", "parent"] }] }); }
|
|
1591
1618
|
}
|
|
1592
1619
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AssignmentComponent, decorators: [{
|
|
1593
1620
|
type: Component,
|
|
1594
|
-
args: [{ selector: 'app-assignment', standalone: true, imports: [CommonModule, MatSnackBarModule, forwardRef(() => ComponentMapperComponent)], template: "<div>\n <div><component-mapper name=\"AlertBanner\" [props]=\"{ banners }\" [parent]=\"this\"></component-mapper></div>\n <div *ngIf=\"bHasNavigation$\" class=\"psdk-stepper\">\n <component-mapper\n name=\"MultiStep\"\n [props]=\"{\n pConn$: newPConn$,\n formGroup$,\n arChildren$,\n arMainButtons$,\n arSecondaryButtons$,\n bIsVertical$,\n arCurrentStepIndicies$,\n arNavigationSteps$\n }\"\n [parent]=\"this\"\n [outputEvents]=\"{ actionButtonClick: onActionButtonClick }\"\n ></component-mapper>\n </div>\n <div *ngIf=\"!bHasNavigation$\">\n <component-mapper\n name=\"AssignmentCard\"\n [props]=\"{ pConn$: newPConn$, formGroup$, arChildren$, arMainButtons$, arSecondaryButtons$, updateToken$ }\"\n [parent]=\"this\"\n [outputEvents]=\"{ actionButtonClick: onActionButtonClick }\"\n ></component-mapper>\n </div>\n</div>\n" }]
|
|
1595
|
-
}], ctorParameters: function () { return [{ type: AngularPConnectService }, { type: ProgressSpinnerService }, { type: ErrorMessagesService }, { type: i0.NgZone }, { type: i4$1.MatSnackBar }]; }, propDecorators: { pConn$: [{
|
|
1621
|
+
args: [{ selector: 'app-assignment', standalone: true, imports: [CommonModule, MatSnackBarModule, forwardRef(() => ComponentMapperComponent)], template: "<div>\n <div><component-mapper name=\"AlertBanner\" [props]=\"{ banners: bannerService.banners }\" [parent]=\"this\"></component-mapper></div>\n <div *ngIf=\"bHasNavigation$\" class=\"psdk-stepper\">\n <component-mapper\n name=\"MultiStep\"\n [props]=\"{\n pConn$: newPConn$,\n formGroup$,\n arChildren$,\n arMainButtons$,\n arSecondaryButtons$,\n bIsVertical$,\n arCurrentStepIndicies$,\n arNavigationSteps$\n }\"\n [parent]=\"this\"\n [outputEvents]=\"{ actionButtonClick: onActionButtonClick }\"\n ></component-mapper>\n </div>\n <div *ngIf=\"!bHasNavigation$\">\n <component-mapper\n name=\"AssignmentCard\"\n [props]=\"{ pConn$: newPConn$, formGroup$, arChildren$, arMainButtons$, arSecondaryButtons$, updateToken$ }\"\n [parent]=\"this\"\n [outputEvents]=\"{ actionButtonClick: onActionButtonClick }\"\n ></component-mapper>\n </div>\n</div>\n" }]
|
|
1622
|
+
}], ctorParameters: function () { return [{ type: AngularPConnectService }, { type: ProgressSpinnerService }, { type: ErrorMessagesService }, { type: i0.NgZone }, { type: i4$1.MatSnackBar }, { type: BannerService }]; }, propDecorators: { pConn$: [{
|
|
1596
1623
|
type: Input
|
|
1597
1624
|
}], formGroup$: [{
|
|
1598
1625
|
type: Input
|
|
@@ -1606,8 +1633,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1606
1633
|
type: Input
|
|
1607
1634
|
}], isInModal$: [{
|
|
1608
1635
|
type: Input
|
|
1609
|
-
}], banners: [{
|
|
1610
|
-
type: Input
|
|
1611
1636
|
}] } });
|
|
1612
1637
|
|
|
1613
1638
|
/** This file contains various utility methods to generate filter components, regionLayout data, filter expressions, etc. */
|
|
@@ -2133,6 +2158,9 @@ class FlowContainerComponent extends FlowContainerBaseComponent {
|
|
|
2133
2158
|
PCore.getPubSubUtils().subscribe('cancelPressed', () => {
|
|
2134
2159
|
this.handleCancelPressed();
|
|
2135
2160
|
}, 'cancelPressed');
|
|
2161
|
+
PCore.getPubSubUtils().subscribe('clearBannerMessages', () => {
|
|
2162
|
+
this.banners = [];
|
|
2163
|
+
}, 'CLEAR_BANNER_MESSAGES');
|
|
2136
2164
|
}
|
|
2137
2165
|
ngOnDestroy() {
|
|
2138
2166
|
if (this.angularPConnectData.unsubscribeFn) {
|
|
@@ -2140,6 +2168,7 @@ class FlowContainerComponent extends FlowContainerBaseComponent {
|
|
|
2140
2168
|
}
|
|
2141
2169
|
PCore.getPubSubUtils().unsubscribe(PCore.getConstants().PUB_SUB_EVENTS.EVENT_CANCEL, 'cancelAssignment');
|
|
2142
2170
|
PCore.getPubSubUtils().unsubscribe('cancelPressed', 'cancelPressed');
|
|
2171
|
+
PCore.getPubSubUtils().unsubscribe('clearBannerMessages', 'CLEAR_BANNER_MESSAGES');
|
|
2143
2172
|
}
|
|
2144
2173
|
handleCancel() {
|
|
2145
2174
|
// cancel happened, so ok to initialize the flow container
|
|
@@ -2158,13 +2187,14 @@ class FlowContainerComponent extends FlowContainerBaseComponent {
|
|
|
2158
2187
|
const pConn = this.pConnectOfActiveContainerItem || this.pConn$;
|
|
2159
2188
|
const caseViewModeFromProps = this.angularPConnect.getComponentProp(this, 'caseViewMode');
|
|
2160
2189
|
const caseViewModeFromRedux = pConn.getValue('context_data.caseViewMode', '');
|
|
2190
|
+
const completeProps = this.angularPConnect.getCurrentCompleteProps(this);
|
|
2161
2191
|
// ONLY call updateSelf when the component should update
|
|
2162
2192
|
// AND removing the "gate" that was put there since shouldComponentUpdate
|
|
2163
2193
|
// should be the real "gate"
|
|
2194
|
+
// eslint-disable-next-line sonarjs/no-collapsible-if
|
|
2164
2195
|
if (bUpdateSelf || caseViewModeFromProps !== caseViewModeFromRedux) {
|
|
2165
2196
|
// don't want to redraw the flow container when there are page messages, because
|
|
2166
2197
|
// the redraw causes us to loose the errors on the elements
|
|
2167
|
-
const completeProps = this.angularPConnect.getCurrentCompleteProps(this);
|
|
2168
2198
|
if (!completeProps.pageMessages || completeProps.pageMessages.length == 0) {
|
|
2169
2199
|
// with a cancel, need to timeout so todo will update correctly
|
|
2170
2200
|
if (this.bHasCancel) {
|
|
@@ -2177,10 +2207,8 @@ class FlowContainerComponent extends FlowContainerBaseComponent {
|
|
|
2177
2207
|
this.updateSelf();
|
|
2178
2208
|
}
|
|
2179
2209
|
}
|
|
2180
|
-
else {
|
|
2181
|
-
this.showPageMessages(completeProps);
|
|
2182
|
-
}
|
|
2183
2210
|
}
|
|
2211
|
+
this.showPageMessages(completeProps);
|
|
2184
2212
|
}
|
|
2185
2213
|
showPageMessages(completeProps) {
|
|
2186
2214
|
this.ngZone.run(() => {
|
|
@@ -6977,23 +7005,37 @@ class DropdownComponent {
|
|
|
6977
7005
|
}
|
|
6978
7006
|
columns = preProcessColumns$1(columns) || [];
|
|
6979
7007
|
if (!this.displayMode$ && listType !== 'associated' && typeof datasource === 'string') {
|
|
6980
|
-
this.getData(datasource, parameters, columns, context);
|
|
7008
|
+
this.getData(datasource, parameters, columns, context, listType);
|
|
6981
7009
|
}
|
|
6982
7010
|
}
|
|
6983
|
-
getData(
|
|
6984
|
-
|
|
7011
|
+
getData(dataSource, parameters, columns, context, listType) {
|
|
7012
|
+
const dataConfig = {
|
|
7013
|
+
columns,
|
|
7014
|
+
dataSource,
|
|
7015
|
+
deferDatasource: true,
|
|
7016
|
+
listType,
|
|
7017
|
+
parameters,
|
|
7018
|
+
matchPosition: 'contains',
|
|
7019
|
+
maxResultsDisplay: '5000',
|
|
7020
|
+
cacheLifeSpan: 'form'
|
|
7021
|
+
};
|
|
7022
|
+
PCore.getDataApi()
|
|
7023
|
+
.init(dataConfig, context)
|
|
7024
|
+
.then((dataApiObj) => {
|
|
6985
7025
|
const optionsData = [];
|
|
6986
7026
|
const displayColumn = getDisplayFieldsMetaData$1(columns);
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
|
|
6992
|
-
|
|
6993
|
-
|
|
7027
|
+
dataApiObj.fetchData('').then(response => {
|
|
7028
|
+
response.data?.forEach(element => {
|
|
7029
|
+
const val = element[displayColumn.primary]?.toString();
|
|
7030
|
+
const obj = {
|
|
7031
|
+
key: element[displayColumn.key] || element.pyGUID,
|
|
7032
|
+
value: val
|
|
7033
|
+
};
|
|
7034
|
+
optionsData.push(obj);
|
|
7035
|
+
});
|
|
7036
|
+
optionsData?.unshift({ key: 'Select', value: this.pConn$.getLocalizedValue('Select...', '', '') });
|
|
7037
|
+
this.options$ = optionsData;
|
|
6994
7038
|
});
|
|
6995
|
-
optionsData?.unshift({ key: 'Select', value: this.pConn$.getLocalizedValue('Select...', '', '') });
|
|
6996
|
-
this.options$ = optionsData;
|
|
6997
7039
|
});
|
|
6998
7040
|
}
|
|
6999
7041
|
isSelected(buttonValue) {
|
|
@@ -18622,5 +18664,5 @@ const localSdkComponentMap = {
|
|
|
18622
18664
|
* Generated bundle index. Do not edit.
|
|
18623
18665
|
*/
|
|
18624
18666
|
|
|
18625
|
-
export { ActionButtonsComponent, AlertBannerComponent, AlertComponent, AngularPConnectService, AppAnnouncementComponent, AppShellComponent, AssignmentCardComponent, AssignmentComponent, AttachmentComponent, AutoCompleteComponent, CancelAlertComponent, CaseCreateStageComponent, CaseHistoryComponent, CaseService, CaseSummaryComponent, CaseViewComponent, CheckBoxComponent, ComponentMapperComponent, ConfirmationComponent, CurrencyComponent, DELETE_ICON, DashboardFilterComponent, DataReferenceComponent, DatapageService, DateComponent, DateTimeComponent, DecimalComponent, DefaultFormComponent, DeferLoadComponent, DetailsComponent, DetailsNarrowWideComponent, DetailsOneColumnComponent, DetailsSubTabsComponent, DetailsThreeColumnComponent, DetailsTwoColumnComponent, DetailsWideNarrowComponent, DropdownComponent, EmailComponent, ErrorBoundaryComponent, ErrorMessagesService, FeedContainerComponent, FieldGroupListComponent, FieldGroupTemplateComponent, FieldValueListComponent, FileUtilityComponent, FlowContainerBaseComponent, FlowContainerComponent, GetLoginStatusService, Group$1 as Group, HybridViewContainerComponent, IdleDetectionService, InlineDashboardComponent, InlineDashboardPageComponent, IntegerComponent, ListPageComponent, ListUtilityComponent, ListViewComponent, MaterialCaseSummaryComponent, MaterialDetailsComponent, MaterialDetailsFieldsComponent, MaterialSummaryItemComponent, MaterialSummaryListComponent, MaterialUtilityComponent, MaterialVerticalTabsComponent, ModalViewContainerComponent, MultiReferenceReadonlyComponent, MultiStepComponent, NarrowWideFormComponent, NavbarComponent, OAuthResponseService, OneColumnComponent, OneColumnPageComponent, OneColumnTabComponent, OperatorComponent, PageComponent, PercentageComponent, PhoneComponent, PreviewViewContainerComponent, ProgressSpinnerService, PromotedFiltersComponent, PulseComponent, RadioButtonsComponent, ReferenceComponent, RegionComponent, RepeatingStructuresComponent, ResetPConnectService, RichTextComponent, RichTextEditorComponent, RootContainerComponent, SdkComponentMap, SemanticLinkComponent, ServerConfigService, SimpleTableComponent, SimpleTableManualComponent, SimpleTableSelectComponent, SingleReferenceReadonlyComponent, StagesComponent, SubTabsComponent, TABLE_CELL, TemplateUtils, TextAreaComponent, TextComponent, TextContentComponent, TextInputComponent, ThousandSeparatorDirective, ThreeColumnComponent, ThreeColumnPageComponent, TimeComponent, TodoComponent, TwoColumnComponent, TwoColumnPageComponent, TwoColumnTabComponent, UpdateWorklistService, UrlComponent, UserReferenceComponent, UtilityComponent, Utils, ViewComponent, ViewContainerComponent, WideNarrowFormComponent, WideNarrowPageComponent, buildFieldsForTable, buildFilterComponents, buildMetaForListView, buildView, combineFilters, compareSdkPCoreVersions, createFilter, createFilterComponent, createMetaForTable, createPConnect, currencyMap, dateFormatInfoDefault, deleteInstruction, endpoints, filterDataByCommonFields, filterDataByDate, filterForFieldValueList, format, formatters, getAddRowCallback, getAllFields, getApiContext, getBanners, getComponentFromMap, getContext, getCurrencyCharacters, getCurrencyOptions, getCurrentTimezone$1 as getCurrentTimezone, getDateFormatInfo, getDeferFriendlyTabs, getFilterExpression, getFormattedDate, getLocale$1 as getLocale, getMessagesGrouped, getReferenceList, getSdkComponentMap, getSeconds, getToDoAssignments, getTransientTabs, getVisibleTabs, handleEvent, hasAssignments, insertInstruction, loginBoxType, populateRowKey, sdkVersion, showBanner, tabClick, updateNewInstructions };
|
|
18667
|
+
export { ActionButtonsComponent, AlertBannerComponent, AlertComponent, AngularPConnectService, AppAnnouncementComponent, AppShellComponent, AssignmentCardComponent, AssignmentComponent, AttachmentComponent, AutoCompleteComponent, BannerService, CancelAlertComponent, CaseCreateStageComponent, CaseHistoryComponent, CaseService, CaseSummaryComponent, CaseViewComponent, CheckBoxComponent, ComponentMapperComponent, ConfirmationComponent, CurrencyComponent, DELETE_ICON, DashboardFilterComponent, DataReferenceComponent, DatapageService, DateComponent, DateTimeComponent, DecimalComponent, DefaultFormComponent, DeferLoadComponent, DetailsComponent, DetailsNarrowWideComponent, DetailsOneColumnComponent, DetailsSubTabsComponent, DetailsThreeColumnComponent, DetailsTwoColumnComponent, DetailsWideNarrowComponent, DropdownComponent, EmailComponent, ErrorBoundaryComponent, ErrorMessagesService, FeedContainerComponent, FieldGroupListComponent, FieldGroupTemplateComponent, FieldValueListComponent, FileUtilityComponent, FlowContainerBaseComponent, FlowContainerComponent, GetLoginStatusService, Group$1 as Group, HybridViewContainerComponent, IdleDetectionService, InlineDashboardComponent, InlineDashboardPageComponent, IntegerComponent, ListPageComponent, ListUtilityComponent, ListViewComponent, MaterialCaseSummaryComponent, MaterialDetailsComponent, MaterialDetailsFieldsComponent, MaterialSummaryItemComponent, MaterialSummaryListComponent, MaterialUtilityComponent, MaterialVerticalTabsComponent, ModalViewContainerComponent, MultiReferenceReadonlyComponent, MultiStepComponent, NarrowWideFormComponent, NavbarComponent, OAuthResponseService, OneColumnComponent, OneColumnPageComponent, OneColumnTabComponent, OperatorComponent, PageComponent, PercentageComponent, PhoneComponent, PreviewViewContainerComponent, ProgressSpinnerService, PromotedFiltersComponent, PulseComponent, RadioButtonsComponent, ReferenceComponent, RegionComponent, RepeatingStructuresComponent, ResetPConnectService, RichTextComponent, RichTextEditorComponent, RootContainerComponent, SdkComponentMap, SemanticLinkComponent, ServerConfigService, SimpleTableComponent, SimpleTableManualComponent, SimpleTableSelectComponent, SingleReferenceReadonlyComponent, StagesComponent, SubTabsComponent, TABLE_CELL, TemplateUtils, TextAreaComponent, TextComponent, TextContentComponent, TextInputComponent, ThousandSeparatorDirective, ThreeColumnComponent, ThreeColumnPageComponent, TimeComponent, TodoComponent, TwoColumnComponent, TwoColumnPageComponent, TwoColumnTabComponent, UpdateWorklistService, UrlComponent, UserReferenceComponent, UtilityComponent, Utils, ViewComponent, ViewContainerComponent, WideNarrowFormComponent, WideNarrowPageComponent, buildFieldsForTable, buildFilterComponents, buildMetaForListView, buildView, combineFilters, compareSdkPCoreVersions, createFilter, createFilterComponent, createMetaForTable, createPConnect, currencyMap, dateFormatInfoDefault, deleteInstruction, endpoints, filterDataByCommonFields, filterDataByDate, filterForFieldValueList, format, formatters, getAddRowCallback, getAllFields, getApiContext, getBanners, getComponentFromMap, getContext, getCurrencyCharacters, getCurrencyOptions, getCurrentTimezone$1 as getCurrentTimezone, getDateFormatInfo, getDeferFriendlyTabs, getFilterExpression, getFormattedDate, getLocale$1 as getLocale, getMessagesGrouped, getReferenceList, getSdkComponentMap, getSeconds, getToDoAssignments, getTransientTabs, getVisibleTabs, handleEvent, hasAssignments, insertInstruction, loginBoxType, populateRowKey, sdkVersion, showBanner, tabClick, updateNewInstructions };
|
|
18626
18668
|
//# sourceMappingURL=pega-angular-sdk-components.mjs.map
|