dso-toolkit 79.0.0-pre.4 → 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.
@@ -1 +1 @@
1
- $box-shadow: 0 1px 3px 1px rgb(0 0 0 / 25%);
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.$donkerblauw;
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
@@ -1,3 +1,5 @@
1
+ @use "toolkit-version";
2
+
1
3
  // Global
2
4
  @use "global/font-faces";
3
5
  @use "global/custom-properties";
@@ -0,0 +1,3 @@
1
+ :root {
2
+ --dso-toolkit-version: DSO_TOOLKIT_VERSION_REPLACEMENT_TOKEN;
3
+ }
@@ -60,20 +60,18 @@
60
60
  outline: units.$focus-outline-width solid colors.$focus-outline-color;
61
61
  }
62
62
 
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];
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