@rijkshuisstijl-community/components-css 1.2.0 → 3.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 +26 -0
- package/dist/index.css +4 -4
- package/index.scss +3 -1
- package/package.json +3 -2
- package/src/alert/index.scss +6 -0
- package/src/{card → card-as-link}/_mixin.scss +29 -29
- package/src/card-as-link/index.scss +121 -0
- package/src/data-badge-button/_mixin.scss +28 -0
- package/src/data-badge-button/index.scss +23 -0
- package/src/data-summary/_mixin.scss +122 -0
- package/src/data-summary/index.scss +53 -0
- package/src/link/_mixin.scss +1 -0
- package/src/card/index.scss +0 -121
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @rijkshuisstijl-community/components-css
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- f4a37da: Alert text color now follows design
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- f8f4bab: - Add DataDadgeButton
|
|
12
|
+
- 790ead0: Rename "Card" component to "Card as Link" component, to match definition of NL Design System "Card as Link" and in preparation of incoming "Card (not as Link)" component.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 9916255: Improve UX by always reserving space for optional action in Data Summary component.
|
|
17
|
+
|
|
18
|
+
## 2.0.0
|
|
19
|
+
|
|
20
|
+
### Major Changes
|
|
21
|
+
|
|
22
|
+
- c7034fd: Add Data Summary CSS component.
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- 280d76c: - Update Link dependency @nl-design-system-candidate/link-css van 1.0.1 naar 2.0.0.
|
|
27
|
+
- Fix alignment van Link children middels `align-items: baseline`.
|
|
28
|
+
|
|
3
29
|
## 1.2.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|