@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.
- package/CHANGELOG.md +11 -0
- package/__snapshots__/automation-button--damper-badges.png +0 -0
- package/__snapshots__/automation-button--damper-off.png +0 -0
- package/__snapshots__/automation-button--damper-on.png +0 -0
- package/__snapshots__/automation-button--motor-off.png +0 -0
- package/__snapshots__/automation-button--motor-on.png +0 -0
- package/__snapshots__/automation-button--switch-off.png +0 -0
- package/__snapshots__/automation-button--switch-on.png +0 -0
- package/__snapshots__/automation-button--three-way-valve-open-right.png +0 -0
- package/__snapshots__/automation-button--valve-alert.png +0 -0
- package/__snapshots__/automation-button--valve-badges.png +0 -0
- package/__snapshots__/automation-button--valve-closed.png +0 -0
- package/__snapshots__/automation-button--valve-open.png +0 -0
- package/__snapshots__/automation-button--valve-progress.png +0 -0
- package/__snapshots__/automation-readout--usage-with-pipe-bottom.png +0 -0
- package/__snapshots__/automation-readout--usage-with-pipe-left.png +0 -0
- package/__snapshots__/automation-readout--usage-with-pipe-right.png +0 -0
- package/__snapshots__/automation-readout--usage-with-pipe-top.png +0 -0
- package/__snapshots__/automation-tank--compact.png +0 -0
- package/__snapshots__/automation-tank--vertical-with-badges.png +0 -0
- package/__snapshots__/automation-tank--vertical.png +0 -0
- package/__snapshots__/line-corner-line--primary.png +0 -0
- package/__snapshots__/line-cross--primary.png +0 -0
- package/__snapshots__/line-direction--primary.png +0 -0
- package/__snapshots__/line-end-point-line--primary.png +0 -0
- package/__snapshots__/line-example--air.png +0 -0
- package/__snapshots__/line-example--connector.png +0 -0
- package/__snapshots__/line-example--electric.png +0 -0
- package/__snapshots__/line-example--fluid.png +0 -0
- package/__snapshots__/line-horizontal-line--primary.png +0 -0
- package/__snapshots__/line-overlap--primary.png +0 -0
- package/__snapshots__/line-three-way-line--primary.png +0 -0
- package/__snapshots__/line-vertical-line--primary.png +0 -0
- package/custom-elements.json +404 -379
- package/dist/automation/automation-button/automation-button.css.js +75 -0
- package/dist/automation/automation-button/automation-button.css.js.map +1 -1
- package/dist/automation/automation-button/automation-button.d.ts.map +1 -1
- package/dist/automation/automation-button/automation-button.js +46 -44
- package/dist/automation/automation-button/automation-button.js.map +1 -1
- package/dist/automation/automation-tank/automation-tank.css.js +2 -1
- package/dist/automation/automation-tank/automation-tank.css.js.map +1 -1
- package/dist/automation/corner-line/corner-line.d.ts.map +1 -1
- package/dist/automation/corner-line/corner-line.js +6 -0
- package/dist/automation/corner-line/corner-line.js.map +1 -1
- package/dist/automation/direction-line/direction-line.d.ts.map +1 -1
- package/dist/automation/direction-line/direction-line.js +5 -0
- package/dist/automation/direction-line/direction-line.js.map +1 -1
- package/dist/automation/end-point-line/end-point-line.d.ts.map +1 -1
- package/dist/automation/end-point-line/end-point-line.js +23 -0
- package/dist/automation/end-point-line/end-point-line.js.map +1 -1
- package/dist/automation/horizontal-line/horizontal-line.d.ts.map +1 -1
- package/dist/automation/horizontal-line/horizontal-line.js +2 -1
- package/dist/automation/horizontal-line/horizontal-line.js.map +1 -1
- package/dist/automation/line-cross/line-cross.d.ts.map +1 -1
- package/dist/automation/line-cross/line-cross.js +6 -0
- package/dist/automation/line-cross/line-cross.js.map +1 -1
- package/dist/automation/line-overlap/line-overlap.d.ts.map +1 -1
- package/dist/automation/line-overlap/line-overlap.js +6 -0
- package/dist/automation/line-overlap/line-overlap.js.map +1 -1
- package/dist/automation/three-way-line/three-way-line.d.ts.map +1 -1
- package/dist/automation/three-way-line/three-way-line.js +6 -0
- package/dist/automation/three-way-line/three-way-line.js.map +1 -1
- package/dist/automation/vertical-line/vertical-line.d.ts.map +1 -1
- package/dist/automation/vertical-line/vertical-line.js +2 -1
- package/dist/automation/vertical-line/vertical-line.js.map +1 -1
- package/dist/storybook-util.d.ts +2 -1
- package/dist/storybook-util.d.ts.map +1 -1
- package/dist/storybook-util.js +40 -0
- package/dist/storybook-util.js.map +1 -1
- package/package.json +1 -1
- package/src/automation/automation-button/automation-button.css +81 -0
- package/src/automation/automation-button/automation-button.stories.ts +2 -0
- package/src/automation/automation-button/automation-button.ts +61 -59
- package/src/automation/automation-readout/automation-readout.stories.ts +8 -31
- package/src/automation/automation-tank/automation-tank.css +2 -1
- package/src/automation/automation-tank/automation-tank.stories.ts +2 -8
- package/src/automation/corner-line/corner-line.stories.ts +2 -0
- package/src/automation/corner-line/corner-line.ts +6 -0
- package/src/automation/direction-line/direction-line.stories.ts +2 -0
- package/src/automation/direction-line/direction-line.ts +5 -0
- package/src/automation/end-point-line/end-point-line.stories.ts +2 -0
- package/src/automation/end-point-line/end-point-line.ts +23 -0
- package/src/automation/horizontal-line/horizontal-line.stories.ts +2 -0
- package/src/automation/horizontal-line/horizontal-line.ts +2 -1
- package/src/automation/line-cross/line-cross.stories.ts +2 -0
- package/src/automation/line-cross/line-cross.ts +6 -0
- package/src/automation/line-overlap/line-overlap.stories.ts +2 -0
- package/src/automation/line-overlap/line-overlap.ts +6 -0
- package/src/automation/line.stories.ts +4 -4
- package/src/automation/three-way-line/three-way-line.stories.ts +2 -0
- package/src/automation/three-way-line/three-way-line.ts +6 -0
- package/src/automation/vertical-line/vertical-line.stories.ts +2 -36
- package/src/automation/vertical-line/vertical-line.ts +2 -1
- 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
|
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
|