@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
package/README.md
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
|
3
3
|
Welcome to the Openbridge Web Components! This readme file provides an overview of the project and its components.
|
4
4
|
|
5
|
+
# π We are preparing to release OpenBridge 6.0 in March 2026 π
|
6
|
+
|
7
|
+
We are currently developing the code in a joint industry project, with funding from industry partners.
|
8
|
+
The code is only available for the partners until the release in March 2026. It is possible to get access to the code in active development by joining the project.
|
9
|
+
|
10
|
+
[π Click here to read more about the project.](https://docs.google.com/document/d/18ytBiUrfQrMYOPPz-hd7pgPjnG8ZBG-zr9xYl5Y2TTs/edit?tab=t.0)
|
11
|
+
|
12
|
+
[π Click here to register your interest in the form. (Note: Registering is not a commitment but will enroll you in our process.)](https://docs.google.com/forms/d/e/1FAIpQLSd2H7bbL_duBTMhHzjw7W52H9XXAiJ9A3sL7PsrfCTW_bNUhw/viewform)
|
13
|
+
|
5
14
|
> **βCautionβ** This repository is currently in early development and may not be stable. Please use with caution.
|
6
15
|
|
7
16
|
# Introduction video
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|