@beterdichtbij/component-library 0.73.2 → 0.73.4

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.
@@ -16,6 +16,7 @@ declare const __VLS_component: import('vue').DefineComponent<BDArticleProps, {},
16
16
  text: string;
17
17
  hideBody: boolean;
18
18
  hideFooter: boolean;
19
+ ariaLabel: string;
19
20
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
20
21
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
21
22
  export default _default;
@@ -19,6 +19,7 @@ declare const __VLS_component: import('vue').DefineComponent<BDFormInputProps, {
19
19
  label: string;
20
20
  mask: string;
21
21
  type: string;
22
+ tabindex: number | null;
22
23
  size: import('../../../types/BootstrapSizes').bootstrapSizes;
23
24
  disabled: boolean | null;
24
25
  placeholder: string;
@@ -30,7 +31,6 @@ declare const __VLS_component: import('vue').DefineComponent<BDFormInputProps, {
30
31
  inputClass: string;
31
32
  readonly: boolean | null;
32
33
  autofocus: boolean | null;
33
- tabindex: number | null;
34
34
  invalidFeedbackClass: string;
35
35
  invalidFeedbackText: string;
36
36
  delayTimeMs: number;
@@ -1,7 +1,7 @@
1
1
  import { props as BDDropdownProps } from '../../../interfaces/BDDropDownProps';
2
- declare var __VLS_7: {};
2
+ declare var __VLS_11: {};
3
3
  type __VLS_Slots = {} & {
4
- default?: (props: typeof __VLS_7) => any;
4
+ default?: (props: typeof __VLS_11) => any;
5
5
  };
6
6
  declare const __VLS_component: import('vue').DefineComponent<BDDropdownProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BDDropdownProps> & Readonly<{}>, {
7
7
  text: string;
@@ -1,7 +1,9 @@
1
1
  import { BDLinkProps } from '../../../interfaces/BDLinkProps';
2
- declare var __VLS_8: {};
2
+ declare var __VLS_1: {}, __VLS_10: {};
3
3
  type __VLS_Slots = {} & {
4
- default?: (props: typeof __VLS_8) => any;
4
+ default?: (props: typeof __VLS_1) => any;
5
+ } & {
6
+ default?: (props: typeof __VLS_10) => any;
5
7
  };
6
8
  declare const __VLS_component: import('vue').DefineComponent<BDLinkProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
9
  click: (...args: any[]) => void;
@@ -4,4 +4,5 @@ export interface BDArticleProps extends identifierProp {
4
4
  text?: string;
5
5
  hideBody?: boolean;
6
6
  hideFooter?: boolean;
7
+ ariaLabel?: string;
7
8
  }
@@ -9,6 +9,12 @@
9
9
  float: unset;
10
10
  margin: 0 .5em 0 0;
11
11
 
12
+ &:focus-visible {
13
+ border-color: $blue-dark;
14
+ box-shadow: 0 0 0 0.25rem rgba($blue-dark, 0.25);
15
+ outline: none;
16
+ }
17
+
12
18
  &.form-check-input.is-invalid{
13
19
  border-color: $gray-500;
14
20
  background-color: revert;
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.73.2",
5
+ "version": "0.73.4",
6
6
  "engines": {
7
7
  "node": "24.x",
8
8
  "npm": "11.x"