@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.
Files changed (45) hide show
  1. package/documentation.json +189 -147
  2. package/esm2020/index.mjs +2 -1
  3. package/esm2020/lib/modules/alert/alert-type.mjs +2 -0
  4. package/esm2020/lib/modules/alert/alert.component.mjs +4 -5
  5. package/esm2020/lib/modules/alert/alert.module.mjs +4 -4
  6. package/esm2020/lib/modules/chevron/chevron.component.mjs +3 -3
  7. package/esm2020/lib/modules/chevron/chevron.module.mjs +4 -4
  8. package/esm2020/lib/modules/expansion-indicator/expansion-indicator.component.mjs +3 -3
  9. package/esm2020/lib/modules/expansion-indicator/expansion-indicator.module.mjs +4 -4
  10. package/esm2020/lib/modules/help-inline/help-inline.component.mjs +3 -3
  11. package/esm2020/lib/modules/help-inline/help-inline.module.mjs +4 -4
  12. package/esm2020/lib/modules/icon/icon-class-list.pipe.mjs +3 -3
  13. package/esm2020/lib/modules/icon/icon-resolver.service.mjs +3 -3
  14. package/esm2020/lib/modules/icon/icon-stack.component.mjs +3 -3
  15. package/esm2020/lib/modules/icon/icon.component.mjs +3 -3
  16. package/esm2020/lib/modules/icon/icon.module.mjs +4 -4
  17. package/esm2020/lib/modules/key-info/key-info-label.component.mjs +3 -3
  18. package/esm2020/lib/modules/key-info/key-info-value.component.mjs +3 -3
  19. package/esm2020/lib/modules/key-info/key-info.component.mjs +3 -3
  20. package/esm2020/lib/modules/key-info/key-info.module.mjs +4 -4
  21. package/esm2020/lib/modules/label/label.component.mjs +3 -3
  22. package/esm2020/lib/modules/label/label.module.mjs +4 -4
  23. package/esm2020/lib/modules/shared/indicator-icon-utility.mjs +1 -2
  24. package/esm2020/lib/modules/shared/sky-indicators-resources.module.mjs +4 -4
  25. package/esm2020/lib/modules/status-indicator/status-indicator.component.mjs +3 -3
  26. package/esm2020/lib/modules/status-indicator/status-indicator.module.mjs +4 -4
  27. package/esm2020/lib/modules/text-highlight/text-highlight.directive.mjs +3 -3
  28. package/esm2020/lib/modules/text-highlight/text-highlight.module.mjs +4 -4
  29. package/esm2020/lib/modules/tokens/token.component.mjs +3 -3
  30. package/esm2020/lib/modules/tokens/tokens.component.mjs +4 -6
  31. package/esm2020/lib/modules/tokens/tokens.module.mjs +4 -4
  32. package/esm2020/lib/modules/wait/wait-adapter.service.mjs +3 -3
  33. package/esm2020/lib/modules/wait/wait-page-adapter.service.mjs +3 -3
  34. package/esm2020/lib/modules/wait/wait-page.component.mjs +3 -3
  35. package/esm2020/lib/modules/wait/wait.component.mjs +3 -3
  36. package/esm2020/lib/modules/wait/wait.module.mjs +4 -4
  37. package/esm2020/lib/modules/wait/wait.service.mjs +3 -3
  38. package/fesm2015/skyux-indicators.mjs +111 -115
  39. package/fesm2015/skyux-indicators.mjs.map +1 -1
  40. package/fesm2020/skyux-indicators.mjs +111 -115
  41. package/fesm2020/skyux-indicators.mjs.map +1 -1
  42. package/index.d.ts +1 -0
  43. package/lib/modules/alert/alert-type.d.ts +4 -0
  44. package/lib/modules/alert/alert.component.d.ts +3 -3
  45. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './lib/modules/alert/alert-type';
1
2
  export * from './lib/modules/alert/alert.module';
2
3
  export * from './lib/modules/chevron/chevron.module';
3
4
  export * from './lib/modules/expansion-indicator/expansion-indicator.module';
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Specifies a style for the alert to determine the icon and background color.
3
+ */
4
+ export declare type SkyAlertType = 'danger' | 'info' | 'success' | 'warning';
@@ -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: string);
11
- get alertType(): string;
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",
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.7",
44
- "@angular/common": "^13.2.7",
45
- "@angular/core": "^13.2.7",
46
- "@angular/platform-browser": "^13.2.7",
47
- "@skyux-sdk/testing": "6.0.0-beta.3",
48
- "@skyux/core": "6.0.0-beta.3",
49
- "@skyux/i18n": "6.0.0-beta.3",
50
- "@skyux/theme": "6.0.0-beta.3"
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"