@rijkshuisstijl-community/components-css 7.0.0 → 8.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 +67 -0
- package/dist/index.css +2 -2
- package/index.scss +0 -1
- package/package.json +1 -1
- package/src/blockquote/_mixin.scss +4 -95
- package/src/blockquote/index.scss +0 -24
- package/src/navbar/index.scss +1 -0
- package/src/form-field-error-message/index.scss +0 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,72 @@
|
|
|
1
1
|
# @rijkshuisstijl-community/components-css
|
|
2
2
|
|
|
3
|
+
## 8.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- b012c3e: Cleaned up the blockquote component and separated out the rounded corner from the component.
|
|
8
|
+
The following tokens have been removed:
|
|
9
|
+
- --utrecht-blockquote-border-block-end-width
|
|
10
|
+
- --utrecht-blockquote-border-block-start-width
|
|
11
|
+
- --utrecht-blockquote-border-end-end-radius
|
|
12
|
+
- --utrecht-blockquote-border-end-start-radius
|
|
13
|
+
- --utrecht-blockquote-border-inline-end-width
|
|
14
|
+
- --utrecht-blockquote-border-start-end-radius
|
|
15
|
+
- --utrecht-blockquote-border-start-start-radius
|
|
16
|
+
- --utrecht-blockquote-caption-color
|
|
17
|
+
- --utrecht-blockquote-caption-font-family
|
|
18
|
+
- --utrecht-blockquote-caption-font-size
|
|
19
|
+
- --utrecht-blockquote-caption-font-weight
|
|
20
|
+
- --utrecht-blockquote-caption-line-height
|
|
21
|
+
- --utrecht-blockquote-caption-padding-block-start
|
|
22
|
+
- --utrecht-blockquote-content-font-family
|
|
23
|
+
- --utrecht-blockquote-content-font-weight
|
|
24
|
+
- --utrecht-blockquote-content-line-height
|
|
25
|
+
|
|
26
|
+
Blue border variation:
|
|
27
|
+
- --utrecht-blockquote-blue-corner-border-variation-border-block-end-width
|
|
28
|
+
- --utrecht-blockquote-blue-corner-border-variation-border-color
|
|
29
|
+
- --utrecht-blockquote-blue-corner-border-variation-border-end-end-radius
|
|
30
|
+
- --utrecht-blockquote-blue-corner-border-variation-border-inline-end-width
|
|
31
|
+
|
|
32
|
+
Pink background variation:
|
|
33
|
+
- --utrecht-blockquote-pink-background-variation-background-color
|
|
34
|
+
- --utrecht-blockquote-pink-background-variation-border-end-start-radius
|
|
35
|
+
- --utrecht-blockquote-pink-background-variation-padding
|
|
36
|
+
|
|
37
|
+
Pink corner border variation:
|
|
38
|
+
- --utrecht-blockquote-pink-corner-border-variation-border-block-start-width
|
|
39
|
+
- --utrecht-blockquote-pink-corner-border-variation-border-color
|
|
40
|
+
- --utrecht-blockquote-pink-corner-border-variation-border-inline-start-width
|
|
41
|
+
- --utrecht-blockquote-pink-corner-border-variation-border-start-start-radius
|
|
42
|
+
- --utrecht-blockquote-pink-corner-border-variation-padding
|
|
43
|
+
|
|
44
|
+
Pink left border variation:
|
|
45
|
+
- --utrecht-blockquote-pink-left-border-variation-border-color
|
|
46
|
+
- --utrecht-blockquote-pink-left-border-variation-border-inline-start-width
|
|
47
|
+
- --utrecht-blockquote-pink-left-border-variation-padding-block-end
|
|
48
|
+
- --utrecht-blockquote-pink-left-border-variation-padding-block-start
|
|
49
|
+
- --utrecht-blockquote-pink-left-border-variation-padding-inline-end
|
|
50
|
+
- --utrecht-blockquote-pink-left-border-variation-padding-inline-start
|
|
51
|
+
|
|
52
|
+
The following tokens have been renamed:
|
|
53
|
+
- --utrecht-blockquote-margin-block-end
|
|
54
|
+
- --utrecht-blockquote-margin-block-start
|
|
55
|
+
- --utrecht-blockquote-margin-inline-end
|
|
56
|
+
- --utrecht-blockquote-margin-inline-start
|
|
57
|
+
|
|
58
|
+
to:
|
|
59
|
+
- --rhc-blockquote-margin-block-end
|
|
60
|
+
- --rhc-blockquote-margin-block-start
|
|
61
|
+
- --rhc-blockquote-margin-inline-end
|
|
62
|
+
- --rhc-blockquote-margin-inline-start
|
|
63
|
+
|
|
64
|
+
- aadf35e: Removed the icon from form field error message
|
|
65
|
+
|
|
66
|
+
### Patch Changes
|
|
67
|
+
|
|
68
|
+
- e8dc080: Added a token to control the navbar fontsize and set the default to 20px
|
|
69
|
+
|
|
3
70
|
## 7.0.0
|
|
4
71
|
|
|
5
72
|
### Major Changes
|