@adins/ucviewgeneric 2.3.1 → 2.3.2-hotfix.0

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.
Files changed (40) hide show
  1. package/README.md +5 -1
  2. package/adins-ucviewgeneric.d.ts +1 -0
  3. package/esm2020/adins-ucviewgeneric.mjs +5 -0
  4. package/esm2020/lib/model/envi-obj.model.mjs +7 -0
  5. package/esm2020/lib/model/uc-view-generic-obj.model.mjs +27 -0
  6. package/esm2020/lib/ucviewgeneric.component.mjs +408 -0
  7. package/esm2020/lib/ucviewgeneric.module.mjs +34 -0
  8. package/esm2020/lib/ucviewgeneric.service.mjs +14 -0
  9. package/esm2020/public-api.mjs +7 -0
  10. package/fesm2015/adins-ucviewgeneric.mjs +482 -0
  11. package/fesm2015/adins-ucviewgeneric.mjs.map +1 -0
  12. package/fesm2020/adins-ucviewgeneric.mjs +482 -0
  13. package/fesm2020/adins-ucviewgeneric.mjs.map +1 -0
  14. package/lib/ucviewgeneric.component.d.ts +6 -1
  15. package/lib/ucviewgeneric.module.d.ts +9 -0
  16. package/lib/ucviewgeneric.service.d.ts +3 -0
  17. package/package.json +22 -11
  18. package/adins-ucviewgeneric.metadata.json +0 -1
  19. package/bundles/adins-ucviewgeneric.umd.js +0 -643
  20. package/bundles/adins-ucviewgeneric.umd.js.map +0 -1
  21. package/bundles/adins-ucviewgeneric.umd.min.js +0 -2
  22. package/bundles/adins-ucviewgeneric.umd.min.js.map +0 -1
  23. package/esm2015/adins-ucviewgeneric.js +0 -9
  24. package/esm2015/lib/model/envi-obj.model.js +0 -17
  25. package/esm2015/lib/model/uc-view-generic-obj.model.js +0 -63
  26. package/esm2015/lib/ucviewgeneric.component.js +0 -557
  27. package/esm2015/lib/ucviewgeneric.module.js +0 -25
  28. package/esm2015/lib/ucviewgeneric.service.js +0 -18
  29. package/esm2015/public-api.js +0 -11
  30. package/esm5/adins-ucviewgeneric.js +0 -9
  31. package/esm5/lib/model/envi-obj.model.js +0 -19
  32. package/esm5/lib/model/uc-view-generic-obj.model.js +0 -71
  33. package/esm5/lib/ucviewgeneric.component.js +0 -613
  34. package/esm5/lib/ucviewgeneric.module.js +0 -29
  35. package/esm5/lib/ucviewgeneric.service.js +0 -21
  36. package/esm5/public-api.js +0 -11
  37. package/fesm2015/adins-ucviewgeneric.js +0 -585
  38. package/fesm2015/adins-ucviewgeneric.js.map +0 -1
  39. package/fesm5/adins-ucviewgeneric.js +0 -646
  40. package/fesm5/adins-ucviewgeneric.js.map +0 -1
@@ -0,0 +1,482 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Injectable, EventEmitter, Component, Input, Output, NgModule } from '@angular/core';
3
+ import * as i1 from '@angular/router';
4
+ import { RouterModule } from '@angular/router';
5
+ import * as i2 from '@angular/common/http';
6
+ import * as i3 from '@ngx-translate/core';
7
+ import { TranslateModule } from '@ngx-translate/core';
8
+ import * as i4 from 'ngx-cookie';
9
+ import * as CryptoJS from 'crypto-js';
10
+ import * as i5 from '@adins/fe-core';
11
+ import * as i6 from '@adins/uc-subsection';
12
+ import { UcSubsectionModule } from '@adins/uc-subsection';
13
+ import * as i7 from '@angular/common';
14
+ import { CommonModule } from '@angular/common';
15
+
16
+ class UcviewgenericService {
17
+ constructor() { }
18
+ }
19
+ /** @nocollapse */ /** @nocollapse */ UcviewgenericService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: UcviewgenericService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
20
+ /** @nocollapse */ /** @nocollapse */ UcviewgenericService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: UcviewgenericService, providedIn: 'root' });
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: UcviewgenericService, decorators: [{
22
+ type: Injectable,
23
+ args: [{
24
+ providedIn: 'root'
25
+ }]
26
+ }], ctorParameters: function () { return []; } });
27
+
28
+ class UcViewGenericObj {
29
+ constructor() {
30
+ this.viewInput = "";
31
+ this.viewEnvironment = "";
32
+ this.ddlEnvironments = new Array();
33
+ this.listEnvironments = new Array();
34
+ this.whereValue = new Array();
35
+ }
36
+ }
37
+ class EnviObj {
38
+ constructor() {
39
+ this.name = "";
40
+ this.environment = "";
41
+ }
42
+ }
43
+ class WhereValueObj {
44
+ constructor() {
45
+ this.property = "";
46
+ }
47
+ }
48
+ class EnvisObj {
49
+ constructor() {
50
+ this.environment = "";
51
+ this.url = "";
52
+ }
53
+ }
54
+
55
+ class UcviewgenericComponent {
56
+ constructor(route, http, translateService, cookieService, credentialService) {
57
+ this.route = route;
58
+ this.http = http;
59
+ this.translateService = translateService;
60
+ this.cookieService = cookieService;
61
+ this.credentialService = credentialService;
62
+ this.viewGenericObj = new UcViewGenericObj();
63
+ this.callback = new EventEmitter();
64
+ this.UserAccess = {}; //JSON.parse(this.GetCookie(this.cookieService, "UserAccess"));
65
+ this.viewList = "";
66
+ this.isReady = false;
67
+ this.route.queryParams.subscribe(params => {
68
+ this.getList = params;
69
+ });
70
+ this.translateService.setDefaultLang('en');
71
+ this.translateService.use(localStorage.getItem('lang') || 'en');
72
+ }
73
+ ngOnInit() {
74
+ console.log("viewgeneric");
75
+ this.UserAccess = this.credentialService.GetUserAccess();
76
+ this.initiateForm();
77
+ }
78
+ initiateForm() {
79
+ this.getJSON(this.viewGenericObj.viewInput).subscribe(data => {
80
+ this.viewList = data;
81
+ this.viewInfoObjList = [];
82
+ for (let j = 0; j < this.viewList.subsection.length; j++) {
83
+ this.viewInfoObjList.push(j);
84
+ }
85
+ for (let i = 0; i < this.viewList.subsection.length; i++) {
86
+ if (this.viewList.subsection[i].querystring != null) {
87
+ let queryObj;
88
+ if (this.viewGenericObj.whereValue.length == 0) {
89
+ this.viewList.subsection[i].querystring.whereQuery = Object.values(this.getList);
90
+ }
91
+ else {
92
+ this.viewList.subsection[i].querystring.whereQuery = this.viewGenericObj.whereValue;
93
+ }
94
+ if (this.viewList.subsection[i].mainInfoPath != undefined && this.viewList.subsection[i].mainInfoPath != "") {
95
+ if (this.viewGenericObj.viewEnvironment != undefined && this.viewGenericObj.viewEnvironment != "") {
96
+ this.viewList.subsection[i].fullpath = this.viewGenericObj.viewEnvironment + this.viewList.subsection[i].mainInfoPath;
97
+ }
98
+ else {
99
+ this.viewList.subsection[i].fullpath = this.viewList.subsection[i].mainInfoUrl;
100
+ }
101
+ }
102
+ else {
103
+ this.viewList.subsection[i].fullpath = this.viewList.subsection[i].mainInfoUrl;
104
+ }
105
+ queryObj = {
106
+ querystring: this.viewList.subsection[i].querystring
107
+ };
108
+ this.http.post(this.viewList.subsection[i].fullpath, queryObj).subscribe((response) => {
109
+ this.viewInfoObjList[i] = response["Data"][0];
110
+ for (let y = 0; y < this.viewList.subsection[i].mainInfo.length; y++) {
111
+ if (this.viewList.subsection[i].mainInfo[y].propertyList != undefined && this.viewList.subsection[i].mainInfo[y].propertyList.length != 0) {
112
+ const propertyList = this.viewList.subsection[i].mainInfo[y].propertyList;
113
+ let concat = "";
114
+ for (let z = 0; z < propertyList.length; z++) {
115
+ concat = concat + propertyList[z].prefix + this.viewInfoObjList[i][propertyList[z].property] + propertyList[z].suffix;
116
+ }
117
+ this.viewList.subsection[i].mainInfo[y].concat = concat;
118
+ }
119
+ //switch case
120
+ if (this.viewList.subsection[i].mainInfo[y].type == "switch") {
121
+ for (let z = 0; z < this.viewList.subsection[i].mainInfo[y].case.length; z++) {
122
+ let Empty = new Array();
123
+ this.viewList.subsection[i].mainInfo[y].case[z].Hidden = false;
124
+ //check hideIfEmpty
125
+ if (this.viewList.subsection[i].mainInfo[y].case[z].result.hideIfEmpty != undefined && this.viewList.subsection[i].mainInfo[y].case[z].result.hideIfEmpty != null) {
126
+ if (this.viewList.subsection[i].mainInfo[y].case[z].result.type != "concat") {
127
+ Empty.push(this.viewInfoObjList[i][this.viewList.subsection[i].mainInfo[y].case[z].result.property] != undefined
128
+ && this.viewInfoObjList[i][this.viewList.subsection[i].mainInfo[y].case[z].result.property] != null
129
+ && this.viewInfoObjList[i][this.viewList.subsection[i].mainInfo[y].case[z].result.property] != "" ? false : true);
130
+ }
131
+ else { // type concat
132
+ if (this.viewList.subsection[i].mainInfo[y].case[z].result.propertyList != undefined && this.viewList.subsection[i].mainInfo[y].case[z].result.propertyList.length != 0) {
133
+ const propertyList = this.viewList.subsection[i].mainInfo[y].case[z].result.propertyList;
134
+ let concat = "";
135
+ for (let a = 0; a < propertyList.length; a++) {
136
+ concat = concat + propertyList[a].prefix + this.viewInfoObjList[i][propertyList[a].property] + propertyList[a].suffix;
137
+ Empty.push(this.viewInfoObjList[i][propertyList[a].property] != undefined
138
+ && this.viewInfoObjList[i][propertyList[a].property] != null
139
+ && this.viewInfoObjList[i][propertyList[a].property] != "" ? false : true);
140
+ }
141
+ this.viewList.subsection[i].mainInfo[y].case[z].result.concat = concat;
142
+ }
143
+ }
144
+ if (Empty.includes(true) && this.viewList.subsection[i].mainInfo[y].case[z].result.hideIfEmpty) {
145
+ this.viewList.subsection[i].mainInfo[y].case[z].Hidden = true;
146
+ this.viewList.subsection[i].mainInfo[y].isHide = true;
147
+ }
148
+ }
149
+ else {
150
+ //concat
151
+ if (this.viewList.subsection[i].mainInfo[y].case[z].result.propertyList != undefined && this.viewList.subsection[i].mainInfo[y].case[z].result.propertyList.length != 0) {
152
+ const propertyList = this.viewList.subsection[i].mainInfo[y].case[z].result.propertyList;
153
+ let concat = "";
154
+ for (let a = 0; a < propertyList.length; a++) {
155
+ concat = concat + propertyList[a].prefix + this.viewInfoObjList[i][propertyList[a].property] + propertyList[a].suffix;
156
+ }
157
+ this.viewList.subsection[i].mainInfo[y].case[z].result.concat = concat;
158
+ }
159
+ }
160
+ }
161
+ }
162
+ if (this.viewList.subsection[i].mainInfo[y].type == "link" && (this.viewGenericObj.navigationConst != undefined || this.viewGenericObj.navigationConst != null)) {
163
+ let tempLink = this.viewGenericObj.navigationConst[this.viewList.subsection[i].mainInfo[y].path];
164
+ if (tempLink != undefined && tempLink != null) {
165
+ this.viewList.subsection[i].mainInfo[y].path = tempLink;
166
+ }
167
+ }
168
+ if (this.viewList.subsection[i].mainInfo[y].type == "link"
169
+ && this.viewGenericObj.listEnvironments != undefined && this.viewGenericObj.listEnvironments.length != 0) {
170
+ for (let z = 0; z < this.viewGenericObj.listEnvironments.length; z++) {
171
+ if (this.viewList.subsection[i].mainInfo[y].environment == this.viewGenericObj.listEnvironments[z].environment) {
172
+ this.viewList.subsection[i].mainInfo[y].isFullpath = true;
173
+ this.viewList.subsection[i].mainInfo[y].fullpath = this.viewGenericObj.listEnvironments[z].url + this.viewList.subsection[i].mainInfo[y].path;
174
+ break;
175
+ }
176
+ }
177
+ }
178
+ else if (this.viewList.subsection[i].mainInfo[y].type == "link") {
179
+ this.viewList.subsection[i].mainInfo[y].isFullpath = false;
180
+ this.viewList.subsection[i].mainInfo[y].fullpath = this.viewList.subsection[i].mainInfo[y].path;
181
+ }
182
+ }
183
+ this.isReady = true;
184
+ }, (error) => {
185
+ console.log(error);
186
+ });
187
+ }
188
+ else {
189
+ if (this.viewList.subsection[i].mainInfoPath != undefined && this.viewList.subsection[i].mainInfoPath != "") {
190
+ if (this.viewGenericObj.viewEnvironment != undefined && this.viewGenericObj.viewEnvironment != "") {
191
+ this.viewList.subsection[i].fullpath = this.viewGenericObj.viewEnvironment + this.viewList.subsection[i].mainInfoPath;
192
+ }
193
+ else {
194
+ this.viewList.subsection[i].fullpath = this.viewList.subsection[i].mainInfoUrl;
195
+ }
196
+ }
197
+ else {
198
+ this.viewList.subsection[i].fullpath = this.viewList.subsection[i].mainInfoUrl;
199
+ }
200
+ this.http.post(this.viewList.subsection[i].fullpath, this.getList).subscribe((response) => {
201
+ this.viewInfoObjList[i] = response["Data"];
202
+ }, (error) => {
203
+ console.log(error);
204
+ });
205
+ }
206
+ }
207
+ });
208
+ }
209
+ getJSON(url) {
210
+ return this.http.get(url);
211
+ }
212
+ GetCookie(cookieService, key) {
213
+ let value = cookieService.get(key);
214
+ if (value == undefined || value.trim() == '')
215
+ return null;
216
+ return this.DecryptString(value, "AdInsFOU12345678");
217
+ }
218
+ DecryptString(chipperText, chipperKey) {
219
+ if (chipperKey == undefined || chipperKey.trim() == '' ||
220
+ chipperText == undefined || chipperText.trim() == '')
221
+ return chipperText;
222
+ let chipperKeyArr = CryptoJS.enc.Utf8.parse(chipperKey);
223
+ let iv = CryptoJS.lib.WordArray.create([0x00, 0x00, 0x00, 0x00]);
224
+ let decrypted = CryptoJS.AES.decrypt(chipperText, chipperKeyArr, { iv: iv });
225
+ let plainText = decrypted.toString(CryptoJS.enc.Utf8);
226
+ return plainText;
227
+ }
228
+ genAction(viewObj, param) {
229
+ let arrList = {};
230
+ for (let i = 0; i < param.length; i++) {
231
+ if (viewObj[param[i].type] != undefined || viewObj[param[i].property] != undefined) {
232
+ arrList[param[i].type] = viewObj[param[i].property];
233
+ }
234
+ else {
235
+ arrList[param[i].type] = param[i].property;
236
+ }
237
+ }
238
+ return arrList;
239
+ }
240
+ genRouterLink(urlLink) {
241
+ let tempLink = urlLink;
242
+ if (this.viewGenericObj.navigationConst != undefined && this.viewGenericObj.navigationConst[urlLink] != null) {
243
+ tempLink = this.viewGenericObj.navigationConst[urlLink];
244
+ }
245
+ return tempLink;
246
+ }
247
+ redirectFullPath(fullpath, param, target) {
248
+ let queryParam = "";
249
+ const ListObj = Object.keys(param);
250
+ for (let i = 0; i < ListObj.length; i++) {
251
+ if (queryParam != "") {
252
+ queryParam = queryParam + "&" + ListObj[i] + "=" + param[ListObj[i]];
253
+ }
254
+ else {
255
+ queryParam = ListObj[i] + "=" + param[ListObj[i]];
256
+ }
257
+ }
258
+ window.open(fullpath + "?" + queryParam, target);
259
+ }
260
+ callbackFunction(item, key = "") {
261
+ let CBObj = {
262
+ ViewObj: item,
263
+ Key: key
264
+ };
265
+ this.callback.emit(CBObj);
266
+ }
267
+ switchCase(item, condList) {
268
+ let condition = false;
269
+ if (!item)
270
+ return false;
271
+ for (let i = 0; i < condList.conditions.length; i++) {
272
+ if (condList.conditions[i].restriction == "EQ") {
273
+ if (condList.conditions[i].isUser != true) {
274
+ if (item[condList.conditions[i].property] == condList.conditions[i].value) {
275
+ condition = true;
276
+ }
277
+ else {
278
+ condition = false;
279
+ break;
280
+ }
281
+ }
282
+ else {
283
+ if (item[condList.conditions[i].property] == this.UserAccess["UserName"]) {
284
+ condition = true;
285
+ }
286
+ else {
287
+ condition = false;
288
+ break;
289
+ }
290
+ }
291
+ }
292
+ else if (condList.conditions[i].restriction == "NEQ") {
293
+ if (condList.conditions[i].isUser != true) {
294
+ if (item[condList.conditions[i].property] != condList.conditions[i].value) {
295
+ condition = true;
296
+ }
297
+ else {
298
+ condition = false;
299
+ break;
300
+ }
301
+ }
302
+ else {
303
+ if (item[condList.conditions[i].property] != this.UserAccess["UserName"]) {
304
+ condition = true;
305
+ }
306
+ else {
307
+ condition = false;
308
+ break;
309
+ }
310
+ }
311
+ }
312
+ else if (condList.conditions[i].restriction == "GT") {
313
+ if (condList.conditions[i].isUser != true) {
314
+ if (item[condList.conditions[i].property] > condList.conditions[i].value) {
315
+ condition = true;
316
+ }
317
+ else {
318
+ condition = false;
319
+ break;
320
+ }
321
+ }
322
+ else {
323
+ if (item[condList.conditions[i].property] > this.UserAccess["UserName"]) {
324
+ condition = true;
325
+ }
326
+ else {
327
+ condition = false;
328
+ break;
329
+ }
330
+ }
331
+ }
332
+ else if (condList.conditions[i].restriction == "GTE") {
333
+ if (condList.conditions[i].isUser != true) {
334
+ if (item[condList.conditions[i].property] >= condList.conditions[i].value) {
335
+ condition = true;
336
+ }
337
+ else {
338
+ condition = false;
339
+ break;
340
+ }
341
+ }
342
+ else {
343
+ if (item[condList.conditions[i].property] >= this.UserAccess["UserName"]) {
344
+ condition = true;
345
+ }
346
+ else {
347
+ condition = false;
348
+ break;
349
+ }
350
+ }
351
+ }
352
+ else if (condList.conditions[i].restriction == "LT") {
353
+ if (condList.conditions[i].isUser != true) {
354
+ if (item[condList.conditions[i].property] < condList.conditions[i].value) {
355
+ condition = true;
356
+ }
357
+ else {
358
+ condition = false;
359
+ break;
360
+ }
361
+ }
362
+ else {
363
+ if (item[condList.conditions[i].property] < this.UserAccess["UserName"]) {
364
+ condition = true;
365
+ }
366
+ else {
367
+ condition = false;
368
+ break;
369
+ }
370
+ }
371
+ }
372
+ else if (condList.conditions[i].restriction == "LTE") {
373
+ if (condList.conditions[i].isUser != true) {
374
+ if (item[condList.conditions[i].property] <= condList.conditions[i].value) {
375
+ condition = true;
376
+ }
377
+ else {
378
+ condition = false;
379
+ break;
380
+ }
381
+ }
382
+ else {
383
+ if (item[condList.conditions[i].property] <= this.UserAccess["UserName"]) {
384
+ condition = true;
385
+ }
386
+ else {
387
+ condition = false;
388
+ break;
389
+ }
390
+ }
391
+ }
392
+ else if (condList.conditions[i].restriction == "IN") {
393
+ if (condList.conditions[i].isUser != true) {
394
+ if (condList.conditions[i].value.findIndex(x => x == item[condList.conditions[i].property]) >= 0) {
395
+ condition = true;
396
+ }
397
+ else {
398
+ condition = false;
399
+ break;
400
+ }
401
+ }
402
+ else {
403
+ if (condList.conditions[i].value.findIndex(x => x == this.UserAccess["UserName"]) >= 0) {
404
+ condition = true;
405
+ }
406
+ else {
407
+ condition = false;
408
+ break;
409
+ }
410
+ }
411
+ }
412
+ else if (condList.conditions[i].restriction == "NIN") {
413
+ if (condList.conditions[i].isUser != true) {
414
+ if (condList.conditions[i].value.findIndex(x => x == item[condList.conditions[i].property]) == -1) {
415
+ condition = true;
416
+ }
417
+ else {
418
+ condition = false;
419
+ break;
420
+ }
421
+ }
422
+ else {
423
+ if (condList.conditions[i].value.findIndex(x => x == this.UserAccess["UserName"]) == -1) {
424
+ condition = true;
425
+ }
426
+ else {
427
+ condition = false;
428
+ break;
429
+ }
430
+ }
431
+ }
432
+ }
433
+ return condition;
434
+ }
435
+ }
436
+ /** @nocollapse */ /** @nocollapse */ UcviewgenericComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: UcviewgenericComponent, deps: [{ token: i1.ActivatedRoute }, { token: i2.HttpClient }, { token: i3.TranslateService }, { token: i4.CookieService }, { token: i5.CredentialService }], target: i0.ɵɵFactoryTarget.Component });
437
+ /** @nocollapse */ /** @nocollapse */ UcviewgenericComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.2", type: UcviewgenericComponent, selector: "lib-ucviewgeneric", inputs: { viewGenericObj: "viewGenericObj" }, outputs: { callback: "callback" }, ngImport: i0, template: "<section id=\"horizontal-form-layouts\">\r\n <div class=\"row text-left\">\r\n <div class=\"col-md-12\">\r\n <div class=\"card\" *ngIf=\"isReady\">\r\n <div class=\"pl-3 mb-2 mt-2\" *ngIf=\"viewList?.title != ''\">\r\n <h4 class=\"card-title ucSearch-title\" id=\"horz-layout-colored-controls\" translate>{{viewList.title}}</h4>\r\n </div>\r\n <div class=\"card-body\" *ngFor=\"let ss of viewList?.subsection;let i = index;\">\r\n <div class=\"px-3\">\r\n <lib-ucSubsection *ngIf=\"ss.subsection != ''\" [id]=\"ss.subSectionId + 'id'\" [title]=\"ss.subSectionTitle\"\r\n [panel]=\"ss.subSectionId\">\r\n </lib-ucSubsection>\r\n <div class=\"form-body\" [id]='ss.subSectionId'>\r\n <div class=\"form-group row\">\r\n <div *ngFor=\"let mi of ss?.mainInfo\"\r\n [ngClass]=\"{ 'col-md-6': mi.isHide == undefined || !mi.isHide || (viewInfoObjList[i][mi.property] != '' && viewInfoObjList[i][mi.property] != null)}\">\r\n <span\r\n *ngIf=\"mi.isHide == undefined || !mi.isHide || (viewInfoObjList[i][mi.property] != '' && viewInfoObjList[i][mi.property] != null)\">\r\n <div class=\"row\">\r\n <div class=\"col-md-6\" *ngIf=\"mi.type != 'switch'\">\r\n <label class=\"label-control\"\r\n [ngClass]=\"mi.customClassLabel != undefined ? mi.customClassLabel : ''\" translate>{{mi.label}}</label>\r\n </div>\r\n <div class=\"col-md-6\" *ngIf=\"mi.type == 'switch'\">\r\n <div *ngFor=\"let case of mi?.case\">\r\n <div *ngIf=\"switchCase(viewInfoObjList[i],case)\">\r\n <label class=\"label-control\"\r\n [ngClass]=\"mi.customClassLabel != undefined ? mi.customClassLabel : ''\" translate>{{case.result.label}}</label>\r\n </div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"viewInfoObjList[i] != undefined\" class=\"col-md-6\" [ngClass]=\"{ 'text-left': mi.position == 'left',\r\n 'text-right': mi.position == 'right', 'text-center': mi.position == 'center' }\">\r\n <span\r\n *ngIf=\"(mi.type == 'boolean' && viewInfoObjList[i][mi.property] != null) || (viewInfoObjList[i][mi.property] != '' && viewInfoObjList[i][mi.property] != null) || mi.type == 'switch' || mi.type =='concat'; then nonEmptyLabel else emptyLabel\"></span>\r\n <ng-template #emptyLabel>\r\n <label class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate>-</label>\r\n </ng-template>\r\n <ng-template #nonEmptyLabel>\r\n <span *ngIf=\"mi.type == 'text'\">\r\n <label\r\n *ngIf=\"viewInfoObjList[i][mi.property] != '' && viewInfoObjList[i][mi.property] != null\"\r\n class=\"label-control breakword\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n {{ viewInfoObjList[i][mi.property] }}\r\n </label>\r\n <label\r\n *ngIf=\"viewInfoObjList[i][mi.property] == '' || viewInfoObjList[i][mi.property] == null\"\r\n class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>-\r\n </label>\r\n </span>\r\n <label *ngIf=\"mi.type == 'currency'\" class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n {{ viewInfoObjList[i][mi.property] | number: mi?.precision ? mi?.precision : '0.2' :'en-US'}} <span *ngIf=\"mi?.IsPrcnt\">&nbsp;%</span> </label>\r\n <label *ngIf=\"mi.type == 'date'\" class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n {{ viewInfoObjList[i][mi.property] | date: (mi?.dateFormat) ? mi?.dateFormat : 'dd-MMM-yyyy'}} </label>\r\n <label *ngIf=\"mi.type == 'link'\" class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n <a *ngIf=\"!mi?.isFullpath\" [routerLink]=\"genRouterLink(mi.path)\" [target]=\"mi.target\"\r\n [queryParams]=\"genAction(viewInfoObjList[i], mi.param)\">\r\n <span *ngIf=\"(mi.isCurrency != undefined && mi.isCurrency)\">{{\r\n viewInfoObjList[i][mi.property] | number:'.2':'en-US' }}</span>\r\n <span *ngIf=\"(mi.isCurrency == undefined || !mi.isCurrency)\">{{\r\n viewInfoObjList[i][mi.property] }}</span>\r\n </a>\r\n <a *ngIf=\"mi?.isFullpath\" href=\"javascript:void(0);\"\r\n (click)=\"redirectFullPath(mi.fullpath, genAction(viewInfoObjList[i], mi.param), mi.target)\">\r\n <span *ngIf=\"(mi.isCurrency != undefined && mi.isCurrency)\">{{\r\n viewInfoObjList[i][mi.property] | number:'.2':'en-US' }}</span>\r\n <span *ngIf=\"(mi.isCurrency == undefined || !mi.isCurrency)\">{{\r\n viewInfoObjList[i][mi.property] }}</span>\r\n </a>\r\n </label>\r\n <label *ngIf=\"mi.type == 'callback'\" class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n <a href=\"javascript:void(0);\" (click)=\"callbackFunction(viewInfoObjList[i], mi.key)\">\r\n {{ viewInfoObjList[i][mi.property] }}\r\n </a>\r\n </label>\r\n <textarea *ngIf=\"mi.type == 'textarea'\" class=\"form-control\" readonly\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate> {{ viewInfoObjList[i][mi.property] }} </textarea>\r\n <span *ngIf=\"mi.type == 'boolean'\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n <label *ngIf=\"viewInfoObjList[i][mi.property] == true\">Yes</label>\r\n <label *ngIf=\"viewInfoObjList[i][mi.property] == false\">No</label>\r\n <!-- <label\r\n *ngIf=\"viewInfoObjList[i][mi.property] == '' || viewInfoObjList[i][mi.property] == null\">-</label> -->\r\n </span>\r\n <span *ngIf=\"mi.type == 'concat'\">\r\n <label class=\"label-control breakword\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n {{ mi.concat }}\r\n </label>\r\n </span>\r\n <span *ngIf=\"mi.type == 'switch'\">\r\n <span *ngFor=\"let cs of mi?.case\">\r\n <span *ngIf=\"switchCase(viewInfoObjList[i],cs) && !cs.Hidden\">\r\n <span class=\"label-control breakword\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate *ngIf=\"cs.result.type == 'text'\">{{ viewInfoObjList[i][cs.result.property]\r\n }}\r\n </span>\r\n <span [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate *ngIf=\"cs.result.type == 'decimal'\">{{\r\n viewInfoObjList[i][cs.result.property] | number:'.2':'en-US' }}</span>\r\n <span [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate *ngIf=\"cs.result.type == 'date'\">{{ viewInfoObjList[i][cs.result.property] |\r\n date: 'dd-MMM-yyyy' }}\r\n </span>\r\n <span *ngIf=\"cs.result.type == 'link'\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate>\r\n <a [target]=\"cs.result.target\" [routerLink]=\"genRouterLink(cs.result.path)\"\r\n [queryParams]=\"genAction(viewInfoObjList[i],cs.result.param)\">\r\n <span *ngIf=\"(mi.isCurrency != undefined && mi.isCurrency)\">{{\r\n viewInfoObjList[i][cs.result.property] | number:'.2':'en-US' }}</span>\r\n <span *ngIf=\"(mi.isCurrency == undefined || !mi.isCurrency)\">{{\r\n viewInfoObjList[i][cs.result.property] }}</span>\r\n </a>\r\n </span>\r\n <span *ngIf=\"cs.result.type == 'boolean'\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate>\r\n <span *ngIf=\"viewInfoObjList[i][cs.result.property] == 'true'\">Yes</span>\r\n <span *ngIf=\"viewInfoObjList[i][cs.result.property] == 'false'\">No</span>\r\n </span>\r\n <span *ngIf=\"cs.result.type == 'concat'\">\r\n <label class=\"label-control breakword\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n {{ cs.result.concat }}\r\n </label>\r\n </span>\r\n <span *ngIf=\"cs.result.type == 'callback'\">\r\n <span\r\n *ngIf=\"cs.result.isText != undefined && cs.result.isText; then textCallback else iconCallback\"></span>\r\n <ng-template #textCallback>\r\n <span>\r\n <a href=\"javascript:void(0);\" (click)=\"callbackFunction(viewInfoObjList[i], cs.result.key)\">{{\r\n viewInfoObjList[i][cs.result.property] }}</a>\r\n </span>\r\n </ng-template>\r\n <ng-template #iconCallback>\r\n <span>\r\n <a [ngClass]=\"[cs.result.tooltip != undefined && cs.result.tooltip != '' ? 'tooltips' : '', cs.result.anchor == undefined || cs.result.anchor == '' ? 'success p-0' : cs.result.anchor]\"\r\n (click)=\"callbackFunction(viewInfoObjList[i], cs.result.key)\">\r\n <i class=\"font-medium-3 mr-2\"\r\n [ngClass]=\" cs.result.icon == undefined || cs.result.icon == '' ? 'ft-edit-2' : cs.result.icon \">\r\n </i>\r\n <span *ngIf=\"cs.result.tooltip != undefined && cs.result.tooltip != ''\"\r\n [ngClass]=\"cs.result.tooltip != undefined && cs.result.tooltip != '' ? 'tooltipstext' : ''\">\r\n {{cs.result.tooltip}}\r\n </span>\r\n </a>\r\n </span>\r\n </ng-template>\r\n </span>\r\n </span>\r\n </span>\r\n </span>\r\n </ng-template>\r\n </div>\r\n </div>\r\n </span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</section>", components: [{ type: i6.UcSubsectionComponent, selector: "lib-ucSubsection", inputs: ["title", "panel", "id"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { type: i7.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo", "routerLink"] }], pipes: { "number": i7.DecimalPipe, "date": i7.DatePipe } });
438
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: UcviewgenericComponent, decorators: [{
439
+ type: Component,
440
+ args: [{ selector: 'lib-ucviewgeneric', styles: [], template: "<section id=\"horizontal-form-layouts\">\r\n <div class=\"row text-left\">\r\n <div class=\"col-md-12\">\r\n <div class=\"card\" *ngIf=\"isReady\">\r\n <div class=\"pl-3 mb-2 mt-2\" *ngIf=\"viewList?.title != ''\">\r\n <h4 class=\"card-title ucSearch-title\" id=\"horz-layout-colored-controls\" translate>{{viewList.title}}</h4>\r\n </div>\r\n <div class=\"card-body\" *ngFor=\"let ss of viewList?.subsection;let i = index;\">\r\n <div class=\"px-3\">\r\n <lib-ucSubsection *ngIf=\"ss.subsection != ''\" [id]=\"ss.subSectionId + 'id'\" [title]=\"ss.subSectionTitle\"\r\n [panel]=\"ss.subSectionId\">\r\n </lib-ucSubsection>\r\n <div class=\"form-body\" [id]='ss.subSectionId'>\r\n <div class=\"form-group row\">\r\n <div *ngFor=\"let mi of ss?.mainInfo\"\r\n [ngClass]=\"{ 'col-md-6': mi.isHide == undefined || !mi.isHide || (viewInfoObjList[i][mi.property] != '' && viewInfoObjList[i][mi.property] != null)}\">\r\n <span\r\n *ngIf=\"mi.isHide == undefined || !mi.isHide || (viewInfoObjList[i][mi.property] != '' && viewInfoObjList[i][mi.property] != null)\">\r\n <div class=\"row\">\r\n <div class=\"col-md-6\" *ngIf=\"mi.type != 'switch'\">\r\n <label class=\"label-control\"\r\n [ngClass]=\"mi.customClassLabel != undefined ? mi.customClassLabel : ''\" translate>{{mi.label}}</label>\r\n </div>\r\n <div class=\"col-md-6\" *ngIf=\"mi.type == 'switch'\">\r\n <div *ngFor=\"let case of mi?.case\">\r\n <div *ngIf=\"switchCase(viewInfoObjList[i],case)\">\r\n <label class=\"label-control\"\r\n [ngClass]=\"mi.customClassLabel != undefined ? mi.customClassLabel : ''\" translate>{{case.result.label}}</label>\r\n </div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"viewInfoObjList[i] != undefined\" class=\"col-md-6\" [ngClass]=\"{ 'text-left': mi.position == 'left',\r\n 'text-right': mi.position == 'right', 'text-center': mi.position == 'center' }\">\r\n <span\r\n *ngIf=\"(mi.type == 'boolean' && viewInfoObjList[i][mi.property] != null) || (viewInfoObjList[i][mi.property] != '' && viewInfoObjList[i][mi.property] != null) || mi.type == 'switch' || mi.type =='concat'; then nonEmptyLabel else emptyLabel\"></span>\r\n <ng-template #emptyLabel>\r\n <label class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate>-</label>\r\n </ng-template>\r\n <ng-template #nonEmptyLabel>\r\n <span *ngIf=\"mi.type == 'text'\">\r\n <label\r\n *ngIf=\"viewInfoObjList[i][mi.property] != '' && viewInfoObjList[i][mi.property] != null\"\r\n class=\"label-control breakword\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n {{ viewInfoObjList[i][mi.property] }}\r\n </label>\r\n <label\r\n *ngIf=\"viewInfoObjList[i][mi.property] == '' || viewInfoObjList[i][mi.property] == null\"\r\n class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>-\r\n </label>\r\n </span>\r\n <label *ngIf=\"mi.type == 'currency'\" class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n {{ viewInfoObjList[i][mi.property] | number: mi?.precision ? mi?.precision : '0.2' :'en-US'}} <span *ngIf=\"mi?.IsPrcnt\">&nbsp;%</span> </label>\r\n <label *ngIf=\"mi.type == 'date'\" class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n {{ viewInfoObjList[i][mi.property] | date: (mi?.dateFormat) ? mi?.dateFormat : 'dd-MMM-yyyy'}} </label>\r\n <label *ngIf=\"mi.type == 'link'\" class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n <a *ngIf=\"!mi?.isFullpath\" [routerLink]=\"genRouterLink(mi.path)\" [target]=\"mi.target\"\r\n [queryParams]=\"genAction(viewInfoObjList[i], mi.param)\">\r\n <span *ngIf=\"(mi.isCurrency != undefined && mi.isCurrency)\">{{\r\n viewInfoObjList[i][mi.property] | number:'.2':'en-US' }}</span>\r\n <span *ngIf=\"(mi.isCurrency == undefined || !mi.isCurrency)\">{{\r\n viewInfoObjList[i][mi.property] }}</span>\r\n </a>\r\n <a *ngIf=\"mi?.isFullpath\" href=\"javascript:void(0);\"\r\n (click)=\"redirectFullPath(mi.fullpath, genAction(viewInfoObjList[i], mi.param), mi.target)\">\r\n <span *ngIf=\"(mi.isCurrency != undefined && mi.isCurrency)\">{{\r\n viewInfoObjList[i][mi.property] | number:'.2':'en-US' }}</span>\r\n <span *ngIf=\"(mi.isCurrency == undefined || !mi.isCurrency)\">{{\r\n viewInfoObjList[i][mi.property] }}</span>\r\n </a>\r\n </label>\r\n <label *ngIf=\"mi.type == 'callback'\" class=\"label-control\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n <a href=\"javascript:void(0);\" (click)=\"callbackFunction(viewInfoObjList[i], mi.key)\">\r\n {{ viewInfoObjList[i][mi.property] }}\r\n </a>\r\n </label>\r\n <textarea *ngIf=\"mi.type == 'textarea'\" class=\"form-control\" readonly\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate> {{ viewInfoObjList[i][mi.property] }} </textarea>\r\n <span *ngIf=\"mi.type == 'boolean'\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n <label *ngIf=\"viewInfoObjList[i][mi.property] == true\">Yes</label>\r\n <label *ngIf=\"viewInfoObjList[i][mi.property] == false\">No</label>\r\n <!-- <label\r\n *ngIf=\"viewInfoObjList[i][mi.property] == '' || viewInfoObjList[i][mi.property] == null\">-</label> -->\r\n </span>\r\n <span *ngIf=\"mi.type == 'concat'\">\r\n <label class=\"label-control breakword\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n {{ mi.concat }}\r\n </label>\r\n </span>\r\n <span *ngIf=\"mi.type == 'switch'\">\r\n <span *ngFor=\"let cs of mi?.case\">\r\n <span *ngIf=\"switchCase(viewInfoObjList[i],cs) && !cs.Hidden\">\r\n <span class=\"label-control breakword\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate *ngIf=\"cs.result.type == 'text'\">{{ viewInfoObjList[i][cs.result.property]\r\n }}\r\n </span>\r\n <span [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate *ngIf=\"cs.result.type == 'decimal'\">{{\r\n viewInfoObjList[i][cs.result.property] | number:'.2':'en-US' }}</span>\r\n <span [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate *ngIf=\"cs.result.type == 'date'\">{{ viewInfoObjList[i][cs.result.property] |\r\n date: 'dd-MMM-yyyy' }}\r\n </span>\r\n <span *ngIf=\"cs.result.type == 'link'\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate>\r\n <a [target]=\"cs.result.target\" [routerLink]=\"genRouterLink(cs.result.path)\"\r\n [queryParams]=\"genAction(viewInfoObjList[i],cs.result.param)\">\r\n <span *ngIf=\"(mi.isCurrency != undefined && mi.isCurrency)\">{{\r\n viewInfoObjList[i][cs.result.property] | number:'.2':'en-US' }}</span>\r\n <span *ngIf=\"(mi.isCurrency == undefined || !mi.isCurrency)\">{{\r\n viewInfoObjList[i][cs.result.property] }}</span>\r\n </a>\r\n </span>\r\n <span *ngIf=\"cs.result.type == 'boolean'\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\"\r\n translate>\r\n <span *ngIf=\"viewInfoObjList[i][cs.result.property] == 'true'\">Yes</span>\r\n <span *ngIf=\"viewInfoObjList[i][cs.result.property] == 'false'\">No</span>\r\n </span>\r\n <span *ngIf=\"cs.result.type == 'concat'\">\r\n <label class=\"label-control breakword\"\r\n [ngClass]=\"mi.customClassProperty != undefined ? mi.customClassProperty : ''\" translate>\r\n {{ cs.result.concat }}\r\n </label>\r\n </span>\r\n <span *ngIf=\"cs.result.type == 'callback'\">\r\n <span\r\n *ngIf=\"cs.result.isText != undefined && cs.result.isText; then textCallback else iconCallback\"></span>\r\n <ng-template #textCallback>\r\n <span>\r\n <a href=\"javascript:void(0);\" (click)=\"callbackFunction(viewInfoObjList[i], cs.result.key)\">{{\r\n viewInfoObjList[i][cs.result.property] }}</a>\r\n </span>\r\n </ng-template>\r\n <ng-template #iconCallback>\r\n <span>\r\n <a [ngClass]=\"[cs.result.tooltip != undefined && cs.result.tooltip != '' ? 'tooltips' : '', cs.result.anchor == undefined || cs.result.anchor == '' ? 'success p-0' : cs.result.anchor]\"\r\n (click)=\"callbackFunction(viewInfoObjList[i], cs.result.key)\">\r\n <i class=\"font-medium-3 mr-2\"\r\n [ngClass]=\" cs.result.icon == undefined || cs.result.icon == '' ? 'ft-edit-2' : cs.result.icon \">\r\n </i>\r\n <span *ngIf=\"cs.result.tooltip != undefined && cs.result.tooltip != ''\"\r\n [ngClass]=\"cs.result.tooltip != undefined && cs.result.tooltip != '' ? 'tooltipstext' : ''\">\r\n {{cs.result.tooltip}}\r\n </span>\r\n </a>\r\n </span>\r\n </ng-template>\r\n </span>\r\n </span>\r\n </span>\r\n </span>\r\n </ng-template>\r\n </div>\r\n </div>\r\n </span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</section>" }]
441
+ }], ctorParameters: function () { return [{ type: i1.ActivatedRoute }, { type: i2.HttpClient }, { type: i3.TranslateService }, { type: i4.CookieService }, { type: i5.CredentialService }]; }, propDecorators: { viewGenericObj: [{
442
+ type: Input
443
+ }], callback: [{
444
+ type: Output
445
+ }] } });
446
+
447
+ class UcviewgenericModule {
448
+ }
449
+ /** @nocollapse */ /** @nocollapse */ UcviewgenericModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: UcviewgenericModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
450
+ /** @nocollapse */ /** @nocollapse */ UcviewgenericModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: UcviewgenericModule, declarations: [UcviewgenericComponent], imports: [CommonModule,
451
+ RouterModule,
452
+ UcSubsectionModule, i3.TranslateModule], exports: [UcviewgenericComponent] });
453
+ /** @nocollapse */ /** @nocollapse */ UcviewgenericModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: UcviewgenericModule, imports: [[
454
+ CommonModule,
455
+ RouterModule,
456
+ UcSubsectionModule,
457
+ TranslateModule.forChild()
458
+ ]] });
459
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: UcviewgenericModule, decorators: [{
460
+ type: NgModule,
461
+ args: [{
462
+ declarations: [UcviewgenericComponent],
463
+ imports: [
464
+ CommonModule,
465
+ RouterModule,
466
+ UcSubsectionModule,
467
+ TranslateModule.forChild()
468
+ ],
469
+ exports: [UcviewgenericComponent]
470
+ }]
471
+ }] });
472
+
473
+ /*
474
+ * Public API Surface of ucviewgeneric
475
+ */
476
+
477
+ /**
478
+ * Generated bundle index. Do not edit.
479
+ */
480
+
481
+ export { UcviewgenericComponent, UcviewgenericModule, UcviewgenericService };
482
+ //# sourceMappingURL=adins-ucviewgeneric.mjs.map