@gravitee/ui-particles-angular 12.3.0-gio-form-selection-inline-2cefd4e → 12.3.0-gio-form-selection-inline-0dfea7c
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.
- package/esm2022/lib/gio-form-selection-inline/gio-form-selection-inline.harness.mjs +54 -0
- package/esm2022/lib/gio-form-selection-inline/public-api.mjs +2 -1
- package/fesm2022/gravitee-ui-particles-angular.mjs +54 -1
- package/fesm2022/gravitee-ui-particles-angular.mjs.map +1 -1
- package/lib/gio-form-selection-inline/gio-form-selection-inline.harness.d.ts +19 -0
- package/lib/gio-form-selection-inline/public-api.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { BaseHarnessFilters, ComponentHarness, HarnessPredicate } from '@angular/cdk/testing';
|
|
2
|
+
export type GioFormSelectionInlineHarnessFilters = BaseHarnessFilters;
|
|
3
|
+
export declare class GioFormSelectionInlineHarness extends ComponentHarness {
|
|
4
|
+
static hostSelector: string;
|
|
5
|
+
/**
|
|
6
|
+
* Gets a `HarnessPredicate` that can be used to search for a `GioFormSelectionInlineHarness` that meets
|
|
7
|
+
* certain criteria.
|
|
8
|
+
*
|
|
9
|
+
* @param options Options for filtering which input instances are considered a match.
|
|
10
|
+
* @return a `HarnessPredicate` configured with the given options.
|
|
11
|
+
*/
|
|
12
|
+
static with(options?: GioFormSelectionInlineHarnessFilters): HarnessPredicate<GioFormSelectionInlineHarness>;
|
|
13
|
+
protected getCards: import("@angular/cdk/testing").AsyncFactoryFn<import("@angular/cdk/testing").TestElement[]>;
|
|
14
|
+
protected getCardByValue: (value: string) => Promise<import("@angular/cdk/testing").TestElement>;
|
|
15
|
+
getSelectedValue(): Promise<string | undefined>;
|
|
16
|
+
getUnselectedValues(): Promise<(string | undefined)[]>;
|
|
17
|
+
select(value: string): Promise<void>;
|
|
18
|
+
isDisabled(): Promise<boolean>;
|
|
19
|
+
}
|
|
@@ -2,3 +2,4 @@ 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';
|
package/package.json
CHANGED