@db-ux/v-core-components 3.0.0 → 3.0.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/dist/components/custom-select/custom-select.vue.d.ts +1 -1
- package/dist/components/custom-select/model.d.ts +1 -0
- package/dist/db-ux.es.js +1467 -1410
- package/dist/db-ux.umd.js +1 -1
- package/dist/index.d.ts +39 -0
- package/package.json +15 -15
|
@@ -37,7 +37,7 @@ declare const __VLS_component: import("vue").DefineComponent<DBCustomSelectProps
|
|
|
37
37
|
amountText: string;
|
|
38
38
|
ariaListLabel: string;
|
|
39
39
|
clearSelectionText: string;
|
|
40
|
-
dropdownWidth: import("
|
|
40
|
+
dropdownWidth: import("../..").CustomSelectDropdownWidthType | string;
|
|
41
41
|
formFieldWidth: import("../../shared/model").WidthType | string;
|
|
42
42
|
loadingText: string;
|
|
43
43
|
mobileCloseButtonText: string;
|
|
@@ -190,6 +190,7 @@ export type DBCustomSelectDefaultState = {
|
|
|
190
190
|
_internalChangeTimestamp: number;
|
|
191
191
|
_documentClickListenerCallbackId?: string;
|
|
192
192
|
_searchValue?: string;
|
|
193
|
+
_userInteraction?: boolean;
|
|
193
194
|
getNativeSelectValue: () => string;
|
|
194
195
|
getOptionLabel: (option: CustomSelectOptionType) => string;
|
|
195
196
|
getOptionChecked: (value?: string) => boolean;
|