@rijkshuisstijl-community/components-css 3.1.0 → 5.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 +61 -0
- package/dist/index.css +6 -6
- package/index.scss +2 -0
- package/package.json +5 -4
- package/src/accordion/index.scss +0 -7
- package/src/breadcrumb-nav/index.scss +2 -15
- package/src/button/_mixin.scss +0 -6
- package/src/button/index.scss +0 -5
- package/src/card/_mixin.scss +97 -0
- package/src/card/index.scss +57 -0
- package/src/card-as-link/_mixin.scss +19 -9
- package/src/card-as-link/index.scss +1 -1
- package/src/expandable-checkbox-group/_mixin.scss +27 -0
- package/src/expandable-checkbox-group/index.scss +23 -0
- package/src/link/_mixin.scss +9 -32
- package/src/link/index.scss +6 -35
- package/src/link-list/index.scss +0 -13
- package/src/navbar/index.scss +3 -1
- package/src/ordered-list/_mixin.scss +1 -0
- package/src/ordered-list/index.scss +2 -14
- package/src/unordered-list/_mixin.scss +3 -0
- package/src/unordered-list/index.scss +2 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,66 @@
|
|
|
1
1
|
# @rijkshuisstijl-community/components-css
|
|
2
2
|
|
|
3
|
+
## 5.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- cd3758e: Cleaned up deprecated tokens for ordered list to be more in line with the base component used in Utrecht.
|
|
8
|
+
Tokens that wont be applied to ordered list anymore:
|
|
9
|
+
--utrecht-ordered-list-color
|
|
10
|
+
--utrecht-ordered-list-font-weight
|
|
11
|
+
--utrecht-ordered-list-margin-inline-start
|
|
12
|
+
- 022af85: --utrecht-ordered-list-font-size was used to determine the ordered list line height. This has now been changed to --utrecht-ordered-list-line-height.
|
|
13
|
+
- 0057047: chore: remove unused and deprecated Link tokens
|
|
14
|
+
- Use NL link component as cleanly as possible.
|
|
15
|
+
- Do not support NL `disabled` prop/state for Link.
|
|
16
|
+
- Add support for Icon in Link.
|
|
17
|
+
- Replace "utrecht" with "rhc" in markdown documentation for Link.
|
|
18
|
+
|
|
19
|
+
- f89c576: Removed the following tokens for unordered list as these are inherited from the document:
|
|
20
|
+
--utrecht-unordered-list-color
|
|
21
|
+
--utrecht-unordered-list-marker-border-color
|
|
22
|
+
--utrecht-unordered-list-font-weight
|
|
23
|
+
--utrecht-unordered-list-font-family
|
|
24
|
+
|
|
25
|
+
Added the following token to control nested lists
|
|
26
|
+
--rhc-unordered-list-nested-margin-inline-start
|
|
27
|
+
|
|
28
|
+
Nested lists now have the same marker as root lists to have less going on
|
|
29
|
+
|
|
30
|
+
- f24efc1: Clear deprecated tokens for Breadcrumb
|
|
31
|
+
|
|
32
|
+
### Minor Changes
|
|
33
|
+
|
|
34
|
+
- 93b9259: Add new Card component for flexible card display
|
|
35
|
+
|
|
36
|
+
**WHAT**: Added a new `Card` component alongside the existing `CardAsLink` component
|
|
37
|
+
**WHY**: The existing `CardAsLink` was too restrictive for cases where cards don't need to be clickable links
|
|
38
|
+
**HOW**: Import and use the new `Card` component for non-interactive card displays
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- bf73b50: Fix hot reloading voor local development.
|
|
43
|
+
- 6b3a5aa: Remove fixed width from Card As Link component to delegate sizing to layout
|
|
44
|
+
- 39e082e: Added bottom border for nav bar
|
|
45
|
+
- 3d9999c: Update patch & minor dependencies
|
|
46
|
+
- acca7a7: Removed unused deprecated tokens
|
|
47
|
+
|
|
48
|
+
## 4.0.0
|
|
49
|
+
|
|
50
|
+
### Major Changes
|
|
51
|
+
|
|
52
|
+
- 923d857: Alleen NL link gebruiken
|
|
53
|
+
- Zorgen dat RHC link alleen NL link gebruikt
|
|
54
|
+
- NL link's `disabled` prop niet toestaan (altijd op `false` zetten) (angular versie ondersteunde dit toch al niet)
|
|
55
|
+
- Documentatie aan Angular readme.md toegevoegd
|
|
56
|
+
- Prop `inline` toegevoegd, die de standaard `display: inline-flex` terugzet naar `display: inline`
|
|
57
|
+
- Storybookvoorbeeld toegevoegd
|
|
58
|
+
- Ongebruike classname `.nl-link--visted` gefixt naar `.nl-link--visited`
|
|
59
|
+
|
|
60
|
+
### Minor Changes
|
|
61
|
+
|
|
62
|
+
- 08d4354: add expandable checkbox group
|
|
63
|
+
|
|
3
64
|
## 3.1.0
|
|
4
65
|
|
|
5
66
|
### Minor Changes
|