@db-ux/v-core-components 4.3.1 → 4.3.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @db-ux/v-core-components
2
2
 
3
+ ## 4.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(input): add missing `accept` attribute for file inputs - [see commit d74707d](https://github.com/db-ux-design-system/core-web/commit/d74707d17045a0efb182856e9a3db192a4d6e2fa)
8
+
9
+ - fix: rendering issue with drawer and sub-navigation when user has `prefers-reduced-motion: reduce` - [see commit cd23ff2](https://github.com/db-ux-design-system/core-web/commit/cd23ff2da5fa8a11121c3195467b4b4c0ab2ebb6)
10
+
11
+ - fix(customselect): select last remaining result with enter key - [see commit cc6a445](https://github.com/db-ux-design-system/core-web/commit/cc6a445c523cc196b9c93584c62772ba9864996f)
12
+
3
13
  ## 4.3.1
4
14
 
5
15
  ### Patch Changes
@@ -48,6 +48,7 @@ declare const __VLS_base: import("vue").DefineComponent<DBInputProps, {}, {}, {}
48
48
  showMessage: boolean | string;
49
49
  dataList: string[] | ValueLabelType[];
50
50
  dataListId: string;
51
+ accept: string;
51
52
  max: number | string;
52
53
  min: number | string;
53
54
  step: number | string;
@@ -14,6 +14,10 @@ export type DBInputDefaultProps = {
14
14
  * Allow selecting multiple files. https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/input/file#multiple
15
15
  */
16
16
  multiple?: boolean | string;
17
+ /**
18
+ * Specifies the types of files that the server accepts (for type="file"). https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#accept
19
+ */
20
+ accept?: string;
17
21
  /**
18
22
  * Maximum value
19
23
  */