@alfresco/adf-core 8.2.0-18186380146 → 8.2.1

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 (100) hide show
  1. package/README.md +0 -16
  2. package/api/lib/adf-http-client.service.d.ts +9 -9
  3. package/api/lib/alfresco-api/alfresco-api.utils.d.ts +1 -1
  4. package/app.config.schema.json +0 -3
  5. package/bundles/assets/adf-core/i18n/ar.json +0 -5
  6. package/bundles/assets/adf-core/i18n/cs.json +0 -5
  7. package/bundles/assets/adf-core/i18n/da.json +0 -5
  8. package/bundles/assets/adf-core/i18n/de.json +19 -9
  9. package/bundles/assets/adf-core/i18n/en.json +22 -12
  10. package/bundles/assets/adf-core/i18n/es.json +19 -9
  11. package/bundles/assets/adf-core/i18n/fi.json +0 -5
  12. package/bundles/assets/adf-core/i18n/fr.json +19 -9
  13. package/bundles/assets/adf-core/i18n/it.json +19 -9
  14. package/bundles/assets/adf-core/i18n/ja.json +0 -5
  15. package/bundles/assets/adf-core/i18n/nb.json +0 -5
  16. package/bundles/assets/adf-core/i18n/nl.json +0 -5
  17. package/bundles/assets/adf-core/i18n/pl.json +19 -9
  18. package/bundles/assets/adf-core/i18n/pt-BR.json +0 -5
  19. package/bundles/assets/adf-core/i18n/pt.json +19 -9
  20. package/bundles/assets/adf-core/i18n/ru.json +0 -5
  21. package/bundles/assets/adf-core/i18n/sv.json +0 -5
  22. package/bundles/assets/adf-core/i18n/zh-CN.json +0 -5
  23. package/custom-theme/material-theme.scss +13 -13
  24. package/custom-theme/theme/custom-palette-creator.scss +23 -25
  25. package/custom-theme/theme/custom-theme-palettes.scss +7 -7
  26. package/custom-theme/theme/theme-data.scss +13 -13
  27. package/custom-theme/theme/typography.scss +5 -5
  28. package/fesm2022/adf-core.mjs +1313 -1252
  29. package/fesm2022/adf-core.mjs.map +1 -1
  30. package/fesm2022/alfresco-adf-core-api.mjs +40 -27
  31. package/fesm2022/alfresco-adf-core-api.mjs.map +1 -1
  32. package/fesm2022/alfresco-adf-core-shell.mjs +5 -1
  33. package/fesm2022/alfresco-adf-core-shell.mjs.map +1 -1
  34. package/lib/auth/basic-auth/basic-alfresco-auth.service.d.ts +2 -24
  35. package/lib/auth/interfaces/authentication-service.interface.d.ts +7 -13
  36. package/lib/auth/models/oauth-config.model.d.ts +0 -1
  37. package/lib/auth/oidc/oidc-authentication.service.d.ts +0 -20
  38. package/lib/auth/services/authentication.service.d.ts +10 -28
  39. package/lib/auth/services/base-authentication.service.d.ts +6 -14
  40. package/lib/card-view/components/card-view/card-view.component.scss +2 -1
  41. package/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.scss +59 -34
  42. package/lib/card-view/components/card-view-textitem/card-view-textitem.component.scss +8 -0
  43. package/lib/clipboard/clipboard.directive.d.ts +10 -11
  44. package/lib/clipboard/clipboard.module.d.ts +5 -4
  45. package/lib/core.module.d.ts +44 -46
  46. package/lib/datatable/components/columns-selector/columns-selector.component.d.ts +2 -1
  47. package/lib/datatable/components/columns-selector/columns-selector.component.scss +89 -76
  48. package/lib/datatable/components/datatable-cell/datatable-cell.component.d.ts +11 -0
  49. package/lib/datatable/components/date-cell/date-cell.component.d.ts +6 -0
  50. package/lib/datatable/components/filesize-cell/filesize-cell.component.d.ts +2 -0
  51. package/lib/form/components/form-base.component.d.ts +1 -1
  52. package/lib/form/components/form-field/form-field.component.d.ts +5 -0
  53. package/lib/form/components/form-renderer.component.d.ts +7 -5
  54. package/lib/form/components/form-renderer.component.scss +44 -0
  55. package/lib/form/components/widgets/amount/amount.widget.d.ts +43 -4
  56. package/lib/form/components/widgets/base-viewer/base-viewer.widget.d.ts +16 -0
  57. package/lib/form/components/widgets/button/button.widget.d.ts +12 -0
  58. package/lib/form/components/widgets/button/button.widget.scss +14 -0
  59. package/lib/form/components/widgets/core/container-column.model.d.ts +2 -0
  60. package/lib/form/components/widgets/core/container-row.model.d.ts +26 -0
  61. package/lib/form/components/widgets/core/form-field-types.d.ts +5 -0
  62. package/lib/form/components/widgets/core/form-field-validator.d.ts +4 -0
  63. package/lib/form/components/widgets/core/form-field.model.d.ts +26 -2
  64. package/lib/form/components/widgets/core/form.model.d.ts +2 -1
  65. package/lib/{datatable/components/mocks/datatable.mock.d.ts → form/components/widgets/core/handlers/form-field-rule.handler.d.ts} +5 -5
  66. package/lib/{login/components/login-dialog/login-dialog-component-data.interface.d.ts → form/components/widgets/core/repeatable-section.model.d.ts} +8 -5
  67. package/lib/form/components/widgets/index.d.ts +4 -1
  68. package/lib/form/components/widgets/reactive-widget.interface.d.ts +4 -0
  69. package/lib/form/components/widgets/repeat/repeat.widget.d.ts +9 -0
  70. package/lib/form/components/widgets/repeat/repeat.widget.scss +36 -0
  71. package/lib/form/form-base.module.d.ts +3 -2
  72. package/lib/info-drawer/info-drawer.component.scss +6 -0
  73. package/lib/login/login.module.d.ts +3 -5
  74. package/lib/login/public-api.d.ts +0 -2
  75. package/lib/mock/public-api.d.ts +0 -1
  76. package/lib/mock/translation.service.mock.d.ts +1 -0
  77. package/lib/notifications/components/notification-history.component.d.ts +9 -3
  78. package/lib/notifications/notification-history.module.d.ts +2 -4
  79. package/lib/notifications/public-api.d.ts +0 -1
  80. package/lib/snackbar-content/snackbar-content.component.scss +4 -1
  81. package/lib/styles/{material.theme.scss → _globals.scss} +1 -1
  82. package/lib/styles/_index.scss +4 -126
  83. package/lib/styles/_mat-selectors.scss +3 -0
  84. package/lib/testing/index.d.ts +0 -1
  85. package/lib/testing/noop-translate.module.d.ts +1 -0
  86. package/lib/testing/unit-testing-utils.d.ts +4 -0
  87. package/lib/translation/translation.service.d.ts +6 -0
  88. package/package.json +4 -5
  89. package/schematics/migrations/schematics/migrations/7_0_0/index.d.ts +1 -2
  90. package/schematics/migrations/schematics/migrations/7_0_0/index.js +46 -59
  91. package/schematics/migrations/schematics/migrations/7_0_0/index.js.map +1 -1
  92. package/schematics/migrations/schematics/migrations/collection.json +0 -5
  93. package/lib/clipboard/clipboard.theme.scss +0 -19
  94. package/lib/login/components/login-dialog/login-dialog.component.d.ts +0 -15
  95. package/lib/login/components/login-dialog/login-dialog.component.scss +0 -4
  96. package/lib/mock/data-column.mock.d.ts +0 -51
  97. package/lib/notifications/components/add-notification.stories.component.d.ts +0 -10
  98. package/lib/styles/_theming.scss +0 -3
  99. package/lib/styles/_typography.scss +0 -18
  100. package/lib/testing/core.story.module.d.ts +0 -9
@@ -18,20 +18,21 @@ import { Injector } from '@angular/core';
18
18
  import { Observable, Subject } from 'rxjs';
19
19
  import { HttpHeaders } from '@angular/common/http';
20
20
  import { AuthenticationServiceInterface } from '../interfaces/authentication-service.interface';
21
- import ee from 'event-emitter';
22
21
  import { RedirectAuthService } from '../oidc/redirect-auth.service';
22
+ import { EventEmitter } from 'eventemitter3';
23
23
  import * as i0 from "@angular/core";
24
- export declare class AuthenticationService implements AuthenticationServiceInterface, ee.Emitter {
25
- private injector;
26
- private redirectAuthService;
24
+ type EventEmitterInstance = InstanceType<typeof EventEmitter>;
25
+ export declare class AuthenticationService implements AuthenticationServiceInterface {
26
+ private readonly injector;
27
+ private readonly redirectAuthService;
27
28
  onLogin: Subject<any>;
28
29
  onLogout: Subject<any>;
29
30
  onTokenReceived: Subject<any>;
30
31
  constructor(injector: Injector, redirectAuthService: RedirectAuthService);
31
- get on(): ee.EmitterMethod;
32
- get off(): ee.EmitterMethod;
33
- get once(): ee.EmitterMethod;
34
- get emit(): (type: string, ...args: any[]) => void;
32
+ get on(): EventEmitterInstance['on'];
33
+ get off(): EventEmitterInstance['off'];
34
+ get once(): EventEmitterInstance['once'];
35
+ get emit(): EventEmitterInstance['emit'];
35
36
  get onError(): Observable<any>;
36
37
  addTokenToHeader(requestUrl: string, headersArg?: HttpHeaders): Observable<HttpHeaders>;
37
38
  isECMProvider(): boolean;
@@ -42,16 +43,6 @@ export declare class AuthenticationService implements AuthenticationServiceInter
42
43
  getToken(): string;
43
44
  isLoggedIn(): boolean;
44
45
  logout(): Observable<any>;
45
- /**
46
- * @deprecated use `isLoggedIn` instead
47
- * @returns true if the ECM provider is logged in
48
- */
49
- isEcmLoggedIn(): boolean;
50
- /**
51
- * @deprecated use `isLoggedIn` instead
52
- * @returns true if the BPM provider is logged in
53
- */
54
- isBpmLoggedIn(): boolean;
55
46
  reset(): void;
56
47
  login(username: string, password: string, rememberMe?: boolean): Observable<{
57
48
  type: string;
@@ -63,19 +54,10 @@ export declare class AuthenticationService implements AuthenticationServiceInter
63
54
  * @returns the username of the authenticated user
64
55
  */
65
56
  getUsername(): string;
66
- /**
67
- * @deprecated use `getUsername` instead
68
- * @returns the logged username
69
- */
70
- getEcmUsername(): string;
71
- /**
72
- * @deprecated use `getUsername` instead
73
- * @returns the logged username
74
- */
75
- getBpmUsername(): string;
76
57
  getAuthHeaders(requestUrl: string, headers: HttpHeaders): HttpHeaders;
77
58
  isOauth(): boolean;
78
59
  isKerberosEnabled(): boolean;
79
60
  static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationService, never>;
80
61
  static ɵprov: i0.ɵɵInjectableDeclaration<AuthenticationService>;
81
62
  }
63
+ export {};
@@ -20,14 +20,14 @@ import { Observable, ReplaySubject } from 'rxjs';
20
20
  import { AppConfigService } from '../../app-config/app-config.service';
21
21
  import { CookieService } from '../../common/services/cookie.service';
22
22
  import { AuthenticationServiceInterface } from '../interfaces/authentication-service.interface';
23
- import ee from 'event-emitter';
24
- export declare abstract class BaseAuthenticationService implements AuthenticationServiceInterface, ee.Emitter {
23
+ import { EventEmitterInstance } from '@alfresco/js-api';
24
+ export declare abstract class BaseAuthenticationService implements AuthenticationServiceInterface {
25
25
  protected appConfig: AppConfigService;
26
26
  protected cookie: CookieService;
27
- on: ee.EmitterMethod;
28
- off: ee.EmitterMethod;
29
- once: ee.EmitterMethod;
30
- emit: (type: string, ...args: any[]) => void;
27
+ on: EventEmitterInstance['on'];
28
+ off: EventEmitterInstance['off'];
29
+ once: EventEmitterInstance['once'];
30
+ emit: EventEmitterInstance['emit'];
31
31
  protected redirectUrl: RedirectionModel;
32
32
  onError: ReplaySubject<any>;
33
33
  onLogin: ReplaySubject<any>;
@@ -37,16 +37,8 @@ export declare abstract class BaseAuthenticationService implements Authenticatio
37
37
  abstract getToken(): string;
38
38
  abstract isLoggedIn(): boolean;
39
39
  abstract logout(): any;
40
- /** @deprecated use `isLoggedIn` instead */
41
- abstract isEcmLoggedIn(): boolean;
42
- /** @deprecated use `isLoggedIn` instead */
43
- abstract isBpmLoggedIn(): boolean;
44
40
  abstract reset(): void;
45
41
  abstract getUsername(): string;
46
- /** @deprecated use `getUsername` instead */
47
- abstract getEcmUsername(): string;
48
- /** @deprecated use `getUsername` instead */
49
- abstract getBpmUsername(): string;
50
42
  /**
51
43
  * Adds the auth token to an HTTP header using the 'bearer' scheme.
52
44
  *
@@ -9,7 +9,8 @@
9
9
  color: var(--adf-metadata-property-panel-text-color);
10
10
  display: flex;
11
11
  line-height: 20px;
12
-
12
+ margin-bottom: 4px;
13
+
13
14
  &.adf-property-readonly-value {
14
15
  color: var(--adf-metadata-property-panel-label-color);
15
16
  }
@@ -1,6 +1,47 @@
1
1
  @use '../../../styles/mat-selectors' as ms;
2
2
 
3
3
  .adf-card-view-dateitem {
4
+ display: flow-root;
5
+
6
+ .adf-dateitem-editable {
7
+ cursor: pointer;
8
+ width: 100%;
9
+
10
+ &-controls {
11
+ display: flex;
12
+ align-items: center;
13
+ justify-content: space-between;
14
+ top: 6px;
15
+ position: relative;
16
+ left: 12px;
17
+ height: 20px;
18
+
19
+ #{ms.$mat-icon} {
20
+ opacity: 0.5;
21
+
22
+ &:hover {
23
+ opacity: 1;
24
+ }
25
+ }
26
+
27
+ mat-datetimepicker-toggle {
28
+ transform: scale(0.8);
29
+ }
30
+
31
+ .adf-datepicker-span-button {
32
+ flex: 1 0 auto;
33
+ font-size: 14px;
34
+ top: 10px;
35
+ position: relative;
36
+ }
37
+ }
38
+
39
+ #{ms.$mat-line-ripple},
40
+ #{ms.$mat-form-field-subscript-wrapper} {
41
+ display: none;
42
+ }
43
+ }
44
+
4
45
  .adf-property-value {
5
46
  padding-top: 6px;
6
47
  padding-bottom: 6px;
@@ -13,7 +54,20 @@
13
54
  align-items: center;
14
55
  border-radius: 6px;
15
56
  border-bottom: inherit;
16
- margin-bottom: 18px;
57
+ padding-left: 0;
58
+
59
+ &:not(.adf-property-readonly-value) {
60
+ margin-top: 35px;
61
+ }
62
+
63
+ .adf-date-reset-icon {
64
+ position: relative;
65
+ padding: 0;
66
+ }
67
+
68
+ .adf-dateitem-picker-toggle {
69
+ position: relative;
70
+ }
17
71
  }
18
72
 
19
73
  &.adf-property-readonly-value {
@@ -30,6 +84,10 @@
30
84
  margin: 0;
31
85
  padding: 0;
32
86
  float: right;
87
+
88
+ &#{ms.$mat-input-element}#{ms.$mat-form-field-input-control} {
89
+ margin-top: 35px;
90
+ }
33
91
  }
34
92
 
35
93
  .adf-dateitem-chip-list-container.adf-property-field {
@@ -37,37 +95,4 @@
37
95
  border-bottom: 0;
38
96
  cursor: pointer;
39
97
  }
40
-
41
- .adf-dateitem-editable {
42
- cursor: pointer;
43
- width: 100%;
44
-
45
- /* stylelint-disable-next-line no-descending-specificity */
46
- &-controls {
47
- display: flex;
48
- align-items: center;
49
- justify-content: space-between;
50
-
51
- #{ms.$mat-icon} {
52
- opacity: 0.5;
53
-
54
- &:hover {
55
- opacity: 1;
56
- }
57
- }
58
-
59
- mat-datetimepicker-toggle {
60
- transform: scale(0.8);
61
- }
62
-
63
- .adf-datepicker-span-button {
64
- flex: 1 0 auto;
65
- font-size: 14px;
66
- }
67
-
68
- .adf-date-reset-icon {
69
- position: relative;
70
- }
71
- }
72
- }
73
98
  }
@@ -49,6 +49,14 @@
49
49
  #{ms.$mat-form-field-label} {
50
50
  margin-top: 6px;
51
51
  }
52
+
53
+ #{ms.$mat-form-field-infix} {
54
+ padding-top: 0;
55
+
56
+ .adf-property-value {
57
+ margin-left: 0;
58
+ }
59
+ }
52
60
  }
53
61
 
54
62
  .adf-textitem-clickable {
@@ -14,29 +14,28 @@
14
14
  * See the License for the specific language governing permissions and
15
15
  * limitations under the License.
16
16
  */
17
- import { ViewContainerRef, OnInit } from '@angular/core';
17
+ import { ViewContainerRef } from '@angular/core';
18
18
  import { ClipboardService } from './clipboard.service';
19
+ import { TranslateService } from '@ngx-translate/core';
20
+ import { MatTooltip } from '@angular/material/tooltip';
19
21
  import * as i0 from "@angular/core";
22
+ import * as i1 from "@angular/material/tooltip";
20
23
  export declare class ClipboardDirective {
21
- private clipboardService;
24
+ private readonly clipboardService;
22
25
  viewContainerRef: ViewContainerRef;
26
+ private readonly matTooltip;
27
+ private readonly translate;
23
28
  /** Translation key or message for the tooltip. */
24
29
  placeholder: string;
25
30
  /** Reference to the HTML element containing the text to copy. */
26
31
  target: HTMLInputElement | HTMLTextAreaElement;
27
32
  /** Translation key or message for snackbar notification. */
28
33
  message: string;
29
- constructor(clipboardService: ClipboardService, viewContainerRef: ViewContainerRef);
34
+ constructor(clipboardService: ClipboardService, viewContainerRef: ViewContainerRef, matTooltip: MatTooltip, translate: TranslateService);
30
35
  showTooltip(): void;
31
36
  closeTooltip(): void;
32
37
  copyToClipboard(event: KeyboardEvent | MouseEvent): void;
33
38
  private copyContentToClipboard;
34
- static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardDirective, never>;
35
- static ɵdir: i0.ɵɵDirectiveDeclaration<ClipboardDirective, "[adf-clipboard]", ["adfClipboard"], { "placeholder": { "alias": "adf-clipboard"; "required": false; }; "target": { "alias": "target"; "required": false; }; "message": { "alias": "clipboard-notification"; "required": false; }; }, {}, never, never, true, never>;
36
- }
37
- export declare class ClipboardComponent implements OnInit {
38
- placeholder: string;
39
- ngOnInit(): void;
40
- static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<ClipboardComponent, "adf-copy-content-tooltip", never, {}, {}, never, never, true, never>;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardDirective, [null, null, { self: true; }, { optional: true; }]>;
40
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClipboardDirective, "[adf-clipboard]", ["adfClipboard"], { "placeholder": { "alias": "adf-clipboard"; "required": false; }; "target": { "alias": "target"; "required": false; }; "message": { "alias": "clipboard-notification"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.MatTooltip; inputs: {}; outputs: {}; }]>;
42
41
  }
@@ -1,10 +1,11 @@
1
- import { ClipboardDirective, ClipboardComponent } from './clipboard.directive';
1
+ import { ClipboardDirective } from './clipboard.directive';
2
2
  import * as i0 from "@angular/core";
3
- import * as i1 from "./clipboard.directive";
4
- export declare const CLIPBOARD_DIRECTIVES: readonly [typeof ClipboardDirective, typeof ClipboardComponent];
3
+ import * as i1 from "@angular/material/tooltip";
4
+ import * as i2 from "./clipboard.directive";
5
+ export declare const CLIPBOARD_DIRECTIVES: readonly [typeof ClipboardDirective];
5
6
  /** @deprecated use `...CLIPBOARD_DIRECTIVES` or import standalone directives */
6
7
  export declare class ClipboardModule {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<ClipboardModule, never, [typeof i1.ClipboardDirective, typeof i1.ClipboardComponent], [typeof i1.ClipboardDirective, typeof i1.ClipboardComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ClipboardModule, never, [typeof i1.MatTooltipModule, typeof i2.ClipboardDirective], [typeof i1.MatTooltipModule, typeof i2.ClipboardDirective]>;
9
10
  static ɵinj: i0.ɵɵInjectorDeclaration<ClipboardModule>;
10
11
  }
@@ -94,51 +94,49 @@ import * as i75 from "./clipboard/clipboard.directive";
94
94
  import * as i76 from "./login/components/login/login.component";
95
95
  import * as i77 from "./login/directives/login-footer.directive";
96
96
  import * as i78 from "./login/directives/login-header.directive";
97
- import * as i79 from "./login/components/login-dialog/login-dialog.component";
98
- import * as i80 from "./login/components/login-dialog-panel/login-dialog-panel.component";
99
- import * as i81 from "./language-menu/language-menu.component";
100
- import * as i82 from "./language-menu/language-picker.component";
101
- import * as i83 from "./info-drawer/info-drawer-layout.component";
102
- import * as i84 from "./info-drawer/info-drawer.component";
103
- import * as i85 from "./datatable/components/boolean-cell/boolean-cell.component";
104
- import * as i86 from "./datatable/components/amount-cell/amount-cell.component";
105
- import * as i87 from "./datatable/components/number-cell/number-cell.component";
106
- import * as i88 from "./datatable/components/location-cell/location-cell.component";
107
- import * as i89 from "./datatable/components/date-cell/date-cell.component";
108
- import * as i90 from "./datatable/components/icon-cell/icon-cell.component";
109
- import * as i91 from "./datatable/components/columns-selector/columns-selector.component";
110
- import * as i92 from "./datatable/data-column/data-column.component";
111
- import * as i93 from "./datatable/data-column/data-column-list.component";
112
- import * as i94 from "./datatable/data-column/data-column-header.component";
113
- import * as i95 from "./datatable/directives/resizable/resizable.directive";
114
- import * as i96 from "./datatable/directives/resizable/resize-handle.directive";
115
- import * as i97 from "./datatable/directives/drop-zone.directive";
116
- import * as i98 from "./datatable/components/empty-list/empty-list.component";
117
- import * as i99 from "./datatable/components/filesize-cell/filesize-cell.component";
118
- import * as i100 from "./datatable/components/json-cell/json-cell.component";
119
- import * as i101 from "./datatable/directives/no-content-template.directive";
120
- import * as i102 from "./datatable/directives/no-permission-template.directive";
121
- import * as i103 from "./datatable/directives/loading-template.directive";
122
- import * as i104 from "./datatable/directives/header-filter-template.directive";
123
- import * as i105 from "./datatable/directives/custom-empty-content-template.directive";
124
- import * as i106 from "./datatable/directives/custom-loading-template.directive";
125
- import * as i107 from "./datatable/directives/custom-no-permission-template.directive";
126
- import * as i108 from "./datatable/directives/main-data-table-action-template.directive";
127
- import * as i109 from "./datatable/components/datatable-row/datatable-row.component";
128
- import * as i110 from "./datatable/components/datatable-cell/datatable-cell.component";
129
- import * as i111 from "./datatable/components/datatable/datatable.component";
130
- import * as i112 from "./templates/error-content/error-content.component";
131
- import * as i113 from "./templates/empty-content/empty-content.component";
132
- import * as i114 from "./icon/icon.component";
133
- import * as i115 from "./sorting-picker/sorting-picker.component";
134
- import * as i116 from "./notifications/components/notification-history.component";
135
- import * as i117 from "./notifications/components/add-notification.stories.component";
136
- import * as i118 from "./search-text/search-text-input.component";
137
- import * as i119 from "./search-text/search-trigger.directive";
138
- import * as i120 from "./blank-page/blank-page.component";
139
- import * as i121 from "./dialogs/unsaved-changes-dialog/unsaved-changes-dialog.component";
140
- import * as i122 from "./dynamic-chip-list/dynamic-chip-list.component";
141
- import * as i123 from "./material.module";
97
+ import * as i79 from "./login/components/login-dialog-panel/login-dialog-panel.component";
98
+ import * as i80 from "./language-menu/language-menu.component";
99
+ import * as i81 from "./language-menu/language-picker.component";
100
+ import * as i82 from "./info-drawer/info-drawer-layout.component";
101
+ import * as i83 from "./info-drawer/info-drawer.component";
102
+ import * as i84 from "./datatable/components/boolean-cell/boolean-cell.component";
103
+ import * as i85 from "./datatable/components/amount-cell/amount-cell.component";
104
+ import * as i86 from "./datatable/components/number-cell/number-cell.component";
105
+ import * as i87 from "./datatable/components/location-cell/location-cell.component";
106
+ import * as i88 from "./datatable/components/date-cell/date-cell.component";
107
+ import * as i89 from "./datatable/components/icon-cell/icon-cell.component";
108
+ import * as i90 from "./datatable/components/columns-selector/columns-selector.component";
109
+ import * as i91 from "./datatable/data-column/data-column.component";
110
+ import * as i92 from "./datatable/data-column/data-column-list.component";
111
+ import * as i93 from "./datatable/data-column/data-column-header.component";
112
+ import * as i94 from "./datatable/directives/resizable/resizable.directive";
113
+ import * as i95 from "./datatable/directives/resizable/resize-handle.directive";
114
+ import * as i96 from "./datatable/directives/drop-zone.directive";
115
+ import * as i97 from "./datatable/components/empty-list/empty-list.component";
116
+ import * as i98 from "./datatable/components/filesize-cell/filesize-cell.component";
117
+ import * as i99 from "./datatable/components/json-cell/json-cell.component";
118
+ import * as i100 from "./datatable/directives/no-content-template.directive";
119
+ import * as i101 from "./datatable/directives/no-permission-template.directive";
120
+ import * as i102 from "./datatable/directives/loading-template.directive";
121
+ import * as i103 from "./datatable/directives/header-filter-template.directive";
122
+ import * as i104 from "./datatable/directives/custom-empty-content-template.directive";
123
+ import * as i105 from "./datatable/directives/custom-loading-template.directive";
124
+ import * as i106 from "./datatable/directives/custom-no-permission-template.directive";
125
+ import * as i107 from "./datatable/directives/main-data-table-action-template.directive";
126
+ import * as i108 from "./datatable/components/datatable-row/datatable-row.component";
127
+ import * as i109 from "./datatable/components/datatable-cell/datatable-cell.component";
128
+ import * as i110 from "./datatable/components/datatable/datatable.component";
129
+ import * as i111 from "./templates/error-content/error-content.component";
130
+ import * as i112 from "./templates/empty-content/empty-content.component";
131
+ import * as i113 from "./icon/icon.component";
132
+ import * as i114 from "./sorting-picker/sorting-picker.component";
133
+ import * as i115 from "./notifications/components/notification-history.component";
134
+ import * as i116 from "./search-text/search-text-input.component";
135
+ import * as i117 from "./search-text/search-trigger.directive";
136
+ import * as i118 from "./blank-page/blank-page.component";
137
+ import * as i119 from "./dialogs/unsaved-changes-dialog/unsaved-changes-dialog.component";
138
+ import * as i120 from "./dynamic-chip-list/dynamic-chip-list.component";
139
+ import * as i121 from "./material.module";
142
140
  /**
143
141
  * @deprecated this module is deprecated and will be removed
144
142
  * Use the following combination instead:
@@ -158,6 +156,6 @@ export declare class CoreModule {
158
156
  */
159
157
  static forChild(): ModuleWithProviders<CoreModule>;
160
158
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreModule, never>;
161
- static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, never, [typeof i1.AboutExtensionListComponent, typeof i2.AboutLicenseListComponent, typeof i3.ModuleListComponent, typeof i4.AboutRepositoryInfoComponent, typeof i5.PackageListComponent, typeof i6.AboutStatusListComponent, typeof i7.AboutServerSettingsComponent, typeof i8.AboutPanelDirective, typeof i9.AboutComponent, typeof i10.PdfPasswordDialogComponent, typeof i11.ViewerRenderComponent, typeof i12.ImgViewerComponent, typeof i13.TxtViewerComponent, typeof i14.MediaPlayerComponent, typeof i15.PdfViewerComponent, typeof i16.PdfThumbComponent, typeof i17.PdfThumbListComponent, typeof i18.ViewerExtensionDirective, typeof i19.UnknownFormatComponent, typeof i20.ViewerToolbarComponent, typeof i21.ViewerSidebarComponent, typeof i22.ViewerOpenWithComponent, typeof i23.ViewerMoreActionsComponent, typeof i24.ViewerToolbarActionsComponent, typeof i25.ViewerComponent, typeof i26.ViewerToolbarCustomActionsComponent, typeof i27.DownloadPromptDialogComponent, typeof i28.SidenavLayoutHeaderDirective, typeof i29.SidenavLayoutContentDirective, typeof i30.SidenavLayoutNavigationDirective, typeof i31.SidebarMenuDirective, typeof i31.SidebarMenuExpandIconDirective, typeof i31.SidebarMenuTitleIconDirective, typeof i32.HeaderLayoutComponent, typeof i31.SidebarActionMenuComponent, typeof i33.LayoutContainerComponent, typeof i34.SidenavLayoutComponent, typeof i35.LocalizedDatePipe, typeof i36.TimeAgoPipe, typeof i37.FileSizePipe, typeof i38.HighlightPipe, typeof i39.FullNamePipe, typeof i40.FormatSpacePipe, typeof i41.FileTypePipe, typeof i42.MultiValuePipe, typeof i43.DecimalNumberPipe, typeof i44.DateTimePipe, typeof i45.InitialUsernamePipe, typeof i46.TruncatePipe, typeof i47.IdentityUserInfoComponent, typeof i48.HighlightDirective, typeof i49.LogoutDirective, typeof i50.UploadDirective, typeof i51.TooltipCardDirective, typeof i52.TooltipCardComponent, typeof i53.InfiniteSelectScrollDirective, typeof i54.AppConfigPipe, typeof i55.InfinitePaginationComponent, typeof i56.PaginationComponent, typeof i57.ToolbarComponent, typeof i58.ToolbarTitleComponent, typeof i59.ToolbarDividerComponent, typeof i60.ContextMenuListComponent, typeof i61.ContextMenuDirective, typeof i62.CardViewComponent, typeof i63.CardViewBoolItemComponent, typeof i64.CardViewDateItemComponent, typeof i65.CardViewMapItemComponent, typeof i66.CardViewTextItemComponent, typeof i67.CardViewKeyValuePairsItemComponent, typeof i68.CardViewSelectItemComponent, typeof i69.CardViewItemDispatcherComponent, typeof i70.CardViewArrayItemComponent, typeof i71.SelectFilterInputComponent, typeof i72.FormBaseModule, typeof i73.CommentsComponent, typeof i74.CommentListComponent, typeof i75.ClipboardDirective, typeof i75.ClipboardComponent, typeof i76.LoginComponent, typeof i77.LoginFooterDirective, typeof i78.LoginHeaderDirective, typeof i79.LoginDialogComponent, typeof i80.LoginDialogPanelComponent, typeof i81.LanguageMenuComponent, typeof i82.LanguagePickerComponent, typeof i83.InfoDrawerLayoutComponent, typeof i84.InfoDrawerTabComponent, typeof i84.InfoDrawerComponent, typeof i83.InfoDrawerTitleDirective, typeof i83.InfoDrawerButtonsDirective, typeof i83.InfoDrawerContentDirective, typeof i85.BooleanCellComponent, typeof i86.AmountCellComponent, typeof i87.NumberCellComponent, typeof i88.LocationCellComponent, typeof i89.DateCellComponent, typeof i90.IconCellComponent, typeof i91.ColumnsSelectorComponent, typeof i92.DataColumnComponent, typeof i93.DataColumnListComponent, typeof i94.DateColumnHeaderComponent, typeof i35.LocalizedDatePipe, typeof i95.ResizableDirective, typeof i96.ResizeHandleDirective, typeof i97.DropZoneDirective, typeof i98.EmptyListComponent, typeof i98.EmptyListHeaderDirective, typeof i98.EmptyListBodyDirective, typeof i98.EmptyListFooterDirective, typeof i99.FileSizeCellComponent, typeof i100.JsonCellComponent, typeof i101.NoContentTemplateDirective, typeof i102.NoPermissionTemplateDirective, typeof i103.LoadingContentTemplateDirective, typeof i104.HeaderFilterTemplateDirective, typeof i105.CustomEmptyContentTemplateDirective, typeof i106.CustomLoadingContentTemplateDirective, typeof i107.CustomNoPermissionTemplateDirective, typeof i108.MainMenuDataTableTemplateDirective, typeof i109.DataTableRowComponent, typeof i110.DataTableCellComponent, typeof i111.DataTableComponent, typeof i112.ErrorContentComponent, typeof i113.EmptyContentComponent, typeof i114.IconComponent, typeof i115.SortingPickerComponent, typeof i116.NotificationHistoryComponent, typeof i117.AddNotificationStorybookComponent, typeof i118.SearchTextInputComponent, typeof i119.SearchTriggerDirective, typeof i120.BlankPageComponent, typeof i121.UnsavedChangesDialogComponent, typeof i122.DynamicChipListComponent, typeof i123.MaterialModule], [typeof i1.AboutExtensionListComponent, typeof i2.AboutLicenseListComponent, typeof i3.ModuleListComponent, typeof i4.AboutRepositoryInfoComponent, typeof i5.PackageListComponent, typeof i6.AboutStatusListComponent, typeof i7.AboutServerSettingsComponent, typeof i8.AboutPanelDirective, typeof i9.AboutComponent, typeof i10.PdfPasswordDialogComponent, typeof i11.ViewerRenderComponent, typeof i12.ImgViewerComponent, typeof i13.TxtViewerComponent, typeof i14.MediaPlayerComponent, typeof i15.PdfViewerComponent, typeof i16.PdfThumbComponent, typeof i17.PdfThumbListComponent, typeof i18.ViewerExtensionDirective, typeof i19.UnknownFormatComponent, typeof i20.ViewerToolbarComponent, typeof i21.ViewerSidebarComponent, typeof i22.ViewerOpenWithComponent, typeof i23.ViewerMoreActionsComponent, typeof i24.ViewerToolbarActionsComponent, typeof i25.ViewerComponent, typeof i26.ViewerToolbarCustomActionsComponent, typeof i27.DownloadPromptDialogComponent, typeof i28.SidenavLayoutHeaderDirective, typeof i29.SidenavLayoutContentDirective, typeof i30.SidenavLayoutNavigationDirective, typeof i31.SidebarMenuDirective, typeof i31.SidebarMenuExpandIconDirective, typeof i31.SidebarMenuTitleIconDirective, typeof i32.HeaderLayoutComponent, typeof i31.SidebarActionMenuComponent, typeof i33.LayoutContainerComponent, typeof i34.SidenavLayoutComponent, typeof i35.LocalizedDatePipe, typeof i36.TimeAgoPipe, typeof i37.FileSizePipe, typeof i38.HighlightPipe, typeof i39.FullNamePipe, typeof i40.FormatSpacePipe, typeof i41.FileTypePipe, typeof i42.MultiValuePipe, typeof i43.DecimalNumberPipe, typeof i44.DateTimePipe, typeof i45.InitialUsernamePipe, typeof i46.TruncatePipe, typeof i48.HighlightDirective, typeof i49.LogoutDirective, typeof i50.UploadDirective, typeof i51.TooltipCardDirective, typeof i52.TooltipCardComponent, typeof i53.InfiniteSelectScrollDirective, typeof i75.ClipboardDirective, typeof i75.ClipboardComponent, typeof i47.IdentityUserInfoComponent, typeof i54.AppConfigPipe, typeof i55.InfinitePaginationComponent, typeof i56.PaginationComponent, typeof i57.ToolbarComponent, typeof i58.ToolbarTitleComponent, typeof i59.ToolbarDividerComponent, typeof i60.ContextMenuListComponent, typeof i61.ContextMenuDirective, typeof i62.CardViewComponent, typeof i63.CardViewBoolItemComponent, typeof i64.CardViewDateItemComponent, typeof i65.CardViewMapItemComponent, typeof i66.CardViewTextItemComponent, typeof i67.CardViewKeyValuePairsItemComponent, typeof i68.CardViewSelectItemComponent, typeof i69.CardViewItemDispatcherComponent, typeof i70.CardViewArrayItemComponent, typeof i71.SelectFilterInputComponent, typeof i72.FormBaseModule, typeof i73.CommentsComponent, typeof i74.CommentListComponent, typeof i76.LoginComponent, typeof i77.LoginFooterDirective, typeof i78.LoginHeaderDirective, typeof i79.LoginDialogComponent, typeof i80.LoginDialogPanelComponent, typeof i81.LanguageMenuComponent, typeof i82.LanguagePickerComponent, typeof i83.InfoDrawerLayoutComponent, typeof i84.InfoDrawerTabComponent, typeof i84.InfoDrawerComponent, typeof i83.InfoDrawerTitleDirective, typeof i83.InfoDrawerButtonsDirective, typeof i83.InfoDrawerContentDirective, typeof i85.BooleanCellComponent, typeof i86.AmountCellComponent, typeof i87.NumberCellComponent, typeof i88.LocationCellComponent, typeof i89.DateCellComponent, typeof i90.IconCellComponent, typeof i91.ColumnsSelectorComponent, typeof i92.DataColumnComponent, typeof i93.DataColumnListComponent, typeof i94.DateColumnHeaderComponent, typeof i35.LocalizedDatePipe, typeof i95.ResizableDirective, typeof i96.ResizeHandleDirective, typeof i97.DropZoneDirective, typeof i98.EmptyListComponent, typeof i98.EmptyListHeaderDirective, typeof i98.EmptyListBodyDirective, typeof i98.EmptyListFooterDirective, typeof i99.FileSizeCellComponent, typeof i100.JsonCellComponent, typeof i101.NoContentTemplateDirective, typeof i102.NoPermissionTemplateDirective, typeof i103.LoadingContentTemplateDirective, typeof i104.HeaderFilterTemplateDirective, typeof i105.CustomEmptyContentTemplateDirective, typeof i106.CustomLoadingContentTemplateDirective, typeof i107.CustomNoPermissionTemplateDirective, typeof i108.MainMenuDataTableTemplateDirective, typeof i109.DataTableRowComponent, typeof i110.DataTableCellComponent, typeof i111.DataTableComponent, typeof i112.ErrorContentComponent, typeof i113.EmptyContentComponent, typeof i115.SortingPickerComponent, typeof i114.IconComponent, typeof i116.NotificationHistoryComponent, typeof i117.AddNotificationStorybookComponent, typeof i118.SearchTextInputComponent, typeof i119.SearchTriggerDirective, typeof i120.BlankPageComponent, typeof i121.UnsavedChangesDialogComponent, typeof i122.DynamicChipListComponent, typeof i123.MaterialModule]>;
159
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, never, [typeof i1.AboutExtensionListComponent, typeof i2.AboutLicenseListComponent, typeof i3.ModuleListComponent, typeof i4.AboutRepositoryInfoComponent, typeof i5.PackageListComponent, typeof i6.AboutStatusListComponent, typeof i7.AboutServerSettingsComponent, typeof i8.AboutPanelDirective, typeof i9.AboutComponent, typeof i10.PdfPasswordDialogComponent, typeof i11.ViewerRenderComponent, typeof i12.ImgViewerComponent, typeof i13.TxtViewerComponent, typeof i14.MediaPlayerComponent, typeof i15.PdfViewerComponent, typeof i16.PdfThumbComponent, typeof i17.PdfThumbListComponent, typeof i18.ViewerExtensionDirective, typeof i19.UnknownFormatComponent, typeof i20.ViewerToolbarComponent, typeof i21.ViewerSidebarComponent, typeof i22.ViewerOpenWithComponent, typeof i23.ViewerMoreActionsComponent, typeof i24.ViewerToolbarActionsComponent, typeof i25.ViewerComponent, typeof i26.ViewerToolbarCustomActionsComponent, typeof i27.DownloadPromptDialogComponent, typeof i28.SidenavLayoutHeaderDirective, typeof i29.SidenavLayoutContentDirective, typeof i30.SidenavLayoutNavigationDirective, typeof i31.SidebarMenuDirective, typeof i31.SidebarMenuExpandIconDirective, typeof i31.SidebarMenuTitleIconDirective, typeof i32.HeaderLayoutComponent, typeof i31.SidebarActionMenuComponent, typeof i33.LayoutContainerComponent, typeof i34.SidenavLayoutComponent, typeof i35.LocalizedDatePipe, typeof i36.TimeAgoPipe, typeof i37.FileSizePipe, typeof i38.HighlightPipe, typeof i39.FullNamePipe, typeof i40.FormatSpacePipe, typeof i41.FileTypePipe, typeof i42.MultiValuePipe, typeof i43.DecimalNumberPipe, typeof i44.DateTimePipe, typeof i45.InitialUsernamePipe, typeof i46.TruncatePipe, typeof i47.IdentityUserInfoComponent, typeof i48.HighlightDirective, typeof i49.LogoutDirective, typeof i50.UploadDirective, typeof i51.TooltipCardDirective, typeof i52.TooltipCardComponent, typeof i53.InfiniteSelectScrollDirective, typeof i54.AppConfigPipe, typeof i55.InfinitePaginationComponent, typeof i56.PaginationComponent, typeof i57.ToolbarComponent, typeof i58.ToolbarTitleComponent, typeof i59.ToolbarDividerComponent, typeof i60.ContextMenuListComponent, typeof i61.ContextMenuDirective, typeof i62.CardViewComponent, typeof i63.CardViewBoolItemComponent, typeof i64.CardViewDateItemComponent, typeof i65.CardViewMapItemComponent, typeof i66.CardViewTextItemComponent, typeof i67.CardViewKeyValuePairsItemComponent, typeof i68.CardViewSelectItemComponent, typeof i69.CardViewItemDispatcherComponent, typeof i70.CardViewArrayItemComponent, typeof i71.SelectFilterInputComponent, typeof i72.FormBaseModule, typeof i73.CommentsComponent, typeof i74.CommentListComponent, typeof i75.ClipboardDirective, typeof i76.LoginComponent, typeof i77.LoginFooterDirective, typeof i78.LoginHeaderDirective, typeof i79.LoginDialogPanelComponent, typeof i80.LanguageMenuComponent, typeof i81.LanguagePickerComponent, typeof i82.InfoDrawerLayoutComponent, typeof i83.InfoDrawerTabComponent, typeof i83.InfoDrawerComponent, typeof i82.InfoDrawerTitleDirective, typeof i82.InfoDrawerButtonsDirective, typeof i82.InfoDrawerContentDirective, typeof i84.BooleanCellComponent, typeof i85.AmountCellComponent, typeof i86.NumberCellComponent, typeof i87.LocationCellComponent, typeof i88.DateCellComponent, typeof i89.IconCellComponent, typeof i90.ColumnsSelectorComponent, typeof i91.DataColumnComponent, typeof i92.DataColumnListComponent, typeof i93.DateColumnHeaderComponent, typeof i35.LocalizedDatePipe, typeof i94.ResizableDirective, typeof i95.ResizeHandleDirective, typeof i96.DropZoneDirective, typeof i97.EmptyListComponent, typeof i97.EmptyListHeaderDirective, typeof i97.EmptyListBodyDirective, typeof i97.EmptyListFooterDirective, typeof i98.FileSizeCellComponent, typeof i99.JsonCellComponent, typeof i100.NoContentTemplateDirective, typeof i101.NoPermissionTemplateDirective, typeof i102.LoadingContentTemplateDirective, typeof i103.HeaderFilterTemplateDirective, typeof i104.CustomEmptyContentTemplateDirective, typeof i105.CustomLoadingContentTemplateDirective, typeof i106.CustomNoPermissionTemplateDirective, typeof i107.MainMenuDataTableTemplateDirective, typeof i108.DataTableRowComponent, typeof i109.DataTableCellComponent, typeof i110.DataTableComponent, typeof i111.ErrorContentComponent, typeof i112.EmptyContentComponent, typeof i113.IconComponent, typeof i114.SortingPickerComponent, typeof i115.NotificationHistoryComponent, typeof i116.SearchTextInputComponent, typeof i117.SearchTriggerDirective, typeof i118.BlankPageComponent, typeof i119.UnsavedChangesDialogComponent, typeof i120.DynamicChipListComponent, typeof i121.MaterialModule], [typeof i1.AboutExtensionListComponent, typeof i2.AboutLicenseListComponent, typeof i3.ModuleListComponent, typeof i4.AboutRepositoryInfoComponent, typeof i5.PackageListComponent, typeof i6.AboutStatusListComponent, typeof i7.AboutServerSettingsComponent, typeof i8.AboutPanelDirective, typeof i9.AboutComponent, typeof i10.PdfPasswordDialogComponent, typeof i11.ViewerRenderComponent, typeof i12.ImgViewerComponent, typeof i13.TxtViewerComponent, typeof i14.MediaPlayerComponent, typeof i15.PdfViewerComponent, typeof i16.PdfThumbComponent, typeof i17.PdfThumbListComponent, typeof i18.ViewerExtensionDirective, typeof i19.UnknownFormatComponent, typeof i20.ViewerToolbarComponent, typeof i21.ViewerSidebarComponent, typeof i22.ViewerOpenWithComponent, typeof i23.ViewerMoreActionsComponent, typeof i24.ViewerToolbarActionsComponent, typeof i25.ViewerComponent, typeof i26.ViewerToolbarCustomActionsComponent, typeof i27.DownloadPromptDialogComponent, typeof i28.SidenavLayoutHeaderDirective, typeof i29.SidenavLayoutContentDirective, typeof i30.SidenavLayoutNavigationDirective, typeof i31.SidebarMenuDirective, typeof i31.SidebarMenuExpandIconDirective, typeof i31.SidebarMenuTitleIconDirective, typeof i32.HeaderLayoutComponent, typeof i31.SidebarActionMenuComponent, typeof i33.LayoutContainerComponent, typeof i34.SidenavLayoutComponent, typeof i35.LocalizedDatePipe, typeof i36.TimeAgoPipe, typeof i37.FileSizePipe, typeof i38.HighlightPipe, typeof i39.FullNamePipe, typeof i40.FormatSpacePipe, typeof i41.FileTypePipe, typeof i42.MultiValuePipe, typeof i43.DecimalNumberPipe, typeof i44.DateTimePipe, typeof i45.InitialUsernamePipe, typeof i46.TruncatePipe, typeof i48.HighlightDirective, typeof i49.LogoutDirective, typeof i50.UploadDirective, typeof i51.TooltipCardDirective, typeof i52.TooltipCardComponent, typeof i53.InfiniteSelectScrollDirective, typeof i75.ClipboardDirective, typeof i47.IdentityUserInfoComponent, typeof i54.AppConfigPipe, typeof i55.InfinitePaginationComponent, typeof i56.PaginationComponent, typeof i57.ToolbarComponent, typeof i58.ToolbarTitleComponent, typeof i59.ToolbarDividerComponent, typeof i60.ContextMenuListComponent, typeof i61.ContextMenuDirective, typeof i62.CardViewComponent, typeof i63.CardViewBoolItemComponent, typeof i64.CardViewDateItemComponent, typeof i65.CardViewMapItemComponent, typeof i66.CardViewTextItemComponent, typeof i67.CardViewKeyValuePairsItemComponent, typeof i68.CardViewSelectItemComponent, typeof i69.CardViewItemDispatcherComponent, typeof i70.CardViewArrayItemComponent, typeof i71.SelectFilterInputComponent, typeof i72.FormBaseModule, typeof i73.CommentsComponent, typeof i74.CommentListComponent, typeof i76.LoginComponent, typeof i77.LoginFooterDirective, typeof i78.LoginHeaderDirective, typeof i79.LoginDialogPanelComponent, typeof i80.LanguageMenuComponent, typeof i81.LanguagePickerComponent, typeof i82.InfoDrawerLayoutComponent, typeof i83.InfoDrawerTabComponent, typeof i83.InfoDrawerComponent, typeof i82.InfoDrawerTitleDirective, typeof i82.InfoDrawerButtonsDirective, typeof i82.InfoDrawerContentDirective, typeof i84.BooleanCellComponent, typeof i85.AmountCellComponent, typeof i86.NumberCellComponent, typeof i87.LocationCellComponent, typeof i88.DateCellComponent, typeof i89.IconCellComponent, typeof i90.ColumnsSelectorComponent, typeof i91.DataColumnComponent, typeof i92.DataColumnListComponent, typeof i93.DateColumnHeaderComponent, typeof i35.LocalizedDatePipe, typeof i94.ResizableDirective, typeof i95.ResizeHandleDirective, typeof i96.DropZoneDirective, typeof i97.EmptyListComponent, typeof i97.EmptyListHeaderDirective, typeof i97.EmptyListBodyDirective, typeof i97.EmptyListFooterDirective, typeof i98.FileSizeCellComponent, typeof i99.JsonCellComponent, typeof i100.NoContentTemplateDirective, typeof i101.NoPermissionTemplateDirective, typeof i102.LoadingContentTemplateDirective, typeof i103.HeaderFilterTemplateDirective, typeof i104.CustomEmptyContentTemplateDirective, typeof i105.CustomLoadingContentTemplateDirective, typeof i106.CustomNoPermissionTemplateDirective, typeof i107.MainMenuDataTableTemplateDirective, typeof i108.DataTableRowComponent, typeof i109.DataTableCellComponent, typeof i110.DataTableComponent, typeof i111.ErrorContentComponent, typeof i112.EmptyContentComponent, typeof i114.SortingPickerComponent, typeof i113.IconComponent, typeof i115.NotificationHistoryComponent, typeof i116.SearchTextInputComponent, typeof i117.SearchTriggerDirective, typeof i118.BlankPageComponent, typeof i119.UnsavedChangesDialogComponent, typeof i120.DynamicChipListComponent, typeof i121.MaterialModule]>;
162
160
  static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
163
161
  }
@@ -18,6 +18,7 @@ import { EventEmitter, OnInit } from '@angular/core';
18
18
  import { UntypedFormControl } from '@angular/forms';
19
19
  import { MatMenuTrigger } from '@angular/material/menu';
20
20
  import { DataColumn } from '../../data/data-column.model';
21
+ import { MatSelectionListChange } from '@angular/material/list';
21
22
  import * as i0 from "@angular/core";
22
23
  export declare class ColumnsSelectorComponent implements OnInit {
23
24
  columns: DataColumn[];
@@ -31,7 +32,7 @@ export declare class ColumnsSelectorComponent implements OnInit {
31
32
  private readonly destroyRef;
32
33
  ngOnInit(): void;
33
34
  closeMenu(): void;
34
- changeColumnVisibility(dataColumn: DataColumn): void;
35
+ changeColumnVisibility(event: MatSelectionListChange): void;
35
36
  apply(): void;
36
37
  isCheckboxDisabled(column: DataColumn): boolean;
37
38
  private updateColumnItems;