@skyux/indicators 10.32.0 → 11.0.0-alpha.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.
Files changed (37) hide show
  1. package/documentation.json +808 -826
  2. package/esm2022/lib/modules/alert/alert.component.mjs +9 -8
  3. package/esm2022/lib/modules/alert/alert.module.mjs +4 -4
  4. package/esm2022/lib/modules/chevron/chevron.component.mjs +3 -3
  5. package/esm2022/lib/modules/chevron/chevron.module.mjs +4 -4
  6. package/esm2022/lib/modules/expansion-indicator/expansion-indicator.component.mjs +3 -3
  7. package/esm2022/lib/modules/expansion-indicator/expansion-indicator.module.mjs +4 -4
  8. package/esm2022/lib/modules/help-inline/help-inline-aria-expanded.pipe.mjs +3 -3
  9. package/esm2022/lib/modules/help-inline/help-inline.component.mjs +3 -3
  10. package/esm2022/lib/modules/help-inline/help-inline.module.mjs +4 -4
  11. package/esm2022/lib/modules/illustration/illustration-resolver.service.mjs +3 -3
  12. package/esm2022/lib/modules/illustration/illustration.component.mjs +3 -3
  13. package/esm2022/lib/modules/illustration/illustration.module.mjs +4 -4
  14. package/esm2022/lib/modules/key-info/key-info-label.component.mjs +3 -3
  15. package/esm2022/lib/modules/key-info/key-info-value.component.mjs +3 -3
  16. package/esm2022/lib/modules/key-info/key-info.component.mjs +3 -3
  17. package/esm2022/lib/modules/key-info/key-info.module.mjs +4 -4
  18. package/esm2022/lib/modules/label/label.component.mjs +3 -3
  19. package/esm2022/lib/modules/label/label.module.mjs +4 -4
  20. package/esm2022/lib/modules/shared/sky-indicators-resources.module.mjs +4 -4
  21. package/esm2022/lib/modules/status-indicator/status-indicator.component.mjs +4 -4
  22. package/esm2022/lib/modules/status-indicator/status-indicator.module.mjs +4 -4
  23. package/esm2022/lib/modules/text-highlight/text-highlight.directive.mjs +3 -3
  24. package/esm2022/lib/modules/text-highlight/text-highlight.module.mjs +4 -4
  25. package/esm2022/lib/modules/tokens/token.component.mjs +3 -3
  26. package/esm2022/lib/modules/tokens/tokens.component.mjs +3 -3
  27. package/esm2022/lib/modules/tokens/tokens.module.mjs +4 -4
  28. package/esm2022/lib/modules/wait/wait-adapter.service.mjs +3 -3
  29. package/esm2022/lib/modules/wait/wait-page.component.mjs +3 -3
  30. package/esm2022/lib/modules/wait/wait.component.mjs +3 -3
  31. package/esm2022/lib/modules/wait/wait.module.mjs +4 -4
  32. package/esm2022/lib/modules/wait/wait.service.mjs +3 -3
  33. package/fesm2022/skyux-indicators.mjs +111 -111
  34. package/fesm2022/skyux-indicators.mjs.map +1 -1
  35. package/lib/modules/alert/alert.component.d.ts +2 -1
  36. package/lib/modules/status-indicator/status-indicator.component.d.ts +0 -3
  37. package/package.json +13 -13
@@ -3,6 +3,7 @@ import { SkyIconStackItem } from '@skyux/icon';
3
3
  import { SkyIndicatorDescriptionType } from '../shared/indicator-description-type';
4
4
  import { SkyIndicatorIconType } from '../shared/indicator-icon-type';
5
5
  import * as i0 from "@angular/core";
6
+ import * as i1 from "@skyux/theme";
6
7
  export declare class SkyAlertComponent implements AfterViewChecked, OnInit, OnDestroy {
7
8
  #private;
8
9
  /**
@@ -46,5 +47,5 @@ export declare class SkyAlertComponent implements AfterViewChecked, OnInit, OnDe
46
47
  ngOnDestroy(): void;
47
48
  close(): void;
48
49
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyAlertComponent, never>;
49
- static ɵcmp: i0.ɵɵComponentDeclaration<SkyAlertComponent, "sky-alert", never, { "alertType": { "alias": "alertType"; "required": false; }; "closeable": { "alias": "closeable"; "required": false; }; "closed": { "alias": "closed"; "required": false; }; "descriptionType": { "alias": "descriptionType"; "required": false; }; "customDescription": { "alias": "customDescription"; "required": false; }; }, { "closedChange": "closedChange"; }, never, ["*"], false, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<SkyAlertComponent, "sky-alert", never, { "alertType": { "alias": "alertType"; "required": false; }; "closeable": { "alias": "closeable"; "required": false; }; "closed": { "alias": "closed"; "required": false; }; "descriptionType": { "alias": "descriptionType"; "required": false; }; "customDescription": { "alias": "customDescription"; "required": false; }; }, { "closedChange": "closedChange"; }, never, ["*"], false, [{ directive: typeof i1.SkyThemeComponentClassDirective; inputs: {}; outputs: {}; }]>;
50
51
  }
@@ -33,19 +33,16 @@ export declare class SkyStatusIndicatorComponent implements OnInit {
33
33
  * The content of the help popover. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
34
34
  * button is added to the status indicator. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
35
35
  * when clicked using the specified content and optional title.
36
- * @preview
37
36
  */
38
37
  helpPopoverContent: string | TemplateRef<unknown> | undefined;
39
38
  /**
40
39
  * The title of the help popover. This property only applies when `helpPopoverContent` is
41
40
  * also specified.
42
- * @preview
43
41
  */
44
42
  helpPopoverTitle: string | undefined;
45
43
  /**
46
44
  * A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline) button is
47
45
  * placed beside the status indicator label. Clicking the button invokes global help as configured by the application.
48
- * @preview
49
46
  */
50
47
  helpKey: string | undefined;
51
48
  descriptionComputed: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/indicators",
3
- "version": "10.32.0",
3
+ "version": "11.0.0-alpha.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -36,20 +36,20 @@
36
36
  }
37
37
  },
38
38
  "peerDependencies": {
39
- "@angular/animations": "^17.3.4",
40
- "@angular/cdk": "^17.3.4",
41
- "@angular/common": "^17.3.4",
42
- "@angular/core": "^17.3.4",
43
- "@angular/platform-browser": "^17.3.4",
44
- "@skyux-sdk/testing": "10.32.0",
45
- "@skyux/core": "10.32.0",
46
- "@skyux/help-inline": "10.32.0",
47
- "@skyux/i18n": "10.32.0",
48
- "@skyux/theme": "10.32.0"
39
+ "@angular/animations": "^18.0.5",
40
+ "@angular/cdk": "^18.0.5",
41
+ "@angular/common": "^18.0.5",
42
+ "@angular/core": "^18.0.5",
43
+ "@angular/platform-browser": "^18.0.5",
44
+ "@skyux-sdk/testing": "11.0.0-alpha.0",
45
+ "@skyux/core": "11.0.0-alpha.0",
46
+ "@skyux/help-inline": "11.0.0-alpha.0",
47
+ "@skyux/i18n": "11.0.0-alpha.0",
48
+ "@skyux/theme": "11.0.0-alpha.0"
49
49
  },
50
50
  "dependencies": {
51
- "@skyux/icon": "10.32.0",
52
- "tslib": "^2.6.2"
51
+ "@skyux/icon": "11.0.0-alpha.0",
52
+ "tslib": "^2.6.3"
53
53
  },
54
54
  "module": "fesm2022/skyux-indicators.mjs",
55
55
  "typings": "index.d.ts",