@energycap/components 0.43.2 → 0.43.3-ECAP-28746-Interval-Data-Tag.20250325-1149
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/esm2022/lib/display/tags/tag.mjs +1 -1
- package/esm2022/lib/display/tags/tags.component.mjs +2 -2
- package/fesm2022/energycap-components.mjs +2 -2
- package/fesm2022/energycap-components.mjs.map +1 -1
- package/lib/display/tags/tag.d.ts +1 -1
- package/package.json +1 -1
- package/src/styles/mixins/_tags-base.scss +1 -0
@@ -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";
|
2
|
+
export type TagType = "info" | "success" | "warning" | "danger" | "accent" | "chargeback" | "accrual" | "inverted" | "system" | "interval";
|
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
@@ -9,6 +9,7 @@ $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)),
|
12
13
|
);
|
13
14
|
|
14
15
|
@mixin tag-type($type) {
|