@beterdichtbij/component-library 0.71.1 → 0.72.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,7 +1,7 @@
1
1
  import { BDButtonProps } from '../../../interfaces/BDButtonProps';
2
- declare var __VLS_10: {};
2
+ declare var __VLS_11: {};
3
3
  type __VLS_Slots = {} & {
4
- default?: (props: typeof __VLS_10) => any;
4
+ default?: (props: typeof __VLS_11) => any;
5
5
  };
6
6
  declare const __VLS_component: import('vue').DefineComponent<BDButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
7
  click: (...args: any[]) => void;
@@ -9,11 +9,11 @@ interface BDHeaderProps {
9
9
  organizationLogoSrc?: string | undefined;
10
10
  hasLogoutOption?: boolean;
11
11
  }
12
- declare var __VLS_14: {}, __VLS_40: {};
12
+ declare var __VLS_18: {}, __VLS_44: {};
13
13
  type __VLS_Slots = {} & {
14
- 'profile-side'?: (props: typeof __VLS_14) => any;
14
+ 'profile-side'?: (props: typeof __VLS_18) => any;
15
15
  } & {
16
- 'mobile-menu-special-options'?: (props: typeof __VLS_40) => any;
16
+ 'mobile-menu-special-options'?: (props: typeof __VLS_44) => any;
17
17
  };
18
18
  declare const __VLS_component: import('vue').DefineComponent<BDHeaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
19
19
  signout: (...args: any[]) => void;
@@ -41,6 +41,12 @@ $btn-variants:
41
41
  opacity: 0.5;
42
42
  color: $gray-primary;
43
43
  }
44
+
45
+ &:focus-visible, &:focus {
46
+ outline: 3px solid $blue-dark;
47
+ outline-offset: 2px;
48
+ border-radius: 4px;
49
+ }
44
50
  }
45
51
 
46
52
  button {
@@ -1,2 +1,3 @@
1
1
  @import "forms/form-check";
2
2
  @import "forms/form-input";
3
+ @import "forms/form-select";
@@ -40,6 +40,12 @@
40
40
  background-image: initial;
41
41
  color: $gray-primary;
42
42
 
43
+ &:focus,
44
+ &:focus-visible {
45
+ outline: 3px solid $blue-dark;
46
+ outline-offset: 2px;
47
+ }
48
+
43
49
  .icon-close {
44
50
  width: 24px;
45
51
  height: 24px;
@@ -88,7 +94,7 @@
88
94
  height: initial;
89
95
  }
90
96
  }
91
- }
97
+ }
92
98
 
93
99
  .modal-body {
94
100
  border: 0px;
@@ -112,6 +118,7 @@
112
118
 
113
119
  .modal-footer {
114
120
  justify-content: flex-start;
121
+ gap: 5px;
115
122
  // Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
116
123
  border-radius: inherit;
117
124
 
@@ -0,0 +1,6 @@
1
+ .bd-form-select {
2
+ &:focus,
3
+ &:focus-visible {
4
+ border-color: $blue-dark;
5
+ }
6
+ }
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.71.1",
5
+ "version": "0.72.0",
6
6
  "engines": {
7
7
  "node": "24.x",
8
8
  "npm": "11.x"