@lightningtv/core
Advanced tools
Comparing version 2.6.0 to 2.6.1
import { renderer, createShader } from './lightningInit.js'; | ||
import States from './states.js'; | ||
import calculateFlex from './flex.js'; | ||
import { log, isArray, isNumber, isFunc, keyExists, isINode, isElementNode, isElementText, isTextNode, logRenderTree, } from './utils.js'; | ||
import { log, isArray, isNumber, isFunc, keyExists, isINode, isElementNode, isElementText, logRenderTree, } from './utils.js'; | ||
import { Config, isDev } from './config.js'; | ||
@@ -645,7 +645,2 @@ import { assertTruthy } from '@lightningjs/renderer/utils'; | ||
} | ||
else if (isTextNode(c)) { | ||
// Solid Show uses an empty text node as a placeholder | ||
// Vue uses comment nodes for v-if | ||
console.warn('TextNode outside of <Text>: ', c); | ||
} | ||
} | ||
@@ -652,0 +647,0 @@ } |
{ | ||
"name": "@lightningtv/core", | ||
"version": "2.6.0", | ||
"version": "2.6.1", | ||
"description": "Lightning TV Core for Universal Renderers", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -939,6 +939,2 @@ import { renderer, createShader } from './lightningInit.js'; | ||
c.render(); | ||
} else if (isTextNode(c)) { | ||
// Solid Show uses an empty text node as a placeholder | ||
// Vue uses comment nodes for v-if | ||
console.warn('TextNode outside of <Text>: ', c); | ||
} | ||
@@ -945,0 +941,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
231321
3594