@skyux/lists 6.16.0 → 6.17.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 (42) hide show
  1. package/documentation.json +317 -342
  2. package/esm2020/testing/filter/filter-fixture-button.mjs +2 -1
  3. package/esm2020/testing/filter/filter-fixture-summary.mjs +2 -1
  4. package/esm2020/testing/filter/filter-testing.module.mjs +4 -1
  5. package/esm2020/testing/infinite-scroll/infinite-scroll-fixture.mjs +2 -1
  6. package/esm2020/testing/infinite-scroll/infinite-scroll-harness-filters.mjs +1 -1
  7. package/esm2020/testing/infinite-scroll/infinite-scroll-harness.mjs +2 -1
  8. package/esm2020/testing/infinite-scroll/infinite-scroll-testing.module.mjs +4 -1
  9. package/esm2020/testing/paging/paging-fixture-button.mjs +1 -1
  10. package/esm2020/testing/paging/paging-fixture.mjs +2 -1
  11. package/esm2020/testing/paging/paging-testing.module.mjs +4 -1
  12. package/esm2020/testing/repeater/repeater-harness-filters.mjs +1 -1
  13. package/esm2020/testing/repeater/repeater-harness.mjs +2 -1
  14. package/esm2020/testing/repeater/repeater-item-harness-filters.mjs +1 -1
  15. package/esm2020/testing/repeater/repeater-item-harness.mjs +2 -1
  16. package/esm2020/testing/sort/sort-fixture-menu-item.mjs +1 -1
  17. package/esm2020/testing/sort/sort-fixture-menu.mjs +1 -1
  18. package/esm2020/testing/sort/sort-fixture.mjs +2 -1
  19. package/esm2020/testing/sort/sort-testing.module.mjs +4 -1
  20. package/fesm2015/skyux-lists-testing.mjs +20 -0
  21. package/fesm2015/skyux-lists-testing.mjs.map +1 -1
  22. package/fesm2020/skyux-lists-testing.mjs +20 -0
  23. package/fesm2020/skyux-lists-testing.mjs.map +1 -1
  24. package/package.json +10 -10
  25. package/testing/filter/filter-fixture-button.d.ts +1 -0
  26. package/testing/filter/filter-fixture-summary.d.ts +1 -0
  27. package/testing/filter/filter-testing.module.d.ts +3 -0
  28. package/testing/infinite-scroll/infinite-scroll-fixture.d.ts +1 -0
  29. package/testing/infinite-scroll/infinite-scroll-harness-filters.d.ts +1 -0
  30. package/testing/infinite-scroll/infinite-scroll-harness.d.ts +1 -0
  31. package/testing/infinite-scroll/infinite-scroll-testing.module.d.ts +3 -0
  32. package/testing/paging/paging-fixture-button.d.ts +3 -0
  33. package/testing/paging/paging-fixture.d.ts +1 -0
  34. package/testing/paging/paging-testing.module.d.ts +3 -0
  35. package/testing/repeater/repeater-harness-filters.d.ts +1 -0
  36. package/testing/repeater/repeater-harness.d.ts +1 -0
  37. package/testing/repeater/repeater-item-harness-filters.d.ts +1 -0
  38. package/testing/repeater/repeater-item-harness.d.ts +1 -0
  39. package/testing/sort/sort-fixture-menu-item.d.ts +3 -0
  40. package/testing/sort/sort-fixture-menu.d.ts +3 -0
  41. package/testing/sort/sort-fixture.d.ts +1 -0
  42. package/testing/sort/sort-testing.module.d.ts +3 -0
@@ -1,6 +1,7 @@
1
1
  import { SkyHarnessFilters } from '@skyux/core/testing';
2
2
  /**
3
3
  * A set of criteria that can be used to filter a list of `SkyRepeaterItemHarness` instances.
4
+ * @internal
4
5
  */
5
6
  export interface SkyRepeaterItemHarnessFilters extends SkyHarnessFilters {
6
7
  /**
@@ -3,6 +3,7 @@ import { SkyComponentHarness } from '@skyux/core/testing';
3
3
  import { SkyRepeaterItemHarnessFilters } from './repeater-item-harness-filters';
4
4
  /**
5
5
  * Harness for interacting with a repeater item component in tests.
6
+ * @internal
6
7
  */
7
8
  export declare class SkyRepeaterItemHarness extends SkyComponentHarness {
8
9
  #private;
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @internal
3
+ */
1
4
  export interface SkySortFixtureMenuItem {
2
5
  index: number;
3
6
  isActive: boolean;
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @internal
3
+ */
1
4
  export interface SkySortFixtureMenu {
2
5
  buttonText: string;
3
6
  isOpen: boolean;
@@ -5,6 +5,7 @@ import { SkySortFixtureMenuItem } from './sort-fixture-menu-item';
5
5
  * Provides information for and interaction with a SKY UX sort component.
6
6
  * By using the fixture API, a test insulates itself against updates to the internals
7
7
  * of a component, such as changing its DOM structure.
8
+ * @internal
8
9
  */
9
10
  export declare class SkySortFixture {
10
11
  private fixture;
@@ -1,6 +1,9 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "@angular/platform-browser/animations";
3
3
  import * as i2 from "@skyux/lists";
4
+ /**
5
+ * @internal
6
+ */
4
7
  export declare class SkySortTestingModule {
5
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SkySortTestingModule, never>;
6
9
  static ɵmod: i0.ɵɵNgModuleDeclaration<SkySortTestingModule, never, [typeof i1.NoopAnimationsModule], [typeof i2.SkySortModule]>;