@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.
Files changed (68) hide show
  1. package/.release-it.json +1 -1
  2. package/.storybook/preview.ts +0 -1
  3. package/CHANGELOG.md +13 -1
  4. package/__snapshots__/application-topbar--inactive.png +0 -0
  5. package/__snapshots__/button-button--raised-disabled.png +0 -0
  6. package/__snapshots__/input-slider--no-icons.png +0 -0
  7. package/__snapshots__/input-slider--no-value.png +0 -0
  8. package/__snapshots__/line-corner-line--primary.png +0 -0
  9. package/__snapshots__/line-example--air.png +0 -0
  10. package/__snapshots__/line-example--connector.png +0 -0
  11. package/__snapshots__/line-example--electric.png +0 -0
  12. package/__snapshots__/line-example--fluid.png +0 -0
  13. package/__snapshots__/line-horizontal-line--primary.png +0 -0
  14. package/__snapshots__/line-vertical-line--complex.png +0 -0
  15. package/__snapshots__/line-vertical-line--primary.png +0 -0
  16. package/custom-elements.json +764 -399
  17. package/dist/automation/corner-line/corner-line.d.ts +22 -0
  18. package/dist/automation/corner-line/corner-line.d.ts.map +1 -0
  19. package/dist/automation/corner-line/corner-line.js +161 -0
  20. package/dist/automation/corner-line/corner-line.js.map +1 -0
  21. package/dist/automation/horizontal-line/horizontal-line.d.ts +15 -0
  22. package/dist/automation/horizontal-line/horizontal-line.d.ts.map +1 -0
  23. package/dist/automation/horizontal-line/horizontal-line.js +110 -0
  24. package/dist/automation/horizontal-line/horizontal-line.js.map +1 -0
  25. package/dist/automation/index.d.ts +20 -0
  26. package/dist/automation/index.d.ts.map +1 -0
  27. package/dist/automation/index.js +42 -0
  28. package/dist/automation/index.js.map +1 -0
  29. package/dist/automation/vertical-line/vertical-line.d.ts +15 -0
  30. package/dist/automation/vertical-line/vertical-line.d.ts.map +1 -0
  31. package/dist/automation/vertical-line/vertical-line.js +111 -0
  32. package/dist/automation/vertical-line/vertical-line.js.map +1 -0
  33. package/dist/components/brilliance-menu/brilliance-menu.d.ts.map +1 -1
  34. package/dist/components/brilliance-menu/brilliance-menu.js +2 -0
  35. package/dist/components/brilliance-menu/brilliance-menu.js.map +1 -1
  36. package/dist/components/slider/slider.css.js +20 -0
  37. package/dist/components/slider/slider.css.js.map +1 -1
  38. package/dist/components/slider/slider.d.ts +8 -0
  39. package/dist/components/slider/slider.d.ts.map +1 -1
  40. package/dist/components/slider/slider.js +44 -18
  41. package/dist/components/slider/slider.js.map +1 -1
  42. package/dist/components/top-bar/top-bar.css.js +5 -1
  43. package/dist/components/top-bar/top-bar.css.js.map +1 -1
  44. package/dist/components/top-bar/top-bar.d.ts.map +1 -1
  45. package/dist/components/top-bar/top-bar.js +8 -8
  46. package/dist/components/top-bar/top-bar.js.map +1 -1
  47. package/package.json +18 -25
  48. package/src/automation/corner-line/corner-line.stories.ts +31 -0
  49. package/src/automation/corner-line/corner-line.ts +167 -0
  50. package/src/automation/horizontal-line/horizontal-line.stories.ts +28 -0
  51. package/src/automation/horizontal-line/horizontal-line.ts +100 -0
  52. package/src/automation/index.ts +41 -0
  53. package/src/automation/line.stories.ts +142 -0
  54. package/src/automation/vertical-line/vertical-line.stories.ts +71 -0
  55. package/src/automation/vertical-line/vertical-line.ts +104 -0
  56. package/src/components/brilliance-menu/brilliance-menu.ts +2 -0
  57. package/src/components/slider/slider.css +20 -0
  58. package/src/components/slider/slider.stories.ts +20 -1
  59. package/src/components/slider/slider.ts +43 -19
  60. package/src/components/top-bar/top-bar.css +4 -0
  61. package/src/components/top-bar/top-bar.ts +10 -8
  62. package/src/palettes/variables.css +64 -43
  63. package/script/svg-instruments/convert-svg.ts +0 -246
  64. package/script/svg-instruments/environment.d.ts +0 -7
  65. package/script/svg-instruments/exports.ts +0 -82
  66. package/script/svg-instruments/figma-types.ts +0 -804
  67. package/script/svg-instruments/figmaImport.ts +0 -79
  68. 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
  }
@@ -24,7 +24,6 @@ export const decorators = [
24
24
 
25
25
  const preview: Preview = {
26
26
  parameters: {
27
- actions: {argTypesRegex: '^on[A-Z].*'},
28
27
  controls: {
29
28
  matchers: {
30
29
  color: /(background|color)$/i,
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 [`#16`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/16)
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)