Merge tag '2023.12.1' into merge-upstream

This commit is contained in:
riku6460
2023-12-28 03:58:07 +09:00
336 changed files with 1938 additions and 1116 deletions

View File

@@ -65,9 +65,9 @@ const changed = ref(false);
const invalid = ref(false);
const filled = computed(() => v.value !== '' && v.value != null);
const inputEl = ref<HTMLSelectElement | null>(null);
const prefixEl = ref(null);
const suffixEl = ref(null);
const container = ref(null);
const prefixEl = ref<HTMLElement | null>(null);
const suffixEl = ref<HTMLElement | null>(null);
const container = ref<HTMLElement | null>(null);
const height =
props.small ? 33 :
props.large ? 39 :