@app-studio/web 0.9.71 → 0.9.73
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 +5 -2
- 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 +5 -2
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +5 -2
- 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
|
@@ -17549,7 +17549,6 @@ var TitleView = _ref => {
|
|
|
17549
17549
|
fontSize: useResponsive ? undefined : fontSize,
|
|
17550
17550
|
fontWeight: useResponsive ? responsiveStyles == null ? void 0 : responsiveStyles.fontWeight : 'bold',
|
|
17551
17551
|
letterSpacing: useResponsive ? responsiveStyles == null ? void 0 : responsiveStyles.letterSpacing : undefined,
|
|
17552
|
-
marginBottom: useResponsive ? responsiveStyles == null ? void 0 : responsiveStyles.marginBottom : undefined,
|
|
17553
17552
|
media: useResponsive ? responsiveStyles == null ? void 0 : responsiveStyles.media : undefined
|
|
17554
17553
|
});
|
|
17555
17554
|
// Render highlighted text content (typewriter, slide, or plain)
|
|
@@ -17603,7 +17602,11 @@ var TitleView = _ref => {
|
|
|
17603
17602
|
if (lastIndex < text.length) parts.push(text.substring(lastIndex));
|
|
17604
17603
|
return /*#__PURE__*/React__default.createElement(appStudio.Element, Object.assign({
|
|
17605
17604
|
fontSize: useResponsive ? undefined : fontSize
|
|
17606
|
-
}, containerProps, views == null ? void 0 : views.container, props), parts.map((part, idx) => typeof part === 'string' ?
|
|
17605
|
+
}, containerProps, views == null ? void 0 : views.container, props), parts.map((part, idx) => typeof part === 'string' ? (/*#__PURE__*/React__default.createElement(TextComponent, {
|
|
17606
|
+
key: "text-" + idx,
|
|
17607
|
+
as: "span",
|
|
17608
|
+
display: "inline"
|
|
17609
|
+
}, part)) : (/*#__PURE__*/React__default.createElement(TextComponent, Object.assign({
|
|
17607
17610
|
key: "highlight-" + idx,
|
|
17608
17611
|
as: "span",
|
|
17609
17612
|
display: "inline",
|