@dataloop-ai/components 0.20.132 → 0.20.134

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.20.132",
3
+ "version": "0.20.134",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -63,7 +63,6 @@
63
63
  >
64
64
  <div style="padding: 10px">
65
65
  <div class="tooltip-title">
66
- <dl-icon :icon="defaultIcon" />
67
66
  Schema Based Search
68
67
  </div>
69
68
  <div class="tooltip-subtitle">
@@ -234,6 +233,14 @@ export default defineComponent({
234
233
  type: Boolean,
235
234
  default: false
236
235
  },
236
+ defaultIcon: {
237
+ type: String,
238
+ default: 'icon-dl-stars'
239
+ },
240
+ defaultIconColor: {
241
+ type: String,
242
+ default: 'orange'
243
+ },
237
244
  width: {
238
245
  type: String,
239
246
  default: '250px'
@@ -288,6 +295,8 @@ export default defineComponent({
288
295
  strict,
289
296
  status,
290
297
  disabled,
298
+ defaultIcon,
299
+ defaultIconColor,
291
300
  schema,
292
301
  omitSuggestions,
293
302
  operatorsOverride,
@@ -911,9 +920,6 @@ export default defineComponent({
911
920
  )
912
921
  })
913
922
 
914
- const defaultIcon = 'icon-dl-stars'
915
- const defaultIconColor = 'orange'
916
-
917
923
  const statusIcon = computed(() => {
918
924
  switch (computedStatus.value.type) {
919
925
  case 'success':