@rijkshuisstijl-community/components-css 4.0.0 → 6.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 +75 -1
- package/dist/index.css +6 -6
- package/index.scss +2 -0
- package/package.json +6 -4
- package/src/accordion/index.scss +0 -71
- package/src/alert/_mixin.scss +9 -0
- package/src/alert/index.scss +3 -36
- 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/link/_mixin.scss +7 -34
- package/src/link/index.scss +4 -37
- 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/page-number-navigation/index.scss +2 -0
- package/src/skip-link/index.scss +0 -36
- package/src/unordered-list/_mixin.scss +3 -0
- package/src/unordered-list/index.scss +2 -20
- package/src/skip-link/_mixin.scss +0 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,85 @@
|
|
|
1
1
|
# @rijkshuisstijl-community/components-css
|
|
2
2
|
|
|
3
|
+
## 6.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 8e508f9: Removed the following tokens:
|
|
8
|
+
Used but unnecessary:
|
|
9
|
+
--utrecht-alert-heading-line-height
|
|
10
|
+
--utrecht-alert-message-line-height
|
|
11
|
+
|
|
12
|
+
Unused:
|
|
13
|
+
--utrecht-alert-heading-font-family
|
|
14
|
+
--utrecht-alert-heading-font-size
|
|
15
|
+
--utrecht-alert-heading-font-weight
|
|
16
|
+
|
|
17
|
+
Reworked the Alert react component to allow users to add content like heading and paragraph in the children instead of duplicating heading props in the alert directly.
|
|
18
|
+
Added icon overwrite support in case you want a different icon on a specific alert type.
|
|
19
|
+
|
|
20
|
+
- 29bfdd5: Removed deprecated tokens for Accordion
|
|
21
|
+
- 965c2a4: Removed deprecated tokens and much custom code for SkipLink
|
|
22
|
+
- Kept only the box-shadow properties and moved those to rhc-\* namespace
|
|
23
|
+
- Removed visibleOnFocus prop and class, assuming this is always the behaviour
|
|
24
|
+
- Also cleaned the storybook, with just a default, rtl, and focused state
|
|
25
|
+
- Added links in storybook
|
|
26
|
+
|
|
27
|
+
## 5.1.0
|
|
28
|
+
|
|
29
|
+
### Minor Changes
|
|
30
|
+
|
|
31
|
+
- 35dcda9: Add PageNumberNavigation component in rhc storybook
|
|
32
|
+
|
|
33
|
+
## 5.0.0
|
|
34
|
+
|
|
35
|
+
### Major Changes
|
|
36
|
+
|
|
37
|
+
- cd3758e: Cleaned up deprecated tokens for ordered list to be more in line with the base component used in Utrecht.
|
|
38
|
+
Tokens that wont be applied to ordered list anymore:
|
|
39
|
+
--utrecht-ordered-list-color
|
|
40
|
+
--utrecht-ordered-list-font-weight
|
|
41
|
+
--utrecht-ordered-list-margin-inline-start
|
|
42
|
+
- 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.
|
|
43
|
+
- 0057047: chore: remove unused and deprecated Link tokens
|
|
44
|
+
- Use NL link component as cleanly as possible.
|
|
45
|
+
- Do not support NL `disabled` prop/state for Link.
|
|
46
|
+
- Add support for Icon in Link.
|
|
47
|
+
- Replace "utrecht" with "rhc" in markdown documentation for Link.
|
|
48
|
+
|
|
49
|
+
- f89c576: Removed the following tokens for unordered list as these are inherited from the document:
|
|
50
|
+
--utrecht-unordered-list-color
|
|
51
|
+
--utrecht-unordered-list-marker-border-color
|
|
52
|
+
--utrecht-unordered-list-font-weight
|
|
53
|
+
--utrecht-unordered-list-font-family
|
|
54
|
+
|
|
55
|
+
Added the following token to control nested lists
|
|
56
|
+
--rhc-unordered-list-nested-margin-inline-start
|
|
57
|
+
|
|
58
|
+
Nested lists now have the same marker as root lists to have less going on
|
|
59
|
+
|
|
60
|
+
- f24efc1: Clear deprecated tokens for Breadcrumb
|
|
61
|
+
|
|
62
|
+
### Minor Changes
|
|
63
|
+
|
|
64
|
+
- 93b9259: Add new Card component for flexible card display
|
|
65
|
+
|
|
66
|
+
**WHAT**: Added a new `Card` component alongside the existing `CardAsLink` component
|
|
67
|
+
**WHY**: The existing `CardAsLink` was too restrictive for cases where cards don't need to be clickable links
|
|
68
|
+
**HOW**: Import and use the new `Card` component for non-interactive card displays
|
|
69
|
+
|
|
70
|
+
### Patch Changes
|
|
71
|
+
|
|
72
|
+
- bf73b50: Fix hot reloading voor local development.
|
|
73
|
+
- 6b3a5aa: Remove fixed width from Card As Link component to delegate sizing to layout
|
|
74
|
+
- 39e082e: Added bottom border for nav bar
|
|
75
|
+
- 3d9999c: Update patch & minor dependencies
|
|
76
|
+
- acca7a7: Removed unused deprecated tokens
|
|
77
|
+
|
|
3
78
|
## 4.0.0
|
|
4
79
|
|
|
5
80
|
### Major Changes
|
|
6
81
|
|
|
7
82
|
- 923d857: Alleen NL link gebruiken
|
|
8
|
-
|
|
9
83
|
- Zorgen dat RHC link alleen NL link gebruikt
|
|
10
84
|
- NL link's `disabled` prop niet toestaan (altijd op `false` zetten) (angular versie ondersteunde dit toch al niet)
|
|
11
85
|
- Documentatie aan Angular readme.md toegevoegd
|