@rijkshuisstijl-community/alert-css 4.0.0 → 4.1.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 +16 -0
- package/README.md +5 -15
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @rijkshuisstijl-community/alert-css
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- de35f24: Update README files
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- c414601: Ensure package is published with provenance
|
|
12
|
+
|
|
13
|
+
## 4.0.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- e9dae7c: Updated broken links in the documentation
|
|
18
|
+
|
|
3
19
|
## 4.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
package/README.md
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
# Omschrijving
|
|
4
4
|
|
|
5
|
-
Dit
|
|
5
|
+
Dit is het Alert CSS-component van het Rijkshuisstijl Community Design System[<https://github.com/nl-design-system/rijkshuisstijl-community/>]. Zie ook de volgende links:
|
|
6
|
+
|
|
7
|
+
- README.md voor alle CSS-componenten
|
|
8
|
+
[<https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/components-css/library-css/README.md>]
|
|
6
9
|
|
|
7
10
|
## Installatie
|
|
8
11
|
|
|
@@ -12,17 +15,4 @@ pnpm add @rijkshuisstijl-community/alert-css
|
|
|
12
15
|
|
|
13
16
|
## Gebruik
|
|
14
17
|
|
|
15
|
-
|
|
16
|
-
import '@rijkshuisstijl-community/alert-css';
|
|
17
|
-
|
|
18
|
-
<section class="rhc-alert" role="alert">
|
|
19
|
-
<div class="rhc-alert__content">
|
|
20
|
-
<h2 class="rhc-alert__heading">Heading</h2>
|
|
21
|
-
<p class="rhc-alert__paragraph">This is an information text.</p>
|
|
22
|
-
</div>
|
|
23
|
-
</section>
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
## Rijkshuisstijl Community Componenten
|
|
27
|
-
|
|
28
|
-
**Direct aan de slag met [CSS](https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/components-css/README.md) | [React](https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/components-react/README.md) | [Web Components](https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/web-components/README.md) | [Twig](https://github.com/nl-design-system/rijkshuisstijl-community/blob/main/packages/components-twig/README.md)**
|
|
18
|
+
Op de Storybook voor alert-css [<https://rijkshuisstijl-community.vercel.app/?path=/docs/css-alert--docs>] staan voorbeelden voor het gebruik van dit component.
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.
|
|
2
|
+
"version": "4.1.0",
|
|
3
3
|
"author": "Community for Rijkshuisstijl-Community Design System",
|
|
4
4
|
"description": "Alert component",
|
|
5
5
|
"license": "EUPL-1.2",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"rijkshuisstijl-community-design-system"
|
|
22
22
|
],
|
|
23
23
|
"publishConfig": {
|
|
24
|
-
"access": "public"
|
|
24
|
+
"access": "public",
|
|
25
|
+
"provenance": true
|
|
25
26
|
},
|
|
26
27
|
"repository": {
|
|
27
28
|
"type": "git+ssh",
|
|
@@ -31,6 +32,6 @@
|
|
|
31
32
|
"scripts": {
|
|
32
33
|
"build": "build-css-package",
|
|
33
34
|
"clean": "rimraf dist",
|
|
34
|
-
"watch": "chokidar 'src/**/*' --follow-symlinks --command 'build-css-package'"
|
|
35
|
+
"watch": "build-css-package && chokidar 'src/**/*' --follow-symlinks --command 'build-css-package'"
|
|
35
36
|
}
|
|
36
37
|
}
|