@app-studio/web 0.9.83 → 0.9.84
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/web.cjs.development.js +3 -3
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +3 -3
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +3 -3
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +1 -1
package/dist/web.esm.js
CHANGED
|
@@ -17576,11 +17576,11 @@ var TitleView = _ref => {
|
|
|
17576
17576
|
lastIndex = match.index + match[0].length;
|
|
17577
17577
|
}
|
|
17578
17578
|
if (lastIndex < text.length) parts.push(text.substring(lastIndex));
|
|
17579
|
-
return /*#__PURE__*/React.createElement(Element, Object.assign({}, containerProps, views == null ? void 0 : views.container, props), parts.map((part, idx) => typeof part === 'string' ? (/*#__PURE__*/React.createElement(Text, {
|
|
17579
|
+
return /*#__PURE__*/React.createElement(Element, Object.assign({}, containerProps, views == null ? void 0 : views.container, props), parts.map((part, idx) => typeof part === 'string' ? (/*#__PURE__*/React.createElement(Text, Object.assign({
|
|
17580
17580
|
key: "text-" + idx,
|
|
17581
17581
|
as: "span",
|
|
17582
17582
|
display: "inline"
|
|
17583
|
-
}, renderWithLineBreaks(part))) : (/*#__PURE__*/React.createElement(Text, Object.assign({
|
|
17583
|
+
}, views == null ? void 0 : views.text), renderWithLineBreaks(part))) : (/*#__PURE__*/React.createElement(Text, Object.assign({
|
|
17584
17584
|
key: "highlight-" + idx,
|
|
17585
17585
|
as: "span",
|
|
17586
17586
|
display: "inline",
|
|
@@ -17596,7 +17596,7 @@ var TitleView = _ref => {
|
|
|
17596
17596
|
}, !highlightSlide ? highlightProps : {}, views == null ? void 0 : views.highlight), renderHighlightedContent(text)));
|
|
17597
17597
|
}
|
|
17598
17598
|
// Case 3: Default - no highlighting
|
|
17599
|
-
return /*#__PURE__*/React.createElement(Text, Object.assign({}, containerProps, props, views == null ? void 0 : views.container), renderWithLineBreaks(text));
|
|
17599
|
+
return /*#__PURE__*/React.createElement(Text, Object.assign({}, containerProps, props, views == null ? void 0 : views.container, views == null ? void 0 : views.text), renderWithLineBreaks(text));
|
|
17600
17600
|
};
|
|
17601
17601
|
|
|
17602
17602
|
/**
|