@alfresco/aca-shared 5.1.1 → 5.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/esm2022/lib/components/document-base-page/document-base-page.component.mjs +226 -0
  2. package/esm2022/lib/components/generic-error/generic-error.component.mjs +42 -0
  3. package/esm2022/lib/components/info-drawer/info-drawer.component.mjs +141 -0
  4. package/esm2022/lib/components/locked-by/locked-by.component.mjs +57 -0
  5. package/esm2022/lib/components/open-in-app/open-in-app.component.mjs +73 -0
  6. package/esm2022/lib/components/page-layout/page-layout-content.component.mjs +49 -0
  7. package/esm2022/lib/components/page-layout/page-layout-error.component.mjs +43 -0
  8. package/esm2022/lib/components/page-layout/page-layout-header.component.mjs +43 -0
  9. package/esm2022/lib/components/page-layout/page-layout.component.mjs +64 -0
  10. package/esm2022/lib/components/page-layout/page-layout.module.mjs +43 -0
  11. package/esm2022/lib/components/toolbar/toolbar-action/toolbar-action.component.mjs +63 -0
  12. package/esm2022/lib/components/toolbar/toolbar-button/toolbar-button.component.mjs +79 -0
  13. package/esm2022/lib/components/toolbar/toolbar-menu/toolbar-menu.component.mjs +92 -0
  14. package/esm2022/lib/components/toolbar/toolbar-menu-item/toolbar-menu-item.component.mjs +76 -0
  15. package/esm2022/lib/components/toolbar/toolbar.component.mjs +46 -0
  16. package/esm2022/lib/deprecated/shared-toolbar.module.mjs +44 -0
  17. package/esm2022/lib/deprecated/shared.module.mjs +45 -0
  18. package/esm2022/lib/directives/contextmenu/contextmenu.directive.mjs +114 -0
  19. package/esm2022/lib/directives/pagination.directive.mjs +59 -0
  20. package/esm2022/lib/services/aca-mobile-app-switcher.service.mjs +130 -0
  21. package/esm2022/lib/services/app-hook.service.mjs +78 -0
  22. package/esm2022/lib/services/app-settings.service.mjs +157 -0
  23. package/esm2022/lib/services/app.extension.service.mjs +481 -0
  24. package/esm2022/lib/services/app.service.mjs +239 -0
  25. package/esm2022/lib/services/auto-download.service.mjs +59 -0
  26. package/esm2022/lib/services/content-api.service.mjs +281 -0
  27. package/esm2022/lib/services/navigation-history.service.mjs +55 -0
  28. package/esm2022/lib/services/node-permission.service.mjs +88 -0
  29. package/esm2022/lib/services/router.extension.service.mjs +108 -0
  30. package/esm2022/lib/services/user-profile.service.mjs +76 -0
  31. package/esm2022/lib/testing/lib-testing-module.mjs +163 -0
  32. package/esm2022/public-api.mjs +62 -0
  33. package/esm2022/store/actions/app.actions.mjs +116 -0
  34. package/esm2022/store/actions/context-menu-action-types.mjs +29 -0
  35. package/esm2022/store/actions/contextmenu.actions.mjs +41 -0
  36. package/esm2022/store/actions/library.actions.mjs +67 -0
  37. package/esm2022/store/actions/metadata-aspect.actions.mjs +32 -0
  38. package/esm2022/store/actions/node.actions.mjs +217 -0
  39. package/esm2022/store/actions/router.actions.mjs +56 -0
  40. package/esm2022/store/actions/search-ai.actions.mjs +45 -0
  41. package/esm2022/store/actions/search.actions.mjs +41 -0
  42. package/esm2022/store/actions/snackbar.actions.mjs +68 -0
  43. package/esm2022/store/actions/template.actions.mjs +45 -0
  44. package/esm2022/store/actions/upload.actions.mjs +53 -0
  45. package/esm2022/store/actions/viewer.actions.mjs +93 -0
  46. package/esm2022/store/effects/router.effects.mjs +110 -0
  47. package/esm2022/store/effects/snackbar.effects.mjs +80 -0
  48. package/{fesm2020 → fesm2022}/alfresco-aca-shared-store.mjs +219 -142
  49. package/fesm2022/alfresco-aca-shared-store.mjs.map +1 -0
  50. package/{fesm2020 → fesm2022}/alfresco-aca-shared.mjs +466 -301
  51. package/fesm2022/alfresco-aca-shared.mjs.map +1 -0
  52. package/lib/components/document-base-page/document-base-page.component.d.ts +7 -3
  53. package/lib/components/generic-error/generic-error.component.d.ts +1 -1
  54. package/lib/components/info-drawer/info-drawer.component.d.ts +1 -1
  55. package/lib/components/locked-by/locked-by.component.d.ts +1 -1
  56. package/lib/components/page-layout/page-layout-content.component.d.ts +1 -1
  57. package/lib/components/page-layout/page-layout.component.d.ts +1 -1
  58. package/lib/components/toolbar/toolbar-action/toolbar-action.component.d.ts +1 -1
  59. package/lib/components/toolbar/toolbar-button/toolbar-button.component.d.ts +1 -1
  60. package/lib/components/toolbar/toolbar-menu/toolbar-menu.component.d.ts +1 -1
  61. package/lib/components/toolbar/toolbar-menu-item/toolbar-menu-item.component.d.ts +1 -1
  62. package/lib/components/toolbar/toolbar.component.d.ts +1 -1
  63. package/lib/directives/contextmenu/contextmenu.directive.d.ts +3 -1
  64. package/lib/services/app-hook.service.d.ts +6 -6
  65. package/lib/services/app-settings.service.d.ts +12 -0
  66. package/lib/services/app.service.d.ts +1 -1
  67. package/lib/services/navigation-history.service.d.ts +13 -0
  68. package/lib/services/node-permission.service.d.ts +1 -1
  69. package/package.json +15 -25
  70. package/public-api.d.ts +1 -0
  71. package/store/actions/context-menu-action-types.d.ts +2 -1
  72. package/store/actions/contextmenu.actions.d.ts +7 -0
  73. package/store/actions/search-ai.actions.d.ts +2 -1
  74. package/store/effects/router.effects.d.ts +1 -5
  75. package/store/effects/snackbar.effects.d.ts +0 -29
  76. package/esm2020/lib/components/document-base-page/document-base-page.component.mjs +0 -206
  77. package/esm2020/lib/components/generic-error/generic-error.component.mjs +0 -43
  78. package/esm2020/lib/components/info-drawer/info-drawer.component.mjs +0 -132
  79. package/esm2020/lib/components/locked-by/locked-by.component.mjs +0 -54
  80. package/esm2020/lib/components/open-in-app/open-in-app.component.mjs +0 -68
  81. package/esm2020/lib/components/page-layout/page-layout-content.component.mjs +0 -50
  82. package/esm2020/lib/components/page-layout/page-layout-error.component.mjs +0 -42
  83. package/esm2020/lib/components/page-layout/page-layout-header.component.mjs +0 -42
  84. package/esm2020/lib/components/page-layout/page-layout.component.mjs +0 -61
  85. package/esm2020/lib/components/page-layout/page-layout.module.mjs +0 -42
  86. package/esm2020/lib/components/toolbar/toolbar-action/toolbar-action.component.mjs +0 -58
  87. package/esm2020/lib/components/toolbar/toolbar-button/toolbar-button.component.mjs +0 -74
  88. package/esm2020/lib/components/toolbar/toolbar-menu/toolbar-menu.component.mjs +0 -87
  89. package/esm2020/lib/components/toolbar/toolbar-menu-item/toolbar-menu-item.component.mjs +0 -71
  90. package/esm2020/lib/components/toolbar/toolbar.component.mjs +0 -44
  91. package/esm2020/lib/deprecated/shared-toolbar.module.mjs +0 -43
  92. package/esm2020/lib/deprecated/shared.module.mjs +0 -44
  93. package/esm2020/lib/directives/contextmenu/contextmenu.directive.mjs +0 -104
  94. package/esm2020/lib/directives/pagination.directive.mjs +0 -55
  95. package/esm2020/lib/services/aca-mobile-app-switcher.service.mjs +0 -129
  96. package/esm2020/lib/services/app-hook.service.mjs +0 -79
  97. package/esm2020/lib/services/app-settings.service.mjs +0 -140
  98. package/esm2020/lib/services/app.extension.service.mjs +0 -462
  99. package/esm2020/lib/services/app.service.mjs +0 -221
  100. package/esm2020/lib/services/auto-download.service.mjs +0 -60
  101. package/esm2020/lib/services/content-api.service.mjs +0 -268
  102. package/esm2020/lib/services/node-permission.service.mjs +0 -89
  103. package/esm2020/lib/services/router.extension.service.mjs +0 -105
  104. package/esm2020/lib/services/user-profile.service.mjs +0 -77
  105. package/esm2020/lib/testing/lib-testing-module.mjs +0 -161
  106. package/esm2020/public-api.mjs +0 -61
  107. package/esm2020/store/actions/app.actions.mjs +0 -108
  108. package/esm2020/store/actions/context-menu-action-types.mjs +0 -28
  109. package/esm2020/store/actions/contextmenu.actions.mjs +0 -31
  110. package/esm2020/store/actions/library.actions.mjs +0 -63
  111. package/esm2020/store/actions/metadata-aspect.actions.mjs +0 -31
  112. package/esm2020/store/actions/node.actions.mjs +0 -188
  113. package/esm2020/store/actions/router.actions.mjs +0 -54
  114. package/esm2020/store/actions/search-ai.actions.mjs +0 -41
  115. package/esm2020/store/actions/search.actions.mjs +0 -41
  116. package/esm2020/store/actions/snackbar.actions.mjs +0 -57
  117. package/esm2020/store/actions/template.actions.mjs +0 -47
  118. package/esm2020/store/actions/upload.actions.mjs +0 -49
  119. package/esm2020/store/actions/viewer.actions.mjs +0 -81
  120. package/esm2020/store/effects/router.effects.mjs +0 -114
  121. package/esm2020/store/effects/snackbar.effects.mjs +0 -85
  122. package/fesm2015/alfresco-aca-shared-rules.mjs +0 -795
  123. package/fesm2015/alfresco-aca-shared-rules.mjs.map +0 -1
  124. package/fesm2015/alfresco-aca-shared-store.mjs +0 -1278
  125. package/fesm2015/alfresco-aca-shared-store.mjs.map +0 -1
  126. package/fesm2015/alfresco-aca-shared.mjs +0 -3278
  127. package/fesm2015/alfresco-aca-shared.mjs.map +0 -1
  128. package/fesm2020/alfresco-aca-shared-store.mjs.map +0 -1
  129. package/fesm2020/alfresco-aca-shared.mjs.map +0 -1
  130. /package/{esm2020 → esm2022}/alfresco-aca-shared.mjs +0 -0
  131. /package/{esm2020 → esm2022}/lib/adf-extensions/extensions-data-loader.guard.mjs +0 -0
  132. /package/{esm2020 → esm2022}/lib/components/document-base-page/document-base-page.service.mjs +0 -0
  133. /package/{esm2020 → esm2022}/lib/constants/index.mjs +0 -0
  134. /package/{esm2020 → esm2022}/lib/constants/mime-types.mjs +0 -0
  135. /package/{esm2020 → esm2022}/lib/models/types.mjs +0 -0
  136. /package/{esm2020 → esm2022}/lib/models/viewer.rules.mjs +0 -0
  137. /package/{esm2020 → esm2022}/lib/routing/plugin-enabled.guard.mjs +0 -0
  138. /package/{esm2020 → esm2022}/lib/routing/shared.guard.mjs +0 -0
  139. /package/{esm2020 → esm2022}/lib/utils/node.utils.mjs +0 -0
  140. /package/{esm2020 → esm2022}/rules/alfresco-aca-shared-rules.mjs +0 -0
  141. /package/{esm2020 → esm2022}/rules/app.rules.mjs +0 -0
  142. /package/{esm2020 → esm2022}/rules/navigation.rules.mjs +0 -0
  143. /package/{esm2020 → esm2022}/rules/public-api.mjs +0 -0
  144. /package/{esm2020 → esm2022}/rules/repository.rules.mjs +0 -0
  145. /package/{esm2020 → esm2022}/rules/user.rules.mjs +0 -0
  146. /package/{esm2020 → esm2022}/store/actions/app-action-types.mjs +0 -0
  147. /package/{esm2020 → esm2022}/store/actions/router-action-types.mjs +0 -0
  148. /package/{esm2020 → esm2022}/store/actions/template-action-types.mjs +0 -0
  149. /package/{esm2020 → esm2022}/store/alfresco-aca-shared-store.mjs +0 -0
  150. /package/{esm2020 → esm2022}/store/models/ai-search-by-term-payload.mjs +0 -0
  151. /package/{esm2020 → esm2022}/store/models/delete-status.model.mjs +0 -0
  152. /package/{esm2020 → esm2022}/store/models/deleted-node-info.model.mjs +0 -0
  153. /package/{esm2020 → esm2022}/store/models/modal-configuration.mjs +0 -0
  154. /package/{esm2020 → esm2022}/store/models/node-info.model.mjs +0 -0
  155. /package/{esm2020 → esm2022}/store/models/search-option.model.mjs +0 -0
  156. /package/{esm2020 → esm2022}/store/public-api.mjs +0 -0
  157. /package/{esm2020 → esm2022}/store/selectors/app.selectors.mjs +0 -0
  158. /package/{esm2020 → esm2022}/store/states/app.state.mjs +0 -0
  159. /package/{fesm2020 → fesm2022}/alfresco-aca-shared-rules.mjs +0 -0
  160. /package/{fesm2020 → fesm2022}/alfresco-aca-shared-rules.mjs.map +0 -0
@@ -1,15 +1,12 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { inject, Injectable, InjectionToken } from '@angular/core';
3
- import * as i2 from '@angular/router';
4
- import * as i1 from '@ngrx/effects';
5
- import { createEffect, ofType } from '@ngrx/effects';
3
+ import { Router } from '@angular/router';
4
+ import { Actions, createEffect, ofType } from '@ngrx/effects';
6
5
  import { map } from 'rxjs/operators';
7
- import * as i3 from '@angular/common';
8
- import * as i4 from '@alfresco/adf-core';
9
- import { NotificationService, SnackbarContentComponent } from '@alfresco/adf-core';
10
- import * as i3$1 from '@angular/material/snack-bar';
11
- import * as i1$1 from '@ngrx/store';
12
- import { createSelector } from '@ngrx/store';
6
+ import { Location } from '@angular/common';
7
+ import { NotificationService, TranslationService, SnackbarContentComponent } from '@alfresco/adf-core';
8
+ import { MatSnackBar } from '@angular/material/snack-bar';
9
+ import { Store, createSelector } from '@ngrx/store';
13
10
 
14
11
  /*!
15
12
  * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
@@ -79,6 +76,7 @@ var AppActionTypes;
79
76
  var ContextMenuActionTypes;
80
77
  (function (ContextMenuActionTypes) {
81
78
  ContextMenuActionTypes["ContextMenu"] = "CONTEXT_MENU";
79
+ ContextMenuActionTypes["CustomContextMenu"] = "CUSTOM_CONTEXT_MENU";
82
80
  })(ContextMenuActionTypes || (ContextMenuActionTypes = {}));
83
81
 
84
82
  /*!
@@ -168,86 +166,94 @@ var TemplateActionTypes;
168
166
  * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
169
167
  */
170
168
  class SetCurrentFolderAction {
169
+ payload;
170
+ type = AppActionTypes.SetCurrentFolder;
171
171
  constructor(payload) {
172
172
  this.payload = payload;
173
- this.type = AppActionTypes.SetCurrentFolder;
174
173
  }
175
174
  }
176
175
  class SetCurrentNodeVersionAction {
176
+ payload;
177
+ type = AppActionTypes.SetCurrentVersion;
177
178
  constructor(payload) {
178
179
  this.payload = payload;
179
- this.type = AppActionTypes.SetCurrentVersion;
180
180
  }
181
181
  }
182
182
  class SetCurrentUrlAction {
183
+ payload;
184
+ type = AppActionTypes.SetCurrentUrl;
183
185
  constructor(payload) {
184
186
  this.payload = payload;
185
- this.type = AppActionTypes.SetCurrentUrl;
186
187
  }
187
188
  }
188
189
  class SetUserProfileAction {
190
+ payload;
191
+ type = AppActionTypes.SetUserProfile;
189
192
  constructor(payload) {
190
193
  this.payload = payload;
191
- this.type = AppActionTypes.SetUserProfile;
192
194
  }
193
195
  }
194
196
  class ToggleInfoDrawerAction {
195
- constructor() {
196
- this.type = AppActionTypes.ToggleInfoDrawer;
197
- }
197
+ type = AppActionTypes.ToggleInfoDrawer;
198
198
  }
199
199
  /** @deprecated use @alfresco/adf-content-services/DocumentListService.reload() instead */
200
200
  class ReloadDocumentListAction {
201
+ payload;
202
+ type = AppActionTypes.ReloadDocumentList;
201
203
  constructor(payload) {
202
204
  this.payload = payload;
203
- this.type = AppActionTypes.ReloadDocumentList;
204
205
  }
205
206
  }
206
207
  class ResetSelectionAction {
208
+ payload;
209
+ type = AppActionTypes.ResetSelection;
207
210
  constructor(payload) {
208
211
  this.payload = payload;
209
- this.type = AppActionTypes.ResetSelection;
210
212
  }
211
213
  }
212
214
  class SetInfoDrawerStateAction {
215
+ payload;
216
+ type = AppActionTypes.SetInfoDrawerState;
213
217
  constructor(payload) {
214
218
  this.payload = payload;
215
- this.type = AppActionTypes.SetInfoDrawerState;
216
219
  }
217
220
  }
218
221
  class SetRepositoryInfoAction {
222
+ payload;
223
+ type = AppActionTypes.SetRepositoryInfo;
219
224
  constructor(payload) {
220
225
  this.payload = payload;
221
- this.type = AppActionTypes.SetRepositoryInfo;
222
226
  }
223
227
  }
224
228
  class SetFileUploadingDialogAction {
229
+ payload;
230
+ type = AppActionTypes.SetFileUploadingDialog;
225
231
  constructor(payload) {
226
232
  this.payload = payload;
227
- this.type = AppActionTypes.SetFileUploadingDialog;
228
233
  }
229
234
  }
230
235
  class ShowInfoDrawerPreviewAction {
231
- constructor() {
232
- this.type = AppActionTypes.ShowInfoDrawerPreview;
233
- }
236
+ type = AppActionTypes.ShowInfoDrawerPreview;
234
237
  }
235
238
  class SetInfoDrawerPreviewStateAction {
239
+ payload;
240
+ type = AppActionTypes.SetInfoDrawerPreviewState;
236
241
  constructor(payload) {
237
242
  this.payload = payload;
238
- this.type = AppActionTypes.SetInfoDrawerPreviewState;
239
243
  }
240
244
  }
241
245
  class ShowLoaderAction {
246
+ payload;
247
+ type = AppActionTypes.ShowLoaderAction;
242
248
  constructor(payload) {
243
249
  this.payload = payload;
244
- this.type = AppActionTypes.ShowLoaderAction;
245
250
  }
246
251
  }
247
252
  class SetSearchItemsTotalCountAction {
253
+ payload;
254
+ type = AppActionTypes.SetSearchItemsTotalCount;
248
255
  constructor(payload) {
249
256
  this.payload = payload;
250
- this.type = AppActionTypes.SetSearchItemsTotalCount;
251
257
  }
252
258
  }
253
259
 
@@ -283,34 +289,38 @@ var LibraryActionTypes;
283
289
  LibraryActionTypes["Leave"] = "LEAVE_LIBRARY";
284
290
  })(LibraryActionTypes || (LibraryActionTypes = {}));
285
291
  class DeleteLibraryAction {
292
+ payload;
293
+ type = LibraryActionTypes.Delete;
286
294
  constructor(payload) {
287
295
  this.payload = payload;
288
- this.type = LibraryActionTypes.Delete;
289
296
  }
290
297
  }
291
298
  class CreateLibraryAction {
292
- constructor() {
293
- this.type = LibraryActionTypes.Create;
294
- }
299
+ type = LibraryActionTypes.Create;
295
300
  }
296
301
  class NavigateLibraryAction {
302
+ payload;
303
+ route;
304
+ type = LibraryActionTypes.Navigate;
297
305
  constructor(payload, route) {
298
306
  this.payload = payload;
299
307
  this.route = route;
300
- this.type = LibraryActionTypes.Navigate;
301
308
  }
302
309
  }
303
310
  class UpdateLibraryAction {
311
+ payload;
312
+ type = LibraryActionTypes.Update;
304
313
  constructor(payload) {
305
314
  this.payload = payload;
306
- this.type = LibraryActionTypes.Update;
307
315
  }
308
316
  }
309
317
  class LeaveLibraryAction {
318
+ payload;
319
+ configuration;
320
+ type = LibraryActionTypes.Leave;
310
321
  constructor(payload, configuration) {
311
322
  this.payload = payload;
312
323
  this.configuration = configuration;
313
- this.type = LibraryActionTypes.Leave;
314
324
  }
315
325
  }
316
326
 
@@ -363,142 +373,171 @@ var NodeActionTypes;
363
373
  NodeActionTypes["ManageRules"] = "MANAGE_RULES";
364
374
  })(NodeActionTypes || (NodeActionTypes = {}));
365
375
  class SetSelectedNodesAction {
376
+ payload;
377
+ type = NodeActionTypes.SetSelection;
366
378
  constructor(payload = []) {
367
379
  this.payload = payload;
368
- this.type = NodeActionTypes.SetSelection;
369
380
  }
370
381
  }
371
382
  class DeleteNodesAction {
383
+ payload;
384
+ type = NodeActionTypes.Delete;
372
385
  constructor(payload = []) {
373
386
  this.payload = payload;
374
- this.type = NodeActionTypes.Delete;
375
387
  }
376
388
  }
377
389
  class UndoDeleteNodesAction {
390
+ payload;
391
+ type = NodeActionTypes.UndoDelete;
378
392
  constructor(payload = []) {
379
393
  this.payload = payload;
380
- this.type = NodeActionTypes.UndoDelete;
381
394
  }
382
395
  }
383
396
  class RestoreDeletedNodesAction {
397
+ payload;
398
+ type = NodeActionTypes.RestoreDeleted;
384
399
  constructor(payload) {
385
400
  this.payload = payload;
386
- this.type = NodeActionTypes.RestoreDeleted;
387
401
  }
388
402
  }
389
403
  class PurgeDeletedNodesAction {
404
+ payload;
405
+ type = NodeActionTypes.PurgeDeleted;
390
406
  constructor(payload) {
391
407
  this.payload = payload;
392
- this.type = NodeActionTypes.PurgeDeleted;
393
408
  }
394
409
  }
395
410
  class DownloadNodesAction {
411
+ payload;
412
+ configuration;
413
+ type = NodeActionTypes.Download;
396
414
  constructor(payload = [], configuration) {
397
415
  this.payload = payload;
398
416
  this.configuration = configuration;
399
- this.type = NodeActionTypes.Download;
400
417
  }
401
418
  }
402
419
  class CreateFolderAction {
420
+ payload;
421
+ type = NodeActionTypes.CreateFolder;
403
422
  constructor(payload) {
404
423
  this.payload = payload;
405
- this.type = NodeActionTypes.CreateFolder;
406
424
  }
407
425
  }
408
426
  class EditFolderAction {
427
+ payload;
428
+ configuration;
429
+ type = NodeActionTypes.EditFolder;
409
430
  constructor(payload, configuration) {
410
431
  this.payload = payload;
411
432
  this.configuration = configuration;
412
- this.type = NodeActionTypes.EditFolder;
413
433
  }
414
434
  }
415
435
  class ShareNodeAction {
436
+ payload;
437
+ configuration;
438
+ type = NodeActionTypes.Share;
416
439
  constructor(payload, configuration) {
417
440
  this.payload = payload;
418
441
  this.configuration = configuration;
419
- this.type = NodeActionTypes.Share;
420
442
  }
421
443
  }
422
444
  class UnshareNodesAction {
445
+ payload;
446
+ type = NodeActionTypes.Unshare;
423
447
  constructor(payload) {
424
448
  this.payload = payload;
425
- this.type = NodeActionTypes.Unshare;
426
449
  }
427
450
  }
428
451
  class CopyNodesAction {
452
+ payload;
453
+ configuration;
454
+ type = NodeActionTypes.Copy;
429
455
  constructor(payload, configuration) {
430
456
  this.payload = payload;
431
457
  this.configuration = configuration;
432
- this.type = NodeActionTypes.Copy;
433
458
  }
434
459
  }
435
460
  class MoveNodesAction {
461
+ payload;
462
+ configuration;
463
+ type = NodeActionTypes.Move;
436
464
  constructor(payload, configuration) {
437
465
  this.payload = payload;
438
466
  this.configuration = configuration;
439
- this.type = NodeActionTypes.Move;
440
467
  }
441
468
  }
442
469
  class ManagePermissionsAction {
470
+ payload;
471
+ type = NodeActionTypes.ManagePermissions;
443
472
  constructor(payload) {
444
473
  this.payload = payload;
445
- this.type = NodeActionTypes.ManagePermissions;
446
474
  }
447
475
  }
448
476
  class ExpandInfoDrawerAction {
477
+ payload;
478
+ type = NodeActionTypes.ExpandInfoDrawer;
449
479
  constructor(payload) {
450
480
  this.payload = payload;
451
- this.type = NodeActionTypes.ExpandInfoDrawer;
452
481
  }
453
482
  }
454
483
  class PrintFileAction {
484
+ payload;
485
+ type = NodeActionTypes.PrintFile;
455
486
  constructor(payload) {
456
487
  this.payload = payload;
457
- this.type = NodeActionTypes.PrintFile;
458
488
  }
459
489
  }
460
490
  class ManageVersionsAction {
491
+ payload;
492
+ configuration;
493
+ type = NodeActionTypes.ManageVersions;
461
494
  constructor(payload, configuration) {
462
495
  this.payload = payload;
463
496
  this.configuration = configuration;
464
- this.type = NodeActionTypes.ManageVersions;
465
497
  }
466
498
  }
467
499
  class EditOfflineAction {
500
+ payload;
501
+ type = NodeActionTypes.EditOffline;
468
502
  constructor(payload) {
469
503
  this.payload = payload;
470
- this.type = NodeActionTypes.EditOffline;
471
504
  }
472
505
  }
473
506
  class UnlockWriteAction {
507
+ payload;
508
+ type = NodeActionTypes.UnlockForWriting;
474
509
  constructor(payload) {
475
510
  this.payload = payload;
476
- this.type = NodeActionTypes.UnlockForWriting;
477
511
  }
478
512
  }
479
513
  class AddFavoriteAction {
514
+ payload;
515
+ type = NodeActionTypes.AddFavorite;
480
516
  constructor(payload) {
481
517
  this.payload = payload;
482
- this.type = NodeActionTypes.AddFavorite;
483
518
  }
484
519
  }
485
520
  class RemoveFavoriteAction {
521
+ payload;
522
+ type = NodeActionTypes.RemoveFavorite;
486
523
  constructor(payload) {
487
524
  this.payload = payload;
488
- this.type = NodeActionTypes.RemoveFavorite;
489
525
  }
490
526
  }
491
527
  class ManageAspectsAction {
528
+ payload;
529
+ configuration;
530
+ type = NodeActionTypes.ChangeAspects;
492
531
  constructor(payload, configuration) {
493
532
  this.payload = payload;
494
533
  this.configuration = configuration;
495
- this.type = NodeActionTypes.ChangeAspects;
496
534
  }
497
535
  }
498
536
  class ManageRulesAction {
537
+ payload;
538
+ type = NodeActionTypes.ManageRules;
499
539
  constructor(payload) {
500
540
  this.payload = payload;
501
- this.type = NodeActionTypes.ManageRules;
502
541
  }
503
542
  }
504
543
 
@@ -526,33 +565,35 @@ class ManageRulesAction {
526
565
  * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
527
566
  */
528
567
  class NavigateUrlAction {
568
+ payload;
569
+ type = RouterActionTypes.NavigateUrl;
529
570
  constructor(payload) {
530
571
  this.payload = payload;
531
- this.type = RouterActionTypes.NavigateUrl;
532
572
  }
533
573
  }
534
574
  class NavigateRouteAction {
575
+ payload;
576
+ type = RouterActionTypes.NavigateRoute;
535
577
  constructor(payload) {
536
578
  this.payload = payload;
537
- this.type = RouterActionTypes.NavigateRoute;
538
579
  }
539
580
  }
540
581
  class NavigateToFolder {
582
+ payload;
583
+ type = RouterActionTypes.NavigateFolder;
541
584
  constructor(payload) {
542
585
  this.payload = payload;
543
- this.type = RouterActionTypes.NavigateFolder;
544
586
  }
545
587
  }
546
588
  class NavigateToParentFolder {
589
+ payload;
590
+ type = RouterActionTypes.NavigateParentFolder;
547
591
  constructor(payload) {
548
592
  this.payload = payload;
549
- this.type = RouterActionTypes.NavigateParentFolder;
550
593
  }
551
594
  }
552
595
  class NavigateToPreviousPage {
553
- constructor() {
554
- this.type = RouterActionTypes.NavigateToPreviousPage;
555
- }
596
+ type = RouterActionTypes.NavigateToPreviousPage;
556
597
  }
557
598
 
558
599
  /*!
@@ -584,15 +625,15 @@ var SearchActionTypes;
584
625
  SearchActionTypes["SearchByTerm"] = "SEARCH_BY_TERM";
585
626
  })(SearchActionTypes || (SearchActionTypes = {}));
586
627
  class SearchAction {
587
- constructor() {
588
- this.type = SearchActionTypes.Search;
589
- }
628
+ type = SearchActionTypes.Search;
590
629
  }
591
630
  class SearchByTermAction {
631
+ payload;
632
+ searchOptions;
633
+ type = SearchActionTypes.SearchByTerm;
592
634
  constructor(payload, searchOptions) {
593
635
  this.payload = payload;
594
636
  this.searchOptions = searchOptions;
595
- this.type = SearchActionTypes.SearchByTerm;
596
637
  }
597
638
  }
598
639
 
@@ -626,30 +667,41 @@ var SnackbarActionTypes;
626
667
  SnackbarActionTypes["Error"] = "SNACKBAR_ERROR";
627
668
  })(SnackbarActionTypes || (SnackbarActionTypes = {}));
628
669
  class SnackbarUserAction {
670
+ title;
671
+ action;
629
672
  constructor(title, action) {
630
673
  this.title = title;
631
674
  this.action = action;
632
675
  }
633
676
  }
634
677
  class SnackbarInfoAction {
678
+ payload;
679
+ params;
680
+ type = SnackbarActionTypes.Info;
681
+ userAction;
635
682
  constructor(payload, params) {
636
683
  this.payload = payload;
637
684
  this.params = params;
638
- this.type = SnackbarActionTypes.Info;
639
685
  }
640
686
  }
641
687
  class SnackbarWarningAction {
688
+ payload;
689
+ params;
690
+ type = SnackbarActionTypes.Warning;
691
+ userAction;
642
692
  constructor(payload, params) {
643
693
  this.payload = payload;
644
694
  this.params = params;
645
- this.type = SnackbarActionTypes.Warning;
646
695
  }
647
696
  }
648
697
  class SnackbarErrorAction {
698
+ payload;
699
+ params;
700
+ type = SnackbarActionTypes.Error;
701
+ userAction;
649
702
  constructor(payload, params) {
650
703
  this.payload = payload;
651
704
  this.params = params;
652
- this.type = SnackbarActionTypes.Error;
653
705
  }
654
706
  }
655
707
 
@@ -683,22 +735,26 @@ var UploadActionTypes;
683
735
  UploadActionTypes["UploadFileVersion"] = "UPLOAD_FILE_VERSION";
684
736
  })(UploadActionTypes || (UploadActionTypes = {}));
685
737
  class UploadFilesAction {
738
+ payload;
739
+ type = UploadActionTypes.UploadFiles;
686
740
  constructor(payload) {
687
741
  this.payload = payload;
688
- this.type = UploadActionTypes.UploadFiles;
689
742
  }
690
743
  }
691
744
  class UploadFolderAction {
745
+ payload;
746
+ type = UploadActionTypes.UploadFolder;
692
747
  constructor(payload) {
693
748
  this.payload = payload;
694
- this.type = UploadActionTypes.UploadFolder;
695
749
  }
696
750
  }
697
751
  class UploadFileVersionAction {
752
+ payload;
753
+ configuration;
754
+ type = UploadActionTypes.UploadFileVersion;
698
755
  constructor(payload, configuration) {
699
756
  this.payload = payload;
700
757
  this.configuration = configuration;
701
- this.type = UploadActionTypes.UploadFileVersion;
702
758
  }
703
759
  }
704
760
 
@@ -736,50 +792,62 @@ var ViewerActionTypes;
736
792
  ViewerActionTypes["PluginPreview"] = "PLUGIN_PREVIEW";
737
793
  })(ViewerActionTypes || (ViewerActionTypes = {}));
738
794
  class ViewFileAction {
795
+ payload;
796
+ parentId;
797
+ type = ViewerActionTypes.ViewFile;
739
798
  constructor(payload, parentId) {
740
799
  this.payload = payload;
741
800
  this.parentId = parentId;
742
- this.type = ViewerActionTypes.ViewFile;
743
801
  }
744
802
  }
745
803
  class ViewNodeAction {
804
+ nodeId;
805
+ viewNodeExtras;
806
+ type = ViewerActionTypes.ViewNode;
746
807
  constructor(nodeId, viewNodeExtras) {
747
808
  this.nodeId = nodeId;
748
809
  this.viewNodeExtras = viewNodeExtras;
749
- this.type = ViewerActionTypes.ViewNode;
750
810
  }
751
811
  }
752
812
  class ViewNodeVersionAction {
813
+ nodeId;
814
+ versionId;
815
+ viewNodeExtras;
816
+ type = ViewerActionTypes.ViewNodeVersion;
753
817
  constructor(nodeId, versionId, viewNodeExtras) {
754
818
  this.nodeId = nodeId;
755
819
  this.versionId = versionId;
756
820
  this.viewNodeExtras = viewNodeExtras;
757
- this.type = ViewerActionTypes.ViewNodeVersion;
758
821
  }
759
822
  }
760
823
  class FullscreenViewerAction {
824
+ payload;
825
+ type = ViewerActionTypes.FullScreen;
761
826
  constructor(payload) {
762
827
  this.payload = payload;
763
- this.type = ViewerActionTypes.FullScreen;
764
828
  }
765
829
  }
766
830
  class ClosePreviewAction {
831
+ payload;
832
+ type = ViewerActionTypes.ClosePreview;
767
833
  constructor(payload) {
768
834
  this.payload = payload;
769
- this.type = ViewerActionTypes.ClosePreview;
770
835
  }
771
836
  }
772
837
  class RefreshPreviewAction {
838
+ node;
839
+ type = ViewerActionTypes.RefreshPreview;
773
840
  constructor(node) {
774
841
  this.node = node;
775
- this.type = ViewerActionTypes.RefreshPreview;
776
842
  }
777
843
  }
778
844
  class PluginPreviewAction {
845
+ pluginRoute;
846
+ nodeId;
847
+ type = ViewerActionTypes.PluginPreview;
779
848
  constructor(pluginRoute, nodeId) {
780
849
  this.pluginRoute = pluginRoute;
781
850
  this.nodeId = nodeId;
782
- this.type = ViewerActionTypes.PluginPreview;
783
851
  }
784
852
  }
785
853
 
@@ -808,9 +876,10 @@ class PluginPreviewAction {
808
876
  */
809
877
  const SET_INFO_DRAWER_METADATA_ASPECT = 'SET_INFO_DRAWER_METADATA_ASPECT';
810
878
  class SetInfoDrawerMetadataAspectAction {
879
+ payload;
880
+ type = SET_INFO_DRAWER_METADATA_ASPECT;
811
881
  constructor(payload) {
812
882
  this.payload = payload;
813
- this.type = SET_INFO_DRAWER_METADATA_ASPECT;
814
883
  }
815
884
  }
816
885
 
@@ -838,25 +907,23 @@ class SetInfoDrawerMetadataAspectAction {
838
907
  * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
839
908
  */
840
909
  class FileFromTemplate {
841
- constructor() {
842
- this.type = TemplateActionTypes.FileFromTemplate;
843
- }
910
+ type = TemplateActionTypes.FileFromTemplate;
844
911
  }
845
912
  class FolderFromTemplate {
846
- constructor() {
847
- this.type = TemplateActionTypes.FolderFromTemplate;
848
- }
913
+ type = TemplateActionTypes.FolderFromTemplate;
849
914
  }
850
915
  class CreateFromTemplate {
916
+ payload;
917
+ type = TemplateActionTypes.CreateFromTemplate;
851
918
  constructor(payload) {
852
919
  this.payload = payload;
853
- this.type = TemplateActionTypes.CreateFromTemplate;
854
920
  }
855
921
  }
856
922
  class CreateFromTemplateSuccess {
923
+ node;
924
+ type = TemplateActionTypes.CreateFromTemplateSuccess;
857
925
  constructor(node) {
858
926
  this.node = node;
859
- this.type = TemplateActionTypes.CreateFromTemplateSuccess;
860
927
  }
861
928
  }
862
929
 
@@ -884,9 +951,19 @@ class CreateFromTemplateSuccess {
884
951
  * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
885
952
  */
886
953
  class ContextMenu {
954
+ event;
955
+ type = ContextMenuActionTypes.ContextMenu;
887
956
  constructor(event) {
888
957
  this.event = event;
889
- this.type = ContextMenuActionTypes.ContextMenu;
958
+ }
959
+ }
960
+ class CustomContextMenu {
961
+ event;
962
+ payload;
963
+ type = ContextMenuActionTypes.CustomContextMenu;
964
+ constructor(event, payload = []) {
965
+ this.event = event;
966
+ this.payload = payload;
890
967
  }
891
968
  }
892
969
 
@@ -919,15 +996,19 @@ var SearchAiActionTypes;
919
996
  SearchAiActionTypes["ToggleAiSearchInput"] = "TOGGLE_AI_SEARCH_INPUT";
920
997
  })(SearchAiActionTypes || (SearchAiActionTypes = {}));
921
998
  class SearchByTermAiAction {
999
+ payload;
1000
+ type = SearchAiActionTypes.SearchByTermAi;
922
1001
  constructor(payload) {
923
1002
  this.payload = payload;
924
- this.type = SearchAiActionTypes.SearchByTermAi;
925
1003
  }
926
1004
  }
927
1005
  class ToggleAISearchInput {
928
- constructor(agentId) {
1006
+ agentId;
1007
+ searchTerm;
1008
+ type = SearchAiActionTypes.ToggleAiSearchInput;
1009
+ constructor(agentId, searchTerm) {
929
1010
  this.agentId = agentId;
930
- this.type = SearchAiActionTypes.ToggleAiSearchInput;
1011
+ this.searchTerm = searchTerm;
931
1012
  }
932
1013
  }
933
1014
 
@@ -955,31 +1036,29 @@ class ToggleAISearchInput {
955
1036
  * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
956
1037
  */
957
1038
  class RouterEffects {
958
- constructor(actions$, router, location) {
959
- this.actions$ = actions$;
960
- this.router = router;
961
- this.location = location;
962
- this.notificationService = inject(NotificationService);
963
- this.navigateUrl$ = createEffect(() => this.actions$.pipe(ofType(RouterActionTypes.NavigateUrl), map((action) => {
964
- if (action.payload) {
965
- this.router.navigateByUrl(action.payload);
966
- }
967
- })), { dispatch: false });
968
- this.navigateRoute$ = createEffect(() => this.actions$.pipe(ofType(RouterActionTypes.NavigateRoute), map((action) => {
969
- this.router.navigate(action.payload);
970
- })), { dispatch: false });
971
- this.navigateToFolder$ = createEffect(() => this.actions$.pipe(ofType(RouterActionTypes.NavigateFolder), map((action) => {
972
- if (action.payload?.entry) {
973
- this.navigateToFolder(action.payload.entry);
974
- }
975
- })), { dispatch: false });
976
- this.navigateToParentFolder$ = createEffect(() => this.actions$.pipe(ofType(RouterActionTypes.NavigateParentFolder), map((action) => {
977
- if (action.payload?.entry) {
978
- this.navigateToParentFolder(action.payload.entry);
979
- }
980
- })), { dispatch: false });
981
- this.navigateToPreviousPage$ = createEffect(() => this.actions$.pipe(ofType(RouterActionTypes.NavigateToPreviousPage), map(() => this.location.back())), { dispatch: false });
982
- }
1039
+ notificationService = inject(NotificationService);
1040
+ actions$ = inject(Actions);
1041
+ router = inject(Router);
1042
+ location = inject(Location);
1043
+ navigateUrl$ = createEffect(() => this.actions$.pipe(ofType(RouterActionTypes.NavigateUrl), map((action) => {
1044
+ if (action.payload) {
1045
+ this.router.navigateByUrl(action.payload);
1046
+ }
1047
+ })), { dispatch: false });
1048
+ navigateRoute$ = createEffect(() => this.actions$.pipe(ofType(RouterActionTypes.NavigateRoute), map((action) => {
1049
+ this.router.navigate(action.payload);
1050
+ })), { dispatch: false });
1051
+ navigateToFolder$ = createEffect(() => this.actions$.pipe(ofType(RouterActionTypes.NavigateFolder), map((action) => {
1052
+ if (action.payload?.entry) {
1053
+ this.navigateToFolder(action.payload.entry);
1054
+ }
1055
+ })), { dispatch: false });
1056
+ navigateToParentFolder$ = createEffect(() => this.actions$.pipe(ofType(RouterActionTypes.NavigateParentFolder), map((action) => {
1057
+ if (action.payload?.entry) {
1058
+ this.navigateToParentFolder(action.payload.entry);
1059
+ }
1060
+ })), { dispatch: false });
1061
+ navigateToPreviousPage$ = createEffect(() => this.actions$.pipe(ofType(RouterActionTypes.NavigateToPreviousPage), map(() => this.location.back())), { dispatch: false });
983
1062
  navigateToFolder(node) {
984
1063
  let link = null;
985
1064
  const { path, id } = node;
@@ -1027,12 +1106,12 @@ class RouterEffects {
1027
1106
  isLibraryContent(path) {
1028
1107
  return path && path.elements.length >= 2 && path.elements[1].name === 'Sites';
1029
1108
  }
1109
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: RouterEffects, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1110
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: RouterEffects });
1030
1111
  }
1031
- RouterEffects.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RouterEffects, deps: [{ token: i1.Actions }, { token: i2.Router }, { token: i3.Location }], target: i0.ɵɵFactoryTarget.Injectable });
1032
- RouterEffects.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RouterEffects });
1033
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RouterEffects, decorators: [{
1112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: RouterEffects, decorators: [{
1034
1113
  type: Injectable
1035
- }], ctorParameters: function () { return [{ type: i1.Actions }, { type: i2.Router }, { type: i3.Location }]; } });
1114
+ }] });
1036
1115
 
1037
1116
  /*!
1038
1117
  * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
@@ -1058,21 +1137,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1058
1137
  * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
1059
1138
  */
1060
1139
  class SnackbarEffects {
1061
- constructor(store, actions$, snackBar, translationService) {
1062
- this.store = store;
1063
- this.actions$ = actions$;
1064
- this.snackBar = snackBar;
1065
- this.translationService = translationService;
1066
- this.infoEffect = createEffect(() => this.actions$.pipe(ofType(SnackbarActionTypes.Info), map((action) => {
1067
- this.showSnackBar(action, 'adf-info-snackbar');
1068
- })), { dispatch: false });
1069
- this.warningEffect = createEffect(() => this.actions$.pipe(ofType(SnackbarActionTypes.Warning), map((action) => {
1070
- this.showSnackBar(action, 'adf-warning-snackbar');
1071
- })), { dispatch: false });
1072
- this.errorEffect = createEffect(() => this.actions$.pipe(ofType(SnackbarActionTypes.Error), map((action) => {
1073
- this.showSnackBar(action, 'adf-error-snackbar');
1074
- })), { dispatch: false });
1075
- }
1140
+ store = inject((Store));
1141
+ actions$ = inject(Actions);
1142
+ snackBar = inject(MatSnackBar);
1143
+ translationService = inject(TranslationService);
1144
+ infoEffect = createEffect(() => this.actions$.pipe(ofType(SnackbarActionTypes.Info), map((action) => {
1145
+ this.showSnackBar(action, 'adf-info-snackbar');
1146
+ })), { dispatch: false });
1147
+ warningEffect = createEffect(() => this.actions$.pipe(ofType(SnackbarActionTypes.Warning), map((action) => {
1148
+ this.showSnackBar(action, 'adf-warning-snackbar');
1149
+ })), { dispatch: false });
1150
+ errorEffect = createEffect(() => this.actions$.pipe(ofType(SnackbarActionTypes.Error), map((action) => {
1151
+ this.showSnackBar(action, 'adf-error-snackbar');
1152
+ })), { dispatch: false });
1076
1153
  showSnackBar(action, panelClass) {
1077
1154
  const message = this.translate(action.payload, action.params);
1078
1155
  let actionName = null;
@@ -1100,12 +1177,12 @@ class SnackbarEffects {
1100
1177
  translate(message, params) {
1101
1178
  return this.translationService.instant(message, params);
1102
1179
  }
1180
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SnackbarEffects, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1181
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SnackbarEffects });
1103
1182
  }
1104
- SnackbarEffects.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SnackbarEffects, deps: [{ token: i1$1.Store }, { token: i1.Actions }, { token: i3$1.MatSnackBar }, { token: i4.TranslationService }], target: i0.ɵɵFactoryTarget.Injectable });
1105
- SnackbarEffects.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SnackbarEffects });
1106
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SnackbarEffects, decorators: [{
1183
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: SnackbarEffects, decorators: [{
1107
1184
  type: Injectable
1108
- }], ctorParameters: function () { return [{ type: i1$1.Store }, { type: i1.Actions }, { type: i3$1.MatSnackBar }, { type: i4.TranslationService }]; } });
1185
+ }] });
1109
1186
 
1110
1187
  /*!
1111
1188
  * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
@@ -1396,5 +1473,5 @@ const INITIAL_STATE = {
1396
1473
  * Generated bundle index. Do not edit.
1397
1474
  */
1398
1475
 
1399
- export { AddFavoriteAction, AppActionTypes, ClosePreviewAction, ContextMenu, ContextMenuActionTypes, CopyNodesAction, CreateFolderAction, CreateFromTemplate, CreateFromTemplateSuccess, CreateLibraryAction, DeleteLibraryAction, DeleteNodesAction, DownloadNodesAction, EditFolderAction, EditOfflineAction, ExpandInfoDrawerAction, FileFromTemplate, FolderFromTemplate, FullscreenViewerAction, INITIAL_APP_STATE, INITIAL_STATE, LeaveLibraryAction, LibraryActionTypes, ManageAspectsAction, ManagePermissionsAction, ManageRulesAction, ManageVersionsAction, MoveNodesAction, NavigateLibraryAction, NavigateRouteAction, NavigateToFolder, NavigateToParentFolder, NavigateToPreviousPage, NavigateUrlAction, NodeActionTypes, PluginPreviewAction, PrintFileAction, PurgeDeletedNodesAction, RefreshPreviewAction, ReloadDocumentListAction, RemoveFavoriteAction, ResetSelectionAction, RestoreDeletedNodesAction, RouterActionTypes, RouterEffects, SET_INFO_DRAWER_METADATA_ASPECT, STORE_INITIAL_APP_DATA, SearchAction, SearchActionTypes, SearchAiActionTypes, SearchByTermAction, SearchByTermAiAction, SearchOptionIds, SetCurrentFolderAction, SetCurrentNodeVersionAction, SetCurrentUrlAction, SetFileUploadingDialogAction, SetInfoDrawerMetadataAspectAction, SetInfoDrawerPreviewStateAction, SetInfoDrawerStateAction, SetRepositoryInfoAction, SetSearchItemsTotalCountAction, SetSelectedNodesAction, SetUserProfileAction, ShareNodeAction, ShowInfoDrawerPreviewAction, ShowLoaderAction, SnackbarActionTypes, SnackbarEffects, SnackbarErrorAction, SnackbarInfoAction, SnackbarUserAction, SnackbarWarningAction, TemplateActionTypes, ToggleAISearchInput, ToggleInfoDrawerAction, UndoDeleteNodesAction, UnlockWriteAction, UnshareNodesAction, UpdateLibraryAction, UploadActionTypes, UploadFileVersionAction, UploadFilesAction, UploadFolderAction, ViewFileAction, ViewNodeAction, ViewNodeVersionAction, ViewerActionTypes, getAppSelection, getCurrentFolder, getCurrentVersion, getFileUploadingDialog, getNavigationState, getRepositoryStatus, getRuleContext, getSearchItemsTotalCount, getSideNavState, getUserProfile, infoDrawerMetadataAspect, infoDrawerPreview, isAdmin, isHXIConnectorEnabled, isInfoDrawerOpened, isQuickShareEnabled, selectApp, showLoaderSelector };
1476
+ export { AddFavoriteAction, AppActionTypes, ClosePreviewAction, ContextMenu, ContextMenuActionTypes, CopyNodesAction, CreateFolderAction, CreateFromTemplate, CreateFromTemplateSuccess, CreateLibraryAction, CustomContextMenu, DeleteLibraryAction, DeleteNodesAction, DownloadNodesAction, EditFolderAction, EditOfflineAction, ExpandInfoDrawerAction, FileFromTemplate, FolderFromTemplate, FullscreenViewerAction, INITIAL_APP_STATE, INITIAL_STATE, LeaveLibraryAction, LibraryActionTypes, ManageAspectsAction, ManagePermissionsAction, ManageRulesAction, ManageVersionsAction, MoveNodesAction, NavigateLibraryAction, NavigateRouteAction, NavigateToFolder, NavigateToParentFolder, NavigateToPreviousPage, NavigateUrlAction, NodeActionTypes, PluginPreviewAction, PrintFileAction, PurgeDeletedNodesAction, RefreshPreviewAction, ReloadDocumentListAction, RemoveFavoriteAction, ResetSelectionAction, RestoreDeletedNodesAction, RouterActionTypes, RouterEffects, SET_INFO_DRAWER_METADATA_ASPECT, STORE_INITIAL_APP_DATA, SearchAction, SearchActionTypes, SearchAiActionTypes, SearchByTermAction, SearchByTermAiAction, SearchOptionIds, SetCurrentFolderAction, SetCurrentNodeVersionAction, SetCurrentUrlAction, SetFileUploadingDialogAction, SetInfoDrawerMetadataAspectAction, SetInfoDrawerPreviewStateAction, SetInfoDrawerStateAction, SetRepositoryInfoAction, SetSearchItemsTotalCountAction, SetSelectedNodesAction, SetUserProfileAction, ShareNodeAction, ShowInfoDrawerPreviewAction, ShowLoaderAction, SnackbarActionTypes, SnackbarEffects, SnackbarErrorAction, SnackbarInfoAction, SnackbarUserAction, SnackbarWarningAction, TemplateActionTypes, ToggleAISearchInput, ToggleInfoDrawerAction, UndoDeleteNodesAction, UnlockWriteAction, UnshareNodesAction, UpdateLibraryAction, UploadActionTypes, UploadFileVersionAction, UploadFilesAction, UploadFolderAction, ViewFileAction, ViewNodeAction, ViewNodeVersionAction, ViewerActionTypes, getAppSelection, getCurrentFolder, getCurrentVersion, getFileUploadingDialog, getNavigationState, getRepositoryStatus, getRuleContext, getSearchItemsTotalCount, getSideNavState, getUserProfile, infoDrawerMetadataAspect, infoDrawerPreview, isAdmin, isHXIConnectorEnabled, isInfoDrawerOpened, isQuickShareEnabled, selectApp, showLoaderSelector };
1400
1477
  //# sourceMappingURL=alfresco-aca-shared-store.mjs.map