@galacean/effects-threejs 2.1.0-alpha.13 → 2.1.0-alpha.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +53 -36
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +2 -2
- package/dist/index.min.js.map +1 -1
- package/dist/index.mjs +54 -37
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Description: Galacean Effects runtime threejs plugin for the web
|
|
4
4
|
* Author: Ant Group CO., Ltd.
|
|
5
5
|
* Contributors: 燃然,飂兮,十弦,云垣,茂安,意绮
|
|
6
|
-
* Version: v2.1.0-alpha.
|
|
6
|
+
* Version: v2.1.0-alpha.14
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
import * as THREE from 'three';
|
|
@@ -1620,6 +1620,34 @@ var BuiltinObjectGUID = {
|
|
|
1620
1620
|
UnlitShader: "unlit000000000000000000000000000"
|
|
1621
1621
|
};
|
|
1622
1622
|
|
|
1623
|
+
/**
|
|
1624
|
+
* 矢量图形类型
|
|
1625
|
+
*/ var ShapePrimitiveType;
|
|
1626
|
+
(function(ShapePrimitiveType) {
|
|
1627
|
+
/**
|
|
1628
|
+
* 自定义图形
|
|
1629
|
+
*/ ShapePrimitiveType[ShapePrimitiveType["Custom"] = 0] = "Custom";
|
|
1630
|
+
/**
|
|
1631
|
+
* 矩形
|
|
1632
|
+
*/ ShapePrimitiveType[ShapePrimitiveType["Rectangle"] = 1] = "Rectangle";
|
|
1633
|
+
/**
|
|
1634
|
+
* 椭圆
|
|
1635
|
+
*/ ShapePrimitiveType[ShapePrimitiveType["Ellipse"] = 2] = "Ellipse";
|
|
1636
|
+
/**
|
|
1637
|
+
* 多边形
|
|
1638
|
+
*/ ShapePrimitiveType[ShapePrimitiveType["Polygon"] = 3] = "Polygon";
|
|
1639
|
+
/**
|
|
1640
|
+
* 星形
|
|
1641
|
+
*/ ShapePrimitiveType[ShapePrimitiveType["Star"] = 4] = "Star";
|
|
1642
|
+
})(ShapePrimitiveType || (ShapePrimitiveType = {}));
|
|
1643
|
+
|
|
1644
|
+
// 本期无该功能 待补充
|
|
1645
|
+
var ShapeConnectType;
|
|
1646
|
+
(function(ShapeConnectType) {})(ShapeConnectType || (ShapeConnectType = {}));
|
|
1647
|
+
// @待补充
|
|
1648
|
+
var ShapePointType;
|
|
1649
|
+
(function(ShapePointType) {})(ShapePointType || (ShapePointType = {}));
|
|
1650
|
+
|
|
1623
1651
|
/**
|
|
1624
1652
|
* 动态换图类型
|
|
1625
1653
|
* @since 1.1.0
|
|
@@ -1814,6 +1842,9 @@ var index$1 = /*#__PURE__*/Object.freeze({
|
|
|
1814
1842
|
get TextWeight () { return TextWeight; },
|
|
1815
1843
|
get FontStyle () { return FontStyle; },
|
|
1816
1844
|
BuiltinObjectGUID: BuiltinObjectGUID,
|
|
1845
|
+
get ShapePrimitiveType () { return ShapePrimitiveType; },
|
|
1846
|
+
get ShapeConnectType () { return ShapeConnectType; },
|
|
1847
|
+
get ShapePointType () { return ShapePointType; },
|
|
1817
1848
|
get BackgroundType () { return BackgroundType; },
|
|
1818
1849
|
get MultimediaType () { return MultimediaType; },
|
|
1819
1850
|
get DataType () { return DataType; },
|
|
@@ -16141,7 +16172,7 @@ var ShapeComponent = /*#__PURE__*/ function(MeshComponent) {
|
|
|
16141
16172
|
this.path.clear();
|
|
16142
16173
|
var shapeData = data;
|
|
16143
16174
|
switch(shapeData.type){
|
|
16144
|
-
case
|
|
16175
|
+
case ShapePrimitiveType.Custom:
|
|
16145
16176
|
{
|
|
16146
16177
|
var customData = shapeData;
|
|
16147
16178
|
var points = customData.points;
|
|
@@ -16178,28 +16209,28 @@ var ShapeComponent = /*#__PURE__*/ function(MeshComponent) {
|
|
|
16178
16209
|
}
|
|
16179
16210
|
break;
|
|
16180
16211
|
}
|
|
16181
|
-
case
|
|
16212
|
+
case ShapePrimitiveType.Ellipse:
|
|
16182
16213
|
{
|
|
16183
16214
|
var ellipseData = shapeData;
|
|
16184
16215
|
this.path.ellipse(0, 0, ellipseData.xRadius, ellipseData.yRadius);
|
|
16185
16216
|
this.setFillColor(ellipseData.fill);
|
|
16186
16217
|
break;
|
|
16187
16218
|
}
|
|
16188
|
-
case
|
|
16219
|
+
case ShapePrimitiveType.Rectangle:
|
|
16189
16220
|
{
|
|
16190
16221
|
var rectangleData = shapeData;
|
|
16191
16222
|
this.path.rect(-rectangleData.width / 2, -rectangleData.height / 2, rectangleData.width, rectangleData.height);
|
|
16192
16223
|
this.setFillColor(rectangleData.fill);
|
|
16193
16224
|
break;
|
|
16194
16225
|
}
|
|
16195
|
-
case
|
|
16226
|
+
case ShapePrimitiveType.Star:
|
|
16196
16227
|
{
|
|
16197
16228
|
var starData = shapeData;
|
|
16198
16229
|
this.path.polyStar(starData.pointCount, starData.outerRadius, starData.innerRadius, starData.outerRoundness, starData.innerRoundness, StarType.Star);
|
|
16199
16230
|
this.setFillColor(starData.fill);
|
|
16200
16231
|
break;
|
|
16201
16232
|
}
|
|
16202
|
-
case
|
|
16233
|
+
case ShapePrimitiveType.Polygon:
|
|
16203
16234
|
{
|
|
16204
16235
|
var polygonData = shapeData;
|
|
16205
16236
|
this.path.polyStar(polygonData.pointCount, polygonData.radius, polygonData.radius, polygonData.roundness, polygonData.roundness, StarType.Polygon);
|
|
@@ -16231,28 +16262,6 @@ var ShapeComponent = /*#__PURE__*/ function(MeshComponent) {
|
|
|
16231
16262
|
ShapeComponent = __decorate([
|
|
16232
16263
|
effectsClass("ShapeComponent")
|
|
16233
16264
|
], ShapeComponent);
|
|
16234
|
-
var ShapePrimitiveType;
|
|
16235
|
-
(function(ShapePrimitiveType) {
|
|
16236
|
-
/**
|
|
16237
|
-
* 自定义图形
|
|
16238
|
-
*/ ShapePrimitiveType[ShapePrimitiveType["Custom"] = 0] = "Custom";
|
|
16239
|
-
/**
|
|
16240
|
-
* 矩形
|
|
16241
|
-
*/ ShapePrimitiveType[ShapePrimitiveType["Rectangle"] = 1] = "Rectangle";
|
|
16242
|
-
/**
|
|
16243
|
-
* 椭圆
|
|
16244
|
-
*/ ShapePrimitiveType[ShapePrimitiveType["Ellipse"] = 2] = "Ellipse";
|
|
16245
|
-
/**
|
|
16246
|
-
* 多边形
|
|
16247
|
-
*/ ShapePrimitiveType[ShapePrimitiveType["Polygon"] = 3] = "Polygon";
|
|
16248
|
-
/**
|
|
16249
|
-
* 星形
|
|
16250
|
-
*/ ShapePrimitiveType[ShapePrimitiveType["Star"] = 4] = "Star";
|
|
16251
|
-
})(ShapePrimitiveType || (ShapePrimitiveType = {}));
|
|
16252
|
-
var ShapeConnectType;
|
|
16253
|
-
(function(ShapeConnectType) {})(ShapeConnectType || (ShapeConnectType = {}));
|
|
16254
|
-
var ShapePointType;
|
|
16255
|
-
(function(ShapePointType) {})(ShapePointType || (ShapePointType = {}));
|
|
16256
16265
|
|
|
16257
16266
|
var Fake3DComponent = /*#__PURE__*/ function(Component) {
|
|
16258
16267
|
_inherits(Fake3DComponent, Component);
|
|
@@ -18865,9 +18874,18 @@ var SpriteComponent = /*#__PURE__*/ function(BaseRenderComponent) {
|
|
|
18865
18874
|
}
|
|
18866
18875
|
};
|
|
18867
18876
|
_proto.onDestroy = function onDestroy() {
|
|
18877
|
+
var textures = this.getTextures();
|
|
18868
18878
|
if (this.item && this.item.composition) {
|
|
18869
|
-
this.item.composition.destroyTextures(
|
|
18879
|
+
this.item.composition.destroyTextures(textures);
|
|
18870
18880
|
}
|
|
18881
|
+
textures.forEach(function(texture) {
|
|
18882
|
+
var source = texture.source;
|
|
18883
|
+
if (source.sourceType === TextureSourceType.video && (source == null ? void 0 : source.video)) {
|
|
18884
|
+
source.video.pause();
|
|
18885
|
+
source.video.src = "";
|
|
18886
|
+
source.video.load();
|
|
18887
|
+
}
|
|
18888
|
+
});
|
|
18871
18889
|
};
|
|
18872
18890
|
_proto.createGeometry = function createGeometry(mode) {
|
|
18873
18891
|
var maxVertex = 12 * this.splits.length;
|
|
@@ -24860,7 +24878,7 @@ var TextLayout = /*#__PURE__*/ function() {
|
|
|
24860
24878
|
function TextLayout(options) {
|
|
24861
24879
|
this.width = 0;
|
|
24862
24880
|
this.height = 0;
|
|
24863
|
-
var _options_textHeight = options.textHeight, textHeight = _options_textHeight === void 0 ? 100 : _options_textHeight, _options_textWidth = options.textWidth, textWidth = _options_textWidth === void 0 ? 100 : _options_textWidth, _options_textOverflow = options.textOverflow, textOverflow = _options_textOverflow === void 0 ? TextOverflow.display : _options_textOverflow, _options_textBaseline = options.textBaseline, textBaseline = _options_textBaseline === void 0 ? TextBaseline.top : _options_textBaseline, _options_textAlign = options.textAlign, textAlign = _options_textAlign === void 0 ? TextAlignment.left : _options_textAlign,
|
|
24881
|
+
var _options_textHeight = options.textHeight, textHeight = _options_textHeight === void 0 ? 100 : _options_textHeight, _options_textWidth = options.textWidth, textWidth = _options_textWidth === void 0 ? 100 : _options_textWidth, _options_textOverflow = options.textOverflow, textOverflow = _options_textOverflow === void 0 ? TextOverflow.display : _options_textOverflow, _options_textBaseline = options.textBaseline, textBaseline = _options_textBaseline === void 0 ? TextBaseline.top : _options_textBaseline, _options_textAlign = options.textAlign, textAlign = _options_textAlign === void 0 ? TextAlignment.left : _options_textAlign, _options_text = options.text, text = _options_text === void 0 ? " " : _options_text, _options_letterSpace = options.letterSpace, letterSpace = _options_letterSpace === void 0 ? 0 : _options_letterSpace, _options_autoWidth = options.autoWidth, autoWidth = _options_autoWidth === void 0 ? false : _options_autoWidth, fontSize = options.fontSize, _options_lineHeight = options.lineHeight, lineHeight = _options_lineHeight === void 0 ? fontSize : _options_lineHeight;
|
|
24864
24882
|
var tempWidth = fontSize + letterSpace;
|
|
24865
24883
|
this.autoWidth = autoWidth;
|
|
24866
24884
|
this.maxTextWidth = text.length * tempWidth;
|
|
@@ -29036,16 +29054,15 @@ var LateUpdateTickData = /*#__PURE__*/ function(TickData) {
|
|
|
29036
29054
|
if (pause) {
|
|
29037
29055
|
this.resume();
|
|
29038
29056
|
}
|
|
29039
|
-
if (!this.rootComposition.isStartCalled) {
|
|
29040
|
-
this.rootComposition.onStart();
|
|
29041
|
-
this.rootComposition.isStartCalled = true;
|
|
29042
|
-
}
|
|
29043
29057
|
this.setSpeed(1);
|
|
29044
29058
|
this.forwardTime(time + this.startTime);
|
|
29045
29059
|
this.setSpeed(speed);
|
|
29046
29060
|
if (pause) {
|
|
29047
29061
|
this.pause();
|
|
29048
29062
|
}
|
|
29063
|
+
this.emit("goto", {
|
|
29064
|
+
time: time
|
|
29065
|
+
});
|
|
29049
29066
|
};
|
|
29050
29067
|
_proto.addItem = function addItem(item) {
|
|
29051
29068
|
this.items.push(item);
|
|
@@ -31585,7 +31602,7 @@ registerPlugin("sprite", SpriteLoader, VFXItem, true);
|
|
|
31585
31602
|
registerPlugin("particle", ParticleLoader, VFXItem, true);
|
|
31586
31603
|
registerPlugin("cal", CalculateLoader, VFXItem, true);
|
|
31587
31604
|
registerPlugin("interact", InteractLoader, VFXItem, true);
|
|
31588
|
-
var version$1 = "2.1.0-alpha.
|
|
31605
|
+
var version$1 = "2.1.0-alpha.14";
|
|
31589
31606
|
logger.info("Core version: " + version$1 + ".");
|
|
31590
31607
|
|
|
31591
31608
|
var _obj;
|
|
@@ -33212,8 +33229,8 @@ setMaxSpriteMeshItemCount(8);
|
|
|
33212
33229
|
*/ Mesh.create = function(engine, props) {
|
|
33213
33230
|
return new ThreeMesh(engine, props);
|
|
33214
33231
|
};
|
|
33215
|
-
var version = "2.1.0-alpha.
|
|
33232
|
+
var version = "2.1.0-alpha.14";
|
|
33216
33233
|
logger.info("THREEJS plugin version: " + version + ".");
|
|
33217
33234
|
|
|
33218
|
-
export { AbstractPlugin, ActivationPlayable, ActivationPlayableAsset, ActivationTrack, AnimationClip, AnimationClipPlayable, Asset, AssetLoader, AssetManager, BYTES_TYPE_MAP, BaseRenderComponent, Behaviour, BezierCurve, BezierCurvePath, BezierCurveQuat, BinaryAsset, COMPRESSED_TEXTURE, CONSTANT_MAP_BLEND, CONSTANT_MAP_DEPTH, CONSTANT_MAP_STENCIL_FUNC, CONSTANT_MAP_STENCIL_OP, COPY_FRAGMENT_SHADER, COPY_MESH_SHADER_ID, COPY_VERTEX_SHADER, CalculateLoader, Camera, CameraController, CameraVFXItemLoader, ColorCurve, ColorPropertyPlayableAsset, ColorPropertyTrack, Component, Composition, CompositionComponent, CompositionSourceManager, DEFAULT_FONTS, DEFAULT_FPS, Database, DestroyOptions, Downloader, EFFECTS_COPY_MESH_NAME, EVENT_TYPE_CLICK, EVENT_TYPE_TOUCH_END, EVENT_TYPE_TOUCH_MOVE, EVENT_TYPE_TOUCH_START, EffectComponent, EffectsObject, EffectsPackage, Engine, EventEmitter, EventSystem, Fake3DAnimationMode, Fake3DComponent, FilterMode, Float16ArrayWrapper, FloatPropertyPlayableAsset, FloatPropertyTrack, Framebuffer, GLSLVersion, GPUCapability, Geometry, GlobalUniforms, GradientValue, HELP_LINK, HitTestType, InteractComponent, InteractLoader, InteractMesh, Item, KTXTexture, LineSegments, LinearValue, Material, MaterialDataBlock, MaterialRenderType, MaterialTrack, Mesh, MeshCollider, ObjectBindingTrack, OrderType, PLAYER_OPTIONS_ENV_EDITOR, POST_PROCESS_SETTINGS, ParticleBehaviourPlayable, ParticleBehaviourPlayableAsset, ParticleLoader, ParticleMesh, ParticleSystem, ParticleSystemRenderer, PassTextureCache, PathSegments, PluginSystem, PostProcessVolume, PropertyTrack, RENDER_PASS_NAME_PREFIX, RENDER_PREFER_LOOKUP_TEXTURE, RUNTIME_ENV, RandomSetValue, RandomValue, RandomVectorValue, RenderFrame, RenderPass, RenderPassAttachmentStorageType, RenderPassDestroyAttachmentType, RenderPassPriorityNormal, RenderPassPriorityPostprocess, RenderPassPriorityPrepare, RenderTargetHandle, RenderTextureFormat, Renderbuffer, Renderer, RendererComponent, RuntimeClip, SEMANTIC_MAIN_PRE_COLOR_ATTACHMENT_0, SEMANTIC_MAIN_PRE_COLOR_ATTACHMENT_SIZE_0, SEMANTIC_PRE_COLOR_ATTACHMENT_0, SEMANTIC_PRE_COLOR_ATTACHMENT_SIZE_0, SPRITE_VERTEX_STRIDE, Scene, SemanticMap, SerializationHelper, Shader, ShaderCompileResultStatus, ShaderFactory, ShaderType, ShaderVariant, ShapeComponent,
|
|
33235
|
+
export { AbstractPlugin, ActivationPlayable, ActivationPlayableAsset, ActivationTrack, AnimationClip, AnimationClipPlayable, Asset, AssetLoader, AssetManager, BYTES_TYPE_MAP, BaseRenderComponent, Behaviour, BezierCurve, BezierCurvePath, BezierCurveQuat, BinaryAsset, COMPRESSED_TEXTURE, CONSTANT_MAP_BLEND, CONSTANT_MAP_DEPTH, CONSTANT_MAP_STENCIL_FUNC, CONSTANT_MAP_STENCIL_OP, COPY_FRAGMENT_SHADER, COPY_MESH_SHADER_ID, COPY_VERTEX_SHADER, CalculateLoader, Camera, CameraController, CameraVFXItemLoader, ColorCurve, ColorPropertyPlayableAsset, ColorPropertyTrack, Component, Composition, CompositionComponent, CompositionSourceManager, DEFAULT_FONTS, DEFAULT_FPS, Database, DestroyOptions, Downloader, EFFECTS_COPY_MESH_NAME, EVENT_TYPE_CLICK, EVENT_TYPE_TOUCH_END, EVENT_TYPE_TOUCH_MOVE, EVENT_TYPE_TOUCH_START, EffectComponent, EffectsObject, EffectsPackage, Engine, EventEmitter, EventSystem, Fake3DAnimationMode, Fake3DComponent, FilterMode, Float16ArrayWrapper, FloatPropertyPlayableAsset, FloatPropertyTrack, Framebuffer, GLSLVersion, GPUCapability, Geometry, GlobalUniforms, GradientValue, HELP_LINK, HitTestType, InteractComponent, InteractLoader, InteractMesh, Item, KTXTexture, LineSegments, LinearValue, Material, MaterialDataBlock, MaterialRenderType, MaterialTrack, Mesh, MeshCollider, ObjectBindingTrack, OrderType, PLAYER_OPTIONS_ENV_EDITOR, POST_PROCESS_SETTINGS, ParticleBehaviourPlayable, ParticleBehaviourPlayableAsset, ParticleLoader, ParticleMesh, ParticleSystem, ParticleSystemRenderer, PassTextureCache, PathSegments, PluginSystem, PostProcessVolume, PropertyTrack, RENDER_PASS_NAME_PREFIX, RENDER_PREFER_LOOKUP_TEXTURE, RUNTIME_ENV, RandomSetValue, RandomValue, RandomVectorValue, RenderFrame, RenderPass, RenderPassAttachmentStorageType, RenderPassDestroyAttachmentType, RenderPassPriorityNormal, RenderPassPriorityPostprocess, RenderPassPriorityPrepare, RenderTargetHandle, RenderTextureFormat, Renderbuffer, Renderer, RendererComponent, RuntimeClip, SEMANTIC_MAIN_PRE_COLOR_ATTACHMENT_0, SEMANTIC_MAIN_PRE_COLOR_ATTACHMENT_SIZE_0, SEMANTIC_PRE_COLOR_ATTACHMENT_0, SEMANTIC_PRE_COLOR_ATTACHMENT_SIZE_0, SPRITE_VERTEX_STRIDE, Scene, SemanticMap, SerializationHelper, Shader, ShaderCompileResultStatus, ShaderFactory, ShaderType, ShaderVariant, ShapeComponent, SpriteColorPlayableAsset, SpriteColorTrack, SpriteComponent, SpriteLoader, StaticValue, SubCompositionPlayableAsset, SubCompositionTrack, TEMPLATE_USE_OFFSCREEN_CANVAS, TEXTURE_UNIFORM_MAP, TextComponent, TextComponentBase, TextLayout, TextLoader, TextStyle, Texture, TextureFactory, TextureLoadAction, TextureSourceType, TextureStoreAction, ThreeComposition, ThreeDisplayObject, ThreeEngine, ThreeMaterial, ThreeSpriteComponent, ThreeTextComponent, ThreeTexture, Ticker, TimelineAsset, TimelineClip, TimelinePlayable, TrackAsset, TrackSortWrapper, TrackType, Transform, TransformAnimationPlayable, TransformPlayableAsset, TransformTrack, VFXItem, ValueGetter, Vector4Curve, Vector4PropertyPlayableAsset, Vector4PropertyTrack, addByOrder, addItem, addItemWithOrder, applyMixins, assertExist, asserts, base64ToFile, blend, calculateTranslation, canvasPool, colorGradingFrag, colorStopsFromGradient, colorToArr$1 as colorToArr, combineImageTemplate, createCopyShader, createGLContext, createKeyFrameMeta, createShape, createValueGetter, decimalEqual, defaultPlugins, deserializeMipmapTexture, earcut, effectsClass, effectsClassStore, enlargeBuffer, ensureFixedNumber, ensureVec3, findPreviousRenderPass, gaussianDown_frag as gaussianDownFrag, gaussianDownHFrag, gaussianDownVFrag, gaussianUpFrag, generateEmptyTypedArray, generateGUID, generateHalfFloatTexture, generateTransparentTexture, generateWhiteTexture, getBackgroundImage, getColorFromGradientStops, getConfig, getDefaultTextureFactory, getGeometryByShape, getGeometryTriangles, getImageItemRenderInfo, getKTXTextureOptions, getKeyFrameMetaByRawValue, getMergedStore, getParticleMeshShader, getPixelRatio, getPreMultiAlpha, getStandardComposition, getStandardImage, getStandardItem, getStandardJSON, getTextureSize, glContext, glType2VertexFormatType, gpuTimer, imageDataFromColor, imageDataFromGradient, initErrors, initGLContext, integrate, interpolateColor, isAlipayMiniApp, isAndroid, isArray, isCanvas, isFunction, isIOS, isIOSByUA, isMiniProgram, isObject, isSimulatorCellPhone, isString, isUniformStruct, isUniformStructArray, isValidFontFamily, isWebGL2, isWechatMiniApp, itemFrag, itemFrameFrag, itemVert, loadAVIFOptional, loadBinary, loadBlob, loadImage, loadMedia, loadVideo, loadWebPOptional, logger, index as math, maxSpriteMeshItemCount, modifyMaxKeyframeShader, nearestPowerOfTwo, noop, normalizeColor, numberToFix, parsePercent$1 as parsePercent, particleFrag, particleOriginTranslateMap$1 as particleOriginTranslateMap, particleUniformTypeMap, particleVert, passRenderLevel, pluginLoaderMap, randomInRange, registerPlugin, removeItem, rotateVec2, screenMeshVert, serialize, setBlendMode, setConfig, setDefaultTextureFactory, setMaskMode, setMaxSpriteMeshItemCount, setRayFromCamera, setSideMode, setSpriteMeshMaxItemCountByGPU, setUniformValue, sortByOrder, index$1 as spec, spriteMeshShaderFromFilter, spriteMeshShaderFromRenderInfo, spriteMeshShaderIdFromRenderInfo, thresholdFrag, throwDestroyedError, trailVert, translatePoint, trianglesFromRect, unregisterPlugin, valIfUndefined, value, valueDefine, vecFill, vecMulCombine, version, vertexFormatType2GLType };
|
|
33219
33236
|
//# sourceMappingURL=index.mjs.map
|