@db-ux/v-core-components 3.1.3 → 3.1.15

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.
@@ -194,7 +194,7 @@ export type DBCustomSelectDefaultState = {
194
194
  getNativeSelectValue: () => string;
195
195
  getOptionLabel: (option: CustomSelectOptionType) => string;
196
196
  getOptionChecked: (value?: string) => boolean;
197
- getTagRemoveLabel: (index: number) => string;
197
+ getTagRemoveLabel: (option: CustomSelectOptionType) => string;
198
198
  selectAllEnabled: boolean;
199
199
  searchEnabled: boolean;
200
200
  amountOptions: number;
@@ -1,4 +1,4 @@
1
- import { ChangeEvent, InteractionEvent } from "../../shared/model";
1
+ import { InteractionEvent } from "../../shared/model";
2
2
  import { DBSwitchProps } from "./model";
3
3
  declare var __VLS_1: {};
4
4
  type __VLS_Slots = {} & {
@@ -18,7 +18,6 @@ declare const __VLS_component: import("vue").DefineComponent<DBSwitchProps, {},
18
18
  id: string;
19
19
  onFocus: (event: InteractionEvent<HTMLInputElement>) => void;
20
20
  onBlur: (event: InteractionEvent<HTMLInputElement>) => void;
21
- onChange: (event: ChangeEvent<HTMLInputElement>) => void;
22
21
  size: import("../../shared/model").SizeType;
23
22
  emphasis: import("../../shared/model").EmphasisType;
24
23
  icon: import("@db-ux/core-foundations").IconTypes;