@dataloop-ai/components 0.19.228 → 0.19.229

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/.nvmrc CHANGED
@@ -1 +1 @@
1
- v16.14.2
1
+ v20.11.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataloop-ai/components",
3
- "version": "0.19.228",
3
+ "version": "0.19.229",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -81,7 +81,7 @@
81
81
  "storybook": "^7.0.4",
82
82
  "storybook-addon-themes": "^6.1.0",
83
83
  "typescript": "^4.5.4",
84
- "vite": "^4.2.3",
84
+ "vite": "^4.5.2",
85
85
  "vitest": "^0.29.2",
86
86
  "vitest-canvas-mock": "^0.2.2",
87
87
  "vue": "^3.3.4",
@@ -802,7 +802,9 @@ export default defineComponent({
802
802
  return `<span class="clickable" style="color: ${syntaxHighlightColor.value}">${word}</span>`
803
803
  }
804
804
  if (word.startsWith('<')) {
805
- return `<span>${word.replace('<', '&lt;')}</span>`
805
+ return `<span>${word
806
+ .replace('<', '&lt;')
807
+ .replace('>', '&gt;')}</span>`
806
808
  }
807
809
  return word
808
810
  })