@energycap/components 0.43.2-ECAP-28746-Interval-Data-Tag.20250317-1755 → 0.43.2-ECAP-28331-App-Bar-Updates.20250318-1713

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.
@@ -11,10 +11,11 @@ export declare class AppBarComponent implements OnChanges {
11
11
  userMenuMinWidth: number;
12
12
  userMenuTabindex: number;
13
13
  iconPath: string;
14
+ hideAppIcon: boolean;
14
15
  menuItems: MenuItem[];
15
16
  private userItem;
16
17
  constructor(avatarService: AvatarService);
17
18
  ngOnChanges(): void;
18
19
  static ɵfac: i0.ɵɵFactoryDeclaration<AppBarComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<AppBarComponent, "ec-app-bar", never, { "user": { "alias": "user"; "required": false; }; "userMenuItems": { "alias": "userMenuItems"; "required": false; }; "userMenuWidth": { "alias": "userMenuWidth"; "required": false; }; "userMenuMinWidth": { "alias": "userMenuMinWidth"; "required": false; }; "userMenuTabindex": { "alias": "userMenuTabindex"; "required": false; }; "iconPath": { "alias": "iconPath"; "required": false; }; }, {}, never, [".app-bar-title", ".app-bar-actions"], false, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppBarComponent, "ec-app-bar", never, { "user": { "alias": "user"; "required": false; }; "userMenuItems": { "alias": "userMenuItems"; "required": false; }; "userMenuWidth": { "alias": "userMenuWidth"; "required": false; }; "userMenuMinWidth": { "alias": "userMenuMinWidth"; "required": false; }; "userMenuTabindex": { "alias": "userMenuTabindex"; "required": false; }; "iconPath": { "alias": "iconPath"; "required": false; }; "hideAppIcon": { "alias": "hideAppIcon"; "required": false; }; }, {}, never, [".app-bar-logo", ".app-bar-title", ".app-bar-actions"], false, never>;
20
21
  }
@@ -1,5 +1,5 @@
1
1
  /** Tag type used to style the tag */
2
- export type TagType = "info" | "success" | "warning" | "danger" | "accent" | "chargeback" | "accrual" | "inverted" | "system" | "interval";
2
+ export type TagType = "info" | "success" | "warning" | "danger" | "accent" | "chargeback" | "accrual" | "inverted" | "system";
3
3
  /** Link target options, shared amongst tag, menu and item display */
4
4
  export type LinkTarget = '_self' | '_blank' | '_parent' | '_top';
5
5
  /** Tag contains a label and type. Type is default by default */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@energycap/components",
3
- "version": "0.43.2-ECAP-28746-Interval-Data-Tag.20250317-1755",
3
+ "version": "0.43.2-ECAP-28331-App-Bar-Updates.20250318-1713",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "dependencies": {
6
6
  "tslib": "^2.0.0"
@@ -9,7 +9,6 @@ $tag-colors: (
9
9
  chargeback: (bg: var(--ec-color-orange-1), border: var(--ec-color-orange-7)),
10
10
  accrual: (bg: var(--ec-color-aqua-1), border: var(--ec-color-aqua-5)),
11
11
  system: (bg: var(--ec-color-gray-1), border: var(--ec-color-gray-4)),
12
- interval:(bg: var(--ec-color-gray-1), border: var(--ec-color-brand-black)),
13
12
  );
14
13
 
15
14
  @mixin tag-type($type) {