@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
@@ -2,7 +2,7 @@
2
2
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/common'), require('@angular/common/http'), require('@angular/core'), require('@angular/forms'), require('@angular/material/dialog'), require('@angular/material/snack-bar'), require('@angular/platform-browser'), require('@angular/router'), require('rxjs'), require('@angular/localize/init'), require('rxjs/operators'), require('@angular/material/paginator'), require('@angular/material/sort'), require('file-saver'), require('@angular/animations'), require('reflect-metadata'), require('@angular/cdk/collections'), require('@angular/material/table'), require('@angular/cdk/table'), require('@angular/material/autocomplete'), require('@angular/material/chips'), require('@angular/material/icon'), require('@angular/material/input'), require('@angular/material/progress-spinner'), require('@angular/material/select'), require('@angular/cdk/a11y'), require('@angular/cdk/portal'), require('@angular/material/core'), require('@angular/material/form-field'), require('@angular/cdk/coercion'), require('@angular/platform-browser-dynamic'), require('@angular/material/button'), require('@angular/material/checkbox'), require('@angular/material/datepicker'), require('@angular/material/slide-toggle'), require('@angular/cdk/scrolling'), require('@angular/material/card'), require('@angular/material/list'), require('@angular/material/sidenav'), require('@angular/material/toolbar'), require('@angular/cdk/bidi'), require('@angular/material/menu'), require('@angular/material/progress-bar')) :
3
3
  typeof define === 'function' && define.amd ? define('@messaia/cdk', ['exports', '@angular/common', '@angular/common/http', '@angular/core', '@angular/forms', '@angular/material/dialog', '@angular/material/snack-bar', '@angular/platform-browser', '@angular/router', 'rxjs', '@angular/localize/init', 'rxjs/operators', '@angular/material/paginator', '@angular/material/sort', 'file-saver', '@angular/animations', 'reflect-metadata', '@angular/cdk/collections', '@angular/material/table', '@angular/cdk/table', '@angular/material/autocomplete', '@angular/material/chips', '@angular/material/icon', '@angular/material/input', '@angular/material/progress-spinner', '@angular/material/select', '@angular/cdk/a11y', '@angular/cdk/portal', '@angular/material/core', '@angular/material/form-field', '@angular/cdk/coercion', '@angular/platform-browser-dynamic', '@angular/material/button', '@angular/material/checkbox', '@angular/material/datepicker', '@angular/material/slide-toggle', '@angular/cdk/scrolling', '@angular/material/card', '@angular/material/list', '@angular/material/sidenav', '@angular/material/toolbar', '@angular/cdk/bidi', '@angular/material/menu', '@angular/material/progress-bar'], factory) :
4
4
  (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.messaia = global.messaia || {}, global.messaia.cdk = {}), global.ng.common, global.ng.common.http, global.ng.core, global.ng.forms, global.ng.material.dialog, global.ng.material.snackBar, global.ng.platformBrowser, global.ng.router, global.rxjs, global.ng.localize.init, global.rxjs.operators, global.ng.material.paginator, global.ng.material.sort, global.saveAs, global.ng.animations, null, global.ng.cdk.collections, global.ng.material.table, global.ng.cdk.table, global.ng.material.autocomplete, global.ng.material.chips, global.ng.material.icon, global.ng.material.input, global.ng.material.progressSpinner, global.ng.material.select, global.ng.cdk.a11y, global.ng.cdk.portal, global.ng.material.core, global.ng.material.formField, global.ng.cdk.coercion, global.ng.platformBrowserDynamic, global.ng.material.button, global.ng.material.checkbox, global.ng.material.datepicker, global.ng.material.slideToggle, global.ng.cdk.scrolling, global.ng.material.card, global.ng.material.list, global.ng.material.sidenav, global.ng.material.toolbar, global.ng.cdk.bidi, global.ng.material.menu, global.ng.material.progressBar));
5
- }(this, (function (exports, common, http, i0, forms, i1, i2, platformBrowser, i1$1, rxjs, init, operators, paginator, sort, fileSaver, animations, reflectMetadata, collections, table, table$1, autocomplete, chips, icon, input, progressSpinner, select, a11y, portal, core, formField, coercion, platformBrowserDynamic, button, checkbox, datepicker, slideToggle, scrolling, card, list, sidenav, toolbar, bidi, menu, progressBar) { 'use strict';
5
+ })(this, (function (exports, common, http, i0, forms, i1, i2, platformBrowser, i1$1, rxjs, init, operators, paginator, sort, fileSaver, animations, reflectMetadata, collections, table, table$1, autocomplete, chips, icon, input, progressSpinner, select, a11y, portal, core, formField, coercion, platformBrowserDynamic, button, checkbox, datepicker, slideToggle, scrolling, card, list, sidenav, toolbar, bidi, menu, progressBar) { 'use strict';
6
6
 
7
7
  function _interopNamespace(e) {
8
8
  if (e && e.__esModule) return e;
@@ -13,14 +13,12 @@
13
13
  var d = Object.getOwnPropertyDescriptor(e, k);
14
14
  Object.defineProperty(n, k, d.get ? d : {
15
15
  enumerable: true,
16
- get: function () {
17
- return e[k];
18
- }
16
+ get: function () { return e[k]; }
19
17
  });
20
18
  }
21
19
  });
22
20
  }
23
- n['default'] = e;
21
+ n["default"] = e;
24
22
  return Object.freeze(n);
25
23
  }
26
24
 
@@ -352,6 +350,7 @@
352
350
  }
353
351
  return AppSetting;
354
352
  }());
353
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
355
354
  AppSetting.decorators = [
356
355
  { type: i0.Injectable }
357
356
  ];
@@ -390,14 +389,21 @@
390
389
  };
391
390
  return VdAlertDialogComponent;
392
391
  }());
392
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
393
393
  VdAlertDialogComponent.decorators = [
394
394
  { type: i0.Component, args: [{
395
395
  selector: 'vd-alert-dialog',
396
396
  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>",
397
- styles: ["@media (min-width:600px){vd-dialog{width:400px}}@media (max-width:599px){vd-dialog{width:250px}}"]
397
+ styles: ["@media (min-width: 600px){vd-dialog{width:400px}}@media (max-width: 599px){vd-dialog{width:250px}}\n"]
398
398
  },] }
399
399
  ];
400
- /** @nocollapse */
400
+ /**
401
+ * @type {function(): !Array<(null|{
402
+ * type: ?,
403
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
404
+ * })>}
405
+ * @nocollapse
406
+ */
401
407
  VdAlertDialogComponent.ctorParameters = function () { return [
402
408
  { type: i1.MatDialogRef }
403
409
  ]; };
@@ -427,14 +433,21 @@
427
433
  };
428
434
  return VdConfirmDialogComponent;
429
435
  }());
436
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
430
437
  VdConfirmDialogComponent.decorators = [
431
438
  { type: i0.Component, args: [{
432
439
  selector: 'vd-confirm-dialog',
433
440
  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>",
434
- styles: ["@media (min-width:600px){vd-dialog{width:400px}}@media (max-width:599px){vd-dialog{width:250px}}"]
441
+ styles: ["@media (min-width: 600px){vd-dialog{width:400px}}@media (max-width: 599px){vd-dialog{width:250px}}\n"]
435
442
  },] }
436
443
  ];
437
- /** @nocollapse */
444
+ /**
445
+ * @type {function(): !Array<(null|{
446
+ * type: ?,
447
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
448
+ * })>}
449
+ * @nocollapse
450
+ */
438
451
  VdConfirmDialogComponent.ctorParameters = function () { return [
439
452
  { type: i1.MatDialogRef }
440
453
  ]; };
@@ -464,14 +477,21 @@
464
477
  };
465
478
  return VdPromptDialogComponent;
466
479
  }());
480
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
467
481
  VdPromptDialogComponent.decorators = [
468
482
  { type: i0.Component, args: [{
469
483
  selector: 'vd-prompt-dialog',
470
484
  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>",
471
- styles: ["@media (min-width:600px){vd-dialog{width:400px}}@media (max-width:599px){vd-dialog{width:250px}}"]
485
+ styles: ["@media (min-width: 600px){vd-dialog{width:400px}}@media (max-width: 599px){vd-dialog{width:250px}}\n"]
472
486
  },] }
473
487
  ];
474
- /** @nocollapse */
488
+ /**
489
+ * @type {function(): !Array<(null|{
490
+ * type: ?,
491
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
492
+ * })>}
493
+ * @nocollapse
494
+ */
475
495
  VdPromptDialogComponent.ctorParameters = function () { return [
476
496
  { type: i1.MatDialogRef }
477
497
  ]; };
@@ -592,10 +612,17 @@
592
612
  return VdDialogService;
593
613
  }());
594
614
  /** @nocollapse */ VdDialogService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function VdDialogService_Factory() { return new VdDialogService(i0__namespace.ɵɵinject(i1__namespace.MatDialog)); }, token: VdDialogService, providedIn: "root" });
615
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
595
616
  VdDialogService.decorators = [
596
617
  { type: i0.Injectable, args: [{ providedIn: 'root' },] }
597
618
  ];
598
- /** @nocollapse */
619
+ /**
620
+ * @type {function(): !Array<(null|{
621
+ * type: ?,
622
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
623
+ * })>}
624
+ * @nocollapse
625
+ */
599
626
  VdDialogService.ctorParameters = function () { return [
600
627
  { type: i1.MatDialog }
601
628
  ]; };
@@ -706,10 +733,17 @@
706
733
  };
707
734
  return VdMediaService;
708
735
  }());
736
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
709
737
  VdMediaService.decorators = [
710
738
  { type: i0.Injectable }
711
739
  ];
712
- /** @nocollapse */
740
+ /**
741
+ * @type {function(): !Array<(null|{
742
+ * type: ?,
743
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
744
+ * })>}
745
+ * @nocollapse
746
+ */
713
747
  VdMediaService.ctorParameters = function () { return [
714
748
  { type: i0.NgZone }
715
749
  ]; };
@@ -918,6 +952,14 @@
918
952
  */
919
953
  this.changeDetectorRef.detectChanges();
920
954
  };
955
+ /**
956
+ * Refreshs this page/component
957
+ */
958
+ BaseComponent.prototype.reloadPage = function () {
959
+ var _this = this;
960
+ var currentUrl = this.router.url;
961
+ this.router.navigateByUrl('/', { skipLocationChange: true }).then(function () { return _this.router.navigate([currentUrl]); });
962
+ };
921
963
  /**
922
964
  * Retrieves an instance from the injector based on the provided token.
923
965
  * If not found:
@@ -1167,10 +1209,17 @@
1167
1209
  };
1168
1210
  return BaseComponent;
1169
1211
  }());
1212
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1170
1213
  BaseComponent.decorators = [
1171
1214
  { type: i0.Directive }
1172
1215
  ];
1173
- /** @nocollapse */
1216
+ /**
1217
+ * @type {function(): !Array<(null|{
1218
+ * type: ?,
1219
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
1220
+ * })>}
1221
+ * @nocollapse
1222
+ */
1174
1223
  BaseComponent.ctorParameters = function () { return [
1175
1224
  { type: i1$1.ActivatedRoute },
1176
1225
  { type: i0.ChangeDetectorRef }
@@ -1195,14 +1244,14 @@
1195
1244
  */
1196
1245
  Utils.removeEmptyValues = function (obj) {
1197
1246
  return Object.entries(obj)
1198
- .filter(function (_a) {
1199
- var _b = __read(_a, 2), _ = _b[0], v = _b[1];
1247
+ .filter(function (_f) {
1248
+ var _g = __read(_f, 2), _ = _g[0], v = _g[1];
1200
1249
  return v != null;
1201
1250
  })
1202
- .reduce(function (acc, _a) {
1203
- var _b;
1204
- var _c = __read(_a, 2), k = _c[0], v = _c[1];
1205
- return (Object.assign(Object.assign({}, acc), (_b = {}, _b[k] = v, _b)));
1251
+ .reduce(function (acc, _f) {
1252
+ var _g;
1253
+ var _h = __read(_f, 2), k = _h[0], v = _h[1];
1254
+ return (Object.assign(Object.assign({}, acc), (_g = {}, _g[k] = v, _g)));
1206
1255
  }, {});
1207
1256
  };
1208
1257
  /**
@@ -1296,6 +1345,32 @@
1296
1345
  catch (error) { }
1297
1346
  return obj;
1298
1347
  };
1348
+ /**
1349
+ * Gets the query params and the hash from the specified url
1350
+ * @param url
1351
+ * @returns
1352
+ */
1353
+ Utils.getUrlParts = function (url) {
1354
+ var _a, _b, _c, _d, _e;
1355
+ try {
1356
+ /* Get urls parts */
1357
+ var urlHashParts = (_a = url === null || url === void 0 ? void 0 : url.split('#')) !== null && _a !== void 0 ? _a : [];
1358
+ /* Get hash */
1359
+ var urlHash = (_b = urlHashParts[1]) !== null && _b !== void 0 ? _b : null;
1360
+ /* Get query parts */
1361
+ var urlQueryParts = (_c = urlHashParts[0]) === null || _c === void 0 ? void 0 : _c.split('?');
1362
+ /* Get query params as object */
1363
+ var urlParams = (_e = (_d = urlQueryParts[1]) === null || _d === void 0 ? void 0 : _d.split("&").reduce(function (prev, curr) {
1364
+ var p = curr.split("=");
1365
+ prev[decodeURIComponent(p[0])] = decodeURIComponent(p[1]);
1366
+ return prev;
1367
+ }, {})) !== null && _e !== void 0 ? _e : null;
1368
+ return { url: urlQueryParts[0], params: urlParams, hash: urlHash };
1369
+ }
1370
+ catch (error) {
1371
+ return { url: url, params: null, hash: null };
1372
+ }
1373
+ };
1299
1374
  return Utils;
1300
1375
  }());
1301
1376
  /**
@@ -1315,6 +1390,7 @@
1315
1390
  { name: 'November', id: 11 },
1316
1391
  { name: 'Dezember', id: 12 }
1317
1392
  ];
1393
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1318
1394
  Utils.decorators = [
1319
1395
  { type: i0.Directive }
1320
1396
  ];
@@ -1663,7 +1739,8 @@
1663
1739
  GenericFormComponent.prototype.back = function (action) {
1664
1740
  if (action === void 0) { action = exports.SaveAction.SaveAndClose; }
1665
1741
  if (action == exports.SaveAction.SaveAndClose && this.returnUrl) {
1666
- this.router.navigate([this.returnUrl]);
1742
+ var urlParts = Utils.getUrlParts(this.returnUrl);
1743
+ this.router.navigate([urlParts.url], { queryParams: urlParts.params, fragment: urlParts.hash });
1667
1744
  }
1668
1745
  else {
1669
1746
  if (this.isEditMode) {
@@ -1671,7 +1748,7 @@
1671
1748
  this.location.back();
1672
1749
  }
1673
1750
  else if (action == exports.SaveAction.SaveAndEdit) {
1674
- this.loadItem();
1751
+ this.reloadPage();
1675
1752
  }
1676
1753
  }
1677
1754
  else {
@@ -1808,16 +1885,24 @@
1808
1885
  };
1809
1886
  return GenericFormComponent;
1810
1887
  }(BaseComponent));
1888
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1811
1889
  GenericFormComponent.decorators = [
1812
1890
  { type: i0.Directive }
1813
1891
  ];
1814
- /** @nocollapse */
1892
+ /**
1893
+ * @type {function(): !Array<(null|{
1894
+ * type: ?,
1895
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
1896
+ * })>}
1897
+ * @nocollapse
1898
+ */
1815
1899
  GenericFormComponent.ctorParameters = function () { return [
1816
1900
  { type: undefined },
1817
1901
  { type: undefined },
1818
1902
  { type: i1$1.ActivatedRoute },
1819
1903
  { type: i0.ChangeDetectorRef }
1820
1904
  ]; };
1905
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
1821
1906
  GenericFormComponent.propDecorators = {
1822
1907
  input: [{ type: i0.ViewChildren, args: ['focus',] }],
1823
1908
  handleKeyboardEvent: [{ type: i0.HostListener, args: ['document:keydown', ['$event'],] }]
@@ -1880,6 +1965,7 @@
1880
1965
  return null;
1881
1966
  }
1882
1967
  };
1968
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1883
1969
  AppStorage.decorators = [
1884
1970
  { type: i0.Directive }
1885
1971
  ];
@@ -1931,10 +2017,17 @@
1931
2017
  return DynamicBuilder;
1932
2018
  }());
1933
2019
  /** @nocollapse */ DynamicBuilder.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function DynamicBuilder_Factory() { return new DynamicBuilder(i0__namespace.ɵɵinject(i0__namespace.Compiler)); }, token: DynamicBuilder, providedIn: "root" });
2020
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
1934
2021
  DynamicBuilder.decorators = [
1935
2022
  { type: i0.Injectable, args: [{ providedIn: 'root' },] }
1936
2023
  ];
1937
- /** @nocollapse */
2024
+ /**
2025
+ * @type {function(): !Array<(null|{
2026
+ * type: ?,
2027
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
2028
+ * })>}
2029
+ * @nocollapse
2030
+ */
1938
2031
  DynamicBuilder.ctorParameters = function () { return [
1939
2032
  { type: i0.Compiler }
1940
2033
  ]; };
@@ -2259,7 +2352,7 @@
2259
2352
  */
2260
2353
  VdDynamicTableComponent.prototype.hasVisibleActionMenus = function (row, column) {
2261
2354
  var _a, _b;
2262
- return ((_b = (_a = column === null || column === void 0 ? void 0 : column.actionMenus) === null || _a === void 0 ? void 0 : _a.filter(function (x) { return !x.hide(row); })) === null || _b === void 0 ? void 0 : _b.length) > 0;
2355
+ return ((_b = (_a = column === null || column === void 0 ? void 0 : column.actionMenus) === null || _a === void 0 ? void 0 : _a.filter(function (x) { return !x.hide || !x.hide(row); })) === null || _b === void 0 ? void 0 : _b.length) > 0;
2263
2356
  };
2264
2357
  /**
2265
2358
  * A function to to compute the identity of items in an iterable.
@@ -2305,6 +2398,7 @@
2305
2398
  };
2306
2399
  return VdDynamicTableComponent;
2307
2400
  }());
2401
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
2308
2402
  VdDynamicTableComponent.decorators = [
2309
2403
  { type: i0.Component, args: [{
2310
2404
  selector: 'vd-dynamic-table',
@@ -2318,10 +2412,17 @@
2318
2412
  ]
2319
2413
  },] }
2320
2414
  ];
2321
- /** @nocollapse */
2415
+ /**
2416
+ * @type {function(): !Array<(null|{
2417
+ * type: ?,
2418
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
2419
+ * })>}
2420
+ * @nocollapse
2421
+ */
2322
2422
  VdDynamicTableComponent.ctorParameters = function () { return [
2323
2423
  { type: DynamicBuilder }
2324
2424
  ]; };
2425
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
2325
2426
  VdDynamicTableComponent.propDecorators = {
2326
2427
  detailsTemplateRef: [{ type: i0.ViewChildren, args: ['detailsTemplate', { read: i0.ViewContainerRef },] }],
2327
2428
  dataSource: [{ type: i0.Input }],
@@ -3002,16 +3103,24 @@
3002
3103
  };
3003
3104
  return GenericListComponent;
3004
3105
  }(BaseComponent));
3106
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3005
3107
  GenericListComponent.decorators = [
3006
3108
  { type: i0.Directive }
3007
3109
  ];
3008
- /** @nocollapse */
3110
+ /**
3111
+ * @type {function(): !Array<(null|{
3112
+ * type: ?,
3113
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3114
+ * })>}
3115
+ * @nocollapse
3116
+ */
3009
3117
  GenericListComponent.ctorParameters = function () { return [
3010
3118
  { type: undefined },
3011
3119
  { type: i1$1.ActivatedRoute },
3012
3120
  { type: i0.ChangeDetectorRef },
3013
3121
  { type: undefined }
3014
3122
  ]; };
3123
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
3015
3124
  GenericListComponent.propDecorators = {
3016
3125
  paginator: [{ type: i0.ViewChild, args: [paginator.MatPaginator, { static: true },] }],
3017
3126
  sort: [{ type: i0.ViewChild, args: [sort.MatSort, { static: true },] }],
@@ -3146,10 +3255,17 @@
3146
3255
  return BaseInterceptor;
3147
3256
  }());
3148
3257
  /** @nocollapse */ BaseInterceptor.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function BaseInterceptor_Factory() { return new BaseInterceptor(i0__namespace.ɵɵinject(AppSetting), i0__namespace.ɵɵinject(i2__namespace.MatSnackBar)); }, token: BaseInterceptor, providedIn: "root" });
3258
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3149
3259
  BaseInterceptor.decorators = [
3150
3260
  { type: i0.Injectable, args: [{ providedIn: 'root' },] }
3151
3261
  ];
3152
- /** @nocollapse */
3262
+ /**
3263
+ * @type {function(): !Array<(null|{
3264
+ * type: ?,
3265
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3266
+ * })>}
3267
+ * @nocollapse
3268
+ */
3153
3269
  BaseInterceptor.ctorParameters = function () { return [
3154
3270
  { type: AppSetting },
3155
3271
  { type: i2.MatSnackBar }
@@ -3215,10 +3331,17 @@
3215
3331
  return CachingInterceptor;
3216
3332
  }());
3217
3333
  /** @nocollapse */ CachingInterceptor.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function CachingInterceptor_Factory() { return new CachingInterceptor(); }, token: CachingInterceptor, providedIn: "root" });
3334
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3218
3335
  CachingInterceptor.decorators = [
3219
3336
  { type: i0.Injectable, args: [{ providedIn: 'root' },] }
3220
3337
  ];
3221
- /** @nocollapse */
3338
+ /**
3339
+ * @type {function(): !Array<(null|{
3340
+ * type: ?,
3341
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3342
+ * })>}
3343
+ * @nocollapse
3344
+ */
3222
3345
  CachingInterceptor.ctorParameters = function () { return []; };
3223
3346
 
3224
3347
  var LoadingScreenService = /** @class */ (function () {
@@ -3264,6 +3387,7 @@
3264
3387
  return LoadingScreenService;
3265
3388
  }());
3266
3389
  /** @nocollapse */ LoadingScreenService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function LoadingScreenService_Factory() { return new LoadingScreenService(); }, token: LoadingScreenService, providedIn: "root" });
3390
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3267
3391
  LoadingScreenService.decorators = [
3268
3392
  { type: i0.Injectable, args: [{ providedIn: 'root' },] }
3269
3393
  ];
@@ -3333,10 +3457,17 @@
3333
3457
  ;
3334
3458
  return LoadingScreenInterceptor;
3335
3459
  }());
3460
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3336
3461
  LoadingScreenInterceptor.decorators = [
3337
3462
  { type: i0.Injectable }
3338
3463
  ];
3339
- /** @nocollapse */
3464
+ /**
3465
+ * @type {function(): !Array<(null|{
3466
+ * type: ?,
3467
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3468
+ * })>}
3469
+ * @nocollapse
3470
+ */
3340
3471
  LoadingScreenInterceptor.ctorParameters = function () { return [
3341
3472
  { type: LoadingScreenService }
3342
3473
  ]; };
@@ -3680,10 +3811,17 @@
3680
3811
  return FileService;
3681
3812
  }(GenericService));
3682
3813
  /** @nocollapse */ FileService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function FileService_Factory() { return new FileService(); }, token: FileService, providedIn: "root" });
3814
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3683
3815
  FileService.decorators = [
3684
3816
  { type: i0.Injectable, args: [{ providedIn: 'root' },] }
3685
3817
  ];
3686
- /** @nocollapse */
3818
+ /**
3819
+ * @type {function(): !Array<(null|{
3820
+ * type: ?,
3821
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3822
+ * })>}
3823
+ * @nocollapse
3824
+ */
3687
3825
  FileService.ctorParameters = function () { return []; };
3688
3826
 
3689
3827
  var PrintService = /** @class */ (function () {
@@ -3718,10 +3856,17 @@
3718
3856
  return PrintService;
3719
3857
  }());
3720
3858
  /** @nocollapse */ PrintService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function PrintService_Factory() { return new PrintService(i0__namespace.ɵɵinject(i1__namespace$1.Router)); }, token: PrintService, providedIn: "root" });
3859
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3721
3860
  PrintService.decorators = [
3722
3861
  { type: i0.Injectable, args: [{ providedIn: 'root' },] }
3723
3862
  ];
3724
- /** @nocollapse */
3863
+ /**
3864
+ * @type {function(): !Array<(null|{
3865
+ * type: ?,
3866
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
3867
+ * })>}
3868
+ * @nocollapse
3869
+ */
3725
3870
  PrintService.ctorParameters = function () { return [
3726
3871
  { type: i1$1.Router }
3727
3872
  ]; };
@@ -3733,6 +3878,7 @@
3733
3878
  }
3734
3879
  return VdBaseModule;
3735
3880
  }());
3881
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
3736
3882
  VdBaseModule.decorators = [
3737
3883
  { type: i0.NgModule, args: [{
3738
3884
  imports: [
@@ -4009,10 +4155,17 @@
4009
4155
  * The element ID
4010
4156
  */
4011
4157
  AbstractMatFormField.nextId = 0;
4158
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4012
4159
  AbstractMatFormField.decorators = [
4013
4160
  { type: i0.Directive }
4014
4161
  ];
4015
- /** @nocollapse */
4162
+ /**
4163
+ * @type {function(): !Array<(null|{
4164
+ * type: ?,
4165
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4166
+ * })>}
4167
+ * @nocollapse
4168
+ */
4016
4169
  AbstractMatFormField.ctorParameters = function () { return [
4017
4170
  { type: String },
4018
4171
  { type: forms.NgControl },
@@ -4022,6 +4175,7 @@
4022
4175
  { type: a11y.FocusMonitor },
4023
4176
  { type: i0.ElementRef }
4024
4177
  ]; };
4178
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
4025
4179
  AbstractMatFormField.propDecorators = {
4026
4180
  placeholder: [{ type: i0.Input }],
4027
4181
  required: [{ type: i0.Input }],
@@ -4042,10 +4196,17 @@
4042
4196
  }
4043
4197
  return VdChipDirective;
4044
4198
  }(portal.CdkPortal));
4199
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4045
4200
  VdChipDirective.decorators = [
4046
4201
  { type: i0.Directive, args: [{ selector: '[vd-chip]ng-template' },] }
4047
4202
  ];
4048
- /** @nocollapse */
4203
+ /**
4204
+ * @type {function(): !Array<(null|{
4205
+ * type: ?,
4206
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4207
+ * })>}
4208
+ * @nocollapse
4209
+ */
4049
4210
  VdChipDirective.ctorParameters = function () { return [
4050
4211
  { type: i0.TemplateRef },
4051
4212
  { type: i0.ViewContainerRef }
@@ -4060,10 +4221,17 @@
4060
4221
  }
4061
4222
  return VdAutocompleteOptionDirective;
4062
4223
  }(portal.CdkPortal));
4224
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4063
4225
  VdAutocompleteOptionDirective.decorators = [
4064
4226
  { type: i0.Directive, args: [{ selector: '[vd-autocomplete-option]ng-template' },] }
4065
4227
  ];
4066
- /** @nocollapse */
4228
+ /**
4229
+ * @type {function(): !Array<(null|{
4230
+ * type: ?,
4231
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4232
+ * })>}
4233
+ * @nocollapse
4234
+ */
4067
4235
  VdAutocompleteOptionDirective.ctorParameters = function () { return [
4068
4236
  { type: i0.TemplateRef },
4069
4237
  { type: i0.ViewContainerRef }
@@ -4418,6 +4586,7 @@
4418
4586
  };
4419
4587
  return VdChipsComponent;
4420
4588
  }(AbstractMatFormField));
4589
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4421
4590
  VdChipsComponent.decorators = [
4422
4591
  { type: i0.Component, args: [{
4423
4592
  selector: 'vd-chips',
@@ -4425,10 +4594,16 @@
4425
4594
  providers: [
4426
4595
  { provide: formField.MatFormFieldControl, useExisting: VdChipsComponent }
4427
4596
  ],
4428
- 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}"]
4597
+ 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"]
4429
4598
  },] }
4430
4599
  ];
4431
- /** @nocollapse */
4600
+ /**
4601
+ * @type {function(): !Array<(null|{
4602
+ * type: ?,
4603
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4604
+ * })>}
4605
+ * @nocollapse
4606
+ */
4432
4607
  VdChipsComponent.ctorParameters = function () { return [
4433
4608
  { type: i0.Injector },
4434
4609
  { type: forms.NgControl, decorators: [{ type: i0.Optional }, { type: i0.Self }] },
@@ -4438,6 +4613,7 @@
4438
4613
  { type: a11y.FocusMonitor },
4439
4614
  { type: i0.ElementRef }
4440
4615
  ]; };
4616
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
4441
4617
  VdChipsComponent.propDecorators = {
4442
4618
  chipInput: [{ type: i0.ViewChild, args: [input.MatInput, { static: true },] }],
4443
4619
  chips: [{ type: i0.Input }],
@@ -4479,6 +4655,7 @@
4479
4655
  }
4480
4656
  return VdChipsModule;
4481
4657
  }());
4658
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4482
4659
  VdChipsModule.decorators = [
4483
4660
  { type: i0.NgModule, args: [{
4484
4661
  imports: [
@@ -4523,13 +4700,21 @@
4523
4700
  });
4524
4701
  return DisableControlDirective;
4525
4702
  }());
4703
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4526
4704
  DisableControlDirective.decorators = [
4527
4705
  { type: i0.Directive, args: [{ selector: '[disableControl]' },] }
4528
4706
  ];
4529
- /** @nocollapse */
4707
+ /**
4708
+ * @type {function(): !Array<(null|{
4709
+ * type: ?,
4710
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4711
+ * })>}
4712
+ * @nocollapse
4713
+ */
4530
4714
  DisableControlDirective.ctorParameters = function () { return [
4531
4715
  { type: forms.NgControl }
4532
4716
  ]; };
4717
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
4533
4718
  DisableControlDirective.propDecorators = {
4534
4719
  disableControl: [{ type: i0.Input }]
4535
4720
  };
@@ -4542,6 +4727,7 @@
4542
4727
  };
4543
4728
  return DataSourcePipe;
4544
4729
  }());
4730
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4545
4731
  DataSourcePipe.decorators = [
4546
4732
  { type: i0.Pipe, args: [{ name: 'dataSource' },] }
4547
4733
  ];
@@ -4561,6 +4747,7 @@
4561
4747
  };
4562
4748
  return EnumPipe;
4563
4749
  }());
4750
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4564
4751
  EnumPipe.decorators = [
4565
4752
  { type: i0.Pipe, args: [{
4566
4753
  name: 'enum',
@@ -4600,6 +4787,7 @@
4600
4787
  };
4601
4788
  return FileSizePipe;
4602
4789
  }());
4790
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4603
4791
  FileSizePipe.decorators = [
4604
4792
  { type: i0.Pipe, args: [{ name: 'fileSize' },] }
4605
4793
  ];
@@ -4618,6 +4806,7 @@
4618
4806
  };
4619
4807
  return FilterPipe;
4620
4808
  }());
4809
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4621
4810
  FilterPipe.decorators = [
4622
4811
  { type: i0.Pipe, args: [{
4623
4812
  name: 'filter',
@@ -4639,6 +4828,7 @@
4639
4828
  };
4640
4829
  return FirstLetterPipe;
4641
4830
  }());
4831
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4642
4832
  FirstLetterPipe.decorators = [
4643
4833
  { type: i0.Pipe, args: [{
4644
4834
  name: 'firstLetter',
@@ -4659,6 +4849,7 @@
4659
4849
  };
4660
4850
  return KeysPipe;
4661
4851
  }());
4852
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4662
4853
  KeysPipe.decorators = [
4663
4854
  { type: i0.Pipe, args: [{ name: 'keys' },] }
4664
4855
  ];
@@ -4679,6 +4870,7 @@
4679
4870
  };
4680
4871
  return MonthNamePipe;
4681
4872
  }());
4873
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4682
4874
  MonthNamePipe.decorators = [
4683
4875
  { type: i0.Pipe, args: [{
4684
4876
  name: 'monthName',
@@ -4724,15 +4916,23 @@
4724
4916
  };
4725
4917
  return OnlyNumberDirective;
4726
4918
  }());
4919
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4727
4920
  OnlyNumberDirective.decorators = [
4728
4921
  { type: i0.Directive, args: [{
4729
4922
  selector: '[onlyNumber]'
4730
4923
  },] }
4731
4924
  ];
4732
- /** @nocollapse */
4925
+ /**
4926
+ * @type {function(): !Array<(null|{
4927
+ * type: ?,
4928
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
4929
+ * })>}
4930
+ * @nocollapse
4931
+ */
4733
4932
  OnlyNumberDirective.ctorParameters = function () { return [
4734
4933
  { type: i0.ElementRef }
4735
4934
  ]; };
4935
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
4736
4936
  OnlyNumberDirective.propDecorators = {
4737
4937
  onlyNumber: [{ type: i0.Input }],
4738
4938
  onKeyDown: [{ type: i0.HostListener, args: ['keydown', ['$event'],] }]
@@ -4915,6 +5115,7 @@
4915
5115
  };
4916
5116
  return OrderPipe;
4917
5117
  }());
5118
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4918
5119
  OrderPipe.decorators = [
4919
5120
  { type: i0.Pipe, args: [{
4920
5121
  name: 'orderBy',
@@ -4938,6 +5139,7 @@
4938
5139
  };
4939
5140
  return PlaceholderPipe;
4940
5141
  }());
5142
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4941
5143
  PlaceholderPipe.decorators = [
4942
5144
  { type: i0.Pipe, args: [{
4943
5145
  name: 'placeholder',
@@ -4967,10 +5169,17 @@
4967
5169
  };
4968
5170
  return SafeHtmlPipe;
4969
5171
  }());
5172
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4970
5173
  SafeHtmlPipe.decorators = [
4971
5174
  { type: i0.Pipe, args: [{ name: 'safeHtml' },] }
4972
5175
  ];
4973
- /** @nocollapse */
5176
+ /**
5177
+ * @type {function(): !Array<(null|{
5178
+ * type: ?,
5179
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
5180
+ * })>}
5181
+ * @nocollapse
5182
+ */
4974
5183
  SafeHtmlPipe.ctorParameters = function () { return [
4975
5184
  { type: platformBrowser.DomSanitizer }
4976
5185
  ]; };
@@ -4989,6 +5198,7 @@
4989
5198
  };
4990
5199
  return TimePipe;
4991
5200
  }());
5201
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
4992
5202
  TimePipe.decorators = [
4993
5203
  { type: i0.Pipe, args: [{ name: 'time' },] }
4994
5204
  ];
@@ -5001,6 +5211,7 @@
5001
5211
  };
5002
5212
  return TitleCase;
5003
5213
  }());
5214
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5004
5215
  TitleCase.decorators = [
5005
5216
  { type: i0.Pipe, args: [{ name: 'titlecase', pure: false },] }
5006
5217
  ];
@@ -5013,6 +5224,7 @@
5013
5224
  };
5014
5225
  return TruncatePipe;
5015
5226
  }());
5227
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5016
5228
  TruncatePipe.decorators = [
5017
5229
  { type: i0.Pipe, args: [{ name: 'truncate' },] }
5018
5230
  ];
@@ -5026,6 +5238,7 @@
5026
5238
  };
5027
5239
  return ValuesPipe;
5028
5240
  }());
5241
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5029
5242
  ValuesPipe.decorators = [
5030
5243
  { type: i0.Pipe, args: [{ name: 'values', pure: false },] }
5031
5244
  ];
@@ -5168,10 +5381,17 @@
5168
5381
  return BaseService;
5169
5382
  }(GenericService));
5170
5383
  /** @nocollapse */ BaseService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function BaseService_Factory() { return new BaseService(); }, token: BaseService, providedIn: "root" });
5384
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5171
5385
  BaseService.decorators = [
5172
5386
  { type: i0.Injectable, args: [{ providedIn: 'root' },] }
5173
5387
  ];
5174
- /** @nocollapse */
5388
+ /**
5389
+ * @type {function(): !Array<(null|{
5390
+ * type: ?,
5391
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
5392
+ * })>}
5393
+ * @nocollapse
5394
+ */
5175
5395
  BaseService.ctorParameters = function () { return []; };
5176
5396
 
5177
5397
  //@dynamic
@@ -5214,6 +5434,7 @@
5214
5434
  };
5215
5435
  return EnumService;
5216
5436
  }());
5437
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5217
5438
  EnumService.decorators = [
5218
5439
  { type: i0.Injectable }
5219
5440
  ];
@@ -5254,6 +5475,7 @@
5254
5475
  }
5255
5476
  return VdCommonModule;
5256
5477
  }());
5478
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5257
5479
  VdCommonModule.decorators = [
5258
5480
  { type: i0.NgModule, args: [{
5259
5481
  imports: [],
@@ -5268,6 +5490,7 @@
5268
5490
  }
5269
5491
  return VdDialogTitleDirective;
5270
5492
  }());
5493
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5271
5494
  VdDialogTitleDirective.decorators = [
5272
5495
  { type: i0.Directive, args: [{ selector: 'vd-dialog-title' },] }
5273
5496
  ];
@@ -5276,6 +5499,7 @@
5276
5499
  }
5277
5500
  return VdDialogContentDirective;
5278
5501
  }());
5502
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5279
5503
  VdDialogContentDirective.decorators = [
5280
5504
  { type: i0.Directive, args: [{ selector: 'vd-dialog-content' },] }
5281
5505
  ];
@@ -5284,6 +5508,7 @@
5284
5508
  }
5285
5509
  return VdDialogActionsDirective;
5286
5510
  }());
5511
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5287
5512
  VdDialogActionsDirective.decorators = [
5288
5513
  { type: i0.Directive, args: [{ selector: 'vd-dialog-actions' },] }
5289
5514
  ];
@@ -5303,13 +5528,15 @@
5303
5528
  };
5304
5529
  return VdDialogComponent;
5305
5530
  }());
5531
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5306
5532
  VdDialogComponent.decorators = [
5307
5533
  { type: i0.Component, args: [{
5308
5534
  selector: 'vd-dialog',
5309
5535
  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>",
5310
- 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}"]
5536
+ 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"]
5311
5537
  },] }
5312
5538
  ];
5539
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
5313
5540
  VdDialogComponent.propDecorators = {
5314
5541
  dialogTitle: [{ type: i0.ContentChildren, args: [VdDialogTitleDirective,] }],
5315
5542
  dialogContent: [{ type: i0.ContentChildren, args: [VdDialogContentDirective,] }],
@@ -5335,6 +5562,7 @@
5335
5562
  }
5336
5563
  return VdDialogsModule;
5337
5564
  }());
5565
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5338
5566
  VdDialogsModule.decorators = [
5339
5567
  { type: i0.NgModule, args: [{
5340
5568
  imports: [
@@ -5640,6 +5868,7 @@
5640
5868
  };
5641
5869
  return VdFileInputComponent;
5642
5870
  }());
5871
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5643
5872
  VdFileInputComponent.decorators = [
5644
5873
  { type: i0.Component, args: [{
5645
5874
  selector: '[vd-file-input]',
@@ -5650,7 +5879,13 @@
5650
5879
  styles: ["\n\t\t.btn-suffix .mat-button {\n\t\t\tposition: absolute;\n\t\t\tright: 0;\n\t\t\ttop: 0;\n\t\t}"]
5651
5880
  },] }
5652
5881
  ];
5653
- /** @nocollapse */
5882
+ /**
5883
+ * @type {function(): !Array<(null|{
5884
+ * type: ?,
5885
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
5886
+ * })>}
5887
+ * @nocollapse
5888
+ */
5654
5889
  VdFileInputComponent.ctorParameters = function () { return [
5655
5890
  { type: forms.NgControl },
5656
5891
  { type: a11y.FocusMonitor },
@@ -5658,6 +5893,7 @@
5658
5893
  { type: i0.Renderer2 },
5659
5894
  { type: i0.ChangeDetectorRef }
5660
5895
  ]; };
5896
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
5661
5897
  VdFileInputComponent.propDecorators = {
5662
5898
  accept: [{ type: i0.Input, args: ['accept',] }],
5663
5899
  onSelect: [{ type: i0.Output, args: ['select',] }],
@@ -5679,6 +5915,7 @@
5679
5915
  }
5680
5916
  return VdFileModule;
5681
5917
  }());
5918
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
5682
5919
  VdFileModule.decorators = [
5683
5920
  { type: i0.NgModule, args: [{
5684
5921
  imports: [
@@ -10359,9 +10596,11 @@
10359
10596
  };
10360
10597
  return BaseDirective;
10361
10598
  }());
10599
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
10362
10600
  BaseDirective.decorators = [
10363
10601
  { type: i0.Directive }
10364
10602
  ];
10603
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
10365
10604
  BaseDirective.propDecorators = {
10366
10605
  model: [{ type: i0.Input }]
10367
10606
  };
@@ -10373,15 +10612,23 @@
10373
10612
  ;
10374
10613
  return HtmlControlTemplateDirective;
10375
10614
  }());
10615
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
10376
10616
  HtmlControlTemplateDirective.decorators = [
10377
10617
  { type: i0.Directive, args: [{
10378
10618
  selector: '[htmlControlTemplate]'
10379
10619
  },] }
10380
10620
  ];
10381
- /** @nocollapse */
10621
+ /**
10622
+ * @type {function(): !Array<(null|{
10623
+ * type: ?,
10624
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
10625
+ * })>}
10626
+ * @nocollapse
10627
+ */
10382
10628
  HtmlControlTemplateDirective.ctorParameters = function () { return [
10383
10629
  { type: i0.TemplateRef }
10384
10630
  ]; };
10631
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
10385
10632
  HtmlControlTemplateDirective.propDecorators = {
10386
10633
  type: [{ type: i0.Input, args: ['htmlControlTemplate',] }]
10387
10634
  };
@@ -10567,11 +10814,13 @@
10567
10814
  };
10568
10815
  return RxwebFormDirective;
10569
10816
  }(BaseDirective));
10817
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
10570
10818
  RxwebFormDirective.decorators = [
10571
10819
  { type: i0.Directive, args: [{
10572
10820
  selector: '[formGroup],[rxwebForm]',
10573
10821
  },] }
10574
10822
  ];
10823
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
10575
10824
  RxwebFormDirective.propDecorators = {
10576
10825
  formGroup: [{ type: i0.Input }],
10577
10826
  ngForm: [{ type: i0.Input, args: ['rxwebForm',] }]
@@ -10587,6 +10836,7 @@
10587
10836
  };
10588
10837
  return AsyncValidationDirective;
10589
10838
  }());
10839
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
10590
10840
  AsyncValidationDirective.decorators = [
10591
10841
  { type: i0.Directive, args: [{
10592
10842
  selector: '[ngModel],[formControlName],[formControl]',
@@ -10597,6 +10847,7 @@
10597
10847
  }]
10598
10848
  },] }
10599
10849
  ];
10850
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
10600
10851
  AsyncValidationDirective.propDecorators = {
10601
10852
  async: [{ type: i0.Input }]
10602
10853
  };
@@ -10683,6 +10934,7 @@
10683
10934
  };
10684
10935
  return FileControlDirective;
10685
10936
  }());
10937
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
10686
10938
  FileControlDirective.decorators = [
10687
10939
  { type: i0.Directive, args: [{
10688
10940
  selector: "input[type=file]",
@@ -10697,10 +10949,17 @@
10697
10949
  }]
10698
10950
  },] }
10699
10951
  ];
10700
- /** @nocollapse */
10952
+ /**
10953
+ * @type {function(): !Array<(null|{
10954
+ * type: ?,
10955
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
10956
+ * })>}
10957
+ * @nocollapse
10958
+ */
10701
10959
  FileControlDirective.ctorParameters = function () { return [
10702
10960
  { type: i0.ElementRef }
10703
10961
  ]; };
10962
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
10704
10963
  FileControlDirective.propDecorators = {
10705
10964
  writeFile: [{ type: i0.Input }],
10706
10965
  extension: [{ type: i0.Input }],
@@ -10738,6 +10997,7 @@
10738
10997
  };
10739
10998
  return ImageFileControlDirective;
10740
10999
  }());
11000
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
10741
11001
  ImageFileControlDirective.decorators = [
10742
11002
  { type: i0.Directive, args: [{
10743
11003
  selector: "input[type=file]",
@@ -10748,10 +11008,17 @@
10748
11008
  }]
10749
11009
  },] }
10750
11010
  ];
10751
- /** @nocollapse */
11011
+ /**
11012
+ * @type {function(): !Array<(null|{
11013
+ * type: ?,
11014
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
11015
+ * })>}
11016
+ * @nocollapse
11017
+ */
10752
11018
  ImageFileControlDirective.ctorParameters = function () { return [
10753
11019
  { type: i0.ElementRef }
10754
11020
  ]; };
11021
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
10755
11022
  ImageFileControlDirective.propDecorators = {
10756
11023
  image: [{ type: i0.Input }]
10757
11024
  };
@@ -10800,10 +11067,17 @@
10800
11067
  };
10801
11068
  return DecimalProvider;
10802
11069
  }());
11070
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
10803
11071
  DecimalProvider.decorators = [
10804
11072
  { type: i0.Injectable }
10805
11073
  ];
10806
- /** @nocollapse */
11074
+ /**
11075
+ * @type {function(): !Array<(null|{
11076
+ * type: ?,
11077
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
11078
+ * })>}
11079
+ * @nocollapse
11080
+ */
10807
11081
  DecimalProvider.ctorParameters = function () { return [
10808
11082
  { type: common.DecimalPipe },
10809
11083
  { type: String, decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] }
@@ -11253,9 +11527,11 @@
11253
11527
  };
11254
11528
  return ControlExpressionProcess;
11255
11529
  }());
11530
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11256
11531
  ControlExpressionProcess.decorators = [
11257
11532
  { type: i0.Directive }
11258
11533
  ];
11534
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
11259
11535
  ControlExpressionProcess.propDecorators = {
11260
11536
  name: [{ type: i0.Input }],
11261
11537
  formControlName: [{ type: i0.Input }]
@@ -11305,9 +11581,11 @@
11305
11581
  };
11306
11582
  return BaseValidator;
11307
11583
  }(ControlExpressionProcess));
11584
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11308
11585
  BaseValidator.decorators = [
11309
11586
  { type: i0.Directive }
11310
11587
  ];
11588
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
11311
11589
  BaseValidator.propDecorators = {
11312
11590
  formControl: [{ type: i0.Input }]
11313
11591
  };
@@ -11475,18 +11753,26 @@
11475
11753
  };
11476
11754
  return RxFormControlDirective;
11477
11755
  }(BaseValidator));
11756
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11478
11757
  RxFormControlDirective.decorators = [
11479
11758
  { type: i0.Directive, args: [{
11480
11759
  selector: '[ngModel],[formControlName],[formControl]',
11481
11760
  providers: [NGMODEL_BINDING],
11482
11761
  },] }
11483
11762
  ];
11484
- /** @nocollapse */
11763
+ /**
11764
+ * @type {function(): !Array<(null|{
11765
+ * type: ?,
11766
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
11767
+ * })>}
11768
+ * @nocollapse
11769
+ */
11485
11770
  RxFormControlDirective.ctorParameters = function () { return [
11486
11771
  { type: i0.ElementRef },
11487
11772
  { type: i0.Renderer2 },
11488
11773
  { type: DecimalProvider }
11489
11774
  ]; };
11775
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
11490
11776
  RxFormControlDirective.propDecorators = {
11491
11777
  rxalpha: [{ type: i0.Input }],
11492
11778
  rxalphaNumeric: [{ type: i0.Input }],
@@ -11583,15 +11869,23 @@
11583
11869
  };
11584
11870
  return ControlHostDirective;
11585
11871
  }());
11872
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
11586
11873
  ControlHostDirective.decorators = [
11587
11874
  { type: i0.Directive, args: [{
11588
11875
  selector: '[controlHost]'
11589
11876
  },] }
11590
11877
  ];
11591
- /** @nocollapse */
11878
+ /**
11879
+ * @type {function(): !Array<(null|{
11880
+ * type: ?,
11881
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
11882
+ * })>}
11883
+ * @nocollapse
11884
+ */
11592
11885
  ControlHostDirective.ctorParameters = function () { return [
11593
11886
  { type: i0.ViewContainerRef }
11594
11887
  ]; };
11888
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
11595
11889
  ControlHostDirective.propDecorators = {
11596
11890
  portal: [{ type: i0.Input, args: ['controlHost',] }]
11597
11891
  };
@@ -12417,10 +12711,17 @@
12417
12711
  };
12418
12712
  return RxFormBuilder;
12419
12713
  }(BaseFormBuilder));
12714
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12420
12715
  RxFormBuilder.decorators = [
12421
12716
  { type: i0.Injectable }
12422
12717
  ];
12423
- /** @nocollapse */
12718
+ /**
12719
+ * @type {function(): !Array<(null|{
12720
+ * type: ?,
12721
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12722
+ * })>}
12723
+ * @nocollapse
12724
+ */
12424
12725
  RxFormBuilder.ctorParameters = function () { return []; };
12425
12726
 
12426
12727
  var TypedFormBuilder = /** @class */ (function () {
@@ -12436,10 +12737,17 @@
12436
12737
  };
12437
12738
  return TypedFormBuilder;
12438
12739
  }());
12740
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12439
12741
  TypedFormBuilder.decorators = [
12440
12742
  { type: i0.Injectable }
12441
12743
  ];
12442
- /** @nocollapse */
12744
+ /**
12745
+ * @type {function(): !Array<(null|{
12746
+ * type: ?,
12747
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12748
+ * })>}
12749
+ * @nocollapse
12750
+ */
12443
12751
  TypedFormBuilder.ctorParameters = function () { return []; };
12444
12752
 
12445
12753
  var RxReactiveFormsModule = /** @class */ (function () {
@@ -12448,6 +12756,7 @@
12448
12756
  RxReactiveFormsModule.forRoot = function () { return { ngModule: RxReactiveFormsModule, providers: [] }; };
12449
12757
  return RxReactiveFormsModule;
12450
12758
  }());
12759
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12451
12760
  RxReactiveFormsModule.decorators = [
12452
12761
  { type: i0.NgModule, args: [{
12453
12762
  declarations: [RxwebFormDirective, HtmlControlTemplateDirective, ControlHostDirective, RxFormControlDirective, FileControlDirective, ImageFileControlDirective, AsyncValidationDirective],
@@ -12465,6 +12774,7 @@
12465
12774
  ReactiveTypedFormsModule.forRoot = function () { return { ngModule: ReactiveTypedFormsModule, providers: [] }; };
12466
12775
  return ReactiveTypedFormsModule;
12467
12776
  }());
12777
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
12468
12778
  ReactiveTypedFormsModule.decorators = [
12469
12779
  { type: i0.NgModule, args: [{
12470
12780
  declarations: [],
@@ -12473,7 +12783,13 @@
12473
12783
  exports: [forms.ReactiveFormsModule, forms.FormsModule, forms.ReactiveFormsModule]
12474
12784
  },] }
12475
12785
  ];
12476
- /** @nocollapse */
12786
+ /**
12787
+ * @type {function(): !Array<(null|{
12788
+ * type: ?,
12789
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
12790
+ * })>}
12791
+ * @nocollapse
12792
+ */
12477
12793
  ReactiveTypedFormsModule.ctorParameters = function () { return []; };
12478
12794
 
12479
12795
  function baseValidator(config, type, validator) {
@@ -13009,10 +13325,17 @@
13009
13325
  }
13010
13326
  return VdSelectOptionDirective;
13011
13327
  }(portal.CdkPortal));
13328
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13012
13329
  VdSelectOptionDirective.decorators = [
13013
13330
  { type: i0.Directive, args: [{ selector: '[vd-select-option]ng-template' },] }
13014
13331
  ];
13015
- /** @nocollapse */
13332
+ /**
13333
+ * @type {function(): !Array<(null|{
13334
+ * type: ?,
13335
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13336
+ * })>}
13337
+ * @nocollapse
13338
+ */
13016
13339
  VdSelectOptionDirective.ctorParameters = function () { return [
13017
13340
  { type: i0.TemplateRef },
13018
13341
  { type: i0.ViewContainerRef }
@@ -13357,15 +13680,22 @@
13357
13680
  };
13358
13681
  return VdSelectComponent;
13359
13682
  }(AbstractMatFormField));
13683
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13360
13684
  VdSelectComponent.decorators = [
13361
13685
  { type: i0.Component, args: [{
13362
13686
  selector: 'vd-select',
13363
13687
  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>",
13364
13688
  providers: [{ provide: formField.MatFormFieldControl, useExisting: VdSelectComponent }],
13365
- 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}"]
13689
+ 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"]
13366
13690
  },] }
13367
13691
  ];
13368
- /** @nocollapse */
13692
+ /**
13693
+ * @type {function(): !Array<(null|{
13694
+ * type: ?,
13695
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13696
+ * })>}
13697
+ * @nocollapse
13698
+ */
13369
13699
  VdSelectComponent.ctorParameters = function () { return [
13370
13700
  { type: i0.Injector },
13371
13701
  { type: forms.NgControl, decorators: [{ type: i0.Optional }, { type: i0.Self }] },
@@ -13375,6 +13705,7 @@
13375
13705
  { type: a11y.FocusMonitor },
13376
13706
  { type: i0.ElementRef }
13377
13707
  ]; };
13708
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13378
13709
  VdSelectComponent.propDecorators = {
13379
13710
  optionTemplate: [{ type: i0.ContentChild, args: [VdSelectOptionDirective,] }],
13380
13711
  selectEl: [{ type: i0.ViewChild, args: [select.MatSelect, { static: false },] }],
@@ -13411,6 +13742,7 @@
13411
13742
  }
13412
13743
  return VdSelectModule;
13413
13744
  }());
13745
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13414
13746
  VdSelectModule.decorators = [
13415
13747
  { type: i0.NgModule, args: [{
13416
13748
  imports: [
@@ -13453,10 +13785,17 @@
13453
13785
  }
13454
13786
  return VdEditorDirective;
13455
13787
  }(portal.CdkPortal));
13788
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13456
13789
  VdEditorDirective.decorators = [
13457
13790
  { type: i0.Directive, args: [{ selector: '[vd-editor]ng-template' },] }
13458
13791
  ];
13459
- /** @nocollapse */
13792
+ /**
13793
+ * @type {function(): !Array<(null|{
13794
+ * type: ?,
13795
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13796
+ * })>}
13797
+ * @nocollapse
13798
+ */
13460
13799
  VdEditorDirective.ctorParameters = function () { return [
13461
13800
  { type: i0.TemplateRef },
13462
13801
  { type: i0.ViewContainerRef }
@@ -13471,10 +13810,17 @@
13471
13810
  }
13472
13811
  return VdCodeDirective;
13473
13812
  }(portal.CdkPortal));
13813
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13474
13814
  VdCodeDirective.decorators = [
13475
13815
  { type: i0.Directive, args: [{ selector: '[vd-code]ng-template' },] }
13476
13816
  ];
13477
- /** @nocollapse */
13817
+ /**
13818
+ * @type {function(): !Array<(null|{
13819
+ * type: ?,
13820
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13821
+ * })>}
13822
+ * @nocollapse
13823
+ */
13478
13824
  VdCodeDirective.ctorParameters = function () { return [
13479
13825
  { type: i0.TemplateRef },
13480
13826
  { type: i0.ViewContainerRef }
@@ -13489,10 +13835,17 @@
13489
13835
  }
13490
13836
  return VdFileDirective;
13491
13837
  }(portal.CdkPortal));
13838
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13492
13839
  VdFileDirective.decorators = [
13493
13840
  { type: i0.Directive, args: [{ selector: '[vd-file]ng-template' },] }
13494
13841
  ];
13495
- /** @nocollapse */
13842
+ /**
13843
+ * @type {function(): !Array<(null|{
13844
+ * type: ?,
13845
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13846
+ * })>}
13847
+ * @nocollapse
13848
+ */
13496
13849
  VdFileDirective.ctorParameters = function () { return [
13497
13850
  { type: i0.TemplateRef },
13498
13851
  { type: i0.ViewContainerRef }
@@ -13507,10 +13860,17 @@
13507
13860
  }
13508
13861
  return VdCustomDirective;
13509
13862
  }(portal.CdkPortal));
13863
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13510
13864
  VdCustomDirective.decorators = [
13511
13865
  { type: i0.Directive, args: [{ selector: '[vd-custom]ng-template' },] }
13512
13866
  ];
13513
- /** @nocollapse */
13867
+ /**
13868
+ * @type {function(): !Array<(null|{
13869
+ * type: ?,
13870
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13871
+ * })>}
13872
+ * @nocollapse
13873
+ */
13514
13874
  VdCustomDirective.ctorParameters = function () { return [
13515
13875
  { type: i0.TemplateRef },
13516
13876
  { type: i0.ViewContainerRef }
@@ -13536,6 +13896,7 @@
13536
13896
  };
13537
13897
  return VdGenericFormComponent;
13538
13898
  }());
13899
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13539
13900
  VdGenericFormComponent.decorators = [
13540
13901
  { type: i0.Component, args: [{
13541
13902
  selector: 'vd-generic-form',
@@ -13543,6 +13904,7 @@
13543
13904
  styles: [""]
13544
13905
  },] }
13545
13906
  ];
13907
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13546
13908
  VdGenericFormComponent.propDecorators = {
13547
13909
  formGroup: [{ type: i0.Input }],
13548
13910
  fieldGroups: [{ type: i0.Input }],
@@ -13573,13 +13935,20 @@
13573
13935
  };
13574
13936
  return MatFormFieldReadonlyDirective;
13575
13937
  }());
13938
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13576
13939
  MatFormFieldReadonlyDirective.decorators = [
13577
13940
  { type: i0.Directive, args: [{
13578
13941
  selector: 'mat-form-field',
13579
13942
  host: { '[class.mat-form-field-readonly]': 'isReadonlyInput()' }
13580
13943
  },] }
13581
13944
  ];
13582
- /** @nocollapse */
13945
+ /**
13946
+ * @type {function(): !Array<(null|{
13947
+ * type: ?,
13948
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
13949
+ * })>}
13950
+ * @nocollapse
13951
+ */
13583
13952
  MatFormFieldReadonlyDirective.ctorParameters = function () { return [
13584
13953
  { type: formField.MatFormField }
13585
13954
  ]; };
@@ -13637,6 +14006,7 @@
13637
14006
  };
13638
14007
  return EqualValidator;
13639
14008
  }());
14009
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13640
14010
  EqualValidator.decorators = [
13641
14011
  { type: i0.Directive, args: [{
13642
14012
  selector: '[validateEqual][formControlName],[validateEqual][formControl],[validateEqual][ngModel]',
@@ -13649,7 +14019,13 @@
13649
14019
  ]
13650
14020
  },] }
13651
14021
  ];
13652
- /** @nocollapse */
14022
+ /**
14023
+ * @type {function(): !Array<(null|{
14024
+ * type: ?,
14025
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14026
+ * })>}
14027
+ * @nocollapse
14028
+ */
13653
14029
  EqualValidator.ctorParameters = function () { return [
13654
14030
  { type: String, decorators: [{ type: i0.Attribute, args: ['validateEqual',] }] },
13655
14031
  { type: String, decorators: [{ type: i0.Attribute, args: ['reverse',] }] }
@@ -13675,10 +14051,17 @@
13675
14051
  }
13676
14052
  return NativeElementInjectorDirective;
13677
14053
  }());
14054
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13678
14055
  NativeElementInjectorDirective.decorators = [
13679
14056
  { type: i0.Directive, args: [{ selector: '[ngModel]' },] }
13680
14057
  ];
13681
- /** @nocollapse */
14058
+ /**
14059
+ * @type {function(): !Array<(null|{
14060
+ * type: ?,
14061
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14062
+ * })>}
14063
+ * @nocollapse
14064
+ */
13682
14065
  NativeElementInjectorDirective.ctorParameters = function () { return [
13683
14066
  { type: i0.ElementRef },
13684
14067
  { type: forms.NgControl },
@@ -13734,17 +14117,25 @@
13734
14117
  };
13735
14118
  return UniqueValidatorDirective;
13736
14119
  }());
14120
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
13737
14121
  UniqueValidatorDirective.decorators = [
13738
14122
  { type: i0.Directive, args: [{
13739
14123
  selector: '[unique]',
13740
14124
  providers: [{ provide: forms.NG_ASYNC_VALIDATORS, useExisting: UniqueValidatorDirective, multi: true }]
13741
14125
  },] }
13742
14126
  ];
13743
- /** @nocollapse */
14127
+ /**
14128
+ * @type {function(): !Array<(null|{
14129
+ * type: ?,
14130
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14131
+ * })>}
14132
+ * @nocollapse
14133
+ */
13744
14134
  UniqueValidatorDirective.ctorParameters = function () { return [
13745
14135
  { type: http.HttpClient },
13746
14136
  { type: String, decorators: [{ type: i0.Attribute, args: ['unique',] }] }
13747
14137
  ]; };
14138
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
13748
14139
  UniqueValidatorDirective.propDecorators = {
13749
14140
  uniqueProperty: [{ type: i0.Input }],
13750
14141
  uniqueId: [{ type: i0.Input }],
@@ -14050,9 +14441,11 @@
14050
14441
  };
14051
14442
  return ValueAccessorBase;
14052
14443
  }(formField.MatFormFieldControl));
14444
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14053
14445
  ValueAccessorBase.decorators = [
14054
14446
  { type: i0.Directive }
14055
14447
  ];
14448
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14056
14449
  ValueAccessorBase.propDecorators = {
14057
14450
  describedBy: [{ type: i0.HostBinding, args: ['attr.aria-describedby',] }]
14058
14451
  };
@@ -14073,6 +14466,7 @@
14073
14466
  }
14074
14467
  return VdFormsModule;
14075
14468
  }());
14469
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14076
14470
  VdFormsModule.decorators = [
14077
14471
  { type: i0.NgModule, args: [{
14078
14472
  imports: [
@@ -14102,6 +14496,7 @@
14102
14496
  }
14103
14497
  return VdHttpModule;
14104
14498
  }());
14499
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14105
14500
  VdHttpModule.decorators = [
14106
14501
  { type: i0.NgModule, args: [{
14107
14502
  imports: [
@@ -14129,13 +14524,15 @@
14129
14524
  }
14130
14525
  return VdLayoutCardOverComponent;
14131
14526
  }());
14527
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14132
14528
  VdLayoutCardOverComponent.decorators = [
14133
14529
  { type: i0.Component, args: [{
14134
14530
  selector: 'vd-layout-card-over',
14135
14531
  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>",
14136
- 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}}"]
14532
+ 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"]
14137
14533
  },] }
14138
14534
  ];
14535
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14139
14536
  VdLayoutCardOverComponent.propDecorators = {
14140
14537
  cardTitle: [{ type: i0.Input, args: ['cardTitle',] }],
14141
14538
  cardSubtitle: [{ type: i0.Input, args: ['cardSubtitle',] }],
@@ -14170,19 +14567,27 @@
14170
14567
  });
14171
14568
  return VdLayoutFooterComponent;
14172
14569
  }());
14570
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14173
14571
  VdLayoutFooterComponent.decorators = [
14174
14572
  { type: i0.Component, args: [{
14175
14573
  /* tslint:disable-next-line */
14176
14574
  selector: 'vd-layout-footer,vd-layout-footer-inner',
14177
14575
  template: "<ng-content></ng-content>",
14178
- styles: [":host{display:block;padding:10px 16px}"]
14576
+ styles: [":host{display:block;padding:10px 16px}\n"]
14179
14577
  },] }
14180
14578
  ];
14181
- /** @nocollapse */
14579
+ /**
14580
+ * @type {function(): !Array<(null|{
14581
+ * type: ?,
14582
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14583
+ * })>}
14584
+ * @nocollapse
14585
+ */
14182
14586
  VdLayoutFooterComponent.ctorParameters = function () { return [
14183
14587
  { type: i0.Renderer2 },
14184
14588
  { type: i0.ElementRef }
14185
14589
  ]; };
14590
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14186
14591
  VdLayoutFooterComponent.propDecorators = {
14187
14592
  color: [{ type: i0.Input, args: ['color',] }]
14188
14593
  };
@@ -14286,17 +14691,25 @@
14286
14691
  };
14287
14692
  return VdLayoutManageListComponent;
14288
14693
  }());
14694
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14289
14695
  VdLayoutManageListComponent.decorators = [
14290
14696
  { type: i0.Component, args: [{
14291
14697
  selector: 'vd-layout-manage-list',
14292
14698
  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>",
14293
- 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}"]
14699
+ 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"]
14294
14700
  },] }
14295
14701
  ];
14296
- /** @nocollapse */
14702
+ /**
14703
+ * @type {function(): !Array<(null|{
14704
+ * type: ?,
14705
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14706
+ * })>}
14707
+ * @nocollapse
14708
+ */
14297
14709
  VdLayoutManageListComponent.ctorParameters = function () { return [
14298
14710
  { type: VdMediaService }
14299
14711
  ]; };
14712
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14300
14713
  VdLayoutManageListComponent.propDecorators = {
14301
14714
  sidenav: [{ type: i0.ViewChild, args: [sidenav.MatSidenav, { static: true },] }],
14302
14715
  mode: [{ type: i0.Input, args: ['mode',] }],
@@ -14374,15 +14787,23 @@
14374
14787
  };
14375
14788
  return LayoutToggle;
14376
14789
  }());
14790
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14377
14791
  LayoutToggle.decorators = [
14378
14792
  { type: i0.Directive }
14379
14793
  ];
14380
- /** @nocollapse */
14794
+ /**
14795
+ * @type {function(): !Array<(null|{
14796
+ * type: ?,
14797
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14798
+ * })>}
14799
+ * @nocollapse
14800
+ */
14381
14801
  LayoutToggle.ctorParameters = function () { return [
14382
14802
  { type: undefined },
14383
14803
  { type: i0.Renderer2 },
14384
14804
  { type: i0.ElementRef }
14385
14805
  ]; };
14806
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14386
14807
  LayoutToggle.propDecorators = {
14387
14808
  hideWhenOpened: [{ type: i0.Input, args: ['hideWhenOpened',] }],
14388
14809
  clickListener: [{ type: i0.HostListener, args: ['click', ['$event'],] }]
@@ -14405,17 +14826,25 @@
14405
14826
  };
14406
14827
  return VdLayoutManageListToggleDirective;
14407
14828
  }(LayoutToggle));
14829
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14408
14830
  VdLayoutManageListToggleDirective.decorators = [
14409
14831
  { type: i0.Directive, args: [{
14410
14832
  selector: '[vdLayoutManageListToggle]',
14411
14833
  },] }
14412
14834
  ];
14413
- /** @nocollapse */
14835
+ /**
14836
+ * @type {function(): !Array<(null|{
14837
+ * type: ?,
14838
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14839
+ * })>}
14840
+ * @nocollapse
14841
+ */
14414
14842
  VdLayoutManageListToggleDirective.ctorParameters = function () { return [
14415
14843
  { type: VdLayoutManageListComponent, decorators: [{ type: i0.Inject, args: [i0.forwardRef(function () { return VdLayoutManageListComponent; }),] }] },
14416
14844
  { type: i0.Renderer2 },
14417
14845
  { type: i0.ElementRef }
14418
14846
  ]; };
14847
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14419
14848
  VdLayoutManageListToggleDirective.propDecorators = {
14420
14849
  vdLayoutManageListToggle: [{ type: i0.Input, args: ['vdLayoutManageListToggle',] }]
14421
14850
  };
@@ -14436,17 +14865,25 @@
14436
14865
  };
14437
14866
  return VdLayoutManageListCloseDirective;
14438
14867
  }(LayoutToggle));
14868
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14439
14869
  VdLayoutManageListCloseDirective.decorators = [
14440
14870
  { type: i0.Directive, args: [{
14441
14871
  selector: '[vdLayoutManageListClose]',
14442
14872
  },] }
14443
14873
  ];
14444
- /** @nocollapse */
14874
+ /**
14875
+ * @type {function(): !Array<(null|{
14876
+ * type: ?,
14877
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14878
+ * })>}
14879
+ * @nocollapse
14880
+ */
14445
14881
  VdLayoutManageListCloseDirective.ctorParameters = function () { return [
14446
14882
  { type: VdLayoutManageListComponent, decorators: [{ type: i0.Inject, args: [i0.forwardRef(function () { return VdLayoutManageListComponent; }),] }] },
14447
14883
  { type: i0.Renderer2 },
14448
14884
  { type: i0.ElementRef }
14449
14885
  ]; };
14886
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14450
14887
  VdLayoutManageListCloseDirective.propDecorators = {
14451
14888
  vdLayoutManageListClose: [{ type: i0.Input, args: ['vdLayoutManageListClose',] }]
14452
14889
  };
@@ -14467,17 +14904,25 @@
14467
14904
  };
14468
14905
  return VdLayoutManageListOpenDirective;
14469
14906
  }(LayoutToggle));
14907
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14470
14908
  VdLayoutManageListOpenDirective.decorators = [
14471
14909
  { type: i0.Directive, args: [{
14472
14910
  selector: '[vdLayoutManageListOpen]',
14473
14911
  },] }
14474
14912
  ];
14475
- /** @nocollapse */
14913
+ /**
14914
+ * @type {function(): !Array<(null|{
14915
+ * type: ?,
14916
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
14917
+ * })>}
14918
+ * @nocollapse
14919
+ */
14476
14920
  VdLayoutManageListOpenDirective.ctorParameters = function () { return [
14477
14921
  { type: VdLayoutManageListComponent, decorators: [{ type: i0.Inject, args: [i0.forwardRef(function () { return VdLayoutManageListComponent; }),] }] },
14478
14922
  { type: i0.Renderer2 },
14479
14923
  { type: i0.ElementRef }
14480
14924
  ]; };
14925
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14481
14926
  VdLayoutManageListOpenDirective.propDecorators = {
14482
14927
  vdLayoutManageListOpen: [{ type: i0.Input, args: ['vdLayoutManageListOpen',] }]
14483
14928
  };
@@ -14568,17 +15013,25 @@
14568
15013
  };
14569
15014
  return VdLayoutNavListComponent;
14570
15015
  }());
15016
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14571
15017
  VdLayoutNavListComponent.decorators = [
14572
15018
  { type: i0.Component, args: [{
14573
15019
  selector: 'vd-layout-nav-list',
14574
15020
  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>",
14575
- 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}"]
15021
+ 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"]
14576
15022
  },] }
14577
15023
  ];
14578
- /** @nocollapse */
15024
+ /**
15025
+ * @type {function(): !Array<(null|{
15026
+ * type: ?,
15027
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15028
+ * })>}
15029
+ * @nocollapse
15030
+ */
14579
15031
  VdLayoutNavListComponent.ctorParameters = function () { return [
14580
15032
  { type: i1$1.Router, decorators: [{ type: i0.Optional }] }
14581
15033
  ]; };
15034
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14582
15035
  VdLayoutNavListComponent.propDecorators = {
14583
15036
  sidenav: [{ type: i0.ViewChild, args: [sidenav.MatSidenav, { static: true },] }],
14584
15037
  toolbarTitle: [{ type: i0.Input, args: ['toolbarTitle',] }],
@@ -14608,17 +15061,25 @@
14608
15061
  };
14609
15062
  return VdLayoutNavListToggleDirective;
14610
15063
  }(LayoutToggle));
15064
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14611
15065
  VdLayoutNavListToggleDirective.decorators = [
14612
15066
  { type: i0.Directive, args: [{
14613
15067
  selector: '[vdLayoutNavListToggle]',
14614
15068
  },] }
14615
15069
  ];
14616
- /** @nocollapse */
15070
+ /**
15071
+ * @type {function(): !Array<(null|{
15072
+ * type: ?,
15073
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15074
+ * })>}
15075
+ * @nocollapse
15076
+ */
14617
15077
  VdLayoutNavListToggleDirective.ctorParameters = function () { return [
14618
15078
  { type: VdLayoutNavListComponent, decorators: [{ type: i0.Inject, args: [i0.forwardRef(function () { return VdLayoutNavListComponent; }),] }] },
14619
15079
  { type: i0.Renderer2 },
14620
15080
  { type: i0.ElementRef }
14621
15081
  ]; };
15082
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14622
15083
  VdLayoutNavListToggleDirective.propDecorators = {
14623
15084
  vdLayoutNavListToggle: [{ type: i0.Input, args: ['vdLayoutNavListToggle',] }]
14624
15085
  };
@@ -14639,17 +15100,25 @@
14639
15100
  };
14640
15101
  return VdLayoutNavListCloseDirective;
14641
15102
  }(LayoutToggle));
15103
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14642
15104
  VdLayoutNavListCloseDirective.decorators = [
14643
15105
  { type: i0.Directive, args: [{
14644
15106
  selector: '[vdLayoutNavListClose]',
14645
15107
  },] }
14646
15108
  ];
14647
- /** @nocollapse */
15109
+ /**
15110
+ * @type {function(): !Array<(null|{
15111
+ * type: ?,
15112
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15113
+ * })>}
15114
+ * @nocollapse
15115
+ */
14648
15116
  VdLayoutNavListCloseDirective.ctorParameters = function () { return [
14649
15117
  { type: VdLayoutNavListComponent, decorators: [{ type: i0.Inject, args: [i0.forwardRef(function () { return VdLayoutNavListComponent; }),] }] },
14650
15118
  { type: i0.Renderer2 },
14651
15119
  { type: i0.ElementRef }
14652
15120
  ]; };
15121
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14653
15122
  VdLayoutNavListCloseDirective.propDecorators = {
14654
15123
  vdLayoutNavListClose: [{ type: i0.Input, args: ['vdLayoutNavListClose',] }]
14655
15124
  };
@@ -14670,17 +15139,25 @@
14670
15139
  };
14671
15140
  return VdLayoutNavListOpenDirective;
14672
15141
  }(LayoutToggle));
15142
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14673
15143
  VdLayoutNavListOpenDirective.decorators = [
14674
15144
  { type: i0.Directive, args: [{
14675
15145
  selector: '[vdLayoutNavListOpen]',
14676
15146
  },] }
14677
15147
  ];
14678
- /** @nocollapse */
15148
+ /**
15149
+ * @type {function(): !Array<(null|{
15150
+ * type: ?,
15151
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15152
+ * })>}
15153
+ * @nocollapse
15154
+ */
14679
15155
  VdLayoutNavListOpenDirective.ctorParameters = function () { return [
14680
15156
  { type: VdLayoutNavListComponent, decorators: [{ type: i0.Inject, args: [i0.forwardRef(function () { return VdLayoutNavListComponent; }),] }] },
14681
15157
  { type: i0.Renderer2 },
14682
15158
  { type: i0.ElementRef }
14683
15159
  ]; };
15160
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14684
15161
  VdLayoutNavListOpenDirective.propDecorators = {
14685
15162
  vdLayoutNavListOpen: [{ type: i0.Input, args: ['vdLayoutNavListOpen',] }]
14686
15163
  };
@@ -14720,17 +15197,25 @@
14720
15197
  };
14721
15198
  return VdLayoutNavComponent;
14722
15199
  }());
15200
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14723
15201
  VdLayoutNavComponent.decorators = [
14724
15202
  { type: i0.Component, args: [{
14725
15203
  selector: 'vd-layout-nav',
14726
15204
  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>",
14727
- 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}"]
15205
+ 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"]
14728
15206
  },] }
14729
15207
  ];
14730
- /** @nocollapse */
15208
+ /**
15209
+ * @type {function(): !Array<(null|{
15210
+ * type: ?,
15211
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15212
+ * })>}
15213
+ * @nocollapse
15214
+ */
14731
15215
  VdLayoutNavComponent.ctorParameters = function () { return [
14732
15216
  { type: i1$1.Router, decorators: [{ type: i0.Optional }] }
14733
15217
  ]; };
15218
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14734
15219
  VdLayoutNavComponent.propDecorators = {
14735
15220
  toolbarTitle: [{ type: i0.Input, args: ['toolbarTitle',] }],
14736
15221
  icon: [{ type: i0.Input, args: ['icon',] }],
@@ -14803,13 +15288,15 @@
14803
15288
  };
14804
15289
  return VdLayoutComponent;
14805
15290
  }());
15291
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14806
15292
  VdLayoutComponent.decorators = [
14807
15293
  { type: i0.Component, args: [{
14808
15294
  selector: 'vd-layout',
14809
15295
  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>",
14810
- 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}"]
15296
+ 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"]
14811
15297
  },] }
14812
15298
  ];
15299
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14813
15300
  VdLayoutComponent.propDecorators = {
14814
15301
  sidenav: [{ type: i0.ViewChild, args: [sidenav.MatSidenav, { static: true },] }],
14815
15302
  mode: [{ type: i0.Input, args: ['mode',] }],
@@ -14834,17 +15321,25 @@
14834
15321
  };
14835
15322
  return VdLayoutToggleDirective;
14836
15323
  }(LayoutToggle));
15324
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14837
15325
  VdLayoutToggleDirective.decorators = [
14838
15326
  { type: i0.Directive, args: [{
14839
15327
  selector: '[vdLayoutToggle]',
14840
15328
  },] }
14841
15329
  ];
14842
- /** @nocollapse */
15330
+ /**
15331
+ * @type {function(): !Array<(null|{
15332
+ * type: ?,
15333
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15334
+ * })>}
15335
+ * @nocollapse
15336
+ */
14843
15337
  VdLayoutToggleDirective.ctorParameters = function () { return [
14844
15338
  { type: VdLayoutComponent, decorators: [{ type: i0.Inject, args: [i0.forwardRef(function () { return VdLayoutComponent; }),] }] },
14845
15339
  { type: i0.Renderer2 },
14846
15340
  { type: i0.ElementRef }
14847
15341
  ]; };
15342
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14848
15343
  VdLayoutToggleDirective.propDecorators = {
14849
15344
  vdLayoutToggle: [{ type: i0.Input, args: ['vdLayoutToggle',] }]
14850
15345
  };
@@ -14865,17 +15360,25 @@
14865
15360
  };
14866
15361
  return VdLayoutCloseDirective;
14867
15362
  }(LayoutToggle));
15363
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14868
15364
  VdLayoutCloseDirective.decorators = [
14869
15365
  { type: i0.Directive, args: [{
14870
15366
  selector: '[vdLayoutClose]',
14871
15367
  },] }
14872
15368
  ];
14873
- /** @nocollapse */
15369
+ /**
15370
+ * @type {function(): !Array<(null|{
15371
+ * type: ?,
15372
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15373
+ * })>}
15374
+ * @nocollapse
15375
+ */
14874
15376
  VdLayoutCloseDirective.ctorParameters = function () { return [
14875
15377
  { type: VdLayoutComponent, decorators: [{ type: i0.Inject, args: [i0.forwardRef(function () { return VdLayoutComponent; }),] }] },
14876
15378
  { type: i0.Renderer2 },
14877
15379
  { type: i0.ElementRef }
14878
15380
  ]; };
15381
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14879
15382
  VdLayoutCloseDirective.propDecorators = {
14880
15383
  vdLayoutClose: [{ type: i0.Input, args: ['vdLayoutClose',] }]
14881
15384
  };
@@ -14896,17 +15399,25 @@
14896
15399
  };
14897
15400
  return VdLayoutOpenDirective;
14898
15401
  }(LayoutToggle));
15402
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14899
15403
  VdLayoutOpenDirective.decorators = [
14900
15404
  { type: i0.Directive, args: [{
14901
15405
  selector: '[vdLayoutOpen]',
14902
15406
  },] }
14903
15407
  ];
14904
- /** @nocollapse */
15408
+ /**
15409
+ * @type {function(): !Array<(null|{
15410
+ * type: ?,
15411
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15412
+ * })>}
15413
+ * @nocollapse
15414
+ */
14905
15415
  VdLayoutOpenDirective.ctorParameters = function () { return [
14906
15416
  { type: VdLayoutComponent, decorators: [{ type: i0.Inject, args: [i0.forwardRef(function () { return VdLayoutComponent; }),] }] },
14907
15417
  { type: i0.Renderer2 },
14908
15418
  { type: i0.ElementRef }
14909
15419
  ]; };
15420
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
14910
15421
  VdLayoutOpenDirective.propDecorators = {
14911
15422
  vdLayoutClose: [{ type: i0.Input, args: ['vdLayoutOpen',] }]
14912
15423
  };
@@ -14960,6 +15471,7 @@
14960
15471
  }
14961
15472
  return VdNavigationDrawerMenuDirective;
14962
15473
  }());
15474
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14963
15475
  VdNavigationDrawerMenuDirective.decorators = [
14964
15476
  { type: i0.Directive, args: [{
14965
15477
  selector: '[vd-navigation-drawer-menu]',
@@ -14970,6 +15482,7 @@
14970
15482
  }
14971
15483
  return VdNavigationDrawerToolbarDirective;
14972
15484
  }());
15485
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
14973
15486
  VdNavigationDrawerToolbarDirective.decorators = [
14974
15487
  { type: i0.Directive, args: [{
14975
15488
  selector: '[vd-navigation-drawer-toolbar]',
@@ -15097,20 +15610,28 @@
15097
15610
  };
15098
15611
  return VdNavigationDrawerComponent;
15099
15612
  }());
15613
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15100
15614
  VdNavigationDrawerComponent.decorators = [
15101
15615
  { type: i0.Component, args: [{
15102
15616
  selector: 'vd-navigation-drawer',
15103
15617
  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>",
15104
15618
  animations: [VdCollapseAnimation()],
15105
- 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}"]
15619
+ 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"]
15106
15620
  },] }
15107
15621
  ];
15108
- /** @nocollapse */
15622
+ /**
15623
+ * @type {function(): !Array<(null|{
15624
+ * type: ?,
15625
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15626
+ * })>}
15627
+ * @nocollapse
15628
+ */
15109
15629
  VdNavigationDrawerComponent.ctorParameters = function () { return [
15110
15630
  { type: VdLayoutComponent, decorators: [{ type: i0.Inject, args: [i0.forwardRef(function () { return VdLayoutComponent; }),] }] },
15111
15631
  { type: i1$1.Router, decorators: [{ type: i0.Optional }] },
15112
15632
  { type: platformBrowser.DomSanitizer }
15113
15633
  ]; };
15634
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
15114
15635
  VdNavigationDrawerComponent.propDecorators = {
15115
15636
  _drawerMenu: [{ type: i0.ContentChildren, args: [VdNavigationDrawerMenuDirective,] }],
15116
15637
  _toolbar: [{ type: i0.ContentChildren, args: [VdNavigationDrawerToolbarDirective,] }],
@@ -15149,6 +15670,7 @@
15149
15670
  }
15150
15671
  return VdLayoutModule;
15151
15672
  }());
15673
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15152
15674
  VdLayoutModule.decorators = [
15153
15675
  { type: i0.NgModule, args: [{
15154
15676
  imports: [
@@ -15279,17 +15801,25 @@
15279
15801
  };
15280
15802
  return VdMediaToggleDirective;
15281
15803
  }());
15804
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15282
15805
  VdMediaToggleDirective.decorators = [
15283
15806
  { type: i0.Directive, args: [{
15284
15807
  selector: '[vdMediaToggle]',
15285
15808
  },] }
15286
15809
  ];
15287
- /** @nocollapse */
15810
+ /**
15811
+ * @type {function(): !Array<(null|{
15812
+ * type: ?,
15813
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15814
+ * })>}
15815
+ * @nocollapse
15816
+ */
15288
15817
  VdMediaToggleDirective.ctorParameters = function () { return [
15289
15818
  { type: i0.Renderer2 },
15290
15819
  { type: i0.ElementRef },
15291
15820
  { type: VdMediaService }
15292
15821
  ]; };
15822
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
15293
15823
  VdMediaToggleDirective.propDecorators = {
15294
15824
  query: [{ type: i0.Input, args: ['vdMediaToggle',] }],
15295
15825
  attributes: [{ type: i0.Input, args: ['mediaAttributes',] }],
@@ -15305,6 +15835,7 @@
15305
15835
  }
15306
15836
  return VdMediaModule;
15307
15837
  }());
15838
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15308
15839
  VdMediaModule.decorators = [
15309
15840
  { type: i0.NgModule, args: [{
15310
15841
  imports: [
@@ -15351,6 +15882,7 @@
15351
15882
  };
15352
15883
  return VdMenuComponent;
15353
15884
  }());
15885
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15354
15886
  VdMenuComponent.decorators = [
15355
15887
  { type: i0.Component, args: [{
15356
15888
  selector: 'vd-menu',
@@ -15358,6 +15890,7 @@
15358
15890
  styles: [""]
15359
15891
  },] }
15360
15892
  ];
15893
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
15361
15894
  VdMenuComponent.propDecorators = {
15362
15895
  items: [{ type: i0.Input }],
15363
15896
  activeExact: [{ type: i0.Input }],
@@ -15377,10 +15910,17 @@
15377
15910
  return MenuService;
15378
15911
  }(GenericService));
15379
15912
  /** @nocollapse */ MenuService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function MenuService_Factory() { return new MenuService(); }, token: MenuService, providedIn: "root" });
15913
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15380
15914
  MenuService.decorators = [
15381
15915
  { type: i0.Injectable, args: [{ providedIn: 'root' },] }
15382
15916
  ];
15383
- /** @nocollapse */
15917
+ /**
15918
+ * @type {function(): !Array<(null|{
15919
+ * type: ?,
15920
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15921
+ * })>}
15922
+ * @nocollapse
15923
+ */
15384
15924
  MenuService.ctorParameters = function () { return []; };
15385
15925
 
15386
15926
  exports.MenuScope = void 0;
@@ -15413,10 +15953,17 @@
15413
15953
  return MenuItemService;
15414
15954
  }(GenericService));
15415
15955
  /** @nocollapse */ MenuItemService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function MenuItemService_Factory() { return new MenuItemService(); }, token: MenuItemService, providedIn: "root" });
15956
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15416
15957
  MenuItemService.decorators = [
15417
15958
  { type: i0.Injectable, args: [{ providedIn: 'root' },] }
15418
15959
  ];
15419
- /** @nocollapse */
15960
+ /**
15961
+ * @type {function(): !Array<(null|{
15962
+ * type: ?,
15963
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15964
+ * })>}
15965
+ * @nocollapse
15966
+ */
15420
15967
  MenuItemService.ctorParameters = function () { return []; };
15421
15968
 
15422
15969
  /**
@@ -15439,10 +15986,17 @@
15439
15986
  };
15440
15987
  return MenuResolve;
15441
15988
  }());
15989
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15442
15990
  MenuResolve.decorators = [
15443
15991
  { type: i0.Injectable }
15444
15992
  ];
15445
- /** @nocollapse */
15993
+ /**
15994
+ * @type {function(): !Array<(null|{
15995
+ * type: ?,
15996
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
15997
+ * })>}
15998
+ * @nocollapse
15999
+ */
15446
16000
  MenuResolve.ctorParameters = function () { return [
15447
16001
  { type: MenuService }
15448
16002
  ]; };
@@ -15470,6 +16024,7 @@
15470
16024
  };
15471
16025
  return SubMenuResolve;
15472
16026
  }());
16027
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15473
16028
  SubMenuResolve.decorators = [
15474
16029
  { type: i0.Injectable }
15475
16030
  ];
@@ -15482,6 +16037,7 @@
15482
16037
  }
15483
16038
  return VdMenuModule;
15484
16039
  }());
16040
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15485
16041
  VdMenuModule.decorators = [
15486
16042
  { type: i0.NgModule, args: [{
15487
16043
  imports: [
@@ -15575,6 +16131,7 @@
15575
16131
  };
15576
16132
  return VdSearchInputComponent;
15577
16133
  }());
16134
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15578
16135
  VdSearchInputComponent.decorators = [
15579
16136
  { type: i0.Component, args: [{
15580
16137
  selector: 'vd-search-input',
@@ -15597,13 +16154,20 @@
15597
16154
  animations.transition('show => *', animations.animate('200ms ease-out')),
15598
16155
  ]),
15599
16156
  ],
15600
- styles: [".vd-search-input{overflow-x:hidden}.vd-search-input ::ng-deep mat-form-field.mat-hide-underline .mat-input-underline{display:none}"]
16157
+ styles: [".vd-search-input{overflow-x:hidden}.vd-search-input ::ng-deep mat-form-field.mat-hide-underline .mat-input-underline{display:none}\n"]
15601
16158
  },] }
15602
16159
  ];
15603
- /** @nocollapse */
16160
+ /**
16161
+ * @type {function(): !Array<(null|{
16162
+ * type: ?,
16163
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
16164
+ * })>}
16165
+ * @nocollapse
16166
+ */
15604
16167
  VdSearchInputComponent.ctorParameters = function () { return [
15605
16168
  { type: bidi.Dir, decorators: [{ type: i0.Optional }] }
15606
16169
  ]; };
16170
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
15607
16171
  VdSearchInputComponent.propDecorators = {
15608
16172
  _input: [{ type: i0.ViewChild, args: [input.MatInput, { static: true },] }],
15609
16173
  showUnderline: [{ type: i0.Input, args: ['showUnderline',] }],
@@ -15695,6 +16259,7 @@
15695
16259
  };
15696
16260
  return VdSearchBoxComponent;
15697
16261
  }());
16262
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15698
16263
  VdSearchBoxComponent.decorators = [
15699
16264
  { type: i0.Component, args: [{
15700
16265
  selector: 'vd-search-box',
@@ -15715,9 +16280,10 @@
15715
16280
  animations.transition('1 => 0', animations.animate('200ms ease-out')),
15716
16281
  ]),
15717
16282
  ],
15718
- 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}"]
16283
+ 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"]
15719
16284
  },] }
15720
16285
  ];
16286
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
15721
16287
  VdSearchBoxComponent.propDecorators = {
15722
16288
  _searchInput: [{ type: i0.ViewChild, args: [VdSearchInputComponent, { static: true },] }],
15723
16289
  backIcon: [{ type: i0.Input, args: ['backIcon',] }],
@@ -15739,6 +16305,7 @@
15739
16305
  }
15740
16306
  return VdSearchModule;
15741
16307
  }());
16308
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15742
16309
  VdSearchModule.decorators = [
15743
16310
  { type: i0.NgModule, args: [{
15744
16311
  imports: [
@@ -15769,13 +16336,20 @@
15769
16336
  };
15770
16337
  return FilterClearComponent;
15771
16338
  }());
16339
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15772
16340
  FilterClearComponent.decorators = [
15773
16341
  { type: i0.Component, args: [{
15774
16342
  selector: 'mat-header-cell[filter-clear],[mat-header-cell][filter-clear]',
15775
16343
  template: "\n\t\t<button type=\"button\" mat-icon-button (click)=\"clear()\">\n\t\t\t<mat-icon>backspace</mat-icon>\n\t\t</button>"
15776
16344
  },] }
15777
16345
  ];
15778
- /** @nocollapse */
16346
+ /**
16347
+ * @type {function(): !Array<(null|{
16348
+ * type: ?,
16349
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
16350
+ * })>}
16351
+ * @nocollapse
16352
+ */
15779
16353
  FilterClearComponent.ctorParameters = function () { return [
15780
16354
  { type: table.MatTable }
15781
16355
  ]; };
@@ -15873,6 +16447,7 @@
15873
16447
  FilterDateComponent.prototype.registerOnTouched = function (fn) { this.onTouched = fn; };
15874
16448
  return FilterDateComponent;
15875
16449
  }());
16450
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
15876
16451
  FilterDateComponent.decorators = [
15877
16452
  { type: i0.Component, args: [{
15878
16453
  selector: 'mat-header-cell[filter-date],[mat-header-cell][filter-date]',
@@ -15886,11 +16461,18 @@
15886
16461
  ]
15887
16462
  },] }
15888
16463
  ];
15889
- /** @nocollapse */
16464
+ /**
16465
+ * @type {function(): !Array<(null|{
16466
+ * type: ?,
16467
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
16468
+ * })>}
16469
+ * @nocollapse
16470
+ */
15890
16471
  FilterDateComponent.ctorParameters = function () { return [
15891
16472
  { type: table.MatTable },
15892
16473
  { type: table$1.CdkColumnDef }
15893
16474
  ]; };
16475
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
15894
16476
  FilterDateComponent.propDecorators = {
15895
16477
  field: [{ type: i0.Input }],
15896
16478
  debounce: [{ type: i0.Input, args: ['debounce',] }],
@@ -16033,6 +16615,7 @@
16033
16615
  };
16034
16616
  return FilterInputComponent;
16035
16617
  }());
16618
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
16036
16619
  FilterInputComponent.decorators = [
16037
16620
  { type: i0.Component, args: [{
16038
16621
  selector: 'mat-header-cell[filter-input],[mat-header-cell][filter-input]',
@@ -16046,11 +16629,18 @@
16046
16629
  ]
16047
16630
  },] }
16048
16631
  ];
16049
- /** @nocollapse */
16632
+ /**
16633
+ * @type {function(): !Array<(null|{
16634
+ * type: ?,
16635
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
16636
+ * })>}
16637
+ * @nocollapse
16638
+ */
16050
16639
  FilterInputComponent.ctorParameters = function () { return [
16051
16640
  { type: table.MatTable },
16052
16641
  { type: table$1.CdkColumnDef }
16053
16642
  ]; };
16643
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
16054
16644
  FilterInputComponent.propDecorators = {
16055
16645
  _filter: [{ type: i0.ViewChild, args: ['filterElement', { static: true },] }],
16056
16646
  field: [{ type: i0.Input }],
@@ -16068,10 +16658,17 @@
16068
16658
  }
16069
16659
  return VdFilterOptionDirective;
16070
16660
  }(portal.TemplatePortalDirective));
16661
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
16071
16662
  VdFilterOptionDirective.decorators = [
16072
16663
  { type: i0.Directive, args: [{ selector: '[vd-filter-option]ng-template' },] }
16073
16664
  ];
16074
- /** @nocollapse */
16665
+ /**
16666
+ * @type {function(): !Array<(null|{
16667
+ * type: ?,
16668
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
16669
+ * })>}
16670
+ * @nocollapse
16671
+ */
16075
16672
  VdFilterOptionDirective.ctorParameters = function () { return [
16076
16673
  { type: i0.TemplateRef },
16077
16674
  { type: i0.ViewContainerRef }
@@ -16306,6 +16903,7 @@
16306
16903
  FilterSelectComponent.prototype.registerOnTouched = function (fn) { this.onTouched = fn; };
16307
16904
  return FilterSelectComponent;
16308
16905
  }());
16906
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
16309
16907
  FilterSelectComponent.decorators = [
16310
16908
  { type: i0.Component, args: [{
16311
16909
  selector: 'mat-header-cell[filter-select],[mat-header-cell][filter-select]',
@@ -16320,12 +16918,19 @@
16320
16918
  styles: ["\n\t\t.vd-select-filter {\n\t\t\tposition: sticky;\n\t\t\ttop: 0;\n\t\t\tz-index: 100;\n\t\t\tfont-size: inherit;\n\t\t\tbox-shadow: none;\n\t\t\tborder-radius: 0;\n\t\t\tpadding: 11px 16px;\n\t\t\tbox-sizing: border-box;\n\t\t\tborder: none;\n\t\t\tborder-bottom: 1px solid #dcdcdc;\n\t\t\twidth: 100%;\n\t\t\tbackground-color: #f5f5f5;\n\t\t\toutline: none;\n\t\t}"]
16321
16919
  },] }
16322
16920
  ];
16323
- /** @nocollapse */
16921
+ /**
16922
+ * @type {function(): !Array<(null|{
16923
+ * type: ?,
16924
+ * decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>),
16925
+ * })>}
16926
+ * @nocollapse
16927
+ */
16324
16928
  FilterSelectComponent.ctorParameters = function () { return [
16325
16929
  { type: i0.Injector },
16326
16930
  { type: table.MatTable },
16327
16931
  { type: table$1.CdkColumnDef }
16328
16932
  ]; };
16933
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
16329
16934
  FilterSelectComponent.propDecorators = {
16330
16935
  optionTemplate: [{ type: i0.ContentChild, args: [VdFilterOptionDirective,] }],
16331
16936
  selectEl: [{ type: i0.ViewChild, args: [select.MatSelect, { static: false },] }],
@@ -16382,11 +16987,13 @@
16382
16987
  };
16383
16988
  return DataSourceFilterDirective;
16384
16989
  }());
16990
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
16385
16991
  DataSourceFilterDirective.decorators = [
16386
16992
  { type: i0.Directive, args: [{
16387
16993
  selector: '[dataSourceFilter]'
16388
16994
  },] }
16389
16995
  ];
16996
+ /** @type {!Object<string, !Array<{type: !Function, args: (undefined|!Array<?>)}>>} */
16390
16997
  DataSourceFilterDirective.propDecorators = {
16391
16998
  dataSource: [{ type: i0.Input }],
16392
16999
  dataSourceFilter: [{ type: i0.Input }]
@@ -16430,6 +17037,7 @@
16430
17037
  }
16431
17038
  return PaginatorIntl;
16432
17039
  }(paginator.MatPaginatorIntl));
17040
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
16433
17041
  PaginatorIntl.decorators = [
16434
17042
  { type: i0.Injectable }
16435
17043
  ];
@@ -16614,6 +17222,7 @@
16614
17222
  }
16615
17223
  return VdTableModule;
16616
17224
  }());
17225
+ /** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
16617
17226
  VdTableModule.decorators = [
16618
17227
  { type: i0.NgModule, args: [{
16619
17228
  imports: [
@@ -16913,40 +17522,40 @@
16913
17522
  exports.url = url;
16914
17523
  exports.urlAsync = urlAsync;
16915
17524
  exports.whitelist = whitelist;
16916
- exports0 = ɵ0$1;
16917
- exports.ɵa = VdChipDirective;
16918
- exports.ɵb = VdAutocompleteOptionDirective;
16919
- exports.ɵba = VdFileDirective;
16920
- exports.ɵbb = VdCustomDirective;
16921
- exports.ɵbc = VdGenericFormComponent;
16922
- exports.ɵbd = LayoutToggle;
16923
- exports.ɵbe = VdCollapseAnimation;
16924
- exports.ɵbf = PaginatorIntl;
16925
- exports.ɵc = DIALOG_PROVIDER_FACTORY;
16926
- exports.ɵd = DIALOG_PROVIDER;
16927
- exports.ɵe = MEDIA_PROVIDER_FACTORY;
16928
- exports.ɵf = MEDIA_PROVIDER;
16929
- exports.ɵg = VdSelectOptionDirective;
16930
- exports.ɵh = VdFilterOptionDirective;
16931
- exports.ɵi = DisableControlDirective;
16932
- exports.ɵj = OnlyNumberDirective;
16933
- exports.ɵk = FileSizePipe;
16934
- exports.ɵl = FilterPipe;
16935
- exports.ɵm = PlaceholderPipe;
16936
- exports.ɵn = TruncatePipe;
16937
- exports.ɵo = TimePipe;
16938
- exports.ɵp = MonthNamePipe;
16939
- exports.ɵq = SafeHtmlPipe;
16940
- exports.ɵr = BaseValidator;
16941
- exports.ɵs = ControlExpressionProcess;
16942
- exports.ɵt = DecimalProvider;
16943
- exports.ɵv = ControlHostDirective;
16944
- exports.ɵw = BaseFormBuilder;
16945
- exports.ɵx = MatFormFieldReadonlyDirective;
16946
- exports.ɵy = VdEditorDirective;
16947
- exports.ɵz = VdCodeDirective;
17525
+ exports["ɵ0"] = ɵ0$1;
17526
+ exports["ɵa"] = VdChipDirective;
17527
+ exports["ɵb"] = VdAutocompleteOptionDirective;
17528
+ exports["ɵba"] = VdFileDirective;
17529
+ exports["ɵbb"] = VdCustomDirective;
17530
+ exports["ɵbc"] = VdGenericFormComponent;
17531
+ exports["ɵbd"] = LayoutToggle;
17532
+ exports["ɵbe"] = VdCollapseAnimation;
17533
+ exports["ɵbf"] = PaginatorIntl;
17534
+ exports["ɵc"] = DIALOG_PROVIDER_FACTORY;
17535
+ exports["ɵd"] = DIALOG_PROVIDER;
17536
+ exports["ɵe"] = MEDIA_PROVIDER_FACTORY;
17537
+ exports["ɵf"] = MEDIA_PROVIDER;
17538
+ exports["ɵg"] = VdSelectOptionDirective;
17539
+ exports["ɵh"] = VdFilterOptionDirective;
17540
+ exports["ɵi"] = DisableControlDirective;
17541
+ exports["ɵj"] = OnlyNumberDirective;
17542
+ exports["ɵk"] = FileSizePipe;
17543
+ exports["ɵl"] = FilterPipe;
17544
+ exports["ɵm"] = PlaceholderPipe;
17545
+ exports["ɵn"] = TruncatePipe;
17546
+ exports["ɵo"] = TimePipe;
17547
+ exports["ɵp"] = MonthNamePipe;
17548
+ exports["ɵq"] = SafeHtmlPipe;
17549
+ exports["ɵr"] = BaseValidator;
17550
+ exports["ɵs"] = ControlExpressionProcess;
17551
+ exports["ɵt"] = DecimalProvider;
17552
+ exports["ɵv"] = ControlHostDirective;
17553
+ exports["ɵw"] = BaseFormBuilder;
17554
+ exports["ɵx"] = MatFormFieldReadonlyDirective;
17555
+ exports["ɵy"] = VdEditorDirective;
17556
+ exports["ɵz"] = VdCodeDirective;
16948
17557
 
16949
17558
  Object.defineProperty(exports, '__esModule', { value: true });
16950
17559
 
16951
- })));
17560
+ }));
16952
17561
  //# sourceMappingURL=messaia-cdk.umd.js.map