@tarojs/plugin-platform-harmony-ets 4.0.0-alpha.2 → 4.0.0-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apis/base/system.ts +73 -20
- package/dist/apis/canvas/index.ts +10 -1
- package/dist/apis/device/clipboard.ts +16 -8
- package/dist/apis/framework/index.ts +1 -5
- package/dist/apis/index.ts +25 -17
- package/dist/apis/media/image/index.ts +1 -1
- package/dist/apis/storage/index.ts +146 -78
- package/dist/apis/ui/animation/animation.ts +71 -29
- package/dist/apis/ui/background.ts +2 -1
- package/dist/apis/ui/interaction/index.ts +42 -59
- package/dist/apis/ui/navigation-bar/index.ts +1 -1
- package/dist/apis/ui/pull-down-refresh.ts +9 -3
- package/dist/apis/ui/scroll/index.ts +5 -5
- package/dist/apis/ui/tab-bar.ts +3 -3
- package/dist/apis/utils/index.ts +2 -1
- package/dist/apis/wxml/IntersectionObserver.ts +18 -10
- package/dist/apis/wxml/selectorQuery.ts +26 -13
- package/dist/components-harmony-ets/button.ets +64 -34
- package/dist/components-harmony-ets/canvas.ets +51 -0
- package/dist/components-harmony-ets/checkbox.ets +72 -61
- package/dist/components-harmony-ets/form.ets +51 -29
- package/dist/components-harmony-ets/icon.ets +31 -19
- package/dist/components-harmony-ets/image.ets +34 -14
- package/dist/components-harmony-ets/index.ets +92 -0
- package/dist/components-harmony-ets/innerHtml.ets +11 -6
- package/dist/components-harmony-ets/input.ets +49 -41
- package/dist/components-harmony-ets/label.ets +71 -44
- package/dist/components-harmony-ets/listView.ets +26 -0
- package/dist/components-harmony-ets/movableArea.ets +126 -0
- package/dist/components-harmony-ets/movableView.ets +93 -0
- package/dist/components-harmony-ets/navigationBar.ets +65 -0
- package/dist/components-harmony-ets/pageMeta.ets +94 -0
- package/dist/components-harmony-ets/picker.ets +42 -38
- package/dist/components-harmony-ets/progress.ets +52 -0
- package/dist/components-harmony-ets/pseudo.ets +80 -0
- package/dist/components-harmony-ets/radio.ets +74 -64
- package/dist/components-harmony-ets/richText.ets +14 -30
- package/dist/components-harmony-ets/scrollList.ets +94 -0
- package/dist/components-harmony-ets/scrollView.ets +61 -57
- package/dist/components-harmony-ets/slider.ets +18 -14
- package/dist/components-harmony-ets/stickySection.ets +42 -0
- package/dist/components-harmony-ets/style.ets +381 -130
- package/dist/components-harmony-ets/swiper.ets +61 -20
- package/dist/components-harmony-ets/switch.ets +36 -32
- package/dist/components-harmony-ets/{index.ts → tag.ts} +6 -0
- package/dist/components-harmony-ets/text.ets +135 -49
- package/dist/components-harmony-ets/textArea.ets +50 -35
- package/dist/components-harmony-ets/utils/AttributeManager.ets +1 -1
- package/dist/components-harmony-ets/utils/DynamicCenter.ts +2 -2
- package/dist/components-harmony-ets/utils/flexManager.ets +49 -19
- package/dist/components-harmony-ets/utils/helper.ets +18 -5
- package/dist/components-harmony-ets/utils/htmlParser/HarmonyHTMLParser.ts +1 -2
- package/dist/components-harmony-ets/utils/htmlParser/index.ts +1 -1
- package/dist/components-harmony-ets/utils/index.ts +54 -50
- package/dist/components-harmony-ets/utils/styles.ets +170 -93
- package/dist/components-harmony-ets/video.ets +34 -21
- package/dist/components-harmony-ets/view.ets +63 -52
- package/dist/components-harmony-ets/webView.ets +40 -34
- package/dist/index.d.ts +152 -0
- package/dist/index.js +99 -55
- package/dist/index.js.map +1 -1
- package/dist/runtime-ets/bom/document.ts +6 -4
- package/dist/runtime-ets/bom/getComputedStyle.ts +2 -2
- package/dist/runtime-ets/bom/window.ts +7 -0
- package/dist/runtime-ets/current.ts +3 -0
- package/dist/runtime-ets/dom/bind.ts +28 -12
- package/dist/runtime-ets/dom/class-list.ts +2 -2
- package/dist/runtime-ets/dom/cssNesting.ts +419 -0
- package/dist/runtime-ets/dom/cssStyleDeclaration.ts +28 -42
- package/dist/runtime-ets/dom/document.ts +8 -11
- package/dist/runtime-ets/dom/element/canvas.ts +136 -0
- package/dist/runtime-ets/dom/element/element.ts +348 -57
- package/dist/runtime-ets/dom/element/form.ts +31 -26
- package/dist/runtime-ets/dom/element/index.ts +30 -2
- package/dist/runtime-ets/dom/element/movableArea.ts +11 -0
- package/dist/runtime-ets/dom/element/movableView.ts +244 -0
- package/dist/runtime-ets/dom/element/normal.ts +35 -8
- package/dist/runtime-ets/dom/element/progress.ts +11 -0
- package/dist/runtime-ets/dom/element/scrollView.ts +1 -0
- package/dist/runtime-ets/dom/element/text.ts +1 -8
- package/dist/runtime-ets/dom/element/video.ts +5 -4
- package/dist/runtime-ets/dom/element/webView.ts +12 -5
- package/dist/runtime-ets/dom/event.ts +2 -4
- package/dist/runtime-ets/dom/eventTarget.ts +2 -3
- package/dist/runtime-ets/dom/node.ts +54 -29
- package/dist/runtime-ets/dom/stylesheet/covertWeb2Hm.ts +416 -235
- package/dist/runtime-ets/dom/stylesheet/index.ts +29 -311
- package/dist/runtime-ets/dom/stylesheet/type.ts +51 -9
- package/dist/runtime-ets/dom/stylesheet/util.ts +33 -27
- package/dist/runtime-ets/index.ts +2 -1
- package/dist/runtime-ets/interface/event.ts +1 -1
- package/dist/runtime-ets/utils/index.ts +73 -13
- package/dist/runtime-ets/utils/info.ts +2 -2
- package/dist/runtime-framework/react/app.ts +9 -4
- package/dist/runtime-framework/react/hooks.ts +0 -1
- package/dist/runtime-framework/react/index.ts +0 -2
- package/dist/runtime-framework/react/native-page.ts +154 -77
- package/dist/runtime-framework/react/page.ts +3 -8
- package/dist/runtime-framework/solid/app.ts +25 -45
- package/dist/runtime-framework/solid/connect.ts +21 -3
- package/dist/runtime-framework/solid/hooks.ts +16 -11
- package/dist/runtime-framework/solid/index.ts +6 -2
- package/dist/runtime-framework/solid/page.ts +84 -30
- package/dist/runtime-framework/solid/reconciler/props.ts +70 -25
- package/dist/runtime-framework/solid/reconciler/render.ts +16 -6
- package/dist/runtime-framework/solid/reconciler/use.ts +0 -1
- package/dist/runtime-framework/solid/utils/index.ts +0 -2
- package/dist/runtime-utils.d.ts +827 -0
- package/dist/runtime-utils.js +435 -218
- package/dist/runtime-utils.js.map +1 -1
- package/dist/runtime.d.ts +1 -0
- package/dist/runtime.js +435 -218
- package/dist/runtime.js.map +1 -1
- package/index.js +3 -1
- package/package.json +14 -15
- package/static/media/cancel.svg +1 -1
- package/static/media/circle.svg +1 -1
- package/static/media/clear.svg +1 -1
- package/static/media/download.svg +1 -1
- package/static/media/info.svg +1 -1
- package/static/media/info_circle.svg +1 -1
- package/static/media/search.svg +1 -1
- package/static/media/success.svg +1 -1
- package/static/media/success_no_circle.svg +1 -1
- package/static/media/warn.svg +1 -1
- package/types/harmony.d.ts +4 -0
- package/types/index.d.ts +4 -0
- package/types/runtime.d.ts +1 -1
- /package/dist/runtime-framework/solid/{contant.ts → constant.ts} +0 -0
package/index.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
module.exports = require('./dist/index.js').default
|
|
2
2
|
|
|
3
3
|
module.exports.default = module.exports
|
|
4
|
-
module.exports.HarmonyOS = require('./dist/index.js').
|
|
4
|
+
module.exports.HarmonyOS = require('./dist/index.js').HarmonyOS_ArkTS
|
|
5
|
+
module.exports.HarmonyOS_ArkTS = require('./dist/index.js').HarmonyOS_ArkTS
|
|
6
|
+
module.exports.HarmonyOS_JSUI = require('./dist/index.js').HarmonyOS_JSUI
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/plugin-platform-harmony-ets",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.21",
|
|
4
4
|
"description": "OpenHarmony & 鸿蒙系统插件",
|
|
5
5
|
"author": "O2Team",
|
|
6
6
|
"homepage": "https://gitee.com/openharmony-sig/taro",
|
|
@@ -25,28 +25,27 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"webpack-sources": "^3.2.3",
|
|
28
|
-
"@
|
|
29
|
-
"
|
|
30
|
-
"@tarojs/
|
|
31
|
-
"@tarojs/
|
|
32
|
-
"@tarojs/
|
|
33
|
-
"@tarojs/
|
|
34
|
-
"@tarojs/
|
|
28
|
+
"@babel/preset-react": "^7.24.1",
|
|
29
|
+
"webpack": "5.91.0",
|
|
30
|
+
"@tarojs/components": "4.0.0-alpha.21",
|
|
31
|
+
"@tarojs/runner-utils": "4.0.0-alpha.21",
|
|
32
|
+
"@tarojs/helper": "4.0.0-alpha.21",
|
|
33
|
+
"@tarojs/runtime": "4.0.0-alpha.21",
|
|
34
|
+
"@tarojs/shared": "4.0.0-alpha.21",
|
|
35
|
+
"@tarojs/taro": "4.0.0-alpha.21",
|
|
36
|
+
"@tarojs/service": "4.0.0-alpha.21"
|
|
35
37
|
},
|
|
36
38
|
"devDependencies": {
|
|
37
|
-
"@rollup/plugin-commonjs": "^25.0.7",
|
|
38
|
-
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
39
|
-
"@rollup/plugin-typescript": "^11.1.0",
|
|
40
39
|
"fast-glob": "^3.3.1",
|
|
41
|
-
"rollup": "^3.
|
|
42
|
-
"rollup-plugin-copy": "^3.4.0",
|
|
40
|
+
"rollup": "^3.29.4",
|
|
43
41
|
"rollup-plugin-node-externals": "^5.0.0",
|
|
44
42
|
"rollup-plugin-ts": "^3.0.2",
|
|
45
|
-
"solid-js": "^1.
|
|
43
|
+
"solid-js": "^1.8.16",
|
|
46
44
|
"tslib": "^2.4.0",
|
|
47
|
-
"
|
|
45
|
+
"rollup-plugin-copy": "4.0.0-alpha.21"
|
|
48
46
|
},
|
|
49
47
|
"scripts": {
|
|
48
|
+
"prod": "pnpm run build",
|
|
50
49
|
"prebuild": "rimraf ./dist",
|
|
51
50
|
"build": "pnpm run rollup",
|
|
52
51
|
"dev": "pnpm run rollup -w",
|
package/static/media/cancel.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1080" height="1080"><path d="m509.92 475.968 74.032-74.032c6.248-6.246 16.376-6.246 22.624 0l11.312 11.312a16 16 0 0 1 0 22.64L543.84 509.92l74.032 74.032c6.246 6.248 6.246 16.376 0 22.624l-11.312 11.312c-6.248 6.246-16.376 6.246-22.624 0L509.92 543.84l-74.032 74.032a16 16 0 0 1-22.64 0l-11.312-11.312c-6.246-6.248-6.246-16.376 0-22.624l74.032-74.032-74.032-74.032a16 16 0 0 1 0-22.64l11.312-11.312a16 16 0 0 1 22.64 0l74.032 74.032zm0 319.856c157.904 0 285.92-128 285.92-285.92C795.84 352 667.808 224 509.92 224 352 224 224 352 224 509.92c0 157.904 128 285.92 285.92 285.92zm0 48C325.504 843.84 176 694.336 176 509.92 176 325.52 325.504 176 509.92 176c184.416 0 333.92 149.504 333.92 333.92 0 184.416-149.504 333.92-333.92 333.92z" style="stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#333;fill-rule:nonzero;opacity:1" transform="matrix(1.58 0 0 1.58 -264.264 -264.264)"/></svg>
|
package/static/media/circle.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1080" height="1080"><path d="M512 170.667c-188.513 0-341.333 152.82-341.333 341.333 0 188.513 152.82 341.333 341.333 341.333 188.513 0 341.333-152.82 341.333-341.333 0-188.513-152.82-341.333-341.333-341.333zM85.333 512C85.333 276.352 276.352 85.333 512 85.333c235.648 0 426.667 191.019 426.667 426.667 0 235.648-191.019 426.667-426.667 426.667-235.648 0-426.667-191.019-426.667-426.667z" style="stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#333;fill-rule:nonzero;opacity:1" transform="matrix(1.24 0 0 1.24 -95.31 -95.31)"/></svg>
|
package/static/media/clear.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1080" height="1080"><path d="m899.1 869.6-53-305.6H864c14.4 0 26-11.6 26-26V346c0-14.4-11.6-26-26-26H618V138c0-14.4-11.6-26-26-26H432c-14.4 0-26 11.6-26 26v182H160c-14.4 0-26 11.6-26 26v192c0 14.4 11.6 26 26 26h17.9l-53 305.6c-.3 1.5-.4 3-.4 4.4 0 14.4 11.6 26 26 26h723c1.5 0 3-.1 4.4-.4 14.2-2.4 23.7-15.9 21.2-30zM204 390h272V182h72v208h272v104H204V390zm468 440V674c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v156H416V674c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v156H202.8l45.1-260H776l45.1 260H672z" style="stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#333;fill-rule:nonzero;opacity:1" transform="matrix(1.35 0 0 1.35 -151.2 -143.1)"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1080" height="1080"><path d="M863.2 315.8c-.2-1.4-.4-2.6-.8-4-1.5-5.5-3.9-10.6-7.8-14.5l-128-128c-6-6-14.1-9.4-22.6-9.4H320c-8.5 0-16.6 3.4-22.6 9.4l-128 128c-3.9 3.9-6.3 9-7.8 14.5-.4 1.4-.6 2.6-.8 4-.2 1.4-.8 2.7-.8 4.2v451.8c0 50.8 41.4 92.2 92.2 92.2h519.5c50.9 0 92.2-41.4 92.2-92.2V320c.1-1.5-.5-2.7-.7-4.2zm-530-91.8h357.5l64 64H269.2l64-64zM800 771.8c0 15.6-12.7 28.2-28.2 28.2H252.2c-15.6 0-28.2-12.7-28.2-28.2V352h576v419.8zm-310.6-45.2c6.2 6.2 14.4 9.4 22.6 9.4 8.2 0 16.4-3.1 22.6-9.4l76.8-76.8c12.5-12.5 12.5-32.8 0-45.2-12.5-12.4-32.8-12.5-45.2 0L544 626.8V448c0-17.7-14.3-32-32-32s-32 14.3-32 32v178.8l-22.2-22.2c-12.5-12.5-32.8-12.5-45.2 0-12.4 12.5-12.5 32.8 0 45.2l76.8 76.8z" style="stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#333;fill-rule:nonzero;opacity:1" transform="matrix(1.51 0 0 1.51 -232.57 -232.554)"/></svg>
|
package/static/media/info.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1080" height="1080"><path d="M512 85.333C276.359 85.333 85.333 276.36 85.333 512c0 235.641 191.026 426.667 426.667 426.667 235.641 0 426.667-191.026 426.667-426.667C938.667 276.359 747.64 85.333 512 85.333zm42.667 597.334c0 23.564-19.103 42.666-42.667 42.666s-42.667-19.102-42.667-42.666V469.333c0-23.564 19.103-42.666 42.667-42.666s42.667 19.102 42.667 42.666zM512 384c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.666 42.667-42.666 42.667 19.102 42.667 42.666A42.667 42.667 0 0 1 512 384z" style="stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#333;fill-rule:nonzero;opacity:1" transform="matrix(1.24 0 0 1.24 -93.93 -93.93)"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1080" height="1080"><path d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372zm-48-548c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48Zm72 112h-48c-4.4 0-8 3.6-8 8v272c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V456c0-4.4-3.6-8-8-8z" style="stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#333;fill-rule:nonzero;opacity:1" transform="matrix(1.19 0 0 1.19 -67.4 -67.4)"/></svg>
|
package/static/media/search.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1080" height="1080"><path d="M909.6 854.5 649.9 594.8C690.2 542.7 712 479 712 412c0-80.2-31.3-155.4-87.9-212.1-56.6-56.7-132-87.9-212.1-87.9s-155.5 31.3-212.1 87.9C143.2 256.5 112 331.8 112 412c0 80.1 31.3 155.5 87.9 212.1C256.5 680.8 331.8 712 412 712c67 0 130.6-21.8 182.7-62l259.7 259.6c3.2 3.2 8.4 3.2 11.6 0l43.6-43.5c3.2-3.2 3.2-8.4 0-11.6zM570.4 570.4C528 612.7 471.8 636 412 636c-59.8 0-116-23.3-158.4-65.6C211.3 528 188 471.8 188 412c0-59.8 23.3-116.1 65.6-158.4C296 211.3 352.2 188 412 188c59.8 0 116.1 23.2 158.4 65.6C612.7 296 636 352.2 636 412c0 59.8-23.3 116.1-65.6 158.4z" style="stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#333;fill-rule:nonzero;opacity:1" transform="matrix(1.32 0 0 1.32 -134.43 -134.43)"/></svg>
|
package/static/media/success.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1080" height="1080"><path d="M512 832c-176.448 0-320-143.552-320-320s143.552-320 320-320 320 143.552 320 320-143.552 320-320 320m0-704c-211.744 0-384 172.256-384 384s172.256 384 384 384 384-172.256 384-384-172.256-384-384-384m107.072 301.088L467.328 594.976l-62.112-69.6c-11.77-13.184-32-14.33-45.184-2.56-13.184 11.77-14.33 32-2.56 45.184l85.696 96a32 32 0 0 0 23.68 10.688h.192c8.96 0 17.536-3.776 23.616-10.4l175.648-192c11.93-13.043 11.027-33.287-2.016-45.216-13.043-11.93-33.287-11.027-45.216 2.016" style="stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#333;fill-rule:nonzero;opacity:1" transform="matrix(1.37 0 0 1.37 -163.72 -163.72)"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1080" height="1080"><path d="M122.281 536.623c-9.941-9.926-11.549-25.36-2.785-36.407l20.487-25.829c8.398-10.588 24.108-13.246 35.211-5.835L352.525 586.91c9.354 6.243 25.453 5.43 34.186-1.655l468.582-380.16c10.533-8.545 27.03-7.817 36.262 1.4l11.542 11.526c10.046 10.03 9.315 25.951-1.215 36.466L398.954 756.67c-15.646 15.625-41.337 14.94-57.445-1.142L122.281 536.623z" style="stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#323233;fill-rule:nonzero;opacity:1" transform="matrix(1.33 0 0 1.33 -143.08 -104.645)"/></svg>
|
package/static/media/warn.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1080" height="1080"><path d="M522.656 388.064c-17.673 0-32 14.327-32 32v160c0 17.673 14.327 32 32 32 17.673 0 32-14.327 32-32v-160c0-17.673-14.327-32-32-32m0 288c-17.673 0-32 14.327-32 32 0 17.673 14.327 32 32 32 17.673 0 32-14.327 32-32 0-17.673-14.327-32-32-32m192 119.552H203.072l127.584-221.888 33.152-57.664L522.656 239.84l158.816 276.224 33.184 57.696 127.552 221.856H714.656zm194.528-11.968L566.528 187.712C556.384 170.112 540.416 160 522.656 160s-33.728 10.112-43.84 27.712l-342.72 595.936c-10.048 17.568-10.784 36.48-1.92 51.84 8.896 15.328 25.6 24.128 45.824 24.128h685.344c20.16 0 36.864-8.8 45.76-24.128 8.896-15.36 8.192-34.24-1.92-51.84z" style="stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#333;fill-rule:nonzero;opacity:1" transform="matrix(1.34 0 0 1.34 -160.364 -143.145)"/></svg>
|
package/types/harmony.d.ts
CHANGED
package/types/index.d.ts
ADDED
package/types/runtime.d.ts
CHANGED
|
File without changes
|