@rijkshuisstijl-community/components-css 1.0.3 → 1.2.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 +24 -0
- package/README.md +2 -2
- package/dist/index.css +7 -3
- package/package.json +8 -8
- package/src/card/_mixin.scss +4 -0
- package/src/card/index.scss +5 -0
- package/src/footer/index.scss +2 -1
- package/src/link/index.scss +4 -0
- package/src/link-list/index.scss +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @rijkshuisstijl-community/components-css
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 093b285: Added LinkList and LinkListLink components in Angular
|
|
8
|
+
- 893b3e3: Consider styling for Paragraph component in Footer.
|
|
9
|
+
- 8395a93: Update dependencies.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 99dd213: Package Updates
|
|
14
|
+
|
|
15
|
+
## 1.1.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- 292ceb3: Adjusted DOM order of `card` component to improve screen reader accessibility per WCAG guidelines, placing headings before images. Visual layout preserved using flex order.
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- b505c9b: Update README to fix broken relative links to files in the repository.
|
|
24
|
+
- 9eeb7b7: Dependency updates (week 12)
|
|
25
|
+
- 5cf3cd0: Fixed the alignment of the pre-footer element to the center.
|
|
26
|
+
|
|
3
27
|
## 1.0.3
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ _Dit project wordt **niet** gesteund door het Ministerie van Algemene Zaken._
|
|
|
7
7
|
**Het toepassen van design-elementen uit dit project is strikt verboden voor organisaties die geen deel uitmaken van de
|
|
8
8
|
centrale overheid van Nederland.**
|
|
9
9
|
|
|
10
|
-
Deze package is onderdeel van het [Rijkshuisstijl Community](
|
|
10
|
+
Deze package is onderdeel van het [Rijkshuisstijl Community](https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/README.md) project.
|
|
11
11
|
|
|
12
12
|
## Aan de slag met CSS-componenten
|
|
13
13
|
|
|
@@ -35,4 +35,4 @@ pakket, en omring het deel van je applicatie waar je het thema wilt toepassen me
|
|
|
35
35
|
@import '@rijkshuisstijl-community/components-css/dist/index.css'; // css importeren
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
Bekijk de [packages/font/README.md](packages/font/README.md) voor de meerdere manieren om de lettertypen te installeren voor jouw project.
|
|
38
|
+
Bekijk de [packages/font/README.md](https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/font/README.md) voor de meerdere manieren om de lettertypen te installeren voor jouw project.
|