@skyux/indicators 12.0.0-alpha.2 → 12.0.0-alpha.4
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/documentation.json +3371 -4319
- package/fesm2022/skyux-indicators-testing.mjs +3 -0
- package/fesm2022/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2022/skyux-indicators.mjs +3 -2
- package/fesm2022/skyux-indicators.mjs.map +1 -1
- package/index.d.ts +0 -8
- package/lib/modules/chevron/chevron.module.d.ts +3 -0
- package/package.json +7 -7
- package/testing/modules/chevron/chevron-harness.d.ts +1 -0
- package/testing/modules/help-inline/help-inline-harness-filters.d.ts +2 -0
- package/testing/modules/help-inline/help-inline-harness.d.ts +2 -0
- package/testing/modules/tokens/token-harness-filters.d.ts +0 -1
- package/testing/modules/tokens/tokens-harness-filters.d.ts +0 -1
package/index.d.ts
CHANGED
|
@@ -33,11 +33,3 @@ export { SkyTokensComponent as λ13 } from './lib/modules/tokens/tokens.componen
|
|
|
33
33
|
export { SkyWaitComponent as λ14 } from './lib/modules/wait/wait.component';
|
|
34
34
|
export { SkyTextHighlightDirective } from './lib/modules/text-highlight/text-highlight.directive';
|
|
35
35
|
export { SkyIllustrationComponent as λ16 } from './lib/modules/illustration/illustration.component';
|
|
36
|
-
/**
|
|
37
|
-
* @deprecated Use `@skyux/help-inline` instead.
|
|
38
|
-
*/
|
|
39
|
-
export { SkyHelpInlineModule, λ1 as λ3 } from '@skyux/help-inline';
|
|
40
|
-
/**
|
|
41
|
-
* @deprecated Use `@skyux/icon` instead.
|
|
42
|
-
*/
|
|
43
|
-
export { SkyIconStackItem, SkyIconModule, SkyIconType, SkyIconVariantType, λ1 as λ4, λ2 as λ5, } from '@skyux/icon';
|
|
@@ -4,6 +4,9 @@ import * as i2 from "@angular/common";
|
|
|
4
4
|
import * as i3 from "../shared/sky-indicators-resources.module";
|
|
5
5
|
import * as i4 from "@skyux/theme";
|
|
6
6
|
import * as i5 from "../expansion-indicator/expansion-indicator.module";
|
|
7
|
+
/**
|
|
8
|
+
* @internal
|
|
9
|
+
*/
|
|
7
10
|
export declare class SkyChevronModule {
|
|
8
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyChevronModule, never>;
|
|
9
12
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyChevronModule, [typeof i1.SkyChevronComponent], [typeof i2.CommonModule, typeof i3.SkyIndicatorsResourcesModule, typeof i4.SkyThemeModule, typeof i5.SkyExpansionIndicatorModule], [typeof i1.SkyChevronComponent]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "12.0.0-alpha.
|
|
3
|
+
"version": "12.0.0-alpha.4",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"@angular/common": "^19.0.5",
|
|
38
38
|
"@angular/core": "^19.0.5",
|
|
39
39
|
"@angular/platform-browser": "^19.0.5",
|
|
40
|
-
"@skyux-sdk/testing": "12.0.0-alpha.
|
|
41
|
-
"@skyux/core": "12.0.0-alpha.
|
|
42
|
-
"@skyux/help-inline": "12.0.0-alpha.
|
|
43
|
-
"@skyux/i18n": "12.0.0-alpha.
|
|
44
|
-
"@skyux/icon": "12.0.0-alpha.
|
|
45
|
-
"@skyux/theme": "12.0.0-alpha.
|
|
40
|
+
"@skyux-sdk/testing": "12.0.0-alpha.4",
|
|
41
|
+
"@skyux/core": "12.0.0-alpha.4",
|
|
42
|
+
"@skyux/help-inline": "12.0.0-alpha.4",
|
|
43
|
+
"@skyux/i18n": "12.0.0-alpha.4",
|
|
44
|
+
"@skyux/icon": "12.0.0-alpha.4",
|
|
45
|
+
"@skyux/theme": "12.0.0-alpha.4"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"tslib": "^2.8.1"
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { SkyHarnessFilters } from '@skyux/core/testing';
|
|
2
2
|
/**
|
|
3
3
|
* A set of criteria that can be used to filter a list of SkyHelpInlineHarness instances.
|
|
4
|
+
* @docsId SkyHelpInlineHarnessFiltersLegacy
|
|
5
|
+
* @deprecated Use the `SkyHelpInlineHarnessFilters` from `@skyux/help-inline/testing` instead.
|
|
4
6
|
*/
|
|
5
7
|
export interface SkyHelpInlineHarnessFilters extends SkyHarnessFilters {
|
|
6
8
|
}
|
|
@@ -3,6 +3,8 @@ import { SkyComponentHarness } from '@skyux/core/testing';
|
|
|
3
3
|
import { SkyHelpInlineHarnessFilters } from './help-inline-harness-filters';
|
|
4
4
|
/**
|
|
5
5
|
* Harness for interacting with a help inline component in tests.
|
|
6
|
+
* @docsId SkyHelpInlineHarnessLegacy
|
|
7
|
+
* @deprecated Use the `SkyHelpInlineHarness` from `@skyux/help-inline/testing` instead.
|
|
6
8
|
*/
|
|
7
9
|
export declare class SkyHelpInlineHarness extends SkyComponentHarness {
|
|
8
10
|
#private;
|