@skyux/indicators 6.19.0 → 6.20.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/documentation.json +942 -90
- package/esm2020/lib/modules/tokens/tokens.component.mjs +2 -2
- package/esm2020/lib/modules/tokens/types/token.mjs +1 -1
- package/esm2020/testing/key-info/key-info-harness-filters.mjs +1 -1
- package/esm2020/testing/key-info/key-info-harness.mjs +1 -2
- package/esm2020/testing/label/label-harness-filters.mjs +1 -1
- package/esm2020/testing/label/label-harness.mjs +1 -3
- package/fesm2015/skyux-indicators-testing.mjs +0 -3
- package/fesm2015/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2015/skyux-indicators.mjs +1 -1
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators-testing.mjs +0 -3
- package/fesm2020/skyux-indicators-testing.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +1 -1
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/lib/modules/tokens/tokens.component.d.ts +1 -1
- package/lib/modules/tokens/types/token.d.ts +2 -1
- package/package.json +5 -5
- package/testing/key-info/key-info-harness-filters.d.ts +0 -1
- package/testing/key-info/key-info-harness.d.ts +0 -1
- package/testing/label/label-harness-filters.d.ts +0 -1
- package/testing/label/label-harness.d.ts +0 -1
|
@@ -7,7 +7,7 @@ import { SkyTokensMessage } from './types/tokens-message';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Creates a container that enables navigation between tokens using keyboard arrow keys.
|
|
10
|
-
* This is useful when combined with other components where the <kbd>Tab
|
|
10
|
+
* This is useful when combined with other components where the <kbd>Tab</kbd> key is
|
|
11
11
|
* reserved for other functions, such as the SKY UX Lookup component.
|
|
12
12
|
*/
|
|
13
13
|
export declare class SkyTokensComponent implements OnDestroy {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export interface SkyToken {
|
|
2
2
|
/**
|
|
3
|
-
* Specifies the token's
|
|
3
|
+
* Specifies the token's value. The `sky-tokens` component will use its `displayWith`
|
|
4
|
+
* property to determine which of the value's properties to use as the token's label.
|
|
4
5
|
*/
|
|
5
6
|
value: any;
|
|
6
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.20.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"@angular/common": "^13.3.2",
|
|
46
46
|
"@angular/core": "^13.3.2",
|
|
47
47
|
"@angular/platform-browser": "^13.3.2",
|
|
48
|
-
"@skyux-sdk/testing": "6.
|
|
49
|
-
"@skyux/core": "6.
|
|
50
|
-
"@skyux/i18n": "6.
|
|
51
|
-
"@skyux/theme": "6.
|
|
48
|
+
"@skyux-sdk/testing": "6.20.0",
|
|
49
|
+
"@skyux/core": "6.20.0",
|
|
50
|
+
"@skyux/i18n": "6.20.0",
|
|
51
|
+
"@skyux/theme": "6.20.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1"
|
|
@@ -4,7 +4,6 @@ import { SkyKeyInfoLayoutType } from '@skyux/indicators';
|
|
|
4
4
|
import { SkyKeyInfoHarnessFilters } from './key-info-harness-filters';
|
|
5
5
|
/**
|
|
6
6
|
* Harness for interacting with a key info component in tests.
|
|
7
|
-
* @internal
|
|
8
7
|
*/
|
|
9
8
|
export declare class SkyKeyInfoHarness extends SkyComponentHarness {
|
|
10
9
|
#private;
|
|
@@ -4,7 +4,6 @@ import type { SkyIndicatorDescriptionType, SkyLabelType } from '@skyux/indicator
|
|
|
4
4
|
import { SkyLabelHarnessFilters } from './label-harness-filters';
|
|
5
5
|
/**
|
|
6
6
|
* Harness for interacting with a label component in tests.
|
|
7
|
-
* @internal
|
|
8
7
|
*/
|
|
9
8
|
export declare class SkyLabelHarness extends SkyComponentHarness {
|
|
10
9
|
#private;
|