@dataloop-ai/components 0.19.8 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataloop-ai/components",
3
- "version": "0.19.8",
3
+ "version": "0.19.10",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -321,7 +321,14 @@
321
321
 
322
322
  <script lang="ts">
323
323
  import { debounce, cloneDeep } from 'lodash'
324
- import { computed, defineComponent, PropType, ref, toRefs } from 'vue-demi'
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,
@@ -1,4 +1,5 @@
1
1
  export interface DlSelectOption {
2
2
  label: string
3
3
  value: any
4
+ children?: DlSelectOption[]
4
5
  }
@@ -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) => {