@rijkshuisstijl-community/components-css 3.0.0 → 4.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 +27 -0
- package/README.md +10 -0
- package/dist/index.css +3 -3
- package/index.scss +1 -0
- package/package.json +2 -2
- package/src/expandable-checkbox-group/_mixin.scss +27 -0
- package/src/expandable-checkbox-group/index.scss +23 -0
- package/src/link/_mixin.scss +4 -0
- package/src/link/index.scss +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @rijkshuisstijl-community/components-css
|
|
2
2
|
|
|
3
|
+
## 4.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 923d857: Alleen NL link gebruiken
|
|
8
|
+
|
|
9
|
+
- Zorgen dat RHC link alleen NL link gebruikt
|
|
10
|
+
- NL link's `disabled` prop niet toestaan (altijd op `false` zetten) (angular versie ondersteunde dit toch al niet)
|
|
11
|
+
- Documentatie aan Angular readme.md toegevoegd
|
|
12
|
+
- Prop `inline` toegevoegd, die de standaard `display: inline-flex` terugzet naar `display: inline`
|
|
13
|
+
- Storybookvoorbeeld toegevoegd
|
|
14
|
+
- Ongebruike classname `.nl-link--visted` gefixt naar `.nl-link--visited`
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 08d4354: add expandable checkbox group
|
|
19
|
+
|
|
20
|
+
## 3.1.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- a1502a5: Update Utrecht dependencies
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 9e83410: Added "how to switch theme" instructions in the README.
|
|
29
|
+
|
|
3
30
|
## 3.0.0
|
|
4
31
|
|
|
5
32
|
### Major Changes
|
package/README.md
CHANGED
|
@@ -35,4 +35,14 @@ 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
|
+
#### Thema wijzigen
|
|
39
|
+
|
|
40
|
+
Om een ander thema toe te passen moet je het importeren van `import '@rijkshuisstijl-community/design-tokens/dist/{thema}/index.css';` en de class aanpassen naar het desbetreffende thema.
|
|
41
|
+
Zie het volgende voorbeeld om het uitvoerend-groen thema toe te passen:
|
|
42
|
+
|
|
43
|
+
```scss
|
|
44
|
+
@import '@rijkshuisstijl-community/design-tokens/dist/uitvoerend-groen/index.css'; // design tokens importeren
|
|
45
|
+
@import '@rijkshuisstijl-community/components-css/dist/index.css'; // css importeren
|
|
46
|
+
```
|
|
47
|
+
|
|
38
48
|
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.
|