@dataloop-ai/components 0.19.9 → 0.19.10
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/package.json
CHANGED
|
@@ -321,7 +321,14 @@
|
|
|
321
321
|
|
|
322
322
|
<script lang="ts">
|
|
323
323
|
import { debounce, cloneDeep } from 'lodash'
|
|
324
|
-
import {
|
|
324
|
+
import {
|
|
325
|
+
computed,
|
|
326
|
+
defineComponent,
|
|
327
|
+
onMounted,
|
|
328
|
+
PropType,
|
|
329
|
+
ref,
|
|
330
|
+
toRefs
|
|
331
|
+
} from 'vue-demi'
|
|
325
332
|
import { DlInfoErrorMessage, DlTooltip } from '../../shared'
|
|
326
333
|
import { DlListItem } from '../../basic'
|
|
327
334
|
import { DlMenu, DlIcon, DlList, DlEllipsis } from '../../essential'
|
|
@@ -711,6 +718,10 @@ export default defineComponent({
|
|
|
711
718
|
() => !modelValue.value || !String(modelValue.value)?.length
|
|
712
719
|
)
|
|
713
720
|
|
|
721
|
+
onMounted(() => {
|
|
722
|
+
input.value.innerHTML = modelValue.value
|
|
723
|
+
})
|
|
724
|
+
|
|
714
725
|
return {
|
|
715
726
|
suggestItems,
|
|
716
727
|
highlightedIndex,
|
|
@@ -219,7 +219,7 @@ export default defineComponent({
|
|
|
219
219
|
const warningFieldValue = ref<string>('')
|
|
220
220
|
const sizeSFieldValue = ref<string>('')
|
|
221
221
|
const errorFieldValue = ref<string>('')
|
|
222
|
-
const saveInputValue = ref<string>('')
|
|
222
|
+
const saveInputValue = ref<string>('Test vaaalueeee')
|
|
223
223
|
|
|
224
224
|
const files = ref<DlInputFile[]>([])
|
|
225
225
|
const addFile = (e: Event) => {
|