@skyux/indicators 6.0.0-beta.3 → 6.0.0-beta.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 +189 -147
- package/esm2020/index.mjs +2 -1
- package/esm2020/lib/modules/alert/alert-type.mjs +2 -0
- package/esm2020/lib/modules/alert/alert.component.mjs +4 -5
- package/esm2020/lib/modules/alert/alert.module.mjs +4 -4
- package/esm2020/lib/modules/chevron/chevron.component.mjs +3 -3
- package/esm2020/lib/modules/chevron/chevron.module.mjs +4 -4
- package/esm2020/lib/modules/expansion-indicator/expansion-indicator.component.mjs +3 -3
- package/esm2020/lib/modules/expansion-indicator/expansion-indicator.module.mjs +4 -4
- package/esm2020/lib/modules/help-inline/help-inline.component.mjs +3 -3
- package/esm2020/lib/modules/help-inline/help-inline.module.mjs +4 -4
- package/esm2020/lib/modules/icon/icon-class-list.pipe.mjs +3 -3
- package/esm2020/lib/modules/icon/icon-resolver.service.mjs +3 -3
- package/esm2020/lib/modules/icon/icon-stack.component.mjs +3 -3
- package/esm2020/lib/modules/icon/icon.component.mjs +3 -3
- package/esm2020/lib/modules/icon/icon.module.mjs +4 -4
- package/esm2020/lib/modules/key-info/key-info-label.component.mjs +3 -3
- package/esm2020/lib/modules/key-info/key-info-value.component.mjs +3 -3
- package/esm2020/lib/modules/key-info/key-info.component.mjs +3 -3
- package/esm2020/lib/modules/key-info/key-info.module.mjs +4 -4
- package/esm2020/lib/modules/label/label.component.mjs +3 -3
- package/esm2020/lib/modules/label/label.module.mjs +4 -4
- package/esm2020/lib/modules/shared/indicator-icon-utility.mjs +1 -2
- package/esm2020/lib/modules/shared/sky-indicators-resources.module.mjs +4 -4
- package/esm2020/lib/modules/status-indicator/status-indicator.component.mjs +3 -3
- package/esm2020/lib/modules/status-indicator/status-indicator.module.mjs +4 -4
- package/esm2020/lib/modules/text-highlight/text-highlight.directive.mjs +3 -3
- package/esm2020/lib/modules/text-highlight/text-highlight.module.mjs +4 -4
- package/esm2020/lib/modules/tokens/token.component.mjs +3 -3
- package/esm2020/lib/modules/tokens/tokens.component.mjs +4 -6
- package/esm2020/lib/modules/tokens/tokens.module.mjs +4 -4
- package/esm2020/lib/modules/wait/wait-adapter.service.mjs +3 -3
- package/esm2020/lib/modules/wait/wait-page-adapter.service.mjs +3 -3
- package/esm2020/lib/modules/wait/wait-page.component.mjs +3 -3
- package/esm2020/lib/modules/wait/wait.component.mjs +3 -3
- package/esm2020/lib/modules/wait/wait.module.mjs +4 -4
- package/esm2020/lib/modules/wait/wait.service.mjs +3 -3
- package/fesm2015/skyux-indicators.mjs +111 -115
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +111 -115
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/modules/alert/alert-type.d.ts +4 -0
- package/lib/modules/alert/alert.component.d.ts +3 -3
- package/package.json +9 -9
package/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { SkyIconStackItem } from '../icon/icon-stack-item';
|
|
3
|
+
import { SkyAlertType } from './alert-type';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class SkyAlertComponent implements OnInit {
|
|
5
6
|
/**
|
|
6
7
|
* Specifies a style for the alert to determine the icon and background color.
|
|
7
|
-
* The valid options are `danger`, `info`, `success`, and `warning`.
|
|
8
8
|
* @default "warning"
|
|
9
9
|
*/
|
|
10
|
-
set alertType(value:
|
|
11
|
-
get alertType():
|
|
10
|
+
set alertType(value: SkyAlertType | undefined);
|
|
11
|
+
get alertType(): SkyAlertType;
|
|
12
12
|
/**
|
|
13
13
|
* Indicates whether to include a close button for users to dismiss the alert.
|
|
14
14
|
* @default false
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.4",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@angular/animations": "^13.2
|
|
44
|
-
"@angular/common": "^13.2
|
|
45
|
-
"@angular/core": "^13.2
|
|
46
|
-
"@angular/platform-browser": "^13.2
|
|
47
|
-
"@skyux-sdk/testing": "6.0.0-beta.
|
|
48
|
-
"@skyux/core": "6.0.0-beta.
|
|
49
|
-
"@skyux/i18n": "6.0.0-beta.
|
|
50
|
-
"@skyux/theme": "6.0.0-beta.
|
|
43
|
+
"@angular/animations": "^13.3.2",
|
|
44
|
+
"@angular/common": "^13.3.2",
|
|
45
|
+
"@angular/core": "^13.3.2",
|
|
46
|
+
"@angular/platform-browser": "^13.3.2",
|
|
47
|
+
"@skyux-sdk/testing": "6.0.0-beta.4",
|
|
48
|
+
"@skyux/core": "6.0.0-beta.4",
|
|
49
|
+
"@skyux/i18n": "6.0.0-beta.4",
|
|
50
|
+
"@skyux/theme": "6.0.0-beta.4"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.3.1"
|