@rijkshuisstijl-community/components-css 5.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 +30 -0
- package/dist/index.css +2 -2
- package/index.scss +1 -0
- package/package.json +2 -1
- package/src/accordion/index.scss +0 -64
- package/src/alert/_mixin.scss +9 -0
- package/src/alert/index.scss +3 -36
- package/src/page-number-navigation/index.scss +2 -0
- package/src/skip-link/index.scss +0 -36
- package/src/skip-link/_mixin.scss +0 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
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
|
+
|
|
3
33
|
## 5.0.0
|
|
4
34
|
|
|
5
35
|
### Major Changes
|