@oicl/openbridge-webcomponents 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- package/.release-it.json +12 -0
- package/.storybook/main.ts +17 -0
- package/CHANGELOG.md +106 -41
- package/__snapshots__/button-rich-button--with-graphic-info.png +0 -0
- package/custom-elements.json +600 -583
- package/dist/components/button/button.css.js +2 -2
- package/dist/components/navigation-item/navigation-item.css.js +2 -1
- package/dist/components/navigation-item/navigation-item.css.js.map +1 -1
- package/dist/components/notification-button/notification-button.css.js +1 -1
- package/dist/components/rich-button/rich-button.css.js +20 -10
- package/dist/components/rich-button/rich-button.css.js.map +1 -1
- package/dist/components/rich-button/rich-button.d.ts +1 -0
- package/dist/components/rich-button/rich-button.d.ts.map +1 -1
- package/dist/components/rich-button/rich-button.js +5 -0
- package/dist/components/rich-button/rich-button.js.map +1 -1
- package/fix-generated.cjs +1 -0
- package/package.json +3 -2
- package/src/components/rich-button/rich-button.css +15 -2
- package/src/components/rich-button/rich-button.stories.ts +36 -0
- package/src/components/rich-button/rich-button.ts +2 -0
- package/.yarnrc.yml +0 -1
- package/test.svg +0 -3
package/.release-it.json
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
{
|
2
|
+
"github": {
|
3
|
+
"release": true
|
4
|
+
},
|
5
|
+
"git": {
|
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
|
+
},
|
8
|
+
"hooks": {
|
9
|
+
"after:bump": "npm run build && npm install && npx auto-changelog -p && git add ../.. --update",
|
10
|
+
"after:release": "cd ../openbridge-webcomponents-vue && npm publish && cd ../openbridge-webcomponents-react && cd ../openbridge-webcomponents"
|
11
|
+
}
|
12
|
+
}
|
package/.storybook/main.ts
CHANGED
@@ -28,6 +28,23 @@ const config: StorybookConfig = {
|
|
28
28
|
}
|
29
29
|
</style>
|
30
30
|
`,
|
31
|
+
managerHead: (head, options) => `
|
32
|
+
${head}
|
33
|
+
${
|
34
|
+
options.configType !== 'DEVELOPMENT'
|
35
|
+
? `
|
36
|
+
<!-- Google tag (gtag.js) -->
|
37
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BBSXX2P5P8"></script>
|
38
|
+
<script>
|
39
|
+
window.dataLayer = window.dataLayer || [];
|
40
|
+
function gtag(){dataLayer.push(arguments);}
|
41
|
+
gtag('js', new Date());
|
42
|
+
|
43
|
+
gtag('config', 'G-BBSXX2P5P8');
|
44
|
+
</script>`
|
45
|
+
: ''
|
46
|
+
}
|
47
|
+
`,
|
31
48
|
};
|
32
49
|
export default config;
|
33
50
|
|
package/CHANGELOG.md
CHANGED
@@ -1,41 +1,106 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
-
|
10
|
-
-
|
11
|
-
-
|
12
|
-
-
|
13
|
-
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
-
|
20
|
-
-
|
21
|
-
-
|
22
|
-
-
|
23
|
-
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
-
|
28
|
-
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
-
|
41
|
-
-
|
1
|
+
### Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
4
|
+
|
5
|
+
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
6
|
+
|
7
|
+
#### [v0.0.9](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.8...v0.0.9)
|
8
|
+
|
9
|
+
- Chore/release it setup [`#95`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/95)
|
10
|
+
- build/switch to npm [`#94`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/94)
|
11
|
+
- feat[rich-button]: added info mode [`#93`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/93)
|
12
|
+
- chore: add google analytics to storybook [`#92`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/92)
|
13
|
+
- build: add pwa to vue demo [`#90`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/90)
|
14
|
+
|
15
|
+
#### [v0.0.8](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.7...v0.0.8)
|
16
|
+
|
17
|
+
> 8 March 2024
|
18
|
+
|
19
|
+
- chore: bump version [`#83`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/83)
|
20
|
+
- chore: added code of conduct and similar documents [`#81`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/81)
|
21
|
+
- feat: rich button [`#80`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/80)
|
22
|
+
- feat: vendor button [`#79`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/79)
|
23
|
+
- Fix/json config [`#78`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/78)
|
24
|
+
- fix: switch page name in demo [`#77`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/77)
|
25
|
+
- feat: blinking alert button [`#72`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/72)
|
26
|
+
- chore: storybook with all icons [`#76`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/76)
|
27
|
+
- readme.md: correct small typo in font file name [`#75`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/75)
|
28
|
+
- fix: sizing of thruster [`d0fbc73`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/d0fbc737917c43b255c261d3e30ce5062ef061a4)
|
29
|
+
|
30
|
+
#### [v0.0.7](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.5...v0.0.7)
|
31
|
+
|
32
|
+
> 13 March 2024
|
33
|
+
|
34
|
+
- chore: fix react path [`#74`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/74)
|
35
|
+
|
36
|
+
#### [v0.0.5](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/compare/v0.0.3...v0.0.5)
|
37
|
+
|
38
|
+
> 13 March 2024
|
39
|
+
|
40
|
+
- Chore/release v 0.0.5 [`#71`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/71)
|
41
|
+
- chore(main): release openbridge-webcomponents 0.1.0 [`#68`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/68)
|
42
|
+
- chore: build on release only [`#69`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/69)
|
43
|
+
- docs: add readme to subprojects [`#66`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/66)
|
44
|
+
- chore: bootstrap releases for path: packages/openbridge-webcomponents [`#67`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/67)
|
45
|
+
- rename from @tibnor to @oicl [`#61`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/61)
|
46
|
+
- chore: add link to css [`#60`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/60)
|
47
|
+
- fix: padding last button in toggle button [`#54`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/54)
|
48
|
+
- fix: not-lazy loading of company logo [`#52`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/52)
|
49
|
+
- fix: click outside menu closes menu [`#53`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/53)
|
50
|
+
- Fix/minor errors demo [`#51`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/51)
|
51
|
+
- Fix/minor errors demo [`#50`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/50)
|
52
|
+
- chore: google analytics [`#49`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/49)
|
53
|
+
|
54
|
+
#### v0.0.3
|
55
|
+
|
56
|
+
> 13 March 2024
|
57
|
+
|
58
|
+
- release: v0.0.3 [`#48`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/48)
|
59
|
+
- Feat/azimuth thruster [`#33`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/33)
|
60
|
+
- Chore/build css by vite [`#46`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/46)
|
61
|
+
- fix: move search icon to the left [`#45`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/45)
|
62
|
+
- Feat/browser tab color [`#44`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/44)
|
63
|
+
- Update readme.md [`#43`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/43)
|
64
|
+
- feat: add theme color to demo [`#42`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/42)
|
65
|
+
- Feat/responsive topbar [`#41`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/41)
|
66
|
+
- feat: add react wrapper and demo [`#40`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/40)
|
67
|
+
- Doc/readme [`#39`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/39)
|
68
|
+
- feat: slider buttons [`#37`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/37)
|
69
|
+
- fix: minor [`#36`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/36)
|
70
|
+
- Feat/deploy storybook [`#35`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/35)
|
71
|
+
- fix: range [`#34`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/34)
|
72
|
+
- fix: alert list not showing [`#32`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/32)
|
73
|
+
- feat: reactive brightness [`#31`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/31)
|
74
|
+
- fix [`#30`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/30)
|
75
|
+
- fix [`#29`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/29)
|
76
|
+
- Firebase deploy and shared session [`#28`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/28)
|
77
|
+
- Chore/rename classes [`#27`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/27)
|
78
|
+
- Feat/alert handling [`#26`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/26)
|
79
|
+
- feat: add checked button variant [`#25`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/25)
|
80
|
+
- fix: alert url [`#24`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/24)
|
81
|
+
- fix: use web hash history [`#23`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/23)
|
82
|
+
- feat: add alertlist [`#22`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/22)
|
83
|
+
- fix: scrollbar after review [`#21`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/21)
|
84
|
+
- Add table and scrollbar [`#20`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/20)
|
85
|
+
- fix: made alert message text clickable [`#19`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/19)
|
86
|
+
- Feat/ack alarms in demo [`#18`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/18)
|
87
|
+
- 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)
|
89
|
+
- fix: app menu [`#15`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/15)
|
90
|
+
- Fix/refacto [`#14`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/14)
|
91
|
+
- added cem [`#13`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/13)
|
92
|
+
- alert menu full width button [`#11`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/11)
|
93
|
+
- build: added linting [`#12`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/12)
|
94
|
+
- fix: change prefix from ob- to obc- [`#10`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/10)
|
95
|
+
- Fix/reorganize [`#9`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/9)
|
96
|
+
- Feat/prepack [`#8`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/8)
|
97
|
+
- feat: tooltip [`#7`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/7)
|
98
|
+
- Feat/alert menu [`#6`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/6)
|
99
|
+
- Feat/alarm-button [`#5`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/5)
|
100
|
+
- feat: multi color icons [`#4`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/4)
|
101
|
+
- chore: simplifiy style mixin [`#3`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/3)
|
102
|
+
- feat: add breadcrumb and pixel perfect [`#2`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/2)
|
103
|
+
- fix: update icons [`#1`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/pull/1)
|
104
|
+
- made monorepo [`a867bbd`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/a867bbd7770e1feb8d00655c633f2cf0f78ba14d)
|
105
|
+
- fix: build and update custom-elements [`c5f8d94`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/c5f8d94f9dfc2242b1757109abcc425fd9b07a2b)
|
106
|
+
- bruker postcss [`2cc8588`](https://github.com/Ocean-Industries-Concept-Lab/openbridge-webcomponents/commit/2cc858824c5bc213b94ac9e42f9a4da0f5a2140b)
|
Binary file
|