angular-three-soba 2.0.0-beta.26 → 2.0.0-beta.261
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/README.md +62 -4
- package/abstractions/README.md +278 -2
- package/abstractions/index.d.ts +11 -6
- package/abstractions/lib/catmull-rom-line.d.ts +648 -0
- package/abstractions/lib/cubic-bezier-line.d.ts +19 -0
- package/abstractions/lib/edges.d.ts +850 -0
- package/abstractions/lib/gradient-texture.d.ts +24 -0
- package/abstractions/lib/grid.d.ts +339 -0
- package/abstractions/lib/helper.d.ts +25 -0
- package/abstractions/lib/line.d.ts +41 -0
- package/abstractions/lib/prism-geometry.d.ts +30 -0
- package/abstractions/lib/quadratic-bezier-line.d.ts +21 -0
- package/abstractions/lib/text-3d.d.ts +338 -0
- package/abstractions/lib/text.d.ts +55 -0
- package/cameras/README.md +91 -2
- package/cameras/index.d.ts +4 -4
- package/cameras/lib/camera-content.d.ts +10 -0
- package/cameras/lib/cube-camera.d.ts +38 -0
- package/cameras/lib/orthographic-camera.d.ts +40 -0
- package/cameras/lib/perspective-camera.d.ts +36 -0
- package/controls/README.md +95 -2
- package/controls/index.d.ts +2 -1
- package/controls/lib/camera-controls.d.ts +31 -0
- package/controls/lib/orbit-controls.d.ts +38 -0
- package/esm2022/abstractions/index.mjs +12 -7
- package/esm2022/abstractions/lib/catmull-rom-line.mjs +76 -0
- package/esm2022/abstractions/lib/cubic-bezier-line.mjs +51 -0
- package/esm2022/abstractions/lib/edges.mjs +70 -0
- package/esm2022/abstractions/lib/gradient-texture.mjs +91 -0
- package/esm2022/abstractions/lib/grid.mjs +103 -0
- package/esm2022/abstractions/lib/helper.mjs +80 -0
- package/esm2022/abstractions/lib/line.mjs +123 -0
- package/esm2022/abstractions/lib/prism-geometry.mjs +55 -0
- package/esm2022/abstractions/lib/quadratic-bezier-line.mjs +73 -0
- package/esm2022/abstractions/lib/text-3d.mjs +98 -0
- package/esm2022/abstractions/lib/text.mjs +92 -0
- package/esm2022/cameras/index.mjs +5 -5
- package/esm2022/cameras/lib/camera-content.mjs +14 -0
- package/esm2022/cameras/lib/cube-camera.mjs +111 -0
- package/esm2022/cameras/lib/orthographic-camera.mjs +131 -0
- package/esm2022/cameras/lib/perspective-camera.mjs +104 -0
- package/esm2022/controls/index.mjs +3 -2
- package/esm2022/controls/lib/camera-controls.mjs +127 -0
- package/esm2022/controls/lib/orbit-controls.mjs +126 -0
- package/esm2022/loaders/index.mjs +6 -5
- package/esm2022/loaders/lib/font-loader.mjs +49 -0
- package/esm2022/loaders/lib/gltf-loader.mjs +33 -0
- package/esm2022/loaders/lib/loader.mjs +109 -0
- package/esm2022/loaders/lib/progress.mjs +51 -0
- package/esm2022/loaders/lib/texture-loader.mjs +32 -0
- package/esm2022/materials/index.mjs +7 -7
- package/esm2022/materials/lib/custom-shader-material.mjs +71 -0
- package/esm2022/materials/lib/mesh-distort-material.mjs +42 -0
- package/esm2022/materials/lib/mesh-reflector-material.mjs +278 -0
- package/esm2022/materials/lib/mesh-refraction-material.mjs +144 -0
- package/esm2022/materials/lib/mesh-transmission-material.mjs +188 -0
- package/esm2022/materials/lib/mesh-wobble-material.mjs +42 -0
- package/esm2022/misc/index.mjs +10 -14
- package/esm2022/misc/lib/animations.mjs +74 -0
- package/esm2022/misc/lib/bake-shadows.mjs +26 -0
- package/esm2022/misc/lib/computed-attribute.mjs +56 -0
- package/esm2022/misc/lib/constants.mjs +5 -0
- package/esm2022/misc/lib/decal.mjs +135 -0
- package/esm2022/misc/lib/deprecated.mjs +15 -0
- package/esm2022/misc/lib/depth-buffer.mjs +39 -0
- package/esm2022/misc/lib/fbo.mjs +89 -0
- package/esm2022/misc/lib/sampler.mjs +121 -0
- package/esm2022/shaders/index.mjs +3 -18
- package/esm2022/shaders/lib/grid-material.mjs +81 -0
- package/esm2022/shaders/lib/mesh-refraction-material.mjs +163 -0
- package/esm2022/staging/index.mjs +19 -22
- package/esm2022/staging/lib/accumulative-shadows.mjs +182 -0
- package/esm2022/staging/lib/backdrop.mjs +73 -0
- package/esm2022/staging/lib/bb-anchor.mjs +58 -0
- package/esm2022/staging/lib/bounds.mjs +286 -0
- package/esm2022/staging/lib/camera-shake.mjs +69 -0
- package/esm2022/staging/lib/caustics.mjs +188 -0
- package/esm2022/staging/lib/center.mjs +113 -0
- package/esm2022/staging/lib/contact-shadows.mjs +201 -0
- package/esm2022/staging/lib/environment.mjs +465 -0
- package/esm2022/staging/lib/float.mjs +60 -0
- package/esm2022/staging/lib/lightformer.mjs +107 -0
- package/esm2022/staging/lib/matcap-texture.mjs +81 -0
- package/esm2022/staging/lib/normal-texture.mjs +85 -0
- package/esm2022/staging/lib/randomized-lights.mjs +104 -0
- package/esm2022/staging/lib/render-texture.mjs +213 -0
- package/esm2022/staging/lib/sky.mjs +86 -0
- package/esm2022/staging/lib/spot-light.mjs +450 -0
- package/esm2022/staging/lib/stage.mjs +236 -0
- package/esm2022/vanilla-exports/angular-three-soba-vanilla-exports.mjs +5 -0
- package/esm2022/vanilla-exports/index.mjs +3 -0
- package/fesm2022/angular-three-soba-abstractions.mjs +739 -718
- package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
- package/fesm2022/angular-three-soba-cameras.mjs +260 -307
- package/fesm2022/angular-three-soba-cameras.mjs.map +1 -1
- package/fesm2022/angular-three-soba-controls.mjs +174 -110
- package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
- package/fesm2022/angular-three-soba-loaders.mjs +151 -129
- package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
- package/fesm2022/angular-three-soba-materials.mjs +511 -764
- package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
- package/fesm2022/angular-three-soba-misc.mjs +405 -2149
- package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
- package/fesm2022/angular-three-soba-shaders.mjs +33 -1373
- package/fesm2022/angular-three-soba-shaders.mjs.map +1 -1
- package/fesm2022/angular-three-soba-staging.mjs +2329 -3538
- package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
- package/fesm2022/angular-three-soba-vanilla-exports.mjs +6 -0
- package/fesm2022/angular-three-soba-vanilla-exports.mjs.map +1 -0
- package/loaders/README.md +130 -2
- package/loaders/index.d.ts +5 -4
- package/loaders/lib/font-loader.d.ts +27 -0
- package/loaders/lib/gltf-loader.d.ts +21 -0
- package/loaders/lib/loader.d.ts +29 -0
- package/loaders/lib/progress.d.ts +9 -0
- package/loaders/lib/texture-loader.d.ts +13 -0
- package/materials/README.md +160 -2
- package/materials/index.d.ts +6 -6
- package/materials/lib/custom-shader-material.d.ts +19 -0
- package/materials/lib/mesh-distort-material.d.ts +18 -0
- package/materials/lib/mesh-reflector-material.d.ts +50 -0
- package/materials/lib/mesh-refraction-material.d.ts +42 -0
- package/materials/lib/mesh-transmission-material.d.ts +77 -0
- package/materials/lib/mesh-wobble-material.d.ts +15 -0
- package/metadata.json +1 -1
- package/misc/README.md +217 -2
- package/misc/index.d.ts +9 -13
- package/misc/lib/animations.d.ts +14 -0
- package/misc/lib/computed-attribute.d.ts +69 -0
- package/misc/lib/constants.d.ts +1 -0
- package/misc/lib/decal.d.ts +27 -0
- package/misc/lib/deprecated.d.ts +14 -0
- package/misc/lib/depth-buffer.d.ts +8 -0
- package/misc/lib/fbo.d.ts +47 -0
- package/misc/lib/sampler.d.ts +73 -0
- package/package.json +60 -38
- package/shaders/index.d.ts +2 -17
- package/shaders/lib/grid-material.d.ts +69 -0
- package/shaders/lib/mesh-refraction-material.d.ts +11 -0
- package/staging/README.md +472 -2
- package/staging/index.d.ts +18 -21
- package/staging/lib/accumulative-shadows.d.ts +75 -0
- package/staging/lib/backdrop.d.ts +22 -0
- package/staging/lib/bb-anchor.d.ts +17 -0
- package/staging/lib/bounds.d.ts +47 -0
- package/staging/lib/camera-shake.d.ts +29 -0
- package/staging/lib/caustics.d.ts +53 -0
- package/staging/lib/center.d.ts +422 -0
- package/staging/lib/contact-shadows.d.ts +45 -0
- package/staging/lib/environment.d.ts +159 -0
- package/staging/lib/float.d.ts +19 -0
- package/staging/lib/lightformer.d.ts +334 -0
- package/staging/lib/matcap-texture.d.ts +32 -0
- package/staging/lib/normal-texture.d.ts +37 -0
- package/staging/lib/randomized-lights.d.ts +54 -0
- package/staging/lib/render-texture.d.ts +64 -0
- package/staging/lib/sky.d.ts +32 -0
- package/staging/lib/spot-light.d.ts +120 -0
- package/staging/lib/stage.d.ts +376 -0
- package/vanilla-exports/README.md +3 -0
- package/vanilla-exports/index.d.ts +27 -0
- package/web-types.json +1 -1
- package/abstractions/billboard/billboard.d.ts +0 -28
- package/abstractions/detailed/detailed.d.ts +0 -26
- package/abstractions/edges/edges.d.ts +0 -34
- package/abstractions/grid/grid.d.ts +0 -50
- package/abstractions/text/text.d.ts +0 -82
- package/abstractions/text-3d/text-3d.d.ts +0 -84
- package/assets/distort.vert.glsl +0 -1
- package/cameras/camera/camera-content.d.ts +0 -13
- package/cameras/camera/camera.d.ts +0 -26
- package/cameras/cube-camera/cube-camera.d.ts +0 -69
- package/cameras/orthographic-camera/orthographic-camera.d.ts +0 -37
- package/cameras/perspective-camera/perspective-camera.d.ts +0 -18
- package/controls/orbit-controls/orbit-controls.d.ts +0 -54
- package/esm2022/abstractions/billboard/billboard.mjs +0 -74
- package/esm2022/abstractions/detailed/detailed.mjs +0 -64
- package/esm2022/abstractions/edges/edges.mjs +0 -88
- package/esm2022/abstractions/grid/grid.mjs +0 -180
- package/esm2022/abstractions/text/text.mjs +0 -274
- package/esm2022/abstractions/text-3d/text-3d.mjs +0 -172
- package/esm2022/cameras/camera/camera-content.mjs +0 -21
- package/esm2022/cameras/camera/camera.mjs +0 -77
- package/esm2022/cameras/cube-camera/cube-camera.mjs +0 -161
- package/esm2022/cameras/orthographic-camera/orthographic-camera.mjs +0 -102
- package/esm2022/cameras/perspective-camera/perspective-camera.mjs +0 -46
- package/esm2022/controls/orbit-controls/orbit-controls.mjs +0 -185
- package/esm2022/gizmos/angular-three-soba-gizmos.mjs +0 -5
- package/esm2022/gizmos/gizmo-helper/gizmo-helper.mjs +0 -197
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/constants.mjs +0 -31
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.mjs +0 -93
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.mjs +0 -150
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-input.mjs +0 -66
- package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube.mjs +0 -71
- package/esm2022/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.mjs +0 -195
- package/esm2022/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport.mjs +0 -272
- package/esm2022/gizmos/index.mjs +0 -4
- package/esm2022/loaders/gltf-loader/gltf-loader.mjs +0 -30
- package/esm2022/loaders/loader/loader.mjs +0 -138
- package/esm2022/loaders/progress/progress.mjs +0 -52
- package/esm2022/loaders/texture-loader/texture-loader.mjs +0 -28
- package/esm2022/materials/mesh-distort-material/mesh-distort-material.mjs +0 -82
- package/esm2022/materials/mesh-reflector-material/mesh-reflector-material.mjs +0 -367
- package/esm2022/materials/mesh-refraction-material/mesh-refraction-material.mjs +0 -171
- package/esm2022/materials/mesh-transmission-material/mesh-transmission-material.mjs +0 -278
- package/esm2022/materials/mesh-wobble-material/mesh-wobble-material.mjs +0 -68
- package/esm2022/materials/point-material/point-material.mjs +0 -50
- package/esm2022/misc/animations/animations.mjs +0 -59
- package/esm2022/misc/bake-shadows/bake-shadows.mjs +0 -24
- package/esm2022/misc/caustics/caustics.mjs +0 -387
- package/esm2022/misc/decal/decal.mjs +0 -187
- package/esm2022/misc/depth-buffer/depth-buffer.mjs +0 -44
- package/esm2022/misc/example/example.mjs +0 -160
- package/esm2022/misc/fbo/fbo.mjs +0 -47
- package/esm2022/misc/html/html-wrapper.mjs +0 -478
- package/esm2022/misc/html/html.mjs +0 -304
- package/esm2022/misc/sampler/sampler.mjs +0 -142
- package/esm2022/misc/shadow/shadow.mjs +0 -111
- package/esm2022/misc/stats-gl/stats-gl.mjs +0 -61
- package/esm2022/misc/trail/trail.mjs +0 -209
- package/esm2022/misc/trail-texture/inject-trail-texture.mjs +0 -17
- package/esm2022/misc/trail-texture/trail-texture.mjs +0 -106
- package/esm2022/modifiers/angular-three-soba-modifiers.mjs +0 -5
- package/esm2022/modifiers/curve-modifier/curve-modifier.mjs +0 -64
- package/esm2022/modifiers/index.mjs +0 -2
- package/esm2022/performances/adaptive-dpr/adaptive-dpr.mjs +0 -44
- package/esm2022/performances/adaptive-events/adaptive-events.mjs +0 -27
- package/esm2022/performances/angular-three-soba-performances.mjs +0 -5
- package/esm2022/performances/index.mjs +0 -8
- package/esm2022/performances/instances/instances.mjs +0 -220
- package/esm2022/performances/instances/position-mesh.mjs +0 -52
- package/esm2022/performances/points/points-input.mjs +0 -64
- package/esm2022/performances/points/points.mjs +0 -326
- package/esm2022/performances/points/position-point.mjs +0 -54
- package/esm2022/performances/segments/segment-object.mjs +0 -9
- package/esm2022/performances/segments/segments.mjs +0 -182
- package/esm2022/shaders/blur-pass/blur-pass.mjs +0 -61
- package/esm2022/shaders/caustics/caustics-material.mjs +0 -130
- package/esm2022/shaders/caustics/caustics-projection-material.mjs +0 -31
- package/esm2022/shaders/convolution-material/convolution-material.mjs +0 -94
- package/esm2022/shaders/discard-material/discard-material.mjs +0 -3
- package/esm2022/shaders/grid-material/grid-material.mjs +0 -77
- package/esm2022/shaders/mesh-distort-material/mesh-distort-material.mjs +0 -56
- package/esm2022/shaders/mesh-reflector-material/mesh-reflector-material.mjs +0 -223
- package/esm2022/shaders/mesh-refraction-material/mesh-refraction-material.mjs +0 -170
- package/esm2022/shaders/mesh-transmission-material/mesh-transmission-material.mjs +0 -268
- package/esm2022/shaders/mesh-wobble-material/mesh-wobble-material.mjs +0 -37
- package/esm2022/shaders/shader-material/shader-material.mjs +0 -34
- package/esm2022/shaders/soft-shadow-material/soft-shadow-material.mjs +0 -25
- package/esm2022/shaders/sparkles-material/sparkles-material.mjs +0 -33
- package/esm2022/shaders/spot-light-material/spot-light-material.mjs +0 -86
- package/esm2022/shaders/star-field-material/star-field-material.mjs +0 -33
- package/esm2022/shaders/wireframe-material/wireframe-material.mjs +0 -247
- package/esm2022/staging/accumulative-shadows/accumulative-shadows.mjs +0 -267
- package/esm2022/staging/accumulative-shadows/progressive-light-map.mjs +0 -108
- package/esm2022/staging/accumulative-shadows/randomized-lights.mjs +0 -206
- package/esm2022/staging/backdrop/backdrop.mjs +0 -77
- package/esm2022/staging/bb-anchor/bb-anchor.mjs +0 -69
- package/esm2022/staging/bounds/bounds.mjs +0 -308
- package/esm2022/staging/camera-shake/camera-shake.mjs +0 -123
- package/esm2022/staging/center/center.mjs +0 -165
- package/esm2022/staging/cloud/cloud.mjs +0 -158
- package/esm2022/staging/contact-shadows/contact-shadows.mjs +0 -246
- package/esm2022/staging/environment/assets.mjs +0 -13
- package/esm2022/staging/environment/environment-cube.mjs +0 -47
- package/esm2022/staging/environment/environment-ground.mjs +0 -41
- package/esm2022/staging/environment/environment-input.mjs +0 -119
- package/esm2022/staging/environment/environment-map.mjs +0 -53
- package/esm2022/staging/environment/environment-portal.mjs +0 -113
- package/esm2022/staging/environment/environment.mjs +0 -61
- package/esm2022/staging/environment/utils.mjs +0 -106
- package/esm2022/staging/float/float.mjs +0 -94
- package/esm2022/staging/matcap-texture/matcap-texture.mjs +0 -64
- package/esm2022/staging/normal-texture/normal-texture.mjs +0 -53
- package/esm2022/staging/sky/sky.mjs +0 -119
- package/esm2022/staging/sparkles/sparkles.mjs +0 -164
- package/esm2022/staging/spot-light/shadow-mesh-input.mjs +0 -63
- package/esm2022/staging/spot-light/shadow-mesh.mjs +0 -266
- package/esm2022/staging/spot-light/spot-light-input.mjs +0 -84
- package/esm2022/staging/spot-light/spot-light.mjs +0 -81
- package/esm2022/staging/spot-light/volumetric-mesh.mjs +0 -98
- package/esm2022/staging/stage/stage.mjs +0 -389
- package/esm2022/staging/stars/stars.mjs +0 -147
- package/esm2022/staging/wireframe/wireframe-input.mjs +0 -191
- package/esm2022/staging/wireframe/wireframe.mjs +0 -228
- package/esm2022/utils/angular-three-soba-utils.mjs +0 -5
- package/esm2022/utils/content/content.mjs +0 -15
- package/esm2022/utils/index.mjs +0 -2
- package/fesm2022/angular-three-soba-gizmos.mjs +0 -1043
- package/fesm2022/angular-three-soba-gizmos.mjs.map +0 -1
- package/fesm2022/angular-three-soba-modifiers.mjs +0 -71
- package/fesm2022/angular-three-soba-modifiers.mjs.map +0 -1
- package/fesm2022/angular-three-soba-performances.mjs +0 -956
- package/fesm2022/angular-three-soba-performances.mjs.map +0 -1
- package/fesm2022/angular-three-soba-utils.mjs +0 -22
- package/fesm2022/angular-three-soba-utils.mjs.map +0 -1
- package/gizmos/README.md +0 -3
- package/gizmos/gizmo-helper/gizmo-helper.d.ts +0 -69
- package/gizmos/gizmo-helper/gizmo-viewcube/constants.d.ts +0 -12
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.d.ts +0 -22
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.d.ts +0 -29
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-input.d.ts +0 -33
- package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube.d.ts +0 -10
- package/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.d.ts +0 -40
- package/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport.d.ts +0 -30
- package/gizmos/index.d.ts +0 -3
- package/loaders/gltf-loader/gltf-loader.d.ts +0 -10
- package/loaders/loader/loader.d.ts +0 -33
- package/loaders/progress/progress.d.ts +0 -9
- package/loaders/texture-loader/texture-loader.d.ts +0 -7
- package/materials/mesh-distort-material/mesh-distort-material.d.ts +0 -40
- package/materials/mesh-reflector-material/mesh-reflector-material.d.ts +0 -99
- package/materials/mesh-refraction-material/mesh-refraction-material.d.ts +0 -62
- package/materials/mesh-transmission-material/mesh-transmission-material.d.ts +0 -107
- package/materials/mesh-wobble-material/mesh-wobble-material.d.ts +0 -29
- package/materials/point-material/point-material.d.ts +0 -24
- package/misc/animations/animations.d.ts +0 -15
- package/misc/caustics/caustics.d.ts +0 -87
- package/misc/decal/decal.d.ts +0 -49
- package/misc/depth-buffer/depth-buffer.d.ts +0 -9
- package/misc/example/example.d.ts +0 -81
- package/misc/fbo/fbo.d.ts +0 -17
- package/misc/html/html-wrapper.d.ts +0 -559
- package/misc/html/html.d.ts +0 -214
- package/misc/sampler/sampler.d.ts +0 -67
- package/misc/shadow/shadow.d.ts +0 -37
- package/misc/stats-gl/stats-gl.d.ts +0 -24
- package/misc/trail/trail.d.ts +0 -57
- package/misc/trail-texture/inject-trail-texture.d.ts +0 -9
- package/misc/trail-texture/trail-texture.d.ts +0 -50
- package/modifiers/README.md +0 -3
- package/modifiers/curve-modifier/curve-modifier.d.ts +0 -23
- package/modifiers/index.d.ts +0 -1
- package/performances/README.md +0 -3
- package/performances/adaptive-dpr/adaptive-dpr.d.ts +0 -14
- package/performances/adaptive-events/adaptive-events.d.ts +0 -9
- package/performances/index.d.ts +0 -7
- package/performances/instances/instances.d.ts +0 -79
- package/performances/instances/position-mesh.d.ts +0 -10
- package/performances/points/points-input.d.ts +0 -32
- package/performances/points/points.d.ts +0 -92
- package/performances/points/position-point.d.ts +0 -11
- package/performances/segments/segment-object.d.ts +0 -7
- package/performances/segments/segments.d.ts +0 -124
- package/shaders/blur-pass/blur-pass.d.ts +0 -23
- package/shaders/caustics/caustics-material.d.ts +0 -4
- package/shaders/caustics/caustics-projection-material.d.ts +0 -4
- package/shaders/convolution-material/convolution-material.d.ts +0 -7
- package/shaders/discard-material/discard-material.d.ts +0 -3
- package/shaders/grid-material/grid-material.d.ts +0 -37
- package/shaders/mesh-distort-material/mesh-distort-material.d.ts +0 -295
- package/shaders/mesh-reflector-material/mesh-reflector-material.d.ts +0 -50
- package/shaders/mesh-refraction-material/mesh-refraction-material.d.ts +0 -4
- package/shaders/mesh-transmission-material/mesh-transmission-material.d.ts +0 -25
- package/shaders/mesh-wobble-material/mesh-wobble-material.d.ts +0 -16
- package/shaders/shader-material/shader-material.d.ts +0 -6
- package/shaders/soft-shadow-material/soft-shadow-material.d.ts +0 -19
- package/shaders/sparkles-material/sparkles-material.d.ts +0 -17
- package/shaders/spot-light-material/spot-light-material.d.ts +0 -13
- package/shaders/star-field-material/star-field-material.d.ts +0 -13
- package/shaders/wireframe-material/wireframe-material.d.ts +0 -58
- package/staging/accumulative-shadows/accumulative-shadows.d.ts +0 -146
- package/staging/accumulative-shadows/progressive-light-map.d.ts +0 -34
- package/staging/accumulative-shadows/randomized-lights.d.ts +0 -90
- package/staging/backdrop/backdrop.d.ts +0 -30
- package/staging/bb-anchor/bb-anchor.d.ts +0 -27
- package/staging/bounds/bounds.d.ts +0 -134
- package/staging/camera-shake/camera-shake.d.ts +0 -43
- package/staging/center/center.d.ts +0 -70
- package/staging/cloud/cloud.d.ts +0 -51
- package/staging/contact-shadows/contact-shadows.d.ts +0 -70
- package/staging/environment/assets.d.ts +0 -13
- package/staging/environment/environment-cube.d.ts +0 -15
- package/staging/environment/environment-ground.d.ts +0 -13
- package/staging/environment/environment-input.d.ts +0 -68
- package/staging/environment/environment-map.d.ts +0 -16
- package/staging/environment/environment-portal.d.ts +0 -18
- package/staging/environment/environment.d.ts +0 -8
- package/staging/environment/utils.d.ts +0 -7
- package/staging/float/float.d.ts +0 -31
- package/staging/matcap-texture/matcap-texture.d.ts +0 -13
- package/staging/normal-texture/normal-texture.d.ts +0 -16
- package/staging/sky/sky.d.ts +0 -48
- package/staging/sparkles/sparkles.d.ts +0 -63
- package/staging/spot-light/shadow-mesh-input.d.ts +0 -29
- package/staging/spot-light/shadow-mesh.d.ts +0 -37
- package/staging/spot-light/spot-light-input.d.ts +0 -38
- package/staging/spot-light/spot-light.d.ts +0 -39
- package/staging/spot-light/volumetric-mesh.d.ts +0 -24
- package/staging/stage/stage.d.ts +0 -130
- package/staging/stars/stars.d.ts +0 -45
- package/staging/wireframe/wireframe-input.d.ts +0 -65
- package/staging/wireframe/wireframe.d.ts +0 -28
- package/utils/README.md +0 -3
- package/utils/content/content.d.ts +0 -8
- package/utils/index.d.ts +0 -1
- /package/misc/{bake-shadows → lib}/bake-shadows.d.ts +0 -0
|
@@ -1,559 +0,0 @@
|
|
|
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
|
-
}
|