angular-three-soba 2.0.0-beta.2 → 2.0.0-beta.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/abstractions/billboard/billboard.d.ts +11 -7
- package/abstractions/detailed/detailed.d.ts +26 -0
- package/abstractions/edges/edges.d.ts +24 -12
- package/abstractions/grid/grid.d.ts +50 -0
- package/abstractions/index.d.ts +2 -7
- package/abstractions/text/text.d.ts +10 -5
- package/abstractions/text-3d/text-3d.d.ts +51 -41
- package/cameras/camera/camera-content.d.ts +1 -1
- package/cameras/camera/camera.d.ts +16 -13
- package/cameras/cube-camera/cube-camera.d.ts +50 -23
- package/cameras/index.d.ts +0 -1
- package/cameras/orthographic-camera/orthographic-camera.d.ts +29 -18
- package/cameras/perspective-camera/perspective-camera.d.ts +10 -1
- package/controls/orbit-controls/orbit-controls.d.ts +31 -12
- package/esm2022/abstractions/billboard/billboard.mjs +36 -33
- package/esm2022/abstractions/detailed/detailed.mjs +64 -0
- package/esm2022/abstractions/edges/edges.mjs +58 -63
- package/esm2022/abstractions/grid/grid.mjs +180 -0
- package/esm2022/abstractions/index.mjs +3 -8
- package/esm2022/abstractions/text/text.mjs +123 -124
- package/esm2022/abstractions/text-3d/text-3d.mjs +120 -115
- package/esm2022/cameras/camera/camera-content.mjs +6 -6
- package/esm2022/cameras/camera/camera.mjs +48 -42
- package/esm2022/cameras/cube-camera/cube-camera.mjs +129 -99
- package/esm2022/cameras/index.mjs +1 -2
- package/esm2022/cameras/orthographic-camera/orthographic-camera.mjs +78 -75
- package/esm2022/cameras/perspective-camera/perspective-camera.mjs +25 -26
- package/esm2022/controls/orbit-controls/orbit-controls.mjs +105 -85
- package/esm2022/gizmos/angular-three-soba-gizmos.mjs +5 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-helper.mjs +197 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/constants.mjs +31 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.mjs +93 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.mjs +150 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-input.mjs +66 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube.mjs +71 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.mjs +195 -0
- package/esm2022/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport.mjs +272 -0
- package/esm2022/gizmos/index.mjs +4 -0
- package/esm2022/loaders/gltf-loader/gltf-loader.mjs +3 -6
- package/esm2022/loaders/loader/loader.mjs +92 -87
- package/esm2022/loaders/progress/progress.mjs +29 -29
- package/esm2022/loaders/texture-loader/texture-loader.mjs +4 -4
- package/esm2022/materials/index.mjs +2 -1
- package/esm2022/materials/mesh-distort-material/mesh-distort-material.mjs +60 -51
- package/esm2022/materials/mesh-reflector-material/mesh-reflector-material.mjs +239 -255
- package/esm2022/materials/mesh-refraction-material/mesh-refraction-material.mjs +102 -99
- package/esm2022/materials/mesh-transmission-material/mesh-transmission-material.mjs +167 -146
- package/esm2022/materials/mesh-wobble-material/mesh-wobble-material.mjs +44 -42
- package/esm2022/materials/point-material/point-material.mjs +50 -0
- package/esm2022/misc/animations/animations.mjs +36 -32
- package/esm2022/misc/bake-shadows/bake-shadows.mjs +13 -13
- package/esm2022/misc/caustics/caustics.mjs +387 -0
- package/esm2022/misc/decal/decal.mjs +187 -0
- package/esm2022/misc/depth-buffer/depth-buffer.mjs +33 -35
- package/esm2022/misc/example/example.mjs +160 -0
- package/esm2022/misc/fbo/fbo.mjs +35 -35
- package/esm2022/misc/html/html-wrapper.mjs +478 -0
- package/esm2022/misc/html/html.mjs +304 -0
- package/esm2022/misc/index.mjs +10 -1
- package/esm2022/misc/sampler/sampler.mjs +142 -0
- package/esm2022/misc/shadow/shadow.mjs +111 -0
- package/esm2022/misc/stats-gl/stats-gl.mjs +61 -0
- package/esm2022/misc/trail/trail.mjs +209 -0
- package/esm2022/misc/trail-texture/inject-trail-texture.mjs +17 -0
- package/esm2022/misc/trail-texture/trail-texture.mjs +106 -0
- package/esm2022/modifiers/angular-three-soba-modifiers.mjs +5 -0
- package/esm2022/modifiers/curve-modifier/curve-modifier.mjs +64 -0
- package/esm2022/modifiers/index.mjs +2 -0
- package/esm2022/performances/adaptive-dpr/adaptive-dpr.mjs +44 -0
- package/esm2022/performances/adaptive-events/adaptive-events.mjs +27 -0
- package/esm2022/performances/angular-three-soba-performances.mjs +5 -0
- package/esm2022/performances/index.mjs +8 -0
- package/esm2022/performances/instances/instances.mjs +220 -0
- package/esm2022/performances/instances/position-mesh.mjs +52 -0
- package/esm2022/performances/points/points-input.mjs +64 -0
- package/esm2022/performances/points/points.mjs +326 -0
- package/esm2022/performances/points/position-point.mjs +54 -0
- package/esm2022/performances/segments/segment-object.mjs +9 -0
- package/esm2022/performances/segments/segments.mjs +182 -0
- package/esm2022/shaders/blur-pass/blur-pass.mjs +2 -2
- package/esm2022/shaders/caustics/caustics-material.mjs +130 -0
- package/esm2022/shaders/caustics/caustics-projection-material.mjs +31 -0
- package/esm2022/shaders/convolution-material/convolution-material.mjs +1 -1
- package/esm2022/shaders/discard-material/discard-material.mjs +1 -1
- package/esm2022/shaders/grid-material/grid-material.mjs +77 -0
- package/esm2022/shaders/index.mjs +6 -3
- package/esm2022/shaders/mesh-distort-material/mesh-distort-material.mjs +42 -41
- package/esm2022/shaders/mesh-reflector-material/mesh-reflector-material.mjs +2 -2
- package/esm2022/shaders/mesh-refraction-material/mesh-refraction-material.mjs +2 -2
- package/esm2022/shaders/mesh-transmission-material/mesh-transmission-material.mjs +4 -4
- package/esm2022/shaders/mesh-wobble-material/mesh-wobble-material.mjs +1 -1
- package/esm2022/shaders/shader-material/shader-material.mjs +1 -1
- package/esm2022/shaders/soft-shadow-material/soft-shadow-material.mjs +17 -25
- package/esm2022/shaders/sparkles-material/sparkles-material.mjs +32 -46
- package/esm2022/shaders/spot-light-material/spot-light-material.mjs +7 -7
- package/esm2022/shaders/star-field-material/star-field-material.mjs +3 -2
- package/esm2022/shaders/wireframe-material/wireframe-material.mjs +247 -0
- package/esm2022/staging/accumulative-shadows/accumulative-shadows.mjs +160 -176
- package/esm2022/staging/accumulative-shadows/progressive-light-map.mjs +1 -1
- package/esm2022/staging/accumulative-shadows/randomized-lights.mjs +126 -128
- package/esm2022/staging/backdrop/backdrop.mjs +77 -0
- package/esm2022/staging/bb-anchor/bb-anchor.mjs +69 -0
- package/esm2022/staging/bounds/bounds.mjs +144 -143
- package/esm2022/staging/camera-shake/camera-shake.mjs +86 -80
- package/esm2022/staging/center/center.mjs +129 -112
- package/esm2022/staging/cloud/cloud.mjs +118 -124
- package/esm2022/staging/contact-shadows/contact-shadows.mjs +131 -134
- package/esm2022/staging/environment/assets.mjs +12 -12
- package/esm2022/staging/environment/environment-cube.mjs +28 -30
- package/esm2022/staging/environment/environment-ground.mjs +17 -19
- package/esm2022/staging/environment/environment-input.mjs +98 -85
- package/esm2022/staging/environment/environment-map.mjs +33 -33
- package/esm2022/staging/environment/environment-portal.mjs +75 -97
- package/esm2022/staging/environment/environment.mjs +34 -51
- package/esm2022/staging/environment/utils.mjs +37 -15
- package/esm2022/staging/float/float.mjs +70 -58
- package/esm2022/staging/index.mjs +7 -3
- package/esm2022/staging/matcap-texture/matcap-texture.mjs +64 -0
- package/esm2022/staging/normal-texture/normal-texture.mjs +53 -0
- package/esm2022/staging/sky/sky.mjs +85 -80
- package/esm2022/staging/sparkles/sparkles.mjs +108 -105
- package/esm2022/staging/spot-light/shadow-mesh-input.mjs +63 -0
- package/esm2022/staging/spot-light/shadow-mesh.mjs +266 -0
- package/esm2022/staging/spot-light/spot-light-input.mjs +67 -58
- package/esm2022/staging/spot-light/spot-light.mjs +51 -64
- package/esm2022/staging/spot-light/volumetric-mesh.mjs +67 -70
- package/esm2022/staging/stage/stage.mjs +305 -290
- package/esm2022/staging/stars/stars.mjs +101 -102
- package/esm2022/staging/wireframe/wireframe-input.mjs +191 -0
- package/esm2022/staging/wireframe/wireframe.mjs +228 -0
- package/esm2022/utils/angular-three-soba-utils.mjs +5 -0
- package/esm2022/utils/content/content.mjs +15 -0
- package/esm2022/utils/index.mjs +2 -0
- package/fesm2022/angular-three-soba-abstractions.mjs +514 -1947
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/fesm2022/angular-three-soba-cameras.mjs +302 -259
- package/fesm2022/angular-three-soba-cameras.mjs.map +1 -1
- package/fesm2022/angular-three-soba-controls.mjs +104 -83
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/fesm2022/angular-three-soba-gizmos.mjs +1043 -0
- package/fesm2022/angular-three-soba-gizmos.mjs.map +1 -0
- package/fesm2022/angular-three-soba-loaders.mjs +121 -117
- package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
- package/fesm2022/angular-three-soba-materials.mjs +662 -592
- package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
- package/fesm2022/angular-three-soba-misc.mjs +2214 -105
- package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
- package/fesm2022/angular-three-soba-modifiers.mjs +71 -0
- package/fesm2022/angular-three-soba-modifiers.mjs.map +1 -0
- package/fesm2022/angular-three-soba-performances.mjs +956 -0
- package/fesm2022/angular-three-soba-performances.mjs.map +1 -0
- package/fesm2022/angular-three-soba-shaders.mjs +549 -252
- package/fesm2022/angular-three-soba-shaders.mjs.map +1 -1
- package/fesm2022/angular-three-soba-staging.mjs +2899 -2563
- package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
- package/fesm2022/angular-three-soba-utils.mjs +22 -0
- package/fesm2022/angular-three-soba-utils.mjs.map +1 -0
- package/gizmos/README.md +3 -0
- package/gizmos/gizmo-helper/gizmo-helper.d.ts +69 -0
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.d.ts +22 -0
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.d.ts +29 -0
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-input.d.ts +33 -0
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube.d.ts +10 -0
- package/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.d.ts +40 -0
- package/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport.d.ts +30 -0
- package/gizmos/index.d.ts +3 -0
- package/loaders/gltf-loader/gltf-loader.d.ts +4 -3
- package/loaders/loader/loader.d.ts +19 -17
- package/loaders/progress/progress.d.ts +1 -1
- package/loaders/texture-loader/texture-loader.d.ts +2 -2
- package/materials/index.d.ts +1 -0
- package/materials/mesh-distort-material/mesh-distort-material.d.ts +25 -15
- package/materials/mesh-reflector-material/mesh-reflector-material.d.ts +74 -56
- package/materials/mesh-refraction-material/mesh-refraction-material.d.ts +33 -21
- package/materials/mesh-transmission-material/mesh-transmission-material.d.ts +55 -39
- package/materials/mesh-wobble-material/mesh-wobble-material.d.ts +19 -10
- package/materials/point-material/point-material.d.ts +24 -0
- package/metadata.json +1 -0
- package/misc/animations/animations.d.ts +6 -4
- package/misc/caustics/caustics.d.ts +87 -0
- package/misc/decal/decal.d.ts +49 -0
- package/misc/depth-buffer/depth-buffer.d.ts +2 -2
- package/misc/example/example.d.ts +81 -0
- package/misc/fbo/fbo.d.ts +2 -2
- package/misc/html/html-wrapper.d.ts +559 -0
- package/misc/html/html.d.ts +214 -0
- package/misc/index.d.ts +9 -0
- package/misc/sampler/sampler.d.ts +67 -0
- package/misc/shadow/shadow.d.ts +37 -0
- package/misc/stats-gl/stats-gl.d.ts +24 -0
- package/misc/trail/trail.d.ts +57 -0
- package/misc/trail-texture/inject-trail-texture.d.ts +9 -0
- package/misc/trail-texture/trail-texture.d.ts +50 -0
- package/modifiers/README.md +3 -0
- package/modifiers/curve-modifier/curve-modifier.d.ts +23 -0
- package/modifiers/index.d.ts +1 -0
- package/package.json +31 -16
- package/performances/README.md +3 -0
- package/performances/adaptive-dpr/adaptive-dpr.d.ts +14 -0
- package/{performance/adaptive → performances/adaptive-events}/adaptive-events.d.ts +3 -0
- package/performances/index.d.ts +7 -0
- package/performances/instances/instances.d.ts +79 -0
- package/{performance → performances}/instances/position-mesh.d.ts +1 -1
- package/performances/points/points-input.d.ts +32 -0
- package/performances/points/points.d.ts +92 -0
- package/performances/points/position-point.d.ts +11 -0
- package/performances/segments/segment-object.d.ts +7 -0
- package/performances/segments/segments.d.ts +124 -0
- package/shaders/grid-material/grid-material.d.ts +37 -0
- package/shaders/index.d.ts +5 -2
- package/shaders/mesh-distort-material/mesh-distort-material.d.ts +147 -2
- package/shaders/mesh-transmission-material/mesh-transmission-material.d.ts +1 -1
- package/shaders/shader-material/shader-material.d.ts +2 -2
- package/shaders/soft-shadow-material/soft-shadow-material.d.ts +10 -1
- package/shaders/sparkles-material/sparkles-material.d.ts +15 -1
- package/shaders/spot-light-material/spot-light-material.d.ts +11 -2
- package/shaders/star-field-material/star-field-material.d.ts +11 -1
- package/shaders/wireframe-material/wireframe-material.d.ts +58 -0
- package/staging/accumulative-shadows/accumulative-shadows.d.ts +89 -39
- package/staging/accumulative-shadows/randomized-lights.d.ts +40 -27
- package/staging/backdrop/backdrop.d.ts +30 -0
- package/staging/bb-anchor/bb-anchor.d.ts +27 -0
- package/staging/bounds/bounds.d.ts +100 -24
- package/staging/camera-shake/camera-shake.d.ts +30 -19
- package/staging/center/center.d.ts +43 -35
- package/staging/cloud/cloud.d.ts +26 -23
- package/staging/contact-shadows/contact-shadows.d.ts +41 -28
- package/staging/environment/assets.d.ts +9 -9
- package/staging/environment/environment-cube.d.ts +9 -5
- package/staging/environment/environment-ground.d.ts +7 -7
- package/staging/environment/environment-input.d.ts +37 -37
- package/staging/environment/environment-map.d.ts +10 -5
- package/staging/environment/environment-portal.d.ts +10 -5
- package/staging/environment/environment.d.ts +0 -4
- package/staging/environment/utils.d.ts +2 -2
- package/staging/float/float.d.ts +14 -10
- package/staging/index.d.ts +6 -2
- package/staging/matcap-texture/matcap-texture.d.ts +13 -0
- package/staging/normal-texture/normal-texture.d.ts +16 -0
- package/staging/sky/sky.d.ts +28 -21
- package/staging/sparkles/sparkles.d.ts +36 -22
- package/staging/spot-light/shadow-mesh-input.d.ts +29 -0
- package/staging/spot-light/shadow-mesh.d.ts +37 -0
- package/staging/spot-light/spot-light-input.d.ts +25 -25
- package/staging/spot-light/spot-light.d.ts +31 -15
- package/staging/spot-light/volumetric-mesh.d.ts +15 -9
- package/staging/stage/stage.d.ts +89 -65
- package/staging/stars/stars.d.ts +28 -17
- package/staging/wireframe/wireframe-input.d.ts +65 -0
- package/staging/wireframe/wireframe.d.ts +28 -0
- package/utils/README.md +3 -0
- package/utils/content/content.d.ts +8 -0
- package/utils/index.d.ts +1 -0
- package/web-types.json +1 -0
- package/abstractions/catmull-rom-line/catmull-rom-line.d.ts +0 -25
- package/abstractions/cubic-bezier-line/cubic-bezier-line.d.ts +0 -25
- package/abstractions/gizmo-helper/gizmo-helper.d.ts +0 -34
- package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.d.ts +0 -22
- package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.d.ts +0 -30
- package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-inputs.d.ts +0 -32
- package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube.d.ts +0 -14
- package/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.d.ts +0 -47
- package/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport.d.ts +0 -40
- package/abstractions/line/line-input.d.ts +0 -42
- package/abstractions/line/line.d.ts +0 -35
- package/abstractions/quadratic-bezier-line/quadratic-bezier-line.d.ts +0 -23
- package/esm2022/abstractions/catmull-rom-line/catmull-rom-line.mjs +0 -131
- package/esm2022/abstractions/cubic-bezier-line/cubic-bezier-line.mjs +0 -113
- package/esm2022/abstractions/gizmo-helper/gizmo-helper.mjs +0 -210
- package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/constants.mjs +0 -31
- package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.mjs +0 -95
- package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.mjs +0 -155
- package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-inputs.mjs +0 -62
- package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube.mjs +0 -80
- package/esm2022/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.mjs +0 -206
- package/esm2022/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport.mjs +0 -273
- package/esm2022/abstractions/line/line-input.mjs +0 -113
- package/esm2022/abstractions/line/line.mjs +0 -165
- package/esm2022/abstractions/quadratic-bezier-line/quadratic-bezier-line.mjs +0 -128
- package/esm2022/performance/adaptive/adaptive-dpr.mjs +0 -46
- package/esm2022/performance/adaptive/adaptive-events.mjs +0 -31
- package/esm2022/performance/angular-three-soba-performance.mjs +0 -5
- package/esm2022/performance/detailed/detailed.mjs +0 -61
- package/esm2022/performance/index.mjs +0 -7
- package/esm2022/performance/instances/instance.mjs +0 -48
- package/esm2022/performance/instances/instances.mjs +0 -189
- package/esm2022/performance/instances/position-mesh.mjs +0 -52
- package/esm2022/performance/stats/stats.mjs +0 -79
- package/esm2022/shaders/caustics-material/caustics-material.mjs +0 -128
- package/esm2022/shaders/caustics-material/caustics-projection-material.mjs +0 -33
- package/esm2022/staging/caustics/caustisc.mjs +0 -384
- package/esm2022/staging/spot-light/spot-light-shadow-mesh-input.mjs +0 -57
- package/esm2022/staging/spot-light/spot-light-shadow-mesh.mjs +0 -256
- package/fesm2022/angular-three-soba-performance.mjs +0 -487
- package/fesm2022/angular-three-soba-performance.mjs.map +0 -1
- package/performance/README.md +0 -3
- package/performance/adaptive/adaptive-dpr.d.ts +0 -8
- package/performance/detailed/detailed.d.ts +0 -20
- package/performance/index.d.ts +0 -6
- package/performance/instances/instance.d.ts +0 -9
- package/performance/instances/instances.d.ts +0 -35
- package/performance/stats/stats.d.ts +0 -18
- package/plugin/generators.json +0 -19
- package/plugin/libs/plugin/README.md +0 -11
- package/plugin/package.json +0 -9
- package/plugin/src/generators/init/compat.d.ts +0 -2
- package/plugin/src/generators/init/compat.js +0 -6
- package/plugin/src/generators/init/compat.js.map +0 -1
- package/plugin/src/generators/init/init.d.ts +0 -4
- package/plugin/src/generators/init/init.js +0 -22
- package/plugin/src/generators/init/init.js.map +0 -1
- package/plugin/src/generators/init/schema.json +0 -6
- package/plugin/src/index.d.ts +0 -1
- package/plugin/src/index.js +0 -6
- package/plugin/src/index.js.map +0 -1
- package/staging/caustics/caustisc.d.ts +0 -70
- package/staging/spot-light/spot-light-shadow-mesh-input.d.ts +0 -29
- package/staging/spot-light/spot-light-shadow-mesh.d.ts +0 -38
- /package/{abstractions → gizmos}/gizmo-helper/gizmo-viewcube/constants.d.ts +0 -0
- /package/shaders/{caustics-material → caustics}/caustics-material.d.ts +0 -0
- /package/shaders/{caustics-material → caustics}/caustics-projection-material.d.ts +0 -0
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
import { ElementRef, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { HTML } from 'angular-three';
|
|
3
|
+
import * as THREE from 'three';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare function defaultCalculatePosition(el: THREE.Object3D, camera: THREE.Camera, size: {
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
}): number[];
|
|
9
|
+
export declare class NgtsHtmlWrapper {
|
|
10
|
+
static [HTML]: boolean;
|
|
11
|
+
htmlInputs: {
|
|
12
|
+
zIndexRange: import("@angular/core").Signal<number[]>;
|
|
13
|
+
prepend: import("@angular/core").Signal<boolean>;
|
|
14
|
+
transform: import("@angular/core").Signal<boolean>;
|
|
15
|
+
center: import("@angular/core").Signal<boolean>;
|
|
16
|
+
fullscreen: import("@angular/core").Signal<boolean>;
|
|
17
|
+
calculatePosition: import("@angular/core").Signal<typeof defaultCalculatePosition>;
|
|
18
|
+
wrapperClass: import("@angular/core").Signal<string | undefined>;
|
|
19
|
+
renderedDivClass: import("@angular/core").Signal<string | undefined>;
|
|
20
|
+
style: import("@angular/core").Signal<CSSStyleDeclaration | undefined>;
|
|
21
|
+
pointerEvents: import("@angular/core").Signal<"visible" | "fill" | "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "stroke" | "all" | "inherit">;
|
|
22
|
+
eps: import("@angular/core").Signal<number>;
|
|
23
|
+
distanceFactor: import("@angular/core").Signal<number | undefined>;
|
|
24
|
+
sprite: import("@angular/core").Signal<boolean>;
|
|
25
|
+
as: import("@angular/core").Signal<keyof HTMLElementTagNameMap>;
|
|
26
|
+
portal: import("@angular/core").Signal<import("angular-three").NgtRef<HTMLElement> | undefined>;
|
|
27
|
+
content: import("@angular/core").Signal<TemplateRef<unknown> | undefined>;
|
|
28
|
+
occlude: import("@angular/core").Signal<boolean | "raycast" | import("angular-three").NgtRef<THREE.Object3D<THREE.Event>>[] | "blending">;
|
|
29
|
+
isRayCastOcclusion: import("@angular/core").Signal<boolean>;
|
|
30
|
+
occlusionMeshRef: import("angular-three").NgtInjectedRef<THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[]>>;
|
|
31
|
+
occluded: import("@angular/core").EventEmitter<boolean>;
|
|
32
|
+
geometry: import("@angular/core").Signal<import("angular-three").NgtRef<THREE.BufferGeometry<THREE.NormalBufferAttributes>> | undefined>;
|
|
33
|
+
scale: import("@angular/core").Signal<import("angular-three").NgtVector3>;
|
|
34
|
+
groupRef: import("angular-three").NgtInjectedRef<THREE.Group>;
|
|
35
|
+
state: import("@angular/core").Signal<import("./html").NgtsHtmlState>;
|
|
36
|
+
};
|
|
37
|
+
transformTemplate: TemplateRef<unknown>;
|
|
38
|
+
renderTemplate: TemplateRef<unknown>;
|
|
39
|
+
outerDiv?: ElementRef<HTMLElement>;
|
|
40
|
+
innerDiv?: ElementRef<HTMLElement>;
|
|
41
|
+
renderAnchor?: ViewContainerRef;
|
|
42
|
+
private store;
|
|
43
|
+
private gl;
|
|
44
|
+
private connected;
|
|
45
|
+
private viewport;
|
|
46
|
+
private scene;
|
|
47
|
+
private camera;
|
|
48
|
+
private size;
|
|
49
|
+
private raycaster;
|
|
50
|
+
private isMeshSizeSet;
|
|
51
|
+
private document;
|
|
52
|
+
private vcr;
|
|
53
|
+
private portalElement;
|
|
54
|
+
private element;
|
|
55
|
+
private target;
|
|
56
|
+
styles: import("@angular/core").Signal<{
|
|
57
|
+
position: string;
|
|
58
|
+
top: number;
|
|
59
|
+
left: number;
|
|
60
|
+
width: number;
|
|
61
|
+
height: number;
|
|
62
|
+
transformStyle: string;
|
|
63
|
+
pointerEvents: string;
|
|
64
|
+
} | {
|
|
65
|
+
accentColor?: string | undefined;
|
|
66
|
+
alignContent?: string | undefined;
|
|
67
|
+
alignItems?: string | undefined;
|
|
68
|
+
alignSelf?: string | undefined;
|
|
69
|
+
alignmentBaseline?: string | undefined;
|
|
70
|
+
all?: string | undefined;
|
|
71
|
+
animation?: string | undefined;
|
|
72
|
+
animationComposition?: string | undefined;
|
|
73
|
+
animationDelay?: string | undefined;
|
|
74
|
+
animationDirection?: string | undefined;
|
|
75
|
+
animationDuration?: string | undefined;
|
|
76
|
+
animationFillMode?: string | undefined;
|
|
77
|
+
animationIterationCount?: string | undefined;
|
|
78
|
+
animationName?: string | undefined;
|
|
79
|
+
animationPlayState?: string | undefined;
|
|
80
|
+
animationTimingFunction?: string | undefined;
|
|
81
|
+
appearance?: string | undefined;
|
|
82
|
+
aspectRatio?: string | undefined;
|
|
83
|
+
backdropFilter?: string | undefined;
|
|
84
|
+
backfaceVisibility?: string | undefined;
|
|
85
|
+
background?: string | undefined;
|
|
86
|
+
backgroundAttachment?: string | undefined;
|
|
87
|
+
backgroundBlendMode?: string | undefined;
|
|
88
|
+
backgroundClip?: string | undefined;
|
|
89
|
+
backgroundColor?: string | undefined;
|
|
90
|
+
backgroundImage?: string | undefined;
|
|
91
|
+
backgroundOrigin?: string | undefined;
|
|
92
|
+
backgroundPosition?: string | undefined;
|
|
93
|
+
backgroundPositionX?: string | undefined;
|
|
94
|
+
backgroundPositionY?: string | undefined;
|
|
95
|
+
backgroundRepeat?: string | undefined;
|
|
96
|
+
backgroundSize?: string | undefined;
|
|
97
|
+
baselineShift?: string | undefined;
|
|
98
|
+
blockSize?: string | undefined;
|
|
99
|
+
border?: string | undefined;
|
|
100
|
+
borderBlock?: string | undefined;
|
|
101
|
+
borderBlockColor?: string | undefined;
|
|
102
|
+
borderBlockEnd?: string | undefined;
|
|
103
|
+
borderBlockEndColor?: string | undefined;
|
|
104
|
+
borderBlockEndStyle?: string | undefined;
|
|
105
|
+
borderBlockEndWidth?: string | undefined;
|
|
106
|
+
borderBlockStart?: string | undefined;
|
|
107
|
+
borderBlockStartColor?: string | undefined;
|
|
108
|
+
borderBlockStartStyle?: string | undefined;
|
|
109
|
+
borderBlockStartWidth?: string | undefined;
|
|
110
|
+
borderBlockStyle?: string | undefined;
|
|
111
|
+
borderBlockWidth?: string | undefined;
|
|
112
|
+
borderBottom?: string | undefined;
|
|
113
|
+
borderBottomColor?: string | undefined;
|
|
114
|
+
borderBottomLeftRadius?: string | undefined;
|
|
115
|
+
borderBottomRightRadius?: string | undefined;
|
|
116
|
+
borderBottomStyle?: string | undefined;
|
|
117
|
+
borderBottomWidth?: string | undefined;
|
|
118
|
+
borderCollapse?: string | undefined;
|
|
119
|
+
borderColor?: string | undefined;
|
|
120
|
+
borderEndEndRadius?: string | undefined;
|
|
121
|
+
borderEndStartRadius?: string | undefined;
|
|
122
|
+
borderImage?: string | undefined;
|
|
123
|
+
borderImageOutset?: string | undefined;
|
|
124
|
+
borderImageRepeat?: string | undefined;
|
|
125
|
+
borderImageSlice?: string | undefined;
|
|
126
|
+
borderImageSource?: string | undefined;
|
|
127
|
+
borderImageWidth?: string | undefined;
|
|
128
|
+
borderInline?: string | undefined;
|
|
129
|
+
borderInlineColor?: string | undefined;
|
|
130
|
+
borderInlineEnd?: string | undefined;
|
|
131
|
+
borderInlineEndColor?: string | undefined;
|
|
132
|
+
borderInlineEndStyle?: string | undefined;
|
|
133
|
+
borderInlineEndWidth?: string | undefined;
|
|
134
|
+
borderInlineStart?: string | undefined;
|
|
135
|
+
borderInlineStartColor?: string | undefined;
|
|
136
|
+
borderInlineStartStyle?: string | undefined;
|
|
137
|
+
borderInlineStartWidth?: string | undefined;
|
|
138
|
+
borderInlineStyle?: string | undefined;
|
|
139
|
+
borderInlineWidth?: string | undefined;
|
|
140
|
+
borderLeft?: string | undefined;
|
|
141
|
+
borderLeftColor?: string | undefined;
|
|
142
|
+
borderLeftStyle?: string | undefined;
|
|
143
|
+
borderLeftWidth?: string | undefined;
|
|
144
|
+
borderRadius?: string | undefined;
|
|
145
|
+
borderRight?: string | undefined;
|
|
146
|
+
borderRightColor?: string | undefined;
|
|
147
|
+
borderRightStyle?: string | undefined;
|
|
148
|
+
borderRightWidth?: string | undefined;
|
|
149
|
+
borderSpacing?: string | undefined;
|
|
150
|
+
borderStartEndRadius?: string | undefined;
|
|
151
|
+
borderStartStartRadius?: string | undefined;
|
|
152
|
+
borderStyle?: string | undefined;
|
|
153
|
+
borderTop?: string | undefined;
|
|
154
|
+
borderTopColor?: string | undefined;
|
|
155
|
+
borderTopLeftRadius?: string | undefined;
|
|
156
|
+
borderTopRightRadius?: string | undefined;
|
|
157
|
+
borderTopStyle?: string | undefined;
|
|
158
|
+
borderTopWidth?: string | undefined;
|
|
159
|
+
borderWidth?: string | undefined;
|
|
160
|
+
bottom?: string | undefined;
|
|
161
|
+
boxShadow?: string | undefined;
|
|
162
|
+
boxSizing?: string | undefined;
|
|
163
|
+
breakAfter?: string | undefined;
|
|
164
|
+
breakBefore?: string | undefined;
|
|
165
|
+
breakInside?: string | undefined;
|
|
166
|
+
captionSide?: string | undefined;
|
|
167
|
+
caretColor?: string | undefined;
|
|
168
|
+
clear?: string | undefined;
|
|
169
|
+
clip?: string | undefined;
|
|
170
|
+
clipPath?: string | undefined;
|
|
171
|
+
clipRule?: string | undefined;
|
|
172
|
+
color?: string | undefined;
|
|
173
|
+
colorInterpolation?: string | undefined;
|
|
174
|
+
colorInterpolationFilters?: string | undefined;
|
|
175
|
+
colorScheme?: string | undefined;
|
|
176
|
+
columnCount?: string | undefined;
|
|
177
|
+
columnFill?: string | undefined;
|
|
178
|
+
columnGap?: string | undefined;
|
|
179
|
+
columnRule?: string | undefined;
|
|
180
|
+
columnRuleColor?: string | undefined;
|
|
181
|
+
columnRuleStyle?: string | undefined;
|
|
182
|
+
columnRuleWidth?: string | undefined;
|
|
183
|
+
columnSpan?: string | undefined;
|
|
184
|
+
columnWidth?: string | undefined;
|
|
185
|
+
columns?: string | undefined;
|
|
186
|
+
contain?: string | undefined;
|
|
187
|
+
containIntrinsicBlockSize?: string | undefined;
|
|
188
|
+
containIntrinsicHeight?: string | undefined;
|
|
189
|
+
containIntrinsicInlineSize?: string | undefined;
|
|
190
|
+
containIntrinsicSize?: string | undefined;
|
|
191
|
+
containIntrinsicWidth?: string | undefined;
|
|
192
|
+
container?: string | undefined;
|
|
193
|
+
containerName?: string | undefined;
|
|
194
|
+
containerType?: string | undefined;
|
|
195
|
+
content?: string | undefined;
|
|
196
|
+
counterIncrement?: string | undefined;
|
|
197
|
+
counterReset?: string | undefined;
|
|
198
|
+
counterSet?: string | undefined;
|
|
199
|
+
cssFloat?: string | undefined;
|
|
200
|
+
cssText?: string | undefined;
|
|
201
|
+
cursor?: string | undefined;
|
|
202
|
+
direction?: string | undefined;
|
|
203
|
+
display?: string | undefined;
|
|
204
|
+
dominantBaseline?: string | undefined;
|
|
205
|
+
emptyCells?: string | undefined;
|
|
206
|
+
fill?: string | undefined;
|
|
207
|
+
fillOpacity?: string | undefined;
|
|
208
|
+
fillRule?: string | undefined;
|
|
209
|
+
filter?: string | undefined;
|
|
210
|
+
flex?: string | undefined;
|
|
211
|
+
flexBasis?: string | undefined;
|
|
212
|
+
flexDirection?: string | undefined;
|
|
213
|
+
flexFlow?: string | undefined;
|
|
214
|
+
flexGrow?: string | undefined;
|
|
215
|
+
flexShrink?: string | undefined;
|
|
216
|
+
flexWrap?: string | undefined;
|
|
217
|
+
float?: string | undefined;
|
|
218
|
+
floodColor?: string | undefined;
|
|
219
|
+
floodOpacity?: string | undefined;
|
|
220
|
+
font?: string | undefined;
|
|
221
|
+
fontFamily?: string | undefined;
|
|
222
|
+
fontFeatureSettings?: string | undefined;
|
|
223
|
+
fontKerning?: string | undefined;
|
|
224
|
+
fontOpticalSizing?: string | undefined;
|
|
225
|
+
fontPalette?: string | undefined;
|
|
226
|
+
fontSize?: string | undefined;
|
|
227
|
+
fontSizeAdjust?: string | undefined;
|
|
228
|
+
fontStretch?: string | undefined;
|
|
229
|
+
fontStyle?: string | undefined;
|
|
230
|
+
fontSynthesis?: string | undefined;
|
|
231
|
+
fontSynthesisSmallCaps?: string | undefined;
|
|
232
|
+
fontSynthesisStyle?: string | undefined;
|
|
233
|
+
fontSynthesisWeight?: string | undefined;
|
|
234
|
+
fontVariant?: string | undefined;
|
|
235
|
+
fontVariantAlternates?: string | undefined;
|
|
236
|
+
fontVariantCaps?: string | undefined;
|
|
237
|
+
fontVariantEastAsian?: string | undefined;
|
|
238
|
+
fontVariantLigatures?: string | undefined;
|
|
239
|
+
fontVariantNumeric?: string | undefined;
|
|
240
|
+
fontVariantPosition?: string | undefined;
|
|
241
|
+
fontVariationSettings?: string | undefined;
|
|
242
|
+
fontWeight?: string | undefined;
|
|
243
|
+
gap?: string | undefined;
|
|
244
|
+
grid?: string | undefined;
|
|
245
|
+
gridArea?: string | undefined;
|
|
246
|
+
gridAutoColumns?: string | undefined;
|
|
247
|
+
gridAutoFlow?: string | undefined;
|
|
248
|
+
gridAutoRows?: string | undefined;
|
|
249
|
+
gridColumn?: string | undefined;
|
|
250
|
+
gridColumnEnd?: string | undefined;
|
|
251
|
+
gridColumnGap?: string | undefined;
|
|
252
|
+
gridColumnStart?: string | undefined;
|
|
253
|
+
gridGap?: string | undefined;
|
|
254
|
+
gridRow?: string | undefined;
|
|
255
|
+
gridRowEnd?: string | undefined;
|
|
256
|
+
gridRowGap?: string | undefined;
|
|
257
|
+
gridRowStart?: string | undefined;
|
|
258
|
+
gridTemplate?: string | undefined;
|
|
259
|
+
gridTemplateAreas?: string | undefined;
|
|
260
|
+
gridTemplateColumns?: string | undefined;
|
|
261
|
+
gridTemplateRows?: string | undefined;
|
|
262
|
+
height?: string | number | undefined;
|
|
263
|
+
hyphenateCharacter?: string | undefined;
|
|
264
|
+
hyphens?: string | undefined;
|
|
265
|
+
imageOrientation?: string | undefined;
|
|
266
|
+
imageRendering?: string | undefined;
|
|
267
|
+
inlineSize?: string | undefined;
|
|
268
|
+
inset?: string | undefined;
|
|
269
|
+
insetBlock?: string | undefined;
|
|
270
|
+
insetBlockEnd?: string | undefined;
|
|
271
|
+
insetBlockStart?: string | undefined;
|
|
272
|
+
insetInline?: string | undefined;
|
|
273
|
+
insetInlineEnd?: string | undefined;
|
|
274
|
+
insetInlineStart?: string | undefined;
|
|
275
|
+
isolation?: string | undefined;
|
|
276
|
+
justifyContent?: string | undefined;
|
|
277
|
+
justifyItems?: string | undefined;
|
|
278
|
+
justifySelf?: string | undefined;
|
|
279
|
+
left?: string | number | undefined;
|
|
280
|
+
length?: number | undefined;
|
|
281
|
+
letterSpacing?: string | undefined;
|
|
282
|
+
lightingColor?: string | undefined;
|
|
283
|
+
lineBreak?: string | undefined;
|
|
284
|
+
lineHeight?: string | undefined;
|
|
285
|
+
listStyle?: string | undefined;
|
|
286
|
+
listStyleImage?: string | undefined;
|
|
287
|
+
listStylePosition?: string | undefined;
|
|
288
|
+
listStyleType?: string | undefined;
|
|
289
|
+
margin?: string | undefined;
|
|
290
|
+
marginBlock?: string | undefined;
|
|
291
|
+
marginBlockEnd?: string | undefined;
|
|
292
|
+
marginBlockStart?: string | undefined;
|
|
293
|
+
marginBottom?: string | undefined;
|
|
294
|
+
marginInline?: string | undefined;
|
|
295
|
+
marginInlineEnd?: string | undefined;
|
|
296
|
+
marginInlineStart?: string | undefined;
|
|
297
|
+
marginLeft?: string | undefined;
|
|
298
|
+
marginRight?: string | undefined;
|
|
299
|
+
marginTop?: string | undefined;
|
|
300
|
+
marker?: string | undefined;
|
|
301
|
+
markerEnd?: string | undefined;
|
|
302
|
+
markerMid?: string | undefined;
|
|
303
|
+
markerStart?: string | undefined;
|
|
304
|
+
mask?: string | undefined;
|
|
305
|
+
maskClip?: string | undefined;
|
|
306
|
+
maskComposite?: string | undefined;
|
|
307
|
+
maskImage?: string | undefined;
|
|
308
|
+
maskMode?: string | undefined;
|
|
309
|
+
maskOrigin?: string | undefined;
|
|
310
|
+
maskPosition?: string | undefined;
|
|
311
|
+
maskRepeat?: string | undefined;
|
|
312
|
+
maskSize?: string | undefined;
|
|
313
|
+
maskType?: string | undefined;
|
|
314
|
+
mathStyle?: string | undefined;
|
|
315
|
+
maxBlockSize?: string | undefined;
|
|
316
|
+
maxHeight?: string | undefined;
|
|
317
|
+
maxInlineSize?: string | undefined;
|
|
318
|
+
maxWidth?: string | undefined;
|
|
319
|
+
minBlockSize?: string | undefined;
|
|
320
|
+
minHeight?: string | undefined;
|
|
321
|
+
minInlineSize?: string | undefined;
|
|
322
|
+
minWidth?: string | undefined;
|
|
323
|
+
mixBlendMode?: string | undefined;
|
|
324
|
+
objectFit?: string | undefined;
|
|
325
|
+
objectPosition?: string | undefined;
|
|
326
|
+
offset?: string | undefined;
|
|
327
|
+
offsetDistance?: string | undefined;
|
|
328
|
+
offsetPath?: string | undefined;
|
|
329
|
+
offsetRotate?: string | undefined;
|
|
330
|
+
opacity?: string | undefined;
|
|
331
|
+
order?: string | undefined;
|
|
332
|
+
orphans?: string | undefined;
|
|
333
|
+
outline?: string | undefined;
|
|
334
|
+
outlineColor?: string | undefined;
|
|
335
|
+
outlineOffset?: string | undefined;
|
|
336
|
+
outlineStyle?: string | undefined;
|
|
337
|
+
outlineWidth?: string | undefined;
|
|
338
|
+
overflow?: string | undefined;
|
|
339
|
+
overflowAnchor?: string | undefined;
|
|
340
|
+
overflowClipMargin?: string | undefined;
|
|
341
|
+
overflowWrap?: string | undefined;
|
|
342
|
+
overflowX?: string | undefined;
|
|
343
|
+
overflowY?: string | undefined;
|
|
344
|
+
overscrollBehavior?: string | undefined;
|
|
345
|
+
overscrollBehaviorBlock?: string | undefined;
|
|
346
|
+
overscrollBehaviorInline?: string | undefined;
|
|
347
|
+
overscrollBehaviorX?: string | undefined;
|
|
348
|
+
overscrollBehaviorY?: string | undefined;
|
|
349
|
+
padding?: string | undefined;
|
|
350
|
+
paddingBlock?: string | undefined;
|
|
351
|
+
paddingBlockEnd?: string | undefined;
|
|
352
|
+
paddingBlockStart?: string | undefined;
|
|
353
|
+
paddingBottom?: string | undefined;
|
|
354
|
+
paddingInline?: string | undefined;
|
|
355
|
+
paddingInlineEnd?: string | undefined;
|
|
356
|
+
paddingInlineStart?: string | undefined;
|
|
357
|
+
paddingLeft?: string | undefined;
|
|
358
|
+
paddingRight?: string | undefined;
|
|
359
|
+
paddingTop?: string | undefined;
|
|
360
|
+
page?: string | undefined;
|
|
361
|
+
pageBreakAfter?: string | undefined;
|
|
362
|
+
pageBreakBefore?: string | undefined;
|
|
363
|
+
pageBreakInside?: string | undefined;
|
|
364
|
+
paintOrder?: string | undefined;
|
|
365
|
+
parentRule?: CSSRule | null | undefined;
|
|
366
|
+
perspective?: string | undefined;
|
|
367
|
+
perspectiveOrigin?: string | undefined;
|
|
368
|
+
placeContent?: string | undefined;
|
|
369
|
+
placeItems?: string | undefined;
|
|
370
|
+
placeSelf?: string | undefined;
|
|
371
|
+
pointerEvents?: string | undefined;
|
|
372
|
+
position: string;
|
|
373
|
+
printColorAdjust?: string | undefined;
|
|
374
|
+
quotes?: string | undefined;
|
|
375
|
+
resize?: string | undefined;
|
|
376
|
+
right?: string | undefined;
|
|
377
|
+
rotate?: string | undefined;
|
|
378
|
+
rowGap?: string | undefined;
|
|
379
|
+
rubyPosition?: string | undefined;
|
|
380
|
+
scale?: string | undefined;
|
|
381
|
+
scrollBehavior?: string | undefined;
|
|
382
|
+
scrollMargin?: string | undefined;
|
|
383
|
+
scrollMarginBlock?: string | undefined;
|
|
384
|
+
scrollMarginBlockEnd?: string | undefined;
|
|
385
|
+
scrollMarginBlockStart?: string | undefined;
|
|
386
|
+
scrollMarginBottom?: string | undefined;
|
|
387
|
+
scrollMarginInline?: string | undefined;
|
|
388
|
+
scrollMarginInlineEnd?: string | undefined;
|
|
389
|
+
scrollMarginInlineStart?: string | undefined;
|
|
390
|
+
scrollMarginLeft?: string | undefined;
|
|
391
|
+
scrollMarginRight?: string | undefined;
|
|
392
|
+
scrollMarginTop?: string | undefined;
|
|
393
|
+
scrollPadding?: string | undefined;
|
|
394
|
+
scrollPaddingBlock?: string | undefined;
|
|
395
|
+
scrollPaddingBlockEnd?: string | undefined;
|
|
396
|
+
scrollPaddingBlockStart?: string | undefined;
|
|
397
|
+
scrollPaddingBottom?: string | undefined;
|
|
398
|
+
scrollPaddingInline?: string | undefined;
|
|
399
|
+
scrollPaddingInlineEnd?: string | undefined;
|
|
400
|
+
scrollPaddingInlineStart?: string | undefined;
|
|
401
|
+
scrollPaddingLeft?: string | undefined;
|
|
402
|
+
scrollPaddingRight?: string | undefined;
|
|
403
|
+
scrollPaddingTop?: string | undefined;
|
|
404
|
+
scrollSnapAlign?: string | undefined;
|
|
405
|
+
scrollSnapStop?: string | undefined;
|
|
406
|
+
scrollSnapType?: string | undefined;
|
|
407
|
+
scrollbarGutter?: string | undefined;
|
|
408
|
+
shapeImageThreshold?: string | undefined;
|
|
409
|
+
shapeMargin?: string | undefined;
|
|
410
|
+
shapeOutside?: string | undefined;
|
|
411
|
+
shapeRendering?: string | undefined;
|
|
412
|
+
stopColor?: string | undefined;
|
|
413
|
+
stopOpacity?: string | undefined;
|
|
414
|
+
stroke?: string | undefined;
|
|
415
|
+
strokeDasharray?: string | undefined;
|
|
416
|
+
strokeDashoffset?: string | undefined;
|
|
417
|
+
strokeLinecap?: string | undefined;
|
|
418
|
+
strokeLinejoin?: string | undefined;
|
|
419
|
+
strokeMiterlimit?: string | undefined;
|
|
420
|
+
strokeOpacity?: string | undefined;
|
|
421
|
+
strokeWidth?: string | undefined;
|
|
422
|
+
tabSize?: string | undefined;
|
|
423
|
+
tableLayout?: string | undefined;
|
|
424
|
+
textAlign?: string | undefined;
|
|
425
|
+
textAlignLast?: string | undefined;
|
|
426
|
+
textAnchor?: string | undefined;
|
|
427
|
+
textCombineUpright?: string | undefined;
|
|
428
|
+
textDecoration?: string | undefined;
|
|
429
|
+
textDecorationColor?: string | undefined;
|
|
430
|
+
textDecorationLine?: string | undefined;
|
|
431
|
+
textDecorationSkipInk?: string | undefined;
|
|
432
|
+
textDecorationStyle?: string | undefined;
|
|
433
|
+
textDecorationThickness?: string | undefined;
|
|
434
|
+
textEmphasis?: string | undefined;
|
|
435
|
+
textEmphasisColor?: string | undefined;
|
|
436
|
+
textEmphasisPosition?: string | undefined;
|
|
437
|
+
textEmphasisStyle?: string | undefined;
|
|
438
|
+
textIndent?: string | undefined;
|
|
439
|
+
textOrientation?: string | undefined;
|
|
440
|
+
textOverflow?: string | undefined;
|
|
441
|
+
textRendering?: string | undefined;
|
|
442
|
+
textShadow?: string | undefined;
|
|
443
|
+
textTransform?: string | undefined;
|
|
444
|
+
textUnderlineOffset?: string | undefined;
|
|
445
|
+
textUnderlinePosition?: string | undefined;
|
|
446
|
+
top?: string | number | undefined;
|
|
447
|
+
touchAction?: string | undefined;
|
|
448
|
+
transform: string;
|
|
449
|
+
transformBox?: string | undefined;
|
|
450
|
+
transformOrigin?: string | undefined;
|
|
451
|
+
transformStyle?: string | undefined;
|
|
452
|
+
transition?: string | undefined;
|
|
453
|
+
transitionDelay?: string | undefined;
|
|
454
|
+
transitionDuration?: string | undefined;
|
|
455
|
+
transitionProperty?: string | undefined;
|
|
456
|
+
transitionTimingFunction?: string | undefined;
|
|
457
|
+
translate?: string | undefined;
|
|
458
|
+
unicodeBidi?: string | undefined;
|
|
459
|
+
userSelect?: string | undefined;
|
|
460
|
+
verticalAlign?: string | undefined;
|
|
461
|
+
visibility?: string | undefined;
|
|
462
|
+
webkitAlignContent?: string | undefined;
|
|
463
|
+
webkitAlignItems?: string | undefined;
|
|
464
|
+
webkitAlignSelf?: string | undefined;
|
|
465
|
+
webkitAnimation?: string | undefined;
|
|
466
|
+
webkitAnimationDelay?: string | undefined;
|
|
467
|
+
webkitAnimationDirection?: string | undefined;
|
|
468
|
+
webkitAnimationDuration?: string | undefined;
|
|
469
|
+
webkitAnimationFillMode?: string | undefined;
|
|
470
|
+
webkitAnimationIterationCount?: string | undefined;
|
|
471
|
+
webkitAnimationName?: string | undefined;
|
|
472
|
+
webkitAnimationPlayState?: string | undefined;
|
|
473
|
+
webkitAnimationTimingFunction?: string | undefined;
|
|
474
|
+
webkitAppearance?: string | undefined;
|
|
475
|
+
webkitBackfaceVisibility?: string | undefined;
|
|
476
|
+
webkitBackgroundClip?: string | undefined;
|
|
477
|
+
webkitBackgroundOrigin?: string | undefined;
|
|
478
|
+
webkitBackgroundSize?: string | undefined;
|
|
479
|
+
webkitBorderBottomLeftRadius?: string | undefined;
|
|
480
|
+
webkitBorderBottomRightRadius?: string | undefined;
|
|
481
|
+
webkitBorderRadius?: string | undefined;
|
|
482
|
+
webkitBorderTopLeftRadius?: string | undefined;
|
|
483
|
+
webkitBorderTopRightRadius?: string | undefined;
|
|
484
|
+
webkitBoxAlign?: string | undefined;
|
|
485
|
+
webkitBoxFlex?: string | undefined;
|
|
486
|
+
webkitBoxOrdinalGroup?: string | undefined;
|
|
487
|
+
webkitBoxOrient?: string | undefined;
|
|
488
|
+
webkitBoxPack?: string | undefined;
|
|
489
|
+
webkitBoxShadow?: string | undefined;
|
|
490
|
+
webkitBoxSizing?: string | undefined;
|
|
491
|
+
webkitFilter?: string | undefined;
|
|
492
|
+
webkitFlex?: string | undefined;
|
|
493
|
+
webkitFlexBasis?: string | undefined;
|
|
494
|
+
webkitFlexDirection?: string | undefined;
|
|
495
|
+
webkitFlexFlow?: string | undefined;
|
|
496
|
+
webkitFlexGrow?: string | undefined;
|
|
497
|
+
webkitFlexShrink?: string | undefined;
|
|
498
|
+
webkitFlexWrap?: string | undefined;
|
|
499
|
+
webkitJustifyContent?: string | undefined;
|
|
500
|
+
webkitLineClamp?: string | undefined;
|
|
501
|
+
webkitMask?: string | undefined;
|
|
502
|
+
webkitMaskBoxImage?: string | undefined;
|
|
503
|
+
webkitMaskBoxImageOutset?: string | undefined;
|
|
504
|
+
webkitMaskBoxImageRepeat?: string | undefined;
|
|
505
|
+
webkitMaskBoxImageSlice?: string | undefined;
|
|
506
|
+
webkitMaskBoxImageSource?: string | undefined;
|
|
507
|
+
webkitMaskBoxImageWidth?: string | undefined;
|
|
508
|
+
webkitMaskClip?: string | undefined;
|
|
509
|
+
webkitMaskComposite?: string | undefined;
|
|
510
|
+
webkitMaskImage?: string | undefined;
|
|
511
|
+
webkitMaskOrigin?: string | undefined;
|
|
512
|
+
webkitMaskPosition?: string | undefined;
|
|
513
|
+
webkitMaskRepeat?: string | undefined;
|
|
514
|
+
webkitMaskSize?: string | undefined;
|
|
515
|
+
webkitOrder?: string | undefined;
|
|
516
|
+
webkitPerspective?: string | undefined;
|
|
517
|
+
webkitPerspectiveOrigin?: string | undefined;
|
|
518
|
+
webkitTextFillColor?: string | undefined;
|
|
519
|
+
webkitTextSizeAdjust?: string | undefined;
|
|
520
|
+
webkitTextStroke?: string | undefined;
|
|
521
|
+
webkitTextStrokeColor?: string | undefined;
|
|
522
|
+
webkitTextStrokeWidth?: string | undefined;
|
|
523
|
+
webkitTransform?: string | undefined;
|
|
524
|
+
webkitTransformOrigin?: string | undefined;
|
|
525
|
+
webkitTransformStyle?: string | undefined;
|
|
526
|
+
webkitTransition?: string | undefined;
|
|
527
|
+
webkitTransitionDelay?: string | undefined;
|
|
528
|
+
webkitTransitionDuration?: string | undefined;
|
|
529
|
+
webkitTransitionProperty?: string | undefined;
|
|
530
|
+
webkitTransitionTimingFunction?: string | undefined;
|
|
531
|
+
webkitUserSelect?: string | undefined;
|
|
532
|
+
whiteSpace?: string | undefined;
|
|
533
|
+
widows?: string | undefined;
|
|
534
|
+
width?: string | number | undefined;
|
|
535
|
+
willChange?: string | undefined;
|
|
536
|
+
wordBreak?: string | undefined;
|
|
537
|
+
wordSpacing?: string | undefined;
|
|
538
|
+
wordWrap?: string | undefined;
|
|
539
|
+
writingMode?: string | undefined;
|
|
540
|
+
zIndex?: string | undefined;
|
|
541
|
+
getPropertyPriority?: ((property: string) => string) | undefined;
|
|
542
|
+
getPropertyValue?: ((property: string) => string) | undefined;
|
|
543
|
+
item?: ((index: number) => string) | undefined;
|
|
544
|
+
removeProperty?: ((property: string) => string) | undefined;
|
|
545
|
+
setProperty?: ((property: string, value: string | null, priority?: string | undefined) => void) | undefined;
|
|
546
|
+
}>;
|
|
547
|
+
transformInnerStyles: import("@angular/core").Signal<{
|
|
548
|
+
position: string;
|
|
549
|
+
pointerEvents: "visible" | "fill" | "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "painted" | "stroke" | "all" | "inherit";
|
|
550
|
+
}>;
|
|
551
|
+
constructor();
|
|
552
|
+
private setCanvasElementStyle;
|
|
553
|
+
private appendElement;
|
|
554
|
+
private setWrapperClass;
|
|
555
|
+
private render;
|
|
556
|
+
private beforeRender;
|
|
557
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtsHtmlWrapper, never>;
|
|
558
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtsHtmlWrapper, "ngts-html-wrapper", never, {}, {}, never, never, true, never>;
|
|
559
|
+
}
|