@shopify/react-native-skia 0.1.222 → 0.1.223
Sign up to get free protection for your applications and to get access to all the features.
- package/cpp/api/JsiSkApi.h +5 -0
- package/cpp/api/JsiSkFontMgrFactory.h +9 -4
- package/cpp/api/JsiSkParagraph.h +135 -0
- package/cpp/api/JsiSkParagraphBuilder.h +159 -0
- package/cpp/api/JsiSkParagraphStyle.h +124 -0
- package/cpp/api/JsiSkStrutStyle.h +96 -0
- package/cpp/api/JsiSkTextStyle.h +185 -0
- package/cpp/jsi/JsiHostObject.h +21 -0
- package/cpp/rnskia/dom/JsiDomApi.h +4 -0
- package/cpp/rnskia/dom/nodes/JsiParagraphNode.h +62 -0
- package/cpp/rnskia/dom/props/ParagraphProp.h +45 -0
- package/cpp/skia/modules/skunicode/include/SkUnicode.h +312 -0
- package/cpp/skia/src/base/SkTInternalLList.h +304 -0
- package/cpp/skia/src/base/SkUTF.h +95 -0
- package/cpp/skia/src/core/SkLRUCache.h +130 -0
- package/lib/commonjs/dom/nodes/JsiSkDOM.d.ts +2 -0
- package/lib/commonjs/dom/nodes/JsiSkDOM.js +7 -0
- package/lib/commonjs/dom/nodes/JsiSkDOM.js.map +1 -1
- package/lib/commonjs/dom/nodes/drawings/ParagraphNode.d.ts +8 -0
- package/lib/commonjs/dom/nodes/drawings/ParagraphNode.js +41 -0
- package/lib/commonjs/dom/nodes/drawings/ParagraphNode.js.map +1 -0
- package/lib/commonjs/dom/types/NodeType.d.ts +2 -1
- package/lib/commonjs/dom/types/NodeType.js +1 -0
- package/lib/commonjs/dom/types/NodeType.js.map +1 -1
- package/lib/commonjs/dom/types/Paragraph.d.ts +8 -0
- package/lib/commonjs/dom/types/Paragraph.js +6 -0
- package/lib/commonjs/dom/types/Paragraph.js.map +1 -0
- package/lib/commonjs/dom/types/SkDOM.d.ts +2 -0
- package/lib/commonjs/dom/types/SkDOM.js.map +1 -1
- package/lib/commonjs/dom/types/index.d.ts +1 -0
- package/lib/commonjs/dom/types/index.js +13 -0
- package/lib/commonjs/dom/types/index.js.map +1 -1
- package/lib/commonjs/renderer/HostComponents.d.ts +3 -1
- package/lib/commonjs/renderer/HostComponents.js +4 -0
- package/lib/commonjs/renderer/HostComponents.js.map +1 -1
- package/lib/commonjs/renderer/components/index.d.ts +1 -0
- package/lib/commonjs/renderer/components/index.js +13 -0
- package/lib/commonjs/renderer/components/index.js.map +1 -1
- package/lib/commonjs/renderer/components/paragraph/Paragraph.d.ts +4 -0
- package/lib/commonjs/renderer/components/paragraph/Paragraph.js +17 -0
- package/lib/commonjs/renderer/components/paragraph/Paragraph.js.map +1 -0
- package/lib/commonjs/renderer/components/paragraph/index.d.ts +1 -0
- package/lib/commonjs/renderer/components/paragraph/index.js +19 -0
- package/lib/commonjs/renderer/components/paragraph/index.js.map +1 -0
- package/lib/commonjs/skia/types/Paragraph/Paragraph.d.ts +56 -0
- package/lib/commonjs/skia/types/Paragraph/Paragraph.js +6 -0
- package/lib/commonjs/skia/types/Paragraph/Paragraph.js.map +1 -0
- package/lib/commonjs/skia/types/Paragraph/ParagraphBuilder.d.ts +60 -0
- package/lib/commonjs/skia/types/Paragraph/ParagraphBuilder.js +18 -0
- package/lib/commonjs/skia/types/Paragraph/ParagraphBuilder.js.map +1 -0
- package/lib/commonjs/skia/types/Paragraph/ParagraphStyle.d.ts +41 -0
- package/lib/commonjs/skia/types/Paragraph/ParagraphStyle.js +36 -0
- package/lib/commonjs/skia/types/Paragraph/ParagraphStyle.js.map +1 -0
- package/lib/commonjs/skia/types/Paragraph/TextStyle.d.ts +62 -0
- package/lib/commonjs/skia/types/Paragraph/TextStyle.js +35 -0
- package/lib/commonjs/skia/types/Paragraph/TextStyle.js.map +1 -0
- package/lib/commonjs/skia/types/Paragraph/index.d.ts +6 -0
- package/lib/commonjs/skia/types/Paragraph/index.js +84 -0
- package/lib/commonjs/skia/types/Paragraph/index.js.map +1 -0
- package/lib/commonjs/skia/types/Skia.d.ts +2 -0
- package/lib/commonjs/skia/types/Skia.js.map +1 -1
- package/lib/commonjs/skia/types/index.d.ts +1 -0
- package/lib/commonjs/skia/types/index.js +13 -0
- package/lib/commonjs/skia/types/index.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkParagraph.d.ts +16 -0
- package/lib/commonjs/skia/web/JsiSkParagraph.js +91 -0
- package/lib/commonjs/skia/web/JsiSkParagraph.js.map +1 -0
- package/lib/commonjs/skia/web/JsiSkParagraphBuilder.d.ts +15 -0
- package/lib/commonjs/skia/web/JsiSkParagraphBuilder.js +85 -0
- package/lib/commonjs/skia/web/JsiSkParagraphBuilder.js.map +1 -0
- package/lib/commonjs/skia/web/JsiSkParagraphBuilderFactory.d.ts +8 -0
- package/lib/commonjs/skia/web/JsiSkParagraphBuilderFactory.js +34 -0
- package/lib/commonjs/skia/web/JsiSkParagraphBuilderFactory.js.map +1 -0
- package/lib/commonjs/skia/web/JsiSkParagraphStyle.d.ts +5 -0
- package/lib/commonjs/skia/web/JsiSkParagraphStyle.js +59 -0
- package/lib/commonjs/skia/web/JsiSkParagraphStyle.js.map +1 -0
- package/lib/commonjs/skia/web/JsiSkTextStyle.d.ts +5 -0
- package/lib/commonjs/skia/web/JsiSkTextStyle.js +54 -0
- package/lib/commonjs/skia/web/JsiSkTextStyle.js.map +1 -0
- package/lib/commonjs/skia/web/JsiSkia.js +4 -1
- package/lib/commonjs/skia/web/JsiSkia.js.map +1 -1
- package/lib/module/dom/nodes/JsiSkDOM.d.ts +2 -0
- package/lib/module/dom/nodes/JsiSkDOM.js +6 -0
- package/lib/module/dom/nodes/JsiSkDOM.js.map +1 -1
- package/lib/module/dom/nodes/drawings/ParagraphNode.d.ts +8 -0
- package/lib/module/dom/nodes/drawings/ParagraphNode.js +30 -0
- package/lib/module/dom/nodes/drawings/ParagraphNode.js.map +1 -0
- package/lib/module/dom/types/NodeType.d.ts +2 -1
- package/lib/module/dom/types/NodeType.js +1 -0
- package/lib/module/dom/types/NodeType.js.map +1 -1
- package/lib/module/dom/types/Paragraph.d.ts +8 -0
- package/lib/module/dom/types/Paragraph.js +2 -0
- package/lib/module/dom/types/Paragraph.js.map +1 -0
- package/lib/module/dom/types/SkDOM.d.ts +2 -0
- package/lib/module/dom/types/SkDOM.js.map +1 -1
- package/lib/module/dom/types/index.d.ts +1 -0
- package/lib/module/dom/types/index.js +1 -0
- package/lib/module/dom/types/index.js.map +1 -1
- package/lib/module/renderer/HostComponents.d.ts +3 -1
- package/lib/module/renderer/HostComponents.js +4 -0
- package/lib/module/renderer/HostComponents.js.map +1 -1
- package/lib/module/renderer/components/index.d.ts +1 -0
- package/lib/module/renderer/components/index.js +1 -0
- package/lib/module/renderer/components/index.js.map +1 -1
- package/lib/module/renderer/components/paragraph/Paragraph.d.ts +4 -0
- package/lib/module/renderer/components/paragraph/Paragraph.js +5 -0
- package/lib/module/renderer/components/paragraph/Paragraph.js.map +1 -0
- package/lib/module/renderer/components/paragraph/index.d.ts +1 -0
- package/lib/module/renderer/components/paragraph/index.js +2 -0
- package/lib/module/renderer/components/paragraph/index.js.map +1 -0
- package/lib/module/skia/types/Paragraph/Paragraph.d.ts +56 -0
- package/lib/module/skia/types/Paragraph/Paragraph.js +2 -0
- package/lib/module/skia/types/Paragraph/Paragraph.js.map +1 -0
- package/lib/module/skia/types/Paragraph/ParagraphBuilder.d.ts +60 -0
- package/lib/module/skia/types/Paragraph/ParagraphBuilder.js +11 -0
- package/lib/module/skia/types/Paragraph/ParagraphBuilder.js.map +1 -0
- package/lib/module/skia/types/Paragraph/ParagraphStyle.d.ts +41 -0
- package/lib/module/skia/types/Paragraph/ParagraphStyle.js +27 -0
- package/lib/module/skia/types/Paragraph/ParagraphStyle.js.map +1 -0
- package/lib/module/skia/types/Paragraph/TextStyle.d.ts +62 -0
- package/lib/module/skia/types/Paragraph/TextStyle.js +26 -0
- package/lib/module/skia/types/Paragraph/TextStyle.js.map +1 -0
- package/lib/module/skia/types/Paragraph/index.d.ts +6 -0
- package/lib/module/skia/types/Paragraph/index.js +7 -0
- package/lib/module/skia/types/Paragraph/index.js.map +1 -0
- package/lib/module/skia/types/Skia.d.ts +2 -0
- package/lib/module/skia/types/Skia.js.map +1 -1
- package/lib/module/skia/types/index.d.ts +1 -0
- package/lib/module/skia/types/index.js +1 -0
- package/lib/module/skia/types/index.js.map +1 -1
- package/lib/module/skia/web/JsiSkParagraph.d.ts +16 -0
- package/lib/module/skia/web/JsiSkParagraph.js +81 -0
- package/lib/module/skia/web/JsiSkParagraph.js.map +1 -0
- package/lib/module/skia/web/JsiSkParagraphBuilder.d.ts +15 -0
- package/lib/module/skia/web/JsiSkParagraphBuilder.js +73 -0
- package/lib/module/skia/web/JsiSkParagraphBuilder.js.map +1 -0
- package/lib/module/skia/web/JsiSkParagraphBuilderFactory.d.ts +8 -0
- package/lib/module/skia/web/JsiSkParagraphBuilderFactory.js +21 -0
- package/lib/module/skia/web/JsiSkParagraphBuilderFactory.js.map +1 -0
- package/lib/module/skia/web/JsiSkParagraphStyle.d.ts +5 -0
- package/lib/module/skia/web/JsiSkParagraphStyle.js +49 -0
- package/lib/module/skia/web/JsiSkParagraphStyle.js.map +1 -0
- package/lib/module/skia/web/JsiSkTextStyle.d.ts +5 -0
- package/lib/module/skia/web/JsiSkTextStyle.js +45 -0
- package/lib/module/skia/web/JsiSkTextStyle.js.map +1 -0
- package/lib/module/skia/web/JsiSkia.js +3 -1
- package/lib/module/skia/web/JsiSkia.js.map +1 -1
- package/lib/typescript/src/dom/nodes/JsiSkDOM.d.ts +2 -0
- package/lib/typescript/src/dom/nodes/drawings/ParagraphNode.d.ts +8 -0
- package/lib/typescript/src/dom/types/NodeType.d.ts +2 -1
- package/lib/typescript/src/dom/types/Paragraph.d.ts +8 -0
- package/lib/typescript/src/dom/types/SkDOM.d.ts +2 -0
- package/lib/typescript/src/dom/types/index.d.ts +1 -0
- package/lib/typescript/src/renderer/HostComponents.d.ts +3 -1
- package/lib/typescript/src/renderer/components/index.d.ts +1 -0
- package/lib/typescript/src/renderer/components/paragraph/Paragraph.d.ts +4 -0
- package/lib/typescript/src/renderer/components/paragraph/index.d.ts +1 -0
- package/lib/typescript/src/skia/types/Paragraph/Paragraph.d.ts +56 -0
- package/lib/typescript/src/skia/types/Paragraph/ParagraphBuilder.d.ts +60 -0
- package/lib/typescript/src/skia/types/Paragraph/ParagraphStyle.d.ts +41 -0
- package/lib/typescript/src/skia/types/Paragraph/TextStyle.d.ts +62 -0
- package/lib/typescript/src/skia/types/Paragraph/index.d.ts +6 -0
- package/lib/typescript/src/skia/types/Skia.d.ts +2 -0
- package/lib/typescript/src/skia/types/index.d.ts +1 -0
- package/lib/typescript/src/skia/web/JsiSkParagraph.d.ts +16 -0
- package/lib/typescript/src/skia/web/JsiSkParagraphBuilder.d.ts +15 -0
- package/lib/typescript/src/skia/web/JsiSkParagraphBuilderFactory.d.ts +8 -0
- package/lib/typescript/src/skia/web/JsiSkParagraphStyle.d.ts +5 -0
- package/lib/typescript/src/skia/web/JsiSkTextStyle.d.ts +5 -0
- package/libs/ios/libskia.xcframework/ios-arm64_arm64e/libskia.a +0 -0
- package/libs/ios/libskia.xcframework/ios-arm64_arm64e_x86_64-simulator/libskia.a +0 -0
- package/libs/ios/libskottie.xcframework/Info.plist +5 -5
- package/libs/ios/libskottie.xcframework/ios-arm64_arm64e/libskottie.a +0 -0
- package/libs/ios/libskottie.xcframework/ios-arm64_arm64e_x86_64-simulator/libskottie.a +0 -0
- package/libs/ios/libskparagraph.xcframework/Info.plist +5 -5
- package/libs/ios/libskparagraph.xcframework/ios-arm64_arm64e/libskparagraph.a +0 -0
- package/libs/ios/libskparagraph.xcframework/ios-arm64_arm64e_x86_64-simulator/libskparagraph.a +0 -0
- package/libs/ios/libsksg.xcframework/ios-arm64_arm64e/libsksg.a +0 -0
- package/libs/ios/libsksg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsksg.a +0 -0
- package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e/libskshaper.a +0 -0
- package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e_x86_64-simulator/libskshaper.a +0 -0
- package/libs/ios/libskunicode.xcframework/ios-arm64_arm64e/libskunicode.a +0 -0
- package/libs/ios/libskunicode.xcframework/ios-arm64_arm64e_x86_64-simulator/libskunicode.a +0 -0
- package/libs/ios/libsvg.xcframework/Info.plist +5 -5
- package/libs/ios/libsvg.xcframework/ios-arm64_arm64e/libsvg.a +0 -0
- package/libs/ios/libsvg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsvg.a +0 -0
- package/package.json +1 -1
- package/src/dom/nodes/JsiSkDOM.ts +9 -0
- package/src/dom/nodes/drawings/ParagraphNode.ts +22 -0
- package/src/dom/types/NodeType.ts +3 -0
- package/src/dom/types/Paragraph.ts +10 -0
- package/src/dom/types/SkDOM.ts +4 -0
- package/src/dom/types/index.ts +1 -0
- package/src/renderer/HostComponents.ts +10 -0
- package/src/renderer/components/index.ts +2 -0
- package/src/renderer/components/paragraph/Paragraph.tsx +8 -0
- package/src/renderer/components/paragraph/index.ts +1 -0
- package/src/skia/types/Paragraph/Paragraph.ts +59 -0
- package/src/skia/types/Paragraph/ParagraphBuilder.ts +96 -0
- package/src/skia/types/Paragraph/ParagraphStyle.ts +45 -0
- package/src/skia/types/Paragraph/TextStyle.ts +70 -0
- package/src/skia/types/Paragraph/index.ts +6 -0
- package/src/skia/types/Skia.ts +3 -0
- package/src/skia/types/index.ts +1 -0
- package/src/skia/web/JsiSkParagraph.ts +69 -0
- package/src/skia/web/JsiSkParagraphBuilder.ts +99 -0
- package/src/skia/web/JsiSkParagraphBuilderFactory.ts +42 -0
- package/src/skia/web/JsiSkParagraphStyle.ts +65 -0
- package/src/skia/web/JsiSkTextStyle.ts +53 -0
- package/src/skia/web/JsiSkia.ts +2 -0
@@ -0,0 +1,59 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.JsiSkParagraphStyle = void 0;
|
7
|
+
|
8
|
+
var _types = require("../types");
|
9
|
+
|
10
|
+
class JsiSkParagraphStyle {
|
11
|
+
static toParagraphStyle(ck, value) {
|
12
|
+
var _value$strutStyle, _value$strutStyle2, _value$strutStyle3, _value$strutStyle4, _value$strutStyle5, _value$strutStyle6, _value$strutStyle6$fo, _value$strutStyle7, _value$strutStyle7$fo, _value$strutStyle8, _value$strutStyle8$fo, _value$strutStyle9, _value$strutStyle10;
|
13
|
+
|
14
|
+
// Seems like we need to provide the textStyle.color value, otherwise
|
15
|
+
// the constructor crashes.
|
16
|
+
const ps = new ck.ParagraphStyle({
|
17
|
+
textStyle: {
|
18
|
+
color: ck.BLACK
|
19
|
+
}
|
20
|
+
});
|
21
|
+
ps.disableHinting = value.disableHinting ?? ps.disableHinting;
|
22
|
+
ps.ellipsis = value.ellipsis ?? ps.ellipsis;
|
23
|
+
ps.heightMultiplier = value.heightMultiplier ?? ps.heightMultiplier;
|
24
|
+
ps.maxLines = value.maxLines ?? ps.maxLines;
|
25
|
+
ps.replaceTabCharacters = value.replaceTabCharacters ?? ps.replaceTabCharacters;
|
26
|
+
ps.textAlign = value.textAlign !== undefined ? {
|
27
|
+
value: value.textAlign
|
28
|
+
} : undefined ?? ps.textAlign;
|
29
|
+
ps.textDirection = value.textDirection !== undefined ? {
|
30
|
+
value: value.textDirection === _types.SkTextDirection.LTR ? 1 : 0
|
31
|
+
} : ps.textDirection;
|
32
|
+
ps.textHeightBehavior = value.textHeightBehavior !== undefined ? {
|
33
|
+
value: value.textHeightBehavior
|
34
|
+
} : ps.textHeightBehavior;
|
35
|
+
ps.strutStyle = ps.strutStyle ?? {};
|
36
|
+
ps.strutStyle.fontFamilies = ((_value$strutStyle = value.strutStyle) === null || _value$strutStyle === void 0 ? void 0 : _value$strutStyle.fontFamilies) ?? ps.strutStyle.fontFamilies;
|
37
|
+
ps.strutStyle.fontSize = ((_value$strutStyle2 = value.strutStyle) === null || _value$strutStyle2 === void 0 ? void 0 : _value$strutStyle2.fontSize) ?? ps.strutStyle.fontSize;
|
38
|
+
ps.strutStyle.heightMultiplier = ((_value$strutStyle3 = value.strutStyle) === null || _value$strutStyle3 === void 0 ? void 0 : _value$strutStyle3.heightMultiplier) ?? ps.strutStyle.heightMultiplier;
|
39
|
+
ps.strutStyle.leading = ((_value$strutStyle4 = value.strutStyle) === null || _value$strutStyle4 === void 0 ? void 0 : _value$strutStyle4.leading) ?? ps.strutStyle.leading;
|
40
|
+
ps.strutStyle.forceStrutHeight = ((_value$strutStyle5 = value.strutStyle) === null || _value$strutStyle5 === void 0 ? void 0 : _value$strutStyle5.forceStrutHeight) ?? ps.strutStyle.forceStrutHeight;
|
41
|
+
ps.strutStyle.fontStyle = ps.strutStyle.fontStyle ?? {};
|
42
|
+
ps.strutStyle.fontStyle.slant = ((_value$strutStyle6 = value.strutStyle) === null || _value$strutStyle6 === void 0 ? void 0 : (_value$strutStyle6$fo = _value$strutStyle6.fontStyle) === null || _value$strutStyle6$fo === void 0 ? void 0 : _value$strutStyle6$fo.slant) !== undefined ? {
|
43
|
+
value: value.strutStyle.fontStyle.slant
|
44
|
+
} : ps.strutStyle.fontStyle.slant;
|
45
|
+
ps.strutStyle.fontStyle.width = ((_value$strutStyle7 = value.strutStyle) === null || _value$strutStyle7 === void 0 ? void 0 : (_value$strutStyle7$fo = _value$strutStyle7.fontStyle) === null || _value$strutStyle7$fo === void 0 ? void 0 : _value$strutStyle7$fo.width) !== undefined ? {
|
46
|
+
value: value.strutStyle.fontStyle.width
|
47
|
+
} : ps.strutStyle.fontStyle.width;
|
48
|
+
ps.strutStyle.fontStyle.weight = ((_value$strutStyle8 = value.strutStyle) === null || _value$strutStyle8 === void 0 ? void 0 : (_value$strutStyle8$fo = _value$strutStyle8.fontStyle) === null || _value$strutStyle8$fo === void 0 ? void 0 : _value$strutStyle8$fo.weight) !== undefined ? {
|
49
|
+
value: value.strutStyle.fontStyle.weight
|
50
|
+
} : ps.strutStyle.fontStyle.weight;
|
51
|
+
ps.strutStyle.halfLeading = ((_value$strutStyle9 = value.strutStyle) === null || _value$strutStyle9 === void 0 ? void 0 : _value$strutStyle9.halfLeading) ?? ps.strutStyle.halfLeading;
|
52
|
+
ps.strutStyle.strutEnabled = ((_value$strutStyle10 = value.strutStyle) === null || _value$strutStyle10 === void 0 ? void 0 : _value$strutStyle10.strutEnabled) ?? ps.strutStyle.strutEnabled;
|
53
|
+
return ps;
|
54
|
+
}
|
55
|
+
|
56
|
+
}
|
57
|
+
|
58
|
+
exports.JsiSkParagraphStyle = JsiSkParagraphStyle;
|
59
|
+
//# sourceMappingURL=JsiSkParagraphStyle.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["JsiSkParagraphStyle","toParagraphStyle","ck","value","ps","ParagraphStyle","textStyle","color","BLACK","disableHinting","ellipsis","heightMultiplier","maxLines","replaceTabCharacters","textAlign","undefined","textDirection","SkTextDirection","LTR","textHeightBehavior","strutStyle","fontFamilies","fontSize","leading","forceStrutHeight","fontStyle","slant","width","weight","halfLeading","strutEnabled"],"sources":["JsiSkParagraphStyle.ts"],"sourcesContent":["import type { CanvasKit, ParagraphStyle } from \"canvaskit-wasm\";\n\nimport { SkTextDirection, type SkParagraphStyle } from \"../types\";\n\nexport class JsiSkParagraphStyle {\n static toParagraphStyle(\n ck: CanvasKit,\n value: SkParagraphStyle\n ): ParagraphStyle {\n // Seems like we need to provide the textStyle.color value, otherwise\n // the constructor crashes.\n const ps = new ck.ParagraphStyle({ textStyle: { color: ck.BLACK } });\n\n ps.disableHinting = value.disableHinting ?? ps.disableHinting;\n ps.ellipsis = value.ellipsis ?? ps.ellipsis;\n ps.heightMultiplier = value.heightMultiplier ?? ps.heightMultiplier;\n ps.maxLines = value.maxLines ?? ps.maxLines;\n ps.replaceTabCharacters =\n value.replaceTabCharacters ?? ps.replaceTabCharacters;\n ps.textAlign =\n value.textAlign !== undefined\n ? { value: value.textAlign }\n : undefined ?? ps.textAlign;\n ps.textDirection =\n value.textDirection !== undefined\n ? { value: value.textDirection === SkTextDirection.LTR ? 1 : 0 }\n : ps.textDirection;\n ps.textHeightBehavior =\n value.textHeightBehavior !== undefined\n ? { value: value.textHeightBehavior }\n : ps.textHeightBehavior;\n\n ps.strutStyle = ps.strutStyle ?? {};\n ps.strutStyle.fontFamilies =\n value.strutStyle?.fontFamilies ?? ps.strutStyle.fontFamilies;\n ps.strutStyle.fontSize =\n value.strutStyle?.fontSize ?? ps.strutStyle.fontSize;\n ps.strutStyle.heightMultiplier =\n value.strutStyle?.heightMultiplier ?? ps.strutStyle.heightMultiplier;\n ps.strutStyle.leading = value.strutStyle?.leading ?? ps.strutStyle.leading;\n ps.strutStyle.forceStrutHeight =\n value.strutStyle?.forceStrutHeight ?? ps.strutStyle.forceStrutHeight;\n\n ps.strutStyle.fontStyle = ps.strutStyle.fontStyle ?? {};\n\n ps.strutStyle.fontStyle.slant =\n value.strutStyle?.fontStyle?.slant !== undefined\n ? { value: value.strutStyle.fontStyle.slant }\n : ps.strutStyle.fontStyle.slant;\n ps.strutStyle.fontStyle.width =\n value.strutStyle?.fontStyle?.width !== undefined\n ? { value: value.strutStyle.fontStyle.width }\n : ps.strutStyle.fontStyle.width;\n ps.strutStyle.fontStyle.weight =\n value.strutStyle?.fontStyle?.weight !== undefined\n ? { value: value.strutStyle.fontStyle.weight }\n : ps.strutStyle.fontStyle.weight;\n ps.strutStyle.halfLeading =\n value.strutStyle?.halfLeading ?? ps.strutStyle.halfLeading;\n ps.strutStyle.strutEnabled =\n value.strutStyle?.strutEnabled ?? ps.strutStyle.strutEnabled;\n\n return ps;\n }\n}\n"],"mappings":";;;;;;;AAEA;;AAEO,MAAMA,mBAAN,CAA0B;EACR,OAAhBC,gBAAgB,CACrBC,EADqB,EAErBC,KAFqB,EAGL;IAAA;;IAChB;IACA;IACA,MAAMC,EAAE,GAAG,IAAIF,EAAE,CAACG,cAAP,CAAsB;MAAEC,SAAS,EAAE;QAAEC,KAAK,EAAEL,EAAE,CAACM;MAAZ;IAAb,CAAtB,CAAX;IAEAJ,EAAE,CAACK,cAAH,GAAoBN,KAAK,CAACM,cAAN,IAAwBL,EAAE,CAACK,cAA/C;IACAL,EAAE,CAACM,QAAH,GAAcP,KAAK,CAACO,QAAN,IAAkBN,EAAE,CAACM,QAAnC;IACAN,EAAE,CAACO,gBAAH,GAAsBR,KAAK,CAACQ,gBAAN,IAA0BP,EAAE,CAACO,gBAAnD;IACAP,EAAE,CAACQ,QAAH,GAAcT,KAAK,CAACS,QAAN,IAAkBR,EAAE,CAACQ,QAAnC;IACAR,EAAE,CAACS,oBAAH,GACEV,KAAK,CAACU,oBAAN,IAA8BT,EAAE,CAACS,oBADnC;IAEAT,EAAE,CAACU,SAAH,GACEX,KAAK,CAACW,SAAN,KAAoBC,SAApB,GACI;MAAEZ,KAAK,EAAEA,KAAK,CAACW;IAAf,CADJ,GAEIC,SAAS,IAAIX,EAAE,CAACU,SAHtB;IAIAV,EAAE,CAACY,aAAH,GACEb,KAAK,CAACa,aAAN,KAAwBD,SAAxB,GACI;MAAEZ,KAAK,EAAEA,KAAK,CAACa,aAAN,KAAwBC,sBAAA,CAAgBC,GAAxC,GAA8C,CAA9C,GAAkD;IAA3D,CADJ,GAEId,EAAE,CAACY,aAHT;IAIAZ,EAAE,CAACe,kBAAH,GACEhB,KAAK,CAACgB,kBAAN,KAA6BJ,SAA7B,GACI;MAAEZ,KAAK,EAAEA,KAAK,CAACgB;IAAf,CADJ,GAEIf,EAAE,CAACe,kBAHT;IAKAf,EAAE,CAACgB,UAAH,GAAgBhB,EAAE,CAACgB,UAAH,IAAiB,EAAjC;IACAhB,EAAE,CAACgB,UAAH,CAAcC,YAAd,GACE,sBAAAlB,KAAK,CAACiB,UAAN,wEAAkBC,YAAlB,KAAkCjB,EAAE,CAACgB,UAAH,CAAcC,YADlD;IAEAjB,EAAE,CAACgB,UAAH,CAAcE,QAAd,GACE,uBAAAnB,KAAK,CAACiB,UAAN,0EAAkBE,QAAlB,KAA8BlB,EAAE,CAACgB,UAAH,CAAcE,QAD9C;IAEAlB,EAAE,CAACgB,UAAH,CAAcT,gBAAd,GACE,uBAAAR,KAAK,CAACiB,UAAN,0EAAkBT,gBAAlB,KAAsCP,EAAE,CAACgB,UAAH,CAAcT,gBADtD;IAEAP,EAAE,CAACgB,UAAH,CAAcG,OAAd,GAAwB,uBAAApB,KAAK,CAACiB,UAAN,0EAAkBG,OAAlB,KAA6BnB,EAAE,CAACgB,UAAH,CAAcG,OAAnE;IACAnB,EAAE,CAACgB,UAAH,CAAcI,gBAAd,GACE,uBAAArB,KAAK,CAACiB,UAAN,0EAAkBI,gBAAlB,KAAsCpB,EAAE,CAACgB,UAAH,CAAcI,gBADtD;IAGApB,EAAE,CAACgB,UAAH,CAAcK,SAAd,GAA0BrB,EAAE,CAACgB,UAAH,CAAcK,SAAd,IAA2B,EAArD;IAEArB,EAAE,CAACgB,UAAH,CAAcK,SAAd,CAAwBC,KAAxB,GACE,uBAAAvB,KAAK,CAACiB,UAAN,mGAAkBK,SAAlB,gFAA6BC,KAA7B,MAAuCX,SAAvC,GACI;MAAEZ,KAAK,EAAEA,KAAK,CAACiB,UAAN,CAAiBK,SAAjB,CAA2BC;IAApC,CADJ,GAEItB,EAAE,CAACgB,UAAH,CAAcK,SAAd,CAAwBC,KAH9B;IAIAtB,EAAE,CAACgB,UAAH,CAAcK,SAAd,CAAwBE,KAAxB,GACE,uBAAAxB,KAAK,CAACiB,UAAN,mGAAkBK,SAAlB,gFAA6BE,KAA7B,MAAuCZ,SAAvC,GACI;MAAEZ,KAAK,EAAEA,KAAK,CAACiB,UAAN,CAAiBK,SAAjB,CAA2BE;IAApC,CADJ,GAEIvB,EAAE,CAACgB,UAAH,CAAcK,SAAd,CAAwBE,KAH9B;IAIAvB,EAAE,CAACgB,UAAH,CAAcK,SAAd,CAAwBG,MAAxB,GACE,uBAAAzB,KAAK,CAACiB,UAAN,mGAAkBK,SAAlB,gFAA6BG,MAA7B,MAAwCb,SAAxC,GACI;MAAEZ,KAAK,EAAEA,KAAK,CAACiB,UAAN,CAAiBK,SAAjB,CAA2BG;IAApC,CADJ,GAEIxB,EAAE,CAACgB,UAAH,CAAcK,SAAd,CAAwBG,MAH9B;IAIAxB,EAAE,CAACgB,UAAH,CAAcS,WAAd,GACE,uBAAA1B,KAAK,CAACiB,UAAN,0EAAkBS,WAAlB,KAAiCzB,EAAE,CAACgB,UAAH,CAAcS,WADjD;IAEAzB,EAAE,CAACgB,UAAH,CAAcU,YAAd,GACE,wBAAA3B,KAAK,CAACiB,UAAN,4EAAkBU,YAAlB,KAAkC1B,EAAE,CAACgB,UAAH,CAAcU,YADlD;IAGA,OAAO1B,EAAP;EACD;;AA3D8B"}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.JsiSkTextStyle = void 0;
|
7
|
+
|
8
|
+
class JsiSkTextStyle {
|
9
|
+
static toTextStyle(value) {
|
10
|
+
return {
|
11
|
+
backgroundColor: value.backgroundColor,
|
12
|
+
color: value.color,
|
13
|
+
decoration: value.decoration,
|
14
|
+
decorationColor: value.decorationColor,
|
15
|
+
decorationStyle: value.decorationStyle ? {
|
16
|
+
value: value.decorationStyle
|
17
|
+
} : undefined,
|
18
|
+
decorationThickness: value.decorationThickness,
|
19
|
+
fontFamilies: value.fontFamilies,
|
20
|
+
fontSize: value.fontSize,
|
21
|
+
fontStyle: value.fontStyle ? {
|
22
|
+
slant: value.fontStyle.slant ? {
|
23
|
+
value: value.fontStyle.slant
|
24
|
+
} : undefined,
|
25
|
+
weight: value.fontStyle.weight ? {
|
26
|
+
value: value.fontStyle.weight
|
27
|
+
} : undefined,
|
28
|
+
width: value.fontStyle.width ? {
|
29
|
+
value: value.fontStyle.width
|
30
|
+
} : undefined
|
31
|
+
} : undefined,
|
32
|
+
fontFeatures: value.fontFeatures,
|
33
|
+
foregroundColor: value.foregroundColor,
|
34
|
+
fontVariations: value.fontVariations,
|
35
|
+
halfLeading: value.halfLeading,
|
36
|
+
heightMultiplier: value.heightMultiplier,
|
37
|
+
letterSpacing: value.letterSpacing,
|
38
|
+
locale: value.locale,
|
39
|
+
shadows: value.shadows ? value.shadows.map(shadow => ({
|
40
|
+
blurRadius: shadow.blurRadius,
|
41
|
+
color: shadow.color,
|
42
|
+
offset: shadow.offset ? [shadow.offset.x, shadow.offset.y] : undefined
|
43
|
+
})) : undefined,
|
44
|
+
textBaseline: value.textBaseline ? {
|
45
|
+
value: value.textBaseline
|
46
|
+
} : undefined,
|
47
|
+
wordSpacing: value.wordSpacing
|
48
|
+
};
|
49
|
+
}
|
50
|
+
|
51
|
+
}
|
52
|
+
|
53
|
+
exports.JsiSkTextStyle = JsiSkTextStyle;
|
54
|
+
//# sourceMappingURL=JsiSkTextStyle.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["JsiSkTextStyle","toTextStyle","value","backgroundColor","color","decoration","decorationColor","decorationStyle","undefined","decorationThickness","fontFamilies","fontSize","fontStyle","slant","weight","width","fontFeatures","foregroundColor","fontVariations","halfLeading","heightMultiplier","letterSpacing","locale","shadows","map","shadow","blurRadius","offset","x","y","textBaseline","wordSpacing"],"sources":["JsiSkTextStyle.ts"],"sourcesContent":["import type { TextStyle } from \"canvaskit-wasm\";\n\nimport type { SkTextStyle } from \"../types\";\n\nexport class JsiSkTextStyle {\n static toTextStyle(value: SkTextStyle): TextStyle {\n return {\n backgroundColor: value.backgroundColor,\n color: value.color,\n decoration: value.decoration,\n decorationColor: value.decorationColor,\n decorationStyle: value.decorationStyle\n ? { value: value.decorationStyle }\n : undefined,\n decorationThickness: value.decorationThickness,\n fontFamilies: value.fontFamilies,\n fontSize: value.fontSize,\n fontStyle: value.fontStyle\n ? {\n slant: value.fontStyle.slant\n ? { value: value.fontStyle.slant }\n : undefined,\n weight: value.fontStyle.weight\n ? { value: value.fontStyle.weight }\n : undefined,\n width: value.fontStyle.width\n ? { value: value.fontStyle.width }\n : undefined,\n }\n : undefined,\n fontFeatures: value.fontFeatures,\n foregroundColor: value.foregroundColor,\n fontVariations: value.fontVariations,\n halfLeading: value.halfLeading,\n heightMultiplier: value.heightMultiplier,\n letterSpacing: value.letterSpacing,\n locale: value.locale,\n shadows: value.shadows\n ? value.shadows.map((shadow) => ({\n blurRadius: shadow.blurRadius,\n color: shadow.color,\n offset: shadow.offset\n ? [shadow.offset.x, shadow.offset.y]\n : undefined,\n }))\n : undefined,\n textBaseline: value.textBaseline\n ? { value: value.textBaseline }\n : undefined,\n wordSpacing: value.wordSpacing,\n };\n }\n}\n"],"mappings":";;;;;;;AAIO,MAAMA,cAAN,CAAqB;EACR,OAAXC,WAAW,CAACC,KAAD,EAAgC;IAChD,OAAO;MACLC,eAAe,EAAED,KAAK,CAACC,eADlB;MAELC,KAAK,EAAEF,KAAK,CAACE,KAFR;MAGLC,UAAU,EAAEH,KAAK,CAACG,UAHb;MAILC,eAAe,EAAEJ,KAAK,CAACI,eAJlB;MAKLC,eAAe,EAAEL,KAAK,CAACK,eAAN,GACb;QAAEL,KAAK,EAAEA,KAAK,CAACK;MAAf,CADa,GAEbC,SAPC;MAQLC,mBAAmB,EAAEP,KAAK,CAACO,mBARtB;MASLC,YAAY,EAAER,KAAK,CAACQ,YATf;MAULC,QAAQ,EAAET,KAAK,CAACS,QAVX;MAWLC,SAAS,EAAEV,KAAK,CAACU,SAAN,GACP;QACEC,KAAK,EAAEX,KAAK,CAACU,SAAN,CAAgBC,KAAhB,GACH;UAAEX,KAAK,EAAEA,KAAK,CAACU,SAAN,CAAgBC;QAAzB,CADG,GAEHL,SAHN;QAIEM,MAAM,EAAEZ,KAAK,CAACU,SAAN,CAAgBE,MAAhB,GACJ;UAAEZ,KAAK,EAAEA,KAAK,CAACU,SAAN,CAAgBE;QAAzB,CADI,GAEJN,SANN;QAOEO,KAAK,EAAEb,KAAK,CAACU,SAAN,CAAgBG,KAAhB,GACH;UAAEb,KAAK,EAAEA,KAAK,CAACU,SAAN,CAAgBG;QAAzB,CADG,GAEHP;MATN,CADO,GAYPA,SAvBC;MAwBLQ,YAAY,EAAEd,KAAK,CAACc,YAxBf;MAyBLC,eAAe,EAAEf,KAAK,CAACe,eAzBlB;MA0BLC,cAAc,EAAEhB,KAAK,CAACgB,cA1BjB;MA2BLC,WAAW,EAAEjB,KAAK,CAACiB,WA3Bd;MA4BLC,gBAAgB,EAAElB,KAAK,CAACkB,gBA5BnB;MA6BLC,aAAa,EAAEnB,KAAK,CAACmB,aA7BhB;MA8BLC,MAAM,EAAEpB,KAAK,CAACoB,MA9BT;MA+BLC,OAAO,EAAErB,KAAK,CAACqB,OAAN,GACLrB,KAAK,CAACqB,OAAN,CAAcC,GAAd,CAAmBC,MAAD,KAAa;QAC7BC,UAAU,EAAED,MAAM,CAACC,UADU;QAE7BtB,KAAK,EAAEqB,MAAM,CAACrB,KAFe;QAG7BuB,MAAM,EAAEF,MAAM,CAACE,MAAP,GACJ,CAACF,MAAM,CAACE,MAAP,CAAcC,CAAf,EAAkBH,MAAM,CAACE,MAAP,CAAcE,CAAhC,CADI,GAEJrB;MALyB,CAAb,CAAlB,CADK,GAQLA,SAvCC;MAwCLsB,YAAY,EAAE5B,KAAK,CAAC4B,YAAN,GACV;QAAE5B,KAAK,EAAEA,KAAK,CAAC4B;MAAf,CADU,GAEVtB,SA1CC;MA2CLuB,WAAW,EAAE7B,KAAK,CAAC6B;IA3Cd,CAAP;EA6CD;;AA/CyB"}
|
@@ -65,6 +65,8 @@ var _JsiSkFontMgrFactory = require("./JsiSkFontMgrFactory");
|
|
65
65
|
|
66
66
|
var _JsiSkAnimatedImageFactory = require("./JsiSkAnimatedImageFactory");
|
67
67
|
|
68
|
+
var _JsiSkParagraphBuilderFactory = require("./JsiSkParagraphBuilderFactory");
|
69
|
+
|
68
70
|
const JsiSkApi = CanvasKit => ({
|
69
71
|
Point: (x, y) => new _JsiSkPoint.JsiSkPoint(CanvasKit, Float32Array.of(x, y)),
|
70
72
|
RuntimeShaderBuilder: _ => {
|
@@ -102,7 +104,8 @@ const JsiSkApi = CanvasKit => ({
|
|
102
104
|
},
|
103
105
|
Surface: new _JsiSkSurfaceFactory.JsiSkSurfaceFactory(CanvasKit),
|
104
106
|
TypefaceFontProvider: new _JsiSkTypefaceFontProviderFactory.JsiSkTypefaceFontProviderFactory(CanvasKit),
|
105
|
-
FontMgr: new _JsiSkFontMgrFactory.JsiSkFontMgrFactory(CanvasKit)
|
107
|
+
FontMgr: new _JsiSkFontMgrFactory.JsiSkFontMgrFactory(CanvasKit),
|
108
|
+
ParagraphBuilder: new _JsiSkParagraphBuilderFactory.JsiSkParagraphBuilderFactory(CanvasKit)
|
106
109
|
});
|
107
110
|
|
108
111
|
exports.JsiSkApi = JsiSkApi;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["JsiSkApi","CanvasKit","Point","x","y","JsiSkPoint","Float32Array","of","RuntimeShaderBuilder","_","Error","RRectXY","rect","rx","ry","JsiSkRRect","RSXform","scos","ssin","tx","ty","JsiSkRSXform","Color","ContourMeasureIter","path","forceClosed","resScale","JsiSkContourMeasureIter","JsiSkPath","fromValue","Paint","paint","JsiSkPaint","setAntiAlias","PictureRecorder","JsiSkPictureRecorder","Picture","JsiSkPictureFactory","Path","JsiSkPathFactory","Matrix","matrix","JsiSkMatrix","identity","ColorFilter","JsiSkColorFilterFactory","Font","typeface","size","JsiSkFont","undefined","JsiSkTypeface","Typeface","JsiSkTypefaceFactory","MaskFilter","JsiSkMaskFilterFactory","RuntimeEffect","JsiSkRuntimeEffectFactory","ImageFilter","JsiSkImageFilterFactory","Shader","JsiSkShaderFactory","PathEffect","JsiSkPathEffectFactory","MakeVertices","bind","Data","JsiSkDataFactory","Image","JsiSkImageFactory","AnimatedImage","JsiSkAnimatedImageFactory","SVG","JsiSkSVGFactory","TextBlob","JsiSkTextBlobFactory","XYWHRect","width","height","JsiSkRect","Surface","JsiSkSurfaceFactory","TypefaceFontProvider","JsiSkTypefaceFontProviderFactory","FontMgr","JsiSkFontMgrFactory"],"sources":["JsiSkia.ts"],"sourcesContent":["import type { CanvasKit } from \"canvaskit-wasm\";\n\nimport type {\n SkContourMeasureIter,\n Skia,\n SkPath,\n SkRect,\n SkRuntimeEffect,\n SkRuntimeShaderBuilder,\n SkTypeface,\n} from \"../types\";\n\nimport { JsiSkPoint } from \"./JsiSkPoint\";\nimport { JsiSkPaint } from \"./JsiSkPaint\";\nimport { JsiSkRect } from \"./JsiSkRect\";\nimport { Color } from \"./JsiSkColor\";\nimport { JsiSkSurfaceFactory } from \"./JsiSkSurfaceFactory\";\nimport { JsiSkRRect } from \"./JsiSkRRect\";\nimport { JsiSkRSXform } from \"./JsiSkRSXform\";\nimport { JsiSkContourMeasureIter } from \"./JsiSkContourMeasureIter\";\nimport { JsiSkPictureRecorder } from \"./JsiSkPictureRecorder\";\nimport { JsiSkPictureFactory } from \"./JsiSkPictureFactory\";\nimport { JsiSkPathFactory } from \"./JsiSkPathFactory\";\nimport { JsiSkMatrix } from \"./JsiSkMatrix\";\nimport { JsiSkColorFilterFactory } from \"./JsiSkColorFilterFactory\";\nimport { JsiSkTypefaceFactory } from \"./JsiSkTypefaceFactory\";\nimport { JsiSkMaskFilterFactory } from \"./JsiSkMaskFilterFactory\";\nimport { JsiSkRuntimeEffectFactory } from \"./JsiSkRuntimeEffectFactory\";\nimport { JsiSkImageFilterFactory } from \"./JsiSkImageFilterFactory\";\nimport { JsiSkShaderFactory } from \"./JsiSkShaderFactory\";\nimport { JsiSkPathEffectFactory } from \"./JsiSkPathEffectFactory\";\nimport { JsiSkDataFactory } from \"./JsiSkDataFactory\";\nimport { JsiSkImageFactory } from \"./JsiSkImageFactory\";\nimport { JsiSkSVGFactory } from \"./JsiSkSVGFactory\";\nimport { JsiSkTextBlobFactory } from \"./JsiSkTextBlobFactory\";\nimport { JsiSkFont } from \"./JsiSkFont\";\nimport { MakeVertices } from \"./JsiSkVerticesFactory\";\nimport { JsiSkPath } from \"./JsiSkPath\";\nimport { JsiSkTypeface } from \"./JsiSkTypeface\";\nimport { JsiSkTypefaceFontProviderFactory } from \"./JsiSkTypefaceFontProviderFactory\";\nimport { JsiSkFontMgrFactory } from \"./JsiSkFontMgrFactory\";\nimport { JsiSkAnimatedImageFactory } from \"./JsiSkAnimatedImageFactory\";\n\nexport const JsiSkApi = (CanvasKit: CanvasKit): Skia => ({\n Point: (x: number, y: number) =>\n new JsiSkPoint(CanvasKit, Float32Array.of(x, y)),\n RuntimeShaderBuilder: (_: SkRuntimeEffect): SkRuntimeShaderBuilder => {\n throw new Error(\"Not implemented on React Native Web\");\n },\n RRectXY: (rect: SkRect, rx: number, ry: number) =>\n new JsiSkRRect(CanvasKit, rect, rx, ry),\n RSXform: (scos: number, ssin: number, tx: number, ty: number) =>\n new JsiSkRSXform(CanvasKit, Float32Array.of(scos, ssin, tx, ty)),\n Color,\n ContourMeasureIter: (\n path: SkPath,\n forceClosed: boolean,\n resScale: number\n ): SkContourMeasureIter =>\n new JsiSkContourMeasureIter(\n CanvasKit,\n new CanvasKit.ContourMeasureIter(\n JsiSkPath.fromValue(path),\n forceClosed,\n resScale\n )\n ),\n Paint: () => {\n const paint = new JsiSkPaint(CanvasKit, new CanvasKit.Paint());\n paint.setAntiAlias(true);\n return paint;\n },\n PictureRecorder: () =>\n new JsiSkPictureRecorder(CanvasKit, new CanvasKit.PictureRecorder()),\n Picture: new JsiSkPictureFactory(CanvasKit),\n Path: new JsiSkPathFactory(CanvasKit),\n Matrix: (matrix?: readonly number[]) =>\n new JsiSkMatrix(\n CanvasKit,\n matrix\n ? Float32Array.of(...matrix)\n : Float32Array.of(...CanvasKit.Matrix.identity())\n ),\n ColorFilter: new JsiSkColorFilterFactory(CanvasKit),\n Font: (typeface?: SkTypeface, size?: number) =>\n new JsiSkFont(\n CanvasKit,\n new CanvasKit.Font(\n typeface === undefined ? null : JsiSkTypeface.fromValue(typeface),\n size\n )\n ),\n Typeface: new JsiSkTypefaceFactory(CanvasKit),\n MaskFilter: new JsiSkMaskFilterFactory(CanvasKit),\n RuntimeEffect: new JsiSkRuntimeEffectFactory(CanvasKit),\n ImageFilter: new JsiSkImageFilterFactory(CanvasKit),\n Shader: new JsiSkShaderFactory(CanvasKit),\n PathEffect: new JsiSkPathEffectFactory(CanvasKit),\n MakeVertices: MakeVertices.bind(null, CanvasKit),\n Data: new JsiSkDataFactory(CanvasKit),\n Image: new JsiSkImageFactory(CanvasKit),\n AnimatedImage: new JsiSkAnimatedImageFactory(CanvasKit),\n SVG: new JsiSkSVGFactory(CanvasKit),\n TextBlob: new JsiSkTextBlobFactory(CanvasKit),\n XYWHRect: (x: number, y: number, width: number, height: number) => {\n return new JsiSkRect(CanvasKit, CanvasKit.XYWHRect(x, y, width, height));\n },\n Surface: new JsiSkSurfaceFactory(CanvasKit),\n TypefaceFontProvider: new JsiSkTypefaceFontProviderFactory(CanvasKit),\n FontMgr: new JsiSkFontMgrFactory(CanvasKit),\n});\n"],"mappings":"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
|
1
|
+
{"version":3,"names":["JsiSkApi","CanvasKit","Point","x","y","JsiSkPoint","Float32Array","of","RuntimeShaderBuilder","_","Error","RRectXY","rect","rx","ry","JsiSkRRect","RSXform","scos","ssin","tx","ty","JsiSkRSXform","Color","ContourMeasureIter","path","forceClosed","resScale","JsiSkContourMeasureIter","JsiSkPath","fromValue","Paint","paint","JsiSkPaint","setAntiAlias","PictureRecorder","JsiSkPictureRecorder","Picture","JsiSkPictureFactory","Path","JsiSkPathFactory","Matrix","matrix","JsiSkMatrix","identity","ColorFilter","JsiSkColorFilterFactory","Font","typeface","size","JsiSkFont","undefined","JsiSkTypeface","Typeface","JsiSkTypefaceFactory","MaskFilter","JsiSkMaskFilterFactory","RuntimeEffect","JsiSkRuntimeEffectFactory","ImageFilter","JsiSkImageFilterFactory","Shader","JsiSkShaderFactory","PathEffect","JsiSkPathEffectFactory","MakeVertices","bind","Data","JsiSkDataFactory","Image","JsiSkImageFactory","AnimatedImage","JsiSkAnimatedImageFactory","SVG","JsiSkSVGFactory","TextBlob","JsiSkTextBlobFactory","XYWHRect","width","height","JsiSkRect","Surface","JsiSkSurfaceFactory","TypefaceFontProvider","JsiSkTypefaceFontProviderFactory","FontMgr","JsiSkFontMgrFactory","ParagraphBuilder","JsiSkParagraphBuilderFactory"],"sources":["JsiSkia.ts"],"sourcesContent":["import type { CanvasKit } from \"canvaskit-wasm\";\n\nimport type {\n SkContourMeasureIter,\n Skia,\n SkPath,\n SkRect,\n SkRuntimeEffect,\n SkRuntimeShaderBuilder,\n SkTypeface,\n} from \"../types\";\n\nimport { JsiSkPoint } from \"./JsiSkPoint\";\nimport { JsiSkPaint } from \"./JsiSkPaint\";\nimport { JsiSkRect } from \"./JsiSkRect\";\nimport { Color } from \"./JsiSkColor\";\nimport { JsiSkSurfaceFactory } from \"./JsiSkSurfaceFactory\";\nimport { JsiSkRRect } from \"./JsiSkRRect\";\nimport { JsiSkRSXform } from \"./JsiSkRSXform\";\nimport { JsiSkContourMeasureIter } from \"./JsiSkContourMeasureIter\";\nimport { JsiSkPictureRecorder } from \"./JsiSkPictureRecorder\";\nimport { JsiSkPictureFactory } from \"./JsiSkPictureFactory\";\nimport { JsiSkPathFactory } from \"./JsiSkPathFactory\";\nimport { JsiSkMatrix } from \"./JsiSkMatrix\";\nimport { JsiSkColorFilterFactory } from \"./JsiSkColorFilterFactory\";\nimport { JsiSkTypefaceFactory } from \"./JsiSkTypefaceFactory\";\nimport { JsiSkMaskFilterFactory } from \"./JsiSkMaskFilterFactory\";\nimport { JsiSkRuntimeEffectFactory } from \"./JsiSkRuntimeEffectFactory\";\nimport { JsiSkImageFilterFactory } from \"./JsiSkImageFilterFactory\";\nimport { JsiSkShaderFactory } from \"./JsiSkShaderFactory\";\nimport { JsiSkPathEffectFactory } from \"./JsiSkPathEffectFactory\";\nimport { JsiSkDataFactory } from \"./JsiSkDataFactory\";\nimport { JsiSkImageFactory } from \"./JsiSkImageFactory\";\nimport { JsiSkSVGFactory } from \"./JsiSkSVGFactory\";\nimport { JsiSkTextBlobFactory } from \"./JsiSkTextBlobFactory\";\nimport { JsiSkFont } from \"./JsiSkFont\";\nimport { MakeVertices } from \"./JsiSkVerticesFactory\";\nimport { JsiSkPath } from \"./JsiSkPath\";\nimport { JsiSkTypeface } from \"./JsiSkTypeface\";\nimport { JsiSkTypefaceFontProviderFactory } from \"./JsiSkTypefaceFontProviderFactory\";\nimport { JsiSkFontMgrFactory } from \"./JsiSkFontMgrFactory\";\nimport { JsiSkAnimatedImageFactory } from \"./JsiSkAnimatedImageFactory\";\nimport { JsiSkParagraphBuilderFactory } from \"./JsiSkParagraphBuilderFactory\";\n\nexport const JsiSkApi = (CanvasKit: CanvasKit): Skia => ({\n Point: (x: number, y: number) =>\n new JsiSkPoint(CanvasKit, Float32Array.of(x, y)),\n RuntimeShaderBuilder: (_: SkRuntimeEffect): SkRuntimeShaderBuilder => {\n throw new Error(\"Not implemented on React Native Web\");\n },\n RRectXY: (rect: SkRect, rx: number, ry: number) =>\n new JsiSkRRect(CanvasKit, rect, rx, ry),\n RSXform: (scos: number, ssin: number, tx: number, ty: number) =>\n new JsiSkRSXform(CanvasKit, Float32Array.of(scos, ssin, tx, ty)),\n Color,\n ContourMeasureIter: (\n path: SkPath,\n forceClosed: boolean,\n resScale: number\n ): SkContourMeasureIter =>\n new JsiSkContourMeasureIter(\n CanvasKit,\n new CanvasKit.ContourMeasureIter(\n JsiSkPath.fromValue(path),\n forceClosed,\n resScale\n )\n ),\n Paint: () => {\n const paint = new JsiSkPaint(CanvasKit, new CanvasKit.Paint());\n paint.setAntiAlias(true);\n return paint;\n },\n PictureRecorder: () =>\n new JsiSkPictureRecorder(CanvasKit, new CanvasKit.PictureRecorder()),\n Picture: new JsiSkPictureFactory(CanvasKit),\n Path: new JsiSkPathFactory(CanvasKit),\n Matrix: (matrix?: readonly number[]) =>\n new JsiSkMatrix(\n CanvasKit,\n matrix\n ? Float32Array.of(...matrix)\n : Float32Array.of(...CanvasKit.Matrix.identity())\n ),\n ColorFilter: new JsiSkColorFilterFactory(CanvasKit),\n Font: (typeface?: SkTypeface, size?: number) =>\n new JsiSkFont(\n CanvasKit,\n new CanvasKit.Font(\n typeface === undefined ? null : JsiSkTypeface.fromValue(typeface),\n size\n )\n ),\n Typeface: new JsiSkTypefaceFactory(CanvasKit),\n MaskFilter: new JsiSkMaskFilterFactory(CanvasKit),\n RuntimeEffect: new JsiSkRuntimeEffectFactory(CanvasKit),\n ImageFilter: new JsiSkImageFilterFactory(CanvasKit),\n Shader: new JsiSkShaderFactory(CanvasKit),\n PathEffect: new JsiSkPathEffectFactory(CanvasKit),\n MakeVertices: MakeVertices.bind(null, CanvasKit),\n Data: new JsiSkDataFactory(CanvasKit),\n Image: new JsiSkImageFactory(CanvasKit),\n AnimatedImage: new JsiSkAnimatedImageFactory(CanvasKit),\n SVG: new JsiSkSVGFactory(CanvasKit),\n TextBlob: new JsiSkTextBlobFactory(CanvasKit),\n XYWHRect: (x: number, y: number, width: number, height: number) => {\n return new JsiSkRect(CanvasKit, CanvasKit.XYWHRect(x, y, width, height));\n },\n Surface: new JsiSkSurfaceFactory(CanvasKit),\n TypefaceFontProvider: new JsiSkTypefaceFontProviderFactory(CanvasKit),\n FontMgr: new JsiSkFontMgrFactory(CanvasKit),\n ParagraphBuilder: new JsiSkParagraphBuilderFactory(CanvasKit),\n});\n"],"mappings":"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"}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import type { PathProps, SkDOM, GroupProps, ImageProps, BlurImageFilterProps, MatrixColorFilterProps, CircleProps, BlurMaskFilterProps, LinearGradientProps, PaintProps, ShaderProps, ImageShaderProps, CustomDrawingNodeProps, LineProps, OvalProps, PatchProps, PointsProps, RectProps, RoundedRectProps, VerticesProps, TextProps, DiffRectProps, OffsetImageFilterProps, BlendColorFilterProps, TextPathProps, TextBlobProps, GlyphsProps, TwoPointConicalGradientProps, TurbulenceProps, SweepGradientProps, RadialGradientProps, FractalNoiseProps, ColorProps, PictureProps, ImageSVGProps, LerpColorFilterProps, DrawingNodeProps, BoxProps, BoxShadowProps, ChildrenProps } from "../types";
|
2
2
|
import type { BlendImageFilterProps, BlendProps, DisplacementMapImageFilterProps, DropShadowImageFilterProps, MorphologyImageFilterProps, RuntimeShaderImageFilterProps } from "../types/ImageFilters";
|
3
3
|
import type { CornerPathEffectProps, DashPathEffectProps, DiscretePathEffectProps, Line2DPathEffectProps, Path1DPathEffectProps, Path2DPathEffectProps } from "../types/PathEffects";
|
4
|
+
import type { ParagraphProps } from "../types/Paragraph";
|
4
5
|
import type { NodeContext } from "./Node";
|
5
6
|
export declare class JsiSkDOM implements SkDOM {
|
6
7
|
private ctx;
|
@@ -61,4 +62,5 @@ export declare class JsiSkDOM implements SkDOM {
|
|
61
62
|
BackdropFilter(props: ChildrenProps): import("../types").RenderNode<ChildrenProps>;
|
62
63
|
Box(props: BoxProps): import("../types").RenderNode<BoxProps>;
|
63
64
|
BoxShadow(props: BoxShadowProps): import("../types").DeclarationNode<BoxShadowProps>;
|
65
|
+
Paragraph(props: ParagraphProps): import("../types").RenderNode<ParagraphProps>;
|
64
66
|
}
|
@@ -7,6 +7,7 @@ import { MorphologyImageFilterNode } from "./paint/ImageFilters";
|
|
7
7
|
import { GroupNode } from "./GroupNode";
|
8
8
|
import { PaintNode } from "./PaintNode";
|
9
9
|
import { LayerNode } from "./LayerNode";
|
10
|
+
import { ParagraphNode } from "./drawings/ParagraphNode";
|
10
11
|
export class JsiSkDOM {
|
11
12
|
constructor(ctx) {
|
12
13
|
this.ctx = ctx;
|
@@ -240,6 +241,11 @@ export class JsiSkDOM {
|
|
240
241
|
|
241
242
|
BoxShadow(props) {
|
242
243
|
return NATIVE_DOM ? global.SkiaDomApi.BoxShadowNode(props) : new BoxShadowNode(this.ctx, props);
|
244
|
+
} // Paragraph
|
245
|
+
|
246
|
+
|
247
|
+
Paragraph(props) {
|
248
|
+
return NATIVE_DOM ? global.SkiaDomApi.ParagraphNode(props) : new ParagraphNode(this.ctx, props);
|
243
249
|
}
|
244
250
|
|
245
251
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["NATIVE_DOM","FillNode","ImageNode","CircleNode","PathNode","LineNode","PatchNode","PointsNode","RectNode","RRectNode","VerticesNode","TextNode","OvalNode","CustomDrawingNode","TextPathNode","TextBlobNode","GlyphsNode","DiffRectNode","PictureNode","ImageSVGNode","BackdropFilterNode","BoxNode","BoxShadowNode","BlendImageFilterNode","BlurImageFilterNode","BlurMaskFilterNode","DisplacementMapImageFilterNode","DropShadowImageFilterNode","OffsetImageFilterNode","RuntimeShaderImageFilterNode","CornerPathEffectNode","DiscretePathEffectNode","DashPathEffectNode","Path1DPathEffectNode","Path2DPathEffectNode","SumPathEffectNode","Line2DPathEffectNode","BlendNode","MatrixColorFilterNode","LumaColorFilterNode","LinearToSRGBGammaColorFilterNode","SRGBToLinearGammaColorFilterNode","BlendColorFilterNode","LerpColorFilterNode","LinearGradientNode","ShaderNode","ImageShaderNode","TwoPointConicalGradientNode","TurbulenceNode","SweepGradientNode","RadialGradientNode","FractalNoiseNode","ColorNode","MorphologyImageFilterNode","GroupNode","PaintNode","LayerNode","JsiSkDOM","constructor","ctx","Layer","props","global","SkiaDomApi","Group","Paint","Fill","Image","Circle","Path","CustomDrawing","Line","Oval","Patch","Points","Rect","RRect","Vertices","Text","TextPath","TextBlob","Glyphs","DiffRect","Picture","ImageSVG","BlurMaskFilter","BlendImageFilter","DropShadowImageFilter","DisplacementMapImageFilter","BlurImageFilter","OffsetImageFilter","MorphologyImageFilter","RuntimeShaderImageFilter","MatrixColorFilter","BlendColorFilter","LumaColorFilter","LinearToSRGBGammaColorFilter","SRGBToLinearGammaColorFilter","LerpColorFilter","Shader","ImageShader","ColorShader","ColorShaderNode","SweepGradient","Turbulence","FractalNoise","LinearGradient","RadialGradient","TwoPointConicalGradient","CornerPathEffect","DiscretePathEffect","DashPathEffect","Path1DPathEffect","Path2DPathEffect","SumPathEffect","Line2DPathEffect","Blend","BackdropFilter","Box","BoxShadow"],"sources":["JsiSkDOM.ts"],"sourcesContent":["import type {\n PathProps,\n SkDOM,\n GroupProps,\n ImageProps,\n BlurImageFilterProps,\n MatrixColorFilterProps,\n CircleProps,\n BlurMaskFilterProps,\n LinearGradientProps,\n PaintProps,\n ShaderProps,\n ImageShaderProps,\n CustomDrawingNodeProps,\n LineProps,\n OvalProps,\n PatchProps,\n PointsProps,\n RectProps,\n RoundedRectProps,\n VerticesProps,\n TextProps,\n DiffRectProps,\n OffsetImageFilterProps,\n BlendColorFilterProps,\n TextPathProps,\n TextBlobProps,\n GlyphsProps,\n TwoPointConicalGradientProps,\n TurbulenceProps,\n SweepGradientProps,\n RadialGradientProps,\n FractalNoiseProps,\n ColorProps,\n PictureProps,\n ImageSVGProps,\n LerpColorFilterProps,\n DrawingNodeProps,\n BoxProps,\n BoxShadowProps,\n ChildrenProps,\n} from \"../types\";\nimport type {\n BlendImageFilterProps,\n BlendProps,\n DisplacementMapImageFilterProps,\n DropShadowImageFilterProps,\n MorphologyImageFilterProps,\n RuntimeShaderImageFilterProps,\n} from \"../types/ImageFilters\";\nimport type {\n CornerPathEffectProps,\n DashPathEffectProps,\n DiscretePathEffectProps,\n Line2DPathEffectProps,\n Path1DPathEffectProps,\n Path2DPathEffectProps,\n} from \"../types/PathEffects\";\nimport { NATIVE_DOM } from \"../../renderer/HostComponents\";\n\nimport {\n FillNode,\n ImageNode,\n CircleNode,\n PathNode,\n LineNode,\n PatchNode,\n PointsNode,\n RectNode,\n RRectNode,\n VerticesNode,\n TextNode,\n OvalNode,\n CustomDrawingNode,\n TextPathNode,\n TextBlobNode,\n GlyphsNode,\n DiffRectNode,\n PictureNode,\n ImageSVGNode,\n BackdropFilterNode,\n BoxNode,\n BoxShadowNode,\n} from \"./drawings\";\nimport {\n BlendImageFilterNode,\n BlurImageFilterNode,\n BlurMaskFilterNode,\n DisplacementMapImageFilterNode,\n DropShadowImageFilterNode,\n OffsetImageFilterNode,\n RuntimeShaderImageFilterNode,\n CornerPathEffectNode,\n DiscretePathEffectNode,\n DashPathEffectNode,\n Path1DPathEffectNode,\n Path2DPathEffectNode,\n SumPathEffectNode,\n Line2DPathEffectNode,\n BlendNode,\n} from \"./paint\";\nimport {\n MatrixColorFilterNode,\n LumaColorFilterNode,\n LinearToSRGBGammaColorFilterNode,\n SRGBToLinearGammaColorFilterNode,\n BlendColorFilterNode,\n LerpColorFilterNode,\n} from \"./paint/ColorFilters\";\nimport {\n LinearGradientNode,\n ShaderNode,\n ImageShaderNode,\n TwoPointConicalGradientNode,\n TurbulenceNode,\n SweepGradientNode,\n RadialGradientNode,\n FractalNoiseNode,\n ColorNode,\n} from \"./paint/Shaders\";\nimport { MorphologyImageFilterNode } from \"./paint/ImageFilters\";\nimport { GroupNode } from \"./GroupNode\";\nimport { PaintNode } from \"./PaintNode\";\nimport type { NodeContext } from \"./Node\";\nimport { LayerNode } from \"./LayerNode\";\n\nexport class JsiSkDOM implements SkDOM {\n constructor(private ctx: NodeContext) {}\n\n Layer(props?: ChildrenProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.LayerNode(props ?? {})\n : new LayerNode(this.ctx, props ?? {});\n }\n\n Group(props?: GroupProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.GroupNode(props ?? {})\n : new GroupNode(this.ctx, props ?? {});\n }\n\n Paint(props: PaintProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.PaintNode(props ?? {})\n : new PaintNode(this.ctx, props);\n }\n\n // Drawings\n Fill(props?: DrawingNodeProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.FillNode(props ?? {})\n : new FillNode(this.ctx, props);\n }\n\n Image(props: ImageProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ImageNode(props ?? {})\n : new ImageNode(this.ctx, props);\n }\n\n Circle(props: CircleProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.CircleNode(props ?? {})\n : new CircleNode(this.ctx, props);\n }\n\n Path(props: PathProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.PathNode(props ?? {})\n : new PathNode(this.ctx, props);\n }\n\n CustomDrawing(props: CustomDrawingNodeProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.CustomDrawingNode(props ?? {})\n : new CustomDrawingNode(this.ctx, props);\n }\n\n Line(props: LineProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.LineNode(props ?? {})\n : new LineNode(this.ctx, props);\n }\n\n Oval(props: OvalProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.OvalNode(props ?? {})\n : new OvalNode(this.ctx, props);\n }\n\n Patch(props: PatchProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.PatchNode(props ?? {})\n : new PatchNode(this.ctx, props);\n }\n\n Points(props: PointsProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.PointsNode(props ?? {})\n : new PointsNode(this.ctx, props);\n }\n\n Rect(props: RectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.RectNode(props)\n : new RectNode(this.ctx, props);\n }\n\n RRect(props: RoundedRectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.RRectNode(props)\n : new RRectNode(this.ctx, props);\n }\n\n Vertices(props: VerticesProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.VerticesNode(props)\n : new VerticesNode(this.ctx, props);\n }\n\n Text(props: TextProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.TextNode(props)\n : new TextNode(this.ctx, props);\n }\n\n TextPath(props: TextPathProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.TextPathNode(props)\n : new TextPathNode(this.ctx, props);\n }\n\n TextBlob(props: TextBlobProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.TextBlobNode(props)\n : new TextBlobNode(this.ctx, props);\n }\n\n Glyphs(props: GlyphsProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.GlyphsNode(props)\n : new GlyphsNode(this.ctx, props);\n }\n\n DiffRect(props: DiffRectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.DiffRectNode(props)\n : new DiffRectNode(this.ctx, props);\n }\n\n Picture(props: PictureProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.PictureNode(props)\n : new PictureNode(this.ctx, props);\n }\n\n ImageSVG(props: ImageSVGProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ImageSVGNode(props)\n : new ImageSVGNode(this.ctx, props);\n }\n\n // BlurMaskFilters\n BlurMaskFilter(props: BlurMaskFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BlurMaskFilterNode(props)\n : new BlurMaskFilterNode(this.ctx, props);\n }\n\n // ImageFilters\n BlendImageFilter(props: BlendImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BlendImageFilterNode(props)\n : new BlendImageFilterNode(this.ctx, props);\n }\n\n DropShadowImageFilter(props: DropShadowImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.DropShadowImageFilterNode(props)\n : new DropShadowImageFilterNode(this.ctx, props);\n }\n\n DisplacementMapImageFilter(props: DisplacementMapImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.DisplacementMapImageFilterNode(props)\n : new DisplacementMapImageFilterNode(this.ctx, props);\n }\n\n BlurImageFilter(props: BlurImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BlurImageFilterNode(props)\n : new BlurImageFilterNode(this.ctx, props);\n }\n\n OffsetImageFilter(props: OffsetImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.OffsetImageFilterNode(props)\n : new OffsetImageFilterNode(this.ctx, props);\n }\n\n MorphologyImageFilter(props: MorphologyImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.MorphologyImageFilterNode(props)\n : new MorphologyImageFilterNode(this.ctx, props);\n }\n\n RuntimeShaderImageFilter(props: RuntimeShaderImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.RuntimeShaderImageFilterNode(props)\n : new RuntimeShaderImageFilterNode(this.ctx, props);\n }\n\n // Color Filters\n MatrixColorFilter(props: MatrixColorFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.MatrixColorFilterNode(props)\n : new MatrixColorFilterNode(this.ctx, props);\n }\n\n BlendColorFilter(props: BlendColorFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BlendColorFilterNode(props)\n : new BlendColorFilterNode(this.ctx, props);\n }\n\n LumaColorFilter() {\n return NATIVE_DOM\n ? global.SkiaDomApi.LumaColorFilterNode()\n : new LumaColorFilterNode(this.ctx);\n }\n\n LinearToSRGBGammaColorFilter() {\n return global.SkiaDomApi &&\n global.SkiaDomApi.LinearToSRGBGammaColorFilterNode\n ? global.SkiaDomApi.LinearToSRGBGammaColorFilterNode()\n : new LinearToSRGBGammaColorFilterNode(this.ctx);\n }\n\n SRGBToLinearGammaColorFilter() {\n return global.SkiaDomApi &&\n global.SkiaDomApi.SRGBToLinearGammaColorFilterNode\n ? global.SkiaDomApi.SRGBToLinearGammaColorFilterNode()\n : new SRGBToLinearGammaColorFilterNode(this.ctx);\n }\n\n LerpColorFilter(props: LerpColorFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.LerpColorFilterNode(props)\n : new LerpColorFilterNode(this.ctx, props);\n }\n\n // Shaders\n Shader(props: ShaderProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ShaderNode(props)\n : new ShaderNode(this.ctx, props);\n }\n\n ImageShader(props: ImageShaderProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ImageShaderNode(props)\n : new ImageShaderNode(this.ctx, props);\n }\n\n ColorShader(props: ColorProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ColorShaderNode(props)\n : new ColorNode(this.ctx, props);\n }\n\n SweepGradient(props: SweepGradientProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.SweepGradientNode(props)\n : new SweepGradientNode(this.ctx, props);\n }\n\n Turbulence(props: TurbulenceProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.TurbulenceNode(props)\n : new TurbulenceNode(this.ctx, props);\n }\n\n FractalNoise(props: FractalNoiseProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.FractalNoiseNode(props)\n : new FractalNoiseNode(this.ctx, props);\n }\n\n LinearGradient(props: LinearGradientProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.LinearGradientNode(props)\n : new LinearGradientNode(this.ctx, props);\n }\n\n RadialGradient(props: RadialGradientProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.RadialGradientNode(props)\n : new RadialGradientNode(this.ctx, props);\n }\n\n TwoPointConicalGradient(props: TwoPointConicalGradientProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.TwoPointConicalGradientNode(props)\n : new TwoPointConicalGradientNode(this.ctx, props);\n }\n\n // Path Effects\n CornerPathEffect(props: CornerPathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.CornerPathEffectNode(props)\n : new CornerPathEffectNode(this.ctx, props);\n }\n\n DiscretePathEffect(props: DiscretePathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.DiscretePathEffectNode(props)\n : new DiscretePathEffectNode(this.ctx, props);\n }\n\n DashPathEffect(props: DashPathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.DashPathEffectNode(props)\n : new DashPathEffectNode(this.ctx, props);\n }\n\n Path1DPathEffect(props: Path1DPathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.Path1DPathEffectNode(props)\n : new Path1DPathEffectNode(this.ctx, props);\n }\n\n Path2DPathEffect(props: Path2DPathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.Path2DPathEffectNode(props)\n : new Path2DPathEffectNode(this.ctx, props);\n }\n\n SumPathEffect() {\n return NATIVE_DOM\n ? global.SkiaDomApi.SumPathEffectNode()\n : new SumPathEffectNode(this.ctx);\n }\n\n Line2DPathEffect(props: Line2DPathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.Line2DPathEffectNode(props)\n : new Line2DPathEffectNode(this.ctx, props);\n }\n\n Blend(props: BlendProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BlendNode(props)\n : new BlendNode(this.ctx, props);\n }\n\n BackdropFilter(props: ChildrenProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BackdropFilterNode(props)\n : new BackdropFilterNode(this.ctx, props);\n }\n\n Box(props: BoxProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BoxNode(props)\n : new BoxNode(this.ctx, props);\n }\n\n BoxShadow(props: BoxShadowProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BoxShadowNode(props)\n : new BoxShadowNode(this.ctx, props);\n }\n}\n"],"mappings":"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"}
|
1
|
+
{"version":3,"names":["NATIVE_DOM","FillNode","ImageNode","CircleNode","PathNode","LineNode","PatchNode","PointsNode","RectNode","RRectNode","VerticesNode","TextNode","OvalNode","CustomDrawingNode","TextPathNode","TextBlobNode","GlyphsNode","DiffRectNode","PictureNode","ImageSVGNode","BackdropFilterNode","BoxNode","BoxShadowNode","BlendImageFilterNode","BlurImageFilterNode","BlurMaskFilterNode","DisplacementMapImageFilterNode","DropShadowImageFilterNode","OffsetImageFilterNode","RuntimeShaderImageFilterNode","CornerPathEffectNode","DiscretePathEffectNode","DashPathEffectNode","Path1DPathEffectNode","Path2DPathEffectNode","SumPathEffectNode","Line2DPathEffectNode","BlendNode","MatrixColorFilterNode","LumaColorFilterNode","LinearToSRGBGammaColorFilterNode","SRGBToLinearGammaColorFilterNode","BlendColorFilterNode","LerpColorFilterNode","LinearGradientNode","ShaderNode","ImageShaderNode","TwoPointConicalGradientNode","TurbulenceNode","SweepGradientNode","RadialGradientNode","FractalNoiseNode","ColorNode","MorphologyImageFilterNode","GroupNode","PaintNode","LayerNode","ParagraphNode","JsiSkDOM","constructor","ctx","Layer","props","global","SkiaDomApi","Group","Paint","Fill","Image","Circle","Path","CustomDrawing","Line","Oval","Patch","Points","Rect","RRect","Vertices","Text","TextPath","TextBlob","Glyphs","DiffRect","Picture","ImageSVG","BlurMaskFilter","BlendImageFilter","DropShadowImageFilter","DisplacementMapImageFilter","BlurImageFilter","OffsetImageFilter","MorphologyImageFilter","RuntimeShaderImageFilter","MatrixColorFilter","BlendColorFilter","LumaColorFilter","LinearToSRGBGammaColorFilter","SRGBToLinearGammaColorFilter","LerpColorFilter","Shader","ImageShader","ColorShader","ColorShaderNode","SweepGradient","Turbulence","FractalNoise","LinearGradient","RadialGradient","TwoPointConicalGradient","CornerPathEffect","DiscretePathEffect","DashPathEffect","Path1DPathEffect","Path2DPathEffect","SumPathEffect","Line2DPathEffect","Blend","BackdropFilter","Box","BoxShadow","Paragraph"],"sources":["JsiSkDOM.ts"],"sourcesContent":["import type {\n PathProps,\n SkDOM,\n GroupProps,\n ImageProps,\n BlurImageFilterProps,\n MatrixColorFilterProps,\n CircleProps,\n BlurMaskFilterProps,\n LinearGradientProps,\n PaintProps,\n ShaderProps,\n ImageShaderProps,\n CustomDrawingNodeProps,\n LineProps,\n OvalProps,\n PatchProps,\n PointsProps,\n RectProps,\n RoundedRectProps,\n VerticesProps,\n TextProps,\n DiffRectProps,\n OffsetImageFilterProps,\n BlendColorFilterProps,\n TextPathProps,\n TextBlobProps,\n GlyphsProps,\n TwoPointConicalGradientProps,\n TurbulenceProps,\n SweepGradientProps,\n RadialGradientProps,\n FractalNoiseProps,\n ColorProps,\n PictureProps,\n ImageSVGProps,\n LerpColorFilterProps,\n DrawingNodeProps,\n BoxProps,\n BoxShadowProps,\n ChildrenProps,\n} from \"../types\";\nimport type {\n BlendImageFilterProps,\n BlendProps,\n DisplacementMapImageFilterProps,\n DropShadowImageFilterProps,\n MorphologyImageFilterProps,\n RuntimeShaderImageFilterProps,\n} from \"../types/ImageFilters\";\nimport type {\n CornerPathEffectProps,\n DashPathEffectProps,\n DiscretePathEffectProps,\n Line2DPathEffectProps,\n Path1DPathEffectProps,\n Path2DPathEffectProps,\n} from \"../types/PathEffects\";\nimport { NATIVE_DOM } from \"../../renderer/HostComponents\";\nimport type { ParagraphProps } from \"../types/Paragraph\";\n\nimport {\n FillNode,\n ImageNode,\n CircleNode,\n PathNode,\n LineNode,\n PatchNode,\n PointsNode,\n RectNode,\n RRectNode,\n VerticesNode,\n TextNode,\n OvalNode,\n CustomDrawingNode,\n TextPathNode,\n TextBlobNode,\n GlyphsNode,\n DiffRectNode,\n PictureNode,\n ImageSVGNode,\n BackdropFilterNode,\n BoxNode,\n BoxShadowNode,\n} from \"./drawings\";\nimport {\n BlendImageFilterNode,\n BlurImageFilterNode,\n BlurMaskFilterNode,\n DisplacementMapImageFilterNode,\n DropShadowImageFilterNode,\n OffsetImageFilterNode,\n RuntimeShaderImageFilterNode,\n CornerPathEffectNode,\n DiscretePathEffectNode,\n DashPathEffectNode,\n Path1DPathEffectNode,\n Path2DPathEffectNode,\n SumPathEffectNode,\n Line2DPathEffectNode,\n BlendNode,\n} from \"./paint\";\nimport {\n MatrixColorFilterNode,\n LumaColorFilterNode,\n LinearToSRGBGammaColorFilterNode,\n SRGBToLinearGammaColorFilterNode,\n BlendColorFilterNode,\n LerpColorFilterNode,\n} from \"./paint/ColorFilters\";\nimport {\n LinearGradientNode,\n ShaderNode,\n ImageShaderNode,\n TwoPointConicalGradientNode,\n TurbulenceNode,\n SweepGradientNode,\n RadialGradientNode,\n FractalNoiseNode,\n ColorNode,\n} from \"./paint/Shaders\";\nimport { MorphologyImageFilterNode } from \"./paint/ImageFilters\";\nimport { GroupNode } from \"./GroupNode\";\nimport { PaintNode } from \"./PaintNode\";\nimport type { NodeContext } from \"./Node\";\nimport { LayerNode } from \"./LayerNode\";\nimport { ParagraphNode } from \"./drawings/ParagraphNode\";\n\nexport class JsiSkDOM implements SkDOM {\n constructor(private ctx: NodeContext) {}\n\n Layer(props?: ChildrenProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.LayerNode(props ?? {})\n : new LayerNode(this.ctx, props ?? {});\n }\n\n Group(props?: GroupProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.GroupNode(props ?? {})\n : new GroupNode(this.ctx, props ?? {});\n }\n\n Paint(props: PaintProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.PaintNode(props ?? {})\n : new PaintNode(this.ctx, props);\n }\n\n // Drawings\n Fill(props?: DrawingNodeProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.FillNode(props ?? {})\n : new FillNode(this.ctx, props);\n }\n\n Image(props: ImageProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ImageNode(props ?? {})\n : new ImageNode(this.ctx, props);\n }\n\n Circle(props: CircleProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.CircleNode(props ?? {})\n : new CircleNode(this.ctx, props);\n }\n\n Path(props: PathProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.PathNode(props ?? {})\n : new PathNode(this.ctx, props);\n }\n\n CustomDrawing(props: CustomDrawingNodeProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.CustomDrawingNode(props ?? {})\n : new CustomDrawingNode(this.ctx, props);\n }\n\n Line(props: LineProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.LineNode(props ?? {})\n : new LineNode(this.ctx, props);\n }\n\n Oval(props: OvalProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.OvalNode(props ?? {})\n : new OvalNode(this.ctx, props);\n }\n\n Patch(props: PatchProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.PatchNode(props ?? {})\n : new PatchNode(this.ctx, props);\n }\n\n Points(props: PointsProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.PointsNode(props ?? {})\n : new PointsNode(this.ctx, props);\n }\n\n Rect(props: RectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.RectNode(props)\n : new RectNode(this.ctx, props);\n }\n\n RRect(props: RoundedRectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.RRectNode(props)\n : new RRectNode(this.ctx, props);\n }\n\n Vertices(props: VerticesProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.VerticesNode(props)\n : new VerticesNode(this.ctx, props);\n }\n\n Text(props: TextProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.TextNode(props)\n : new TextNode(this.ctx, props);\n }\n\n TextPath(props: TextPathProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.TextPathNode(props)\n : new TextPathNode(this.ctx, props);\n }\n\n TextBlob(props: TextBlobProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.TextBlobNode(props)\n : new TextBlobNode(this.ctx, props);\n }\n\n Glyphs(props: GlyphsProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.GlyphsNode(props)\n : new GlyphsNode(this.ctx, props);\n }\n\n DiffRect(props: DiffRectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.DiffRectNode(props)\n : new DiffRectNode(this.ctx, props);\n }\n\n Picture(props: PictureProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.PictureNode(props)\n : new PictureNode(this.ctx, props);\n }\n\n ImageSVG(props: ImageSVGProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ImageSVGNode(props)\n : new ImageSVGNode(this.ctx, props);\n }\n\n // BlurMaskFilters\n BlurMaskFilter(props: BlurMaskFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BlurMaskFilterNode(props)\n : new BlurMaskFilterNode(this.ctx, props);\n }\n\n // ImageFilters\n BlendImageFilter(props: BlendImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BlendImageFilterNode(props)\n : new BlendImageFilterNode(this.ctx, props);\n }\n\n DropShadowImageFilter(props: DropShadowImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.DropShadowImageFilterNode(props)\n : new DropShadowImageFilterNode(this.ctx, props);\n }\n\n DisplacementMapImageFilter(props: DisplacementMapImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.DisplacementMapImageFilterNode(props)\n : new DisplacementMapImageFilterNode(this.ctx, props);\n }\n\n BlurImageFilter(props: BlurImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BlurImageFilterNode(props)\n : new BlurImageFilterNode(this.ctx, props);\n }\n\n OffsetImageFilter(props: OffsetImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.OffsetImageFilterNode(props)\n : new OffsetImageFilterNode(this.ctx, props);\n }\n\n MorphologyImageFilter(props: MorphologyImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.MorphologyImageFilterNode(props)\n : new MorphologyImageFilterNode(this.ctx, props);\n }\n\n RuntimeShaderImageFilter(props: RuntimeShaderImageFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.RuntimeShaderImageFilterNode(props)\n : new RuntimeShaderImageFilterNode(this.ctx, props);\n }\n\n // Color Filters\n MatrixColorFilter(props: MatrixColorFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.MatrixColorFilterNode(props)\n : new MatrixColorFilterNode(this.ctx, props);\n }\n\n BlendColorFilter(props: BlendColorFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BlendColorFilterNode(props)\n : new BlendColorFilterNode(this.ctx, props);\n }\n\n LumaColorFilter() {\n return NATIVE_DOM\n ? global.SkiaDomApi.LumaColorFilterNode()\n : new LumaColorFilterNode(this.ctx);\n }\n\n LinearToSRGBGammaColorFilter() {\n return global.SkiaDomApi &&\n global.SkiaDomApi.LinearToSRGBGammaColorFilterNode\n ? global.SkiaDomApi.LinearToSRGBGammaColorFilterNode()\n : new LinearToSRGBGammaColorFilterNode(this.ctx);\n }\n\n SRGBToLinearGammaColorFilter() {\n return global.SkiaDomApi &&\n global.SkiaDomApi.SRGBToLinearGammaColorFilterNode\n ? global.SkiaDomApi.SRGBToLinearGammaColorFilterNode()\n : new SRGBToLinearGammaColorFilterNode(this.ctx);\n }\n\n LerpColorFilter(props: LerpColorFilterProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.LerpColorFilterNode(props)\n : new LerpColorFilterNode(this.ctx, props);\n }\n\n // Shaders\n Shader(props: ShaderProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ShaderNode(props)\n : new ShaderNode(this.ctx, props);\n }\n\n ImageShader(props: ImageShaderProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ImageShaderNode(props)\n : new ImageShaderNode(this.ctx, props);\n }\n\n ColorShader(props: ColorProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ColorShaderNode(props)\n : new ColorNode(this.ctx, props);\n }\n\n SweepGradient(props: SweepGradientProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.SweepGradientNode(props)\n : new SweepGradientNode(this.ctx, props);\n }\n\n Turbulence(props: TurbulenceProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.TurbulenceNode(props)\n : new TurbulenceNode(this.ctx, props);\n }\n\n FractalNoise(props: FractalNoiseProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.FractalNoiseNode(props)\n : new FractalNoiseNode(this.ctx, props);\n }\n\n LinearGradient(props: LinearGradientProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.LinearGradientNode(props)\n : new LinearGradientNode(this.ctx, props);\n }\n\n RadialGradient(props: RadialGradientProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.RadialGradientNode(props)\n : new RadialGradientNode(this.ctx, props);\n }\n\n TwoPointConicalGradient(props: TwoPointConicalGradientProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.TwoPointConicalGradientNode(props)\n : new TwoPointConicalGradientNode(this.ctx, props);\n }\n\n // Path Effects\n CornerPathEffect(props: CornerPathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.CornerPathEffectNode(props)\n : new CornerPathEffectNode(this.ctx, props);\n }\n\n DiscretePathEffect(props: DiscretePathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.DiscretePathEffectNode(props)\n : new DiscretePathEffectNode(this.ctx, props);\n }\n\n DashPathEffect(props: DashPathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.DashPathEffectNode(props)\n : new DashPathEffectNode(this.ctx, props);\n }\n\n Path1DPathEffect(props: Path1DPathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.Path1DPathEffectNode(props)\n : new Path1DPathEffectNode(this.ctx, props);\n }\n\n Path2DPathEffect(props: Path2DPathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.Path2DPathEffectNode(props)\n : new Path2DPathEffectNode(this.ctx, props);\n }\n\n SumPathEffect() {\n return NATIVE_DOM\n ? global.SkiaDomApi.SumPathEffectNode()\n : new SumPathEffectNode(this.ctx);\n }\n\n Line2DPathEffect(props: Line2DPathEffectProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.Line2DPathEffectNode(props)\n : new Line2DPathEffectNode(this.ctx, props);\n }\n\n Blend(props: BlendProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BlendNode(props)\n : new BlendNode(this.ctx, props);\n }\n\n BackdropFilter(props: ChildrenProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BackdropFilterNode(props)\n : new BackdropFilterNode(this.ctx, props);\n }\n\n Box(props: BoxProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BoxNode(props)\n : new BoxNode(this.ctx, props);\n }\n\n BoxShadow(props: BoxShadowProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.BoxShadowNode(props)\n : new BoxShadowNode(this.ctx, props);\n }\n\n // Paragraph\n Paragraph(props: ParagraphProps) {\n return NATIVE_DOM\n ? global.SkiaDomApi.ParagraphNode(props)\n : new ParagraphNode(this.ctx, props);\n }\n}\n"],"mappings":"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"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import type { DrawingContext, ParagraphProps } from "../../types";
|
2
|
+
import { JsiDrawingNode } from "../DrawingNode";
|
3
|
+
import type { NodeContext } from "../Node";
|
4
|
+
export declare class ParagraphNode extends JsiDrawingNode<ParagraphProps, null> {
|
5
|
+
constructor(ctx: NodeContext, props: ParagraphProps);
|
6
|
+
deriveProps(): null;
|
7
|
+
draw({ canvas }: DrawingContext): void;
|
8
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import { NodeType } from "../../types";
|
2
|
+
import { JsiDrawingNode } from "../DrawingNode";
|
3
|
+
export class ParagraphNode extends JsiDrawingNode {
|
4
|
+
constructor(ctx, props) {
|
5
|
+
super(ctx, NodeType.Paragraph, props);
|
6
|
+
}
|
7
|
+
|
8
|
+
deriveProps() {
|
9
|
+
return null;
|
10
|
+
}
|
11
|
+
|
12
|
+
draw(_ref) {
|
13
|
+
let {
|
14
|
+
canvas
|
15
|
+
} = _ref;
|
16
|
+
const {
|
17
|
+
paragraph,
|
18
|
+
x,
|
19
|
+
y,
|
20
|
+
width
|
21
|
+
} = this.props;
|
22
|
+
|
23
|
+
if (paragraph) {
|
24
|
+
paragraph.layout(width);
|
25
|
+
paragraph.paint(canvas, x, y);
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
}
|
30
|
+
//# sourceMappingURL=ParagraphNode.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["NodeType","JsiDrawingNode","ParagraphNode","constructor","ctx","props","Paragraph","deriveProps","draw","canvas","paragraph","x","y","width","layout","paint"],"sources":["ParagraphNode.ts"],"sourcesContent":["import type { DrawingContext, ParagraphProps } from \"../../types\";\nimport { NodeType } from \"../../types\";\nimport { JsiDrawingNode } from \"../DrawingNode\";\nimport type { NodeContext } from \"../Node\";\n\nexport class ParagraphNode extends JsiDrawingNode<ParagraphProps, null> {\n constructor(ctx: NodeContext, props: ParagraphProps) {\n super(ctx, NodeType.Paragraph, props);\n }\n\n deriveProps() {\n return null;\n }\n\n draw({ canvas }: DrawingContext) {\n const { paragraph, x, y, width } = this.props;\n if (paragraph) {\n paragraph.layout(width);\n paragraph.paint(canvas, x, y);\n }\n }\n}\n"],"mappings":"AACA,SAASA,QAAT,QAAyB,aAAzB;AACA,SAASC,cAAT,QAA+B,gBAA/B;AAGA,OAAO,MAAMC,aAAN,SAA4BD,cAA5B,CAAiE;EACtEE,WAAW,CAACC,GAAD,EAAmBC,KAAnB,EAA0C;IACnD,MAAMD,GAAN,EAAWJ,QAAQ,CAACM,SAApB,EAA+BD,KAA/B;EACD;;EAEDE,WAAW,GAAG;IACZ,OAAO,IAAP;EACD;;EAEDC,IAAI,OAA6B;IAAA,IAA5B;MAAEC;IAAF,CAA4B;IAC/B,MAAM;MAAEC,SAAF;MAAaC,CAAb;MAAgBC,CAAhB;MAAmBC;IAAnB,IAA6B,KAAKR,KAAxC;;IACA,IAAIK,SAAJ,EAAe;MACbA,SAAS,CAACI,MAAV,CAAiBD,KAAjB;MACAH,SAAS,CAACK,KAAV,CAAgBN,MAAhB,EAAwBE,CAAxB,EAA2BC,CAA3B;IACD;EACF;;AAfqE"}
|
@@ -54,7 +54,8 @@ export declare const enum NodeType {
|
|
54
54
|
TextBlob = "skTextBlob",
|
55
55
|
Glyphs = "skGlyphs",
|
56
56
|
Picture = "skPicture",
|
57
|
-
ImageSVG = "skImageSVG"
|
57
|
+
ImageSVG = "skImageSVG",
|
58
|
+
Paragraph = "skParagraph"
|
58
59
|
}
|
59
60
|
export declare const enum DeclarationType {
|
60
61
|
Paint = 0,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["NodeType","DeclarationType"],"sources":["NodeType.ts"],"sourcesContent":["export const enum NodeType {\n // Shaders\n Layer = \"skLayer\",\n Shader = \"skShader\",\n ImageShader = \"skImageShader\",\n ColorShader = \"skColorShader\",\n Turbulence = \"skTurbulence\",\n FractalNoise = \"skFractalNoise\",\n LinearGradient = \"skLinearGradient\",\n RadialGradient = \"skRadialGradient\",\n SweepGradient = \"skSweepGradient\",\n TwoPointConicalGradient = \"skTwoPointConicalGradient\",\n\n // Mask Filters\n BlurMaskFilter = \"skBlurMaskFilter\",\n\n // Path Effects\n DiscretePathEffect = \"skDiscretePathEffect\",\n DashPathEffect = \"skDashPathEffect\",\n Path1DPathEffect = \"skPath1DPathEffect\",\n Path2DPathEffect = \"skPath2DPathEffect\",\n CornerPathEffect = \"skCornerPathEffect\",\n SumPathEffect = \"skSumPathEffect\",\n Line2DPathEffect = \"skLine2DPathEffect\",\n\n // Color Filters\n MatrixColorFilter = \"skMatrixColorFilter\",\n BlendColorFilter = \"skBlendColorFilter\",\n LinearToSRGBGammaColorFilter = \"skLinearToSRGBGammaColorFilter\",\n SRGBToLinearGammaColorFilter = \"skSRGBToLinearGammaColorFilter\",\n LumaColorFilter = \"skLumaColorFilter\",\n LerpColorFilter = \"skLerpColorFilter\",\n\n // Image Filters\n OffsetImageFilter = \"skOffsetImageFilter\",\n DisplacementMapImageFilter = \"skDisplacementMapImageFilter\",\n BlurImageFilter = \"skBlurImageFilter\",\n DropShadowImageFilter = \"skDropShadowImageFilter\",\n MorphologyImageFilter = \"skMorphologyImageFilter\",\n BlendImageFilter = \"skBlendImageFilter\",\n RuntimeShaderImageFilter = \"skRuntimeShaderImageFilter\",\n\n // Mixed\n Blend = \"skBlend\",\n BackdropFilter = \"skBackdropFilter\",\n Box = \"skBox\",\n BoxShadow = \"skBoxShadow\",\n\n // Drawings\n Group = \"skGroup\",\n Drawing = \"skDrawing\",\n Paint = \"skPaint\",\n Circle = \"skCircle\",\n Fill = \"skFill\",\n Image = \"skImage\",\n Points = \"skPoints\",\n Path = \"skPath\",\n Rect = \"skRect\",\n RRect = \"skRRect\",\n Oval = \"skOval\",\n Line = \"skLine\",\n Patch = \"skPatch\",\n Vertices = \"skVertices\",\n DiffRect = \"skDiffRect\",\n Text = \"skText\",\n TextPath = \"skTextPath\",\n TextBlob = \"skTextBlob\",\n Glyphs = \"skGlyphs\",\n Picture = \"skPicture\",\n ImageSVG = \"skImageSVG\",\n}\n\nexport const enum DeclarationType {\n Paint,\n Shader,\n ImageFilter,\n ColorFilter,\n PathEffect,\n MaskFilter,\n Unknown,\n}\n"],"mappings":"AAAA,WAAkBA,QAAlB;;WAAkBA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;GAAAA,Q,KAAAA,Q;;
|
1
|
+
{"version":3,"names":["NodeType","DeclarationType"],"sources":["NodeType.ts"],"sourcesContent":["export const enum NodeType {\n // Shaders\n Layer = \"skLayer\",\n Shader = \"skShader\",\n ImageShader = \"skImageShader\",\n ColorShader = \"skColorShader\",\n Turbulence = \"skTurbulence\",\n FractalNoise = \"skFractalNoise\",\n LinearGradient = \"skLinearGradient\",\n RadialGradient = \"skRadialGradient\",\n SweepGradient = \"skSweepGradient\",\n TwoPointConicalGradient = \"skTwoPointConicalGradient\",\n\n // Mask Filters\n BlurMaskFilter = \"skBlurMaskFilter\",\n\n // Path Effects\n DiscretePathEffect = \"skDiscretePathEffect\",\n DashPathEffect = \"skDashPathEffect\",\n Path1DPathEffect = \"skPath1DPathEffect\",\n Path2DPathEffect = \"skPath2DPathEffect\",\n CornerPathEffect = \"skCornerPathEffect\",\n SumPathEffect = \"skSumPathEffect\",\n Line2DPathEffect = \"skLine2DPathEffect\",\n\n // Color Filters\n MatrixColorFilter = \"skMatrixColorFilter\",\n BlendColorFilter = \"skBlendColorFilter\",\n LinearToSRGBGammaColorFilter = \"skLinearToSRGBGammaColorFilter\",\n SRGBToLinearGammaColorFilter = \"skSRGBToLinearGammaColorFilter\",\n LumaColorFilter = \"skLumaColorFilter\",\n LerpColorFilter = \"skLerpColorFilter\",\n\n // Image Filters\n OffsetImageFilter = \"skOffsetImageFilter\",\n DisplacementMapImageFilter = \"skDisplacementMapImageFilter\",\n BlurImageFilter = \"skBlurImageFilter\",\n DropShadowImageFilter = \"skDropShadowImageFilter\",\n MorphologyImageFilter = \"skMorphologyImageFilter\",\n BlendImageFilter = \"skBlendImageFilter\",\n RuntimeShaderImageFilter = \"skRuntimeShaderImageFilter\",\n\n // Mixed\n Blend = \"skBlend\",\n BackdropFilter = \"skBackdropFilter\",\n Box = \"skBox\",\n BoxShadow = \"skBoxShadow\",\n\n // Drawings\n Group = \"skGroup\",\n Drawing = \"skDrawing\",\n Paint = \"skPaint\",\n Circle = \"skCircle\",\n Fill = \"skFill\",\n Image = \"skImage\",\n Points = \"skPoints\",\n Path = \"skPath\",\n Rect = \"skRect\",\n RRect = \"skRRect\",\n Oval = \"skOval\",\n Line = \"skLine\",\n Patch = \"skPatch\",\n Vertices = \"skVertices\",\n DiffRect = \"skDiffRect\",\n Text = \"skText\",\n TextPath = \"skTextPath\",\n TextBlob = \"skTextBlob\",\n Glyphs = \"skGlyphs\",\n Picture = \"skPicture\",\n ImageSVG = \"skImageSVG\",\n\n // Paragraph\n Paragraph = \"skParagraph\",\n}\n\nexport const enum DeclarationType {\n Paint,\n Shader,\n ImageFilter,\n ColorFilter,\n PathEffect,\n MaskFilter,\n Unknown,\n}\n"],"mappings":"AAAA,WAAkBA,QAAlB;;WAAkBA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;GAAAA,Q,KAAAA,Q;;AA2ElB,WAAkBC,eAAlB;;WAAkBA,e;EAAAA,e,CAAAA,e;EAAAA,e,CAAAA,e;EAAAA,e,CAAAA,e;EAAAA,e,CAAAA,e;EAAAA,e,CAAAA,e;EAAAA,e,CAAAA,e;EAAAA,e,CAAAA,e;GAAAA,e,KAAAA,e"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":[],"sources":["Paragraph.ts"],"sourcesContent":["import type { SkParagraph } from \"../../skia/types/Paragraph\";\n\nimport type { GroupProps } from \"./Common\";\n\nexport interface ParagraphProps extends GroupProps {\n paragraph: SkParagraph | null;\n x: number;\n y: number;\n width: number;\n}\n"],"mappings":""}
|
@@ -6,6 +6,7 @@ import type { ImageProps, CircleProps, PathProps, CustomDrawingNodeProps, LinePr
|
|
6
6
|
import type { BlurMaskFilterProps } from "./MaskFilters";
|
7
7
|
import type { FractalNoiseProps, SweepGradientProps, ImageShaderProps, LinearGradientProps, ShaderProps, TurbulenceProps, TwoPointConicalGradientProps, RadialGradientProps, ColorProps } from "./Shaders";
|
8
8
|
import type { CornerPathEffectProps, DashPathEffectProps, DiscretePathEffectProps, Line2DPathEffectProps, Path1DPathEffectProps, Path2DPathEffectProps } from "./PathEffects";
|
9
|
+
import type { ParagraphProps } from "./Paragraph";
|
9
10
|
type ImageFilterNode<P> = DeclarationNode<P>;
|
10
11
|
type PathEffectNode<P> = DeclarationNode<P>;
|
11
12
|
type NullablePathEffectNode<P> = DeclarationNode<P>;
|
@@ -67,5 +68,6 @@ export interface SkDOM {
|
|
67
68
|
BackdropFilter(props: ChildrenProps): RenderNode<ChildrenProps>;
|
68
69
|
Box(props: BoxProps): RenderNode<BoxProps>;
|
69
70
|
BoxShadow(props: BoxShadowProps): DeclarationNode<BoxShadowProps>;
|
71
|
+
Paragraph(props: ParagraphProps): RenderNode<ParagraphProps>;
|
70
72
|
}
|
71
73
|
export {};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":[],"sources":["SkDOM.ts"],"sourcesContent":["import type { ChildrenProps, GroupProps, PaintProps } from \"./Common\";\nimport type {\n BlendImageFilterProps,\n BlurImageFilterProps,\n DropShadowImageFilterProps,\n OffsetImageFilterProps,\n RuntimeShaderImageFilterProps,\n DisplacementMapImageFilterProps,\n MorphologyImageFilterProps,\n BlendProps,\n} from \"./ImageFilters\";\nimport type { DeclarationNode, RenderNode } from \"./Node\";\nimport type {\n BlendColorFilterProps,\n MatrixColorFilterProps,\n LerpColorFilterProps,\n} from \"./ColorFilters\";\nimport type {\n ImageProps,\n CircleProps,\n PathProps,\n CustomDrawingNodeProps,\n LineProps,\n OvalProps,\n PatchProps,\n PointsProps,\n RectProps,\n RoundedRectProps,\n VerticesProps,\n TextProps,\n DiffRectProps,\n TextPathProps,\n TextBlobProps,\n GlyphsProps,\n PictureProps,\n ImageSVGProps,\n DrawingNodeProps,\n BoxProps,\n BoxShadowProps,\n} from \"./Drawings\";\nimport type { BlurMaskFilterProps } from \"./MaskFilters\";\nimport type {\n FractalNoiseProps,\n SweepGradientProps,\n ImageShaderProps,\n LinearGradientProps,\n ShaderProps,\n TurbulenceProps,\n TwoPointConicalGradientProps,\n RadialGradientProps,\n ColorProps,\n} from \"./Shaders\";\nimport type {\n CornerPathEffectProps,\n DashPathEffectProps,\n DiscretePathEffectProps,\n Line2DPathEffectProps,\n Path1DPathEffectProps,\n Path2DPathEffectProps,\n} from \"./PathEffects\";\n\ntype ImageFilterNode<P> = DeclarationNode<P>;\n\ntype PathEffectNode<P> = DeclarationNode<P>;\ntype NullablePathEffectNode<P> = DeclarationNode<P>;\n\ntype DrawingNode<P extends GroupProps> = RenderNode<P>;\n\nexport interface SkDOM {\n Layer(props?: ChildrenProps): RenderNode<ChildrenProps>;\n Group(props?: GroupProps): RenderNode<GroupProps>;\n Paint(props: PaintProps): DeclarationNode<PaintProps>;\n\n // Drawings\n Fill(props?: DrawingNodeProps): DrawingNode<DrawingNodeProps>;\n Image(props: ImageProps): DrawingNode<ImageProps>;\n Circle(props: CircleProps): DrawingNode<CircleProps>;\n Path(props: PathProps): DrawingNode<PathProps>;\n CustomDrawing(\n props: CustomDrawingNodeProps\n ): DrawingNode<CustomDrawingNodeProps>;\n Line(props: LineProps): DrawingNode<LineProps>;\n Oval(props: OvalProps): DrawingNode<OvalProps>;\n Patch(props: PatchProps): DrawingNode<PatchProps>;\n Points(props: PointsProps): DrawingNode<PointsProps>;\n Rect(props: RectProps): DrawingNode<RectProps>;\n RRect(props: RoundedRectProps): DrawingNode<RoundedRectProps>;\n Vertices(props: VerticesProps): DrawingNode<VerticesProps>;\n Text(props: TextProps): DrawingNode<TextProps>;\n TextPath(props: TextPathProps): DrawingNode<TextPathProps>;\n TextBlob(props: TextBlobProps): DrawingNode<TextBlobProps>;\n Glyphs(props: GlyphsProps): DrawingNode<GlyphsProps>;\n DiffRect(props: DiffRectProps): DrawingNode<DiffRectProps>;\n Picture(props: PictureProps): DrawingNode<PictureProps>;\n ImageSVG(props: ImageSVGProps): DrawingNode<ImageSVGProps>;\n\n // BlurMaskFilters\n BlurMaskFilter(\n props: BlurMaskFilterProps\n ): DeclarationNode<BlurMaskFilterProps>;\n\n // ImageFilters\n BlendImageFilter(\n props: BlendImageFilterProps\n ): ImageFilterNode<BlendImageFilterProps>;\n BlurImageFilter(\n props: BlurImageFilterProps\n ): ImageFilterNode<BlurImageFilterProps>;\n OffsetImageFilter(\n props: OffsetImageFilterProps\n ): ImageFilterNode<OffsetImageFilterProps>;\n DropShadowImageFilter(\n props: DropShadowImageFilterProps\n ): ImageFilterNode<DropShadowImageFilterProps>;\n MorphologyImageFilter(\n props: MorphologyImageFilterProps\n ): ImageFilterNode<MorphologyImageFilterProps>;\n DisplacementMapImageFilter(\n props: DisplacementMapImageFilterProps\n ): ImageFilterNode<DisplacementMapImageFilterProps>;\n RuntimeShaderImageFilter(\n props: RuntimeShaderImageFilterProps\n ): ImageFilterNode<RuntimeShaderImageFilterProps>;\n\n // ColorFilters\n MatrixColorFilter(\n props: MatrixColorFilterProps\n ): DeclarationNode<MatrixColorFilterProps>;\n BlendColorFilter(\n props: BlendColorFilterProps\n ): DeclarationNode<BlendColorFilterProps>;\n LumaColorFilter(): DeclarationNode<null>;\n LinearToSRGBGammaColorFilter(): DeclarationNode<null>;\n SRGBToLinearGammaColorFilter(): DeclarationNode<null>;\n LerpColorFilter(\n props: LerpColorFilterProps\n ): DeclarationNode<LerpColorFilterProps>;\n\n // Shaders\n Shader(props: ShaderProps): DeclarationNode<ShaderProps>;\n ImageShader(props: ImageShaderProps): DeclarationNode<ImageShaderProps>;\n ColorShader(props: ColorProps): DeclarationNode<ColorProps>;\n Turbulence(props: TurbulenceProps): DeclarationNode<TurbulenceProps>;\n FractalNoise(props: FractalNoiseProps): DeclarationNode<FractalNoiseProps>;\n LinearGradient(\n props: LinearGradientProps\n ): DeclarationNode<LinearGradientProps>;\n RadialGradient(\n props: RadialGradientProps\n ): DeclarationNode<RadialGradientProps>;\n SweepGradient(props: SweepGradientProps): DeclarationNode<SweepGradientProps>;\n TwoPointConicalGradient(\n props: TwoPointConicalGradientProps\n ): DeclarationNode<TwoPointConicalGradientProps>;\n\n // Path Effects\n CornerPathEffect(\n props: CornerPathEffectProps\n ): NullablePathEffectNode<CornerPathEffectProps>;\n DiscretePathEffect(\n props: DiscretePathEffectProps\n ): PathEffectNode<DiscretePathEffectProps>;\n DashPathEffect(\n props: DashPathEffectProps\n ): PathEffectNode<DashPathEffectProps>;\n Path1DPathEffect(\n props: Path1DPathEffectProps\n ): NullablePathEffectNode<Path1DPathEffectProps>;\n Path2DPathEffect(\n props: Path2DPathEffectProps\n ): NullablePathEffectNode<Path2DPathEffectProps>;\n SumPathEffect(): NullablePathEffectNode<null>;\n Line2DPathEffect(\n props: Line2DPathEffectProps\n ): NullablePathEffectNode<Line2DPathEffectProps>;\n\n // Mixed\n Blend(props: BlendProps): DeclarationNode<BlendProps>;\n BackdropFilter(props: ChildrenProps): RenderNode<ChildrenProps>;\n Box(props: BoxProps): RenderNode<BoxProps>;\n BoxShadow(props: BoxShadowProps): DeclarationNode<BoxShadowProps>;\n}\n"],"mappings":""}
|
1
|
+
{"version":3,"names":[],"sources":["SkDOM.ts"],"sourcesContent":["import type { ChildrenProps, GroupProps, PaintProps } from \"./Common\";\nimport type {\n BlendImageFilterProps,\n BlurImageFilterProps,\n DropShadowImageFilterProps,\n OffsetImageFilterProps,\n RuntimeShaderImageFilterProps,\n DisplacementMapImageFilterProps,\n MorphologyImageFilterProps,\n BlendProps,\n} from \"./ImageFilters\";\nimport type { DeclarationNode, RenderNode } from \"./Node\";\nimport type {\n BlendColorFilterProps,\n MatrixColorFilterProps,\n LerpColorFilterProps,\n} from \"./ColorFilters\";\nimport type {\n ImageProps,\n CircleProps,\n PathProps,\n CustomDrawingNodeProps,\n LineProps,\n OvalProps,\n PatchProps,\n PointsProps,\n RectProps,\n RoundedRectProps,\n VerticesProps,\n TextProps,\n DiffRectProps,\n TextPathProps,\n TextBlobProps,\n GlyphsProps,\n PictureProps,\n ImageSVGProps,\n DrawingNodeProps,\n BoxProps,\n BoxShadowProps,\n} from \"./Drawings\";\nimport type { BlurMaskFilterProps } from \"./MaskFilters\";\nimport type {\n FractalNoiseProps,\n SweepGradientProps,\n ImageShaderProps,\n LinearGradientProps,\n ShaderProps,\n TurbulenceProps,\n TwoPointConicalGradientProps,\n RadialGradientProps,\n ColorProps,\n} from \"./Shaders\";\nimport type {\n CornerPathEffectProps,\n DashPathEffectProps,\n DiscretePathEffectProps,\n Line2DPathEffectProps,\n Path1DPathEffectProps,\n Path2DPathEffectProps,\n} from \"./PathEffects\";\nimport type { ParagraphProps } from \"./Paragraph\";\n\ntype ImageFilterNode<P> = DeclarationNode<P>;\n\ntype PathEffectNode<P> = DeclarationNode<P>;\ntype NullablePathEffectNode<P> = DeclarationNode<P>;\n\ntype DrawingNode<P extends GroupProps> = RenderNode<P>;\n\nexport interface SkDOM {\n Layer(props?: ChildrenProps): RenderNode<ChildrenProps>;\n Group(props?: GroupProps): RenderNode<GroupProps>;\n Paint(props: PaintProps): DeclarationNode<PaintProps>;\n\n // Drawings\n Fill(props?: DrawingNodeProps): DrawingNode<DrawingNodeProps>;\n Image(props: ImageProps): DrawingNode<ImageProps>;\n Circle(props: CircleProps): DrawingNode<CircleProps>;\n Path(props: PathProps): DrawingNode<PathProps>;\n CustomDrawing(\n props: CustomDrawingNodeProps\n ): DrawingNode<CustomDrawingNodeProps>;\n Line(props: LineProps): DrawingNode<LineProps>;\n Oval(props: OvalProps): DrawingNode<OvalProps>;\n Patch(props: PatchProps): DrawingNode<PatchProps>;\n Points(props: PointsProps): DrawingNode<PointsProps>;\n Rect(props: RectProps): DrawingNode<RectProps>;\n RRect(props: RoundedRectProps): DrawingNode<RoundedRectProps>;\n Vertices(props: VerticesProps): DrawingNode<VerticesProps>;\n Text(props: TextProps): DrawingNode<TextProps>;\n TextPath(props: TextPathProps): DrawingNode<TextPathProps>;\n TextBlob(props: TextBlobProps): DrawingNode<TextBlobProps>;\n Glyphs(props: GlyphsProps): DrawingNode<GlyphsProps>;\n DiffRect(props: DiffRectProps): DrawingNode<DiffRectProps>;\n Picture(props: PictureProps): DrawingNode<PictureProps>;\n ImageSVG(props: ImageSVGProps): DrawingNode<ImageSVGProps>;\n\n // BlurMaskFilters\n BlurMaskFilter(\n props: BlurMaskFilterProps\n ): DeclarationNode<BlurMaskFilterProps>;\n\n // ImageFilters\n BlendImageFilter(\n props: BlendImageFilterProps\n ): ImageFilterNode<BlendImageFilterProps>;\n BlurImageFilter(\n props: BlurImageFilterProps\n ): ImageFilterNode<BlurImageFilterProps>;\n OffsetImageFilter(\n props: OffsetImageFilterProps\n ): ImageFilterNode<OffsetImageFilterProps>;\n DropShadowImageFilter(\n props: DropShadowImageFilterProps\n ): ImageFilterNode<DropShadowImageFilterProps>;\n MorphologyImageFilter(\n props: MorphologyImageFilterProps\n ): ImageFilterNode<MorphologyImageFilterProps>;\n DisplacementMapImageFilter(\n props: DisplacementMapImageFilterProps\n ): ImageFilterNode<DisplacementMapImageFilterProps>;\n RuntimeShaderImageFilter(\n props: RuntimeShaderImageFilterProps\n ): ImageFilterNode<RuntimeShaderImageFilterProps>;\n\n // ColorFilters\n MatrixColorFilter(\n props: MatrixColorFilterProps\n ): DeclarationNode<MatrixColorFilterProps>;\n BlendColorFilter(\n props: BlendColorFilterProps\n ): DeclarationNode<BlendColorFilterProps>;\n LumaColorFilter(): DeclarationNode<null>;\n LinearToSRGBGammaColorFilter(): DeclarationNode<null>;\n SRGBToLinearGammaColorFilter(): DeclarationNode<null>;\n LerpColorFilter(\n props: LerpColorFilterProps\n ): DeclarationNode<LerpColorFilterProps>;\n\n // Shaders\n Shader(props: ShaderProps): DeclarationNode<ShaderProps>;\n ImageShader(props: ImageShaderProps): DeclarationNode<ImageShaderProps>;\n ColorShader(props: ColorProps): DeclarationNode<ColorProps>;\n Turbulence(props: TurbulenceProps): DeclarationNode<TurbulenceProps>;\n FractalNoise(props: FractalNoiseProps): DeclarationNode<FractalNoiseProps>;\n LinearGradient(\n props: LinearGradientProps\n ): DeclarationNode<LinearGradientProps>;\n RadialGradient(\n props: RadialGradientProps\n ): DeclarationNode<RadialGradientProps>;\n SweepGradient(props: SweepGradientProps): DeclarationNode<SweepGradientProps>;\n TwoPointConicalGradient(\n props: TwoPointConicalGradientProps\n ): DeclarationNode<TwoPointConicalGradientProps>;\n\n // Path Effects\n CornerPathEffect(\n props: CornerPathEffectProps\n ): NullablePathEffectNode<CornerPathEffectProps>;\n DiscretePathEffect(\n props: DiscretePathEffectProps\n ): PathEffectNode<DiscretePathEffectProps>;\n DashPathEffect(\n props: DashPathEffectProps\n ): PathEffectNode<DashPathEffectProps>;\n Path1DPathEffect(\n props: Path1DPathEffectProps\n ): NullablePathEffectNode<Path1DPathEffectProps>;\n Path2DPathEffect(\n props: Path2DPathEffectProps\n ): NullablePathEffectNode<Path2DPathEffectProps>;\n SumPathEffect(): NullablePathEffectNode<null>;\n Line2DPathEffect(\n props: Line2DPathEffectProps\n ): NullablePathEffectNode<Line2DPathEffectProps>;\n\n // Mixed\n Blend(props: BlendProps): DeclarationNode<BlendProps>;\n BackdropFilter(props: ChildrenProps): RenderNode<ChildrenProps>;\n Box(props: BoxProps): RenderNode<BoxProps>;\n BoxShadow(props: BoxShadowProps): DeclarationNode<BoxShadowProps>;\n\n // Paragraph\n Paragraph(props: ParagraphProps): RenderNode<ParagraphProps>;\n}\n"],"mappings":""}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./DrawingContext\";\nexport * from \"./DeclarationContext\";\nexport * from \"./Node\";\nexport * from \"./NodeType\";\nexport * from \"./SkDOM\";\nexport * from \"./Common\";\nexport * from \"./Drawings\";\nexport * from \"./ImageFilters\";\nexport * from \"./ColorFilters\";\nexport * from \"./MaskFilters\";\nexport * from \"./PathEffects\";\nexport * from \"./Shaders\";\n"],"mappings":"AAAA,cAAc,kBAAd;AACA,cAAc,sBAAd;AACA,cAAc,QAAd;AACA,cAAc,YAAd;AACA,cAAc,SAAd;AACA,cAAc,UAAd;AACA,cAAc,YAAd;AACA,cAAc,gBAAd;AACA,cAAc,gBAAd;AACA,cAAc,eAAd;AACA,cAAc,eAAd;AACA,cAAc,WAAd"}
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"./DrawingContext\";\nexport * from \"./DeclarationContext\";\nexport * from \"./Node\";\nexport * from \"./NodeType\";\nexport * from \"./SkDOM\";\nexport * from \"./Common\";\nexport * from \"./Drawings\";\nexport * from \"./ImageFilters\";\nexport * from \"./ColorFilters\";\nexport * from \"./MaskFilters\";\nexport * from \"./PathEffects\";\nexport * from \"./Shaders\";\nexport * from \"./Paragraph\";\n"],"mappings":"AAAA,cAAc,kBAAd;AACA,cAAc,sBAAd;AACA,cAAc,QAAd;AACA,cAAc,YAAd;AACA,cAAc,SAAd;AACA,cAAc,UAAd;AACA,cAAc,YAAd;AACA,cAAc,gBAAd;AACA,cAAc,gBAAd;AACA,cAAc,eAAd;AACA,cAAc,eAAd;AACA,cAAc,WAAd;AACA,cAAc,aAAd"}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { NodeType } from "../dom/types";
|
2
|
-
import type { DeclarationNode, FractalNoiseProps, RenderNode, CircleProps, DrawingNodeProps, ImageProps, PaintProps, PathProps, CustomDrawingNodeProps, LineProps, OvalProps, DiffRectProps, PointsProps, RectProps, RoundedRectProps, TextProps, VerticesProps, BlurMaskFilterProps, BlendImageFilterProps, BlurImageFilterProps, DisplacementMapImageFilterProps, DropShadowImageFilterProps, OffsetImageFilterProps, RuntimeShaderImageFilterProps, MatrixColorFilterProps, ShaderProps, ImageShaderProps, LinearGradientProps, GroupProps, PatchProps, BlendColorFilterProps, DashPathEffectProps, DiscretePathEffectProps, CornerPathEffectProps, Line2DPathEffectProps, Path1DPathEffectProps, Path2DPathEffectProps, TextPathProps, TextBlobProps, GlyphsProps, TwoPointConicalGradientProps, TurbulenceProps, SweepGradientProps, RadialGradientProps, ColorProps, PictureProps, ImageSVGProps, LerpColorFilterProps, BoxProps, BoxShadowProps } from "../dom/types";
|
2
|
+
import type { DeclarationNode, FractalNoiseProps, RenderNode, CircleProps, DrawingNodeProps, ImageProps, PaintProps, PathProps, CustomDrawingNodeProps, LineProps, OvalProps, DiffRectProps, PointsProps, RectProps, RoundedRectProps, TextProps, VerticesProps, BlurMaskFilterProps, BlendImageFilterProps, BlurImageFilterProps, DisplacementMapImageFilterProps, DropShadowImageFilterProps, OffsetImageFilterProps, RuntimeShaderImageFilterProps, MatrixColorFilterProps, ShaderProps, ImageShaderProps, LinearGradientProps, GroupProps, PatchProps, BlendColorFilterProps, DashPathEffectProps, DiscretePathEffectProps, CornerPathEffectProps, Line2DPathEffectProps, Path1DPathEffectProps, Path2DPathEffectProps, TextPathProps, TextBlobProps, GlyphsProps, TwoPointConicalGradientProps, TurbulenceProps, SweepGradientProps, RadialGradientProps, ColorProps, PictureProps, ImageSVGProps, LerpColorFilterProps, BoxProps, BoxShadowProps, ParagraphProps } from "../dom/types";
|
3
3
|
import type { ChildrenProps } from "../dom/types/Common";
|
4
4
|
import type { BlendProps, MorphologyImageFilterProps } from "../dom/types/ImageFilters";
|
5
5
|
import type { SkRect, SkRRect } from "../skia/types";
|
@@ -68,6 +68,7 @@ declare global {
|
|
68
68
|
BoxNode: (prop: BoxProps) => RenderNode<BoxProps>;
|
69
69
|
BoxShadowNode: (prop: BoxShadowProps) => DeclarationNode<BoxShadowProps>;
|
70
70
|
LayerNode: (prop: ChildrenProps) => RenderNode<ChildrenProps>;
|
71
|
+
ParagraphNode: (props: ParagraphProps) => RenderNode<ParagraphProps>;
|
71
72
|
};
|
72
73
|
namespace JSX {
|
73
74
|
interface IntrinsicElements {
|
@@ -127,6 +128,7 @@ declare global {
|
|
127
128
|
skBackdropFilter: SkiaProps<ChildrenProps>;
|
128
129
|
skBox: SkiaProps<BoxProps>;
|
129
130
|
skBoxShadow: SkiaProps<BoxShadowProps>;
|
131
|
+
skParagraph: SkiaProps<ParagraphProps>;
|
130
132
|
}
|
131
133
|
}
|
132
134
|
}
|
@@ -183,6 +183,10 @@ export const createNode = (container, type, props) => {
|
|
183
183
|
|
184
184
|
case NodeType.BoxShadow:
|
185
185
|
return Sk.BoxShadow(props);
|
186
|
+
// Paragraph
|
187
|
+
|
188
|
+
case NodeType.Paragraph:
|
189
|
+
return Sk.Paragraph(props);
|
186
190
|
|
187
191
|
default:
|
188
192
|
return exhaustiveCheck(type);
|