@rijkshuisstijl-community/components-css 10.0.0 → 12.0.0
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/CHANGELOG.md +36 -0
- package/dist/index.css +9 -6
- package/index.scss +5 -0
- package/package.json +10 -8
- package/src/action-group/index.scss +4 -11
- package/src/language-navigation/_mixin.scss +81 -0
- package/src/language-navigation/index.scss +33 -0
- package/src/link-button/_mixin.scss +1 -0
- package/src/link-button/index.scss +6 -0
- package/src/listbox/_mixin.scss +1 -0
- package/src/listbox/index.scss +6 -0
- package/src/navigation-list/_mixin.scss +18 -16
- package/vite.config.js +30 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @rijkshuisstijl-community/components-css
|
|
2
2
|
|
|
3
|
+
## 12.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 0cac53b: removed unused button group class.
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- f0a77eb: Added the following components:
|
|
12
|
+
- link button (button styled as a link) (utrecht)
|
|
13
|
+
- listbox (utrecht)
|
|
14
|
+
- language navigation
|
|
15
|
+
|
|
16
|
+
Tokens have been added for each of these components.
|
|
17
|
+
The listbox and link button are reexported from utrecht with tokens styling from RHC.
|
|
18
|
+
The Language Navigation is a new component built in the community
|
|
19
|
+
|
|
20
|
+
## 11.0.0
|
|
21
|
+
|
|
22
|
+
### Major Changes
|
|
23
|
+
|
|
24
|
+
- 378973a: Added licenses to Blockquote source code
|
|
25
|
+
- 251c67c: Added licensing information to Action group source files
|
|
26
|
+
- 13de6a7: Voor de Navigation List component zijn de design tokens gewijzigd en verwerkt in de CSS:
|
|
27
|
+
- `rhc.navigation-list.icon.background-color` hernoemd naar `rhc.navigation-list.item.icon-start.background-color`.
|
|
28
|
+
- `rhc.navigation-list.icon.border-radius` hernoemd naar `rhc.navigation-list.item.icon-start.border-radius`.
|
|
29
|
+
- `rhc.navigation-list.icon.color` hernoemd naar `rhc.navigation-list.item.icon-start.color`.
|
|
30
|
+
- `rhc.navigation-list.item.content.font-size` hernoemd naar `rhc.navigation-list.item.description.font-size`.
|
|
31
|
+
- `rhc.navigation-list.item.heading.color` hernoemd naar `rhc.navigation-list.item.label.color`.
|
|
32
|
+
- `rhc.navigation-list.item.icon.padding-block` hernoemd naar `rhc.navigation-list.item.icon-start.padding-block`.
|
|
33
|
+
- `rhc.navigation-list.item.icon.padding-inline` hernoemd naar `rhc.navigation-list.item.icon-start.padding-inline`.
|
|
34
|
+
- `rhc.navigation-list.item.icon.size` hernoemd naar `rhc.navigation-list.item.icon-start.size`.
|
|
35
|
+
- `rhc.navigation-list.item.color` is verwijderd en `rhc.navigation-list.item.description.color` is toegevoegd zodat de color netjes op de description word ingesteld en niet elders overschreven word.
|
|
36
|
+
- `rhc.navigation-list.item.description.line-height` is toegevoegd omdat we over het algemeen line-height instelbaar maken waar font-size instelbaar is.
|
|
37
|
+
- `rhc.navigation-list.item.icon-end.color` is toegevoegd zodat icon color van end-icon niet meer via common token is gezet.
|
|
38
|
+
|
|
3
39
|
## 10.0.0
|
|
4
40
|
|
|
5
41
|
### Major Changes
|