@dataloop-ai/components 0.20.132 → 0.20.133

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.133",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -234,6 +234,14 @@ export default defineComponent({
234
234
  type: Boolean,
235
235
  default: false
236
236
  },
237
+ defaultIcon: {
238
+ type: String,
239
+ default: 'icon-dl-stars'
240
+ },
241
+ defaultIconColor: {
242
+ type: String,
243
+ default: 'orange'
244
+ },
237
245
  width: {
238
246
  type: String,
239
247
  default: '250px'
@@ -288,6 +296,8 @@ export default defineComponent({
288
296
  strict,
289
297
  status,
290
298
  disabled,
299
+ defaultIcon,
300
+ defaultIconColor,
291
301
  schema,
292
302
  omitSuggestions,
293
303
  operatorsOverride,
@@ -911,9 +921,6 @@ export default defineComponent({
911
921
  )
912
922
  })
913
923
 
914
- const defaultIcon = 'icon-dl-stars'
915
- const defaultIconColor = 'orange'
916
-
917
924
  const statusIcon = computed(() => {
918
925
  switch (computedStatus.value.type) {
919
926
  case 'success':