@dataloop-ai/components 0.19.28 → 0.19.30

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.28",
3
+ "version": "0.19.30",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -3,7 +3,7 @@
3
3
  <dl-virtual-scroll
4
4
  v-slot="{ item }"
5
5
  :scroll-debounce="scrollDebounce"
6
- style="height: 500px"
6
+ style="height: var(--dl-virtual-scroll-height, 500px)"
7
7
  :items="items"
8
8
  :styles="{ gridStyles, gridClass }"
9
9
  >
@@ -1,7 +1,7 @@
1
1
  export interface DlInputSuggestion {
2
2
  suggestion: string
3
- image: string
4
- click: boolean
3
+ image?: string
4
+ click?: boolean
5
5
  }
6
6
 
7
7
  export interface DlInputFile {
@@ -10,6 +10,7 @@
10
10
  class="text-input-area"
11
11
  type="text"
12
12
  clear-button-tooltip
13
+ style="width: 100%"
13
14
  :size="size"
14
15
  :model-value="modelValue"
15
16
  :placeholder="placeholder"
@@ -50,6 +51,7 @@ import { defineComponent, PropType } from 'vue-demi'
50
51
  import { DlButton } from '../../../basic'
51
52
  import { DlIcon } from '../../../essential'
52
53
  import { DlInput } from '../../DlInput'
54
+ import { DlInputSuggestion } from '../../DlInput/types'
53
55
 
54
56
  const SearchSizes = {
55
57
  l: 'l',
@@ -83,8 +85,8 @@ export default defineComponent({
83
85
  },
84
86
  placeholder: { type: String, default: '' },
85
87
  autoSuggestItems: {
86
- type: Array as PropType<string[]>,
87
- default: (): string[] => []
88
+ type: Array as PropType<DlInputSuggestion[]>,
89
+ default: (): DlInputSuggestion[] => []
88
90
  },
89
91
  highlightMatches: { type: Boolean, default: false },
90
92
  dense: { type: Boolean, default: false },
@@ -9,7 +9,7 @@
9
9
  :is-scrollable="isOverflowing"
10
10
  :is-at-end="isAtEnd"
11
11
  :is-at-start="isAtStart"
12
- class="dl-tabs-root"
12
+ :class="{ 'full-width': fullWidth, 'dl-tabs-root': true }"
13
13
  :is-vertical="vertical"
14
14
  @left-arrow-click="handleLeft"
15
15
  @right-arrow-click="handleRight"
@@ -30,15 +30,28 @@
30
30
  />
31
31
  </template>
32
32
  <template #body>
33
- <p
33
+ <div
34
34
  style="
35
- margin: 0;
36
- color: var(--dl-color-medium);
37
- font-size: 10px;
35
+ display: flex;
36
+ align-content: center;
37
+ width: 100%;
38
+ height: 100%;
38
39
  "
39
40
  >
40
- Updated by rotemshaham@dataloop.ai
41
- </p>
41
+ <dl-input
42
+ placeholder="placeholder input readonly"
43
+ readonly
44
+ />
45
+ <p
46
+ style="
47
+ margin: 0;
48
+ color: var(--dl-color-medium);
49
+ font-size: 10px;
50
+ "
51
+ >
52
+ Updated by rotemshaham@dataloop.ai
53
+ </p>
54
+ </div>
42
55
  <p
43
56
  style="
44
57
  margin: 0;
@@ -214,7 +227,7 @@
214
227
 
215
228
  <script lang="ts">
216
229
  import { defineComponent, ref } from 'vue-demi'
217
- import { DlButton, DlDialogBox, DlSwitch } from '../components'
230
+ import { DlButton, DlDialogBox, DlSwitch, DlInput } from '../components'
218
231
  import { DlDialogBoxHeader, DlDialogBoxFooter } from '../components'
219
232
 
220
233
  export default defineComponent({
@@ -224,7 +237,8 @@ export default defineComponent({
224
237
  DlButton,
225
238
  DlDialogBox,
226
239
  DlDialogBoxHeader,
227
- DlDialogBoxFooter
240
+ DlDialogBoxFooter,
241
+ DlInput
228
242
  },
229
243
  setup() {
230
244
  const modalOne = ref<any>(null)
@@ -16,12 +16,30 @@
16
16
  placeholder="Search here"
17
17
  :auto-suggest-items="suggestItems"
18
18
  />
19
+ <dl-search
20
+ v-model="searchValue"
21
+ size="s"
22
+ with-search-button
23
+ highlight-matches
24
+ placeholder="Search here"
25
+ :auto-suggest-items="suggestItems"
26
+ />
27
+ <dl-search
28
+ v-model="searchValue"
29
+ size="s"
30
+ with-search-button
31
+ highlight-matches
32
+ placeholder="Search here"
33
+ :auto-suggest-items="suggestItems"
34
+ style="height: 28px"
35
+ />
19
36
  </div>
20
37
  </template>
21
38
 
22
39
  <script lang="ts">
23
40
  import { defineComponent, ref } from 'vue-demi'
24
41
  import { DlSearch } from '../components'
42
+ import { DlInputSuggestion } from '../components/compound/DlInput/types'
25
43
  export default defineComponent({
26
44
  name: 'DlSearchDemo',
27
45
  components: {
@@ -29,7 +47,12 @@ export default defineComponent({
29
47
  },
30
48
  setup() {
31
49
  const searchValue = ref<string>('')
32
- const suggestItems = ['foo', 'foo bar', 'bar', 'bar foo']
50
+ const suggestItems: DlInputSuggestion[] = [
51
+ { suggestion: 'foo' },
52
+ { suggestion: 'foo bar' },
53
+ { suggestion: 'bar' },
54
+ { suggestion: 'bar foo' }
55
+ ]
33
56
  return { searchValue, suggestItems }
34
57
  }
35
58
  })