@volverjs/ui-vue 0.0.10-beta.49 → 0.0.10-beta.50
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/VvCombobox/VvCombobox.es.js +5 -5
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.es.js +3 -3
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
- package/dist/components/VvInputFile/VvInputFile.es.js +2 -2
- package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.es.js +6 -6
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +1 -1
- package/dist/components/VvSelect/VvSelect.es.js +2 -2
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/index.es.js +9 -9
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/package.json +4 -4
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvCombobox/VvCombobox.vue +1 -1
- package/src/components/VvDropdown/VvDropdown.vue +2 -2
- package/src/components/VvInputFile/VvInputFile.vue +1 -1
- package/src/components/VvInputText/VvInputText.vue +3 -3
- package/src/components/VvSelect/VvSelect.vue +1 -1
- package/src/stories/Dropdown/DropdownContextmenuDirective.stories.ts +1 -1
|
@@ -31,7 +31,7 @@ const propsDefaults = useDefaults<typeof VvComboboxProps>(
|
|
|
31
31
|
const inputEl: Ref<HTMLElement | null> = ref(null)
|
|
32
32
|
const inputSearchEl: Ref<HTMLElement | null> = ref(null)
|
|
33
33
|
const wrapperEl: Ref<HTMLElement | null> = ref(null)
|
|
34
|
-
const dropdownEl =
|
|
34
|
+
const dropdownEl = ref<typeof VvDropdown>()
|
|
35
35
|
|
|
36
36
|
// hint slot
|
|
37
37
|
const {
|
|
@@ -50,8 +50,8 @@ const maxHeight = ref('auto')
|
|
|
50
50
|
// template elements
|
|
51
51
|
const localReferenceEl = ref<HTMLElement>()
|
|
52
52
|
const floatingEl: Ref = ref()
|
|
53
|
-
const arrowEl =
|
|
54
|
-
const listEl =
|
|
53
|
+
const arrowEl = ref<HTMLElement>()
|
|
54
|
+
const listEl = ref<HTMLElement>()
|
|
55
55
|
const referenceEl = computed({
|
|
56
56
|
get: () => props.reference ?? localReferenceEl.value,
|
|
57
57
|
set: (newValue) => {
|
|
@@ -217,9 +217,9 @@ watch(
|
|
|
217
217
|
|
|
218
218
|
// template refs
|
|
219
219
|
const inputEl = el as Ref<HTMLInputElement>
|
|
220
|
-
const innerEl =
|
|
221
|
-
const wrapperEl =
|
|
222
|
-
const dropdownEl =
|
|
220
|
+
const innerEl = ref<HTMLInputElement>()
|
|
221
|
+
const wrapperEl = ref<HTMLDivElement>()
|
|
222
|
+
const dropdownEl = ref<typeof VvDropdown>()
|
|
223
223
|
|
|
224
224
|
defineExpose({ $inner: innerEl })
|
|
225
225
|
|
|
@@ -23,7 +23,7 @@ export const Default: Story = {
|
|
|
23
23
|
render: args => ({
|
|
24
24
|
components: { VvDropdown, VvDropdownAction, VvIcon },
|
|
25
25
|
setup() {
|
|
26
|
-
const dropdownEl =
|
|
26
|
+
const dropdownEl = ref<typeof VvDropdown>()
|
|
27
27
|
return { args, dropdownEl }
|
|
28
28
|
},
|
|
29
29
|
template: /* html */ `
|