@alfresco/aca-playwright-shared 5.1.1-10706961491

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 (211) hide show
  1. package/api/api-client-factory.d.ts +63 -0
  2. package/api/categories-api.d.ts +32 -0
  3. package/api/favorites-api.d.ts +41 -0
  4. package/api/file-actions.d.ts +41 -0
  5. package/api/index.d.ts +37 -0
  6. package/api/node-content-tree.d.ts +32 -0
  7. package/api/nodes-api.d.ts +73 -0
  8. package/api/people-api-models.d.ts +42 -0
  9. package/api/queries-api.d.ts +32 -0
  10. package/api/rules-api.d.ts +79 -0
  11. package/api/search-api.d.ts +33 -0
  12. package/api/shared-links-api.d.ts +36 -0
  13. package/api/sites-api.d.ts +44 -0
  14. package/api/tags-api.d.ts +32 -0
  15. package/api/trashcan-api.d.ts +31 -0
  16. package/base-config/global-variables.d.ts +34 -0
  17. package/base-config/global.setup.d.ts +27 -0
  18. package/base-config/index.d.ts +26 -0
  19. package/base-config/playwright.config.d.ts +25 -0
  20. package/base-config/report-portal.config.d.ts +40 -0
  21. package/esm2020/alfresco-aca-playwright-shared.mjs +5 -0
  22. package/esm2020/api/api-client-factory.mjs +111 -0
  23. package/esm2020/api/categories-api.mjs +65 -0
  24. package/esm2020/api/favorites-api.mjs +129 -0
  25. package/esm2020/api/file-actions.mjs +166 -0
  26. package/esm2020/api/index.mjs +38 -0
  27. package/esm2020/api/node-content-tree.mjs +67 -0
  28. package/esm2020/api/nodes-api.mjs +427 -0
  29. package/esm2020/api/people-api-models.mjs +34 -0
  30. package/esm2020/api/queries-api.mjs +69 -0
  31. package/esm2020/api/rules-api.mjs +251 -0
  32. package/esm2020/api/search-api.mjs +74 -0
  33. package/esm2020/api/shared-links-api.mjs +136 -0
  34. package/esm2020/api/sites-api.mjs +155 -0
  35. package/esm2020/api/tags-api.mjs +61 -0
  36. package/esm2020/api/trashcan-api.mjs +54 -0
  37. package/esm2020/base-config/global-variables.mjs +36 -0
  38. package/esm2020/base-config/global.setup.mjs +66 -0
  39. package/esm2020/base-config/index.mjs +27 -0
  40. package/esm2020/base-config/playwright.config.mjs +78 -0
  41. package/esm2020/base-config/report-portal.config.mjs +48 -0
  42. package/esm2020/fixtures/index.mjs +25 -0
  43. package/esm2020/fixtures/page-initialization.mjs +83 -0
  44. package/esm2020/models/custom-config.mjs +25 -0
  45. package/esm2020/models/index.mjs +26 -0
  46. package/esm2020/models/user-model.mjs +55 -0
  47. package/esm2020/page-objects/components/aca-header.component.mjs +77 -0
  48. package/esm2020/page-objects/components/actions-dropdown.component.mjs +99 -0
  49. package/esm2020/page-objects/components/adf-info-drawer.component.mjs +83 -0
  50. package/esm2020/page-objects/components/base.component.mjs +69 -0
  51. package/esm2020/page-objects/components/breadcrumb/breadcrumb.component.mjs +46 -0
  52. package/esm2020/page-objects/components/conditions.component.mjs +75 -0
  53. package/esm2020/page-objects/components/dataTable/data-table.component.mjs +327 -0
  54. package/esm2020/page-objects/components/dataTable/index.mjs +27 -0
  55. package/esm2020/page-objects/components/dataTable/mat-menu.component.mjs +66 -0
  56. package/esm2020/page-objects/components/dataTable/toolbar.component.mjs +39 -0
  57. package/esm2020/page-objects/components/datetime-picker/datetime-picker.component.mjs +52 -0
  58. package/esm2020/page-objects/components/dialogs/adf-confirm-dialog.component.mjs +35 -0
  59. package/esm2020/page-objects/components/dialogs/adf-folder-dialog.component.mjs +56 -0
  60. package/esm2020/page-objects/components/dialogs/adf-library-dialog.component.mjs +63 -0
  61. package/esm2020/page-objects/components/dialogs/content-node-selector-dialog.mjs +67 -0
  62. package/esm2020/page-objects/components/dialogs/create-from-template-dialog-component.mjs +54 -0
  63. package/esm2020/page-objects/components/dialogs/delete-trash-dialog.component.mjs +53 -0
  64. package/esm2020/page-objects/components/dialogs/edit-dialog.component.mjs +38 -0
  65. package/esm2020/page-objects/components/dialogs/index.mjs +39 -0
  66. package/esm2020/page-objects/components/dialogs/link-rules.component.mjs +57 -0
  67. package/esm2020/page-objects/components/dialogs/manage-versions-dialog.component.mjs +35 -0
  68. package/esm2020/page-objects/components/dialogs/password-overlay-dialog.component.mjs +70 -0
  69. package/esm2020/page-objects/components/dialogs/share-dialog.component.mjs +84 -0
  70. package/esm2020/page-objects/components/dialogs/upload-dialog.component.mjs +35 -0
  71. package/esm2020/page-objects/components/dialogs/upload-new-version-dialog.component.mjs +37 -0
  72. package/esm2020/page-objects/components/dialogs/viewer-overlay-dialog.component.mjs +55 -0
  73. package/esm2020/page-objects/components/error.component.mjs +33 -0
  74. package/esm2020/page-objects/components/index.mjs +50 -0
  75. package/esm2020/page-objects/components/manageRules/index.mjs +26 -0
  76. package/esm2020/page-objects/components/manageRules/manage-rules-dialog.component.mjs +63 -0
  77. package/esm2020/page-objects/components/manageRules/manage-rules.component.mjs +69 -0
  78. package/esm2020/page-objects/components/pagination.component.mjs +173 -0
  79. package/esm2020/page-objects/components/search/search-filters/search-filters-categories.component.mjs +32 -0
  80. package/esm2020/page-objects/components/search/search-filters/search-filters-date.component.mjs +114 -0
  81. package/esm2020/page-objects/components/search/search-filters/search-filters-location.component.mjs +39 -0
  82. package/esm2020/page-objects/components/search/search-filters/search-filters-logic.component.mjs +35 -0
  83. package/esm2020/page-objects/components/search/search-filters/search-filters-properties.component.mjs +82 -0
  84. package/esm2020/page-objects/components/search/search-filters/search-filters-tags.component.mjs +39 -0
  85. package/esm2020/page-objects/components/search/search-filters.component.mjs +44 -0
  86. package/esm2020/page-objects/components/search/search-input.component.mjs +47 -0
  87. package/esm2020/page-objects/components/search/search-overlay.components.mjs +82 -0
  88. package/esm2020/page-objects/components/search/search-sorting-picker.components.mjs +71 -0
  89. package/esm2020/page-objects/components/sidenav.component.mjs +86 -0
  90. package/esm2020/page-objects/components/snackBar/snack-bar.component.mjs +53 -0
  91. package/esm2020/page-objects/components/spinner.component.mjs +40 -0
  92. package/esm2020/page-objects/components/viewer.component.mjs +92 -0
  93. package/esm2020/page-objects/index.mjs +26 -0
  94. package/esm2020/page-objects/pages/base.page.mjs +80 -0
  95. package/esm2020/page-objects/pages/favorites-libraries.page.mjs +42 -0
  96. package/esm2020/page-objects/pages/favorites.page.mjs +48 -0
  97. package/esm2020/page-objects/pages/index.mjs +35 -0
  98. package/esm2020/page-objects/pages/login.page.mjs +61 -0
  99. package/esm2020/page-objects/pages/my-libraries.page.mjs +53 -0
  100. package/esm2020/page-objects/pages/nodes.page.mjs +39 -0
  101. package/esm2020/page-objects/pages/personal-files.page.mjs +84 -0
  102. package/esm2020/page-objects/pages/recent-files.page.mjs +44 -0
  103. package/esm2020/page-objects/pages/search.page.mjs +78 -0
  104. package/esm2020/page-objects/pages/shared.page.mjs +44 -0
  105. package/esm2020/page-objects/pages/trash.page.mjs +44 -0
  106. package/esm2020/page-objects/playwright-base.mjs +31 -0
  107. package/esm2020/public-api.mjs +31 -0
  108. package/esm2020/resources/index.mjs +26 -0
  109. package/esm2020/resources/test-data/index.mjs +26 -0
  110. package/esm2020/resources/test-data/test-data-files-folders.mjs +53 -0
  111. package/esm2020/resources/test-data/test-data-permissions.mjs +331 -0
  112. package/esm2020/resources/test-files/index.mjs +78 -0
  113. package/esm2020/utils/api.mjs +43 -0
  114. package/esm2020/utils/config.mjs +70 -0
  115. package/esm2020/utils/error-strings.mjs +39 -0
  116. package/esm2020/utils/exclude-tests.mjs +35 -0
  117. package/esm2020/utils/index.mjs +34 -0
  118. package/esm2020/utils/library-errors.mjs +29 -0
  119. package/esm2020/utils/logger.mjs +69 -0
  120. package/esm2020/utils/paths.mjs +32 -0
  121. package/esm2020/utils/state-helper.mjs +29 -0
  122. package/esm2020/utils/timeouts.mjs +39 -0
  123. package/esm2020/utils/utils.mjs +144 -0
  124. package/fesm2015/alfresco-aca-playwright-shared.mjs +6251 -0
  125. package/fesm2015/alfresco-aca-playwright-shared.mjs.map +1 -0
  126. package/fesm2020/alfresco-aca-playwright-shared.mjs +6895 -0
  127. package/fesm2020/alfresco-aca-playwright-shared.mjs.map +1 -0
  128. package/fixtures/index.d.ts +24 -0
  129. package/fixtures/page-initialization.d.ts +47 -0
  130. package/index.d.ts +5 -0
  131. package/models/custom-config.d.ts +27 -0
  132. package/models/index.d.ts +25 -0
  133. package/models/user-model.d.ts +37 -0
  134. package/package.json +35 -0
  135. package/page-objects/components/aca-header.component.d.ts +53 -0
  136. package/page-objects/components/actions-dropdown.component.d.ts +71 -0
  137. package/page-objects/components/adf-info-drawer.component.d.ts +64 -0
  138. package/page-objects/components/base.component.d.ts +46 -0
  139. package/page-objects/components/breadcrumb/breadcrumb.component.d.ts +34 -0
  140. package/page-objects/components/conditions.component.d.ts +46 -0
  141. package/page-objects/components/dataTable/data-table.component.d.ts +185 -0
  142. package/page-objects/components/dataTable/index.d.ts +26 -0
  143. package/page-objects/components/dataTable/mat-menu.component.d.ts +41 -0
  144. package/page-objects/components/dataTable/toolbar.component.d.ts +33 -0
  145. package/page-objects/components/datetime-picker/datetime-picker.component.d.ts +36 -0
  146. package/page-objects/components/dialogs/adf-confirm-dialog.component.d.ts +33 -0
  147. package/page-objects/components/dialogs/adf-folder-dialog.component.d.ts +45 -0
  148. package/page-objects/components/dialogs/adf-library-dialog.component.d.ts +45 -0
  149. package/page-objects/components/dialogs/content-node-selector-dialog.d.ts +42 -0
  150. package/page-objects/components/dialogs/create-from-template-dialog-component.d.ts +39 -0
  151. package/page-objects/components/dialogs/delete-trash-dialog.component.d.ts +39 -0
  152. package/page-objects/components/dialogs/edit-dialog.component.d.ts +36 -0
  153. package/page-objects/components/dialogs/index.d.ts +38 -0
  154. package/page-objects/components/dialogs/link-rules.component.d.ts +40 -0
  155. package/page-objects/components/dialogs/manage-versions-dialog.component.d.ts +30 -0
  156. package/page-objects/components/dialogs/password-overlay-dialog.component.d.ts +42 -0
  157. package/page-objects/components/dialogs/share-dialog.component.d.ts +54 -0
  158. package/page-objects/components/dialogs/upload-dialog.component.d.ts +33 -0
  159. package/page-objects/components/dialogs/upload-new-version-dialog.component.d.ts +35 -0
  160. package/page-objects/components/dialogs/viewer-overlay-dialog.component.d.ts +43 -0
  161. package/page-objects/components/error.component.d.ts +31 -0
  162. package/page-objects/components/index.d.ts +49 -0
  163. package/page-objects/components/manageRules/index.d.ts +25 -0
  164. package/page-objects/components/manageRules/manage-rules-dialog.component.d.ts +51 -0
  165. package/page-objects/components/manageRules/manage-rules.component.d.ts +46 -0
  166. package/page-objects/components/pagination.component.d.ts +70 -0
  167. package/page-objects/components/search/search-filters/search-filters-categories.component.d.ts +30 -0
  168. package/page-objects/components/search/search-filters/search-filters-date.component.d.ts +73 -0
  169. package/page-objects/components/search/search-filters/search-filters-location.component.d.ts +32 -0
  170. package/page-objects/components/search/search-filters/search-filters-logic.component.d.ts +33 -0
  171. package/page-objects/components/search/search-filters/search-filters-properties.component.d.ts +42 -0
  172. package/page-objects/components/search/search-filters/search-filters-tags.component.d.ts +32 -0
  173. package/page-objects/components/search/search-filters.component.d.ts +42 -0
  174. package/page-objects/components/search/search-input.component.d.ts +40 -0
  175. package/page-objects/components/search/search-overlay.components.d.ts +45 -0
  176. package/page-objects/components/search/search-sorting-picker.components.d.ts +41 -0
  177. package/page-objects/components/sidenav.component.d.ts +45 -0
  178. package/page-objects/components/snackBar/snack-bar.component.d.ts +37 -0
  179. package/page-objects/components/spinner.component.d.ts +30 -0
  180. package/page-objects/components/viewer.component.d.ts +49 -0
  181. package/page-objects/index.d.ts +25 -0
  182. package/page-objects/pages/base.page.d.ts +52 -0
  183. package/page-objects/pages/favorites-libraries.page.d.ts +40 -0
  184. package/page-objects/pages/favorites.page.d.ts +44 -0
  185. package/page-objects/pages/index.d.ts +34 -0
  186. package/page-objects/pages/login.page.d.ts +48 -0
  187. package/page-objects/pages/my-libraries.page.d.ts +45 -0
  188. package/page-objects/pages/nodes.page.d.ts +37 -0
  189. package/page-objects/pages/personal-files.page.d.ts +57 -0
  190. package/page-objects/pages/recent-files.page.d.ts +42 -0
  191. package/page-objects/pages/search.page.d.ts +54 -0
  192. package/page-objects/pages/shared.page.d.ts +42 -0
  193. package/page-objects/pages/trash.page.d.ts +42 -0
  194. package/page-objects/playwright-base.d.ts +30 -0
  195. package/public-api.d.ts +30 -0
  196. package/resources/index.d.ts +25 -0
  197. package/resources/test-data/index.d.ts +25 -0
  198. package/resources/test-data/test-data-files-folders.d.ts +41 -0
  199. package/resources/test-data/test-data-permissions.d.ts +216 -0
  200. package/resources/test-files/index.d.ts +76 -0
  201. package/utils/api.d.ts +26 -0
  202. package/utils/config.d.ts +69 -0
  203. package/utils/error-strings.d.ts +38 -0
  204. package/utils/exclude-tests.d.ts +24 -0
  205. package/utils/index.d.ts +33 -0
  206. package/utils/library-errors.d.ts +28 -0
  207. package/utils/logger.d.ts +54 -0
  208. package/utils/paths.d.ts +30 -0
  209. package/utils/state-helper.d.ts +27 -0
  210. package/utils/timeouts.d.ts +38 -0
  211. package/utils/utils.d.ts +62 -0
@@ -0,0 +1,40 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { BasePage } from './base.page';
26
+ import { DataTableComponent, MatMenuComponent, SidenavComponent, ViewerComponent } from '../components';
27
+ import { AcaHeader } from '../components/aca-header.component';
28
+ import { AdfConfirmDialogComponent, AdfFolderDialogComponent, ViewerOverlayDialogComponent } from '../components/dialogs';
29
+ export declare class FavoritesLibrariesPage extends BasePage {
30
+ private static pageUrl;
31
+ constructor(page: Page);
32
+ acaHeader: AcaHeader;
33
+ matMenu: MatMenuComponent;
34
+ folderDialog: AdfFolderDialogComponent;
35
+ dataTable: DataTableComponent;
36
+ viewer: ViewerComponent;
37
+ viewerDialog: ViewerOverlayDialogComponent;
38
+ sidenav: SidenavComponent;
39
+ confirmDialogComponent: AdfConfirmDialogComponent;
40
+ }
@@ -0,0 +1,44 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { BasePage } from './base.page';
26
+ import { DataTableComponent, MatMenuComponent, ViewerComponent, SidenavComponent, PaginationComponent, Breadcrumb, AdfInfoDrawerComponent } from '../components';
27
+ import { AcaHeader } from '../components/aca-header.component';
28
+ import { AdfFolderDialogComponent, ViewerOverlayDialogComponent, ManageVersionsDialog } from '../components/dialogs';
29
+ export declare class FavoritesPage extends BasePage {
30
+ private static pageUrl;
31
+ constructor(page: Page);
32
+ acaHeader: AcaHeader;
33
+ matMenu: MatMenuComponent;
34
+ folderDialog: AdfFolderDialogComponent;
35
+ dataTable: DataTableComponent;
36
+ viewer: ViewerComponent;
37
+ viewerDialog: ViewerOverlayDialogComponent;
38
+ sidenav: SidenavComponent;
39
+ pagination: PaginationComponent;
40
+ breadcrumb: Breadcrumb;
41
+ infoDrawer: AdfInfoDrawerComponent;
42
+ manageVersionsDialog: ManageVersionsDialog;
43
+ waitForPageLoad(): Promise<void>;
44
+ }
@@ -0,0 +1,34 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ export * from './base.page';
25
+ export * from './login.page';
26
+ export * from './nodes.page';
27
+ export * from './personal-files.page';
28
+ export * from './my-libraries.page';
29
+ export * from './recent-files.page';
30
+ export * from './shared.page';
31
+ export * from './search.page';
32
+ export * from './favorites.page';
33
+ export * from './trash.page';
34
+ export * from './favorites-libraries.page';
@@ -0,0 +1,48 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { BasePage } from './base.page';
26
+ import { UserModel } from '../../models';
27
+ interface LoginOptions {
28
+ waitForLoading?: boolean;
29
+ withNavigation?: boolean;
30
+ }
31
+ export declare class LoginPage extends BasePage {
32
+ private static pageUrl;
33
+ constructor(page: Page);
34
+ username: import("playwright-core").Locator;
35
+ password: import("playwright-core").Locator;
36
+ submitButton: import("playwright-core").Locator;
37
+ userProfileButton: import("playwright-core").Locator;
38
+ userLogOutButton: import("playwright-core").Locator;
39
+ passwordVisibility: import("playwright-core").Locator;
40
+ loginUser(userData: {
41
+ username: string;
42
+ password: string;
43
+ } | UserModel, options?: LoginOptions): Promise<void>;
44
+ logoutUser(): Promise<void>;
45
+ isPasswordDisplayed(): Promise<boolean>;
46
+ verifyUserLogin(): Promise<void>;
47
+ }
48
+ export {};
@@ -0,0 +1,45 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { BasePage } from './base.page';
26
+ import { AcaHeader, AdfInfoDrawerComponent, AdfLibraryDialogComponent, DataTableComponent, MatMenuComponent, ViewerComponent, ViewerOverlayDialogComponent, ContentNodeSelectorDialog, Breadcrumb, SidenavComponent, CreateFromTemplateDialogComponent, AdfConfirmDialogComponent } from '../components';
27
+ export declare class MyLibrariesPage extends BasePage {
28
+ private static pageUrl;
29
+ constructor(page: Page);
30
+ acaHeader: AcaHeader;
31
+ matMenu: MatMenuComponent;
32
+ libraryDialog: AdfLibraryDialogComponent;
33
+ dataTable: DataTableComponent;
34
+ libraryDetails: AdfInfoDrawerComponent;
35
+ viewer: ViewerComponent;
36
+ viewerDialog: ViewerOverlayDialogComponent;
37
+ copyMoveDialog: ContentNodeSelectorDialog;
38
+ breadcrumb: Breadcrumb;
39
+ sidenav: SidenavComponent;
40
+ contentNodeSelector: ContentNodeSelectorDialog;
41
+ createFromTemplateDialogComponent: CreateFromTemplateDialogComponent;
42
+ confirmDialogComponent: AdfConfirmDialogComponent;
43
+ selectCreateLibrary(): Promise<void>;
44
+ clickMoreActionsButton(buttonLabel: string): Promise<void>;
45
+ }
@@ -0,0 +1,37 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { ConditionComponent, ManageRules, ManageRulesDialogComponent, ToolbarComponent, ActionsDropdownComponent, ContentNodeSelectorDialog, LinkRulesDialog } from '../components';
26
+ import { BasePage } from './base.page';
27
+ export declare class NodesPage extends BasePage {
28
+ private static pageUrl;
29
+ constructor(page: Page);
30
+ toolbar: ToolbarComponent;
31
+ manageRulesDialog: ManageRulesDialogComponent;
32
+ actionsDropdown: ActionsDropdownComponent;
33
+ conditionsDropdown: ConditionComponent;
34
+ manageRules: ManageRules;
35
+ contentNodeSelectorDialog: ContentNodeSelectorDialog;
36
+ linkRulesDialog: LinkRulesDialog;
37
+ }
@@ -0,0 +1,57 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { BasePage } from './base.page';
26
+ import { AcaHeader, AdfFolderDialogComponent, ContentNodeSelectorDialog, CreateFromTemplateDialogComponent, PasswordOverlayDialogComponent, ViewerOverlayDialogComponent, Breadcrumb, DataTableComponent, MatMenuComponent, ViewerComponent, SidenavComponent, PaginationComponent, ErrorComponent, ShareDialogComponent, AdfConfirmDialogComponent, AdfInfoDrawerComponent, UploadNewVersionDialog, ManageVersionsDialog, UploadDialog, SnackBarComponent, EditDialog } from '../components';
27
+ export declare class PersonalFilesPage extends BasePage {
28
+ private static pageUrl;
29
+ constructor(page: Page);
30
+ acaHeader: AcaHeader;
31
+ matMenu: MatMenuComponent;
32
+ folderDialog: AdfFolderDialogComponent;
33
+ contentNodeSelector: ContentNodeSelectorDialog;
34
+ dataTable: DataTableComponent;
35
+ viewer: ViewerComponent;
36
+ passwordDialog: PasswordOverlayDialogComponent;
37
+ viewerDialog: ViewerOverlayDialogComponent;
38
+ breadcrumb: Breadcrumb;
39
+ sidenav: SidenavComponent;
40
+ createFromTemplateDialogComponent: CreateFromTemplateDialogComponent;
41
+ pagination: PaginationComponent;
42
+ errorDialog: ErrorComponent;
43
+ shareDialog: ShareDialogComponent;
44
+ confirmDialog: AdfConfirmDialogComponent;
45
+ infoDrawer: AdfInfoDrawerComponent;
46
+ uploadNewVersionDialog: UploadNewVersionDialog;
47
+ manageVersionsDialog: ManageVersionsDialog;
48
+ uploadDialog: UploadDialog;
49
+ snackBar: SnackBarComponent;
50
+ editDialog: EditDialog;
51
+ selectCreateFolder(): Promise<void>;
52
+ closeMenu(): Promise<void>;
53
+ waitForPageLoad(): Promise<void>;
54
+ clickMoreActionsButton(buttonLabel: string): Promise<void>;
55
+ copyOrMoveContentInDatatable(sourceFileList: string[], destinationName: string, operation?: string): Promise<void>;
56
+ selectItemsAndToggleFavorite(item: string[], action: 'Favorite' | 'Remove Favorite'): Promise<void>;
57
+ }
@@ -0,0 +1,42 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { BasePage } from './base.page';
26
+ import { DataTableComponent, MatMenuComponent, ViewerComponent, SidenavComponent, Breadcrumb, AdfInfoDrawerComponent } from '../components';
27
+ import { AcaHeader } from '../components/aca-header.component';
28
+ import { AdfFolderDialogComponent, ContentNodeSelectorDialog, ManageVersionsDialog } from '../components/dialogs';
29
+ export declare class RecentFilesPage extends BasePage {
30
+ private static pageUrl;
31
+ constructor(page: Page);
32
+ acaHeader: AcaHeader;
33
+ matMenu: MatMenuComponent;
34
+ folderDialog: AdfFolderDialogComponent;
35
+ dataTable: DataTableComponent;
36
+ viewer: ViewerComponent;
37
+ sidenav: SidenavComponent;
38
+ breadcrumb: Breadcrumb;
39
+ infoDrawer: AdfInfoDrawerComponent;
40
+ contentNodeSelector: ContentNodeSelectorDialog;
41
+ manageVersionsDialog: ManageVersionsDialog;
42
+ }
@@ -0,0 +1,54 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { BasePage } from './base.page';
26
+ import { DataTableComponent, MatMenuComponent, ViewerComponent, SearchInputComponent, SearchOverlayComponent, SidenavComponent, SearchSortingPicker, SearchFilters, SearchFiltersTags, SearchFiltersCategories, SearchFiltersDate, SearchFiltersLocation, SearchFiltersLogic, SearchFiltersProperties } from '../components';
27
+ import { AcaHeader } from '../components/aca-header.component';
28
+ import { AdfConfirmDialogComponent, AdfFolderDialogComponent, UploadNewVersionDialog, ManageVersionsDialog } from '../components/dialogs';
29
+ export type SearchType = 'files' | 'folders' | 'filesAndFolders' | 'libraries';
30
+ export declare class SearchPage extends BasePage {
31
+ private static pageUrl;
32
+ constructor(page: Page);
33
+ acaHeader: AcaHeader;
34
+ matMenu: MatMenuComponent;
35
+ folderDialog: AdfFolderDialogComponent;
36
+ dataTable: DataTableComponent;
37
+ viewer: ViewerComponent;
38
+ searchInput: SearchInputComponent;
39
+ searchOverlay: SearchOverlayComponent;
40
+ searchSortingPicker: SearchSortingPicker;
41
+ searchFilters: SearchFilters;
42
+ searchFiltersTags: SearchFiltersTags;
43
+ searchFiltersCategories: SearchFiltersCategories;
44
+ searchFiltersDate: SearchFiltersDate;
45
+ searchFiltersLocation: SearchFiltersLocation;
46
+ searchFiltersProperties: SearchFiltersProperties;
47
+ searchFiltersLogic: SearchFiltersLogic;
48
+ sidenav: SidenavComponent;
49
+ confirmDialogComponent: AdfConfirmDialogComponent;
50
+ uploadNewVersionDialog: UploadNewVersionDialog;
51
+ manageVersionsDialog: ManageVersionsDialog;
52
+ searchWithin(searchText: string, searchType: SearchType): Promise<void>;
53
+ clickSearchButton(): Promise<void>;
54
+ }
@@ -0,0 +1,42 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { BasePage } from './base.page';
26
+ import { DataTableComponent, MatMenuComponent, ViewerComponent, SidenavComponent, Breadcrumb, AdfInfoDrawerComponent } from '../components';
27
+ import { AcaHeader } from '../components/aca-header.component';
28
+ import { AdfFolderDialogComponent, ViewerOverlayDialogComponent, ManageVersionsDialog } from '../components/dialogs';
29
+ export declare class SharedPage extends BasePage {
30
+ private static pageUrl;
31
+ constructor(page: Page);
32
+ acaHeader: AcaHeader;
33
+ matMenu: MatMenuComponent;
34
+ folderDialog: AdfFolderDialogComponent;
35
+ dataTable: DataTableComponent;
36
+ viewer: ViewerComponent;
37
+ viewerDialog: ViewerOverlayDialogComponent;
38
+ sidenav: SidenavComponent;
39
+ breadcrumb: Breadcrumb;
40
+ infoDrawer: AdfInfoDrawerComponent;
41
+ manageVersionsDialog: ManageVersionsDialog;
42
+ }
@@ -0,0 +1,42 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { BasePage } from './base.page';
26
+ import { DataTableComponent, MatMenuComponent, ViewerComponent, SidenavComponent, Breadcrumb, PaginationComponent } from '../components';
27
+ import { AcaHeader } from '../components/aca-header.component';
28
+ import { AdfFolderDialogComponent, ViewerOverlayDialogComponent, AdfDeleteTrashComponent } from '../components/dialogs';
29
+ export declare class TrashPage extends BasePage {
30
+ private static pageUrl;
31
+ constructor(page: Page);
32
+ acaHeader: AcaHeader;
33
+ matMenu: MatMenuComponent;
34
+ folderDialog: AdfFolderDialogComponent;
35
+ dataTable: DataTableComponent;
36
+ viewer: ViewerComponent;
37
+ viewerDialog: ViewerOverlayDialogComponent;
38
+ sidenav: SidenavComponent;
39
+ breadcrumb: Breadcrumb;
40
+ pagination: PaginationComponent;
41
+ deleteDialog: AdfDeleteTrashComponent;
42
+ }
@@ -0,0 +1,30 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ import { Page } from '@playwright/test';
25
+ import { LoggerLike } from '../utils';
26
+ export declare abstract class PlaywrightBase {
27
+ page: Page;
28
+ logger: LoggerLike;
29
+ protected constructor(page: Page);
30
+ }
@@ -0,0 +1,30 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ export * from './api';
25
+ export * from './base-config';
26
+ export * from './models';
27
+ export * from './page-objects';
28
+ export * from './fixtures';
29
+ export * from './utils';
30
+ export * from './resources';
@@ -0,0 +1,25 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ export * from './test-data';
25
+ export * from './test-files';
@@ -0,0 +1,25 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ export * from './test-data-permissions';
25
+ export * from './test-data-files-folders';
@@ -0,0 +1,41 @@
1
+ /*!
2
+ * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
3
+ *
4
+ * Alfresco Example Content Application
5
+ *
6
+ * This file is part of the Alfresco Example Content Application.
7
+ * If the software was purchased under a paid Alfresco license, the terms of
8
+ * the paid license agreement will prevail. Otherwise, the software is
9
+ * provided under the following open source license terms:
10
+ *
11
+ * The Alfresco Example Content Application is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU Lesser General Public License as published by
13
+ * the Free Software Foundation, either version 3 of the License, or
14
+ * (at your option) any later version.
15
+ *
16
+ * The Alfresco Example Content Application is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+ export declare const folderFile: {
25
+ name: string;
26
+ description: string;
27
+ contextMenu: string[];
28
+ toolbarPrimary: string[];
29
+ toolbarMore: string[];
30
+ };
31
+ export declare const folderFavFile: {
32
+ name: string;
33
+ contextMenu: string[];
34
+ toolbarPrimary: string[];
35
+ toolbarMore: string[];
36
+ };
37
+ export declare const multipleSelFile: {
38
+ contextMenu: string[];
39
+ toolbarPrimary: string[];
40
+ toolbarMore: string[];
41
+ };