@skyux/indicators 6.1.0 → 6.2.2
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 +10 -10
- package/esm2020/lib/modules/key-info/key-info-label.component.mjs +2 -2
- package/esm2020/lib/modules/key-info/key-info.component.mjs +3 -3
- package/esm2020/lib/modules/text-highlight/text-highlight.directive.mjs +2 -4
- package/fesm2015/skyux-indicators.mjs +4 -6
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +4 -6
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/lib/modules/key-info/key-info-label.component.d.ts +1 -1
- package/lib/modules/key-info/key-info.component.d.ts +2 -2
- package/lib/modules/text-highlight/text-highlight.directive.d.ts +1 -3
- package/package.json +5 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
/**
|
|
3
|
-
* Specifies a label to display in smaller
|
|
3
|
+
* Specifies a label to display in smaller text under or beside the value.
|
|
4
4
|
* @required
|
|
5
5
|
*/
|
|
6
6
|
export declare class SkyKeyInfoLabelComponent {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class SkyKeyInfoComponent {
|
|
3
3
|
/**
|
|
4
|
-
* Specifies whether to display key info in a
|
|
5
|
-
* value or in a
|
|
4
|
+
* Specifies whether to display key info in a vertical layout with the label under the
|
|
5
|
+
* value or in a horizontal layout with the label beside the value.
|
|
6
6
|
* @default "vertical"
|
|
7
7
|
*/
|
|
8
8
|
layout: string;
|
|
@@ -2,9 +2,7 @@ import { AfterViewInit, ElementRef, OnChanges, OnDestroy, SimpleChanges } from '
|
|
|
2
2
|
import { MutationObserverService } from '@skyux/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
|
-
* Highlights all matching text within
|
|
6
|
-
* The directive is only valid for elements that contain content, so you
|
|
7
|
-
* cannot place it on `ng-template`, `ng-content`, or `ng-container` tags.
|
|
5
|
+
* Highlights all matching text within the current DOM element.
|
|
8
6
|
*/
|
|
9
7
|
export declare class SkyTextHighlightDirective implements OnChanges, AfterViewInit, OnDestroy {
|
|
10
8
|
private el;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"@angular/common": "^13.3.2",
|
|
45
45
|
"@angular/core": "^13.3.2",
|
|
46
46
|
"@angular/platform-browser": "^13.3.2",
|
|
47
|
-
"@skyux-sdk/testing": "6.
|
|
48
|
-
"@skyux/core": "6.
|
|
49
|
-
"@skyux/i18n": "6.
|
|
50
|
-
"@skyux/theme": "6.
|
|
47
|
+
"@skyux-sdk/testing": "6.2.2",
|
|
48
|
+
"@skyux/core": "6.2.2",
|
|
49
|
+
"@skyux/i18n": "6.2.2",
|
|
50
|
+
"@skyux/theme": "6.2.2"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.3.1"
|