@db-ux/v-core-components 4.4.2 → 4.4.3
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 +10 -0
- package/dist/components/switch/model.d.ts +1 -1
- package/dist/components/switch/switch.vue.d.ts +1 -1
- package/dist/db-ux.es.js +1451 -1433
- package/dist/db-ux.umd.js +1 -1
- package/dist/shared/model.d.ts +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @db-ux/v-core-components
|
|
2
2
|
|
|
3
|
+
## 4.4.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: icon color for DBTag with semantic property set - [see commit 89c4ad7](https://github.com/db-ux-design-system/core-web/commit/89c4ad7274cdadaccc0aedc106d6f2c781e6ce8a)
|
|
8
|
+
|
|
9
|
+
- fix: issue with DBCustomSelect not working properly with customValidity="no-validation" - [see commit 758ecb9](https://github.com/db-ux-design-system/core-web/commit/758ecb90f82a6c3d648728fa92c92474600b9941)
|
|
10
|
+
|
|
11
|
+
- fix: issue with floating-components (tooltip, popover, etc.) inside other absolute or fixed elements - [see commit e6d934f](https://github.com/db-ux-design-system/core-web/commit/e6d934f0c0a4af0b6dd57f81773831a2431b94e1)
|
|
12
|
+
|
|
3
13
|
## 4.4.2
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -9,7 +9,7 @@ export type DBSwitchDefaultProps = {
|
|
|
9
9
|
*/
|
|
10
10
|
variant?: LabelVariantHorizontalType;
|
|
11
11
|
};
|
|
12
|
-
export type DBSwitchProps = GlobalProps & ChangeEventProps<HTMLInputElement> & FocusEventProps<HTMLInputElement> & FormProps & FormCheckProps & FormMessageProps & SizeProps & IconProps & IconTrailingProps & IconLeadingProps & DBSwitchDefaultProps;
|
|
12
|
+
export type DBSwitchProps = GlobalProps & ChangeEventProps<HTMLInputElement> & FocusEventProps<HTMLInputElement> & FormProps & FormCheckProps & Omit<FormMessageProps, 'variant'> & SizeProps & IconProps & IconTrailingProps & IconLeadingProps & DBSwitchDefaultProps;
|
|
13
13
|
export type DBSwitchDefaultState = {
|
|
14
14
|
handleKeyDown: (event: GeneralKeyboardEvent<HTMLInputElement>) => void;
|
|
15
15
|
};
|
|
@@ -19,7 +19,7 @@ declare const __VLS_base: import("vue").DefineComponent<DBSwitchProps, {}, {}, {
|
|
|
19
19
|
onFocus: (event: InteractionEvent<HTMLInputElement>) => void;
|
|
20
20
|
onBlur: (event: InteractionEvent<HTMLInputElement>) => void;
|
|
21
21
|
onChange: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
22
|
-
variant:
|
|
22
|
+
variant: import("../../shared/model").LabelVariantHorizontalType;
|
|
23
23
|
size: import("../../shared/model").SizeType;
|
|
24
24
|
icon: import("@db-ux/core-foundations").IconTypes;
|
|
25
25
|
iconLeading: import("@db-ux/core-foundations").IconTypes;
|