@oicl/openbridge-webcomponents-full-bundle 2.0.0-next.119 → 2.0.0-next.120
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/bundle/openbridge-webcomponents.bundle.js +96 -0
- package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
- package/custom-elements.json +44 -0
- package/dist/components/alert-button/alert-button.d.ts +3 -0
- package/dist/components/alert-button/alert-button.d.ts.map +1 -1
- package/dist/components/alert-button/alert-button.js +12 -0
- package/dist/components/alert-button/alert-button.js.map +1 -1
- package/dist/components/alert-frame/alert-frame.css.js +1 -0
- package/dist/components/alert-frame/alert-frame.css.js.map +1 -1
- package/dist/components/alert-frame/alert-frame.d.ts +5 -0
- package/dist/components/alert-frame/alert-frame.d.ts.map +1 -1
- package/dist/components/alert-frame/alert-frame.js +24 -0
- package/dist/components/alert-frame/alert-frame.js.map +1 -1
- package/dist/components/alert-icon/alert-icon.d.ts +5 -0
- package/dist/components/alert-icon/alert-icon.d.ts.map +1 -1
- package/dist/components/alert-icon/alert-icon.js +26 -0
- package/dist/components/alert-icon/alert-icon.js.map +1 -1
- package/dist/openbridge.css +0 -73
- package/dist/palettes/blinking.d.ts +6 -0
- package/dist/palettes/blinking.d.ts.map +1 -0
- package/dist/palettes/blinking.js +44 -0
- package/dist/palettes/blinking.js.map +1 -0
- package/package.json +1 -1
- package/src/components/alert-button/alert-button.spec.ts +58 -0
- package/src/components/alert-button/alert-button.ts +16 -0
- package/src/components/alert-frame/alert-frame.css +1 -0
- package/src/components/alert-frame/alert-frame.spec.ts +122 -0
- package/src/components/alert-frame/alert-frame.stories.ts +12 -0
- package/src/components/alert-frame/alert-frame.ts +37 -0
- package/src/components/alert-icon/alert-icon.spec.ts +76 -0
- package/src/components/alert-icon/alert-icon.ts +38 -0
- package/src/palettes/blinking.ts +46 -0
- package/src/palettes/manual.css +0 -42
- package/src/palettes/variables.css +0 -36
|
@@ -14740,37 +14740,6 @@
|
|
|
14740
14740
|
initial-value: 0;
|
|
14741
14741
|
}
|
|
14742
14742
|
|
|
14743
|
-
@keyframes warning-blink {
|
|
14744
|
-
0% {
|
|
14745
|
-
--warning-blink-on: 1;
|
|
14746
|
-
--warning-blink-off: 0;
|
|
14747
|
-
--alarm-blink-on: 1;
|
|
14748
|
-
--alarm-blink-off: 0;
|
|
14749
|
-
}
|
|
14750
|
-
|
|
14751
|
-
25% {
|
|
14752
|
-
--alarm-blink-on: 0;
|
|
14753
|
-
--alarm-blink-off: 1;
|
|
14754
|
-
}
|
|
14755
|
-
|
|
14756
|
-
50% {
|
|
14757
|
-
--warning-blink-on: 0;
|
|
14758
|
-
--warning-blink-off: 1;
|
|
14759
|
-
--alarm-blink-on: 1;
|
|
14760
|
-
--alarm-blink-off: 0;
|
|
14761
|
-
}
|
|
14762
|
-
|
|
14763
|
-
75% {
|
|
14764
|
-
--alarm-blink-on: 0;
|
|
14765
|
-
--alarm-blink-off: 1;
|
|
14766
|
-
}
|
|
14767
|
-
|
|
14768
|
-
100% {
|
|
14769
|
-
--warning-blink-on: 1;
|
|
14770
|
-
--warning-blink-off: 0;
|
|
14771
|
-
}
|
|
14772
|
-
}
|
|
14773
|
-
|
|
14774
14743
|
@property --warning-blink-on {
|
|
14775
14744
|
syntax: "<number>";
|
|
14776
14745
|
inherits: true;
|
|
@@ -14782,8 +14751,3 @@
|
|
|
14782
14751
|
inherits: true;
|
|
14783
14752
|
initial-value: 0;
|
|
14784
14753
|
}
|
|
14785
|
-
|
|
14786
|
-
:root {
|
|
14787
|
-
animation: warning-blink 4s infinite;
|
|
14788
|
-
animation-timing-function: steps(1);
|
|
14789
|
-
}
|