@oicl/openbridge-webcomponents 0.0.9 → 0.0.12

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 +53 -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 +628 -263
  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,13 +4,65 @@ 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.12](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.10...v0.0.12)
8
+
9
+ - react-demo: show usage of slots [`#158`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/158)
10
+ - Demo: responsive alert list [`#147`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/147)
11
+ - Release 0.0.10 [`#146`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/146)
12
+ - updated generated files [`1f2bdea`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/1f2bdea4f0a5c632b71a8c8b9aedef5adbc0f61f)
13
+
14
+ #### [v0.0.10](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.9...v0.0.10)
15
+
16
+ > 5 April 2024
17
+
18
+ - feat: update colors [`#145`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/145)
19
+ - feat: add lines [`#144`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/144)
20
+ - feat[slider]: no input slider [`#142`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/142)
21
+ - build(deps-dev): bump vite from 4.5.3 to 5.2.7 in /packages/openbridge-webcomponents [`#141`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/141)
22
+ - build(deps-dev): bump @vue/tsconfig from 0.4.0 to 0.5.1 in /packages/vue-demo [`#130`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/130)
23
+ - build(deps-dev): bump tsx from 3.14.0 to 4.7.1 in /packages/openbridge-webcomponents [`#129`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/129)
24
+ - build(deps-dev): bump @vue/eslint-config-prettier from 8.0.0 to 9.0.0 in /packages/vue-demo [`#132`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/132)
25
+ - build(deps-dev): bump @vue/test-utils from 2.4.4 to 2.4.5 [`#137`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/137)
26
+ - build(deps-dev): bump @storybook/addon-interactions from 8.0.0 to 8.0.5 [`#140`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/140)
27
+ - build(deps-dev): bump eslint-plugin-vue from 9.22.0 to 9.24.0 [`#133`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/133)
28
+ - build(deps-dev): bump vue-tsc from 1.8.27 to 2.0.7 [`#134`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/134)
29
+ - build(deps-dev): bump express from 4.18.3 to 4.19.2 [`#138`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/138)
30
+ - build(deps-dev): bump @types/react-dom from 18.2.21 to 18.2.23 [`#139`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/139)
31
+ - chore: add playwright test to vue demo [`#127`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/127)
32
+ - chore: remove depricated svg export [`#126`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/126)
33
+ - build(deps-dev): update deps [`#125`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/125)
34
+ - build(deps-dev): bump @storybook/addon-essentials from 7.6.17 to 8.0.1 [`#120`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/120)
35
+ - chore: upgrade storybook [`#124`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/124)
36
+ - build(deps-dev): bump vite from 4.5.2 to 5.1.6 in /packages/vue-demo [`#117`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/117)
37
+ - build(deps-dev): bump @types/node from 18.19.22 to 20.11.29 [`#122`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/122)
38
+ - build(deps-dev): bump @vitejs/plugin-vue from 3.2.0 to 5.0.4 [`#121`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/121)
39
+ - build(deps-dev): bump @typescript-eslint/parser in /packages/react-demo [`#116`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/116)
40
+ - build(deps-dev): bump typescript in /packages/vue-demo [`#110`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/110)
41
+ - build(deps-dev): bump postcss-mixins from 9.0.4 to 10.0.0 [`#119`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/119)
42
+ - build(deps-dev): bump @typescript-eslint/eslint-plugin [`#123`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/123)
43
+ - Create dependabot.yml [`#106`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/106)
44
+ - build(deps-dev): bump the npm_and_yarn group across 1 directory with 1 update [`#105`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/105)
45
+ - build(deps-dev): bump the npm_and_yarn group across 1 directory with 1 update [`#104`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/104)
46
+ - build(deps-dev): bump follow-redirects from 1.15.5 to 1.15.6 [`#103`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/103)
47
+ - demo: fix background color wrapper [`#102`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/102)
48
+ - demo: minimize alert on no alert [`#101`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/101)
49
+ - fix[topbar]: inactive padding [`#99`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/99)
50
+ - fix: alarm blink on condensed top menu [`#98`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/98)
51
+ - format [`#97`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/97)
52
+ - Release 0.0.9 [`#96`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/96)
53
+ - fix[topbar]: inactive padding (#99) [`#89`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/issues/89)
54
+ - Release 0.0.10 [`1ce788b`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/1ce788bfb21e644cda5998985ba6a0b2db251833)
55
+
7
56
  #### [v0.0.9](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.8...v0.0.9)
8
57
 
58
+ > 14 March 2024
59
+
9
60
  - Chore/release it setup [`#95`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/95)
10
61
  - build/switch to npm [`#94`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/94)
11
62
  - feat[rich-button]: added info mode [`#93`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/93)
12
63
  - chore: add google analytics to storybook [`#92`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/92)
13
64
  - build: add pwa to vue demo [`#90`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/90)
65
+ - Release 0.0.9 [`d9439ae`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/d9439ae7e12e618fa8eff9f93f5310f3800af8eb)
14
66
 
15
67
  #### [v0.0.8](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.7...v0.0.8)
16
68
 
@@ -85,7 +137,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
85
137
  - fix: made alert message text clickable [`#19`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/19)
86
138
  - Feat/ack alarms in demo [`#18`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/18)
87
139
  - 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)
140
+ - Refacto [`#16`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/16)
89
141
  - fix: app menu [`#15`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/15)
90
142
  - Fix/refacto [`#14`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/14)
91
143
  - added cem [`#13`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/13)