@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.
- package/dist/bd-component-lib.cjs.js +3 -3
- package/dist/bd-component-lib.es.js +2589 -2576
- package/dist/bd-component-lib.umd.js +3 -3
- package/dist/components/actions/BDButton/BDButton.vue.d.ts +2 -2
- package/dist/components/layout/BDHeader/BDHeader.vue.d.ts +3 -3
- package/dist/scss/_button.scss +6 -0
- package/dist/scss/_forms.scss +1 -0
- package/dist/scss/_modal.scss +8 -1
- package/dist/scss/forms/_form-select.scss +6 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BDButtonProps } from '../../../interfaces/BDButtonProps';
|
|
2
|
-
declare var
|
|
2
|
+
declare var __VLS_11: {};
|
|
3
3
|
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof
|
|
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
|
|
12
|
+
declare var __VLS_18: {}, __VLS_44: {};
|
|
13
13
|
type __VLS_Slots = {} & {
|
|
14
|
-
'profile-side'?: (props: typeof
|
|
14
|
+
'profile-side'?: (props: typeof __VLS_18) => any;
|
|
15
15
|
} & {
|
|
16
|
-
'mobile-menu-special-options'?: (props: typeof
|
|
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;
|
package/dist/scss/_button.scss
CHANGED
package/dist/scss/_forms.scss
CHANGED
package/dist/scss/_modal.scss
CHANGED
|
@@ -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
|
|