@skyux/action-bars 13.0.0-alpha.4 → 13.0.0-alpha.6
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/action-bars",
|
|
3
|
-
"version": "13.0.0-alpha.
|
|
3
|
+
"version": "13.0.0-alpha.6",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -20,15 +20,13 @@
|
|
|
20
20
|
"@angular/cdk": "^20.0.4",
|
|
21
21
|
"@angular/common": "^20.0.5",
|
|
22
22
|
"@angular/core": "^20.0.5",
|
|
23
|
-
"@
|
|
24
|
-
"@skyux
|
|
25
|
-
"@skyux/
|
|
26
|
-
"@skyux/
|
|
27
|
-
"@skyux/
|
|
28
|
-
"@skyux/
|
|
29
|
-
"@skyux/
|
|
30
|
-
"@skyux/popovers": "13.0.0-alpha.4",
|
|
31
|
-
"@skyux/theme": "13.0.0-alpha.4"
|
|
23
|
+
"@skyux/animations": "13.0.0-alpha.6",
|
|
24
|
+
"@skyux/core": "13.0.0-alpha.6",
|
|
25
|
+
"@skyux/i18n": "13.0.0-alpha.6",
|
|
26
|
+
"@skyux/icon": "13.0.0-alpha.6",
|
|
27
|
+
"@skyux/indicators": "13.0.0-alpha.6",
|
|
28
|
+
"@skyux/popovers": "13.0.0-alpha.6",
|
|
29
|
+
"@skyux/theme": "13.0.0-alpha.6"
|
|
32
30
|
},
|
|
33
31
|
"dependencies": {
|
|
34
32
|
"tslib": "^2.8.1"
|
package/testing/index.d.ts
CHANGED
|
@@ -1,73 +1,6 @@
|
|
|
1
|
-
import { ComponentFixture } from '@angular/core/testing';
|
|
2
|
-
import * as i0 from '@angular/core';
|
|
3
|
-
import * as i1 from '@skyux/action-bars';
|
|
4
|
-
import { SkySummaryActionBarError } from '@skyux/action-bars';
|
|
5
|
-
import * as i2 from '@angular/platform-browser/animations';
|
|
6
1
|
import { HarnessPredicate } from '@angular/cdk/testing';
|
|
7
2
|
import { SkyHarnessFilters, SkyComponentHarness, SkyQueryableComponentHarness } from '@skyux/core/testing';
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* @internal
|
|
11
|
-
*/
|
|
12
|
-
interface SkySummaryActionBarFixtureAction {
|
|
13
|
-
buttonText?: string;
|
|
14
|
-
isDisabled: boolean;
|
|
15
|
-
click(): Promise<void>;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* Allows interaction with a SKY UX summary action bar component.
|
|
20
|
-
* @internal
|
|
21
|
-
*/
|
|
22
|
-
declare class SkySummaryActionBarFixture {
|
|
23
|
-
#private;
|
|
24
|
-
/**
|
|
25
|
-
* The cancel action model.
|
|
26
|
-
*/
|
|
27
|
-
get cancelAction(): SkySummaryActionBarFixtureAction;
|
|
28
|
-
/**
|
|
29
|
-
* The primary action model.
|
|
30
|
-
*/
|
|
31
|
-
get primaryAction(): SkySummaryActionBarFixtureAction;
|
|
32
|
-
/**
|
|
33
|
-
* The collection of secondary action models.
|
|
34
|
-
*/
|
|
35
|
-
get secondaryActions(): SkySummaryActionBarFixtureAction[];
|
|
36
|
-
/**
|
|
37
|
-
* A flag indicating whether or not the summary content is visible.
|
|
38
|
-
*/
|
|
39
|
-
get summaryBodyIsVisible(): boolean;
|
|
40
|
-
constructor(fixture: ComponentFixture<unknown>, skyTestId: string);
|
|
41
|
-
/**
|
|
42
|
-
* Toggles the secondary action dropdown open or closed, if in responsive mode.
|
|
43
|
-
*/
|
|
44
|
-
toggleSecondaryActionDropdown(): Promise<void>;
|
|
45
|
-
/**
|
|
46
|
-
* Toggles the summary content area open or closed, if in responsive mode.
|
|
47
|
-
*/
|
|
48
|
-
toggleSummaryContentVisibility(): Promise<void>;
|
|
49
|
-
/**
|
|
50
|
-
* Returns the first element that is a descendant of the node that matches the selector query
|
|
51
|
-
* within the summary body element.
|
|
52
|
-
* @param query The selector query to use.
|
|
53
|
-
*/
|
|
54
|
-
querySummaryBody(query: string): HTMLElement;
|
|
55
|
-
/**
|
|
56
|
-
* Returns the all elements that are descendants of the node that matches the selector query
|
|
57
|
-
* within the summary body element.
|
|
58
|
-
* @param query The selector query to use.
|
|
59
|
-
*/
|
|
60
|
-
queryAllSummaryBody(query: string): NodeList;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* @internal
|
|
65
|
-
*/
|
|
66
|
-
declare class SkySummaryActionBarTestingModule {
|
|
67
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SkySummaryActionBarTestingModule, never>;
|
|
68
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkySummaryActionBarTestingModule, never, never, [typeof i1.SkySummaryActionBarModule, typeof i2.NoopAnimationsModule]>;
|
|
69
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SkySummaryActionBarTestingModule>;
|
|
70
|
-
}
|
|
3
|
+
import { SkySummaryActionBarError } from '@skyux/action-bars';
|
|
71
4
|
|
|
72
5
|
/**
|
|
73
6
|
* A set of criteria that can be used to filter a list of SkySummaryActionBarCancelHarness instances.
|
|
@@ -282,5 +215,5 @@ declare class SkySummaryActionBarHarness extends SkyComponentHarness {
|
|
|
282
215
|
isSummaryVisible(): Promise<boolean>;
|
|
283
216
|
}
|
|
284
217
|
|
|
285
|
-
export { SkySummaryActionBarCancelHarness,
|
|
286
|
-
export type { SkySummaryActionBarCancelHarnessFilters,
|
|
218
|
+
export { SkySummaryActionBarCancelHarness, SkySummaryActionBarHarness, SkySummaryActionBarPrimaryActionHarness, SkySummaryActionBarSecondaryActionHarness, SkySummaryActionBarSecondaryActionsHarness, SkySummaryActionBarSummaryHarness };
|
|
219
|
+
export type { SkySummaryActionBarCancelHarnessFilters, SkySummaryActionBarHarnessFilters, SkySummaryActionBarPrimaryActionHarnessFilters, SkySummaryActionBarSecondaryActionHarnessFilters, SkySummaryActionBarSecondaryActionsHarnessFilters, SkySummaryActionBarSummaryHarnessFilters };
|