@gravitee/ui-particles-angular 12.9.0 → 12.10.0-improvement-9d78975
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/assets/gio-icons.svg +6 -0
- package/esm2022/lib/gio-card-empty-state/gio-card-empty-state.component.mjs +3 -3
- package/esm2022/testing/harnesses/div.harness.mjs +7 -10
- package/esm2022/testing/harnesses/span.harness.mjs +7 -7
- package/fesm2022/gravitee-ui-particles-angular-testing.mjs +12 -15
- package/fesm2022/gravitee-ui-particles-angular-testing.mjs.map +1 -1
- package/fesm2022/gravitee-ui-particles-angular.mjs +2 -2
- package/fesm2022/gravitee-ui-particles-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/testing/harnesses/div.harness.d.ts +4 -4
- package/testing/harnesses/span.harness.d.ts +4 -3
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BaseHarnessFilters, ComponentHarness, HarnessPredicate } from '@angular/cdk/testing';
|
|
2
2
|
export type DivHarnessFilters = BaseHarnessFilters & {
|
|
3
3
|
/** Filters based on the text */
|
|
4
4
|
text?: string | RegExp;
|
|
@@ -12,9 +12,9 @@ export declare class DivHarness extends ComponentHarness {
|
|
|
12
12
|
* @return a `HarnessPredicate` configured with the given options.
|
|
13
13
|
*/
|
|
14
14
|
static with(options?: DivHarnessFilters): HarnessPredicate<DivHarness>;
|
|
15
|
-
childLocatorFor<T extends
|
|
16
|
-
childLocatorForOptional<T extends
|
|
17
|
-
childLocatorForAll<T extends
|
|
15
|
+
childLocatorFor: <T extends (string | import("@angular/cdk/testing").HarnessQuery<any>)[]>(...queries: T) => import("@angular/cdk/testing").AsyncFactoryFn<import("@angular/cdk/testing").LocatorFnResult<T>>;
|
|
16
|
+
childLocatorForOptional: <T extends (string | import("@angular/cdk/testing").HarnessQuery<any>)[]>(...queries: T) => import("@angular/cdk/testing").AsyncFactoryFn<import("@angular/cdk/testing").LocatorFnResult<T> | null>;
|
|
17
|
+
childLocatorForAll: <T extends (string | import("@angular/cdk/testing").HarnessQuery<any>)[]>(...queries: T) => import("@angular/cdk/testing").AsyncFactoryFn<import("@angular/cdk/testing").LocatorFnResult<T>[]>;
|
|
18
18
|
getText(option?: {
|
|
19
19
|
childSelector?: string;
|
|
20
20
|
}): Promise<string | null>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BaseHarnessFilters, ComponentHarness, HarnessPredicate } from '@angular/cdk/testing';
|
|
2
2
|
export type SpanHarnessFilters = BaseHarnessFilters & {
|
|
3
3
|
/** Filters based on the text */
|
|
4
4
|
text?: string | RegExp;
|
|
@@ -12,8 +12,9 @@ export declare class SpanHarness extends ComponentHarness {
|
|
|
12
12
|
* @return a `HarnessPredicate` configured with the given options.
|
|
13
13
|
*/
|
|
14
14
|
static with(options?: SpanHarnessFilters): HarnessPredicate<SpanHarness>;
|
|
15
|
-
childLocatorFor<T extends
|
|
16
|
-
|
|
15
|
+
childLocatorFor: <T extends (string | import("@angular/cdk/testing").HarnessQuery<any>)[]>(...queries: T) => import("@angular/cdk/testing").AsyncFactoryFn<import("@angular/cdk/testing").LocatorFnResult<T>>;
|
|
16
|
+
childLocatorForOptional: <T extends (string | import("@angular/cdk/testing").HarnessQuery<any>)[]>(...queries: T) => import("@angular/cdk/testing").AsyncFactoryFn<import("@angular/cdk/testing").LocatorFnResult<T> | null>;
|
|
17
|
+
childLocatorForAll: <T extends (string | import("@angular/cdk/testing").HarnessQuery<any>)[]>(...queries: T) => import("@angular/cdk/testing").AsyncFactoryFn<import("@angular/cdk/testing").LocatorFnResult<T>[]>;
|
|
17
18
|
getText(option?: {
|
|
18
19
|
childSelector?: string;
|
|
19
20
|
}): Promise<string | null>;
|