@messaia/cdk 12.1.3 → 12.2.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.
Files changed (107) hide show
  1. package/bundles/messaia-cdk.umd.js +739 -130
  2. package/bundles/messaia-cdk.umd.js.map +1 -1
  3. package/esm2015/lib/base/base.module.js +2 -1
  4. package/esm2015/lib/base/components/base.component.js +16 -2
  5. package/esm2015/lib/base/components/generic-form.component.js +13 -4
  6. package/esm2015/lib/base/components/generic-list.component.js +10 -2
  7. package/esm2015/lib/base/interceptors/base.interceptor.js +9 -2
  8. package/esm2015/lib/base/interceptors/caching-interceptor.js +9 -2
  9. package/esm2015/lib/base/interceptors/loading.interceptor.js +9 -2
  10. package/esm2015/lib/base/services/file.service.js +9 -2
  11. package/esm2015/lib/base/services/loading-screen.service.js +2 -1
  12. package/esm2015/lib/base/services/print.service.js +9 -2
  13. package/esm2015/lib/chips/chips.module.js +2 -1
  14. package/esm2015/lib/chips/components/chips.component.js +27 -5
  15. package/esm2015/lib/common/common.module.js +2 -1
  16. package/esm2015/lib/common/directives/disable-control.directive.js +10 -2
  17. package/esm2015/lib/common/functions/utils.js +28 -1
  18. package/esm2015/lib/common/helpers/app-storage.js +2 -1
  19. package/esm2015/lib/common/helpers/dynamic-builder.js +9 -2
  20. package/esm2015/lib/common/models/app-setting.js +2 -1
  21. package/esm2015/lib/common/pipes/data-source.pipe.js +2 -1
  22. package/esm2015/lib/common/pipes/enum.pipe.js +2 -1
  23. package/esm2015/lib/common/pipes/file-size.pipe.js +2 -1
  24. package/esm2015/lib/common/pipes/filter.pipe.js +2 -1
  25. package/esm2015/lib/common/pipes/first-letter.js +2 -1
  26. package/esm2015/lib/common/pipes/keys.js +2 -1
  27. package/esm2015/lib/common/pipes/month-name.pipe.js +2 -1
  28. package/esm2015/lib/common/pipes/only-number.js +10 -2
  29. package/esm2015/lib/common/pipes/order.pipe.js +2 -1
  30. package/esm2015/lib/common/pipes/placeholder.pipe.js +2 -1
  31. package/esm2015/lib/common/pipes/safe-html.pipe.js +9 -2
  32. package/esm2015/lib/common/pipes/time.pipe.js +2 -1
  33. package/esm2015/lib/common/pipes/titlecase.pipe.js +2 -1
  34. package/esm2015/lib/common/pipes/truncate.pipe.js +2 -1
  35. package/esm2015/lib/common/pipes/values.js +2 -1
  36. package/esm2015/lib/common/services/base.service.js +9 -2
  37. package/esm2015/lib/common/services/enum.service.js +2 -1
  38. package/esm2015/lib/dialogs/alert-dialog/alert-dialog.component.js +10 -3
  39. package/esm2015/lib/dialogs/confirm-dialog/confirm-dialog.component.js +10 -3
  40. package/esm2015/lib/dialogs/dialog.component.js +7 -2
  41. package/esm2015/lib/dialogs/dialogs.module.js +2 -1
  42. package/esm2015/lib/dialogs/prompt-dialog/prompt-dialog.component.js +10 -3
  43. package/esm2015/lib/dialogs/services/dialog.service.js +9 -2
  44. package/esm2015/lib/file/file-input.component.js +10 -2
  45. package/esm2015/lib/file/file.module.js +2 -1
  46. package/esm2015/lib/form-validators/directives/base-directive.js +3 -1
  47. package/esm2015/lib/form-validators/directives/control-host.directive.js +10 -2
  48. package/esm2015/lib/form-validators/directives/html-control-template.directive.js +10 -2
  49. package/esm2015/lib/form-validators/directives/rx-form.directive.js +3 -1
  50. package/esm2015/lib/form-validators/directives/template-validations/async-validation.directive.js +3 -1
  51. package/esm2015/lib/form-validators/directives/template-validations/base-validator.directive.js +3 -1
  52. package/esm2015/lib/form-validators/directives/template-validations/control-expression-process.js +3 -1
  53. package/esm2015/lib/form-validators/directives/template-validations/file-control.directive.js +10 -2
  54. package/esm2015/lib/form-validators/directives/template-validations/image-file-control.directive.js +10 -2
  55. package/esm2015/lib/form-validators/directives/template-validations/rxformcontrol.directive.js +10 -2
  56. package/esm2015/lib/form-validators/domain/element-processor/decimal.provider.js +9 -2
  57. package/esm2015/lib/form-validators/services/reactive-form.module.js +10 -2
  58. package/esm2015/lib/form-validators/services/rx-form-builder.js +9 -2
  59. package/esm2015/lib/form-validators/services/typed-form-builder.js +9 -2
  60. package/esm2015/lib/forms/components/generic-form/generic-form.component.js +35 -5
  61. package/esm2015/lib/forms/directives/mat-form-field-readonly.directive.js +9 -2
  62. package/esm2015/lib/forms/forms.module.js +2 -1
  63. package/esm2015/lib/forms/helpers/abstract-mat-form-field.js +10 -2
  64. package/esm2015/lib/forms/helpers/value-accessor-base.js +3 -1
  65. package/esm2015/lib/forms/validators/equal-validator.directive.js +9 -2
  66. package/esm2015/lib/forms/validators/native-element-injector.directive.js +9 -2
  67. package/esm2015/lib/forms/validators/unique-validator-directive.js +10 -2
  68. package/esm2015/lib/http/http.module.js +2 -1
  69. package/esm2015/lib/layout/layout-card-over/layout-card-over.component.js +4 -2
  70. package/esm2015/lib/layout/layout-footer/layout-footer.component.js +11 -3
  71. package/esm2015/lib/layout/layout-manage-list/layout-manage-list.component.js +11 -3
  72. package/esm2015/lib/layout/layout-manage-list/layout-manage-list.directives.js +28 -4
  73. package/esm2015/lib/layout/layout-nav/layout-nav.component.js +11 -3
  74. package/esm2015/lib/layout/layout-nav-list/layout-nav-list.component.js +11 -3
  75. package/esm2015/lib/layout/layout-nav-list/layout-nav-list.directives.js +28 -4
  76. package/esm2015/lib/layout/layout-toggle.class.js +10 -2
  77. package/esm2015/lib/layout/layout.component.js +4 -2
  78. package/esm2015/lib/layout/layout.directives.js +28 -4
  79. package/esm2015/lib/layout/layout.module.js +2 -1
  80. package/esm2015/lib/layout/navigation-drawer/navigation-drawer.component.js +13 -3
  81. package/esm2015/lib/media/directives/media-toggle.directive.js +10 -2
  82. package/esm2015/lib/media/media.module.js +2 -1
  83. package/esm2015/lib/media/services/media.service.js +9 -2
  84. package/esm2015/lib/menu/components/menu.component.js +3 -1
  85. package/esm2015/lib/menu/menu.module.js +2 -1
  86. package/esm2015/lib/menu/services/menu-items.service.js +9 -2
  87. package/esm2015/lib/menu/services/menu.resolve.js +10 -2
  88. package/esm2015/lib/menu/services/menu.service.js +9 -2
  89. package/esm2015/lib/search/search.module.js +2 -1
  90. package/esm2015/lib/search/vd-search-box/vd-search-box.component.js +4 -2
  91. package/esm2015/lib/search/vd-search-input/vd-search-input.component.js +11 -3
  92. package/esm2015/lib/select/select.component.js +19 -4
  93. package/esm2015/lib/select/select.module.js +2 -1
  94. package/esm2015/lib/table/components/dynamic-table/dynamic-table.component.js +11 -3
  95. package/esm2015/lib/table/components/filter-clear.component.js +9 -2
  96. package/esm2015/lib/table/components/filter-date.component.js +10 -2
  97. package/esm2015/lib/table/components/filter-input.component.js +10 -2
  98. package/esm2015/lib/table/components/filter-select.component.js +18 -3
  99. package/esm2015/lib/table/directives/data-source-filter.directive.js +3 -1
  100. package/esm2015/lib/table/paginator-intl.js +2 -1
  101. package/esm2015/lib/table/table.module.js +2 -1
  102. package/fesm2015/messaia-cdk.js +696 -86
  103. package/fesm2015/messaia-cdk.js.map +1 -1
  104. package/lib/base/components/base.component.d.ts +4 -0
  105. package/lib/common/functions/utils.d.ts +10 -0
  106. package/messaia-cdk.metadata.json +1 -1
  107. package/package.json +4 -1
@@ -49,6 +49,7 @@ import { MatProgressBarModule } from '@angular/material/progress-bar';
49
49
 
50
50
  class AppSetting {
51
51
  }
52
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
52
53
  AppSetting.decorators = [
53
54
  { type: Injectable }
54
55
  ];
@@ -83,14 +84,21 @@ class VdAlertDialogComponent {
83
84
  this._dialogRef.close();
84
85
  }
85
86
  }
87
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
86
88
  VdAlertDialogComponent.decorators = [
87
89
  { type: Component, args: [{
88
90
  selector: 'vd-alert-dialog',
89
91
  template: "<vd-dialog>\r\n\t<vd-dialog-title *ngIf=\"title\">{{title}}</vd-dialog-title>\r\n\t<vd-dialog-content class=\"md-subhead tc-grey-700\" [innerHtml]=\"message\"></vd-dialog-content>\r\n\t<vd-dialog-actions>\r\n\t\t<button mat-button color=\"accent\" (click)=\"close()\">{{closeButton}}</button>\r\n\t</vd-dialog-actions>\r\n</vd-dialog>",
90
- styles: ["@media (min-width:600px){vd-dialog{width:400px}}@media (max-width:599px){vd-dialog{width:250px}}"]
92
+ styles: ["@media (min-width: 600px){vd-dialog{width:400px}}@media (max-width: 599px){vd-dialog{width:250px}}\n"]
91
93
  },] }
92
94
  ];
93
- /** @nocollapse */
95
+ /**
96
+ * @type {function(): !Array<(null|{
97
+ * type: ?,
98
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
99
+ * })>}
100
+ * @nocollapse
101
+ */
94
102
  VdAlertDialogComponent.ctorParameters = () => [
95
103
  { type: MatDialogRef }
96
104
  ];
@@ -118,14 +126,21 @@ class VdConfirmDialogComponent {
118
126
  this._dialogRef.close(true);
119
127
  }
120
128
  }
129
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
121
130
  VdConfirmDialogComponent.decorators = [
122
131
  { type: Component, args: [{
123
132
  selector: 'vd-confirm-dialog',
124
133
  template: "<vd-dialog>\r\n\t<vd-dialog-title *ngIf=\"title\">{{title}}</vd-dialog-title>\r\n\t<vd-dialog-content class=\"md-subhead tc-grey-700\" [innerHtml]=\"message\"></vd-dialog-content>\r\n\t<vd-dialog-actions>\r\n\t\t<button mat-button #closeBtn (keydown.arrowright)=\"acceptBtn.focus()\" (click)=\"cancel()\">{{cancelButton}}</button>\r\n\t\t<button mat-button color=\"accent\" #acceptBtn (keydown.arrowleft)=\"closeBtn.focus()\" (click)=\"accept()\">{{acceptButton}}</button>\r\n\t</vd-dialog-actions>\r\n</vd-dialog>",
125
- styles: ["@media (min-width:600px){vd-dialog{width:400px}}@media (max-width:599px){vd-dialog{width:250px}}"]
134
+ styles: ["@media (min-width: 600px){vd-dialog{width:400px}}@media (max-width: 599px){vd-dialog{width:250px}}\n"]
126
135
  },] }
127
136
  ];
128
- /** @nocollapse */
137
+ /**
138
+ * @type {function(): !Array<(null|{
139
+ * type: ?,
140
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
141
+ * })>}
142
+ * @nocollapse
143
+ */
129
144
  VdConfirmDialogComponent.ctorParameters = () => [
130
145
  { type: MatDialogRef }
131
146
  ];
@@ -153,14 +168,21 @@ class VdPromptDialogComponent {
153
168
  this._dialogRef.close(this.value);
154
169
  }
155
170
  }
171
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
156
172
  VdPromptDialogComponent.decorators = [
157
173
  { type: Component, args: [{
158
174
  selector: 'vd-prompt-dialog',
159
175
  template: "<vd-dialog>\r\n\t<vd-dialog-title *ngIf=\"title\">{{title}}</vd-dialog-title>\r\n\t<vd-dialog-content layout=\"column\" class=\"md-subhead tc-grey-700\">\r\n\t\t<span [innerHtml]=\"message\"></span>\r\n\t\t<form #form=\"ngForm\" layout=\"row\" novalidate flex>\r\n\t\t\t<mat-form-field flex>\r\n\t\t\t\t<input matInput (keydown.enter)=\"$event.preventDefault(); form.valid && accept()\" [(ngModel)]=\"value\" name=\"value\" required />\r\n\t\t\t</mat-form-field>\r\n\t\t</form>\r\n\t</vd-dialog-content>\r\n\t<vd-dialog-actions>\r\n\t\t<button mat-button #closeBtn (keydown.arrowright)=\"acceptBtn.focus()\" (click)=\"cancel()\">{{cancelButton}}</button>\r\n\t\t<button mat-button color=\"accent\" #acceptBtn (keydown.arrowleft)=\"closeBtn.focus()\" [disabled]=\"!form.valid\" (click)=\"accept()\">{{acceptButton}}</button>\r\n\t</vd-dialog-actions>\r\n</vd-dialog>",
160
- styles: ["@media (min-width:600px){vd-dialog{width:400px}}@media (max-width:599px){vd-dialog{width:250px}}"]
176
+ styles: ["@media (min-width: 600px){vd-dialog{width:400px}}@media (max-width: 599px){vd-dialog{width:250px}}\n"]
161
177
  },] }
162
178
  ];
163
- /** @nocollapse */
179
+ /**
180
+ * @type {function(): !Array<(null|{
181
+ * type: ?,
182
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
183
+ * })>}
184
+ * @nocollapse
185
+ */
164
186
  VdPromptDialogComponent.ctorParameters = () => [
165
187
  { type: MatDialogRef }
166
188
  ];
@@ -279,10 +301,17 @@ class VdDialogService {
279
301
  }
280
302
  }
281
303
  /** @nocollapse */ VdDialogService.ɵprov = i0.ɵɵdefineInjectable({ factory: function VdDialogService_Factory() { return new VdDialogService(i0.ɵɵinject(i1.MatDialog)); }, token: VdDialogService, providedIn: "root" });
304
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
282
305
  VdDialogService.decorators = [
283
306
  { type: Injectable, args: [{ providedIn: 'root' },] }
284
307
  ];
285
- /** @nocollapse */
308
+ /**
309
+ * @type {function(): !Array<(null|{
310
+ * type: ?,
311
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
312
+ * })>}
313
+ * @nocollapse
314
+ */
286
315
  VdDialogService.ctorParameters = () => [
287
316
  { type: MatDialog }
288
317
  ];
@@ -386,10 +415,17 @@ class VdMediaService {
386
415
  this._querySources[query].next(matchMedia(query).matches);
387
416
  }
388
417
  }
418
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
389
419
  VdMediaService.decorators = [
390
420
  { type: Injectable }
391
421
  ];
392
- /** @nocollapse */
422
+ /**
423
+ * @type {function(): !Array<(null|{
424
+ * type: ?,
425
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
426
+ * })>}
427
+ * @nocollapse
428
+ */
393
429
  VdMediaService.ctorParameters = () => [
394
430
  { type: NgZone }
395
431
  ];
@@ -577,6 +613,13 @@ class BaseComponent {
577
613
  */
578
614
  this.changeDetectorRef.detectChanges();
579
615
  }
616
+ /**
617
+ * Refreshs this page/component
618
+ */
619
+ reloadPage() {
620
+ let currentUrl = this.router.url;
621
+ this.router.navigateByUrl('/', { skipLocationChange: true }).then(() => this.router.navigate([currentUrl]));
622
+ }
580
623
  /**
581
624
  * Retrieves an instance from the injector based on the provided token.
582
625
  * If not found:
@@ -808,10 +851,17 @@ class BaseComponent {
808
851
  return obj;
809
852
  }
810
853
  }
854
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
811
855
  BaseComponent.decorators = [
812
856
  { type: Directive }
813
857
  ];
814
- /** @nocollapse */
858
+ /**
859
+ * @type {function(): !Array<(null|{
860
+ * type: ?,
861
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
862
+ * })>}
863
+ * @nocollapse
864
+ */
815
865
  BaseComponent.ctorParameters = () => [
816
866
  { type: ActivatedRoute },
817
867
  { type: ChangeDetectorRef }
@@ -926,6 +976,32 @@ class Utils {
926
976
  catch (error) { }
927
977
  return obj;
928
978
  }
979
+ /**
980
+ * Gets the query params and the hash from the specified url
981
+ * @param url
982
+ * @returns
983
+ */
984
+ static getUrlParts(url) {
985
+ var _a, _b, _c, _d, _e;
986
+ try {
987
+ /* Get urls parts */
988
+ var urlHashParts = (_a = url === null || url === void 0 ? void 0 : url.split('#')) !== null && _a !== void 0 ? _a : [];
989
+ /* Get hash */
990
+ var urlHash = (_b = urlHashParts[1]) !== null && _b !== void 0 ? _b : null;
991
+ /* Get query parts */
992
+ var urlQueryParts = (_c = urlHashParts[0]) === null || _c === void 0 ? void 0 : _c.split('?');
993
+ /* Get query params as object */
994
+ var urlParams = (_e = (_d = urlQueryParts[1]) === null || _d === void 0 ? void 0 : _d.split("&").reduce((prev, curr) => {
995
+ var p = curr.split("=");
996
+ prev[decodeURIComponent(p[0])] = decodeURIComponent(p[1]);
997
+ return prev;
998
+ }, {})) !== null && _e !== void 0 ? _e : null;
999
+ return { url: urlQueryParts[0], params: urlParams, hash: urlHash };
1000
+ }
1001
+ catch (error) {
1002
+ return { url: url, params: null, hash: null };
1003
+ }
1004
+ }
929
1005
  }
930
1006
  /**
931
1007
  * Month names
@@ -944,6 +1020,7 @@ Utils.germanMonthNames = [
944
1020
  { name: 'November', id: 11 },
945
1021
  { name: 'Dezember', id: 12 }
946
1022
  ];
1023
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
947
1024
  Utils.decorators = [
948
1025
  { type: Directive }
949
1026
  ];
@@ -1258,7 +1335,8 @@ class GenericFormComponent extends BaseComponent {
1258
1335
  */
1259
1336
  back(action = SaveAction.SaveAndClose) {
1260
1337
  if (action == SaveAction.SaveAndClose && this.returnUrl) {
1261
- this.router.navigate([this.returnUrl]);
1338
+ var urlParts = Utils.getUrlParts(this.returnUrl);
1339
+ this.router.navigate([urlParts.url], { queryParams: urlParts.params, fragment: urlParts.hash });
1262
1340
  }
1263
1341
  else {
1264
1342
  if (this.isEditMode) {
@@ -1266,7 +1344,7 @@ class GenericFormComponent extends BaseComponent {
1266
1344
  this.location.back();
1267
1345
  }
1268
1346
  else if (action == SaveAction.SaveAndEdit) {
1269
- this.loadItem();
1347
+ this.reloadPage();
1270
1348
  }
1271
1349
  }
1272
1350
  else {
@@ -1398,16 +1476,24 @@ class GenericFormComponent extends BaseComponent {
1398
1476
  }
1399
1477
  }
1400
1478
  }
1479
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1401
1480
  GenericFormComponent.decorators = [
1402
1481
  { type: Directive }
1403
1482
  ];
1404
- /** @nocollapse */
1483
+ /**
1484
+ * @type {function(): !Array<(null|{
1485
+ * type: ?,
1486
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
1487
+ * })>}
1488
+ * @nocollapse
1489
+ */
1405
1490
  GenericFormComponent.ctorParameters = () => [
1406
1491
  { type: undefined },
1407
1492
  { type: undefined },
1408
1493
  { type: ActivatedRoute },
1409
1494
  { type: ChangeDetectorRef }
1410
1495
  ];
1496
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
1411
1497
  GenericFormComponent.propDecorators = {
1412
1498
  input: [{ type: ViewChildren, args: ['focus',] }],
1413
1499
  handleKeyboardEvent: [{ type: HostListener, args: ['document:keydown', ['$event'],] }]
@@ -1467,6 +1553,7 @@ AppStorage.getObject = (key) => {
1467
1553
  return null;
1468
1554
  }
1469
1555
  };
1556
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1470
1557
  AppStorage.decorators = [
1471
1558
  { type: Directive }
1472
1559
  ];
@@ -1511,10 +1598,17 @@ class DynamicBuilder {
1511
1598
  }
1512
1599
  }
1513
1600
  /** @nocollapse */ DynamicBuilder.ɵprov = i0.ɵɵdefineInjectable({ factory: function DynamicBuilder_Factory() { return new DynamicBuilder(i0.ɵɵinject(i0.Compiler)); }, token: DynamicBuilder, providedIn: "root" });
1601
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1514
1602
  DynamicBuilder.decorators = [
1515
1603
  { type: Injectable, args: [{ providedIn: 'root' },] }
1516
1604
  ];
1517
- /** @nocollapse */
1605
+ /**
1606
+ * @type {function(): !Array<(null|{
1607
+ * type: ?,
1608
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
1609
+ * })>}
1610
+ * @nocollapse
1611
+ */
1518
1612
  DynamicBuilder.ctorParameters = () => [
1519
1613
  { type: Compiler }
1520
1614
  ];
@@ -1815,7 +1909,7 @@ class VdDynamicTableComponent {
1815
1909
  */
1816
1910
  hasVisibleActionMenus(row, column) {
1817
1911
  var _a, _b;
1818
- return ((_b = (_a = column === null || column === void 0 ? void 0 : column.actionMenus) === null || _a === void 0 ? void 0 : _a.filter(x => !x.hide(row))) === null || _b === void 0 ? void 0 : _b.length) > 0;
1912
+ return ((_b = (_a = column === null || column === void 0 ? void 0 : column.actionMenus) === null || _a === void 0 ? void 0 : _a.filter(x => !x.hide || !x.hide(row))) === null || _b === void 0 ? void 0 : _b.length) > 0;
1819
1913
  }
1820
1914
  /**
1821
1915
  * A function to to compute the identity of items in an iterable.
@@ -1859,6 +1953,7 @@ class VdDynamicTableComponent {
1859
1953
  }
1860
1954
  }
1861
1955
  }
1956
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1862
1957
  VdDynamicTableComponent.decorators = [
1863
1958
  { type: Component, args: [{
1864
1959
  selector: 'vd-dynamic-table',
@@ -1872,10 +1967,17 @@ VdDynamicTableComponent.decorators = [
1872
1967
  ]
1873
1968
  },] }
1874
1969
  ];
1875
- /** @nocollapse */
1970
+ /**
1971
+ * @type {function(): !Array<(null|{
1972
+ * type: ?,
1973
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
1974
+ * })>}
1975
+ * @nocollapse
1976
+ */
1876
1977
  VdDynamicTableComponent.ctorParameters = () => [
1877
1978
  { type: DynamicBuilder }
1878
1979
  ];
1980
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
1879
1981
  VdDynamicTableComponent.propDecorators = {
1880
1982
  detailsTemplateRef: [{ type: ViewChildren, args: ['detailsTemplate', { read: ViewContainerRef },] }],
1881
1983
  dataSource: [{ type: Input }],
@@ -2520,16 +2622,24 @@ class GenericListComponent extends BaseComponent {
2520
2622
  }
2521
2623
  }
2522
2624
  }
2625
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
2523
2626
  GenericListComponent.decorators = [
2524
2627
  { type: Directive }
2525
2628
  ];
2526
- /** @nocollapse */
2629
+ /**
2630
+ * @type {function(): !Array<(null|{
2631
+ * type: ?,
2632
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
2633
+ * })>}
2634
+ * @nocollapse
2635
+ */
2527
2636
  GenericListComponent.ctorParameters = () => [
2528
2637
  { type: undefined },
2529
2638
  { type: ActivatedRoute },
2530
2639
  { type: ChangeDetectorRef },
2531
2640
  { type: undefined }
2532
2641
  ];
2642
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
2533
2643
  GenericListComponent.propDecorators = {
2534
2644
  paginator: [{ type: ViewChild, args: [MatPaginator, { static: true },] }],
2535
2645
  sort: [{ type: ViewChild, args: [MatSort, { static: true },] }],
@@ -2661,10 +2771,17 @@ class BaseInterceptor {
2661
2771
  }
2662
2772
  }
2663
2773
  /** @nocollapse */ BaseInterceptor.ɵprov = i0.ɵɵdefineInjectable({ factory: function BaseInterceptor_Factory() { return new BaseInterceptor(i0.ɵɵinject(AppSetting), i0.ɵɵinject(i2.MatSnackBar)); }, token: BaseInterceptor, providedIn: "root" });
2774
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
2664
2775
  BaseInterceptor.decorators = [
2665
2776
  { type: Injectable, args: [{ providedIn: 'root' },] }
2666
2777
  ];
2667
- /** @nocollapse */
2778
+ /**
2779
+ * @type {function(): !Array<(null|{
2780
+ * type: ?,
2781
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
2782
+ * })>}
2783
+ * @nocollapse
2784
+ */
2668
2785
  BaseInterceptor.ctorParameters = () => [
2669
2786
  { type: AppSetting },
2670
2787
  { type: MatSnackBar }
@@ -2727,10 +2844,17 @@ class CachingInterceptor {
2727
2844
  }
2728
2845
  }
2729
2846
  /** @nocollapse */ CachingInterceptor.ɵprov = i0.ɵɵdefineInjectable({ factory: function CachingInterceptor_Factory() { return new CachingInterceptor(); }, token: CachingInterceptor, providedIn: "root" });
2847
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
2730
2848
  CachingInterceptor.decorators = [
2731
2849
  { type: Injectable, args: [{ providedIn: 'root' },] }
2732
2850
  ];
2733
- /** @nocollapse */
2851
+ /**
2852
+ * @type {function(): !Array<(null|{
2853
+ * type: ?,
2854
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
2855
+ * })>}
2856
+ * @nocollapse
2857
+ */
2734
2858
  CachingInterceptor.ctorParameters = () => [];
2735
2859
 
2736
2860
  class LoadingScreenService {
@@ -2771,6 +2895,7 @@ class LoadingScreenService {
2771
2895
  }
2772
2896
  }
2773
2897
  /** @nocollapse */ LoadingScreenService.ɵprov = i0.ɵɵdefineInjectable({ factory: function LoadingScreenService_Factory() { return new LoadingScreenService(); }, token: LoadingScreenService, providedIn: "root" });
2898
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
2774
2899
  LoadingScreenService.decorators = [
2775
2900
  { type: Injectable, args: [{ providedIn: 'root' },] }
2776
2901
  ];
@@ -2827,10 +2952,17 @@ class LoadingScreenInterceptor {
2827
2952
  }
2828
2953
  ;
2829
2954
  }
2955
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
2830
2956
  LoadingScreenInterceptor.decorators = [
2831
2957
  { type: Injectable }
2832
2958
  ];
2833
- /** @nocollapse */
2959
+ /**
2960
+ * @type {function(): !Array<(null|{
2961
+ * type: ?,
2962
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
2963
+ * })>}
2964
+ * @nocollapse
2965
+ */
2834
2966
  LoadingScreenInterceptor.ctorParameters = () => [
2835
2967
  { type: LoadingScreenService }
2836
2968
  ];
@@ -3158,10 +3290,17 @@ class FileService extends GenericService {
3158
3290
  }
3159
3291
  }
3160
3292
  /** @nocollapse */ FileService.ɵprov = i0.ɵɵdefineInjectable({ factory: function FileService_Factory() { return new FileService(); }, token: FileService, providedIn: "root" });
3293
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3161
3294
  FileService.decorators = [
3162
3295
  { type: Injectable, args: [{ providedIn: 'root' },] }
3163
3296
  ];
3164
- /** @nocollapse */
3297
+ /**
3298
+ * @type {function(): !Array<(null|{
3299
+ * type: ?,
3300
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3301
+ * })>}
3302
+ * @nocollapse
3303
+ */
3165
3304
  FileService.ctorParameters = () => [];
3166
3305
 
3167
3306
  class PrintService {
@@ -3194,10 +3333,17 @@ class PrintService {
3194
3333
  }
3195
3334
  }
3196
3335
  /** @nocollapse */ PrintService.ɵprov = i0.ɵɵdefineInjectable({ factory: function PrintService_Factory() { return new PrintService(i0.ɵɵinject(i1$1.Router)); }, token: PrintService, providedIn: "root" });
3336
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3197
3337
  PrintService.decorators = [
3198
3338
  { type: Injectable, args: [{ providedIn: 'root' },] }
3199
3339
  ];
3200
- /** @nocollapse */
3340
+ /**
3341
+ * @type {function(): !Array<(null|{
3342
+ * type: ?,
3343
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3344
+ * })>}
3345
+ * @nocollapse
3346
+ */
3201
3347
  PrintService.ctorParameters = () => [
3202
3348
  { type: Router }
3203
3349
  ];
@@ -3206,6 +3352,7 @@ const DECLARATIONS$5 = [];
3206
3352
  const MATRIAL_DECLARATIONS$1 = [];
3207
3353
  class VdBaseModule {
3208
3354
  }
3355
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3209
3356
  VdBaseModule.decorators = [
3210
3357
  { type: NgModule, args: [{
3211
3358
  imports: [
@@ -3450,10 +3597,17 @@ class AbstractMatFormField extends mixinErrorState(_AbstractMatFormField) {
3450
3597
  * The element ID
3451
3598
  */
3452
3599
  AbstractMatFormField.nextId = 0;
3600
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3453
3601
  AbstractMatFormField.decorators = [
3454
3602
  { type: Directive }
3455
3603
  ];
3456
- /** @nocollapse */
3604
+ /**
3605
+ * @type {function(): !Array<(null|{
3606
+ * type: ?,
3607
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3608
+ * })>}
3609
+ * @nocollapse
3610
+ */
3457
3611
  AbstractMatFormField.ctorParameters = () => [
3458
3612
  { type: String },
3459
3613
  { type: NgControl },
@@ -3463,6 +3617,7 @@ AbstractMatFormField.ctorParameters = () => [
3463
3617
  { type: FocusMonitor },
3464
3618
  { type: ElementRef }
3465
3619
  ];
3620
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
3466
3621
  AbstractMatFormField.propDecorators = {
3467
3622
  placeholder: [{ type: Input }],
3468
3623
  required: [{ type: Input }],
@@ -3481,10 +3636,17 @@ class VdChipDirective extends CdkPortal {
3481
3636
  super(templateRef, viewContainerRef);
3482
3637
  }
3483
3638
  }
3639
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3484
3640
  VdChipDirective.decorators = [
3485
3641
  { type: Directive, args: [{ selector: '[vd-chip]ng-template' },] }
3486
3642
  ];
3487
- /** @nocollapse */
3643
+ /**
3644
+ * @type {function(): !Array<(null|{
3645
+ * type: ?,
3646
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3647
+ * })>}
3648
+ * @nocollapse
3649
+ */
3488
3650
  VdChipDirective.ctorParameters = () => [
3489
3651
  { type: TemplateRef },
3490
3652
  { type: ViewContainerRef }
@@ -3497,10 +3659,17 @@ class VdAutocompleteOptionDirective extends CdkPortal {
3497
3659
  super(templateRef, viewContainerRef);
3498
3660
  }
3499
3661
  }
3662
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3500
3663
  VdAutocompleteOptionDirective.decorators = [
3501
3664
  { type: Directive, args: [{ selector: '[vd-autocomplete-option]ng-template' },] }
3502
3665
  ];
3503
- /** @nocollapse */
3666
+ /**
3667
+ * @type {function(): !Array<(null|{
3668
+ * type: ?,
3669
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3670
+ * })>}
3671
+ * @nocollapse
3672
+ */
3504
3673
  VdAutocompleteOptionDirective.ctorParameters = () => [
3505
3674
  { type: TemplateRef },
3506
3675
  { type: ViewContainerRef }
@@ -3816,6 +3985,7 @@ class VdChipsComponent extends AbstractMatFormField {
3816
3985
  }
3817
3986
  }
3818
3987
  }
3988
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3819
3989
  VdChipsComponent.decorators = [
3820
3990
  { type: Component, args: [{
3821
3991
  selector: 'vd-chips',
@@ -3823,10 +3993,16 @@ VdChipsComponent.decorators = [
3823
3993
  providers: [
3824
3994
  { provide: MatFormFieldControl, useExisting: VdChipsComponent }
3825
3995
  ],
3826
- styles: [".mat-chip{display:flex;flex-direction:row;width:100%;padding:4px 5px}.mat-chip.mat-chip-disabled{color:rgba(0,0,0,.64)}.mat-chip .vd-chip-content{flex-grow:1!important;font-weight:400;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-chip .mat-icon{cursor:pointer;color:#000;color:initial;top:calc(50% - 13px);position:absolute;right:8px}.mat-chip .vd-chip-launch{font-size:18px;position:absolute;right:4px;top:0;cursor:pointer}.mat-chip .vd-chip-launch.removable{right:34px}mat-spinner{margin-top:-9px;margin-right:6px}"]
3996
+ styles: [".mat-chip{display:flex;flex-direction:row;width:100%;padding:4px 5px}.mat-chip.mat-chip-disabled{color:#000000a3}.mat-chip .vd-chip-content{flex-grow:1!important;font-weight:normal;font-weight:initial;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-chip .mat-icon{cursor:pointer;color:#000;color:initial;top:calc(50% - 13px);position:absolute;right:8px}.mat-chip .vd-chip-launch{font-size:18px;position:absolute;right:4px;top:0;cursor:pointer}.mat-chip .vd-chip-launch.removable{right:34px}mat-spinner{margin-top:-9px;margin-right:6px}\n"]
3827
3997
  },] }
3828
3998
  ];
3829
- /** @nocollapse */
3999
+ /**
4000
+ * @type {function(): !Array<(null|{
4001
+ * type: ?,
4002
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4003
+ * })>}
4004
+ * @nocollapse
4005
+ */
3830
4006
  VdChipsComponent.ctorParameters = () => [
3831
4007
  { type: Injector },
3832
4008
  { type: NgControl, decorators: [{ type: Optional }, { type: Self }] },
@@ -3836,6 +4012,7 @@ VdChipsComponent.ctorParameters = () => [
3836
4012
  { type: FocusMonitor },
3837
4013
  { type: ElementRef }
3838
4014
  ];
4015
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
3839
4016
  VdChipsComponent.propDecorators = {
3840
4017
  chipInput: [{ type: ViewChild, args: [MatInput, { static: true },] }],
3841
4018
  chips: [{ type: Input }],
@@ -3874,6 +4051,7 @@ const MATRIAL_DECLARATIONS = [
3874
4051
  ];
3875
4052
  class VdChipsModule {
3876
4053
  }
4054
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3877
4055
  VdChipsModule.decorators = [
3878
4056
  { type: NgModule, args: [{
3879
4057
  imports: [
@@ -3913,13 +4091,21 @@ class DisableControlDirective {
3913
4091
  }
3914
4092
  }
3915
4093
  }
4094
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3916
4095
  DisableControlDirective.decorators = [
3917
4096
  { type: Directive, args: [{ selector: '[disableControl]' },] }
3918
4097
  ];
3919
- /** @nocollapse */
4098
+ /**
4099
+ * @type {function(): !Array<(null|{
4100
+ * type: ?,
4101
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4102
+ * })>}
4103
+ * @nocollapse
4104
+ */
3920
4105
  DisableControlDirective.ctorParameters = () => [
3921
4106
  { type: NgControl }
3922
4107
  ];
4108
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
3923
4109
  DisableControlDirective.propDecorators = {
3924
4110
  disableControl: [{ type: Input }]
3925
4111
  };
@@ -3929,6 +4115,7 @@ class DataSourcePipe {
3929
4115
  return data ? new MatTableDataSource(data) : null;
3930
4116
  }
3931
4117
  }
4118
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3932
4119
  DataSourcePipe.decorators = [
3933
4120
  { type: Pipe, args: [{ name: 'dataSource' },] }
3934
4121
  ];
@@ -3943,6 +4130,7 @@ class EnumPipe {
3943
4130
  return `${prefix}${enumType[value]}${suffix}`;
3944
4131
  }
3945
4132
  }
4133
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3946
4134
  EnumPipe.decorators = [
3947
4135
  { type: Pipe, args: [{
3948
4136
  name: 'enum',
@@ -3979,6 +4167,7 @@ class FileSizePipe {
3979
4167
  return `${bytes.toFixed(precision[unit])} ${unit}`;
3980
4168
  }
3981
4169
  }
4170
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3982
4171
  FileSizePipe.decorators = [
3983
4172
  { type: Pipe, args: [{ name: 'fileSize' },] }
3984
4173
  ];
@@ -3994,6 +4183,7 @@ class FilterPipe {
3994
4183
  return items === null || items === void 0 ? void 0 : items.filter(item => item.id.indexOf(filterBy) !== -1);
3995
4184
  }
3996
4185
  }
4186
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3997
4187
  FilterPipe.decorators = [
3998
4188
  { type: Pipe, args: [{
3999
4189
  name: 'filter',
@@ -4012,6 +4202,7 @@ class FirstLetterPipe {
4012
4202
  return uppercase ? val.toUpperCase() : val;
4013
4203
  }
4014
4204
  }
4205
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4015
4206
  FirstLetterPipe.decorators = [
4016
4207
  { type: Pipe, args: [{
4017
4208
  name: 'firstLetter',
@@ -4029,6 +4220,7 @@ class KeysPipe {
4029
4220
  return keys;
4030
4221
  }
4031
4222
  }
4223
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4032
4224
  KeysPipe.decorators = [
4033
4225
  { type: Pipe, args: [{ name: 'keys' },] }
4034
4226
  ];
@@ -4048,6 +4240,7 @@ class MonthNamePipe {
4048
4240
  return (month < 1 || month > 12) ? 'N/A' : this.monthNames[month - 1];
4049
4241
  }
4050
4242
  }
4243
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4051
4244
  MonthNamePipe.decorators = [
4052
4245
  { type: Pipe, args: [{
4053
4246
  name: 'monthName',
@@ -4092,15 +4285,23 @@ class OnlyNumberDirective {
4092
4285
  }
4093
4286
  }
4094
4287
  }
4288
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4095
4289
  OnlyNumberDirective.decorators = [
4096
4290
  { type: Directive, args: [{
4097
4291
  selector: '[onlyNumber]'
4098
4292
  },] }
4099
4293
  ];
4100
- /** @nocollapse */
4294
+ /**
4295
+ * @type {function(): !Array<(null|{
4296
+ * type: ?,
4297
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4298
+ * })>}
4299
+ * @nocollapse
4300
+ */
4101
4301
  OnlyNumberDirective.ctorParameters = () => [
4102
4302
  { type: ElementRef }
4103
4303
  ];
4304
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
4104
4305
  OnlyNumberDirective.propDecorators = {
4105
4306
  onlyNumber: [{ type: Input }],
4106
4307
  onKeyDown: [{ type: HostListener, args: ['keydown', ['$event'],] }]
@@ -4277,6 +4478,7 @@ class OrderPipe {
4277
4478
  }, value);
4278
4479
  }
4279
4480
  }
4481
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4280
4482
  OrderPipe.decorators = [
4281
4483
  { type: Pipe, args: [{
4282
4484
  name: 'orderBy',
@@ -4297,6 +4499,7 @@ class PlaceholderPipe {
4297
4499
  return '';
4298
4500
  }
4299
4501
  }
4502
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4300
4503
  PlaceholderPipe.decorators = [
4301
4504
  { type: Pipe, args: [{
4302
4505
  name: 'placeholder',
@@ -4325,10 +4528,17 @@ class SafeHtmlPipe {
4325
4528
  return this.sanitizer.bypassSecurityTrustHtml(html);
4326
4529
  }
4327
4530
  }
4531
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4328
4532
  SafeHtmlPipe.decorators = [
4329
4533
  { type: Pipe, args: [{ name: 'safeHtml' },] }
4330
4534
  ];
4331
- /** @nocollapse */
4535
+ /**
4536
+ * @type {function(): !Array<(null|{
4537
+ * type: ?,
4538
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4539
+ * })>}
4540
+ * @nocollapse
4541
+ */
4332
4542
  SafeHtmlPipe.ctorParameters = () => [
4333
4543
  { type: DomSanitizer }
4334
4544
  ];
@@ -4344,6 +4554,7 @@ class TimePipe {
4344
4554
  return time;
4345
4555
  }
4346
4556
  }
4557
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4347
4558
  TimePipe.decorators = [
4348
4559
  { type: Pipe, args: [{ name: 'time' },] }
4349
4560
  ];
@@ -4353,6 +4564,7 @@ class TitleCase {
4353
4564
  return input.length > 0 ? input.replace(/\w\S*/g, (txt => txt[0].toUpperCase() + txt.substr(1).toLowerCase())) : '';
4354
4565
  }
4355
4566
  }
4567
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4356
4568
  TitleCase.decorators = [
4357
4569
  { type: Pipe, args: [{ name: 'titlecase', pure: false },] }
4358
4570
  ];
@@ -4362,6 +4574,7 @@ class TruncatePipe {
4362
4574
  return Utils.truncateText(text, length);
4363
4575
  }
4364
4576
  }
4577
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4365
4578
  TruncatePipe.decorators = [
4366
4579
  { type: Pipe, args: [{ name: 'truncate' },] }
4367
4580
  ];
@@ -4371,6 +4584,7 @@ class ValuesPipe {
4371
4584
  return Object.keys(value).map(key => value[key]);
4372
4585
  }
4373
4586
  }
4587
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4374
4588
  ValuesPipe.decorators = [
4375
4589
  { type: Pipe, args: [{ name: 'values', pure: false },] }
4376
4590
  ];
@@ -4483,10 +4697,17 @@ class BaseService extends GenericService {
4483
4697
  }
4484
4698
  }
4485
4699
  /** @nocollapse */ BaseService.ɵprov = i0.ɵɵdefineInjectable({ factory: function BaseService_Factory() { return new BaseService(); }, token: BaseService, providedIn: "root" });
4700
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4486
4701
  BaseService.decorators = [
4487
4702
  { type: Injectable, args: [{ providedIn: 'root' },] }
4488
4703
  ];
4489
- /** @nocollapse */
4704
+ /**
4705
+ * @type {function(): !Array<(null|{
4706
+ * type: ?,
4707
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4708
+ * })>}
4709
+ * @nocollapse
4710
+ */
4490
4711
  BaseService.ctorParameters = () => [];
4491
4712
 
4492
4713
  //@dynamic
@@ -4525,6 +4746,7 @@ class EnumService {
4525
4746
  .map(key => ({ id: enumType[key], name: `${prefix}${key}` }));
4526
4747
  }
4527
4748
  }
4749
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4528
4750
  EnumService.decorators = [
4529
4751
  { type: Injectable }
4530
4752
  ];
@@ -4562,6 +4784,7 @@ const COMMON_DECLARATIONS = [
4562
4784
  ];
4563
4785
  class VdCommonModule {
4564
4786
  }
4787
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4565
4788
  VdCommonModule.decorators = [
4566
4789
  { type: NgModule, args: [{
4567
4790
  imports: [],
@@ -4573,16 +4796,19 @@ VdCommonModule.decorators = [
4573
4796
 
4574
4797
  class VdDialogTitleDirective {
4575
4798
  }
4799
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4576
4800
  VdDialogTitleDirective.decorators = [
4577
4801
  { type: Directive, args: [{ selector: 'vd-dialog-title' },] }
4578
4802
  ];
4579
4803
  class VdDialogContentDirective {
4580
4804
  }
4805
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4581
4806
  VdDialogContentDirective.decorators = [
4582
4807
  { type: Directive, args: [{ selector: 'vd-dialog-content' },] }
4583
4808
  ];
4584
4809
  class VdDialogActionsDirective {
4585
4810
  }
4811
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4586
4812
  VdDialogActionsDirective.decorators = [
4587
4813
  { type: Directive, args: [{ selector: 'vd-dialog-actions' },] }
4588
4814
  ];
@@ -4599,13 +4825,15 @@ class VdDialogComponent {
4599
4825
  }
4600
4826
  }
4601
4827
  }
4828
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4602
4829
  VdDialogComponent.decorators = [
4603
4830
  { type: Component, args: [{
4604
4831
  selector: 'vd-dialog',
4605
4832
  template: "<div class=\"vd-dialog-wrapper\">\r\n\t<h3 class=\"vd-dialog-title md-title\" *ngIf=\"dialogTitle.length > 0\">\r\n\t\t<ng-content select=\"vd-dialog-title\"></ng-content>\r\n\t</h3>\r\n\t<div class=\"vd-dialog-content\" *ngIf=\"dialogContent.length > 0\">\r\n\t\t<ng-content select=\"vd-dialog-content\"></ng-content>\r\n\t</div>\r\n\t<div class=\"vd-dialog-actions\" *ngIf=\"dialogActions.length > 0\" layout=\"row\">\r\n\t\t<span flex></span>\r\n\t\t<ng-content select=\"vd-dialog-actions\"></ng-content>\r\n\t</div>\r\n</div>",
4606
- styles: [".vd-dialog-title{margin-top:0;margin-bottom:20px}.vd-dialog-content{margin-bottom:16px}.vd-dialog-actions{position:relative;top:16px;left:16px}::ng-deep [dir=rtl] .vd-dialog-actions{right:16px;left:auto}:host{display:block}:host .vd-dialog-actions ::ng-deep button{text-transform:uppercase;margin-left:8px;padding-left:8px;padding-right:8px;min-width:64px}[dir=rtl] :host .vd-dialog-actions ::ng-deep button{margin-right:8px;margin-left:inherit}"]
4833
+ styles: [".vd-dialog-title{margin-top:0;margin-bottom:20px}.vd-dialog-content{margin-bottom:16px}.vd-dialog-actions{position:relative;top:16px;left:16px}::ng-deep [dir=rtl] .vd-dialog-actions{right:16px;left:auto}:host{display:block}:host .vd-dialog-actions ::ng-deep button{text-transform:uppercase;margin-left:8px;padding-left:8px;padding-right:8px;min-width:64px}[dir=rtl] :host .vd-dialog-actions ::ng-deep button{margin-right:8px;margin-left:inherit}\n"]
4607
4834
  },] }
4608
4835
  ];
4836
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
4609
4837
  VdDialogComponent.propDecorators = {
4610
4838
  dialogTitle: [{ type: ContentChildren, args: [VdDialogTitleDirective,] }],
4611
4839
  dialogContent: [{ type: ContentChildren, args: [VdDialogContentDirective,] }],
@@ -4628,6 +4856,7 @@ const VD_DIALOGS_ENTRY_COMPONENTS = [
4628
4856
  ];
4629
4857
  class VdDialogsModule {
4630
4858
  }
4859
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4631
4860
  VdDialogsModule.decorators = [
4632
4861
  { type: NgModule, args: [{
4633
4862
  imports: [
@@ -4887,6 +5116,7 @@ class VdFileInputComponent {
4887
5116
  this.fm.stopMonitoring(this._elementRef.nativeElement);
4888
5117
  }
4889
5118
  }
5119
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4890
5120
  VdFileInputComponent.decorators = [
4891
5121
  { type: Component, args: [{
4892
5122
  selector: '[vd-file-input]',
@@ -4914,7 +5144,13 @@ VdFileInputComponent.decorators = [
4914
5144
  }`]
4915
5145
  },] }
4916
5146
  ];
4917
- /** @nocollapse */
5147
+ /**
5148
+ * @type {function(): !Array<(null|{
5149
+ * type: ?,
5150
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
5151
+ * })>}
5152
+ * @nocollapse
5153
+ */
4918
5154
  VdFileInputComponent.ctorParameters = () => [
4919
5155
  { type: NgControl },
4920
5156
  { type: FocusMonitor },
@@ -4922,6 +5158,7 @@ VdFileInputComponent.ctorParameters = () => [
4922
5158
  { type: Renderer2 },
4923
5159
  { type: ChangeDetectorRef }
4924
5160
  ];
5161
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
4925
5162
  VdFileInputComponent.propDecorators = {
4926
5163
  accept: [{ type: Input, args: ['accept',] }],
4927
5164
  onSelect: [{ type: Output, args: ['select',] }],
@@ -4940,6 +5177,7 @@ VdFileInputComponent.propDecorators = {
4940
5177
 
4941
5178
  class VdFileModule {
4942
5179
  }
5180
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4943
5181
  VdFileModule.decorators = [
4944
5182
  { type: NgModule, args: [{
4945
5183
  imports: [
@@ -9148,9 +9386,11 @@ class BaseDirective {
9148
9386
  });
9149
9387
  }
9150
9388
  }
9389
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
9151
9390
  BaseDirective.decorators = [
9152
9391
  { type: Directive }
9153
9392
  ];
9393
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
9154
9394
  BaseDirective.propDecorators = {
9155
9395
  model: [{ type: Input }]
9156
9396
  };
@@ -9161,15 +9401,23 @@ class HtmlControlTemplateDirective {
9161
9401
  }
9162
9402
  ;
9163
9403
  }
9404
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
9164
9405
  HtmlControlTemplateDirective.decorators = [
9165
9406
  { type: Directive, args: [{
9166
9407
  selector: '[htmlControlTemplate]'
9167
9408
  },] }
9168
9409
  ];
9169
- /** @nocollapse */
9410
+ /**
9411
+ * @type {function(): !Array<(null|{
9412
+ * type: ?,
9413
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
9414
+ * })>}
9415
+ * @nocollapse
9416
+ */
9170
9417
  HtmlControlTemplateDirective.ctorParameters = () => [
9171
9418
  { type: TemplateRef }
9172
9419
  ];
9420
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
9173
9421
  HtmlControlTemplateDirective.propDecorators = {
9174
9422
  type: [{ type: Input, args: ['htmlControlTemplate',] }]
9175
9423
  };
@@ -9345,11 +9593,13 @@ class RxwebFormDirective extends BaseDirective {
9345
9593
  ngOnDestroy() {
9346
9594
  }
9347
9595
  }
9596
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
9348
9597
  RxwebFormDirective.decorators = [
9349
9598
  { type: Directive, args: [{
9350
9599
  selector: '[formGroup],[rxwebForm]',
9351
9600
  },] }
9352
9601
  ];
9602
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
9353
9603
  RxwebFormDirective.propDecorators = {
9354
9604
  formGroup: [{ type: Input }],
9355
9605
  ngForm: [{ type: Input, args: ['rxwebForm',] }]
@@ -9362,6 +9612,7 @@ class AsyncValidationDirective {
9362
9612
  return of(null);
9363
9613
  }
9364
9614
  }
9615
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
9365
9616
  AsyncValidationDirective.decorators = [
9366
9617
  { type: Directive, args: [{
9367
9618
  selector: '[ngModel],[formControlName],[formControl]',
@@ -9372,6 +9623,7 @@ AsyncValidationDirective.decorators = [
9372
9623
  }]
9373
9624
  },] }
9374
9625
  ];
9626
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
9375
9627
  AsyncValidationDirective.propDecorators = {
9376
9628
  async: [{ type: Input }]
9377
9629
  };
@@ -9433,6 +9685,7 @@ class FileControlDirective {
9433
9685
  return result;
9434
9686
  }
9435
9687
  }
9688
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
9436
9689
  FileControlDirective.decorators = [
9437
9690
  { type: Directive, args: [{
9438
9691
  selector: "input[type=file]",
@@ -9447,10 +9700,17 @@ FileControlDirective.decorators = [
9447
9700
  }]
9448
9701
  },] }
9449
9702
  ];
9450
- /** @nocollapse */
9703
+ /**
9704
+ * @type {function(): !Array<(null|{
9705
+ * type: ?,
9706
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
9707
+ * })>}
9708
+ * @nocollapse
9709
+ */
9451
9710
  FileControlDirective.ctorParameters = () => [
9452
9711
  { type: ElementRef }
9453
9712
  ];
9713
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
9454
9714
  FileControlDirective.propDecorators = {
9455
9715
  writeFile: [{ type: Input }],
9456
9716
  extension: [{ type: Input }],
@@ -9483,6 +9743,7 @@ class ImageFileControlDirective {
9483
9743
  return of(null);
9484
9744
  }
9485
9745
  }
9746
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
9486
9747
  ImageFileControlDirective.decorators = [
9487
9748
  { type: Directive, args: [{
9488
9749
  selector: "input[type=file]",
@@ -9493,10 +9754,17 @@ ImageFileControlDirective.decorators = [
9493
9754
  }]
9494
9755
  },] }
9495
9756
  ];
9496
- /** @nocollapse */
9757
+ /**
9758
+ * @type {function(): !Array<(null|{
9759
+ * type: ?,
9760
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
9761
+ * })>}
9762
+ * @nocollapse
9763
+ */
9497
9764
  ImageFileControlDirective.ctorParameters = () => [
9498
9765
  { type: ElementRef }
9499
9766
  ];
9767
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
9500
9768
  ImageFileControlDirective.propDecorators = {
9501
9769
  image: [{ type: Input }]
9502
9770
  };
@@ -9544,10 +9812,17 @@ class DecimalProvider {
9544
9812
  this.isSetConfig = true;
9545
9813
  }
9546
9814
  }
9815
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
9547
9816
  DecimalProvider.decorators = [
9548
9817
  { type: Injectable }
9549
9818
  ];
9550
- /** @nocollapse */
9819
+ /**
9820
+ * @type {function(): !Array<(null|{
9821
+ * type: ?,
9822
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
9823
+ * })>}
9824
+ * @nocollapse
9825
+ */
9551
9826
  DecimalProvider.ctorParameters = () => [
9552
9827
  { type: DecimalPipe },
9553
9828
  { type: String, decorators: [{ type: Inject, args: [LOCALE_ID,] }] }
@@ -9993,9 +10268,11 @@ class ControlExpressionProcess {
9993
10268
  }
9994
10269
  }
9995
10270
  }
10271
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
9996
10272
  ControlExpressionProcess.decorators = [
9997
10273
  { type: Directive }
9998
10274
  ];
10275
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
9999
10276
  ControlExpressionProcess.propDecorators = {
10000
10277
  name: [{ type: Input }],
10001
10278
  formControlName: [{ type: Input }]
@@ -10031,9 +10308,11 @@ class BaseValidator extends ControlExpressionProcess {
10031
10308
  this.eventName = eventName.toLowerCase();
10032
10309
  }
10033
10310
  }
10311
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
10034
10312
  BaseValidator.decorators = [
10035
10313
  { type: Directive }
10036
10314
  ];
10315
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
10037
10316
  BaseValidator.propDecorators = {
10038
10317
  formControl: [{ type: Input }]
10039
10318
  };
@@ -10191,18 +10470,26 @@ class RxFormControlDirective extends BaseValidator {
10191
10470
  this.maskProvider.onDestroy();
10192
10471
  }
10193
10472
  }
10473
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
10194
10474
  RxFormControlDirective.decorators = [
10195
10475
  { type: Directive, args: [{
10196
10476
  selector: '[ngModel],[formControlName],[formControl]',
10197
10477
  providers: [NGMODEL_BINDING],
10198
10478
  },] }
10199
10479
  ];
10200
- /** @nocollapse */
10480
+ /**
10481
+ * @type {function(): !Array<(null|{
10482
+ * type: ?,
10483
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
10484
+ * })>}
10485
+ * @nocollapse
10486
+ */
10201
10487
  RxFormControlDirective.ctorParameters = () => [
10202
10488
  { type: ElementRef },
10203
10489
  { type: Renderer2 },
10204
10490
  { type: DecimalProvider }
10205
10491
  ];
10492
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
10206
10493
  RxFormControlDirective.propDecorators = {
10207
10494
  rxalpha: [{ type: Input }],
10208
10495
  rxalphaNumeric: [{ type: Input }],
@@ -10288,15 +10575,23 @@ class ControlHostDirective {
10288
10575
  this.viewContainerRef.clear();
10289
10576
  }
10290
10577
  }
10578
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
10291
10579
  ControlHostDirective.decorators = [
10292
10580
  { type: Directive, args: [{
10293
10581
  selector: '[controlHost]'
10294
10582
  },] }
10295
10583
  ];
10296
- /** @nocollapse */
10584
+ /**
10585
+ * @type {function(): !Array<(null|{
10586
+ * type: ?,
10587
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
10588
+ * })>}
10589
+ * @nocollapse
10590
+ */
10297
10591
  ControlHostDirective.ctorParameters = () => [
10298
10592
  { type: ViewContainerRef }
10299
10593
  ];
10594
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
10300
10595
  ControlHostDirective.propDecorators = {
10301
10596
  portal: [{ type: Input, args: ['controlHost',] }]
10302
10597
  };
@@ -10999,10 +11294,17 @@ class RxFormBuilder extends BaseFormBuilder {
10999
11294
  });
11000
11295
  }
11001
11296
  }
11297
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11002
11298
  RxFormBuilder.decorators = [
11003
11299
  { type: Injectable }
11004
11300
  ];
11005
- /** @nocollapse */
11301
+ /**
11302
+ * @type {function(): !Array<(null|{
11303
+ * type: ?,
11304
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
11305
+ * })>}
11306
+ * @nocollapse
11307
+ */
11006
11308
  RxFormBuilder.ctorParameters = () => [];
11007
11309
 
11008
11310
  class TypedFormBuilder {
@@ -11017,15 +11319,23 @@ class TypedFormBuilder {
11017
11319
  return this.formBuilder.group(controlsConfig, options);
11018
11320
  }
11019
11321
  }
11322
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11020
11323
  TypedFormBuilder.decorators = [
11021
11324
  { type: Injectable }
11022
11325
  ];
11023
- /** @nocollapse */
11326
+ /**
11327
+ * @type {function(): !Array<(null|{
11328
+ * type: ?,
11329
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
11330
+ * })>}
11331
+ * @nocollapse
11332
+ */
11024
11333
  TypedFormBuilder.ctorParameters = () => [];
11025
11334
 
11026
11335
  class RxReactiveFormsModule {
11027
11336
  static forRoot() { return { ngModule: RxReactiveFormsModule, providers: [] }; }
11028
11337
  }
11338
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11029
11339
  RxReactiveFormsModule.decorators = [
11030
11340
  { type: NgModule, args: [{
11031
11341
  declarations: [RxwebFormDirective, HtmlControlTemplateDirective, ControlHostDirective, RxFormControlDirective, FileControlDirective, ImageFileControlDirective, AsyncValidationDirective],
@@ -11042,6 +11352,7 @@ class ReactiveTypedFormsModule {
11042
11352
  }
11043
11353
  static forRoot() { return { ngModule: ReactiveTypedFormsModule, providers: [] }; }
11044
11354
  }
11355
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11045
11356
  ReactiveTypedFormsModule.decorators = [
11046
11357
  { type: NgModule, args: [{
11047
11358
  declarations: [],
@@ -11050,7 +11361,13 @@ ReactiveTypedFormsModule.decorators = [
11050
11361
  exports: [ReactiveFormsModule, FormsModule, ReactiveFormsModule]
11051
11362
  },] }
11052
11363
  ];
11053
- /** @nocollapse */
11364
+ /**
11365
+ * @type {function(): !Array<(null|{
11366
+ * type: ?,
11367
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
11368
+ * })>}
11369
+ * @nocollapse
11370
+ */
11054
11371
  ReactiveTypedFormsModule.ctorParameters = () => [];
11055
11372
 
11056
11373
  function baseValidator(config, type, validator) {
@@ -11581,10 +11898,17 @@ class VdSelectOptionDirective extends CdkPortal {
11581
11898
  super(templateRef, viewContainerRef);
11582
11899
  }
11583
11900
  }
11901
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11584
11902
  VdSelectOptionDirective.decorators = [
11585
11903
  { type: Directive, args: [{ selector: '[vd-select-option]ng-template' },] }
11586
11904
  ];
11587
- /** @nocollapse */
11905
+ /**
11906
+ * @type {function(): !Array<(null|{
11907
+ * type: ?,
11908
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
11909
+ * })>}
11910
+ * @nocollapse
11911
+ */
11588
11912
  VdSelectOptionDirective.ctorParameters = () => [
11589
11913
  { type: TemplateRef },
11590
11914
  { type: ViewContainerRef }
@@ -11886,15 +12210,22 @@ class VdSelectComponent extends AbstractMatFormField {
11886
12210
  this.filteredOptions = this.options.filter((x) => { var _a; return ((_a = x[this.text]) === null || _a === void 0 ? void 0 : _a.toLowerCase().search(searchText)) > -1; });
11887
12211
  }
11888
12212
  }
12213
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11889
12214
  VdSelectComponent.decorators = [
11890
12215
  { type: Component, args: [{
11891
12216
  selector: 'vd-select',
11892
12217
  template: "<mat-select [placeholder]=\"placeholder\" i18n-placeholder [(ngModel)]=\"value\" #select=\"matSelect\" (selectionChange)=\"handleChange($event)\" *ngIf=\"!readonly\" [multiple]=\"multiple\" [disabled]=\"disabled\" flex>\r\n <input #filterInput *ngIf=\"filterable\" type=\"text\" placeholder=\"Filter...\" class=\"vd-select-filter\" (keyup)=\"handleFilter($event.target.value)\">\r\n <mat-select-trigger *ngIf=\"onLaunch?.observers?.length > 0\">\r\n <span>{{select.selected?select.selected['viewValue']:''}}</span>\r\n <mat-icon class=\"vd-select-launch\" (click)=\"$event.stopPropagation(); handleLaunchClicked(value)\">launch</mat-icon>\r\n </mat-select-trigger>\r\n <mat-option class=\"tc-grey-500\" *ngIf=\"!multiple\" i18n=\"@@pleaseSelect\">--- Please Select ---</mat-option>\r\n <ng-template let-option let-first=\"first\" ngFor [ngForOf]=\"filteredOptions\">\r\n <mat-option [value]=\"option[key]\">\r\n <span *ngIf=\"!optionTemplate?.templateRef\" i18n=\"@@selection\">{option[text], select, option {option} other {{{option[text]}}}}</span>\r\n <ng-template *ngIf=\"optionTemplate?.templateRef\" [ngTemplateOutlet]=\"optionTemplate?.templateRef\" [ngTemplateOutletContext]=\"{ option: option }\"></ng-template>\r\n </mat-option>\r\n </ng-template>\r\n</mat-select>\r\n\r\n<div *ngIf=\"readonly\">\r\n <div *ngIf=\"currentValue\">\r\n <div class=\"readonly-value\">\r\n <span *ngIf=\"!optionTemplate?.templateRef\" i18n=\"@@selection\">{currentValue[text], select, option {option} other {{{currentValue[text]}}}}</span>\r\n <ng-template *ngIf=\"optionTemplate?.templateRef\" [ngTemplateOutlet]=\"optionTemplate?.templateRef\" [ngTemplateOutletContext]=\"{ option: currentValue }\"></ng-template>\r\n </div>\r\n <mat-icon *ngIf=\"onLaunch?.observers?.length > 0\" class=\"vd-select-launch-readonly\" (click)=\"$event.stopPropagation(); handleLaunchClicked(value)\">launch</mat-icon>\r\n </div>\r\n <div *ngIf=\"!currentValue\">&nbsp;</div>\r\n</div>",
11893
12218
  providers: [{ provide: MatFormFieldControl, useExisting: VdSelectComponent }],
11894
- styles: [".vd-select-launch{position:absolute;right:30px;top:-5px;font-size:18px;cursor:pointer}.readonly-value{padding-right:24px;color:rgba(0,0,0,.64);min-height:15px}.vd-select-launch-readonly{position:absolute;right:0;top:9px;font-size:18px;cursor:pointer}.vd-select-filter{position:sticky;top:0;z-index:100;font-size:inherit;box-shadow:none;border-radius:0;padding:16px;box-sizing:border-box;border:none;border-bottom:1px solid #dcdcdc;width:100%;background-color:#f5f5f5;outline:none}"]
12219
+ styles: [".vd-select-launch{position:absolute;right:30px;top:-5px;font-size:18px;cursor:pointer}.readonly-value{padding-right:24px;color:#000000a3;min-height:15px}.vd-select-launch-readonly{position:absolute;right:0px;top:9px;font-size:18px;cursor:pointer}.vd-select-filter{position:-webkit-sticky;position:sticky;top:0;z-index:100;font-size:inherit;box-shadow:none;border-radius:0;padding:16px;box-sizing:border-box;border:none;border-bottom:1px solid #dcdcdc;width:100%;background-color:#f5f5f5;outline:none}\n"]
11895
12220
  },] }
11896
12221
  ];
11897
- /** @nocollapse */
12222
+ /**
12223
+ * @type {function(): !Array<(null|{
12224
+ * type: ?,
12225
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12226
+ * })>}
12227
+ * @nocollapse
12228
+ */
11898
12229
  VdSelectComponent.ctorParameters = () => [
11899
12230
  { type: Injector },
11900
12231
  { type: NgControl, decorators: [{ type: Optional }, { type: Self }] },
@@ -11904,6 +12235,7 @@ VdSelectComponent.ctorParameters = () => [
11904
12235
  { type: FocusMonitor },
11905
12236
  { type: ElementRef }
11906
12237
  ];
12238
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
11907
12239
  VdSelectComponent.propDecorators = {
11908
12240
  optionTemplate: [{ type: ContentChild, args: [VdSelectOptionDirective,] }],
11909
12241
  selectEl: [{ type: ViewChild, args: [MatSelect, { static: false },] }],
@@ -11937,6 +12269,7 @@ const EXPORTED_DECLARATIONS = [
11937
12269
  ];
11938
12270
  class VdSelectModule {
11939
12271
  }
12272
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11940
12273
  VdSelectModule.decorators = [
11941
12274
  { type: NgModule, args: [{
11942
12275
  imports: [
@@ -11977,10 +12310,17 @@ class VdEditorDirective extends CdkPortal {
11977
12310
  super(templateRef, viewContainerRef);
11978
12311
  }
11979
12312
  }
12313
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11980
12314
  VdEditorDirective.decorators = [
11981
12315
  { type: Directive, args: [{ selector: '[vd-editor]ng-template' },] }
11982
12316
  ];
11983
- /** @nocollapse */
12317
+ /**
12318
+ * @type {function(): !Array<(null|{
12319
+ * type: ?,
12320
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12321
+ * })>}
12322
+ * @nocollapse
12323
+ */
11984
12324
  VdEditorDirective.ctorParameters = () => [
11985
12325
  { type: TemplateRef },
11986
12326
  { type: ViewContainerRef }
@@ -11993,10 +12333,17 @@ class VdCodeDirective extends CdkPortal {
11993
12333
  super(templateRef, viewContainerRef);
11994
12334
  }
11995
12335
  }
12336
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11996
12337
  VdCodeDirective.decorators = [
11997
12338
  { type: Directive, args: [{ selector: '[vd-code]ng-template' },] }
11998
12339
  ];
11999
- /** @nocollapse */
12340
+ /**
12341
+ * @type {function(): !Array<(null|{
12342
+ * type: ?,
12343
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12344
+ * })>}
12345
+ * @nocollapse
12346
+ */
12000
12347
  VdCodeDirective.ctorParameters = () => [
12001
12348
  { type: TemplateRef },
12002
12349
  { type: ViewContainerRef }
@@ -12009,10 +12356,17 @@ class VdFileDirective extends CdkPortal {
12009
12356
  super(templateRef, viewContainerRef);
12010
12357
  }
12011
12358
  }
12359
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12012
12360
  VdFileDirective.decorators = [
12013
12361
  { type: Directive, args: [{ selector: '[vd-file]ng-template' },] }
12014
12362
  ];
12015
- /** @nocollapse */
12363
+ /**
12364
+ * @type {function(): !Array<(null|{
12365
+ * type: ?,
12366
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12367
+ * })>}
12368
+ * @nocollapse
12369
+ */
12016
12370
  VdFileDirective.ctorParameters = () => [
12017
12371
  { type: TemplateRef },
12018
12372
  { type: ViewContainerRef }
@@ -12025,10 +12379,17 @@ class VdCustomDirective extends CdkPortal {
12025
12379
  super(templateRef, viewContainerRef);
12026
12380
  }
12027
12381
  }
12382
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12028
12383
  VdCustomDirective.decorators = [
12029
12384
  { type: Directive, args: [{ selector: '[vd-custom]ng-template' },] }
12030
12385
  ];
12031
- /** @nocollapse */
12386
+ /**
12387
+ * @type {function(): !Array<(null|{
12388
+ * type: ?,
12389
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12390
+ * })>}
12391
+ * @nocollapse
12392
+ */
12032
12393
  VdCustomDirective.ctorParameters = () => [
12033
12394
  { type: TemplateRef },
12034
12395
  { type: ViewContainerRef }
@@ -12052,6 +12413,7 @@ class VdGenericFormComponent {
12052
12413
  this.fieldRows = (_b = (_a = this.fieldGroups) === null || _a === void 0 ? void 0 : _a.filter(x => { var _a, _b; return ((_a = x.name) === null || _a === void 0 ? void 0 : _a.trim()) == ((_b = this.groupName) === null || _b === void 0 ? void 0 : _b.trim()); })[0]) === null || _b === void 0 ? void 0 : _b.groups;
12053
12414
  }
12054
12415
  }
12416
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12055
12417
  VdGenericFormComponent.decorators = [
12056
12418
  { type: Component, args: [{
12057
12419
  selector: 'vd-generic-form',
@@ -12059,6 +12421,7 @@ VdGenericFormComponent.decorators = [
12059
12421
  styles: [""]
12060
12422
  },] }
12061
12423
  ];
12424
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
12062
12425
  VdGenericFormComponent.propDecorators = {
12063
12426
  formGroup: [{ type: Input }],
12064
12427
  fieldGroups: [{ type: Input }],
@@ -12088,13 +12451,20 @@ class MatFormFieldReadonlyDirective {
12088
12451
  return false;
12089
12452
  }
12090
12453
  }
12454
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12091
12455
  MatFormFieldReadonlyDirective.decorators = [
12092
12456
  { type: Directive, args: [{
12093
12457
  selector: 'mat-form-field',
12094
12458
  host: { '[class.mat-form-field-readonly]': 'isReadonlyInput()' }
12095
12459
  },] }
12096
12460
  ];
12097
- /** @nocollapse */
12461
+ /**
12462
+ * @type {function(): !Array<(null|{
12463
+ * type: ?,
12464
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12465
+ * })>}
12466
+ * @nocollapse
12467
+ */
12098
12468
  MatFormFieldReadonlyDirective.ctorParameters = () => [
12099
12469
  { type: MatFormField }
12100
12470
  ];
@@ -12147,6 +12517,7 @@ class EqualValidator {
12147
12517
  return null;
12148
12518
  }
12149
12519
  }
12520
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12150
12521
  EqualValidator.decorators = [
12151
12522
  { type: Directive, args: [{
12152
12523
  selector: '[validateEqual][formControlName],[validateEqual][formControl],[validateEqual][ngModel]',
@@ -12159,7 +12530,13 @@ EqualValidator.decorators = [
12159
12530
  ]
12160
12531
  },] }
12161
12532
  ];
12162
- /** @nocollapse */
12533
+ /**
12534
+ * @type {function(): !Array<(null|{
12535
+ * type: ?,
12536
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12537
+ * })>}
12538
+ * @nocollapse
12539
+ */
12163
12540
  EqualValidator.ctorParameters = () => [
12164
12541
  { type: String, decorators: [{ type: Attribute, args: ['validateEqual',] }] },
12165
12542
  { type: String, decorators: [{ type: Attribute, args: ['reverse',] }] }
@@ -12184,10 +12561,17 @@ class NativeElementInjectorDirective {
12184
12561
  }
12185
12562
  }
12186
12563
  }
12564
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12187
12565
  NativeElementInjectorDirective.decorators = [
12188
12566
  { type: Directive, args: [{ selector: '[ngModel]' },] }
12189
12567
  ];
12190
- /** @nocollapse */
12568
+ /**
12569
+ * @type {function(): !Array<(null|{
12570
+ * type: ?,
12571
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12572
+ * })>}
12573
+ * @nocollapse
12574
+ */
12191
12575
  NativeElementInjectorDirective.ctorParameters = () => [
12192
12576
  { type: ElementRef },
12193
12577
  { type: NgControl },
@@ -12241,17 +12625,25 @@ class UniqueValidatorDirective {
12241
12625
  }));
12242
12626
  }
12243
12627
  }
12628
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12244
12629
  UniqueValidatorDirective.decorators = [
12245
12630
  { type: Directive, args: [{
12246
12631
  selector: '[unique]',
12247
12632
  providers: [{ provide: NG_ASYNC_VALIDATORS, useExisting: UniqueValidatorDirective, multi: true }]
12248
12633
  },] }
12249
12634
  ];
12250
- /** @nocollapse */
12635
+ /**
12636
+ * @type {function(): !Array<(null|{
12637
+ * type: ?,
12638
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12639
+ * })>}
12640
+ * @nocollapse
12641
+ */
12251
12642
  UniqueValidatorDirective.ctorParameters = () => [
12252
12643
  { type: HttpClient },
12253
12644
  { type: String, decorators: [{ type: Attribute, args: ['unique',] }] }
12254
12645
  ];
12646
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
12255
12647
  UniqueValidatorDirective.propDecorators = {
12256
12648
  uniqueProperty: [{ type: Input }],
12257
12649
  uniqueId: [{ type: Input }],
@@ -12550,9 +12942,11 @@ class ValueAccessorBase extends MatFormFieldControl {
12550
12942
  this.stateChanges.complete();
12551
12943
  }
12552
12944
  }
12945
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12553
12946
  ValueAccessorBase.decorators = [
12554
12947
  { type: Directive }
12555
12948
  ];
12949
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
12556
12950
  ValueAccessorBase.propDecorators = {
12557
12951
  describedBy: [{ type: HostBinding, args: ['attr.aria-describedby',] }]
12558
12952
  };
@@ -12570,6 +12964,7 @@ const DECLARATIONS$3 = [
12570
12964
  ];
12571
12965
  class VdFormsModule {
12572
12966
  }
12967
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12573
12968
  VdFormsModule.decorators = [
12574
12969
  { type: NgModule, args: [{
12575
12970
  imports: [
@@ -12596,6 +12991,7 @@ VdFormsModule.decorators = [
12596
12991
 
12597
12992
  class VdHttpModule {
12598
12993
  }
12994
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12599
12995
  VdHttpModule.decorators = [
12600
12996
  { type: NgModule, args: [{
12601
12997
  imports: [
@@ -12622,13 +13018,15 @@ class VdLayoutCardOverComponent {
12622
13018
  this.color = 'primary';
12623
13019
  }
12624
13020
  }
13021
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12625
13022
  VdLayoutCardOverComponent.decorators = [
12626
13023
  { type: Component, args: [{
12627
13024
  selector: 'vd-layout-card-over',
12628
13025
  template: "<mat-toolbar [color]=\"color\"></mat-toolbar>\r\n<div class=\"vd-layout-card-over-wrapper\">\r\n\t<div class=\"vd-layout-card-over\" [style.max-width.%]=\"cardWidth\" [style.flex]=\"'1 1 ' + cardWidth + '%'\" [style.-ms-flex]=\"'1 1 ' + cardWidth + '%'\"\r\n\t [style.-webkit-box-flex]=\"1\">\r\n\t\t<mat-card>\r\n\t\t\t<mat-card-title *ngIf=\"cardTitle\">{{cardTitle}}</mat-card-title>\r\n\t\t\t<mat-card-subtitle *ngIf=\"cardSubtitle\">{{cardSubtitle}}</mat-card-subtitle>\r\n\t\t\t<mat-divider *ngIf=\"cardTitle || cardSubtitle\"></mat-divider>\r\n\t\t\t<ng-content></ng-content>\r\n\t\t</mat-card>\r\n\t\t<ng-content select=\"[vd-after-card]\"></ng-content>\r\n\t</div>\r\n</div>",
12629
- styles: [":host{position:relative;display:block;z-index:2;width:100%;min-height:100%;height:100%}:host [vd-after-card]{display:block}.vd-layout-card-over-wrapper{margin:-64px 0;width:100%;min-height:100%;height:100%}@media (min-width:960px){.vd-layout-card-over-wrapper{flex-direction:row;box-sizing:border-box;display:flex;align-items:flex-start;align-content:flex-start;justify-content:center}.vd-layout-card-over-wrapper .vd-layout-card-over{max-height:100%;box-sizing:border-box}}@media (max-width:959px){.vd-layout-card-over-wrapper .vd-layout-card-over{max-width:100%!important}}"]
13026
+ styles: [":host{position:relative;display:block;z-index:2;width:100%;min-height:100%;height:100%}:host [vd-after-card]{display:block}.vd-layout-card-over-wrapper{margin:-64px 0;width:100%;min-height:100%;height:100%}@media (min-width: 960px){.vd-layout-card-over-wrapper{flex-direction:row;box-sizing:border-box;display:flex;align-items:flex-start;align-content:flex-start;justify-content:center}.vd-layout-card-over-wrapper .vd-layout-card-over{max-height:100%;box-sizing:border-box}}@media (max-width: 959px){.vd-layout-card-over-wrapper .vd-layout-card-over{max-width:100%!important}}\n"]
12630
13027
  },] }
12631
13028
  ];
13029
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
12632
13030
  VdLayoutCardOverComponent.propDecorators = {
12633
13031
  cardTitle: [{ type: Input, args: ['cardTitle',] }],
12634
13032
  cardSubtitle: [{ type: Input, args: ['cardSubtitle',] }],
@@ -12658,19 +13056,27 @@ class VdLayoutFooterComponent {
12658
13056
  return this._color;
12659
13057
  }
12660
13058
  }
13059
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12661
13060
  VdLayoutFooterComponent.decorators = [
12662
13061
  { type: Component, args: [{
12663
13062
  /* tslint:disable-next-line */
12664
13063
  selector: 'vd-layout-footer,vd-layout-footer-inner',
12665
13064
  template: "<ng-content></ng-content>",
12666
- styles: [":host{display:block;padding:10px 16px}"]
13065
+ styles: [":host{display:block;padding:10px 16px}\n"]
12667
13066
  },] }
12668
13067
  ];
12669
- /** @nocollapse */
13068
+ /**
13069
+ * @type {function(): !Array<(null|{
13070
+ * type: ?,
13071
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13072
+ * })>}
13073
+ * @nocollapse
13074
+ */
12670
13075
  VdLayoutFooterComponent.ctorParameters = () => [
12671
13076
  { type: Renderer2 },
12672
13077
  { type: ElementRef }
12673
13078
  ];
13079
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
12674
13080
  VdLayoutFooterComponent.propDecorators = {
12675
13081
  color: [{ type: Input, args: ['color',] }]
12676
13082
  };
@@ -12768,17 +13174,25 @@ class VdLayoutManageListComponent {
12768
13174
  return this.sidenav.close();
12769
13175
  }
12770
13176
  }
13177
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12771
13178
  VdLayoutManageListComponent.decorators = [
12772
13179
  { type: Component, args: [{
12773
13180
  selector: 'vd-layout-manage-list',
12774
13181
  template: "<mat-sidenav-container fullscreen class=\"vd-layout-manage-list\">\r\n\t<mat-sidenav #sidenav position=\"start\" [mode]=\"mode\" [opened]=\"opened\" [disableClose]=\"disableClose\" [style.max-width]=\"sidenavWidth\"\r\n\t [style.min-width]=\"sidenavWidth\">\r\n\t\t<ng-content select=\"mat-toolbar[vd-sidenav-content]\"></ng-content>\r\n\t\t<div class=\"vd-layout-manage-list-sidenav\" cdkScrollable>\r\n\t\t\t<ng-content select=\"[vd-sidenav-content]\"></ng-content>\r\n\t\t</div>\r\n\t</mat-sidenav>\r\n\t<div class=\"vd-layout-manage-list-main\">\r\n\t\t<ng-content select=\"mat-toolbar\"></ng-content>\r\n\t\t<div class=\"vd-layout-manage-list-content\" cdkScrollable>\r\n\t\t\t<ng-content></ng-content>\r\n\t\t</div>\r\n\t\t<ng-content select=\"vd-layout-footer-inner\"></ng-content>\r\n\t</div>\r\n</mat-sidenav-container>",
12775
- styles: [":host{display:flex;margin:0;width:100%;min-height:100%;height:100%;overflow:hidden}:host mat-sidenav-container.vd-layout-manage-list{flex:1}:host mat-sidenav-container.vd-layout-manage-list>mat-sidenav.mat-drawer-closed,:host mat-sidenav-container.vd-layout-manage-list>mat-sidenav.mat-drawer-closing,:host mat-sidenav-container.vd-layout-manage-list>mat-sidenav.mat-drawer-opened,:host mat-sidenav-container.vd-layout-manage-list>mat-sidenav.mat-drawer-opening{box-shadow:0 1px 3px 0 rgba(0,0,0,.2)}:host .vd-layout-manage-list-sidenav{text-align:start;flex:1;display:block;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}:host .vd-layout-manage-list-main{margin:0;width:100%;min-height:100%;height:100%;position:relative;overflow:auto;flex-direction:column;box-sizing:border-box;display:flex}:host .vd-layout-manage-list-main .vd-layout-manage-list-content{display:block;position:relative;overflow:auto;-webkit-overflow-scrolling:touch;flex:1}:host ::ng-deep mat-sidenav-container.vd-layout-manage-list>.mat-drawer-content{flex-grow:1}:host ::ng-deep mat-sidenav-container.vd-layout-manage-list>mat-sidenav{box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);box-sizing:border-box;display:flex;flex-direction:column}:host ::ng-deep mat-nav-list a[mat-list-item] .mat-list-item-content{font-size:14px}:host ::ng-deep .mat-toolbar{font-weight:400}"]
13182
+ styles: [":host{display:flex;margin:0;width:100%;min-height:100%;height:100%;overflow:hidden}:host mat-sidenav-container.vd-layout-manage-list{flex:1}:host mat-sidenav-container.vd-layout-manage-list>mat-sidenav.mat-drawer-opened,:host mat-sidenav-container.vd-layout-manage-list>mat-sidenav.mat-drawer-opening,:host mat-sidenav-container.vd-layout-manage-list>mat-sidenav.mat-drawer-closed,:host mat-sidenav-container.vd-layout-manage-list>mat-sidenav.mat-drawer-closing{box-shadow:0 1px 3px #0003}:host .vd-layout-manage-list-sidenav{text-align:start;flex:1;display:block;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}:host .vd-layout-manage-list-main{margin:0;width:100%;min-height:100%;height:100%;position:relative;overflow:auto;flex-direction:column;box-sizing:border-box;display:flex}:host .vd-layout-manage-list-main .vd-layout-manage-list-content{display:block;position:relative;overflow:auto;-webkit-overflow-scrolling:touch;flex:1}:host ::ng-deep mat-sidenav-container.vd-layout-manage-list>.mat-drawer-content{flex-grow:1}:host ::ng-deep mat-sidenav-container.vd-layout-manage-list>mat-sidenav{box-shadow:0 1px 3px #0003,0 1px 1px #00000024,0 2px 1px -1px #0000001f;box-sizing:border-box;display:flex;flex-direction:column}:host ::ng-deep mat-nav-list a[mat-list-item] .mat-list-item-content{font-size:14px}:host ::ng-deep .mat-toolbar{font-weight:400}\n"]
12776
13183
  },] }
12777
13184
  ];
12778
- /** @nocollapse */
13185
+ /**
13186
+ * @type {function(): !Array<(null|{
13187
+ * type: ?,
13188
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13189
+ * })>}
13190
+ * @nocollapse
13191
+ */
12779
13192
  VdLayoutManageListComponent.ctorParameters = () => [
12780
13193
  { type: VdMediaService }
12781
13194
  ];
13195
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
12782
13196
  VdLayoutManageListComponent.propDecorators = {
12783
13197
  sidenav: [{ type: ViewChild, args: [MatSidenav, { static: true },] }],
12784
13198
  mode: [{ type: Input, args: ['mode',] }],
@@ -12846,15 +13260,23 @@ class LayoutToggle {
12846
13260
  }
12847
13261
  }
12848
13262
  }
13263
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12849
13264
  LayoutToggle.decorators = [
12850
13265
  { type: Directive }
12851
13266
  ];
12852
- /** @nocollapse */
13267
+ /**
13268
+ * @type {function(): !Array<(null|{
13269
+ * type: ?,
13270
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13271
+ * })>}
13272
+ * @nocollapse
13273
+ */
12853
13274
  LayoutToggle.ctorParameters = () => [
12854
13275
  { type: undefined },
12855
13276
  { type: Renderer2 },
12856
13277
  { type: ElementRef }
12857
13278
  ];
13279
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
12858
13280
  LayoutToggle.propDecorators = {
12859
13281
  hideWhenOpened: [{ type: Input, args: ['hideWhenOpened',] }],
12860
13282
  clickListener: [{ type: HostListener, args: ['click', ['$event'],] }]
@@ -12871,17 +13293,25 @@ class VdLayoutManageListToggleDirective extends LayoutToggle {
12871
13293
  this._layout.toggle();
12872
13294
  }
12873
13295
  }
13296
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12874
13297
  VdLayoutManageListToggleDirective.decorators = [
12875
13298
  { type: Directive, args: [{
12876
13299
  selector: '[vdLayoutManageListToggle]',
12877
13300
  },] }
12878
13301
  ];
12879
- /** @nocollapse */
13302
+ /**
13303
+ * @type {function(): !Array<(null|{
13304
+ * type: ?,
13305
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13306
+ * })>}
13307
+ * @nocollapse
13308
+ */
12880
13309
  VdLayoutManageListToggleDirective.ctorParameters = () => [
12881
13310
  { type: VdLayoutManageListComponent, decorators: [{ type: Inject, args: [forwardRef(() => VdLayoutManageListComponent),] }] },
12882
13311
  { type: Renderer2 },
12883
13312
  { type: ElementRef }
12884
13313
  ];
13314
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
12885
13315
  VdLayoutManageListToggleDirective.propDecorators = {
12886
13316
  vdLayoutManageListToggle: [{ type: Input, args: ['vdLayoutManageListToggle',] }]
12887
13317
  };
@@ -12896,17 +13326,25 @@ class VdLayoutManageListCloseDirective extends LayoutToggle {
12896
13326
  this._layout.close();
12897
13327
  }
12898
13328
  }
13329
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12899
13330
  VdLayoutManageListCloseDirective.decorators = [
12900
13331
  { type: Directive, args: [{
12901
13332
  selector: '[vdLayoutManageListClose]',
12902
13333
  },] }
12903
13334
  ];
12904
- /** @nocollapse */
13335
+ /**
13336
+ * @type {function(): !Array<(null|{
13337
+ * type: ?,
13338
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13339
+ * })>}
13340
+ * @nocollapse
13341
+ */
12905
13342
  VdLayoutManageListCloseDirective.ctorParameters = () => [
12906
13343
  { type: VdLayoutManageListComponent, decorators: [{ type: Inject, args: [forwardRef(() => VdLayoutManageListComponent),] }] },
12907
13344
  { type: Renderer2 },
12908
13345
  { type: ElementRef }
12909
13346
  ];
13347
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
12910
13348
  VdLayoutManageListCloseDirective.propDecorators = {
12911
13349
  vdLayoutManageListClose: [{ type: Input, args: ['vdLayoutManageListClose',] }]
12912
13350
  };
@@ -12921,17 +13359,25 @@ class VdLayoutManageListOpenDirective extends LayoutToggle {
12921
13359
  this._layout.open();
12922
13360
  }
12923
13361
  }
13362
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12924
13363
  VdLayoutManageListOpenDirective.decorators = [
12925
13364
  { type: Directive, args: [{
12926
13365
  selector: '[vdLayoutManageListOpen]',
12927
13366
  },] }
12928
13367
  ];
12929
- /** @nocollapse */
13368
+ /**
13369
+ * @type {function(): !Array<(null|{
13370
+ * type: ?,
13371
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13372
+ * })>}
13373
+ * @nocollapse
13374
+ */
12930
13375
  VdLayoutManageListOpenDirective.ctorParameters = () => [
12931
13376
  { type: VdLayoutManageListComponent, decorators: [{ type: Inject, args: [forwardRef(() => VdLayoutManageListComponent),] }] },
12932
13377
  { type: Renderer2 },
12933
13378
  { type: ElementRef }
12934
13379
  ];
13380
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
12935
13381
  VdLayoutManageListOpenDirective.propDecorators = {
12936
13382
  vdLayoutManageListOpen: [{ type: Input, args: ['vdLayoutManageListOpen',] }]
12937
13383
  };
@@ -13013,17 +13459,25 @@ class VdLayoutNavListComponent {
13013
13459
  return this.sidenav.close();
13014
13460
  }
13015
13461
  }
13462
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13016
13463
  VdLayoutNavListComponent.decorators = [
13017
13464
  { type: Component, args: [{
13018
13465
  selector: 'vd-layout-nav-list',
13019
13466
  template: "<div class=\"vd-layout-nav-list-wrapper\">\r\n\t<mat-sidenav-container fullscreen class=\"vd-layout-nav-list\">\r\n\t\t<mat-sidenav #sidenav position=\"start\" [mode]=\"mode\" [opened]=\"opened\" [disableClose]=\"disableClose\" [style.max-width]=\"sidenavWidth\"\r\n\t\t [style.min-width]=\"sidenavWidth\">\r\n\t\t\t<mat-toolbar [color]=\"color\">\r\n\t\t\t\t<ng-content select=\"[vd-menu-button]\"></ng-content>\r\n\t\t\t\t<span *ngIf=\"icon || logo || toolbarTitle\" class=\"vd-layout-nav-list-toolbar-content\" [class.cursor-pointer]=\"routerEnabled\"\r\n\t\t\t\t (click)=\"handleNavigationClick()\">\r\n\t\t\t\t\t<mat-icon *ngIf=\"icon\">{{icon}}</mat-icon>\r\n\t\t\t\t\t<mat-icon *ngIf=\"logo && !icon\" class=\"mat-icon-logo\" [svgIcon]=\"logo\"></mat-icon>\r\n\t\t\t\t\t<span *ngIf=\"toolbarTitle\">{{toolbarTitle}}</span>\r\n\t\t\t\t</span>\r\n\t\t\t\t<ng-content select=\"[vd-sidenav-toolbar-content]\"></ng-content>\r\n\t\t\t</mat-toolbar>\r\n\t\t\t<div class=\"vd-layout-nav-list-content\" cdkScrollable>\r\n\t\t\t\t<ng-content select=\"[vd-sidenav-content]\"></ng-content>\r\n\t\t\t</div>\r\n\t\t</mat-sidenav>\r\n\t\t<div class=\"vd-layout-nav-list-main\">\r\n\t\t\t<mat-toolbar [color]=\"color\">\r\n\t\t\t\t<ng-content select=\"[vd-toolbar-content]\"></ng-content>\r\n\t\t\t</mat-toolbar>\r\n\t\t\t<div class=\"vd-layout-nav-list-content\" cdkScrollable>\r\n\t\t\t\t<ng-content></ng-content>\r\n\t\t\t</div>\r\n\t\t\t<ng-content select=\"vd-layout-footer-inner\"></ng-content>\r\n\t\t</div>\r\n\t</mat-sidenav-container>\r\n</div>\r\n<ng-content select=\"vd-layout-footer\"></ng-content>",
13020
- styles: [":host{margin:0;width:100%;min-height:100%;height:100%;overflow:hidden;flex-direction:column;box-sizing:border-box;display:flex;flex:1}:host .vd-layout-nav-list-wrapper{flex-direction:column;box-sizing:border-box;display:flex;flex:1;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}:host .vd-layout-nav-list-wrapper .vd-layout-nav-list-toolbar-content{flex-direction:row;box-sizing:border-box;display:flex;align-items:center;align-content:center;max-width:100%;justify-content:flex-start}:host .vd-layout-nav-list-wrapper .vd-layout-nav-list-content{text-align:start;flex:1;display:block;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}:host .vd-layout-nav-list-wrapper .vd-layout-nav-list-main{flex-direction:column;box-sizing:border-box;display:flex;margin:0;width:100%;min-height:100%;height:100%;position:relative;overflow:auto}:host .vd-layout-nav-list-wrapper .vd-layout-nav-list-main .vd-layout-nav-list-content{display:block;position:relative;overflow:auto;-webkit-overflow-scrolling:touch;flex:1}:host .vd-layout-nav-list-wrapper mat-sidenav-container.vd-layout-nav-list{flex:1}:host .vd-layout-nav-list-wrapper mat-sidenav-container.vd-layout-nav-list>mat-sidenav.mat-drawer-closed,:host .vd-layout-nav-list-wrapper mat-sidenav-container.vd-layout-nav-list>mat-sidenav.mat-drawer-closing,:host .vd-layout-nav-list-wrapper mat-sidenav-container.vd-layout-nav-list>mat-sidenav.mat-drawer-opened,:host .vd-layout-nav-list-wrapper mat-sidenav-container.vd-layout-nav-list>mat-sidenav.mat-drawer-opening{box-shadow:none}:host ::ng-deep mat-sidenav-container.vd-layout-nav-list>.mat-drawer-content{flex-grow:1}:host ::ng-deep mat-sidenav-container.vd-layout-nav-list>mat-sidenav{box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);box-sizing:border-box;display:flex;flex-direction:column}"]
13467
+ styles: [":host{margin:0;width:100%;min-height:100%;height:100%;overflow:hidden;flex-direction:column;box-sizing:border-box;display:flex;flex:1}:host .vd-layout-nav-list-wrapper{flex-direction:column;box-sizing:border-box;display:flex;flex:1;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}:host .vd-layout-nav-list-wrapper .vd-layout-nav-list-toolbar-content{flex-direction:row;box-sizing:border-box;display:flex;align-items:center;align-content:center;max-width:100%;justify-content:flex-start}:host .vd-layout-nav-list-wrapper .vd-layout-nav-list-content{text-align:start;flex:1;display:block;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}:host .vd-layout-nav-list-wrapper .vd-layout-nav-list-main{flex-direction:column;box-sizing:border-box;display:flex;margin:0;width:100%;min-height:100%;height:100%;position:relative;overflow:auto}:host .vd-layout-nav-list-wrapper .vd-layout-nav-list-main .vd-layout-nav-list-content{display:block;position:relative;overflow:auto;-webkit-overflow-scrolling:touch;flex:1}:host .vd-layout-nav-list-wrapper mat-sidenav-container.vd-layout-nav-list{flex:1}:host .vd-layout-nav-list-wrapper mat-sidenav-container.vd-layout-nav-list>mat-sidenav.mat-drawer-opened,:host .vd-layout-nav-list-wrapper mat-sidenav-container.vd-layout-nav-list>mat-sidenav.mat-drawer-opening,:host .vd-layout-nav-list-wrapper mat-sidenav-container.vd-layout-nav-list>mat-sidenav.mat-drawer-closed,:host .vd-layout-nav-list-wrapper mat-sidenav-container.vd-layout-nav-list>mat-sidenav.mat-drawer-closing{box-shadow:none}:host ::ng-deep mat-sidenav-container.vd-layout-nav-list>.mat-drawer-content{flex-grow:1}:host ::ng-deep mat-sidenav-container.vd-layout-nav-list>mat-sidenav{box-shadow:0 1px 3px #0003,0 1px 1px #00000024,0 2px 1px -1px #0000001f;box-sizing:border-box;display:flex;flex-direction:column}\n"]
13021
13468
  },] }
13022
13469
  ];
13023
- /** @nocollapse */
13470
+ /**
13471
+ * @type {function(): !Array<(null|{
13472
+ * type: ?,
13473
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13474
+ * })>}
13475
+ * @nocollapse
13476
+ */
13024
13477
  VdLayoutNavListComponent.ctorParameters = () => [
13025
13478
  { type: Router, decorators: [{ type: Optional }] }
13026
13479
  ];
13480
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13027
13481
  VdLayoutNavListComponent.propDecorators = {
13028
13482
  sidenav: [{ type: ViewChild, args: [MatSidenav, { static: true },] }],
13029
13483
  toolbarTitle: [{ type: Input, args: ['toolbarTitle',] }],
@@ -13047,17 +13501,25 @@ class VdLayoutNavListToggleDirective extends LayoutToggle {
13047
13501
  this._layout.toggle();
13048
13502
  }
13049
13503
  }
13504
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13050
13505
  VdLayoutNavListToggleDirective.decorators = [
13051
13506
  { type: Directive, args: [{
13052
13507
  selector: '[vdLayoutNavListToggle]',
13053
13508
  },] }
13054
13509
  ];
13055
- /** @nocollapse */
13510
+ /**
13511
+ * @type {function(): !Array<(null|{
13512
+ * type: ?,
13513
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13514
+ * })>}
13515
+ * @nocollapse
13516
+ */
13056
13517
  VdLayoutNavListToggleDirective.ctorParameters = () => [
13057
13518
  { type: VdLayoutNavListComponent, decorators: [{ type: Inject, args: [forwardRef(() => VdLayoutNavListComponent),] }] },
13058
13519
  { type: Renderer2 },
13059
13520
  { type: ElementRef }
13060
13521
  ];
13522
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13061
13523
  VdLayoutNavListToggleDirective.propDecorators = {
13062
13524
  vdLayoutNavListToggle: [{ type: Input, args: ['vdLayoutNavListToggle',] }]
13063
13525
  };
@@ -13072,17 +13534,25 @@ class VdLayoutNavListCloseDirective extends LayoutToggle {
13072
13534
  this._layout.close();
13073
13535
  }
13074
13536
  }
13537
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13075
13538
  VdLayoutNavListCloseDirective.decorators = [
13076
13539
  { type: Directive, args: [{
13077
13540
  selector: '[vdLayoutNavListClose]',
13078
13541
  },] }
13079
13542
  ];
13080
- /** @nocollapse */
13543
+ /**
13544
+ * @type {function(): !Array<(null|{
13545
+ * type: ?,
13546
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13547
+ * })>}
13548
+ * @nocollapse
13549
+ */
13081
13550
  VdLayoutNavListCloseDirective.ctorParameters = () => [
13082
13551
  { type: VdLayoutNavListComponent, decorators: [{ type: Inject, args: [forwardRef(() => VdLayoutNavListComponent),] }] },
13083
13552
  { type: Renderer2 },
13084
13553
  { type: ElementRef }
13085
13554
  ];
13555
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13086
13556
  VdLayoutNavListCloseDirective.propDecorators = {
13087
13557
  vdLayoutNavListClose: [{ type: Input, args: ['vdLayoutNavListClose',] }]
13088
13558
  };
@@ -13097,17 +13567,25 @@ class VdLayoutNavListOpenDirective extends LayoutToggle {
13097
13567
  this._layout.open();
13098
13568
  }
13099
13569
  }
13570
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13100
13571
  VdLayoutNavListOpenDirective.decorators = [
13101
13572
  { type: Directive, args: [{
13102
13573
  selector: '[vdLayoutNavListOpen]',
13103
13574
  },] }
13104
13575
  ];
13105
- /** @nocollapse */
13576
+ /**
13577
+ * @type {function(): !Array<(null|{
13578
+ * type: ?,
13579
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13580
+ * })>}
13581
+ * @nocollapse
13582
+ */
13106
13583
  VdLayoutNavListOpenDirective.ctorParameters = () => [
13107
13584
  { type: VdLayoutNavListComponent, decorators: [{ type: Inject, args: [forwardRef(() => VdLayoutNavListComponent),] }] },
13108
13585
  { type: Renderer2 },
13109
13586
  { type: ElementRef }
13110
13587
  ];
13588
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13111
13589
  VdLayoutNavListOpenDirective.propDecorators = {
13112
13590
  vdLayoutNavListOpen: [{ type: Input, args: ['vdLayoutNavListOpen',] }]
13113
13591
  };
@@ -13142,17 +13620,25 @@ class VdLayoutNavComponent {
13142
13620
  }
13143
13621
  }
13144
13622
  }
13623
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13145
13624
  VdLayoutNavComponent.decorators = [
13146
13625
  { type: Component, args: [{
13147
13626
  selector: 'vd-layout-nav',
13148
13627
  template: "<div class=\"vd-layout-nav-wrapper\">\r\n\t<mat-toolbar [color]=\"color\">\r\n\t\t<ng-content select=\"[vd-menu-button]\"></ng-content>\r\n\t\t<span *ngIf=\"icon || logo || toolbarTitle\" [class.cursor-pointer]=\"routerEnabled\" (click)=\"handleNavigationClick()\" class=\"vd-layout-nav-toolbar-content\">\r\n\t\t\t<mat-icon *ngIf=\"icon\">{{icon}}</mat-icon>\r\n\t\t\t<mat-icon *ngIf=\"logo && !icon\" class=\"mat-icon-logo\" [svgIcon]=\"logo\"></mat-icon>\r\n\t\t\t<span *ngIf=\"toolbarTitle\">{{toolbarTitle}}</span>\r\n\t\t</span>\r\n\t\t<ng-content select=\"[vd-toolbar-content]\"></ng-content>\r\n\t</mat-toolbar>\r\n\t<div class=\"vd-layout-nav-content\" cdkScrollable>\r\n\t\t<ng-content></ng-content>\r\n\t</div>\r\n\t<ng-content select=\"vd-layout-footer\"></ng-content>\r\n</div>",
13149
- styles: [".vd-menu-button{margin-left:0}::ng-deep [dir=rtl] .vd-menu-button{margin-right:0;margin-left:6px}:host{display:flex;margin:0;width:100%;min-height:100%;height:100%;overflow:hidden}:host .vd-layout-nav-wrapper{flex-direction:column;box-sizing:border-box;display:flex;margin:0;width:100%;min-height:100%;height:100%}:host .vd-layout-nav-wrapper .vd-layout-nav-toolbar-content{flex-direction:row;box-sizing:border-box;display:flex;align-items:center;align-content:center;max-width:100%;justify-content:flex-start}:host .vd-layout-nav-wrapper .vd-layout-nav-content{flex-direction:column;box-sizing:border-box;display:flex;flex:1;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}"]
13628
+ styles: [".vd-menu-button{margin-left:0}::ng-deep [dir=rtl] .vd-menu-button{margin-right:0;margin-left:6px}:host{display:flex;margin:0;width:100%;min-height:100%;height:100%;overflow:hidden}:host .vd-layout-nav-wrapper{flex-direction:column;box-sizing:border-box;display:flex;margin:0;width:100%;min-height:100%;height:100%}:host .vd-layout-nav-wrapper .vd-layout-nav-toolbar-content{flex-direction:row;box-sizing:border-box;display:flex;align-items:center;align-content:center;max-width:100%;justify-content:flex-start}:host .vd-layout-nav-wrapper .vd-layout-nav-content{flex-direction:column;box-sizing:border-box;display:flex;flex:1;position:relative;overflow:auto;-webkit-overflow-scrolling:touch}\n"]
13150
13629
  },] }
13151
13630
  ];
13152
- /** @nocollapse */
13631
+ /**
13632
+ * @type {function(): !Array<(null|{
13633
+ * type: ?,
13634
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13635
+ * })>}
13636
+ * @nocollapse
13637
+ */
13153
13638
  VdLayoutNavComponent.ctorParameters = () => [
13154
13639
  { type: Router, decorators: [{ type: Optional }] }
13155
13640
  ];
13641
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13156
13642
  VdLayoutNavComponent.propDecorators = {
13157
13643
  toolbarTitle: [{ type: Input, args: ['toolbarTitle',] }],
13158
13644
  icon: [{ type: Input, args: ['icon',] }],
@@ -13220,13 +13706,15 @@ class VdLayoutComponent {
13220
13706
  return this.sidenav.close();
13221
13707
  }
13222
13708
  }
13709
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13223
13710
  VdLayoutComponent.decorators = [
13224
13711
  { type: Component, args: [{
13225
13712
  selector: 'vd-layout',
13226
13713
  template: "<mat-sidenav-container fullscreen>\r\n\t<mat-sidenav #sidenav class=\"vd-layout-sidenav\" [mode]=\"mode\" [opened]=\"opened\" [style.max-width]=\"sidenavWidth\" [style.min-width]=\"sidenavWidth\"\r\n\t [disableClose]=\"disableClose\">\r\n\t\t<ng-content select=\"vd-navigation-drawer\"></ng-content>\r\n\t\t<ng-content select=\"[vd-sidenav-content]\"></ng-content>\r\n\t</mat-sidenav>\r\n\t<ng-content></ng-content>\r\n</mat-sidenav-container>",
13227
- styles: [":host{display:flex;margin:0;width:100%;min-height:100%;height:100%;overflow:hidden}:host ::ng-deep>mat-sidenav-container>mat-sidenav{display:flex;flex-direction:column}"]
13714
+ styles: [":host{display:flex;margin:0;width:100%;min-height:100%;height:100%;overflow:hidden}:host ::ng-deep>mat-sidenav-container>mat-sidenav{display:flex;flex-direction:column}\n"]
13228
13715
  },] }
13229
13716
  ];
13717
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13230
13718
  VdLayoutComponent.propDecorators = {
13231
13719
  sidenav: [{ type: ViewChild, args: [MatSidenav, { static: true },] }],
13232
13720
  mode: [{ type: Input, args: ['mode',] }],
@@ -13245,17 +13733,25 @@ class VdLayoutToggleDirective extends LayoutToggle {
13245
13733
  this._layout.toggle();
13246
13734
  }
13247
13735
  }
13736
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13248
13737
  VdLayoutToggleDirective.decorators = [
13249
13738
  { type: Directive, args: [{
13250
13739
  selector: '[vdLayoutToggle]',
13251
13740
  },] }
13252
13741
  ];
13253
- /** @nocollapse */
13742
+ /**
13743
+ * @type {function(): !Array<(null|{
13744
+ * type: ?,
13745
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13746
+ * })>}
13747
+ * @nocollapse
13748
+ */
13254
13749
  VdLayoutToggleDirective.ctorParameters = () => [
13255
13750
  { type: VdLayoutComponent, decorators: [{ type: Inject, args: [forwardRef(() => VdLayoutComponent),] }] },
13256
13751
  { type: Renderer2 },
13257
13752
  { type: ElementRef }
13258
13753
  ];
13754
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13259
13755
  VdLayoutToggleDirective.propDecorators = {
13260
13756
  vdLayoutToggle: [{ type: Input, args: ['vdLayoutToggle',] }]
13261
13757
  };
@@ -13270,17 +13766,25 @@ class VdLayoutCloseDirective extends LayoutToggle {
13270
13766
  this._layout.close();
13271
13767
  }
13272
13768
  }
13769
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13273
13770
  VdLayoutCloseDirective.decorators = [
13274
13771
  { type: Directive, args: [{
13275
13772
  selector: '[vdLayoutClose]',
13276
13773
  },] }
13277
13774
  ];
13278
- /** @nocollapse */
13775
+ /**
13776
+ * @type {function(): !Array<(null|{
13777
+ * type: ?,
13778
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13779
+ * })>}
13780
+ * @nocollapse
13781
+ */
13279
13782
  VdLayoutCloseDirective.ctorParameters = () => [
13280
13783
  { type: VdLayoutComponent, decorators: [{ type: Inject, args: [forwardRef(() => VdLayoutComponent),] }] },
13281
13784
  { type: Renderer2 },
13282
13785
  { type: ElementRef }
13283
13786
  ];
13787
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13284
13788
  VdLayoutCloseDirective.propDecorators = {
13285
13789
  vdLayoutClose: [{ type: Input, args: ['vdLayoutClose',] }]
13286
13790
  };
@@ -13295,17 +13799,25 @@ class VdLayoutOpenDirective extends LayoutToggle {
13295
13799
  this._layout.open();
13296
13800
  }
13297
13801
  }
13802
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13298
13803
  VdLayoutOpenDirective.decorators = [
13299
13804
  { type: Directive, args: [{
13300
13805
  selector: '[vdLayoutOpen]',
13301
13806
  },] }
13302
13807
  ];
13303
- /** @nocollapse */
13808
+ /**
13809
+ * @type {function(): !Array<(null|{
13810
+ * type: ?,
13811
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13812
+ * })>}
13813
+ * @nocollapse
13814
+ */
13304
13815
  VdLayoutOpenDirective.ctorParameters = () => [
13305
13816
  { type: VdLayoutComponent, decorators: [{ type: Inject, args: [forwardRef(() => VdLayoutComponent),] }] },
13306
13817
  { type: Renderer2 },
13307
13818
  { type: ElementRef }
13308
13819
  ];
13820
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13309
13821
  VdLayoutOpenDirective.propDecorators = {
13310
13822
  vdLayoutClose: [{ type: Input, args: ['vdLayoutOpen',] }]
13311
13823
  };
@@ -13355,6 +13867,7 @@ function VdCollapseAnimation(collapseOptions = {}) {
13355
13867
 
13356
13868
  class VdNavigationDrawerMenuDirective {
13357
13869
  }
13870
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13358
13871
  VdNavigationDrawerMenuDirective.decorators = [
13359
13872
  { type: Directive, args: [{
13360
13873
  selector: '[vd-navigation-drawer-menu]',
@@ -13362,6 +13875,7 @@ VdNavigationDrawerMenuDirective.decorators = [
13362
13875
  ];
13363
13876
  class VdNavigationDrawerToolbarDirective {
13364
13877
  }
13878
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13365
13879
  VdNavigationDrawerToolbarDirective.decorators = [
13366
13880
  { type: Directive, args: [{
13367
13881
  selector: '[vd-navigation-drawer-toolbar]',
@@ -13459,20 +13973,28 @@ class VdNavigationDrawerComponent {
13459
13973
  return this._layout.close();
13460
13974
  }
13461
13975
  }
13976
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13462
13977
  VdNavigationDrawerComponent.decorators = [
13463
13978
  { type: Component, args: [{
13464
13979
  selector: 'vd-navigation-drawer',
13465
13980
  template: "<mat-toolbar [color]=\"color\" [style.background-image]=\"backgroundImage\" [class.vd-toolbar-background]=\"!!isBackgroundAvailable\"\r\n class=\"vd-nagivation-drawer-toolbar\">\r\n\t<ng-content select=\"[vd-navigation-drawer-toolbar]\"></ng-content>\r\n\t<ng-container *ngIf=\"!isCustomToolbar\">\r\n\t\t<div *ngIf=\"icon || logo || sidenavTitle\" class=\"vd-navigation-drawer-toolbar-content\" [class.cursor-pointer]=\"routerEnabled\"\r\n\t\t (click)=\"handleNavigationClick()\">\r\n\t\t\t<mat-icon *ngIf=\"icon\">{{icon}}</mat-icon>\r\n\t\t\t<mat-icon *ngIf=\"logo && !icon\" class=\"mat-icon-logo\" [svgIcon]=\"logo\"></mat-icon>\r\n\t\t\t<span *ngIf=\"sidenavTitle\" class=\"vd-navigation-drawer-title\">{{sidenavTitle}}</span>\r\n\t\t</div>\r\n\t\t<div class=\"vd-navigation-drawer-name\" *ngIf=\"email && name\">{{name}}</div>\r\n\t\t<div class=\"vd-navigation-drawer-menu-toggle\" href *ngIf=\"email || name\" (click)=\"toggleMenu()\">\r\n\t\t\t<span class=\"vd-navigation-drawer-label\">{{email || name}}</span>\r\n\t\t\t<button mat-icon-button class=\"vd-navigation-drawer-menu-button\" *ngIf=\"isMenuAvailable\">\r\n\t\t\t\t<mat-icon *ngIf=\"!menuToggled\">arrow_drop_down</mat-icon>\r\n\t\t\t\t<mat-icon *ngIf=\"menuToggled\">arrow_drop_up</mat-icon>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t</ng-container>\r\n</mat-toolbar>\r\n<div class=\"vd-navigation-drawer-content\" [@vdCollapse]=\"menuToggled\">\r\n\t<ng-content></ng-content>\r\n</div>\r\n<div class=\"vd-navigation-drawer-menu-content\" [@vdCollapse]=\"!menuToggled\">\r\n\t<ng-content select=\"[vd-navigation-drawer-menu]\"></ng-content>\r\n</div>",
13466
13981
  animations: [VdCollapseAnimation()],
13467
- styles: [":host{width:100%}:host .vd-navigation-drawer-content.ng-animating,:host .vd-navigation-drawer-menu-content.ng-animating{overflow:hidden}:host mat-toolbar{padding:16px}:host mat-toolbar.vd-toolbar-background{background-repeat:no-repeat;background-size:cover}:host mat-toolbar.vd-nagivation-drawer-toolbar{flex-direction:column;height:auto!important;display:block!important}:host mat-toolbar .vd-navigation-drawer-toolbar-content{flex-direction:row;box-sizing:border-box;display:flex;align-items:center;align-content:center;max-width:100%;justify-content:flex-start}:host mat-toolbar .vd-navigation-drawer-menu-toggle{flex-direction:row;box-sizing:border-box;display:flex}:host mat-toolbar .vd-navigation-drawer-menu-toggle .vd-navigation-drawer-label{flex:1}:host mat-toolbar .vd-navigation-drawer-menu-toggle .vd-navigation-drawer-menu-button{height:24px;line-height:24px;width:24px}:host>div{overflow:hidden}"]
13982
+ styles: [":host{width:100%}:host .vd-navigation-drawer-content.ng-animating,:host .vd-navigation-drawer-menu-content.ng-animating{overflow:hidden}:host mat-toolbar{padding:16px}:host mat-toolbar.vd-toolbar-background{background-repeat:no-repeat;background-size:cover}:host mat-toolbar.vd-nagivation-drawer-toolbar{flex-direction:column;height:auto!important;display:block!important}:host mat-toolbar .vd-navigation-drawer-toolbar-content{flex-direction:row;box-sizing:border-box;display:flex;align-items:center;align-content:center;max-width:100%;justify-content:flex-start}:host mat-toolbar .vd-navigation-drawer-menu-toggle{flex-direction:row;box-sizing:border-box;display:flex}:host mat-toolbar .vd-navigation-drawer-menu-toggle .vd-navigation-drawer-label{flex:1}:host mat-toolbar .vd-navigation-drawer-menu-toggle .vd-navigation-drawer-menu-button{height:24px;line-height:24px;width:24px}:host>div{overflow:hidden}\n"]
13468
13983
  },] }
13469
13984
  ];
13470
- /** @nocollapse */
13985
+ /**
13986
+ * @type {function(): !Array<(null|{
13987
+ * type: ?,
13988
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13989
+ * })>}
13990
+ * @nocollapse
13991
+ */
13471
13992
  VdNavigationDrawerComponent.ctorParameters = () => [
13472
13993
  { type: VdLayoutComponent, decorators: [{ type: Inject, args: [forwardRef(() => VdLayoutComponent),] }] },
13473
13994
  { type: Router, decorators: [{ type: Optional }] },
13474
13995
  { type: DomSanitizer }
13475
13996
  ];
13997
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13476
13998
  VdNavigationDrawerComponent.propDecorators = {
13477
13999
  _drawerMenu: [{ type: ContentChildren, args: [VdNavigationDrawerMenuDirective,] }],
13478
14000
  _toolbar: [{ type: ContentChildren, args: [VdNavigationDrawerToolbarDirective,] }],
@@ -13508,6 +14030,7 @@ const VD_LAYOUTS = [
13508
14030
  ];
13509
14031
  class VdLayoutModule {
13510
14032
  }
14033
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13511
14034
  VdLayoutModule.decorators = [
13512
14035
  { type: NgModule, args: [{
13513
14036
  imports: [
@@ -13619,17 +14142,25 @@ class VdMediaToggleDirective {
13619
14142
  }
13620
14143
  }
13621
14144
  }
14145
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13622
14146
  VdMediaToggleDirective.decorators = [
13623
14147
  { type: Directive, args: [{
13624
14148
  selector: '[vdMediaToggle]',
13625
14149
  },] }
13626
14150
  ];
13627
- /** @nocollapse */
14151
+ /**
14152
+ * @type {function(): !Array<(null|{
14153
+ * type: ?,
14154
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14155
+ * })>}
14156
+ * @nocollapse
14157
+ */
13628
14158
  VdMediaToggleDirective.ctorParameters = () => [
13629
14159
  { type: Renderer2 },
13630
14160
  { type: ElementRef },
13631
14161
  { type: VdMediaService }
13632
14162
  ];
14163
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13633
14164
  VdMediaToggleDirective.propDecorators = {
13634
14165
  query: [{ type: Input, args: ['vdMediaToggle',] }],
13635
14166
  attributes: [{ type: Input, args: ['mediaAttributes',] }],
@@ -13642,6 +14173,7 @@ const VD_MEDIA = [
13642
14173
  ];
13643
14174
  class VdMediaModule {
13644
14175
  }
14176
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13645
14177
  VdMediaModule.decorators = [
13646
14178
  { type: NgModule, args: [{
13647
14179
  imports: [
@@ -13687,6 +14219,7 @@ class VdMenuComponent {
13687
14219
  }
13688
14220
  }
13689
14221
  }
14222
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13690
14223
  VdMenuComponent.decorators = [
13691
14224
  { type: Component, args: [{
13692
14225
  selector: 'vd-menu',
@@ -13694,6 +14227,7 @@ VdMenuComponent.decorators = [
13694
14227
  styles: [""]
13695
14228
  },] }
13696
14229
  ];
14230
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13697
14231
  VdMenuComponent.propDecorators = {
13698
14232
  items: [{ type: Input }],
13699
14233
  activeExact: [{ type: Input }],
@@ -13711,10 +14245,17 @@ class MenuService extends GenericService {
13711
14245
  }
13712
14246
  }
13713
14247
  /** @nocollapse */ MenuService.ɵprov = i0.ɵɵdefineInjectable({ factory: function MenuService_Factory() { return new MenuService(); }, token: MenuService, providedIn: "root" });
14248
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13714
14249
  MenuService.decorators = [
13715
14250
  { type: Injectable, args: [{ providedIn: 'root' },] }
13716
14251
  ];
13717
- /** @nocollapse */
14252
+ /**
14253
+ * @type {function(): !Array<(null|{
14254
+ * type: ?,
14255
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14256
+ * })>}
14257
+ * @nocollapse
14258
+ */
13718
14259
  MenuService.ctorParameters = () => [];
13719
14260
 
13720
14261
  var MenuScope;
@@ -13739,10 +14280,17 @@ class MenuItemService extends GenericService {
13739
14280
  }
13740
14281
  }
13741
14282
  /** @nocollapse */ MenuItemService.ɵprov = i0.ɵɵdefineInjectable({ factory: function MenuItemService_Factory() { return new MenuItemService(); }, token: MenuItemService, providedIn: "root" });
14283
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13742
14284
  MenuItemService.decorators = [
13743
14285
  { type: Injectable, args: [{ providedIn: 'root' },] }
13744
14286
  ];
13745
- /** @nocollapse */
14287
+ /**
14288
+ * @type {function(): !Array<(null|{
14289
+ * type: ?,
14290
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14291
+ * })>}
14292
+ * @nocollapse
14293
+ */
13746
14294
  MenuItemService.ctorParameters = () => [];
13747
14295
 
13748
14296
  /**
@@ -13764,10 +14312,17 @@ class MenuResolve {
13764
14312
  return this.menuService.getList(route.data || {}, null, { cache: 'yes' });
13765
14313
  }
13766
14314
  }
14315
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13767
14316
  MenuResolve.decorators = [
13768
14317
  { type: Injectable }
13769
14318
  ];
13770
- /** @nocollapse */
14319
+ /**
14320
+ * @type {function(): !Array<(null|{
14321
+ * type: ?,
14322
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14323
+ * })>}
14324
+ * @nocollapse
14325
+ */
13771
14326
  MenuResolve.ctorParameters = () => [
13772
14327
  { type: MenuService }
13773
14328
  ];
@@ -13792,6 +14347,7 @@ class SubMenuResolve {
13792
14347
  return [];
13793
14348
  }
13794
14349
  }
14350
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13795
14351
  SubMenuResolve.decorators = [
13796
14352
  { type: Injectable }
13797
14353
  ];
@@ -13801,6 +14357,7 @@ const DECLARATIONS$2 = [
13801
14357
  ];
13802
14358
  class VdMenuModule {
13803
14359
  }
14360
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13804
14361
  VdMenuModule.decorators = [
13805
14362
  { type: NgModule, args: [{
13806
14363
  imports: [
@@ -13888,6 +14445,7 @@ class VdSearchInputComponent {
13888
14445
  this.onSearchDebounce.emit(value);
13889
14446
  }
13890
14447
  }
14448
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13891
14449
  VdSearchInputComponent.decorators = [
13892
14450
  { type: Component, args: [{
13893
14451
  selector: 'vd-search-input',
@@ -13910,13 +14468,20 @@ VdSearchInputComponent.decorators = [
13910
14468
  transition('show => *', animate('200ms ease-out')),
13911
14469
  ]),
13912
14470
  ],
13913
- styles: [".vd-search-input{overflow-x:hidden}.vd-search-input ::ng-deep mat-form-field.mat-hide-underline .mat-input-underline{display:none}"]
14471
+ styles: [".vd-search-input{overflow-x:hidden}.vd-search-input ::ng-deep mat-form-field.mat-hide-underline .mat-input-underline{display:none}\n"]
13914
14472
  },] }
13915
14473
  ];
13916
- /** @nocollapse */
14474
+ /**
14475
+ * @type {function(): !Array<(null|{
14476
+ * type: ?,
14477
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14478
+ * })>}
14479
+ * @nocollapse
14480
+ */
13917
14481
  VdSearchInputComponent.ctorParameters = () => [
13918
14482
  { type: Dir, decorators: [{ type: Optional }] }
13919
14483
  ];
14484
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13920
14485
  VdSearchInputComponent.propDecorators = {
13921
14486
  _input: [{ type: ViewChild, args: [MatInput, { static: true },] }],
13922
14487
  showUnderline: [{ type: Input, args: ['showUnderline',] }],
@@ -13999,6 +14564,7 @@ class VdSearchBoxComponent {
13999
14564
  this.onClear.emit(undefined);
14000
14565
  }
14001
14566
  }
14567
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14002
14568
  VdSearchBoxComponent.decorators = [
14003
14569
  { type: Component, args: [{
14004
14570
  selector: 'vd-search-box',
@@ -14019,9 +14585,10 @@ VdSearchBoxComponent.decorators = [
14019
14585
  transition('1 => 0', animate('200ms ease-out')),
14020
14586
  ]),
14021
14587
  ],
14022
- styles: [":host{display:block}.vd-search-box vd-search-input{margin-left:12px}::ng-deep [dir=rtl] .vd-search-box vd-search-input{margin-right:12px;margin-left:0!important}"]
14588
+ styles: [":host{display:block}.vd-search-box vd-search-input{margin-left:12px}::ng-deep [dir=rtl] .vd-search-box vd-search-input{margin-right:12px;margin-left:0!important}\n"]
14023
14589
  },] }
14024
14590
  ];
14591
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14025
14592
  VdSearchBoxComponent.propDecorators = {
14026
14593
  _searchInput: [{ type: ViewChild, args: [VdSearchInputComponent, { static: true },] }],
14027
14594
  backIcon: [{ type: Input, args: ['backIcon',] }],
@@ -14040,6 +14607,7 @@ const DECLARATIONS$1 = [
14040
14607
  ];
14041
14608
  class VdSearchModule {
14042
14609
  }
14610
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14043
14611
  VdSearchModule.decorators = [
14044
14612
  { type: NgModule, args: [{
14045
14613
  imports: [
@@ -14069,6 +14637,7 @@ class FilterClearComponent {
14069
14637
  this.table.dataSource.clearFilters();
14070
14638
  }
14071
14639
  }
14640
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14072
14641
  FilterClearComponent.decorators = [
14073
14642
  { type: Component, args: [{
14074
14643
  selector: 'mat-header-cell[filter-clear],[mat-header-cell][filter-clear]',
@@ -14078,7 +14647,13 @@ FilterClearComponent.decorators = [
14078
14647
  </button>`
14079
14648
  },] }
14080
14649
  ];
14081
- /** @nocollapse */
14650
+ /**
14651
+ * @type {function(): !Array<(null|{
14652
+ * type: ?,
14653
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14654
+ * })>}
14655
+ * @nocollapse
14656
+ */
14082
14657
  FilterClearComponent.ctorParameters = () => [
14083
14658
  { type: MatTable }
14084
14659
  ];
@@ -14170,6 +14745,7 @@ class FilterDateComponent {
14170
14745
  */
14171
14746
  registerOnTouched(fn) { this.onTouched = fn; }
14172
14747
  }
14748
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14173
14749
  FilterDateComponent.decorators = [
14174
14750
  { type: Component, args: [{
14175
14751
  selector: 'mat-header-cell[filter-date],[mat-header-cell][filter-date]',
@@ -14192,11 +14768,18 @@ FilterDateComponent.decorators = [
14192
14768
  ]
14193
14769
  },] }
14194
14770
  ];
14195
- /** @nocollapse */
14771
+ /**
14772
+ * @type {function(): !Array<(null|{
14773
+ * type: ?,
14774
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14775
+ * })>}
14776
+ * @nocollapse
14777
+ */
14196
14778
  FilterDateComponent.ctorParameters = () => [
14197
14779
  { type: MatTable },
14198
14780
  { type: CdkColumnDef }
14199
14781
  ];
14782
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14200
14783
  FilterDateComponent.propDecorators = {
14201
14784
  field: [{ type: Input }],
14202
14785
  debounce: [{ type: Input, args: ['debounce',] }],
@@ -14332,6 +14915,7 @@ class FilterInputComponent {
14332
14915
  }
14333
14916
  }
14334
14917
  }
14918
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14335
14919
  FilterInputComponent.decorators = [
14336
14920
  { type: Component, args: [{
14337
14921
  selector: 'mat-header-cell[filter-input],[mat-header-cell][filter-input]',
@@ -14352,11 +14936,18 @@ FilterInputComponent.decorators = [
14352
14936
  ]
14353
14937
  },] }
14354
14938
  ];
14355
- /** @nocollapse */
14939
+ /**
14940
+ * @type {function(): !Array<(null|{
14941
+ * type: ?,
14942
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14943
+ * })>}
14944
+ * @nocollapse
14945
+ */
14356
14946
  FilterInputComponent.ctorParameters = () => [
14357
14947
  { type: MatTable },
14358
14948
  { type: CdkColumnDef }
14359
14949
  ];
14950
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14360
14951
  FilterInputComponent.propDecorators = {
14361
14952
  _filter: [{ type: ViewChild, args: ['filterElement', { static: true },] }],
14362
14953
  field: [{ type: Input }],
@@ -14372,10 +14963,17 @@ class VdFilterOptionDirective extends TemplatePortalDirective {
14372
14963
  super(templateRef, viewContainerRef);
14373
14964
  }
14374
14965
  }
14966
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14375
14967
  VdFilterOptionDirective.decorators = [
14376
14968
  { type: Directive, args: [{ selector: '[vd-filter-option]ng-template' },] }
14377
14969
  ];
14378
- /** @nocollapse */
14970
+ /**
14971
+ * @type {function(): !Array<(null|{
14972
+ * type: ?,
14973
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14974
+ * })>}
14975
+ * @nocollapse
14976
+ */
14379
14977
  VdFilterOptionDirective.ctorParameters = () => [
14380
14978
  { type: TemplateRef },
14381
14979
  { type: ViewContainerRef }
@@ -14581,6 +15179,7 @@ class FilterSelectComponent {
14581
15179
  */
14582
15180
  registerOnTouched(fn) { this.onTouched = fn; }
14583
15181
  }
15182
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14584
15183
  FilterSelectComponent.decorators = [
14585
15184
  { type: Component, args: [{
14586
15185
  selector: 'mat-header-cell[filter-select],[mat-header-cell][filter-select]',
@@ -14622,12 +15221,19 @@ FilterSelectComponent.decorators = [
14622
15221
  }`]
14623
15222
  },] }
14624
15223
  ];
14625
- /** @nocollapse */
15224
+ /**
15225
+ * @type {function(): !Array<(null|{
15226
+ * type: ?,
15227
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15228
+ * })>}
15229
+ * @nocollapse
15230
+ */
14626
15231
  FilterSelectComponent.ctorParameters = () => [
14627
15232
  { type: Injector },
14628
15233
  { type: MatTable },
14629
15234
  { type: CdkColumnDef }
14630
15235
  ];
15236
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14631
15237
  FilterSelectComponent.propDecorators = {
14632
15238
  optionTemplate: [{ type: ContentChild, args: [VdFilterOptionDirective,] }],
14633
15239
  selectEl: [{ type: ViewChild, args: [MatSelect, { static: false },] }],
@@ -14678,11 +15284,13 @@ class DataSourceFilterDirective {
14678
15284
  });
14679
15285
  }
14680
15286
  }
15287
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14681
15288
  DataSourceFilterDirective.decorators = [
14682
15289
  { type: Directive, args: [{
14683
15290
  selector: '[dataSourceFilter]'
14684
15291
  },] }
14685
15292
  ];
15293
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14686
15294
  DataSourceFilterDirective.propDecorators = {
14687
15295
  dataSource: [{ type: Input }],
14688
15296
  dataSourceFilter: [{ type: Input }]
@@ -14723,6 +15331,7 @@ class PaginatorIntl extends MatPaginatorIntl {
14723
15331
  };
14724
15332
  }
14725
15333
  }
15334
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14726
15335
  PaginatorIntl.decorators = [
14727
15336
  { type: Injectable }
14728
15337
  ];
@@ -14898,6 +15507,7 @@ const DECLARATIONS = [
14898
15507
  ];
14899
15508
  class VdTableModule {
14900
15509
  }
15510
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14901
15511
  VdTableModule.decorators = [
14902
15512
  { type: NgModule, args: [{
14903
15513
  imports: [