@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
|
@@ -17510,7 +17510,6 @@
|
|
|
17510
17510
|
fontSize: useResponsive ? undefined : fontSize,
|
|
17511
17511
|
fontWeight: useResponsive ? responsiveStyles == null ? void 0 : responsiveStyles.fontWeight : 'bold',
|
|
17512
17512
|
letterSpacing: useResponsive ? responsiveStyles == null ? void 0 : responsiveStyles.letterSpacing : undefined,
|
|
17513
|
-
marginBottom: useResponsive ? responsiveStyles == null ? void 0 : responsiveStyles.marginBottom : undefined,
|
|
17514
17513
|
media: useResponsive ? responsiveStyles == null ? void 0 : responsiveStyles.media : undefined
|
|
17515
17514
|
});
|
|
17516
17515
|
// Render highlighted text content (typewriter, slide, or plain)
|
|
@@ -17564,7 +17563,11 @@
|
|
|
17564
17563
|
if (lastIndex < text.length) parts.push(text.substring(lastIndex));
|
|
17565
17564
|
return /*#__PURE__*/React__default.createElement(appStudio.Element, Object.assign({
|
|
17566
17565
|
fontSize: useResponsive ? undefined : fontSize
|
|
17567
|
-
}, containerProps, views == null ? void 0 : views.container, props), parts.map((part, idx) => typeof part === 'string' ?
|
|
17566
|
+
}, containerProps, views == null ? void 0 : views.container, props), parts.map((part, idx) => typeof part === 'string' ? (/*#__PURE__*/React__default.createElement(TextComponent, {
|
|
17567
|
+
key: "text-" + idx,
|
|
17568
|
+
as: "span",
|
|
17569
|
+
display: "inline"
|
|
17570
|
+
}, part)) : (/*#__PURE__*/React__default.createElement(TextComponent, Object.assign({
|
|
17568
17571
|
key: "highlight-" + idx,
|
|
17569
17572
|
as: "span",
|
|
17570
17573
|
display: "inline",
|