@beterdichtbij/component-library 0.69.0 → 0.70.1

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.
@@ -3,8 +3,4 @@
3
3
  .alert-#{$variant} {
4
4
  @include alert($color, $bg-color);
5
5
  }
6
- }
7
-
8
- .alert {
9
- color: $color-darkblue;
10
6
  }
@@ -17,10 +17,5 @@ article {
17
17
  display:flex;
18
18
  justify-content: space-between;
19
19
  }
20
-
21
- a {
22
- color: #1e66ae;
23
- text-decoration: underline;
24
- }
25
20
  }
26
21
  }
@@ -29,9 +29,6 @@ $btn-variants:
29
29
  .btn-link {
30
30
  text-decoration: none;
31
31
 
32
- // Ensure WCAG AA contrast for the reset link button on white background.
33
- color: #1e66ae;
34
-
35
32
  &:hover {
36
33
  text-decoration: underline;
37
34
  }
@@ -3,7 +3,7 @@
3
3
  border-radius: $border-radius-default;
4
4
 
5
5
  .card-header {
6
- background-color: #1f6cae;
6
+ background-color: $primary;
7
7
  display: flex;
8
8
  align-items: center;
9
9
  justify-content: space-between;
@@ -32,11 +32,26 @@
32
32
  text-align: center;
33
33
  margin-bottom: 0px;
34
34
 
35
+ &.colleague {
36
+ .page-item:not(.active) .page-link {
37
+ color: $color-colleague;
38
+ }
39
+ }
40
+
35
41
  .page-item {
36
42
  background-color: $white;
37
43
  display: inline-block;
38
44
  margin: 4px;
39
45
  vertical-align: top;
46
+
47
+ .page-link {
48
+ color: $blue;
49
+
50
+ svg {
51
+ color: $color-darkblue;
52
+ margin: 0;
53
+ }
54
+ }
40
55
  }
41
56
  }
42
57
  }
@@ -233,10 +233,10 @@
233
233
  }
234
234
 
235
235
  .bd-article.is-unread {
236
- border-right: 4px solid #1e66ae;
236
+ border-right: 4px solid $primary;
237
237
 
238
238
  .bd-date {
239
- color: #1e66ae;
239
+ color: $primary;
240
240
  font-weight: 500;
241
241
  }
242
242
 
@@ -245,7 +245,7 @@
245
245
  width: 20px;
246
246
  height: 20px;
247
247
  border-radius: 12px;
248
- background-color: #1e66ae;
248
+ background-color: $primary;
249
249
  margin-top:6px;
250
250
  }
251
251
  }
@@ -1,7 +1,7 @@
1
1
  // Imports below need to be first!
2
- @import "bootstrap/scss/mixins.scss";
3
- @import "mixins";
4
2
  @import "base";
3
+ @import "bootstrap/scss/bootstrap";
4
+ @import "mixins";
5
5
 
6
6
  @import "active-filters";
7
7
  @import "alert";
@@ -21,20 +21,20 @@
21
21
  @import "conversation-to-text-modal";
22
22
  @import "dropdown";
23
23
  @import "extern";
24
- @import "filter-card";
25
24
  @import "file-upload";
26
25
  @import "file-upload-preview";
26
+ @import "filter-card";
27
27
  @import "form-field";
28
28
  @import "form-multiple-checkbox";
29
29
  @import "forms";
30
30
  @import "header";
31
- @import "loader";
32
31
  @import "icon-luscii-logo";
33
32
  @import "icons";
34
33
  @import "image-attachment-modal";
35
34
  @import "input-group";
36
- @import "message-template-form-modal";
35
+ @import "loader";
37
36
  @import "markdown-editor";
37
+ @import "message-template-form-modal";
38
38
  @import "mobile-menu";
39
39
  @import "modal";
40
40
  @import "notification-button";
@@ -48,5 +48,6 @@
48
48
  @import "templates";
49
49
  @import "toast";
50
50
  @import "user";
51
+ @import "user-information";
51
52
  @import "video-call-toast";
52
53
  @import "zoomslider";
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@beterdichtbij/component-library",
3
3
  "description": "Component library voor BeterDichtbij design system",
4
4
  "private": false,
5
- "version": "0.69.0",
5
+ "version": "0.70.1",
6
6
  "engines": {
7
7
  "node": "24.x",
8
8
  "npm": "11.x"
@@ -25,8 +25,8 @@
25
25
  }
26
26
  },
27
27
  "./dist/bd-component-lib.css": {
28
- "import": "./dist/scss/component-library-styling.scss",
29
- "require": "./dist/scss/component-library-styling.scss"
28
+ "import": "./dist/scss/main.scss",
29
+ "require": "./dist/scss/main.scss"
30
30
  }
31
31
  },
32
32
  "types": "./dist/index.d.ts",
File without changes