@dataloop-ai/components 0.19.138 → 0.19.140

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.138",
3
+ "version": "0.19.140",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -157,6 +157,12 @@ export default defineComponent({
157
157
  }
158
158
  ]
159
159
  },
160
+ only_va: [
161
+ {
162
+ 'String Value': '12345',
163
+ 'Numeric Value': 12345
164
+ }
165
+ ],
160
166
  type: [
161
167
  'class',
162
168
  'point',
@@ -741,7 +741,7 @@ const getValueSuggestions = (
741
741
  default:
742
742
  if (typeof type === 'object') {
743
743
  // value aliases: key is the alias, value is the actual value
744
- for (const key in type) suggestion.push(key)
744
+ for (const key in type) suggestion.push(`'${key}'`)
745
745
  }
746
746
  break
747
747
  }