@energycap/components 0.43.9 → 0.43.10
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/energycap-components.min.css +1 -1
- package/esm2022/lib/controls/banner/banner.component.mjs +6 -3
- package/fesm2022/energycap-components.mjs +5 -2
- package/fesm2022/energycap-components.mjs.map +1 -1
- package/lib/controls/banner/banner.component.d.ts +1 -1
- package/package.json +1 -1
- package/src/styles/_global-variables.scss +1 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
import { EventEmitter, OnChanges } from '@angular/core';
|
2
2
|
import { CacheService } from '../../core/cache.service';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export type BannerType = 'info' | 'warning' | 'error' | 'success' | 'promo';
|
4
|
+
export type BannerType = 'info' | 'warning' | 'error' | 'success' | 'promo' | 'instructional';
|
5
5
|
export type BannerStyle = 'normal' | 'pinned' | 'toast';
|
6
6
|
export type BannerCacheEntry = {
|
7
7
|
hidden: boolean;
|
package/package.json
CHANGED
@@ -163,6 +163,7 @@
|
|
163
163
|
--ec-background-color-danger: rgb(255, 225, 231);
|
164
164
|
--ec-background-color-accent: rgb(237, 220, 255);
|
165
165
|
--ec-background-color-promo: linear-gradient(78deg, #4B0793 0%, #A572DC 100%);
|
166
|
+
--ec-background-color-instructional: linear-gradient(78deg, var(--ec-color-gray-8) 0%, var(--ec-color-gray-5) 100%);
|
166
167
|
--ec-background-color-control: var(--ec-background-color);
|
167
168
|
|
168
169
|
// Shadows
|