@skyux/pages 11.7.0 → 11.8.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 (31) hide show
  1. package/documentation.json +2694 -888
  2. package/esm2022/index.mjs +5 -1
  3. package/esm2022/lib/modules/action-hub/action-hub-recent-links-resolve.pipe.mjs +3 -2
  4. package/esm2022/lib/modules/action-hub/action-hub.component.mjs +9 -9
  5. package/esm2022/lib/modules/action-hub/action-hub.module.mjs +4 -4
  6. package/esm2022/lib/modules/link-list/link-list-item.component.mjs +16 -0
  7. package/esm2022/lib/modules/link-list/link-list.component.mjs +44 -20
  8. package/esm2022/lib/modules/link-list/link-list.module.mjs +18 -26
  9. package/esm2022/lib/modules/link-list-recently-accessed/link-list-recently-accessed.component.mjs +45 -0
  10. package/esm2022/lib/modules/page/page-links.component.mjs +3 -3
  11. package/esm2022/lib/modules/page/page.module.mjs +22 -5
  12. package/esm2022/testing/link-list/link-list-harness-filters.mjs +2 -0
  13. package/esm2022/testing/link-list/link-list-harness.mjs +40 -0
  14. package/esm2022/testing/public-api.mjs +3 -1
  15. package/fesm2022/skyux-pages-testing.mjs +40 -1
  16. package/fesm2022/skyux-pages-testing.mjs.map +1 -1
  17. package/fesm2022/skyux-pages.mjs +287 -203
  18. package/fesm2022/skyux-pages.mjs.map +1 -1
  19. package/index.d.ts +4 -0
  20. package/lib/modules/action-hub/action-hub-recent-links-resolve.pipe.d.ts +1 -1
  21. package/lib/modules/action-hub/action-hub.module.d.ts +3 -3
  22. package/lib/modules/link-list/link-list-item.component.d.ts +8 -0
  23. package/lib/modules/link-list/link-list.component.d.ts +16 -6
  24. package/lib/modules/link-list/link-list.module.d.ts +3 -6
  25. package/lib/modules/link-list-recently-accessed/link-list-recently-accessed.component.d.ts +15 -0
  26. package/lib/modules/page/page-links.component.d.ts +2 -2
  27. package/lib/modules/page/page.module.d.ts +6 -4
  28. package/package.json +9 -9
  29. package/testing/link-list/link-list-harness-filters.d.ts +6 -0
  30. package/testing/link-list/link-list-harness.d.ts +30 -0
  31. package/testing/public-api.d.ts +4 -0
@@ -0,0 +1,30 @@
1
+ import { HarnessPredicate } from '@angular/cdk/testing';
2
+ import { SkyComponentHarness } from '@skyux/core/testing';
3
+ import { SkyLinkListHarnessFilters } from './link-list-harness-filters';
4
+ /**
5
+ * Harness for interacting with a link list component in tests.
6
+ */
7
+ export declare class SkyLinkListHarness extends SkyComponentHarness {
8
+ #private;
9
+ /**
10
+ * @internal
11
+ */
12
+ static hostSelector: string;
13
+ /**
14
+ * Gets a `HarnessPredicate` that can be used to search for a
15
+ * `SkyLinkListHarness` that meets certain criteria.
16
+ */
17
+ static with(filters: SkyLinkListHarnessFilters): HarnessPredicate<SkyLinkListHarness>;
18
+ /**
19
+ * Gets the link list's heading text. If there are no links, this will return `undefined`.
20
+ */
21
+ getHeadingText(): Promise<string | undefined>;
22
+ /**
23
+ * Whether the link list is showing a list of links.
24
+ */
25
+ isVisible(): Promise<boolean>;
26
+ /**
27
+ * Gets the status of the wait indicator.
28
+ */
29
+ isWaiting(): Promise<boolean>;
30
+ }
@@ -1,2 +1,6 @@
1
1
  export { SkyPageHarness } from './page/page-harness';
2
2
  export { SkyPageHarnessFilters } from './page/page-harness-filters';
3
+ export { SkyPageHeaderHarness } from './page-header/page-header-harness';
4
+ export { SkyPageHeaderHarnessFilters } from './page-header/page-header-harness-filters';
5
+ export { SkyLinkListHarness } from './link-list/link-list-harness';
6
+ export { SkyLinkListHarnessFilters } from './link-list/link-list-harness-filters';