@dataloop-ai/components 0.20.33 → 0.20.35

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.33",
3
+ "version": "0.20.35",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -23,7 +23,7 @@
23
23
  "check-only": "if grep -E -H -r --exclude-dir=.git --exclude-dir=node_modules --exclude=*.json --exclude=*.yml '^(describe|it).only' .; then echo 'Found only in test files' && exit 1; fi"
24
24
  },
25
25
  "dependencies": {
26
- "@dataloop-ai/icons": "^3.0.106",
26
+ "@dataloop-ai/icons": "^3.0.136",
27
27
  "@types/flat": "^5.0.2",
28
28
  "@types/lodash": "^4.14.184",
29
29
  "@types/sortablejs": "^1.15.7",
@@ -74,6 +74,9 @@
74
74
  @blur="debouncedBlur"
75
75
  @keyup.enter="onKeyPress"
76
76
  />
77
+ <dl-tooltip v-if="disabled && disabledTooltip">
78
+ {{ disabledTooltip }}
79
+ </dl-tooltip>
77
80
  <div
78
81
  v-if="hasPrepend"
79
82
  :class="[
@@ -378,6 +381,10 @@ export default defineComponent({
378
381
  debounce: {
379
382
  type: Number,
380
383
  default: 100
384
+ },
385
+ disabledTooltip: {
386
+ type: String,
387
+ default: ''
381
388
  }
382
389
  },
383
390
  emits: ['input', 'focus', 'blur', 'clear', 'enter', 'update:model-value'],