├── .cargo └── config.toml ├── .github └── workflows │ ├── build-pages.yml │ ├── build.yml │ ├── integration-tests-build.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── bindings ├── .gitignore ├── draco-decoder │ └── .gitkeep ├── noise │ ├── Cargo.toml │ ├── index.js │ └── src │ │ └── lib.rs ├── taffy │ ├── Cargo.toml │ ├── README.md │ ├── index.js │ ├── src │ │ ├── lib.rs │ │ └── utils.rs │ └── tests │ │ └── web.rs └── tools │ ├── build.cjs │ ├── generate-wasm-js.cjs │ ├── post-scripts.cjs │ └── remove-import-meta.cjs ├── fixtures ├── assets │ ├── 40.mp3 │ ├── 42.mp3 │ ├── 44.mp3 │ ├── 45.mp3 │ └── fan.mp3 ├── canvas │ ├── chatbox.xsml │ ├── particles.ts │ └── particles.xsml ├── css │ ├── css-transform.xsml │ ├── spatial-basic.xsml │ └── spatial-material-bumpmap.xsml ├── custom-loader │ ├── custom-load.xsml │ └── custom-resolve.xsml ├── dom │ ├── globals-in-script.xsml │ └── timers-in-script.xsml ├── esm │ ├── bar │ │ ├── ops.ts │ │ └── some.ts │ ├── dynamic-imports.xsml │ ├── exports-as-default.ts │ ├── exports-as-named.ts │ ├── files │ │ ├── babeee.bin │ │ ├── babeee.json │ │ └── babeee.wasm │ ├── foo.ts │ ├── http-imports.xsml │ ├── loaders.xsml │ ├── script-inline.xsml │ └── script-with-src.xsml ├── html-in-spatial │ ├── basic.xsml │ ├── images.xsml │ ├── paragraph.xsml │ ├── preact.xsml │ ├── text-button.ts │ └── text-buttons.xsml ├── material │ ├── raw-texture.ts │ └── raw-texture.xsml ├── model │ └── rokid-jungle.glb ├── package-lock.json ├── package.json ├── scripts-in-xml │ ├── exception-in-spaceready.xsml │ ├── external-async-scripts.xsml │ ├── external-blocking-scripts.xsml │ ├── first.ts │ ├── inline-scripts.xsml │ └── second.js ├── simple.xsml ├── spatial-element.xsml ├── spatial-externalmesh-glb.ts ├── spatial-externalmesh-glb.xsml ├── spatial-grid-system.ts ├── spatial-grid-system.xsml ├── spatial-lion.js ├── spatial-lion.xsml ├── spatial-morph-target.ts ├── spatial-morph-target.xsml ├── spatial-polyhedra-element.xsml ├── spatial-ui │ ├── layout-cylinder.xsml │ ├── layout-sphere.xsml │ └── layout-stack.xsml ├── spatial-vertices-updating.xsml ├── textures │ ├── bump.png │ ├── example.jpeg │ ├── splatting.jpg │ ├── stars.jpeg │ └── wall.jpeg ├── tsconfig.json ├── using-babylonjs │ ├── mesh-collision.js │ ├── mesh-collision.xsml │ ├── routing-car.js │ ├── routing-car.xsml │ ├── sun-particles.js │ └── sun-particles.xsml ├── websocket │ └── echo.xsml └── xr │ └── hand-tracking.xsml ├── jest.config.cjs ├── jest.setup.cjs ├── package.json ├── pages ├── assets │ └── 3d_skill__role_badges_and_pins.glb ├── impl-babylonjs.ts ├── index.html ├── package-lock.json ├── package.json ├── screenshot.png ├── spatial-devtools │ └── console.xsml ├── tsconfig.json ├── webpack.config.cjs └── xr │ ├── Camera.ts │ ├── DefaultExperience.ts │ ├── ExperienceHelper.ts │ ├── FeatureManager.ts │ ├── Input.ts │ ├── InputSource.ts │ ├── LayerWrapper.ts │ ├── OutputCanvas.ts │ ├── README.md │ ├── RenderTargetTextureProvider.ts │ ├── SessionManager.ts │ ├── WebglLayer.ts │ └── features │ ├── WebXRAbstractFeature.ts │ ├── WebXRLayers.ts │ └── index.ts ├── prepublish.cjs ├── rustfmt.toml ├── spec └── README.md ├── src ├── README.md ├── agent │ ├── DeviceMemory.ts │ ├── cdp │ │ ├── api.ts │ │ ├── builder │ │ │ ├── .pdl_cache │ │ │ │ ├── .gitignore │ │ │ │ └── .gitkeep │ │ │ ├── main.ts │ │ │ ├── pdl-types.ts │ │ │ ├── pdl2json.ts │ │ │ └── pdl2typescript.ts │ │ ├── cancellation.ts │ │ ├── cdp-implementation.ts │ │ ├── cdp-protocol.ts │ │ ├── cdp-session.ts │ │ ├── client.ts │ │ ├── connection.ts │ │ ├── definitions.ts │ │ ├── errors.ts │ │ ├── index.ts │ │ ├── serializer │ │ │ ├── index.ts │ │ │ └── json.ts │ │ ├── server.ts │ │ └── transport │ │ │ ├── index.ts │ │ │ └── loopback.ts │ ├── console.ts │ ├── navigator.ts │ ├── parser │ │ ├── index.ts │ │ ├── xml-utils.ts │ │ └── xsml.ts │ ├── resources │ │ ├── .gitkeep │ │ ├── AssetsBundle.ts │ │ ├── ResourceQueue.test.ts │ │ └── ResourceQueue.ts │ ├── timers.ts │ └── window.ts ├── impl-headless.ts ├── impl-interfaces.ts ├── index.test.ts ├── index.ts ├── input-event.ts ├── live2 │ └── .gitkeep ├── live3 │ └── .gitkeep ├── living │ ├── attributes.ts │ ├── attributes │ │ ├── Attr.ts │ │ └── NamedNodeMap.ts │ ├── audiocontext │ │ └── Audio.ts │ ├── compatible.test.ts │ ├── crypto │ │ └── Noise.ts │ ├── cssom │ │ ├── CSSRule.ts │ │ ├── CSSRuleList.ts │ │ ├── CSSSpatialKeyframeRule.ts │ │ ├── CSSSpatialKeyframesRule.ts │ │ ├── CSSSpatialMaterialRule.ts │ │ ├── CSSSpatialStyleDeclaration.test.ts │ │ ├── CSSSpatialStyleDeclaration.ts │ │ ├── CSSSpatialStyleRule.ts │ │ ├── CSSStyleRule.ts │ │ ├── CSSStyleSheet.ts │ │ ├── README.md │ │ ├── StyleSheet.ts │ │ ├── StyleSheetList.ts │ │ ├── materials │ │ │ └── GridMaterial.ts │ │ ├── parsers │ │ │ ├── animation-shorthand │ │ │ │ ├── Error.ts │ │ │ │ ├── README.md │ │ │ │ ├── character.ts │ │ │ │ ├── fillAnimation.ts │ │ │ │ ├── getCubicBezier.test.ts │ │ │ │ ├── getCubicBezier.ts │ │ │ │ ├── getCustomIdent.test.ts │ │ │ │ ├── getCustomIdent.ts │ │ │ │ ├── getNumber.test.ts │ │ │ │ ├── getNumber.ts │ │ │ │ ├── getSteps.test.ts │ │ │ │ ├── getSteps.ts │ │ │ │ ├── getString.test.ts │ │ │ │ ├── getString.ts │ │ │ │ ├── index.test.ts │ │ │ │ ├── index.ts │ │ │ │ ├── keyword.ts │ │ │ │ ├── parseAnimationShorthand.test.ts │ │ │ │ ├── parseAnimationShorthand.ts │ │ │ │ ├── parseSingleAnimationShorthand.test.ts │ │ │ │ ├── parseSingleAnimationShorthand.ts │ │ │ │ ├── serializeAnimation.test.ts │ │ │ │ ├── serializeAnimation.ts │ │ │ │ ├── serializeAnimationValue.test.ts │ │ │ │ ├── serializeAnimationValue.ts │ │ │ │ ├── serializeNumber.test.ts │ │ │ │ ├── serializeNumber.ts │ │ │ │ ├── shortest.test.ts │ │ │ │ ├── shortest.ts │ │ │ │ ├── skip.test.ts │ │ │ │ ├── skip.ts │ │ │ │ └── type.ts │ │ │ ├── index.test.ts │ │ │ ├── index.ts │ │ │ └── named-colors.ts │ │ ├── spatial-properties │ │ │ ├── albedo-color.ts │ │ │ ├── albedo-texture.ts │ │ │ ├── ambient-color.ts │ │ │ ├── ambient-texture.ts │ │ │ ├── animation-duration.ts │ │ │ ├── animation-iteration-count.ts │ │ │ ├── animation-name.ts │ │ │ ├── animation.ts │ │ │ ├── bump-texture.ts │ │ │ ├── diffuse-color.ts │ │ │ ├── diffuse-texture.ts │ │ │ ├── emissive-color.ts │ │ │ ├── emissive-texture.ts │ │ │ ├── helper.ts │ │ │ ├── index.ts │ │ │ ├── material-alpha-mode.ts │ │ │ ├── material-grid-background-color.ts │ │ │ ├── material-grid-cell-height.ts │ │ │ ├── material-grid-cell-width.ts │ │ │ ├── material-grid-height.ts │ │ │ ├── material-grid-major-line-color.ts │ │ │ ├── material-grid-minor-line-color.ts │ │ │ ├── material-grid-width.ts │ │ │ ├── material-orientation.ts │ │ │ ├── material-type.ts │ │ │ ├── material.ts │ │ │ ├── physical-metallic.ts │ │ │ ├── physical-roughness.ts │ │ │ ├── position-x.ts │ │ │ ├── position-y.ts │ │ │ ├── position-z.ts │ │ │ ├── position.ts │ │ │ ├── rotation.ts │ │ │ ├── scaling.ts │ │ │ ├── specular-color.ts │ │ │ ├── specular-power.ts │ │ │ ├── specular-texture.ts │ │ │ └── wireframe.ts │ │ └── utils │ │ │ └── color-space.ts │ ├── custom-elements │ │ └── CustomElementRegistry.ts │ ├── domexception.test.ts │ ├── domexception.ts │ ├── domparsing │ │ ├── InnerHTML.ts │ │ └── serialization.ts │ ├── esm-supports.json │ ├── events │ │ ├── CloseEvent.ts │ │ ├── CustomEvent.ts │ │ ├── ErrorEvent.ts │ │ ├── FocusEvent.ts │ │ ├── HandTrackingEvent.ts │ │ ├── HashChangeEvent.ts │ │ ├── KeyboardEvent.ts │ │ ├── MessageEvent.ts │ │ ├── MouseEvent.ts │ │ ├── PopStateEvent.ts │ │ ├── ProgressEvent.ts │ │ ├── TouchEvent.ts │ │ └── UIEvent.ts │ ├── geometry │ │ ├── DOMMatrix.test.ts │ │ ├── DOMMatrix.ts │ │ ├── DOMMatrixReadOnly.ts │ │ ├── DOMPoint.test.ts │ │ ├── DOMPoint.ts │ │ ├── DOMPointReadOnly.test.ts │ │ ├── DOMPointReadOnly.ts │ │ ├── DOMRect.ts │ │ └── DOMRectReadOnly.ts │ ├── helpers │ │ ├── babylonjs │ │ │ ├── InteractiveDynamicTexture.ts │ │ │ ├── loaders │ │ │ │ ├── OBJ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── mtlFileLoader.ts │ │ │ │ │ ├── objFileLoader.ts │ │ │ │ │ ├── objLoadingOptions.ts │ │ │ │ │ └── solidParser.ts │ │ │ │ ├── README.md │ │ │ │ ├── STL │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stlFileLoader.ts │ │ │ │ ├── gLTF │ │ │ │ │ ├── 1.0 │ │ │ │ │ │ ├── glTFBinaryExtension.ts │ │ │ │ │ │ ├── glTFLoader.ts │ │ │ │ │ │ ├── glTFLoaderInterfaces.ts │ │ │ │ │ │ ├── glTFLoaderUtils.ts │ │ │ │ │ │ ├── glTFMaterialsCommonExtension.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── 2.0 │ │ │ │ │ │ ├── Extensions │ │ │ │ │ │ │ ├── EXT_lights_image_based.ts │ │ │ │ │ │ │ ├── EXT_mesh_gpu_instancing.ts │ │ │ │ │ │ │ ├── EXT_meshopt_compression.ts │ │ │ │ │ │ │ ├── EXT_texture_webp.ts │ │ │ │ │ │ │ ├── ExtrasAsMetadata.ts │ │ │ │ │ │ │ ├── KHR_animation_pointer.data.ts │ │ │ │ │ │ │ ├── KHR_animation_pointer.ts │ │ │ │ │ │ │ ├── KHR_draco_mesh_compression.ts │ │ │ │ │ │ │ ├── KHR_lights_punctual.ts │ │ │ │ │ │ │ ├── KHR_materials_anisotropy.ts │ │ │ │ │ │ │ ├── KHR_materials_clearcoat.ts │ │ │ │ │ │ │ ├── KHR_materials_emissive_strength.ts │ │ │ │ │ │ │ ├── KHR_materials_ior.ts │ │ │ │ │ │ │ ├── KHR_materials_iridescence.ts │ │ │ │ │ │ │ ├── KHR_materials_pbrSpecularGlossiness.ts │ │ │ │ │ │ │ ├── KHR_materials_sheen.ts │ │ │ │ │ │ │ ├── KHR_materials_specular.ts │ │ │ │ │ │ │ ├── KHR_materials_translucency.ts │ │ │ │ │ │ │ ├── KHR_materials_transmission.ts │ │ │ │ │ │ │ ├── KHR_materials_unlit.ts │ │ │ │ │ │ │ ├── KHR_materials_variants.ts │ │ │ │ │ │ │ ├── KHR_materials_volume.ts │ │ │ │ │ │ │ ├── KHR_mesh_quantization.ts │ │ │ │ │ │ │ ├── KHR_texture_basisu.ts │ │ │ │ │ │ │ ├── KHR_texture_transform.ts │ │ │ │ │ │ │ ├── KHR_xmp_json_ld.ts │ │ │ │ │ │ │ ├── MSFT_audio_emitter.ts │ │ │ │ │ │ │ ├── MSFT_lod.ts │ │ │ │ │ │ │ ├── MSFT_minecraftMesh.ts │ │ │ │ │ │ │ ├── MSFT_sRGBFactors.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── glTFLoader.ts │ │ │ │ │ │ ├── glTFLoaderAnimation.ts │ │ │ │ │ │ ├── glTFLoaderExtension.ts │ │ │ │ │ │ ├── glTFLoaderInterfaces.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── glTFFileLoader.ts │ │ │ │ │ ├── glTFValidation.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── patches │ │ │ │ ├── draco_decoder_gltf.cjs │ │ │ │ ├── draco_decoder_gltf.wasm.cjs │ │ │ │ ├── index.ts │ │ │ │ ├── rewrite-draco-compression.ts │ │ │ │ └── rewrite-meshopt-compression.ts │ │ │ └── tags.ts │ │ ├── create-element.ts │ │ ├── custom-elements.ts │ │ ├── document-base-url.ts │ │ ├── gui2d │ │ │ ├── control.test.ts │ │ │ └── control.ts │ │ ├── internal-constants.ts │ │ ├── iterable-weak-set.ts │ │ ├── matrix-functions.test.ts │ │ ├── matrix-functions.ts │ │ ├── mutation-observers.ts │ │ ├── namespaces.ts │ │ ├── node.ts │ │ ├── ordered-set.ts │ │ ├── runtime-script-errors.ts │ │ ├── scripting-types.ts │ │ ├── selectors.ts │ │ ├── shadow-dom.ts │ │ ├── spatial-animations.ts │ │ ├── spatial-css-parser.ts │ │ ├── strings.ts │ │ ├── style-rules.ts │ │ ├── stylesheets.ts │ │ ├── text.ts │ │ ├── traversal.ts │ │ ├── url.test.ts │ │ ├── url.ts │ │ └── validate-names.ts │ ├── hr-time │ │ └── Performance.ts │ ├── image │ │ ├── ImageData.test.ts │ │ └── ImageData.ts │ ├── interfaces.test.ts │ ├── mutation-observer │ │ ├── MutationObserver.ts │ │ └── MutationRecord.ts │ ├── named-properties-tracker.ts │ ├── named-properties-window.ts │ ├── node-document-position.ts │ ├── node-type.ts │ ├── node.ts │ ├── nodes │ │ ├── CharacterData.ts │ │ ├── ChildNode.ts │ │ ├── DOMTokenList.ts │ │ ├── DocumentFragment.ts │ │ ├── DocumentOrShadowRoot.ts │ │ ├── DocumentType.ts │ │ ├── Element.ts │ │ ├── GlobalEventHandlers.ts │ │ ├── HTMLAudioElement.ts │ │ ├── HTMLBaseElement.ts │ │ ├── HTMLCollection.ts │ │ ├── HTMLContentElement.ts │ │ ├── HTMLDivElement.ts │ │ ├── HTMLElement.ts │ │ ├── HTMLHeadElement.ts │ │ ├── HTMLHeadingElement.ts │ │ ├── HTMLImageElement.ts │ │ ├── HTMLLinkElement.ts │ │ ├── HTMLMediaElement.ts │ │ ├── HTMLMetaElement.ts │ │ ├── HTMLParagraphElement.ts │ │ ├── HTMLScriptElement.test.ts │ │ ├── HTMLScriptElement.ts │ │ ├── HTMLSpanElement.ts │ │ ├── HTMLStyleElement.ts │ │ ├── HTMLTitleElement.ts │ │ ├── Node.ts │ │ ├── NodeList.test.ts │ │ ├── NodeList.ts │ │ ├── NonDocumentTypeChildNode.ts │ │ ├── NonElementParentNode.ts │ │ ├── ParentNode.ts │ │ ├── ShadowRoot.ts │ │ ├── SpatialBoundElement.ts │ │ ├── SpatialButtonElement.ts │ │ ├── SpatialCapsuleElement.ts │ │ ├── SpatialCubeElement.ts │ │ ├── SpatialCylinderElement.ts │ │ ├── SpatialDocument.ts │ │ ├── SpatialElement.ts │ │ ├── SpatialIcosphereElement.ts │ │ ├── SpatialMeshElement.ts │ │ ├── SpatialPanelElement.ts │ │ ├── SpatialPlaneElement.ts │ │ ├── SpatialPolyhedraElement.ts │ │ ├── SpatialRefElement.ts │ │ ├── SpatialSpaceElement.ts │ │ ├── SpatialSphereElement.ts │ │ ├── SpatialTorusElement.ts │ │ └── Text.ts │ ├── range │ │ ├── AbstractRange.ts │ │ └── Range.ts │ ├── script-context.ts │ ├── traversal │ │ ├── NodeIterator.ts │ │ └── helpers.ts │ └── xr │ │ ├── XRFrame.ts │ │ ├── XRHand.ts │ │ ├── XRInputSource.ts │ │ ├── XRInputSourceArray.ts │ │ ├── XRJointSpace.ts │ │ ├── XRPose.ts │ │ ├── XRRigidTransform.ts │ │ ├── XRSession.ts │ │ ├── XRSpace.ts │ │ └── XRSystem.ts ├── mixin.test.ts ├── mixin.ts ├── symbols.ts ├── utils.test.ts ├── utils.ts └── virtual-console.ts ├── tools └── generate-dom-interfaces.js ├── tsconfig-esm-loader.js ├── tsconfig.json ├── types ├── .gitignore ├── .npmignore ├── .package.json ├── build.cjs ├── index.d.ts ├── package-lock.json └── tsconfig.json ├── version.cjs └── webpack.config.cjs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/workflows/build-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/.github/workflows/build-pages.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/.github/workflows/integration-tests-build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/.npmignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/README.md -------------------------------------------------------------------------------- /bindings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/.gitignore -------------------------------------------------------------------------------- /bindings/draco-decoder/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/noise/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/noise/Cargo.toml -------------------------------------------------------------------------------- /bindings/noise/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/noise/index.js -------------------------------------------------------------------------------- /bindings/noise/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/noise/src/lib.rs -------------------------------------------------------------------------------- /bindings/taffy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/taffy/Cargo.toml -------------------------------------------------------------------------------- /bindings/taffy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/taffy/README.md -------------------------------------------------------------------------------- /bindings/taffy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/taffy/index.js -------------------------------------------------------------------------------- /bindings/taffy/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/taffy/src/lib.rs -------------------------------------------------------------------------------- /bindings/taffy/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/taffy/src/utils.rs -------------------------------------------------------------------------------- /bindings/taffy/tests/web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/taffy/tests/web.rs -------------------------------------------------------------------------------- /bindings/tools/build.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/tools/build.cjs -------------------------------------------------------------------------------- /bindings/tools/generate-wasm-js.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/tools/generate-wasm-js.cjs -------------------------------------------------------------------------------- /bindings/tools/post-scripts.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/tools/post-scripts.cjs -------------------------------------------------------------------------------- /bindings/tools/remove-import-meta.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/bindings/tools/remove-import-meta.cjs -------------------------------------------------------------------------------- /fixtures/assets/40.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/assets/40.mp3 -------------------------------------------------------------------------------- /fixtures/assets/42.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/assets/42.mp3 -------------------------------------------------------------------------------- /fixtures/assets/44.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/assets/44.mp3 -------------------------------------------------------------------------------- /fixtures/assets/45.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/assets/45.mp3 -------------------------------------------------------------------------------- /fixtures/assets/fan.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/assets/fan.mp3 -------------------------------------------------------------------------------- /fixtures/canvas/chatbox.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/canvas/chatbox.xsml -------------------------------------------------------------------------------- /fixtures/canvas/particles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/canvas/particles.ts -------------------------------------------------------------------------------- /fixtures/canvas/particles.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/canvas/particles.xsml -------------------------------------------------------------------------------- /fixtures/css/css-transform.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/css/css-transform.xsml -------------------------------------------------------------------------------- /fixtures/css/spatial-basic.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/css/spatial-basic.xsml -------------------------------------------------------------------------------- /fixtures/css/spatial-material-bumpmap.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/css/spatial-material-bumpmap.xsml -------------------------------------------------------------------------------- /fixtures/custom-loader/custom-load.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/custom-loader/custom-load.xsml -------------------------------------------------------------------------------- /fixtures/custom-loader/custom-resolve.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/custom-loader/custom-resolve.xsml -------------------------------------------------------------------------------- /fixtures/dom/globals-in-script.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/dom/globals-in-script.xsml -------------------------------------------------------------------------------- /fixtures/dom/timers-in-script.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/dom/timers-in-script.xsml -------------------------------------------------------------------------------- /fixtures/esm/bar/ops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/esm/bar/ops.ts -------------------------------------------------------------------------------- /fixtures/esm/bar/some.ts: -------------------------------------------------------------------------------- 1 | export const some = 14; 2 | -------------------------------------------------------------------------------- /fixtures/esm/dynamic-imports.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/esm/dynamic-imports.xsml -------------------------------------------------------------------------------- /fixtures/esm/exports-as-default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/esm/exports-as-default.ts -------------------------------------------------------------------------------- /fixtures/esm/exports-as-named.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/esm/exports-as-named.ts -------------------------------------------------------------------------------- /fixtures/esm/files/babeee.bin: -------------------------------------------------------------------------------- 1 | babeee 2 | -------------------------------------------------------------------------------- /fixtures/esm/files/babeee.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "babeee" 3 | } 4 | -------------------------------------------------------------------------------- /fixtures/esm/files/babeee.wasm: -------------------------------------------------------------------------------- 1 | babeee 2 | -------------------------------------------------------------------------------- /fixtures/esm/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/esm/foo.ts -------------------------------------------------------------------------------- /fixtures/esm/http-imports.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/esm/http-imports.xsml -------------------------------------------------------------------------------- /fixtures/esm/loaders.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/esm/loaders.xsml -------------------------------------------------------------------------------- /fixtures/esm/script-inline.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/esm/script-inline.xsml -------------------------------------------------------------------------------- /fixtures/esm/script-with-src.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/esm/script-with-src.xsml -------------------------------------------------------------------------------- /fixtures/html-in-spatial/basic.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/html-in-spatial/basic.xsml -------------------------------------------------------------------------------- /fixtures/html-in-spatial/images.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/html-in-spatial/images.xsml -------------------------------------------------------------------------------- /fixtures/html-in-spatial/paragraph.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/html-in-spatial/paragraph.xsml -------------------------------------------------------------------------------- /fixtures/html-in-spatial/preact.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/html-in-spatial/preact.xsml -------------------------------------------------------------------------------- /fixtures/html-in-spatial/text-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/html-in-spatial/text-button.ts -------------------------------------------------------------------------------- /fixtures/html-in-spatial/text-buttons.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/html-in-spatial/text-buttons.xsml -------------------------------------------------------------------------------- /fixtures/material/raw-texture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/material/raw-texture.ts -------------------------------------------------------------------------------- /fixtures/material/raw-texture.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/material/raw-texture.xsml -------------------------------------------------------------------------------- /fixtures/model/rokid-jungle.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/model/rokid-jungle.glb -------------------------------------------------------------------------------- /fixtures/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/package-lock.json -------------------------------------------------------------------------------- /fixtures/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/package.json -------------------------------------------------------------------------------- /fixtures/scripts-in-xml/exception-in-spaceready.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/scripts-in-xml/exception-in-spaceready.xsml -------------------------------------------------------------------------------- /fixtures/scripts-in-xml/external-async-scripts.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/scripts-in-xml/external-async-scripts.xsml -------------------------------------------------------------------------------- /fixtures/scripts-in-xml/external-blocking-scripts.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/scripts-in-xml/external-blocking-scripts.xsml -------------------------------------------------------------------------------- /fixtures/scripts-in-xml/first.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/scripts-in-xml/first.ts -------------------------------------------------------------------------------- /fixtures/scripts-in-xml/inline-scripts.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/scripts-in-xml/inline-scripts.xsml -------------------------------------------------------------------------------- /fixtures/scripts-in-xml/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/scripts-in-xml/second.js -------------------------------------------------------------------------------- /fixtures/simple.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/simple.xsml -------------------------------------------------------------------------------- /fixtures/spatial-element.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-element.xsml -------------------------------------------------------------------------------- /fixtures/spatial-externalmesh-glb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-externalmesh-glb.ts -------------------------------------------------------------------------------- /fixtures/spatial-externalmesh-glb.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-externalmesh-glb.xsml -------------------------------------------------------------------------------- /fixtures/spatial-grid-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-grid-system.ts -------------------------------------------------------------------------------- /fixtures/spatial-grid-system.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-grid-system.xsml -------------------------------------------------------------------------------- /fixtures/spatial-lion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-lion.js -------------------------------------------------------------------------------- /fixtures/spatial-lion.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-lion.xsml -------------------------------------------------------------------------------- /fixtures/spatial-morph-target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-morph-target.ts -------------------------------------------------------------------------------- /fixtures/spatial-morph-target.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-morph-target.xsml -------------------------------------------------------------------------------- /fixtures/spatial-polyhedra-element.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-polyhedra-element.xsml -------------------------------------------------------------------------------- /fixtures/spatial-ui/layout-cylinder.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-ui/layout-cylinder.xsml -------------------------------------------------------------------------------- /fixtures/spatial-ui/layout-sphere.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-ui/layout-sphere.xsml -------------------------------------------------------------------------------- /fixtures/spatial-ui/layout-stack.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-ui/layout-stack.xsml -------------------------------------------------------------------------------- /fixtures/spatial-vertices-updating.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/spatial-vertices-updating.xsml -------------------------------------------------------------------------------- /fixtures/textures/bump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/textures/bump.png -------------------------------------------------------------------------------- /fixtures/textures/example.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/textures/example.jpeg -------------------------------------------------------------------------------- /fixtures/textures/splatting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/textures/splatting.jpg -------------------------------------------------------------------------------- /fixtures/textures/stars.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/textures/stars.jpeg -------------------------------------------------------------------------------- /fixtures/textures/wall.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/textures/wall.jpeg -------------------------------------------------------------------------------- /fixtures/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/tsconfig.json -------------------------------------------------------------------------------- /fixtures/using-babylonjs/mesh-collision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/using-babylonjs/mesh-collision.js -------------------------------------------------------------------------------- /fixtures/using-babylonjs/mesh-collision.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/using-babylonjs/mesh-collision.xsml -------------------------------------------------------------------------------- /fixtures/using-babylonjs/routing-car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/using-babylonjs/routing-car.js -------------------------------------------------------------------------------- /fixtures/using-babylonjs/routing-car.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/using-babylonjs/routing-car.xsml -------------------------------------------------------------------------------- /fixtures/using-babylonjs/sun-particles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/using-babylonjs/sun-particles.js -------------------------------------------------------------------------------- /fixtures/using-babylonjs/sun-particles.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/using-babylonjs/sun-particles.xsml -------------------------------------------------------------------------------- /fixtures/websocket/echo.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/websocket/echo.xsml -------------------------------------------------------------------------------- /fixtures/xr/hand-tracking.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/fixtures/xr/hand-tracking.xsml -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /jest.setup.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/jest.setup.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/package.json -------------------------------------------------------------------------------- /pages/assets/3d_skill__role_badges_and_pins.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/assets/3d_skill__role_badges_and_pins.glb -------------------------------------------------------------------------------- /pages/impl-babylonjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/impl-babylonjs.ts -------------------------------------------------------------------------------- /pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/index.html -------------------------------------------------------------------------------- /pages/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/package-lock.json -------------------------------------------------------------------------------- /pages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/package.json -------------------------------------------------------------------------------- /pages/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/screenshot.png -------------------------------------------------------------------------------- /pages/spatial-devtools/console.xsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/spatial-devtools/console.xsml -------------------------------------------------------------------------------- /pages/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json" 3 | } -------------------------------------------------------------------------------- /pages/webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/webpack.config.cjs -------------------------------------------------------------------------------- /pages/xr/Camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/Camera.ts -------------------------------------------------------------------------------- /pages/xr/DefaultExperience.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/DefaultExperience.ts -------------------------------------------------------------------------------- /pages/xr/ExperienceHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/ExperienceHelper.ts -------------------------------------------------------------------------------- /pages/xr/FeatureManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/FeatureManager.ts -------------------------------------------------------------------------------- /pages/xr/Input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/Input.ts -------------------------------------------------------------------------------- /pages/xr/InputSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/InputSource.ts -------------------------------------------------------------------------------- /pages/xr/LayerWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/LayerWrapper.ts -------------------------------------------------------------------------------- /pages/xr/OutputCanvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/OutputCanvas.ts -------------------------------------------------------------------------------- /pages/xr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/README.md -------------------------------------------------------------------------------- /pages/xr/RenderTargetTextureProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/RenderTargetTextureProvider.ts -------------------------------------------------------------------------------- /pages/xr/SessionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/SessionManager.ts -------------------------------------------------------------------------------- /pages/xr/WebglLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/WebglLayer.ts -------------------------------------------------------------------------------- /pages/xr/features/WebXRAbstractFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/features/WebXRAbstractFeature.ts -------------------------------------------------------------------------------- /pages/xr/features/WebXRLayers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/features/WebXRLayers.ts -------------------------------------------------------------------------------- /pages/xr/features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/pages/xr/features/index.ts -------------------------------------------------------------------------------- /prepublish.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/prepublish.cjs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | # rustfmt.toml 2 | 3 | tab_spaces = 2 4 | -------------------------------------------------------------------------------- /spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/spec/README.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/README.md -------------------------------------------------------------------------------- /src/agent/DeviceMemory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/DeviceMemory.ts -------------------------------------------------------------------------------- /src/agent/cdp/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/api.ts -------------------------------------------------------------------------------- /src/agent/cdp/builder/.pdl_cache/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdl 2 | *.json 3 | -------------------------------------------------------------------------------- /src/agent/cdp/builder/.pdl_cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/cdp/builder/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/builder/main.ts -------------------------------------------------------------------------------- /src/agent/cdp/builder/pdl-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/builder/pdl-types.ts -------------------------------------------------------------------------------- /src/agent/cdp/builder/pdl2json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/builder/pdl2json.ts -------------------------------------------------------------------------------- /src/agent/cdp/builder/pdl2typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/builder/pdl2typescript.ts -------------------------------------------------------------------------------- /src/agent/cdp/cancellation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/cancellation.ts -------------------------------------------------------------------------------- /src/agent/cdp/cdp-implementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/cdp-implementation.ts -------------------------------------------------------------------------------- /src/agent/cdp/cdp-protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/cdp-protocol.ts -------------------------------------------------------------------------------- /src/agent/cdp/cdp-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/cdp-session.ts -------------------------------------------------------------------------------- /src/agent/cdp/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/client.ts -------------------------------------------------------------------------------- /src/agent/cdp/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/connection.ts -------------------------------------------------------------------------------- /src/agent/cdp/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/definitions.ts -------------------------------------------------------------------------------- /src/agent/cdp/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/errors.ts -------------------------------------------------------------------------------- /src/agent/cdp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/index.ts -------------------------------------------------------------------------------- /src/agent/cdp/serializer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/serializer/index.ts -------------------------------------------------------------------------------- /src/agent/cdp/serializer/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/serializer/json.ts -------------------------------------------------------------------------------- /src/agent/cdp/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/server.ts -------------------------------------------------------------------------------- /src/agent/cdp/transport/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/transport/index.ts -------------------------------------------------------------------------------- /src/agent/cdp/transport/loopback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/cdp/transport/loopback.ts -------------------------------------------------------------------------------- /src/agent/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/console.ts -------------------------------------------------------------------------------- /src/agent/navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/navigator.ts -------------------------------------------------------------------------------- /src/agent/parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/parser/index.ts -------------------------------------------------------------------------------- /src/agent/parser/xml-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/parser/xml-utils.ts -------------------------------------------------------------------------------- /src/agent/parser/xsml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/parser/xsml.ts -------------------------------------------------------------------------------- /src/agent/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/resources/AssetsBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/resources/AssetsBundle.ts -------------------------------------------------------------------------------- /src/agent/resources/ResourceQueue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/resources/ResourceQueue.test.ts -------------------------------------------------------------------------------- /src/agent/resources/ResourceQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/resources/ResourceQueue.ts -------------------------------------------------------------------------------- /src/agent/timers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/timers.ts -------------------------------------------------------------------------------- /src/agent/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/agent/window.ts -------------------------------------------------------------------------------- /src/impl-headless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/impl-headless.ts -------------------------------------------------------------------------------- /src/impl-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/impl-interfaces.ts -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/input-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/input-event.ts -------------------------------------------------------------------------------- /src/live2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/live3/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/living/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/attributes.ts -------------------------------------------------------------------------------- /src/living/attributes/Attr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/attributes/Attr.ts -------------------------------------------------------------------------------- /src/living/attributes/NamedNodeMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/attributes/NamedNodeMap.ts -------------------------------------------------------------------------------- /src/living/audiocontext/Audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/audiocontext/Audio.ts -------------------------------------------------------------------------------- /src/living/compatible.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/compatible.test.ts -------------------------------------------------------------------------------- /src/living/crypto/Noise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/crypto/Noise.ts -------------------------------------------------------------------------------- /src/living/cssom/CSSRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/CSSRule.ts -------------------------------------------------------------------------------- /src/living/cssom/CSSRuleList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/CSSRuleList.ts -------------------------------------------------------------------------------- /src/living/cssom/CSSSpatialKeyframeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/CSSSpatialKeyframeRule.ts -------------------------------------------------------------------------------- /src/living/cssom/CSSSpatialKeyframesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/CSSSpatialKeyframesRule.ts -------------------------------------------------------------------------------- /src/living/cssom/CSSSpatialMaterialRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/CSSSpatialMaterialRule.ts -------------------------------------------------------------------------------- /src/living/cssom/CSSSpatialStyleDeclaration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/CSSSpatialStyleDeclaration.test.ts -------------------------------------------------------------------------------- /src/living/cssom/CSSSpatialStyleDeclaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/CSSSpatialStyleDeclaration.ts -------------------------------------------------------------------------------- /src/living/cssom/CSSSpatialStyleRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/CSSSpatialStyleRule.ts -------------------------------------------------------------------------------- /src/living/cssom/CSSStyleRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/CSSStyleRule.ts -------------------------------------------------------------------------------- /src/living/cssom/CSSStyleSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/CSSStyleSheet.ts -------------------------------------------------------------------------------- /src/living/cssom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/README.md -------------------------------------------------------------------------------- /src/living/cssom/StyleSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/StyleSheet.ts -------------------------------------------------------------------------------- /src/living/cssom/StyleSheetList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/StyleSheetList.ts -------------------------------------------------------------------------------- /src/living/cssom/materials/GridMaterial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/materials/GridMaterial.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/Error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/Error.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/README.md -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/character.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/character.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/fillAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/fillAnimation.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/getCubicBezier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/getCubicBezier.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/getCubicBezier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/getCubicBezier.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/getCustomIdent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/getCustomIdent.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/getCustomIdent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/getCustomIdent.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/getNumber.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/getNumber.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/getNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/getNumber.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/getSteps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/getSteps.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/getSteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/getSteps.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/getString.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/getString.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/getString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/getString.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/index.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/index.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/keyword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/keyword.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/parseAnimationShorthand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/parseAnimationShorthand.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/parseAnimationShorthand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/parseAnimationShorthand.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/parseSingleAnimationShorthand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/parseSingleAnimationShorthand.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/parseSingleAnimationShorthand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/parseSingleAnimationShorthand.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/serializeAnimation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/serializeAnimation.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/serializeAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/serializeAnimation.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/serializeAnimationValue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/serializeAnimationValue.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/serializeAnimationValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/serializeAnimationValue.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/serializeNumber.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/serializeNumber.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/serializeNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/serializeNumber.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/shortest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/shortest.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/shortest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/shortest.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/skip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/skip.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/skip.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/animation-shorthand/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/animation-shorthand/type.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/index.test.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/index.ts -------------------------------------------------------------------------------- /src/living/cssom/parsers/named-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/parsers/named-colors.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/albedo-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/albedo-color.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/albedo-texture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/albedo-texture.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/ambient-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/ambient-color.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/ambient-texture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/ambient-texture.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/animation-duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/animation-duration.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/animation-iteration-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/animation-iteration-count.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/animation-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/animation-name.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/animation.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/bump-texture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/bump-texture.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/diffuse-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/diffuse-color.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/diffuse-texture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/diffuse-texture.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/emissive-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/emissive-color.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/emissive-texture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/emissive-texture.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/helper.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/index.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material-alpha-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material-alpha-mode.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material-grid-background-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material-grid-background-color.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material-grid-cell-height.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material-grid-cell-height.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material-grid-cell-width.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material-grid-cell-width.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material-grid-height.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material-grid-height.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material-grid-major-line-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material-grid-major-line-color.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material-grid-minor-line-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material-grid-minor-line-color.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material-grid-width.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material-grid-width.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material-orientation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material-orientation.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material-type.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/material.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/physical-metallic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/physical-metallic.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/physical-roughness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/physical-roughness.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/position-x.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/position-x.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/position-y.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/position-y.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/position-z.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/position-z.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/position.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/rotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/rotation.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/scaling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/scaling.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/specular-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/specular-color.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/specular-power.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/specular-power.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/specular-texture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/specular-texture.ts -------------------------------------------------------------------------------- /src/living/cssom/spatial-properties/wireframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/spatial-properties/wireframe.ts -------------------------------------------------------------------------------- /src/living/cssom/utils/color-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/cssom/utils/color-space.ts -------------------------------------------------------------------------------- /src/living/custom-elements/CustomElementRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/custom-elements/CustomElementRegistry.ts -------------------------------------------------------------------------------- /src/living/domexception.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/domexception.test.ts -------------------------------------------------------------------------------- /src/living/domexception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/domexception.ts -------------------------------------------------------------------------------- /src/living/domparsing/InnerHTML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/domparsing/InnerHTML.ts -------------------------------------------------------------------------------- /src/living/domparsing/serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/domparsing/serialization.ts -------------------------------------------------------------------------------- /src/living/esm-supports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/esm-supports.json -------------------------------------------------------------------------------- /src/living/events/CloseEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/CloseEvent.ts -------------------------------------------------------------------------------- /src/living/events/CustomEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/CustomEvent.ts -------------------------------------------------------------------------------- /src/living/events/ErrorEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/ErrorEvent.ts -------------------------------------------------------------------------------- /src/living/events/FocusEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/FocusEvent.ts -------------------------------------------------------------------------------- /src/living/events/HandTrackingEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/HandTrackingEvent.ts -------------------------------------------------------------------------------- /src/living/events/HashChangeEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/HashChangeEvent.ts -------------------------------------------------------------------------------- /src/living/events/KeyboardEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/KeyboardEvent.ts -------------------------------------------------------------------------------- /src/living/events/MessageEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/MessageEvent.ts -------------------------------------------------------------------------------- /src/living/events/MouseEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/MouseEvent.ts -------------------------------------------------------------------------------- /src/living/events/PopStateEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/PopStateEvent.ts -------------------------------------------------------------------------------- /src/living/events/ProgressEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/ProgressEvent.ts -------------------------------------------------------------------------------- /src/living/events/TouchEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/TouchEvent.ts -------------------------------------------------------------------------------- /src/living/events/UIEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/events/UIEvent.ts -------------------------------------------------------------------------------- /src/living/geometry/DOMMatrix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/geometry/DOMMatrix.test.ts -------------------------------------------------------------------------------- /src/living/geometry/DOMMatrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/geometry/DOMMatrix.ts -------------------------------------------------------------------------------- /src/living/geometry/DOMMatrixReadOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/geometry/DOMMatrixReadOnly.ts -------------------------------------------------------------------------------- /src/living/geometry/DOMPoint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/geometry/DOMPoint.test.ts -------------------------------------------------------------------------------- /src/living/geometry/DOMPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/geometry/DOMPoint.ts -------------------------------------------------------------------------------- /src/living/geometry/DOMPointReadOnly.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/geometry/DOMPointReadOnly.test.ts -------------------------------------------------------------------------------- /src/living/geometry/DOMPointReadOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/geometry/DOMPointReadOnly.ts -------------------------------------------------------------------------------- /src/living/geometry/DOMRect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/geometry/DOMRect.ts -------------------------------------------------------------------------------- /src/living/geometry/DOMRectReadOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/geometry/DOMRectReadOnly.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/InteractiveDynamicTexture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/InteractiveDynamicTexture.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/OBJ/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/OBJ/index.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/OBJ/mtlFileLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/OBJ/mtlFileLoader.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/OBJ/objFileLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/OBJ/objFileLoader.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/OBJ/objLoadingOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/OBJ/objLoadingOptions.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/OBJ/solidParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/OBJ/solidParser.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/README.md -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/STL/index.ts: -------------------------------------------------------------------------------- 1 | export * from './stlFileLoader'; 2 | -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/STL/stlFileLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/STL/stlFileLoader.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/1.0/glTFBinaryExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/1.0/glTFBinaryExtension.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/1.0/glTFLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/1.0/glTFLoader.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/1.0/glTFLoaderInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/1.0/glTFLoaderInterfaces.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/1.0/glTFLoaderUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/1.0/glTFLoaderUtils.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/1.0/glTFMaterialsCommonExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/1.0/glTFMaterialsCommonExtension.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/1.0/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/1.0/index.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/EXT_lights_image_based.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/EXT_lights_image_based.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/EXT_mesh_gpu_instancing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/EXT_mesh_gpu_instancing.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/EXT_meshopt_compression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/EXT_meshopt_compression.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/EXT_texture_webp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/EXT_texture_webp.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/ExtrasAsMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/ExtrasAsMetadata.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_animation_pointer.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_animation_pointer.data.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_animation_pointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_animation_pointer.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_draco_mesh_compression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_draco_mesh_compression.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_lights_punctual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_lights_punctual.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_anisotropy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_anisotropy.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_clearcoat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_clearcoat.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_emissive_strength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_emissive_strength.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_ior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_ior.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_iridescence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_iridescence.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_pbrSpecularGlossiness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_pbrSpecularGlossiness.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_sheen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_sheen.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_specular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_specular.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_translucency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_translucency.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_transmission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_transmission.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_unlit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_unlit.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_variants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_variants.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_materials_volume.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_mesh_quantization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_mesh_quantization.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_texture_basisu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_texture_basisu.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_texture_transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_texture_transform.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_xmp_json_ld.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/KHR_xmp_json_ld.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/MSFT_audio_emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/MSFT_audio_emitter.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/MSFT_lod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/MSFT_lod.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/MSFT_minecraftMesh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/MSFT_minecraftMesh.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/MSFT_sRGBFactors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/MSFT_sRGBFactors.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/Extensions/index.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/glTFLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/glTFLoader.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/glTFLoaderAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/glTFLoaderAnimation.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/glTFLoaderExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/glTFLoaderExtension.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/glTFLoaderInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/glTFLoaderInterfaces.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/2.0/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/2.0/index.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/glTFFileLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/glTFFileLoader.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/glTFValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/glTFValidation.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/gLTF/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/gLTF/index.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/loaders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/loaders/index.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/patches/draco_decoder_gltf.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/patches/draco_decoder_gltf.cjs -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/patches/draco_decoder_gltf.wasm.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/patches/draco_decoder_gltf.wasm.cjs -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/patches/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/patches/index.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/patches/rewrite-draco-compression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/patches/rewrite-draco-compression.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/patches/rewrite-meshopt-compression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/patches/rewrite-meshopt-compression.ts -------------------------------------------------------------------------------- /src/living/helpers/babylonjs/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/babylonjs/tags.ts -------------------------------------------------------------------------------- /src/living/helpers/create-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/create-element.ts -------------------------------------------------------------------------------- /src/living/helpers/custom-elements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/custom-elements.ts -------------------------------------------------------------------------------- /src/living/helpers/document-base-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/document-base-url.ts -------------------------------------------------------------------------------- /src/living/helpers/gui2d/control.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/gui2d/control.test.ts -------------------------------------------------------------------------------- /src/living/helpers/gui2d/control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/gui2d/control.ts -------------------------------------------------------------------------------- /src/living/helpers/internal-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/internal-constants.ts -------------------------------------------------------------------------------- /src/living/helpers/iterable-weak-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/iterable-weak-set.ts -------------------------------------------------------------------------------- /src/living/helpers/matrix-functions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/matrix-functions.test.ts -------------------------------------------------------------------------------- /src/living/helpers/matrix-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/matrix-functions.ts -------------------------------------------------------------------------------- /src/living/helpers/mutation-observers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/mutation-observers.ts -------------------------------------------------------------------------------- /src/living/helpers/namespaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/namespaces.ts -------------------------------------------------------------------------------- /src/living/helpers/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/node.ts -------------------------------------------------------------------------------- /src/living/helpers/ordered-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/ordered-set.ts -------------------------------------------------------------------------------- /src/living/helpers/runtime-script-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/runtime-script-errors.ts -------------------------------------------------------------------------------- /src/living/helpers/scripting-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/scripting-types.ts -------------------------------------------------------------------------------- /src/living/helpers/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/selectors.ts -------------------------------------------------------------------------------- /src/living/helpers/shadow-dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/shadow-dom.ts -------------------------------------------------------------------------------- /src/living/helpers/spatial-animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/spatial-animations.ts -------------------------------------------------------------------------------- /src/living/helpers/spatial-css-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/spatial-css-parser.ts -------------------------------------------------------------------------------- /src/living/helpers/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/strings.ts -------------------------------------------------------------------------------- /src/living/helpers/style-rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/style-rules.ts -------------------------------------------------------------------------------- /src/living/helpers/stylesheets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/stylesheets.ts -------------------------------------------------------------------------------- /src/living/helpers/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/text.ts -------------------------------------------------------------------------------- /src/living/helpers/traversal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/traversal.ts -------------------------------------------------------------------------------- /src/living/helpers/url.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/url.test.ts -------------------------------------------------------------------------------- /src/living/helpers/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/url.ts -------------------------------------------------------------------------------- /src/living/helpers/validate-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/helpers/validate-names.ts -------------------------------------------------------------------------------- /src/living/hr-time/Performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/hr-time/Performance.ts -------------------------------------------------------------------------------- /src/living/image/ImageData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/image/ImageData.test.ts -------------------------------------------------------------------------------- /src/living/image/ImageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/image/ImageData.ts -------------------------------------------------------------------------------- /src/living/interfaces.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/interfaces.test.ts -------------------------------------------------------------------------------- /src/living/mutation-observer/MutationObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/mutation-observer/MutationObserver.ts -------------------------------------------------------------------------------- /src/living/mutation-observer/MutationRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/mutation-observer/MutationRecord.ts -------------------------------------------------------------------------------- /src/living/named-properties-tracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/named-properties-tracker.ts -------------------------------------------------------------------------------- /src/living/named-properties-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/named-properties-window.ts -------------------------------------------------------------------------------- /src/living/node-document-position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/node-document-position.ts -------------------------------------------------------------------------------- /src/living/node-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/node-type.ts -------------------------------------------------------------------------------- /src/living/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/node.ts -------------------------------------------------------------------------------- /src/living/nodes/CharacterData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/CharacterData.ts -------------------------------------------------------------------------------- /src/living/nodes/ChildNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/ChildNode.ts -------------------------------------------------------------------------------- /src/living/nodes/DOMTokenList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/DOMTokenList.ts -------------------------------------------------------------------------------- /src/living/nodes/DocumentFragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/DocumentFragment.ts -------------------------------------------------------------------------------- /src/living/nodes/DocumentOrShadowRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/DocumentOrShadowRoot.ts -------------------------------------------------------------------------------- /src/living/nodes/DocumentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/DocumentType.ts -------------------------------------------------------------------------------- /src/living/nodes/Element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/Element.ts -------------------------------------------------------------------------------- /src/living/nodes/GlobalEventHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/GlobalEventHandlers.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLAudioElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLAudioElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLBaseElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLBaseElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLCollection.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLContentElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLContentElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLDivElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLDivElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLHeadElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLHeadElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLHeadingElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLHeadingElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLImageElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLImageElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLLinkElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLLinkElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLMediaElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLMediaElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLMetaElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLMetaElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLParagraphElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLParagraphElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLScriptElement.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLScriptElement.test.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLScriptElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLScriptElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLSpanElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLSpanElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLStyleElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLStyleElement.ts -------------------------------------------------------------------------------- /src/living/nodes/HTMLTitleElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/HTMLTitleElement.ts -------------------------------------------------------------------------------- /src/living/nodes/Node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/Node.ts -------------------------------------------------------------------------------- /src/living/nodes/NodeList.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/NodeList.test.ts -------------------------------------------------------------------------------- /src/living/nodes/NodeList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/NodeList.ts -------------------------------------------------------------------------------- /src/living/nodes/NonDocumentTypeChildNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/NonDocumentTypeChildNode.ts -------------------------------------------------------------------------------- /src/living/nodes/NonElementParentNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/NonElementParentNode.ts -------------------------------------------------------------------------------- /src/living/nodes/ParentNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/ParentNode.ts -------------------------------------------------------------------------------- /src/living/nodes/ShadowRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/ShadowRoot.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialBoundElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialBoundElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialButtonElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialButtonElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialCapsuleElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialCapsuleElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialCubeElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialCubeElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialCylinderElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialCylinderElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialDocument.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialIcosphereElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialIcosphereElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialMeshElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialMeshElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialPanelElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialPanelElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialPlaneElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialPlaneElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialPolyhedraElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialPolyhedraElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialRefElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialRefElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialSpaceElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialSpaceElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialSphereElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialSphereElement.ts -------------------------------------------------------------------------------- /src/living/nodes/SpatialTorusElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/SpatialTorusElement.ts -------------------------------------------------------------------------------- /src/living/nodes/Text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/nodes/Text.ts -------------------------------------------------------------------------------- /src/living/range/AbstractRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/range/AbstractRange.ts -------------------------------------------------------------------------------- /src/living/range/Range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/range/Range.ts -------------------------------------------------------------------------------- /src/living/script-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/script-context.ts -------------------------------------------------------------------------------- /src/living/traversal/NodeIterator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/traversal/NodeIterator.ts -------------------------------------------------------------------------------- /src/living/traversal/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/traversal/helpers.ts -------------------------------------------------------------------------------- /src/living/xr/XRFrame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/xr/XRFrame.ts -------------------------------------------------------------------------------- /src/living/xr/XRHand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/xr/XRHand.ts -------------------------------------------------------------------------------- /src/living/xr/XRInputSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/xr/XRInputSource.ts -------------------------------------------------------------------------------- /src/living/xr/XRInputSourceArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/xr/XRInputSourceArray.ts -------------------------------------------------------------------------------- /src/living/xr/XRJointSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/xr/XRJointSpace.ts -------------------------------------------------------------------------------- /src/living/xr/XRPose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/xr/XRPose.ts -------------------------------------------------------------------------------- /src/living/xr/XRRigidTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/xr/XRRigidTransform.ts -------------------------------------------------------------------------------- /src/living/xr/XRSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/xr/XRSession.ts -------------------------------------------------------------------------------- /src/living/xr/XRSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/xr/XRSpace.ts -------------------------------------------------------------------------------- /src/living/xr/XRSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/living/xr/XRSystem.ts -------------------------------------------------------------------------------- /src/mixin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/mixin.test.ts -------------------------------------------------------------------------------- /src/mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/mixin.ts -------------------------------------------------------------------------------- /src/symbols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/symbols.ts -------------------------------------------------------------------------------- /src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/utils.test.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/virtual-console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/src/virtual-console.ts -------------------------------------------------------------------------------- /tools/generate-dom-interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/tools/generate-dom-interfaces.js -------------------------------------------------------------------------------- /tsconfig-esm-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/tsconfig-esm-loader.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/types/.gitignore -------------------------------------------------------------------------------- /types/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/types/.npmignore -------------------------------------------------------------------------------- /types/.package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/types/.package.json -------------------------------------------------------------------------------- /types/build.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/types/build.cjs -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/types/package-lock.json -------------------------------------------------------------------------------- /types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/types/tsconfig.json -------------------------------------------------------------------------------- /version.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/version.cjs -------------------------------------------------------------------------------- /webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-CreativeLab/jsar-dom/HEAD/webpack.config.cjs --------------------------------------------------------------------------------