@twick/video-editor 0.15.23 → 0.15.25
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.js +12 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -6865,8 +6865,6 @@ const DEFAULT_CAPTION_PROPS = {
|
|
|
6865
6865
|
fill: "#FFFFFF",
|
|
6866
6866
|
/** Font weight */
|
|
6867
6867
|
fontWeight: 600,
|
|
6868
|
-
/** Text stroke color */
|
|
6869
|
-
stroke: "#000000",
|
|
6870
6868
|
/** Stroke line width */
|
|
6871
6869
|
lineWidth: 0.2,
|
|
6872
6870
|
/** Shadow color */
|
|
@@ -7594,7 +7592,7 @@ const addTextElement = ({
|
|
|
7594
7592
|
splitByGrapheme: false,
|
|
7595
7593
|
textAlign: ((_q = element.props) == null ? void 0 : _q.textAlign) || "center",
|
|
7596
7594
|
stroke: ((_r2 = element.props) == null ? void 0 : _r2.stroke) || DEFAULT_TEXT_PROPS.stroke,
|
|
7597
|
-
strokeWidth: ((_s2 = element.props) == null ? void 0 : _s2.lineWidth) || DEFAULT_TEXT_PROPS.lineWidth,
|
|
7595
|
+
strokeWidth: (((_s2 = element.props) == null ? void 0 : _s2.lineWidth) || DEFAULT_TEXT_PROPS.lineWidth) * 0.025,
|
|
7598
7596
|
...backgroundColor && { backgroundColor },
|
|
7599
7597
|
shadow: ((_t2 = element.props) == null ? void 0 : _t2.shadowColor) ? new Ds({
|
|
7600
7598
|
offsetX: ((_v = (_u = element.props) == null ? void 0 : _u.shadowOffset) == null ? void 0 : _v.length) && ((_x = (_w = element.props) == null ? void 0 : _w.shadowOffset) == null ? void 0 : _x.length) > 1 ? element.props.shadowOffset[0] / 2 : 1,
|
|
@@ -7666,19 +7664,23 @@ const addCaptionElement = ({
|
|
|
7666
7664
|
}
|
|
7667
7665
|
const elementColors = (_g = element.props) == null ? void 0 : _g.colors;
|
|
7668
7666
|
const resolvedFill = (applyToAll ? captionTextColor : ((_h2 = element.props) == null ? void 0 : _h2.fill) ?? (elementColors == null ? void 0 : elementColors.text) ?? captionTextColor) ?? DEFAULT_CAPTION_PROPS.fill;
|
|
7669
|
-
const
|
|
7667
|
+
const trackColors = captionProps == null ? void 0 : captionProps.colors;
|
|
7668
|
+
const trackStroke = trackColors == null ? void 0 : trackColors.outlineColor;
|
|
7669
|
+
const elementStroke = (elementColors == null ? void 0 : elementColors.outlineColor) ?? ((_i2 = element.props) == null ? void 0 : _i2.stroke);
|
|
7670
|
+
const resolvedStroke = (applyToAll ? trackStroke ?? elementStroke : elementStroke ?? trackStroke) ?? void 0;
|
|
7671
|
+
const caption = new Uo(((_j = element.props) == null ? void 0 : _j.text) || element.t || "", {
|
|
7670
7672
|
left: x2,
|
|
7671
7673
|
top: y2,
|
|
7672
7674
|
originX: "center",
|
|
7673
7675
|
originY: "center",
|
|
7674
|
-
angle: ((
|
|
7676
|
+
angle: ((_k = element.props) == null ? void 0 : _k.rotation) || 0,
|
|
7675
7677
|
fontSize: Math.round(
|
|
7676
|
-
((applyToAll ? (
|
|
7678
|
+
((applyToAll ? (_l = captionProps == null ? void 0 : captionProps.font) == null ? void 0 : _l.size : ((_n2 = (_m = element.props) == null ? void 0 : _m.font) == null ? void 0 : _n2.size) ?? ((_o2 = captionProps == null ? void 0 : captionProps.font) == null ? void 0 : _o2.size)) ?? DEFAULT_CAPTION_PROPS.size) * canvasMetadata.scaleX
|
|
7677
7679
|
),
|
|
7678
|
-
fontFamily: (applyToAll ? (
|
|
7680
|
+
fontFamily: (applyToAll ? (_p = captionProps == null ? void 0 : captionProps.font) == null ? void 0 : _p.family : ((_r2 = (_q = element.props) == null ? void 0 : _q.font) == null ? void 0 : _r2.family) ?? ((_s2 = captionProps == null ? void 0 : captionProps.font) == null ? void 0 : _s2.family)) ?? DEFAULT_CAPTION_PROPS.family,
|
|
7679
7681
|
fill: resolvedFill,
|
|
7680
|
-
fontWeight: (applyToAll ? (
|
|
7681
|
-
|
|
7682
|
+
fontWeight: (applyToAll ? (_t2 = captionProps == null ? void 0 : captionProps.font) == null ? void 0 : _t2.weight : ((_v = (_u = element.props) == null ? void 0 : _u.font) == null ? void 0 : _v.weight) ?? ((_w = captionProps == null ? void 0 : captionProps.font) == null ? void 0 : _w.weight)) ?? DEFAULT_CAPTION_PROPS.fontWeight,
|
|
7683
|
+
...resolvedStroke ? { stroke: resolvedStroke } : {},
|
|
7682
7684
|
opacity: (applyToAll ? captionProps == null ? void 0 : captionProps.opacity : ((_x = element.props) == null ? void 0 : _x.opacity) ?? (captionProps == null ? void 0 : captionProps.opacity)) ?? 1,
|
|
7683
7685
|
width,
|
|
7684
7686
|
splitByGrapheme: false,
|
|
@@ -7689,7 +7691,7 @@ const addCaptionElement = ({
|
|
|
7689
7691
|
blur: (applyToAll ? captionProps == null ? void 0 : captionProps.shadowBlur : ((_J = element.props) == null ? void 0 : _J.shadowBlur) ?? (captionProps == null ? void 0 : captionProps.shadowBlur)) ?? DEFAULT_CAPTION_PROPS.shadowBlur,
|
|
7690
7692
|
color: (applyToAll ? captionProps == null ? void 0 : captionProps.shadowColor : ((_K = element.props) == null ? void 0 : _K.shadowColor) ?? (captionProps == null ? void 0 : captionProps.shadowColor)) ?? DEFAULT_CAPTION_PROPS.shadowColor
|
|
7691
7693
|
}),
|
|
7692
|
-
strokeWidth: (applyToAll ? captionProps == null ? void 0 : captionProps.lineWidth : ((_L = element.props) == null ? void 0 : _L.lineWidth) ?? (captionProps == null ? void 0 : captionProps.lineWidth)) ?? DEFAULT_CAPTION_PROPS.lineWidth
|
|
7694
|
+
strokeWidth: ((applyToAll ? captionProps == null ? void 0 : captionProps.lineWidth : ((_L = element.props) == null ? void 0 : _L.lineWidth) ?? (captionProps == null ? void 0 : captionProps.lineWidth)) ?? DEFAULT_CAPTION_PROPS.lineWidth) * 0.025
|
|
7693
7695
|
});
|
|
7694
7696
|
caption.set("id", element.id);
|
|
7695
7697
|
caption.set("zIndex", index);
|