dso-toolkit 79.0.0-pre.3 → 79.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 +15 -14
- package/dist/dso.css +153 -93
- package/dist/dso.css.map +1 -1
- package/dist/dso.min.css +1 -1
- package/dist/dso.min.css.map +1 -1
- package/package.json +3 -3
- package/src/components/breadcrumbs/breadcrumbs.scss +1 -1
- package/src/components/breadcrumbs/readme.md +1 -5
- package/src/components/document-header/document-header.scss +73 -82
- package/src/components/document-header/document-header.variables.scss +3 -0
- package/src/components/document-header/readme.md +8 -1
- package/src/components/insert/insert.variables.scss +1 -1
- package/src/components/label/label.mixins.scss +10 -0
- package/src/components/label/label.variables.scss +1 -1
- package/src/dso.scss +2 -0
- package/src/toolkit-version.scss +3 -0
- package/src/utilities.scss +12 -14
|
@@ -1 +1 @@
|
|
|
1
|
-
$box-shadow: 0 1px 3px 1px rgb(0 0 0 /
|
|
1
|
+
$box-shadow: 0 1px 3px 1px rgb(0 0 0 / 50%);
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
@use "../../variables/typography";
|
|
4
4
|
@use "label.variables" as label-variables;
|
|
5
5
|
@use "../../global/mixins/set-colors.mixin" as set-colors;
|
|
6
|
+
@use "../delete";
|
|
7
|
+
@use "../insert";
|
|
6
8
|
|
|
7
9
|
@mixin root() {
|
|
8
10
|
border-radius: 4px;
|
|
@@ -87,6 +89,14 @@
|
|
|
87
89
|
}
|
|
88
90
|
}
|
|
89
91
|
|
|
92
|
+
&.dso-label-toegevoegd {
|
|
93
|
+
@include insert.root();
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
&.dso-label-verwijderd {
|
|
97
|
+
@include delete.root();
|
|
98
|
+
}
|
|
99
|
+
|
|
90
100
|
&.dso-compact {
|
|
91
101
|
padding-block: 0;
|
|
92
102
|
padding-inline: units.$u1;
|
|
@@ -28,7 +28,7 @@ $attention-bg-color: colors.$mauve;
|
|
|
28
28
|
$attention-color: colors.$wit;
|
|
29
29
|
|
|
30
30
|
$filter-bg-color: colors.$lichtblauw-20;
|
|
31
|
-
$filter-border-color: colors.$
|
|
31
|
+
$filter-border-color: colors.$lichtblauw;
|
|
32
32
|
|
|
33
33
|
$symbol-block-size: 20px;
|
|
34
34
|
$symbol-aspect-ratio: math.div(30, 25);
|
package/src/dso.scss
CHANGED
package/src/utilities.scss
CHANGED
|
@@ -60,20 +60,18 @@
|
|
|
60
60
|
outline: units.$focus-outline-width solid colors.$focus-outline-color;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
**
|
|
76
|
-
*/
|
|
63
|
+
/// Genereert een `transition` met vaste easing en optionele duur en delay per property.
|
|
64
|
+
///
|
|
65
|
+
/// @param {ArgList} $transitions...
|
|
66
|
+
/// - "property": gebruikt standaard duur (260ms) en delay (0ms)
|
|
67
|
+
/// - ("property", duur): eigen duur, geen delay
|
|
68
|
+
/// - ("property", duur, delay): eigen duur én delay
|
|
69
|
+
///
|
|
70
|
+
/// @example
|
|
71
|
+
/// @include transition(opacity, ("transform", 300ms), ("color", 500ms, 200ms));
|
|
72
|
+
///
|
|
73
|
+
/// @output
|
|
74
|
+
/// transition: [property] [duration] cubic-bezier(0.4, 0, 0.2, 1) [delay];
|
|
77
75
|
@mixin transition($transitions...) {
|
|
78
76
|
$result: ();
|
|
79
77
|
|