@truenas/ui-components 0.3.13 → 0.3.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truenas/ui-components",
3
- "version": "0.3.13",
3
+ "version": "0.3.14",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org",
6
6
  "access": "public"
@@ -951,7 +951,13 @@ declare class TnBannerComponent {
951
951
  private actionContent;
952
952
  /** Signal indicating whether action content has been projected */
953
953
  protected hasAction: _angular_core.Signal<boolean>;
954
- heading: _angular_core.InputSignal<string>;
954
+ /**
955
+ * Signal indicating whether the built-in structured layout (icon + heading/message)
956
+ * should be rendered. When neither heading nor message is provided, the banner
957
+ * instead renders arbitrary projected content from the default slot.
958
+ */
959
+ protected hasStructuredContent: _angular_core.Signal<boolean>;
960
+ heading: _angular_core.InputSignal<string | undefined>;
955
961
  message: _angular_core.InputSignal<string | undefined>;
956
962
  type: _angular_core.InputSignal<TnBannerType>;
957
963
  bordered: _angular_core.InputSignal<boolean>;
@@ -976,7 +982,7 @@ declare class TnBannerComponent {
976
982
  */
977
983
  classes: _angular_core.Signal<string[]>;
978
984
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TnBannerComponent, never>;
979
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TnBannerComponent, "tn-banner", never, { "heading": { "alias": "heading"; "required": true; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "bordered": { "alias": "bordered"; "required": false; "isSignal": true; }; }, {}, ["actionContent"], ["[tnBannerAction]"], true, never>;
985
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TnBannerComponent, "tn-banner", never, { "heading": { "alias": "heading"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "bordered": { "alias": "bordered"; "required": false; "isSignal": true; }; }, {}, ["actionContent"], ["*", "[tnBannerAction]"], true, never>;
980
986
  }
981
987
 
982
988
  /**