@gravitee/ui-particles-angular 12.3.0-gio-form-selection-inline-36a723e → 12.3.0-gio-form-selection-inline-c61d9d6

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.
@@ -0,0 +1,19 @@
1
+ import { BaseHarnessFilters, ComponentHarness, HarnessPredicate } from '@angular/cdk/testing';
2
+ export type GioFormSelectionInlineCardHarnessFilters = BaseHarnessFilters & {
3
+ value?: string;
4
+ };
5
+ export declare class GioFormSelectionInlineCardHarness extends ComponentHarness {
6
+ static hostSelector: string;
7
+ /**
8
+ * Gets a `HarnessPredicate` that can be used to search for a `GioFormSelectionInlineCardHarness` that meets
9
+ * certain criteria.
10
+ *
11
+ * @param options Options for filtering which input instances are considered a match.
12
+ * @return a `HarnessPredicate` configured with the given options.
13
+ */
14
+ static with(options?: GioFormSelectionInlineCardHarnessFilters): HarnessPredicate<GioFormSelectionInlineCardHarness>;
15
+ getValue(): Promise<string | null>;
16
+ isSelected(): Promise<boolean>;
17
+ isDisabled(): Promise<boolean>;
18
+ getContentText(): Promise<string>;
19
+ }
@@ -0,0 +1,26 @@
1
+ import { BaseHarnessFilters, ComponentHarness, HarnessPredicate } from '@angular/cdk/testing';
2
+ import { GioFormSelectionInlineCardHarness } from './gio-form-selection-inline-card.harness';
3
+ export type GioFormSelectionInlineHarnessFilters = BaseHarnessFilters;
4
+ export declare class GioFormSelectionInlineHarness extends ComponentHarness {
5
+ static hostSelector: string;
6
+ /**
7
+ * Gets a `HarnessPredicate` that can be used to search for a `GioFormSelectionInlineHarness` that meets
8
+ * certain criteria.
9
+ *
10
+ * @param options Options for filtering which input instances are considered a match.
11
+ * @return a `HarnessPredicate` configured with the given options.
12
+ */
13
+ static with(options?: GioFormSelectionInlineHarnessFilters): HarnessPredicate<GioFormSelectionInlineHarness>;
14
+ protected getCards: import("@angular/cdk/testing").AsyncFactoryFn<GioFormSelectionInlineCardHarness[]>;
15
+ protected getCardByValue: (value: string) => Promise<import("@angular/cdk/testing").TestElement>;
16
+ getSelectedValue(): Promise<string | undefined>;
17
+ getUnselectedValues(): Promise<(string | undefined)[]>;
18
+ getSelectionCards(): Promise<{
19
+ text: string;
20
+ value: string | undefined;
21
+ selected: boolean;
22
+ disabled: boolean;
23
+ }[]>;
24
+ select(value: string): Promise<void>;
25
+ isDisabled(): Promise<boolean>;
26
+ }
@@ -2,3 +2,5 @@ export * from './gio-form-selection-inline.module';
2
2
  export * from './gio-form-selection-inline.component';
3
3
  export * from './gio-form-selection-inline-card.component';
4
4
  export * from './gio-form-selection-inline-card-content/gio-form-selection-inline-card-content.component';
5
+ export * from './gio-form-selection-inline.harness';
6
+ export * from './gio-form-selection-inline-card.harness';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-particles-angular",
3
- "version": "12.3.0-gio-form-selection-inline-36a723e",
3
+ "version": "12.3.0-gio-form-selection-inline-c61d9d6",
4
4
  "description": "Gravitee.io - UI Particles Angular",
5
5
  "repository": {
6
6
  "type": "git",