@dataloop-ai/components 0.20.12 → 0.20.13

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.12",
3
+ "version": "0.20.13",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -591,6 +591,9 @@ const isValidByDataType = (
591
591
 
592
592
  const validateBracketValues = (value: string) => {
593
593
  const bracketless = removeBrackets(value)
594
+ if (isValidString(bracketless)) {
595
+ return bracketless
596
+ }
594
597
  const pureValue = bracketless.split(/,\s*/)
595
598
  if (pureValue.length === 1) {
596
599
  return pureValue[0]