@skyux/core 12.0.0-alpha.9 → 12.0.0-beta.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.
package/index.d.ts
CHANGED
@@ -37,8 +37,8 @@ export { SkyHelpUpdateArgs } from './lib/modules/help/help-update-args';
|
|
37
37
|
export { SkyHelpService } from './lib/modules/help/help.service';
|
38
38
|
export { SkyIdModule } from './lib/modules/id/id.module';
|
39
39
|
export { SkyIdService } from './lib/modules/id/id.service';
|
40
|
-
export { SkyLayoutHostDirective } from './lib/modules/layout-host/layout-host.directive';
|
41
40
|
export { SkyLayoutHostForChildArgs } from './lib/modules/layout-host/layout-host-for-child-args';
|
41
|
+
export { SkyLayoutHostDirective } from './lib/modules/layout-host/layout-host.directive';
|
42
42
|
export { SkyLayoutHostService } from './lib/modules/layout-host/layout-host.service';
|
43
43
|
export { SkyLiveAnnouncerService } from './lib/modules/live-announcer/live-announcer.service';
|
44
44
|
export { SkyLiveAnnouncerArgs } from './lib/modules/live-announcer/types/live-announcer-args';
|
@@ -47,8 +47,7 @@ export { SkyLogModule } from './lib/modules/log/log.module';
|
|
47
47
|
export { SkyLogService } from './lib/modules/log/log.service';
|
48
48
|
export { SkyLogLevel } from './lib/modules/log/types/log-level';
|
49
49
|
export { SKY_LOG_LEVEL } from './lib/modules/log/types/log-level-token';
|
50
|
-
export { SKY_BREAKPOINTS } from './lib/modules/breakpoint-observer/breakpoint';
|
51
|
-
export { SkyBreakpoint } from './lib/modules/breakpoint-observer/breakpoint';
|
50
|
+
export { SKY_BREAKPOINTS, SkyBreakpoint, } from './lib/modules/breakpoint-observer/breakpoint';
|
52
51
|
export { SkyBreakpointObserver } from './lib/modules/breakpoint-observer/breakpoint-observer';
|
53
52
|
export { SKY_BREAKPOINT_OBSERVER } from './lib/modules/breakpoint-observer/breakpoint-observer.token';
|
54
53
|
export { SkyContainerBreakpointObserver } from './lib/modules/breakpoint-observer/container-breakpoint-observer';
|
@@ -84,6 +83,7 @@ export { SkyAppSetTitleArgs } from './lib/modules/title/set-title-args';
|
|
84
83
|
export { SkyAppTitleService } from './lib/modules/title/title.service';
|
85
84
|
export { SkyTrimModule } from './lib/modules/trim/trim.module';
|
86
85
|
export { SkyUIConfigService } from './lib/modules/ui-config/ui-config.service';
|
86
|
+
export { SkyViewkeeper } from './lib/modules/viewkeeper/viewkeeper';
|
87
87
|
export { SkyViewkeeperHostOptions } from './lib/modules/viewkeeper/viewkeeper-host-options';
|
88
88
|
export { SkyViewkeeperOptions } from './lib/modules/viewkeeper/viewkeeper-options';
|
89
89
|
export { SkyViewkeeperModule } from './lib/modules/viewkeeper/viewkeeper.module';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "12.0.0-
|
3
|
+
"version": "12.0.0-beta.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -15,6 +15,19 @@
|
|
15
15
|
"url": "https://github.com/blackbaud/skyux/issues"
|
16
16
|
},
|
17
17
|
"homepage": "https://github.com/blackbaud/skyux#readme",
|
18
|
+
"peerDependencies": {
|
19
|
+
"@angular/cdk": "^19.2.2",
|
20
|
+
"@angular/common": "^19.2.1",
|
21
|
+
"@angular/core": "^19.2.1",
|
22
|
+
"@angular/platform-browser": "^19.2.1",
|
23
|
+
"@angular/router": "^19.2.1",
|
24
|
+
"@skyux/i18n": "12.0.0-beta.0"
|
25
|
+
},
|
26
|
+
"dependencies": {
|
27
|
+
"tslib": "^2.8.1"
|
28
|
+
},
|
29
|
+
"module": "fesm2022/skyux-core.mjs",
|
30
|
+
"typings": "index.d.ts",
|
18
31
|
"exports": {
|
19
32
|
"./package.json": {
|
20
33
|
"default": "./package.json"
|
@@ -26,23 +39,7 @@
|
|
26
39
|
"./testing": {
|
27
40
|
"types": "./testing/index.d.ts",
|
28
41
|
"default": "./fesm2022/skyux-core-testing.mjs"
|
29
|
-
},
|
30
|
-
"./documentation.json": {
|
31
|
-
"default": "./documentation.json"
|
32
42
|
}
|
33
43
|
},
|
34
|
-
"peerDependencies": {
|
35
|
-
"@angular/cdk": "^19.2.2",
|
36
|
-
"@angular/common": "^19.2.1",
|
37
|
-
"@angular/core": "^19.2.1",
|
38
|
-
"@angular/platform-browser": "^19.2.1",
|
39
|
-
"@angular/router": "^19.2.1",
|
40
|
-
"@skyux/i18n": "12.0.0-alpha.9"
|
41
|
-
},
|
42
|
-
"dependencies": {
|
43
|
-
"tslib": "^2.8.1"
|
44
|
-
},
|
45
|
-
"module": "fesm2022/skyux-core.mjs",
|
46
|
-
"typings": "index.d.ts",
|
47
44
|
"sideEffects": false
|
48
|
-
}
|
45
|
+
}
|
@@ -19,7 +19,7 @@ export declare abstract class SkyQueryableComponentHarness extends SkyComponentH
|
|
19
19
|
/**
|
20
20
|
* Returns a child test element or throws an error if not found.
|
21
21
|
*/
|
22
|
-
querySelector(selector: string): Promise<TestElement
|
22
|
+
querySelector(selector: string): Promise<TestElement>;
|
23
23
|
/**
|
24
24
|
* Returns a child test element or null if not found.
|
25
25
|
*/
|