@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.
Files changed (34) hide show
  1. package/bundle/openbridge-webcomponents.bundle.js +96 -0
  2. package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
  3. package/custom-elements.json +44 -0
  4. package/dist/components/alert-button/alert-button.d.ts +3 -0
  5. package/dist/components/alert-button/alert-button.d.ts.map +1 -1
  6. package/dist/components/alert-button/alert-button.js +12 -0
  7. package/dist/components/alert-button/alert-button.js.map +1 -1
  8. package/dist/components/alert-frame/alert-frame.css.js +1 -0
  9. package/dist/components/alert-frame/alert-frame.css.js.map +1 -1
  10. package/dist/components/alert-frame/alert-frame.d.ts +5 -0
  11. package/dist/components/alert-frame/alert-frame.d.ts.map +1 -1
  12. package/dist/components/alert-frame/alert-frame.js +24 -0
  13. package/dist/components/alert-frame/alert-frame.js.map +1 -1
  14. package/dist/components/alert-icon/alert-icon.d.ts +5 -0
  15. package/dist/components/alert-icon/alert-icon.d.ts.map +1 -1
  16. package/dist/components/alert-icon/alert-icon.js +26 -0
  17. package/dist/components/alert-icon/alert-icon.js.map +1 -1
  18. package/dist/openbridge.css +0 -73
  19. package/dist/palettes/blinking.d.ts +6 -0
  20. package/dist/palettes/blinking.d.ts.map +1 -0
  21. package/dist/palettes/blinking.js +44 -0
  22. package/dist/palettes/blinking.js.map +1 -0
  23. package/package.json +1 -1
  24. package/src/components/alert-button/alert-button.spec.ts +58 -0
  25. package/src/components/alert-button/alert-button.ts +16 -0
  26. package/src/components/alert-frame/alert-frame.css +1 -0
  27. package/src/components/alert-frame/alert-frame.spec.ts +122 -0
  28. package/src/components/alert-frame/alert-frame.stories.ts +12 -0
  29. package/src/components/alert-frame/alert-frame.ts +37 -0
  30. package/src/components/alert-icon/alert-icon.spec.ts +76 -0
  31. package/src/components/alert-icon/alert-icon.ts +38 -0
  32. package/src/palettes/blinking.ts +46 -0
  33. package/src/palettes/manual.css +0 -42
  34. 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
- }