@yoooloo42/joker 1.0.182 → 1.0.183
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/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -23004,7 +23004,7 @@ function box(item) {
|
|
|
23004
23004
|
|
|
23005
23005
|
// inputType: "text"
|
|
23006
23006
|
function text(item) {
|
|
23007
|
-
return {
|
|
23007
|
+
return item.style || {
|
|
23008
23008
|
'white-space': 'pre-line',
|
|
23009
23009
|
// 保留换行符
|
|
23010
23010
|
'border-left': '#ababab solid 1px',
|
|
@@ -23015,7 +23015,7 @@ function text(item) {
|
|
|
23015
23015
|
|
|
23016
23016
|
// inputType: "text0"
|
|
23017
23017
|
function text0(item) {
|
|
23018
|
-
return {
|
|
23018
|
+
return item.style || {
|
|
23019
23019
|
'white-space': 'pre-line',
|
|
23020
23020
|
// 保留换行符
|
|
23021
23021
|
color: 'blue'
|