@oicl/openbridge-webcomponents 0.0.13 → 0.0.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/__snapshots__/automation-button--damper-badges.png +0 -0
  3. package/__snapshots__/automation-button--damper-off.png +0 -0
  4. package/__snapshots__/automation-button--damper-on.png +0 -0
  5. package/__snapshots__/automation-button--motor-off.png +0 -0
  6. package/__snapshots__/automation-button--motor-on.png +0 -0
  7. package/__snapshots__/automation-button--switch-off.png +0 -0
  8. package/__snapshots__/automation-button--switch-on.png +0 -0
  9. package/__snapshots__/automation-button--three-way-valve-open-right.png +0 -0
  10. package/__snapshots__/automation-button--valve-alert.png +0 -0
  11. package/__snapshots__/automation-button--valve-badges.png +0 -0
  12. package/__snapshots__/automation-button--valve-closed.png +0 -0
  13. package/__snapshots__/automation-button--valve-open.png +0 -0
  14. package/__snapshots__/automation-button--valve-progress.png +0 -0
  15. package/__snapshots__/automation-readout--usage-with-pipe-bottom.png +0 -0
  16. package/__snapshots__/automation-readout--usage-with-pipe-left.png +0 -0
  17. package/__snapshots__/automation-readout--usage-with-pipe-right.png +0 -0
  18. package/__snapshots__/automation-readout--usage-with-pipe-top.png +0 -0
  19. package/__snapshots__/automation-tank--compact.png +0 -0
  20. package/__snapshots__/automation-tank--vertical-with-badges.png +0 -0
  21. package/__snapshots__/automation-tank--vertical.png +0 -0
  22. package/__snapshots__/line-corner-line--primary.png +0 -0
  23. package/__snapshots__/line-cross--primary.png +0 -0
  24. package/__snapshots__/line-direction--primary.png +0 -0
  25. package/__snapshots__/line-end-point-line--primary.png +0 -0
  26. package/__snapshots__/line-example--air.png +0 -0
  27. package/__snapshots__/line-example--connector.png +0 -0
  28. package/__snapshots__/line-example--electric.png +0 -0
  29. package/__snapshots__/line-example--fluid.png +0 -0
  30. package/__snapshots__/line-horizontal-line--primary.png +0 -0
  31. package/__snapshots__/line-overlap--primary.png +0 -0
  32. package/__snapshots__/line-three-way-line--primary.png +0 -0
  33. package/__snapshots__/line-vertical-line--primary.png +0 -0
  34. package/custom-elements.json +404 -379
  35. package/dist/automation/automation-button/automation-button.css.js +75 -0
  36. package/dist/automation/automation-button/automation-button.css.js.map +1 -1
  37. package/dist/automation/automation-button/automation-button.d.ts.map +1 -1
  38. package/dist/automation/automation-button/automation-button.js +46 -44
  39. package/dist/automation/automation-button/automation-button.js.map +1 -1
  40. package/dist/automation/automation-tank/automation-tank.css.js +2 -1
  41. package/dist/automation/automation-tank/automation-tank.css.js.map +1 -1
  42. package/dist/automation/corner-line/corner-line.d.ts.map +1 -1
  43. package/dist/automation/corner-line/corner-line.js +6 -0
  44. package/dist/automation/corner-line/corner-line.js.map +1 -1
  45. package/dist/automation/direction-line/direction-line.d.ts.map +1 -1
  46. package/dist/automation/direction-line/direction-line.js +5 -0
  47. package/dist/automation/direction-line/direction-line.js.map +1 -1
  48. package/dist/automation/end-point-line/end-point-line.d.ts.map +1 -1
  49. package/dist/automation/end-point-line/end-point-line.js +23 -0
  50. package/dist/automation/end-point-line/end-point-line.js.map +1 -1
  51. package/dist/automation/horizontal-line/horizontal-line.d.ts.map +1 -1
  52. package/dist/automation/horizontal-line/horizontal-line.js +2 -1
  53. package/dist/automation/horizontal-line/horizontal-line.js.map +1 -1
  54. package/dist/automation/line-cross/line-cross.d.ts.map +1 -1
  55. package/dist/automation/line-cross/line-cross.js +6 -0
  56. package/dist/automation/line-cross/line-cross.js.map +1 -1
  57. package/dist/automation/line-overlap/line-overlap.d.ts.map +1 -1
  58. package/dist/automation/line-overlap/line-overlap.js +6 -0
  59. package/dist/automation/line-overlap/line-overlap.js.map +1 -1
  60. package/dist/automation/three-way-line/three-way-line.d.ts.map +1 -1
  61. package/dist/automation/three-way-line/three-way-line.js +6 -0
  62. package/dist/automation/three-way-line/three-way-line.js.map +1 -1
  63. package/dist/automation/vertical-line/vertical-line.d.ts.map +1 -1
  64. package/dist/automation/vertical-line/vertical-line.js +2 -1
  65. package/dist/automation/vertical-line/vertical-line.js.map +1 -1
  66. package/dist/storybook-util.d.ts +2 -1
  67. package/dist/storybook-util.d.ts.map +1 -1
  68. package/dist/storybook-util.js +40 -0
  69. package/dist/storybook-util.js.map +1 -1
  70. package/package.json +1 -1
  71. package/src/automation/automation-button/automation-button.css +81 -0
  72. package/src/automation/automation-button/automation-button.stories.ts +2 -0
  73. package/src/automation/automation-button/automation-button.ts +61 -59
  74. package/src/automation/automation-readout/automation-readout.stories.ts +8 -31
  75. package/src/automation/automation-tank/automation-tank.css +2 -1
  76. package/src/automation/automation-tank/automation-tank.stories.ts +2 -8
  77. package/src/automation/corner-line/corner-line.stories.ts +2 -0
  78. package/src/automation/corner-line/corner-line.ts +6 -0
  79. package/src/automation/direction-line/direction-line.stories.ts +2 -0
  80. package/src/automation/direction-line/direction-line.ts +5 -0
  81. package/src/automation/end-point-line/end-point-line.stories.ts +2 -0
  82. package/src/automation/end-point-line/end-point-line.ts +23 -0
  83. package/src/automation/horizontal-line/horizontal-line.stories.ts +2 -0
  84. package/src/automation/horizontal-line/horizontal-line.ts +2 -1
  85. package/src/automation/line-cross/line-cross.stories.ts +2 -0
  86. package/src/automation/line-cross/line-cross.ts +6 -0
  87. package/src/automation/line-overlap/line-overlap.stories.ts +2 -0
  88. package/src/automation/line-overlap/line-overlap.ts +6 -0
  89. package/src/automation/line.stories.ts +4 -4
  90. package/src/automation/three-way-line/three-way-line.stories.ts +2 -0
  91. package/src/automation/three-way-line/three-way-line.ts +6 -0
  92. package/src/automation/vertical-line/vertical-line.stories.ts +2 -36
  93. package/src/automation/vertical-line/vertical-line.ts +2 -1
  94. package/src/storybook-util.ts +41 -1
package/CHANGELOG.md CHANGED
@@ -4,8 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [v0.0.14](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.13...v0.0.14)
8
+
9
+ - demo IAS view [`#189`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/189)
10
+ - v0.0.13 [`#187`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/187)
11
+ - add ias view [`0e080a1`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/0e080a12b39dcc3a6cff88710bd084e12f982881)
12
+ - reposition all automation elements [`e8d3401`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/e8d3401a9b6b2796d9cb51c589fc7f9ce498cfe1)
13
+ - format [`6d3f7b9`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/6d3f7b910882329e56b692cc73173dcb0f26cdab)
14
+
7
15
  #### [v0.0.13](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.12...v0.0.13)
8
16
 
17
+ > 8 May 2024
18
+
9
19
  - feat: tank [`#186`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/186)
10
20
  - feat: add input modal [`#185`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/185)
11
21
  - feat: readout [`#177`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/177)
@@ -14,6 +24,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
14
24
  - Feat: azimuth label [`#162`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/162)
15
25
  - feat: instrument vertical label [`#161`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/161)
16
26
  - Release/0.0.12 [`#160`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/160)
27
+ - Release 0.0.13 [`bc81690`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/bc816906417b57755ad05861044a04a6a4d83d2f)
17
28
  - generated wrappers [`7fd63db`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/7fd63db03611026a7fa559dcedda2dd190343049)
18
29
 
19
30
  #### [v0.0.12](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.10...v0.0.12)
Binary file