@oicl/openbridge-webcomponents 0.0.15-dev-20250205131647 → 0.0.15-dev-20250206191351
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/README.md +9 -0
- package/__snapshots__/alert-icon--primary.png +0 -0
- package/__snapshots__/application-alert-button--alarm-3-digits-standalone.png +0 -0
- package/__snapshots__/application-alert-button--alarm-3-digits.png +0 -0
- package/__snapshots__/application-alert-button--alarm-standalone.png +0 -0
- package/__snapshots__/application-alert-button--alarm.png +0 -0
- package/__snapshots__/application-alert-button--caution.png +0 -0
- package/__snapshots__/application-alert-button--command.png +0 -0
- package/__snapshots__/application-alert-button--flat.png +0 -0
- package/__snapshots__/application-alert-button--notification.png +0 -0
- package/__snapshots__/application-alert-button--regular-idle.png +0 -0
- package/__snapshots__/application-alert-button--regular-standalone-no-counter.png +0 -0
- package/__snapshots__/application-alert-button--regular-standalone.png +0 -0
- package/__snapshots__/application-alert-button--regular.png +0 -0
- package/__snapshots__/application-alert-button--running.png +0 -0
- package/__snapshots__/application-alert-button--standalone-idle-flat.png +0 -0
- package/__snapshots__/application-alert-button--standalone-idle.png +0 -0
- package/__snapshots__/application-alert-button--standalone.png +0 -0
- package/__snapshots__/application-alert-button--warning.png +0 -0
- package/__snapshots__/application-alert-topbar-element--caution.png +0 -0
- package/__snapshots__/application-alert-topbar-element--full.png +0 -0
- package/__snapshots__/application-alert-topbar-element--minimized.png +0 -0
- package/__snapshots__/application-alert-topbar-element--muted.png +0 -0
- package/__snapshots__/application-alert-topbar-element--no-ack.png +0 -0
- package/__snapshots__/application-alert-topbar-element--no-alerts.png +0 -0
- package/__snapshots__/application-notification-message--large-single-message.png +0 -0
- package/__snapshots__/application-notification-message--large.png +0 -0
- package/__snapshots__/application-notification-message--primary.png +0 -0
- package/__snapshots__/application-topbar--inactive.png +0 -0
- package/__snapshots__/application-topbar--regular.png +0 -0
- package/__snapshots__/application-topbar--reponsive.png +0 -0
- package/__snapshots__/application-topbar--settings.png +0 -0
- package/__snapshots__/application-topbar--small.png +0 -0
- package/__snapshots__/application-topbar--wide-rail-regular.png +0 -0
- package/custom-elements.json +338 -395
- package/dist/components/alert-button/alert-button.css.js +278 -249
- package/dist/components/alert-button/alert-button.css.js.map +1 -1
- package/dist/components/alert-button/alert-button.d.ts +7 -5
- package/dist/components/alert-button/alert-button.d.ts.map +1 -1
- package/dist/components/alert-button/alert-button.js +79 -22
- package/dist/components/alert-button/alert-button.js.map +1 -1
- package/dist/components/alert-icon/alert-icon.d.ts +0 -2
- package/dist/components/alert-icon/alert-icon.d.ts.map +1 -1
- package/dist/components/alert-icon/alert-icon.js +23 -15
- package/dist/components/alert-icon/alert-icon.js.map +1 -1
- package/dist/components/alert-icon/icons/icon-14-alarm-silenced-a.js +5 -5
- package/dist/components/alert-icon/icons/icon-14-alarm-silenced-a.js.map +1 -1
- package/dist/components/alert-icon/icons/icon-14-alarm-silenced-b.d.ts.map +1 -1
- package/dist/components/alert-icon/icons/icon-14-alarm-silenced-b.js +10 -12
- package/dist/components/alert-icon/icons/icon-14-alarm-silenced-b.js.map +1 -1
- package/dist/components/alert-icon/icons/icon-14-alarm-unack-a.js +4 -4
- package/dist/components/alert-icon/icons/icon-14-alarm-unack-a.js.map +1 -1
- package/dist/components/alert-icon/icons/icon-14-alarm-unack-b.d.ts.map +1 -1
- package/dist/components/alert-icon/icons/icon-14-alarm-unack-b.js +9 -11
- package/dist/components/alert-icon/icons/icon-14-alarm-unack-b.js.map +1 -1
- package/dist/components/alert-icon/icons/icon-14-warning-unack-a.js +4 -4
- package/dist/components/alert-icon/icons/icon-14-warning-unack-a.js.map +1 -1
- package/dist/components/alert-icon/icons/icon-14-warning-unack-b.js +3 -3
- package/dist/components/alert-icon/icons/icon-14-warning-unack-b.js.map +1 -1
- package/dist/components/alert-topbar-element/alert-topbar-element.d.ts +0 -2
- package/dist/components/alert-topbar-element/alert-topbar-element.d.ts.map +1 -1
- package/dist/components/alert-topbar-element/alert-topbar-element.js +3 -13
- package/dist/components/alert-topbar-element/alert-topbar-element.js.map +1 -1
- package/dist/types.d.ts +1 -4
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +0 -3
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
- package/src/components/alert-button/alert-button.css +118 -98
- package/src/components/alert-button/alert-button.stories.ts +42 -19
- package/src/components/alert-button/alert-button.ts +89 -27
- package/src/components/alert-icon/alert-icon.stories.ts +1 -8
- package/src/components/alert-icon/alert-icon.ts +23 -13
- package/src/components/alert-icon/icons/icon-14-alarm-silenced-a.ts +5 -5
- package/src/components/alert-icon/icons/icon-14-alarm-silenced-b.ts +10 -12
- package/src/components/alert-icon/icons/icon-14-alarm-unack-a.ts +4 -4
- package/src/components/alert-icon/icons/icon-14-alarm-unack-b.ts +9 -11
- package/src/components/alert-icon/icons/icon-14-warning-unack-a.ts +4 -4
- package/src/components/alert-icon/icons/icon-14-warning-unack-b.ts +3 -3
- package/src/components/alert-topbar-element/alert-topbar-element.stories.ts +6 -8
- package/src/components/alert-topbar-element/alert-topbar-element.ts +3 -7
- package/src/components/top-bar/top-bar.stories.ts +4 -2
- package/src/palettes/variables.css +61 -0
- package/src/types.ts +0 -3
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"alert-button.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"alert-button.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
@@ -1,6 +1,11 @@
|
|
1
1
|
import { LitElement } from 'lit';
|
2
2
|
import { AlertType } from '../../types';
|
3
|
+
import '../../icons/icon-alerts';
|
3
4
|
import '../../icons/icon-alerts-active';
|
5
|
+
import '../../icons/icon-notification';
|
6
|
+
import '../../icons/icon-notification-filled';
|
7
|
+
import '../../icons/icon-notification-advice';
|
8
|
+
import '../../icons/icon-notification-advice-active';
|
4
9
|
/**
|
5
10
|
* Button used for alerts and notification
|
6
11
|
*
|
@@ -8,19 +13,16 @@ import '../../icons/icon-alerts-active';
|
|
8
13
|
* @prop {AlertType} alertType - Type of alert.
|
9
14
|
* @prop {boolean} standalone - If the button is standalone and not used together with an notification-message.
|
10
15
|
* @prop {boolean} counter - If the button should display a counter.
|
11
|
-
* @prop {boolean} blinkAlarmValue - This value should alternate between true and false to make the icon blink.
|
12
|
-
* It should be synchronized with the blinkValue of other alarms.
|
13
|
-
* @prop {boolean} blinkWarningValue - This value should alternate between true and false to make the icon blink.
|
14
16
|
*
|
15
17
|
* @fires click - Fires when the button is clicked.
|
16
18
|
*/
|
17
19
|
export declare class ObcAlertButton extends LitElement {
|
18
20
|
nAlerts: number;
|
19
21
|
alertType: AlertType;
|
22
|
+
flatWhenIdle: boolean;
|
20
23
|
standalone: boolean;
|
21
24
|
counter: boolean;
|
22
|
-
|
23
|
-
blinkWarningValue: boolean;
|
25
|
+
private alertIcon;
|
24
26
|
render(): import('lit-html').TemplateResult<1>;
|
25
27
|
static styles: import('lit').CSSResult;
|
26
28
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"alert-button.d.ts","sourceRoot":"","sources":["../../../src/components/alert-button/alert-button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAkB,MAAM,KAAK,CAAC;AAGhD,OAAO,gCAAgC,CAAC;AACxC,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AAGtC
|
1
|
+
{"version":3,"file":"alert-button.d.ts","sourceRoot":"","sources":["../../../src/components/alert-button/alert-button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAkB,MAAM,KAAK,CAAC;AAGhD,OAAO,yBAAyB,CAAC;AACjC,OAAO,gCAAgC,CAAC;AACxC,OAAO,+BAA+B,CAAC;AACvC,OAAO,sCAAsC,CAAC;AAC9C,OAAO,sCAAsC,CAAC;AAC9C,OAAO,6CAA6C,CAAC;AACrD,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AAGtC;;;;;;;;;GASG;AACH,qBACa,cAAe,SAAQ,UAAU;IAClB,OAAO,SAAK;IACZ,SAAS,YAAmB;IAC3B,YAAY,UAAS;IACrB,UAAU,UAAS;IACnB,OAAO,UAAS;IAE3C,OAAO,CAAC,SAAS;IAgCR,MAAM;IA0Df,OAAgB,MAAM,0BAA2B;CAClD;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,kBAAkB,EAAE,cAAc,CAAC;KACpC;CACF"}
|
@@ -1,7 +1,12 @@
|
|
1
1
|
import { unsafeCSS, LitElement, html } from "lit";
|
2
2
|
import { property, customElement } from "lit/decorators.js";
|
3
3
|
import compentStyle from "./alert-button.css.js";
|
4
|
+
import "../../icons/icon-alerts.js";
|
4
5
|
import "../../icons/icon-alerts-active.js";
|
6
|
+
import "../../icons/icon-notification.js";
|
7
|
+
import "../../icons/icon-notification-filled.js";
|
8
|
+
import "../../icons/icon-notification-advice.js";
|
9
|
+
import "../../icons/icon-notification-advice-active.js";
|
5
10
|
import { AlertType } from "../../types.js";
|
6
11
|
import { classMap } from "lit/directives/class-map.js";
|
7
12
|
var __defProp = Object.defineProperty;
|
@@ -18,32 +23,87 @@ let ObcAlertButton = class extends LitElement {
|
|
18
23
|
constructor() {
|
19
24
|
super(...arguments);
|
20
25
|
this.nAlerts = 0;
|
21
|
-
this.alertType = AlertType.
|
26
|
+
this.alertType = AlertType.Alarm;
|
27
|
+
this.flatWhenIdle = false;
|
22
28
|
this.standalone = false;
|
23
29
|
this.counter = false;
|
24
|
-
|
25
|
-
|
30
|
+
}
|
31
|
+
alertIcon() {
|
32
|
+
const isIdle = this.nAlerts === 0;
|
33
|
+
switch (this.alertType) {
|
34
|
+
/*
|
35
|
+
case AlertType.Advice:
|
36
|
+
if (isIdle) {
|
37
|
+
return html`<obi-notification-advice
|
38
|
+
class="icon"
|
39
|
+
></obi-notification-advice>`;
|
40
|
+
} else {
|
41
|
+
return html`<obi-notification-advice-active
|
42
|
+
class="icon"
|
43
|
+
></obi-notification-advice-active>`;
|
44
|
+
}
|
45
|
+
*/
|
46
|
+
case AlertType.Notification:
|
47
|
+
if (isIdle) {
|
48
|
+
return html`<obi-notification class="icon"></obi-notification>`;
|
49
|
+
} else {
|
50
|
+
return html`<obi-notification-filled
|
51
|
+
class="icon"
|
52
|
+
></obi-notification-filled>`;
|
53
|
+
}
|
54
|
+
default:
|
55
|
+
if (isIdle) {
|
56
|
+
return html`<obi-alerts class="icon"></obi-alerts>`;
|
57
|
+
} else {
|
58
|
+
return html`<obi-alerts-active class="icon"></obi-alerts-active>`;
|
59
|
+
}
|
60
|
+
}
|
26
61
|
}
|
27
62
|
render() {
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
63
|
+
const isAlarm = this.alertType === AlertType.Alarm;
|
64
|
+
const isWarning = this.alertType === AlertType.Warning;
|
65
|
+
const hasAlerts = this.nAlerts > 0;
|
66
|
+
const isAlarmOrWarning = (isAlarm || isWarning) && hasAlerts;
|
67
|
+
let activeAlertType = this.alertType;
|
68
|
+
if (!hasAlerts) {
|
69
|
+
if (this.flatWhenIdle) {
|
70
|
+
activeAlertType = "flat";
|
71
|
+
} else {
|
72
|
+
activeAlertType = "none";
|
73
|
+
}
|
33
74
|
}
|
34
75
|
return html`
|
35
|
-
<button
|
36
|
-
|
76
|
+
<button>
|
77
|
+
<div
|
78
|
+
class=${classMap({
|
37
79
|
wrapper: true,
|
38
|
-
[`type-${
|
80
|
+
[`type-${activeAlertType}`]: true,
|
39
81
|
counter: this.counter,
|
40
|
-
standalone: this.standalone
|
82
|
+
standalone: this.standalone,
|
83
|
+
on: true
|
41
84
|
})}
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
85
|
+
>
|
86
|
+
<div class="visible-wrapper">
|
87
|
+
${this.alertIcon()}
|
88
|
+
${this.counter && hasAlerts ? html`<div class="badge">${this.nAlerts}</div>` : null}
|
89
|
+
</div>
|
46
90
|
</div>
|
91
|
+
|
92
|
+
${isAlarmOrWarning ? html`<div
|
93
|
+
class=${classMap({
|
94
|
+
wrapper: true,
|
95
|
+
"type-none": true,
|
96
|
+
counter: this.counter,
|
97
|
+
standalone: this.standalone,
|
98
|
+
[`type-${this.alertType}-off`]: true,
|
99
|
+
overlay: true
|
100
|
+
})}
|
101
|
+
>
|
102
|
+
<div class="visible-wrapper">
|
103
|
+
${this.nAlerts > 0 ? html`<obi-alerts-active class="icon"></obi-alerts-active>` : html`<obi-alerts class="icon"></obi-alerts>`}
|
104
|
+
${this.counter ? html`<div class="badge">${this.nAlerts}</div>` : null}
|
105
|
+
</div>
|
106
|
+
</div>` : null}
|
47
107
|
</button>
|
48
108
|
`;
|
49
109
|
}
|
@@ -57,16 +117,13 @@ __decorateClass([
|
|
57
117
|
], ObcAlertButton.prototype, "alertType", 2);
|
58
118
|
__decorateClass([
|
59
119
|
property({ type: Boolean })
|
60
|
-
], ObcAlertButton.prototype, "
|
120
|
+
], ObcAlertButton.prototype, "flatWhenIdle", 2);
|
61
121
|
__decorateClass([
|
62
122
|
property({ type: Boolean })
|
63
|
-
], ObcAlertButton.prototype, "
|
64
|
-
__decorateClass([
|
65
|
-
property({ type: Boolean })
|
66
|
-
], ObcAlertButton.prototype, "blinkAlarmValue", 2);
|
123
|
+
], ObcAlertButton.prototype, "standalone", 2);
|
67
124
|
__decorateClass([
|
68
125
|
property({ type: Boolean })
|
69
|
-
], ObcAlertButton.prototype, "
|
126
|
+
], ObcAlertButton.prototype, "counter", 2);
|
70
127
|
ObcAlertButton = __decorateClass([
|
71
128
|
customElement("obc-alert-button")
|
72
129
|
], ObcAlertButton);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"alert-button.js","sources":["../../../src/components/alert-button/alert-button.ts"],"sourcesContent":["import {LitElement, html, unsafeCSS} from 'lit';\nimport {customElement, property} from 'lit/decorators.js';\nimport compentStyle from './alert-button.css?inline';\nimport '../../icons/icon-alerts-active';\nimport {AlertType} from '../../types';\nimport {classMap} from 'lit/directives/class-map.js';\n\n/**\n * Button used for alerts and notification\n *\n * @prop {number} nAlerts - Number of alerts.\n * @prop {AlertType} alertType - Type of alert.\n * @prop {boolean} standalone - If the button is standalone and not used together with an notification-message.\n * @prop {boolean} counter - If the button should display a counter.\n
|
1
|
+
{"version":3,"file":"alert-button.js","sources":["../../../src/components/alert-button/alert-button.ts"],"sourcesContent":["import {LitElement, html, unsafeCSS} from 'lit';\nimport {customElement, property} from 'lit/decorators.js';\nimport compentStyle from './alert-button.css?inline';\nimport '../../icons/icon-alerts';\nimport '../../icons/icon-alerts-active';\nimport '../../icons/icon-notification';\nimport '../../icons/icon-notification-filled';\nimport '../../icons/icon-notification-advice';\nimport '../../icons/icon-notification-advice-active';\nimport {AlertType} from '../../types';\nimport {classMap} from 'lit/directives/class-map.js';\n\n/**\n * Button used for alerts and notification\n *\n * @prop {number} nAlerts - Number of alerts.\n * @prop {AlertType} alertType - Type of alert.\n * @prop {boolean} standalone - If the button is standalone and not used together with an notification-message.\n * @prop {boolean} counter - If the button should display a counter.\n *\n * @fires click - Fires when the button is clicked.\n */\n@customElement('obc-alert-button')\nexport class ObcAlertButton extends LitElement {\n @property({type: Number}) nAlerts = 0;\n @property({type: String}) alertType = AlertType.Alarm;\n @property({type: Boolean}) flatWhenIdle = false;\n @property({type: Boolean}) standalone = false;\n @property({type: Boolean}) counter = false;\n\n private alertIcon() {\n const isIdle = this.nAlerts === 0;\n switch (this.alertType) {\n /*\n case AlertType.Advice:\n if (isIdle) {\n return html`<obi-notification-advice\n class=\"icon\"\n ></obi-notification-advice>`;\n } else {\n return html`<obi-notification-advice-active\n class=\"icon\"\n ></obi-notification-advice-active>`;\n }\n */\n case AlertType.Notification:\n if (isIdle) {\n return html`<obi-notification class=\"icon\"></obi-notification>`;\n } else {\n return html`<obi-notification-filled\n class=\"icon\"\n ></obi-notification-filled>`;\n }\n default:\n if (isIdle) {\n return html`<obi-alerts class=\"icon\"></obi-alerts>`;\n } else {\n return html`<obi-alerts-active class=\"icon\"></obi-alerts-active>`;\n }\n }\n }\n\n override render() {\n const isAlarm = this.alertType === AlertType.Alarm;\n const isWarning = this.alertType === AlertType.Warning;\n const hasAlerts = this.nAlerts > 0;\n const isAlarmOrWarning = (isAlarm || isWarning) && hasAlerts;\n\n let activeAlertType: string = this.alertType;\n if (!hasAlerts) {\n if (this.flatWhenIdle) {\n activeAlertType = 'flat';\n } else {\n activeAlertType = 'none';\n }\n }\n return html`\n <button>\n <div\n class=${classMap({\n wrapper: true,\n [`type-${activeAlertType}`]: true,\n counter: this.counter,\n standalone: this.standalone,\n on: true,\n })}\n >\n <div class=\"visible-wrapper\">\n ${this.alertIcon()}\n ${this.counter && hasAlerts\n ? html`<div class=\"badge\">${this.nAlerts}</div>`\n : null}\n </div>\n </div>\n\n ${isAlarmOrWarning\n ? html`<div\n class=${classMap({\n wrapper: true,\n 'type-none': true,\n counter: this.counter,\n standalone: this.standalone,\n [`type-${this.alertType}-off`]: true,\n overlay: true,\n })}\n >\n <div class=\"visible-wrapper\">\n ${this.nAlerts > 0\n ? html`<obi-alerts-active class=\"icon\"></obi-alerts-active>`\n : html`<obi-alerts class=\"icon\"></obi-alerts>`}\n ${this.counter\n ? html`<div class=\"badge\">${this.nAlerts}</div>`\n : null}\n </div>\n </div>`\n : null}\n </button>\n `;\n }\n\n static override styles = unsafeCSS(compentStyle);\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'obc-alert-button': ObcAlertButton;\n }\n}\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;AAuBa,IAAA,iBAAN,cAA6B,WAAW;AAAA,EAAxC,cAAA;AAAA,UAAA,GAAA,SAAA;AAC+B,SAAA,UAAA;AACV,SAAA,YAAY,UAAU;AACN,SAAA,eAAA;AACF,SAAA,aAAA;AACH,SAAA,UAAA;AAAA,EAAA;AAAA,EAE7B,YAAY;AACZ,UAAA,SAAS,KAAK,YAAY;AAChC,YAAQ,KAAK,WAAW;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,MAatB,KAAK,UAAU;AACb,YAAI,QAAQ;AACH,iBAAA;AAAA,QAAA,OACF;AACE,iBAAA;AAAA;AAAA;AAAA,QAAA;AAAA,MAIX;AACE,YAAI,QAAQ;AACH,iBAAA;AAAA,QAAA,OACF;AACE,iBAAA;AAAA,QAAA;AAAA,IACT;AAAA,EACJ;AAAA,EAGO,SAAS;AACV,UAAA,UAAU,KAAK,cAAc,UAAU;AACvC,UAAA,YAAY,KAAK,cAAc,UAAU;AACzC,UAAA,YAAY,KAAK,UAAU;AAC3B,UAAA,oBAAoB,WAAW,cAAc;AAEnD,QAAI,kBAA0B,KAAK;AACnC,QAAI,CAAC,WAAW;AACd,UAAI,KAAK,cAAc;AACH,0BAAA;AAAA,MAAA,OACb;AACa,0BAAA;AAAA,MAAA;AAAA,IACpB;AAEK,WAAA;AAAA;AAAA;AAAA,kBAGO,SAAS;AAAA,MACf,SAAS;AAAA,MACT,CAAC,QAAQ,eAAe,EAAE,GAAG;AAAA,MAC7B,SAAS,KAAK;AAAA,MACd,YAAY,KAAK;AAAA,MACjB,IAAI;AAAA,IAAA,CACL,CAAC;AAAA;AAAA;AAAA,cAGE,KAAK,UAAW,CAAA;AAAA,cAChB,KAAK,WAAW,YACd,0BAA0B,KAAK,OAAO,WACtC,IAAI;AAAA;AAAA;AAAA;AAAA,UAIV,mBACE;AAAA,sBACU,SAAS;AAAA,MACf,SAAS;AAAA,MACT,aAAa;AAAA,MACb,SAAS,KAAK;AAAA,MACd,YAAY,KAAK;AAAA,MACjB,CAAC,QAAQ,KAAK,SAAS,MAAM,GAAG;AAAA,MAChC,SAAS;AAAA,IAAA,CACV,CAAC;AAAA;AAAA;AAAA,kBAGE,KAAK,UAAU,IACb,6DACA,4CAA4C;AAAA,kBAC9C,KAAK,UACH,0BAA0B,KAAK,OAAO,WACtC,IAAI;AAAA;AAAA,sBAGZ,IAAI;AAAA;AAAA;AAAA,EAAA;AAMhB;AAlGa,eAiGK,SAAS,UAAU,YAAY;AAhGrB,gBAAA;AAAA,EAAzB,SAAS,EAAC,MAAM,OAAO,CAAA;AAAA,GADb,eACe,WAAA,WAAA,CAAA;AACA,gBAAA;AAAA,EAAzB,SAAS,EAAC,MAAM,OAAO,CAAA;AAAA,GAFb,eAEe,WAAA,aAAA,CAAA;AACC,gBAAA;AAAA,EAA1B,SAAS,EAAC,MAAM,QAAQ,CAAA;AAAA,GAHd,eAGgB,WAAA,gBAAA,CAAA;AACA,gBAAA;AAAA,EAA1B,SAAS,EAAC,MAAM,QAAQ,CAAA;AAAA,GAJd,eAIgB,WAAA,cAAA,CAAA;AACA,gBAAA;AAAA,EAA1B,SAAS,EAAC,MAAM,QAAQ,CAAA;AAAA,GALd,eAKgB,WAAA,WAAA,CAAA;AALhB,iBAAN,gBAAA;AAAA,EADN,cAAc,kBAAkB;AAAA,GACpB,cAAA;"}
|
@@ -18,11 +18,9 @@ export type AlertIconName = keyof typeof mapping;
|
|
18
18
|
/**
|
19
19
|
* Icon used for alerts and notification with blinking effect
|
20
20
|
*
|
21
|
-
* @prop {boolean} blinkValue - This value should alternate between true and false to make the icon blink.
|
22
21
|
* @prop {AlertIconName} name - Name of the icon.
|
23
22
|
*/
|
24
23
|
export declare class ObcAlertIcon extends LitElement {
|
25
|
-
blinkValue: boolean;
|
26
24
|
name: AlertIconName;
|
27
25
|
render(): import('lit-html').TemplateResult<1>;
|
28
26
|
static styles: import('lit').CSSResult;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"alert-icon.d.ts","sourceRoot":"","sources":["../../../src/components/alert-icon/alert-icon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAY,MAAM,KAAK,CAAC;AAU1C,QAAA,MAAM,OAAO;;;;;;;;;;;;;CAIZ,CAAC;AAEF,eAAO,MAAM,cAAc,wDAA0C,CAAC;AACtE,MAAM,MAAM,aAAa,GAAG,MAAM,OAAO,OAAO,CAAC;AAEjD
|
1
|
+
{"version":3,"file":"alert-icon.d.ts","sourceRoot":"","sources":["../../../src/components/alert-icon/alert-icon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAY,MAAM,KAAK,CAAC;AAU1C,QAAA,MAAM,OAAO;;;;;;;;;;;;;CAIZ,CAAC;AAEF,eAAO,MAAM,cAAc,wDAA0C,CAAC;AACtE,MAAM,MAAM,aAAa,GAAG,MAAM,OAAO,OAAO,CAAC;AAEjD;;;;GAIG;AACH,qBACa,YAAa,SAAQ,UAAU;IAChB,IAAI,EAAE,aAAa,CAAiB;IAErD,MAAM;IAgBf,OAAgB,MAAM,0BAiCpB;CACH;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,gBAAgB,EAAE,YAAY,CAAC;KAChC;CACF"}
|
@@ -26,17 +26,16 @@ const AlertIconNames = Object.keys(mapping);
|
|
26
26
|
let ObcAlertIcon = class extends LitElement {
|
27
27
|
constructor() {
|
28
28
|
super(...arguments);
|
29
|
-
this.blinkValue = false;
|
30
29
|
this.name = "alarm-unack";
|
31
30
|
}
|
32
31
|
render() {
|
33
32
|
const icons = mapping[this.name];
|
33
|
+
const isWarning = this.name === "warning-unack";
|
34
34
|
return html`
|
35
35
|
<div
|
36
36
|
class=${classMap({
|
37
37
|
wrapper: true,
|
38
|
-
|
39
|
-
"show-b": !this.blinkValue
|
38
|
+
warning: isWarning
|
40
39
|
})}
|
41
40
|
>
|
42
41
|
<span class="a">${icons.a}</span>
|
@@ -49,27 +48,36 @@ ObcAlertIcon.styles = css`
|
|
49
48
|
.wrapper {
|
50
49
|
height: 100%;
|
51
50
|
width: 100%;
|
51
|
+
position: relative;
|
52
52
|
}
|
53
|
-
.wrapper
|
53
|
+
.wrapper svg {
|
54
54
|
height: 100%;
|
55
55
|
width: 100%;
|
56
|
+
position: absolute;
|
57
|
+
top: 0;
|
58
|
+
left: 0;
|
56
59
|
}
|
57
|
-
.a,
|
58
|
-
.b {
|
59
|
-
display: none;
|
60
|
-
}
|
61
60
|
|
62
|
-
.
|
63
|
-
|
61
|
+
:not(.warning) {
|
62
|
+
.a {
|
63
|
+
opacity: var(--alarm-blink-on);
|
64
|
+
}
|
65
|
+
|
66
|
+
.b {
|
67
|
+
opacity: var(--alarm-blink-off);
|
68
|
+
}
|
64
69
|
}
|
65
70
|
|
66
|
-
.
|
67
|
-
|
71
|
+
.warning {
|
72
|
+
.a {
|
73
|
+
opacity: var(--warning-blink-on);
|
74
|
+
}
|
75
|
+
|
76
|
+
.b {
|
77
|
+
opacity: var(--warning-blink-off);
|
78
|
+
}
|
68
79
|
}
|
69
80
|
`;
|
70
|
-
__decorateClass([
|
71
|
-
property({ type: Boolean })
|
72
|
-
], ObcAlertIcon.prototype, "blinkValue", 2);
|
73
81
|
__decorateClass([
|
74
82
|
property({ type: String })
|
75
83
|
], ObcAlertIcon.prototype, "name", 2);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"alert-icon.js","sources":["../../../src/components/alert-icon/alert-icon.ts"],"sourcesContent":["import {LitElement, html, css} from 'lit';\nimport {customElement, property} from 'lit/decorators.js';\nimport {classMap} from 'lit/directives/class-map.js';\nimport {svg14AlarmSilencedA} from './icons/icon-14-alarm-silenced-a';\nimport {svg14AlarmSilencedB} from './icons/icon-14-alarm-silenced-b';\nimport {svg14AlarmUnackA} from './icons/icon-14-alarm-unack-a';\nimport {svg14AlarmUnackB} from './icons/icon-14-alarm-unack-b';\nimport {svg14WarningUnackA} from './icons/icon-14-warning-unack-a';\nimport {svg14WarningUnackB} from './icons/icon-14-warning-unack-b';\n\nconst mapping = {\n 'alarm-silenced': {a: svg14AlarmSilencedA, b: svg14AlarmSilencedB},\n 'alarm-unack': {a: svg14AlarmUnackA, b: svg14AlarmUnackB},\n 'warning-unack': {a: svg14WarningUnackA, b: svg14WarningUnackB},\n};\n\nexport const AlertIconNames = Object.keys(mapping) as AlertIconName[];\nexport type AlertIconName = keyof typeof mapping;\n\n/**\n * Icon used for alerts and notification with blinking effect\n *\n * @prop {
|
1
|
+
{"version":3,"file":"alert-icon.js","sources":["../../../src/components/alert-icon/alert-icon.ts"],"sourcesContent":["import {LitElement, html, css} from 'lit';\nimport {customElement, property} from 'lit/decorators.js';\nimport {classMap} from 'lit/directives/class-map.js';\nimport {svg14AlarmSilencedA} from './icons/icon-14-alarm-silenced-a';\nimport {svg14AlarmSilencedB} from './icons/icon-14-alarm-silenced-b';\nimport {svg14AlarmUnackA} from './icons/icon-14-alarm-unack-a';\nimport {svg14AlarmUnackB} from './icons/icon-14-alarm-unack-b';\nimport {svg14WarningUnackA} from './icons/icon-14-warning-unack-a';\nimport {svg14WarningUnackB} from './icons/icon-14-warning-unack-b';\n\nconst mapping = {\n 'alarm-silenced': {a: svg14AlarmSilencedA, b: svg14AlarmSilencedB},\n 'alarm-unack': {a: svg14AlarmUnackA, b: svg14AlarmUnackB},\n 'warning-unack': {a: svg14WarningUnackA, b: svg14WarningUnackB},\n};\n\nexport const AlertIconNames = Object.keys(mapping) as AlertIconName[];\nexport type AlertIconName = keyof typeof mapping;\n\n/**\n * Icon used for alerts and notification with blinking effect\n *\n * @prop {AlertIconName} name - Name of the icon.\n */\n@customElement('obc-alert-icon')\nexport class ObcAlertIcon extends LitElement {\n @property({type: String}) name: AlertIconName = 'alarm-unack';\n\n override render() {\n const icons = mapping[this.name];\n const isWarning = this.name === 'warning-unack';\n return html`\n <div\n class=${classMap({\n wrapper: true,\n warning: isWarning,\n })}\n >\n <span class=\"a\">${icons.a}</span>\n <span class=\"b\">${icons.b}</span>\n </div>\n `;\n }\n\n static override styles = css`\n .wrapper {\n height: 100%;\n width: 100%;\n position: relative;\n }\n .wrapper svg {\n height: 100%;\n width: 100%;\n position: absolute;\n top: 0;\n left: 0;\n }\n\n :not(.warning) {\n .a {\n opacity: var(--alarm-blink-on);\n }\n\n .b {\n opacity: var(--alarm-blink-off);\n }\n }\n\n .warning {\n .a {\n opacity: var(--warning-blink-on);\n }\n\n .b {\n opacity: var(--warning-blink-off);\n }\n }\n `;\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'obc-alert-icon': ObcAlertIcon;\n }\n}\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAUA,MAAM,UAAU;AAAA,EACd,kBAAkB,EAAC,GAAG,qBAAqB,GAAG,oBAAmB;AAAA,EACjE,eAAe,EAAC,GAAG,kBAAkB,GAAG,iBAAgB;AAAA,EACxD,iBAAiB,EAAC,GAAG,oBAAoB,GAAG,mBAAkB;AAChE;AAEa,MAAA,iBAAiB,OAAO,KAAK,OAAO;AASpC,IAAA,eAAN,cAA2B,WAAW;AAAA,EAAtC,cAAA;AAAA,UAAA,GAAA,SAAA;AAC2C,SAAA,OAAA;AAAA,EAAA;AAAA,EAEvC,SAAS;AACV,UAAA,QAAQ,QAAQ,KAAK,IAAI;AACzB,UAAA,YAAY,KAAK,SAAS;AACzB,WAAA;AAAA;AAAA,gBAEK,SAAS;AAAA,MACf,SAAS;AAAA,MACT,SAAS;AAAA,IAAA,CACV,CAAC;AAAA;AAAA,0BAEgB,MAAM,CAAC;AAAA,0BACP,MAAM,CAAC;AAAA;AAAA;AAAA,EAAA;AAuCjC;AArDa,aAmBK,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAlBC,gBAAA;AAAA,EAAzB,SAAS,EAAC,MAAM,OAAO,CAAA;AAAA,GADb,aACe,WAAA,QAAA,CAAA;AADf,eAAN,gBAAA;AAAA,EADN,cAAc,gBAAgB;AAAA,GAClB,YAAA;"}
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import { svg } from "lit";
|
2
2
|
const svg14AlarmSilencedA = svg`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="
|
4
|
-
<path d="
|
5
|
-
<path d="
|
6
|
-
<path d="
|
7
|
-
<path d="
|
3
|
+
<path d="M1.11648 20.5339L11.1158 1.53427C11.4907 0.821889 12.5105 0.821913 12.8854 1.53432L22.8835 20.5339C23.234 21.1999 22.7512 22 21.9987 22L2.00128 22C1.24879 22 0.765943 21.1999 1.11648 20.5339Z" fill="var(--alarm-enabled-background-color)"/>
|
4
|
+
<path d="M7 16.5H8.5L12 20V15.7075L14.3401 18.0476C14.1153 18.1959 13.8764 18.3228 13.6264 18.4264C13.4227 18.5107 13.2133 18.5789 13 18.6306V19.9082C13.3778 19.8384 13.7481 19.7289 14.1048 19.5812C14.5073 19.4145 14.8876 19.2009 15.2381 18.9456L16.5957 20.3032L17.3028 19.5961L15.991 18.2843C15.991 18.2843 15.991 18.2843 15.991 18.2843L15.1068 17.4C15.1067 17.4 15.1068 17.4 15.1068 17.4L14.115 16.4083C14.1149 16.4083 14.115 16.4082 14.115 16.4083L8.11042 10.4037L7.40331 11.1108L8.64624 12.3538L8.5 12.5H7C6.72386 12.5 6.5 12.7239 6.5 13V16C6.5 16.2761 6.72386 16.5 7 16.5Z" fill="var(--on-alarm-active-color)"/>
|
5
|
+
<path d="M10.0605 10.9395L12 12.879V9L10.0605 10.9395Z" fill="var(--on-alarm-active-color)"/>
|
6
|
+
<path d="M13 13.879L14.737 15.616C14.9019 15.2855 14.9921 14.9215 14.9995 14.5497C15.0089 14.0778 14.8845 13.6128 14.6407 13.2086C14.3969 12.8044 14.0436 12.4775 13.6217 12.2657C13.4239 12.1663 13.2148 12.0942 13 12.0504V13.879Z" fill="var(--on-alarm-active-color)"/>
|
7
|
+
<path d="M15.7043 16.5833L16.6141 17.4931C16.7962 17.2125 16.9527 16.9152 17.0813 16.6046C17.3577 15.9373 17.5 15.2222 17.5 14.4999C17.5 13.7776 17.3577 13.0624 17.0813 12.3951C16.8049 11.7278 16.3998 11.1215 15.8891 10.6108C15.3784 10.1001 14.7721 9.69494 14.1048 9.41854C13.7481 9.27081 13.3778 9.1614 13 9.09155V10.3692C13.2133 10.4208 13.4227 10.489 13.6264 10.5734C14.142 10.787 14.6106 11.1 15.0052 11.4947C15.3999 11.8893 15.7129 12.3578 15.9265 12.8735C16.1401 13.3891 16.25 13.9418 16.25 14.4999C16.25 15.058 16.1401 15.6107 15.9265 16.1263C15.8615 16.2832 15.7872 16.4358 15.7043 16.5833Z" fill="var(--on-alarm-active-color)"/>
|
8
8
|
</svg>
|
9
9
|
`;
|
10
10
|
export {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"icon-14-alarm-silenced-a.js","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-silenced-a.ts"],"sourcesContent":["import {svg} from 'lit';\nexport const svg14AlarmSilencedA = svg`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"
|
1
|
+
{"version":3,"file":"icon-14-alarm-silenced-a.js","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-silenced-a.ts"],"sourcesContent":["import {svg} from 'lit';\nexport const svg14AlarmSilencedA = svg`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M1.11648 20.5339L11.1158 1.53427C11.4907 0.821889 12.5105 0.821913 12.8854 1.53432L22.8835 20.5339C23.234 21.1999 22.7512 22 21.9987 22L2.00128 22C1.24879 22 0.765943 21.1999 1.11648 20.5339Z\" fill=\"var(--alarm-enabled-background-color)\"/>\n<path d=\"M7 16.5H8.5L12 20V15.7075L14.3401 18.0476C14.1153 18.1959 13.8764 18.3228 13.6264 18.4264C13.4227 18.5107 13.2133 18.5789 13 18.6306V19.9082C13.3778 19.8384 13.7481 19.7289 14.1048 19.5812C14.5073 19.4145 14.8876 19.2009 15.2381 18.9456L16.5957 20.3032L17.3028 19.5961L15.991 18.2843C15.991 18.2843 15.991 18.2843 15.991 18.2843L15.1068 17.4C15.1067 17.4 15.1068 17.4 15.1068 17.4L14.115 16.4083C14.1149 16.4083 14.115 16.4082 14.115 16.4083L8.11042 10.4037L7.40331 11.1108L8.64624 12.3538L8.5 12.5H7C6.72386 12.5 6.5 12.7239 6.5 13V16C6.5 16.2761 6.72386 16.5 7 16.5Z\" fill=\"var(--on-alarm-active-color)\"/>\n<path d=\"M10.0605 10.9395L12 12.879V9L10.0605 10.9395Z\" fill=\"var(--on-alarm-active-color)\"/>\n<path d=\"M13 13.879L14.737 15.616C14.9019 15.2855 14.9921 14.9215 14.9995 14.5497C15.0089 14.0778 14.8845 13.6128 14.6407 13.2086C14.3969 12.8044 14.0436 12.4775 13.6217 12.2657C13.4239 12.1663 13.2148 12.0942 13 12.0504V13.879Z\" fill=\"var(--on-alarm-active-color)\"/>\n<path d=\"M15.7043 16.5833L16.6141 17.4931C16.7962 17.2125 16.9527 16.9152 17.0813 16.6046C17.3577 15.9373 17.5 15.2222 17.5 14.4999C17.5 13.7776 17.3577 13.0624 17.0813 12.3951C16.8049 11.7278 16.3998 11.1215 15.8891 10.6108C15.3784 10.1001 14.7721 9.69494 14.1048 9.41854C13.7481 9.27081 13.3778 9.1614 13 9.09155V10.3692C13.2133 10.4208 13.4227 10.489 13.6264 10.5734C14.142 10.787 14.6106 11.1 15.0052 11.4947C15.3999 11.8893 15.7129 12.3578 15.9265 12.8735C16.1401 13.3891 16.25 13.9418 16.25 14.4999C16.25 15.058 16.1401 15.6107 15.9265 16.1263C15.8615 16.2832 15.7872 16.4358 15.7043 16.5833Z\" fill=\"var(--on-alarm-active-color)\"/>\n</svg>\n`;\n"],"names":[],"mappings":";AACO,MAAM,sBAAsB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"icon-14-alarm-silenced-b.d.ts","sourceRoot":"","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-silenced-b.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,mBAAmB,
|
1
|
+
{"version":3,"file":"icon-14-alarm-silenced-b.d.ts","sourceRoot":"","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-silenced-b.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,mBAAmB,sCAY/B,CAAC"}
|
@@ -1,17 +1,15 @@
|
|
1
1
|
import { svg } from "lit";
|
2
2
|
const svg14AlarmSilencedB = svg`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<
|
4
|
-
<
|
5
|
-
<path d="
|
6
|
-
|
7
|
-
<path d="
|
8
|
-
|
9
|
-
|
10
|
-
<
|
11
|
-
<
|
12
|
-
<
|
13
|
-
</clipPath>
|
14
|
-
</defs>
|
3
|
+
<mask id="a" maskUnits="userSpaceOnUse" x="-1" y="0" width="26" height="23" fill="black">
|
4
|
+
<rect fill="white" x="-1" width="26" height="23"/>
|
5
|
+
<path d="M1.11648 20.5339L11.1158 1.53427C11.4907 0.821889 12.5105 0.821913 12.8854 1.53432L22.8835 20.5339C23.234 21.1999 22.7512 22 21.9987 22L2.00128 22C1.24879 22 0.765943 21.1999 1.11648 20.5339Z"/>
|
6
|
+
</mask>
|
7
|
+
<path d="M11.1158 1.53427L12.0007 2L12.0007 2L11.1158 1.53427ZM1.11648 20.5339L2.00141 20.9996L2.00141 20.9996L1.11648 20.5339ZM2.00128 22L2.00128 23L2.00128 23L2.00128 22ZM21.9987 22L21.9987 21L21.9987 21L21.9987 22ZM22.8835 20.5339L21.9986 20.9996L21.9986 20.9996L22.8835 20.5339ZM12.8854 1.53432L13.7704 1.06863L13.7704 1.06863L12.8854 1.53432ZM21.9987 23C23.5042 23 24.4692 21.3997 23.7685 20.0682L21.9986 20.9996L21.9987 21V23ZM0.231556 20.0681C-0.469216 21.3996 0.495789 23 2.00128 23V21L2.00141 20.9996L0.231556 20.0681ZM12.0007 2L12.0005 2L13.7704 1.06863C13.0206 -0.356171 10.9807 -0.356221 10.2309 1.06855L12.0007 2ZM10.2309 1.06855L0.231556 20.0681L2.00141 20.9996L12.0007 2L10.2309 1.06855ZM21.9987 21L2.00128 21L2.00128 23L21.9987 23L21.9987 21ZM12.0005 2L21.9986 20.9996L23.7685 20.0682L13.7704 1.06863L12.0005 2Z" fill="var(--element-neutral-color)" mask="url(#a)"/>
|
8
|
+
|
9
|
+
<path d="M7 16.5H8.5L12 20V15.7075L14.3401 18.0476C14.1153 18.1959 13.8764 18.3228 13.6264 18.4264C13.4227 18.5107 13.2133 18.5789 13 18.6306V19.9082C13.3778 19.8384 13.7481 19.7289 14.1048 19.5812C14.5073 19.4145 14.8876 19.2009 15.2381 18.9456L16.5957 20.3032L17.3028 19.5961L15.991 18.2843C15.991 18.2843 15.991 18.2843 15.991 18.2843L15.1068 17.4C15.1067 17.4 15.1068 17.4 15.1068 17.4L14.115 16.4083C14.1149 16.4083 14.115 16.4082 14.115 16.4083L8.11042 10.4037L7.40331 11.1108L8.64624 12.3538L8.5 12.5H7C6.72386 12.5 6.5 12.7239 6.5 13V16C6.5 16.2761 6.72386 16.5 7 16.5Z" fill="var(--element-neutral-color)"/>
|
10
|
+
<path d="M10.0605 10.9395L12 12.879V9L10.0605 10.9395Z" fill="var(--element-neutral-color)"/>
|
11
|
+
<path d="M13 13.879L14.737 15.616C14.9019 15.2855 14.9921 14.9215 14.9995 14.5497C15.0089 14.0778 14.8845 13.6128 14.6407 13.2086C14.3969 12.8044 14.0436 12.4775 13.6217 12.2657C13.4239 12.1663 13.2148 12.0942 13 12.0504V13.879Z" fill="var(--element-neutral-color)"/>
|
12
|
+
<path d="M15.7043 16.5833L16.6141 17.4931C16.7962 17.2125 16.9527 16.9152 17.0813 16.6046C17.3577 15.9373 17.5 15.2222 17.5 14.4999C17.5 13.7776 17.3577 13.0624 17.0813 12.3951C16.8049 11.7278 16.3998 11.1215 15.8891 10.6108C15.3784 10.1001 14.7721 9.69494 14.1048 9.41854C13.7481 9.27081 13.3778 9.1614 13 9.09155V10.3692C13.2133 10.4208 13.4227 10.489 13.6264 10.5734C14.142 10.787 14.6106 11.1 15.0052 11.4947C15.3999 11.8893 15.7129 12.3578 15.9265 12.8735C16.1401 13.3891 16.25 13.9418 16.25 14.4999C16.25 15.058 16.1401 15.6107 15.9265 16.1263C15.8615 16.2832 15.7872 16.4358 15.7043 16.5833Z" fill="var(--element-neutral-color)"/>
|
15
13
|
</svg>
|
16
14
|
`;
|
17
15
|
export {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"icon-14-alarm-silenced-b.js","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-silenced-b.ts"],"sourcesContent":["import {svg} from 'lit';\nexport const svg14AlarmSilencedB = svg`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<
|
1
|
+
{"version":3,"file":"icon-14-alarm-silenced-b.js","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-silenced-b.ts"],"sourcesContent":["import {svg} from 'lit';\nexport const svg14AlarmSilencedB = svg`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<mask id=\"a\" maskUnits=\"userSpaceOnUse\" x=\"-1\" y=\"0\" width=\"26\" height=\"23\" fill=\"black\">\n<rect fill=\"white\" x=\"-1\" width=\"26\" height=\"23\"/>\n<path d=\"M1.11648 20.5339L11.1158 1.53427C11.4907 0.821889 12.5105 0.821913 12.8854 1.53432L22.8835 20.5339C23.234 21.1999 22.7512 22 21.9987 22L2.00128 22C1.24879 22 0.765943 21.1999 1.11648 20.5339Z\"/>\n</mask>\n<path d=\"M11.1158 1.53427L12.0007 2L12.0007 2L11.1158 1.53427ZM1.11648 20.5339L2.00141 20.9996L2.00141 20.9996L1.11648 20.5339ZM2.00128 22L2.00128 23L2.00128 23L2.00128 22ZM21.9987 22L21.9987 21L21.9987 21L21.9987 22ZM22.8835 20.5339L21.9986 20.9996L21.9986 20.9996L22.8835 20.5339ZM12.8854 1.53432L13.7704 1.06863L13.7704 1.06863L12.8854 1.53432ZM21.9987 23C23.5042 23 24.4692 21.3997 23.7685 20.0682L21.9986 20.9996L21.9987 21V23ZM0.231556 20.0681C-0.469216 21.3996 0.495789 23 2.00128 23V21L2.00141 20.9996L0.231556 20.0681ZM12.0007 2L12.0005 2L13.7704 1.06863C13.0206 -0.356171 10.9807 -0.356221 10.2309 1.06855L12.0007 2ZM10.2309 1.06855L0.231556 20.0681L2.00141 20.9996L12.0007 2L10.2309 1.06855ZM21.9987 21L2.00128 21L2.00128 23L21.9987 23L21.9987 21ZM12.0005 2L21.9986 20.9996L23.7685 20.0682L13.7704 1.06863L12.0005 2Z\" fill=\"var(--element-neutral-color)\" mask=\"url(#a)\"/>\n\n<path d=\"M7 16.5H8.5L12 20V15.7075L14.3401 18.0476C14.1153 18.1959 13.8764 18.3228 13.6264 18.4264C13.4227 18.5107 13.2133 18.5789 13 18.6306V19.9082C13.3778 19.8384 13.7481 19.7289 14.1048 19.5812C14.5073 19.4145 14.8876 19.2009 15.2381 18.9456L16.5957 20.3032L17.3028 19.5961L15.991 18.2843C15.991 18.2843 15.991 18.2843 15.991 18.2843L15.1068 17.4C15.1067 17.4 15.1068 17.4 15.1068 17.4L14.115 16.4083C14.1149 16.4083 14.115 16.4082 14.115 16.4083L8.11042 10.4037L7.40331 11.1108L8.64624 12.3538L8.5 12.5H7C6.72386 12.5 6.5 12.7239 6.5 13V16C6.5 16.2761 6.72386 16.5 7 16.5Z\" fill=\"var(--element-neutral-color)\"/>\n<path d=\"M10.0605 10.9395L12 12.879V9L10.0605 10.9395Z\" fill=\"var(--element-neutral-color)\"/>\n<path d=\"M13 13.879L14.737 15.616C14.9019 15.2855 14.9921 14.9215 14.9995 14.5497C15.0089 14.0778 14.8845 13.6128 14.6407 13.2086C14.3969 12.8044 14.0436 12.4775 13.6217 12.2657C13.4239 12.1663 13.2148 12.0942 13 12.0504V13.879Z\" fill=\"var(--element-neutral-color)\"/>\n<path d=\"M15.7043 16.5833L16.6141 17.4931C16.7962 17.2125 16.9527 16.9152 17.0813 16.6046C17.3577 15.9373 17.5 15.2222 17.5 14.4999C17.5 13.7776 17.3577 13.0624 17.0813 12.3951C16.8049 11.7278 16.3998 11.1215 15.8891 10.6108C15.3784 10.1001 14.7721 9.69494 14.1048 9.41854C13.7481 9.27081 13.3778 9.1614 13 9.09155V10.3692C13.2133 10.4208 13.4227 10.489 13.6264 10.5734C14.142 10.787 14.6106 11.1 15.0052 11.4947C15.3999 11.8893 15.7129 12.3578 15.9265 12.8735C16.1401 13.3891 16.25 13.9418 16.25 14.4999C16.25 15.058 16.1401 15.6107 15.9265 16.1263C15.8615 16.2832 15.7872 16.4358 15.7043 16.5833Z\" fill=\"var(--element-neutral-color)\"/>\n</svg>\n`;\n"],"names":[],"mappings":";AACO,MAAM,sBAAsB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { svg } from "lit";
|
2
2
|
const svg14AlarmUnackA = svg`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="
|
4
|
-
<path d="M8.
|
5
|
-
<path d="M14.
|
6
|
-
<path d="
|
3
|
+
<path d="M1.11648 20.5339L11.1158 1.53427C11.4907 0.821889 12.5105 0.821913 12.8854 1.53432L22.8835 20.5339C23.234 21.1999 22.7512 22 21.9987 22L2.00128 22C1.24879 22 0.765943 21.1999 1.11648 20.5339Z" style="fill: var(--alert-alarm-color)"/>
|
4
|
+
<path d="M8.5 16.5H7C6.72386 16.5 6.5 16.2761 6.5 16V13C6.5 12.7239 6.72386 12.5 7 12.5H8.5L12 9V12.879V20L8.5 16.5Z" style="fill: var(--on-alarm-color)"/>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2678 16.2678C13.9186 16.617 13.4767 16.8522 13 16.9495V12.0505C13.4767 12.1478 13.9186 12.3831 14.2678 12.7323C14.7366 13.2011 15 13.837 15 14.5C15 15.1631 14.7366 15.799 14.2678 16.2678Z" style="fill: var(--on-alarm-color)"/>
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 9.09167V10.3693C13.7529 10.5516 14.4484 10.938 15.0052 11.4948C15.8022 12.2919 16.25 13.3729 16.25 14.5C16.25 15.6272 15.8022 16.7082 15.0052 17.5052C14.4484 18.0621 13.7529 18.4484 13 18.6307V19.9084C14.0869 19.7074 15.0965 19.1817 15.8891 18.3891C16.9205 17.3577 17.5 15.9587 17.5 14.5C17.5 13.0413 16.9205 11.6424 15.8891 10.6109C15.0965 9.81836 14.0869 9.29266 13 9.09167Z" style="fill: var(--on-alarm-color)"/>
|
7
7
|
</svg>
|
8
8
|
`;
|
9
9
|
export {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"icon-14-alarm-unack-a.js","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-unack-a.ts"],"sourcesContent":["import {svg} from 'lit';\nexport const svg14AlarmUnackA = svg`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"
|
1
|
+
{"version":3,"file":"icon-14-alarm-unack-a.js","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-unack-a.ts"],"sourcesContent":["import {svg} from 'lit';\nexport const svg14AlarmUnackA = svg`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M1.11648 20.5339L11.1158 1.53427C11.4907 0.821889 12.5105 0.821913 12.8854 1.53432L22.8835 20.5339C23.234 21.1999 22.7512 22 21.9987 22L2.00128 22C1.24879 22 0.765943 21.1999 1.11648 20.5339Z\" style=\"fill: var(--alert-alarm-color)\"/>\n<path d=\"M8.5 16.5H7C6.72386 16.5 6.5 16.2761 6.5 16V13C6.5 12.7239 6.72386 12.5 7 12.5H8.5L12 9V12.879V20L8.5 16.5Z\" style=\"fill: var(--on-alarm-color)\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.2678 16.2678C13.9186 16.617 13.4767 16.8522 13 16.9495V12.0505C13.4767 12.1478 13.9186 12.3831 14.2678 12.7323C14.7366 13.2011 15 13.837 15 14.5C15 15.1631 14.7366 15.799 14.2678 16.2678Z\" style=\"fill: var(--on-alarm-color)\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13 9.09167V10.3693C13.7529 10.5516 14.4484 10.938 15.0052 11.4948C15.8022 12.2919 16.25 13.3729 16.25 14.5C16.25 15.6272 15.8022 16.7082 15.0052 17.5052C14.4484 18.0621 13.7529 18.4484 13 18.6307V19.9084C14.0869 19.7074 15.0965 19.1817 15.8891 18.3891C16.9205 17.3577 17.5 15.9587 17.5 14.5C17.5 13.0413 16.9205 11.6424 15.8891 10.6109C15.0965 9.81836 14.0869 9.29266 13 9.09167Z\" style=\"fill: var(--on-alarm-color)\"/>\n</svg>\n`;\n"],"names":[],"mappings":";AACO,MAAM,mBAAmB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"icon-14-alarm-unack-b.d.ts","sourceRoot":"","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-unack-b.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,gBAAgB,
|
1
|
+
{"version":3,"file":"icon-14-alarm-unack-b.d.ts","sourceRoot":"","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-unack-b.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,gBAAgB,sCAW5B,CAAC"}
|
@@ -1,16 +1,14 @@
|
|
1
1
|
import { svg } from "lit";
|
2
2
|
const svg14AlarmUnackB = svg`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<
|
4
|
-
<
|
5
|
-
<path d="
|
6
|
-
|
7
|
-
<path d="
|
8
|
-
|
9
|
-
<
|
10
|
-
<
|
11
|
-
<
|
12
|
-
</clipPath>
|
13
|
-
</defs>
|
3
|
+
<mask id="a" maskUnits="userSpaceOnUse" x="-1" y="0" width="26" height="23" fill="black">
|
4
|
+
<rect fill="white" x="-1" width="26" height="23"/>
|
5
|
+
<path d="M1.11648 20.5339L11.1158 1.53427C11.4907 0.821889 12.5105 0.821913 12.8854 1.53432L22.8835 20.5339C23.234 21.1999 22.7512 22 21.9987 22L2.00128 22C1.24879 22 0.765943 21.1999 1.11648 20.5339Z"/>
|
6
|
+
</mask>
|
7
|
+
<path d="M11.1158 1.53427L12.0007 2L12.0007 2L11.1158 1.53427ZM1.11648 20.5339L2.00141 20.9996L2.00141 20.9996L1.11648 20.5339ZM2.00128 22L2.00128 23L2.00128 23L2.00128 22ZM21.9987 22L21.9987 21L21.9987 21L21.9987 22ZM22.8835 20.5339L21.9986 20.9996L21.9986 20.9996L22.8835 20.5339ZM12.8854 1.53432L13.7704 1.06863L13.7704 1.06863L12.8854 1.53432ZM21.9987 23C23.5042 23 24.4692 21.3997 23.7685 20.0682L21.9986 20.9996L21.9987 21V23ZM0.231556 20.0681C-0.469216 21.3996 0.495789 23 2.00128 23V21L2.00141 20.9996L0.231556 20.0681ZM12.0007 2L12.0005 2L13.7704 1.06863C13.0206 -0.356171 10.9807 -0.356221 10.2309 1.06855L12.0007 2ZM10.2309 1.06855L0.231556 20.0681L2.00141 20.9996L12.0007 2L10.2309 1.06855ZM21.9987 21L2.00128 21L2.00128 23L21.9987 23L21.9987 21ZM12.0005 2L21.9986 20.9996L23.7685 20.0682L13.7704 1.06863L12.0005 2Z" fill="var(--element-neutral-color)" mask="url(#a)"/>
|
8
|
+
|
9
|
+
<path d="M8.5 16.5H7C6.72386 16.5 6.5 16.2761 6.5 16V13C6.5 12.7239 6.72386 12.5 7 12.5H8.5L12 9V12.879V20L8.5 16.5Z" style="fill: var(--element-neutral-color)"/>
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2678 16.2678C13.9186 16.617 13.4767 16.8522 13 16.9495V12.0505C13.4767 12.1478 13.9186 12.3831 14.2678 12.7323C14.7366 13.2011 15 13.837 15 14.5C15 15.1631 14.7366 15.799 14.2678 16.2678Z" style="fill: var(--element-neutral-color)"/>
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 9.09167V10.3693C13.7529 10.5516 14.4484 10.938 15.0052 11.4948C15.8022 12.2919 16.25 13.3729 16.25 14.5C16.25 15.6272 15.8022 16.7082 15.0052 17.5052C14.4484 18.0621 13.7529 18.4484 13 18.6307V19.9084C14.0869 19.7074 15.0965 19.1817 15.8891 18.3891C16.9205 17.3577 17.5 15.9587 17.5 14.5C17.5 13.0413 16.9205 11.6424 15.8891 10.6109C15.0965 9.81836 14.0869 9.29266 13 9.09167Z" style="fill: var(--element-neutral-color)"/>
|
14
12
|
</svg>
|
15
13
|
`;
|
16
14
|
export {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"icon-14-alarm-unack-b.js","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-unack-b.ts"],"sourcesContent":["import {svg} from 'lit';\nexport const svg14AlarmUnackB = svg`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<
|
1
|
+
{"version":3,"file":"icon-14-alarm-unack-b.js","sources":["../../../../src/components/alert-icon/icons/icon-14-alarm-unack-b.ts"],"sourcesContent":["import {svg} from 'lit';\nexport const svg14AlarmUnackB = svg`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<mask id=\"a\" maskUnits=\"userSpaceOnUse\" x=\"-1\" y=\"0\" width=\"26\" height=\"23\" fill=\"black\">\n<rect fill=\"white\" x=\"-1\" width=\"26\" height=\"23\"/>\n<path d=\"M1.11648 20.5339L11.1158 1.53427C11.4907 0.821889 12.5105 0.821913 12.8854 1.53432L22.8835 20.5339C23.234 21.1999 22.7512 22 21.9987 22L2.00128 22C1.24879 22 0.765943 21.1999 1.11648 20.5339Z\"/>\n</mask>\n<path d=\"M11.1158 1.53427L12.0007 2L12.0007 2L11.1158 1.53427ZM1.11648 20.5339L2.00141 20.9996L2.00141 20.9996L1.11648 20.5339ZM2.00128 22L2.00128 23L2.00128 23L2.00128 22ZM21.9987 22L21.9987 21L21.9987 21L21.9987 22ZM22.8835 20.5339L21.9986 20.9996L21.9986 20.9996L22.8835 20.5339ZM12.8854 1.53432L13.7704 1.06863L13.7704 1.06863L12.8854 1.53432ZM21.9987 23C23.5042 23 24.4692 21.3997 23.7685 20.0682L21.9986 20.9996L21.9987 21V23ZM0.231556 20.0681C-0.469216 21.3996 0.495789 23 2.00128 23V21L2.00141 20.9996L0.231556 20.0681ZM12.0007 2L12.0005 2L13.7704 1.06863C13.0206 -0.356171 10.9807 -0.356221 10.2309 1.06855L12.0007 2ZM10.2309 1.06855L0.231556 20.0681L2.00141 20.9996L12.0007 2L10.2309 1.06855ZM21.9987 21L2.00128 21L2.00128 23L21.9987 23L21.9987 21ZM12.0005 2L21.9986 20.9996L23.7685 20.0682L13.7704 1.06863L12.0005 2Z\" fill=\"var(--element-neutral-color)\" mask=\"url(#a)\"/>\n\n<path d=\"M8.5 16.5H7C6.72386 16.5 6.5 16.2761 6.5 16V13C6.5 12.7239 6.72386 12.5 7 12.5H8.5L12 9V12.879V20L8.5 16.5Z\" style=\"fill: var(--element-neutral-color)\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.2678 16.2678C13.9186 16.617 13.4767 16.8522 13 16.9495V12.0505C13.4767 12.1478 13.9186 12.3831 14.2678 12.7323C14.7366 13.2011 15 13.837 15 14.5C15 15.1631 14.7366 15.799 14.2678 16.2678Z\" style=\"fill: var(--element-neutral-color)\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13 9.09167V10.3693C13.7529 10.5516 14.4484 10.938 15.0052 11.4948C15.8022 12.2919 16.25 13.3729 16.25 14.5C16.25 15.6272 15.8022 16.7082 15.0052 17.5052C14.4484 18.0621 13.7529 18.4484 13 18.6307V19.9084C14.0869 19.7074 15.0965 19.1817 15.8891 18.3891C16.9205 17.3577 17.5 15.9587 17.5 14.5C17.5 13.0413 16.9205 11.6424 15.8891 10.6109C15.0965 9.81836 14.0869 9.29266 13 9.09167Z\" style=\"fill: var(--element-neutral-color)\"/>\n</svg>\n`;\n"],"names":[],"mappings":";AACO,MAAM,mBAAmB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { svg } from "lit";
|
2
2
|
const svg14WarningUnackA = svg`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<
|
4
|
-
<path d="M8.
|
5
|
-
<path d="M14.
|
6
|
-
<path d="
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" style="fill: var(--alert-warning-color)"/>
|
4
|
+
<path d="M8.5 14H6.5C6.22386 14 6 13.7761 6 13.5V10.5C6 10.2239 6.22386 10 6.5 10H8.5L12 6.5V10.379V17.5L8.5 14Z" style="fill: var(--on-warning-active-color)"/>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7678 13.7678C14.4186 14.117 13.9767 14.3522 13.5 14.4495V9.55053C13.9767 9.64784 14.4186 9.88307 14.7678 10.2323C15.2366 10.7011 15.5 11.337 15.5 12C15.5 12.6631 15.2366 13.299 14.7678 13.7678Z" style="fill: var(--on-warning-active-color)"/>
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 6.59167V7.86933C14.2529 8.05163 14.9484 8.43799 15.5052 8.99482C16.3022 9.79185 16.75 10.8729 16.75 12C16.75 13.1272 16.3022 14.2082 15.5052 15.0052C14.9484 15.5621 14.2529 15.9484 13.5 16.1307V17.4084C14.5869 17.2074 15.5965 16.6817 16.3891 15.8891C17.4205 14.8577 18 13.4587 18 12C18 10.5413 17.4205 9.14239 16.3891 8.11094C15.5965 7.31836 14.5869 6.79266 13.5 6.59167Z" style="fill: var(--on-warning-active-color)"/>
|
7
7
|
</svg>
|
8
8
|
`;
|
9
9
|
export {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"icon-14-warning-unack-a.js","sources":["../../../../src/components/alert-icon/icons/icon-14-warning-unack-a.ts"],"sourcesContent":["import {svg} from 'lit';\nexport const svg14WarningUnackA = svg`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<
|
1
|
+
{"version":3,"file":"icon-14-warning-unack-a.js","sources":["../../../../src/components/alert-icon/icons/icon-14-warning-unack-a.ts"],"sourcesContent":["import {svg} from 'lit';\nexport const svg14WarningUnackA = svg`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z\" style=\"fill: var(--alert-warning-color)\"/>\n<path d=\"M8.5 14H6.5C6.22386 14 6 13.7761 6 13.5V10.5C6 10.2239 6.22386 10 6.5 10H8.5L12 6.5V10.379V17.5L8.5 14Z\" style=\"fill: var(--on-warning-active-color)\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.7678 13.7678C14.4186 14.117 13.9767 14.3522 13.5 14.4495V9.55053C13.9767 9.64784 14.4186 9.88307 14.7678 10.2323C15.2366 10.7011 15.5 11.337 15.5 12C15.5 12.6631 15.2366 13.299 14.7678 13.7678Z\" style=\"fill: var(--on-warning-active-color)\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5 6.59167V7.86933C14.2529 8.05163 14.9484 8.43799 15.5052 8.99482C16.3022 9.79185 16.75 10.8729 16.75 12C16.75 13.1272 16.3022 14.2082 15.5052 15.0052C14.9484 15.5621 14.2529 15.9484 13.5 16.1307V17.4084C14.5869 17.2074 15.5965 16.6817 16.3891 15.8891C17.4205 14.8577 18 13.4587 18 12C18 10.5413 17.4205 9.14239 16.3891 8.11094C15.5965 7.31836 14.5869 6.79266 13.5 6.59167Z\" style=\"fill: var(--on-warning-active-color)\"/>\n</svg>\n`;\n"],"names":[],"mappings":";AACO,MAAM,qBAAqB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { svg } from "lit";
|
2
2
|
const svg14WarningUnackB = svg`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
3
|
<circle cx="12" cy="12" r="10.5" style="stroke: var(--element-neutral-color)" />
|
4
|
-
<path d="M8.
|
5
|
-
<path d="M14.
|
6
|
-
<path d="
|
4
|
+
<path d="M8.5 14H6.5C6.22386 14 6 13.7761 6 13.5V10.5C6 10.2239 6.22386 10 6.5 10H8.5L12 6.5V10.379V17.5L8.5 14Z" style="fill: var(--element-neutral-color)"/>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7678 13.7678C14.4186 14.117 13.9767 14.3522 13.5 14.4495V9.55053C13.9767 9.64784 14.4186 9.88307 14.7678 10.2323C15.2366 10.7011 15.5 11.337 15.5 12C15.5 12.6631 15.2366 13.299 14.7678 13.7678Z" style="fill: var(--element-neutral-color)"/>
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5 6.59167V7.86933C14.2529 8.05163 14.9484 8.43799 15.5052 8.99482C16.3022 9.79185 16.75 10.8729 16.75 12C16.75 13.1272 16.3022 14.2082 15.5052 15.0052C14.9484 15.5621 14.2529 15.9484 13.5 16.1307V17.4084C14.5869 17.2074 15.5965 16.6817 16.3891 15.8891C17.4205 14.8577 18 13.4587 18 12C18 10.5413 17.4205 9.14239 16.3891 8.11094C15.5965 7.31836 14.5869 6.79266 13.5 6.59167Z" style="fill: var(--element-neutral-color)"/>
|
7
7
|
</svg>
|
8
8
|
`;
|
9
9
|
export {
|