@oicl/openbridge-webcomponents 0.0.9 → 0.0.10
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/.release-it.json +1 -1
- package/.storybook/preview.ts +0 -1
- package/CHANGELOG.md +13 -1
- package/__snapshots__/application-topbar--inactive.png +0 -0
- package/__snapshots__/button-button--raised-disabled.png +0 -0
- package/__snapshots__/input-slider--no-icons.png +0 -0
- package/__snapshots__/input-slider--no-value.png +0 -0
- package/__snapshots__/line-corner-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-vertical-line--complex.png +0 -0
- package/__snapshots__/line-vertical-line--primary.png +0 -0
- package/custom-elements.json +764 -399
- package/dist/automation/corner-line/corner-line.d.ts +22 -0
- package/dist/automation/corner-line/corner-line.d.ts.map +1 -0
- package/dist/automation/corner-line/corner-line.js +161 -0
- package/dist/automation/corner-line/corner-line.js.map +1 -0
- package/dist/automation/horizontal-line/horizontal-line.d.ts +15 -0
- package/dist/automation/horizontal-line/horizontal-line.d.ts.map +1 -0
- package/dist/automation/horizontal-line/horizontal-line.js +110 -0
- package/dist/automation/horizontal-line/horizontal-line.js.map +1 -0
- package/dist/automation/index.d.ts +20 -0
- package/dist/automation/index.d.ts.map +1 -0
- package/dist/automation/index.js +42 -0
- package/dist/automation/index.js.map +1 -0
- package/dist/automation/vertical-line/vertical-line.d.ts +15 -0
- package/dist/automation/vertical-line/vertical-line.d.ts.map +1 -0
- package/dist/automation/vertical-line/vertical-line.js +111 -0
- package/dist/automation/vertical-line/vertical-line.js.map +1 -0
- package/dist/components/brilliance-menu/brilliance-menu.d.ts.map +1 -1
- package/dist/components/brilliance-menu/brilliance-menu.js +2 -0
- package/dist/components/brilliance-menu/brilliance-menu.js.map +1 -1
- package/dist/components/slider/slider.css.js +20 -0
- package/dist/components/slider/slider.css.js.map +1 -1
- package/dist/components/slider/slider.d.ts +8 -0
- package/dist/components/slider/slider.d.ts.map +1 -1
- package/dist/components/slider/slider.js +44 -18
- package/dist/components/slider/slider.js.map +1 -1
- package/dist/components/top-bar/top-bar.css.js +5 -1
- package/dist/components/top-bar/top-bar.css.js.map +1 -1
- package/dist/components/top-bar/top-bar.d.ts.map +1 -1
- package/dist/components/top-bar/top-bar.js +8 -8
- package/dist/components/top-bar/top-bar.js.map +1 -1
- package/package.json +18 -25
- package/src/automation/corner-line/corner-line.stories.ts +31 -0
- package/src/automation/corner-line/corner-line.ts +167 -0
- package/src/automation/horizontal-line/horizontal-line.stories.ts +28 -0
- package/src/automation/horizontal-line/horizontal-line.ts +100 -0
- package/src/automation/index.ts +41 -0
- package/src/automation/line.stories.ts +142 -0
- package/src/automation/vertical-line/vertical-line.stories.ts +71 -0
- package/src/automation/vertical-line/vertical-line.ts +104 -0
- package/src/components/brilliance-menu/brilliance-menu.ts +2 -0
- package/src/components/slider/slider.css +20 -0
- package/src/components/slider/slider.stories.ts +20 -1
- package/src/components/slider/slider.ts +43 -19
- package/src/components/top-bar/top-bar.css +4 -0
- package/src/components/top-bar/top-bar.ts +10 -8
- package/src/palettes/variables.css +64 -43
- package/script/svg-instruments/convert-svg.ts +0 -246
- package/script/svg-instruments/environment.d.ts +0 -7
- package/script/svg-instruments/exports.ts +0 -82
- package/script/svg-instruments/figma-types.ts +0 -804
- package/script/svg-instruments/figmaImport.ts +0 -79
- package/script/svg-instruments/main.ts +0 -109
package/.release-it.json
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs"
|
7
7
|
},
|
8
8
|
"hooks": {
|
9
|
-
"after:bump": "npm run build && npm install && npx auto-changelog -p && git add ../.. --update",
|
9
|
+
"after:bump": "npm run build && npm install && npx auto-changelog -p && npm run format && git add ../.. --update",
|
10
10
|
"after:release": "cd ../openbridge-webcomponents-vue && npm publish && cd ../openbridge-webcomponents-react && cd ../openbridge-webcomponents"
|
11
11
|
}
|
12
12
|
}
|
package/.storybook/preview.ts
CHANGED
package/CHANGELOG.md
CHANGED
@@ -4,8 +4,20 @@ 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.10](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.9...v0.0.10)
|
8
|
+
|
9
|
+
- feat: update colors in css [`#145`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/145)
|
10
|
+
- feat[lines]: add lines (pipe) [`#144`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/144)
|
11
|
+
- feat[slider]: no input slider [`#142`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/142)
|
12
|
+
- fix[topbar]: padding when inactive [`#89`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/issues/89)
|
13
|
+
- demo: alarm blink on condensed top menu [`#98`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/98)
|
14
|
+
- demo: fix background color [`#102`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/102)
|
15
|
+
- demo: minimize alert on no alert [`#101`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/101)
|
16
|
+
|
7
17
|
#### [v0.0.9](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.8...v0.0.9)
|
8
18
|
|
19
|
+
> 14 March 2024
|
20
|
+
|
9
21
|
- Chore/release it setup [`#95`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/95)
|
10
22
|
- build/switch to npm [`#94`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/94)
|
11
23
|
- feat[rich-button]: added info mode [`#93`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/93)
|
@@ -85,7 +97,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
85
97
|
- fix: made alert message text clickable [`#19`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/19)
|
86
98
|
- Feat/ack alarms in demo [`#18`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/18)
|
87
99
|
- Alert message in topbar [`#17`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/17)
|
88
|
-
- Refacto
|
100
|
+
- Refacto [`#16`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/16)
|
89
101
|
- fix: app menu [`#15`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/15)
|
90
102
|
- Fix/refacto [`#14`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/14)
|
91
103
|
- added cem [`#13`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/13)
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|