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.
Files changed (321) hide show
  1. package/abstractions/billboard/billboard.d.ts +11 -7
  2. package/abstractions/detailed/detailed.d.ts +26 -0
  3. package/abstractions/edges/edges.d.ts +24 -12
  4. package/abstractions/grid/grid.d.ts +50 -0
  5. package/abstractions/index.d.ts +2 -7
  6. package/abstractions/text/text.d.ts +10 -5
  7. package/abstractions/text-3d/text-3d.d.ts +51 -41
  8. package/cameras/camera/camera-content.d.ts +1 -1
  9. package/cameras/camera/camera.d.ts +16 -13
  10. package/cameras/cube-camera/cube-camera.d.ts +50 -23
  11. package/cameras/index.d.ts +0 -1
  12. package/cameras/orthographic-camera/orthographic-camera.d.ts +29 -18
  13. package/cameras/perspective-camera/perspective-camera.d.ts +10 -1
  14. package/controls/orbit-controls/orbit-controls.d.ts +31 -12
  15. package/esm2022/abstractions/billboard/billboard.mjs +36 -33
  16. package/esm2022/abstractions/detailed/detailed.mjs +64 -0
  17. package/esm2022/abstractions/edges/edges.mjs +58 -63
  18. package/esm2022/abstractions/grid/grid.mjs +180 -0
  19. package/esm2022/abstractions/index.mjs +3 -8
  20. package/esm2022/abstractions/text/text.mjs +123 -124
  21. package/esm2022/abstractions/text-3d/text-3d.mjs +120 -115
  22. package/esm2022/cameras/camera/camera-content.mjs +6 -6
  23. package/esm2022/cameras/camera/camera.mjs +48 -42
  24. package/esm2022/cameras/cube-camera/cube-camera.mjs +129 -99
  25. package/esm2022/cameras/index.mjs +1 -2
  26. package/esm2022/cameras/orthographic-camera/orthographic-camera.mjs +78 -75
  27. package/esm2022/cameras/perspective-camera/perspective-camera.mjs +25 -26
  28. package/esm2022/controls/orbit-controls/orbit-controls.mjs +105 -85
  29. package/esm2022/gizmos/angular-three-soba-gizmos.mjs +5 -0
  30. package/esm2022/gizmos/gizmo-helper/gizmo-helper.mjs +197 -0
  31. package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/constants.mjs +31 -0
  32. package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.mjs +93 -0
  33. package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.mjs +150 -0
  34. package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-input.mjs +66 -0
  35. package/esm2022/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube.mjs +71 -0
  36. package/esm2022/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.mjs +195 -0
  37. package/esm2022/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport.mjs +272 -0
  38. package/esm2022/gizmos/index.mjs +4 -0
  39. package/esm2022/loaders/gltf-loader/gltf-loader.mjs +3 -6
  40. package/esm2022/loaders/loader/loader.mjs +92 -87
  41. package/esm2022/loaders/progress/progress.mjs +29 -29
  42. package/esm2022/loaders/texture-loader/texture-loader.mjs +4 -4
  43. package/esm2022/materials/index.mjs +2 -1
  44. package/esm2022/materials/mesh-distort-material/mesh-distort-material.mjs +60 -51
  45. package/esm2022/materials/mesh-reflector-material/mesh-reflector-material.mjs +239 -255
  46. package/esm2022/materials/mesh-refraction-material/mesh-refraction-material.mjs +102 -99
  47. package/esm2022/materials/mesh-transmission-material/mesh-transmission-material.mjs +167 -146
  48. package/esm2022/materials/mesh-wobble-material/mesh-wobble-material.mjs +44 -42
  49. package/esm2022/materials/point-material/point-material.mjs +50 -0
  50. package/esm2022/misc/animations/animations.mjs +36 -32
  51. package/esm2022/misc/bake-shadows/bake-shadows.mjs +13 -13
  52. package/esm2022/misc/caustics/caustics.mjs +387 -0
  53. package/esm2022/misc/decal/decal.mjs +187 -0
  54. package/esm2022/misc/depth-buffer/depth-buffer.mjs +33 -35
  55. package/esm2022/misc/example/example.mjs +160 -0
  56. package/esm2022/misc/fbo/fbo.mjs +35 -35
  57. package/esm2022/misc/html/html-wrapper.mjs +478 -0
  58. package/esm2022/misc/html/html.mjs +304 -0
  59. package/esm2022/misc/index.mjs +10 -1
  60. package/esm2022/misc/sampler/sampler.mjs +142 -0
  61. package/esm2022/misc/shadow/shadow.mjs +111 -0
  62. package/esm2022/misc/stats-gl/stats-gl.mjs +61 -0
  63. package/esm2022/misc/trail/trail.mjs +209 -0
  64. package/esm2022/misc/trail-texture/inject-trail-texture.mjs +17 -0
  65. package/esm2022/misc/trail-texture/trail-texture.mjs +106 -0
  66. package/esm2022/modifiers/angular-three-soba-modifiers.mjs +5 -0
  67. package/esm2022/modifiers/curve-modifier/curve-modifier.mjs +64 -0
  68. package/esm2022/modifiers/index.mjs +2 -0
  69. package/esm2022/performances/adaptive-dpr/adaptive-dpr.mjs +44 -0
  70. package/esm2022/performances/adaptive-events/adaptive-events.mjs +27 -0
  71. package/esm2022/performances/angular-three-soba-performances.mjs +5 -0
  72. package/esm2022/performances/index.mjs +8 -0
  73. package/esm2022/performances/instances/instances.mjs +220 -0
  74. package/esm2022/performances/instances/position-mesh.mjs +52 -0
  75. package/esm2022/performances/points/points-input.mjs +64 -0
  76. package/esm2022/performances/points/points.mjs +326 -0
  77. package/esm2022/performances/points/position-point.mjs +54 -0
  78. package/esm2022/performances/segments/segment-object.mjs +9 -0
  79. package/esm2022/performances/segments/segments.mjs +182 -0
  80. package/esm2022/shaders/blur-pass/blur-pass.mjs +2 -2
  81. package/esm2022/shaders/caustics/caustics-material.mjs +130 -0
  82. package/esm2022/shaders/caustics/caustics-projection-material.mjs +31 -0
  83. package/esm2022/shaders/convolution-material/convolution-material.mjs +1 -1
  84. package/esm2022/shaders/discard-material/discard-material.mjs +1 -1
  85. package/esm2022/shaders/grid-material/grid-material.mjs +77 -0
  86. package/esm2022/shaders/index.mjs +6 -3
  87. package/esm2022/shaders/mesh-distort-material/mesh-distort-material.mjs +42 -41
  88. package/esm2022/shaders/mesh-reflector-material/mesh-reflector-material.mjs +2 -2
  89. package/esm2022/shaders/mesh-refraction-material/mesh-refraction-material.mjs +2 -2
  90. package/esm2022/shaders/mesh-transmission-material/mesh-transmission-material.mjs +4 -4
  91. package/esm2022/shaders/mesh-wobble-material/mesh-wobble-material.mjs +1 -1
  92. package/esm2022/shaders/shader-material/shader-material.mjs +1 -1
  93. package/esm2022/shaders/soft-shadow-material/soft-shadow-material.mjs +17 -25
  94. package/esm2022/shaders/sparkles-material/sparkles-material.mjs +32 -46
  95. package/esm2022/shaders/spot-light-material/spot-light-material.mjs +7 -7
  96. package/esm2022/shaders/star-field-material/star-field-material.mjs +3 -2
  97. package/esm2022/shaders/wireframe-material/wireframe-material.mjs +247 -0
  98. package/esm2022/staging/accumulative-shadows/accumulative-shadows.mjs +160 -176
  99. package/esm2022/staging/accumulative-shadows/progressive-light-map.mjs +1 -1
  100. package/esm2022/staging/accumulative-shadows/randomized-lights.mjs +126 -128
  101. package/esm2022/staging/backdrop/backdrop.mjs +77 -0
  102. package/esm2022/staging/bb-anchor/bb-anchor.mjs +69 -0
  103. package/esm2022/staging/bounds/bounds.mjs +144 -143
  104. package/esm2022/staging/camera-shake/camera-shake.mjs +86 -80
  105. package/esm2022/staging/center/center.mjs +129 -112
  106. package/esm2022/staging/cloud/cloud.mjs +118 -124
  107. package/esm2022/staging/contact-shadows/contact-shadows.mjs +131 -134
  108. package/esm2022/staging/environment/assets.mjs +12 -12
  109. package/esm2022/staging/environment/environment-cube.mjs +28 -30
  110. package/esm2022/staging/environment/environment-ground.mjs +17 -19
  111. package/esm2022/staging/environment/environment-input.mjs +98 -85
  112. package/esm2022/staging/environment/environment-map.mjs +33 -33
  113. package/esm2022/staging/environment/environment-portal.mjs +75 -97
  114. package/esm2022/staging/environment/environment.mjs +34 -51
  115. package/esm2022/staging/environment/utils.mjs +37 -15
  116. package/esm2022/staging/float/float.mjs +70 -58
  117. package/esm2022/staging/index.mjs +7 -3
  118. package/esm2022/staging/matcap-texture/matcap-texture.mjs +64 -0
  119. package/esm2022/staging/normal-texture/normal-texture.mjs +53 -0
  120. package/esm2022/staging/sky/sky.mjs +85 -80
  121. package/esm2022/staging/sparkles/sparkles.mjs +108 -105
  122. package/esm2022/staging/spot-light/shadow-mesh-input.mjs +63 -0
  123. package/esm2022/staging/spot-light/shadow-mesh.mjs +266 -0
  124. package/esm2022/staging/spot-light/spot-light-input.mjs +67 -58
  125. package/esm2022/staging/spot-light/spot-light.mjs +51 -64
  126. package/esm2022/staging/spot-light/volumetric-mesh.mjs +67 -70
  127. package/esm2022/staging/stage/stage.mjs +305 -290
  128. package/esm2022/staging/stars/stars.mjs +101 -102
  129. package/esm2022/staging/wireframe/wireframe-input.mjs +191 -0
  130. package/esm2022/staging/wireframe/wireframe.mjs +228 -0
  131. package/esm2022/utils/angular-three-soba-utils.mjs +5 -0
  132. package/esm2022/utils/content/content.mjs +15 -0
  133. package/esm2022/utils/index.mjs +2 -0
  134. package/fesm2022/angular-three-soba-abstractions.mjs +514 -1947
  135. package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
  136. package/fesm2022/angular-three-soba-cameras.mjs +302 -259
  137. package/fesm2022/angular-three-soba-cameras.mjs.map +1 -1
  138. package/fesm2022/angular-three-soba-controls.mjs +104 -83
  139. package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
  140. package/fesm2022/angular-three-soba-gizmos.mjs +1043 -0
  141. package/fesm2022/angular-three-soba-gizmos.mjs.map +1 -0
  142. package/fesm2022/angular-three-soba-loaders.mjs +121 -117
  143. package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
  144. package/fesm2022/angular-three-soba-materials.mjs +662 -592
  145. package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
  146. package/fesm2022/angular-three-soba-misc.mjs +2214 -105
  147. package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
  148. package/fesm2022/angular-three-soba-modifiers.mjs +71 -0
  149. package/fesm2022/angular-three-soba-modifiers.mjs.map +1 -0
  150. package/fesm2022/angular-three-soba-performances.mjs +956 -0
  151. package/fesm2022/angular-three-soba-performances.mjs.map +1 -0
  152. package/fesm2022/angular-three-soba-shaders.mjs +549 -252
  153. package/fesm2022/angular-three-soba-shaders.mjs.map +1 -1
  154. package/fesm2022/angular-three-soba-staging.mjs +2899 -2563
  155. package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
  156. package/fesm2022/angular-three-soba-utils.mjs +22 -0
  157. package/fesm2022/angular-three-soba-utils.mjs.map +1 -0
  158. package/gizmos/README.md +3 -0
  159. package/gizmos/gizmo-helper/gizmo-helper.d.ts +69 -0
  160. package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.d.ts +22 -0
  161. package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.d.ts +29 -0
  162. package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube-input.d.ts +33 -0
  163. package/gizmos/gizmo-helper/gizmo-viewcube/gizmo-viewcube.d.ts +10 -0
  164. package/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.d.ts +40 -0
  165. package/gizmos/gizmo-helper/gizmo-viewport/gizmo-viewport.d.ts +30 -0
  166. package/gizmos/index.d.ts +3 -0
  167. package/loaders/gltf-loader/gltf-loader.d.ts +4 -3
  168. package/loaders/loader/loader.d.ts +19 -17
  169. package/loaders/progress/progress.d.ts +1 -1
  170. package/loaders/texture-loader/texture-loader.d.ts +2 -2
  171. package/materials/index.d.ts +1 -0
  172. package/materials/mesh-distort-material/mesh-distort-material.d.ts +25 -15
  173. package/materials/mesh-reflector-material/mesh-reflector-material.d.ts +74 -56
  174. package/materials/mesh-refraction-material/mesh-refraction-material.d.ts +33 -21
  175. package/materials/mesh-transmission-material/mesh-transmission-material.d.ts +55 -39
  176. package/materials/mesh-wobble-material/mesh-wobble-material.d.ts +19 -10
  177. package/materials/point-material/point-material.d.ts +24 -0
  178. package/metadata.json +1 -0
  179. package/misc/animations/animations.d.ts +6 -4
  180. package/misc/caustics/caustics.d.ts +87 -0
  181. package/misc/decal/decal.d.ts +49 -0
  182. package/misc/depth-buffer/depth-buffer.d.ts +2 -2
  183. package/misc/example/example.d.ts +81 -0
  184. package/misc/fbo/fbo.d.ts +2 -2
  185. package/misc/html/html-wrapper.d.ts +559 -0
  186. package/misc/html/html.d.ts +214 -0
  187. package/misc/index.d.ts +9 -0
  188. package/misc/sampler/sampler.d.ts +67 -0
  189. package/misc/shadow/shadow.d.ts +37 -0
  190. package/misc/stats-gl/stats-gl.d.ts +24 -0
  191. package/misc/trail/trail.d.ts +57 -0
  192. package/misc/trail-texture/inject-trail-texture.d.ts +9 -0
  193. package/misc/trail-texture/trail-texture.d.ts +50 -0
  194. package/modifiers/README.md +3 -0
  195. package/modifiers/curve-modifier/curve-modifier.d.ts +23 -0
  196. package/modifiers/index.d.ts +1 -0
  197. package/package.json +31 -16
  198. package/performances/README.md +3 -0
  199. package/performances/adaptive-dpr/adaptive-dpr.d.ts +14 -0
  200. package/{performance/adaptive → performances/adaptive-events}/adaptive-events.d.ts +3 -0
  201. package/performances/index.d.ts +7 -0
  202. package/performances/instances/instances.d.ts +79 -0
  203. package/{performance → performances}/instances/position-mesh.d.ts +1 -1
  204. package/performances/points/points-input.d.ts +32 -0
  205. package/performances/points/points.d.ts +92 -0
  206. package/performances/points/position-point.d.ts +11 -0
  207. package/performances/segments/segment-object.d.ts +7 -0
  208. package/performances/segments/segments.d.ts +124 -0
  209. package/shaders/grid-material/grid-material.d.ts +37 -0
  210. package/shaders/index.d.ts +5 -2
  211. package/shaders/mesh-distort-material/mesh-distort-material.d.ts +147 -2
  212. package/shaders/mesh-transmission-material/mesh-transmission-material.d.ts +1 -1
  213. package/shaders/shader-material/shader-material.d.ts +2 -2
  214. package/shaders/soft-shadow-material/soft-shadow-material.d.ts +10 -1
  215. package/shaders/sparkles-material/sparkles-material.d.ts +15 -1
  216. package/shaders/spot-light-material/spot-light-material.d.ts +11 -2
  217. package/shaders/star-field-material/star-field-material.d.ts +11 -1
  218. package/shaders/wireframe-material/wireframe-material.d.ts +58 -0
  219. package/staging/accumulative-shadows/accumulative-shadows.d.ts +89 -39
  220. package/staging/accumulative-shadows/randomized-lights.d.ts +40 -27
  221. package/staging/backdrop/backdrop.d.ts +30 -0
  222. package/staging/bb-anchor/bb-anchor.d.ts +27 -0
  223. package/staging/bounds/bounds.d.ts +100 -24
  224. package/staging/camera-shake/camera-shake.d.ts +30 -19
  225. package/staging/center/center.d.ts +43 -35
  226. package/staging/cloud/cloud.d.ts +26 -23
  227. package/staging/contact-shadows/contact-shadows.d.ts +41 -28
  228. package/staging/environment/assets.d.ts +9 -9
  229. package/staging/environment/environment-cube.d.ts +9 -5
  230. package/staging/environment/environment-ground.d.ts +7 -7
  231. package/staging/environment/environment-input.d.ts +37 -37
  232. package/staging/environment/environment-map.d.ts +10 -5
  233. package/staging/environment/environment-portal.d.ts +10 -5
  234. package/staging/environment/environment.d.ts +0 -4
  235. package/staging/environment/utils.d.ts +2 -2
  236. package/staging/float/float.d.ts +14 -10
  237. package/staging/index.d.ts +6 -2
  238. package/staging/matcap-texture/matcap-texture.d.ts +13 -0
  239. package/staging/normal-texture/normal-texture.d.ts +16 -0
  240. package/staging/sky/sky.d.ts +28 -21
  241. package/staging/sparkles/sparkles.d.ts +36 -22
  242. package/staging/spot-light/shadow-mesh-input.d.ts +29 -0
  243. package/staging/spot-light/shadow-mesh.d.ts +37 -0
  244. package/staging/spot-light/spot-light-input.d.ts +25 -25
  245. package/staging/spot-light/spot-light.d.ts +31 -15
  246. package/staging/spot-light/volumetric-mesh.d.ts +15 -9
  247. package/staging/stage/stage.d.ts +89 -65
  248. package/staging/stars/stars.d.ts +28 -17
  249. package/staging/wireframe/wireframe-input.d.ts +65 -0
  250. package/staging/wireframe/wireframe.d.ts +28 -0
  251. package/utils/README.md +3 -0
  252. package/utils/content/content.d.ts +8 -0
  253. package/utils/index.d.ts +1 -0
  254. package/web-types.json +1 -0
  255. package/abstractions/catmull-rom-line/catmull-rom-line.d.ts +0 -25
  256. package/abstractions/cubic-bezier-line/cubic-bezier-line.d.ts +0 -25
  257. package/abstractions/gizmo-helper/gizmo-helper.d.ts +0 -34
  258. package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.d.ts +0 -22
  259. package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.d.ts +0 -30
  260. package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-inputs.d.ts +0 -32
  261. package/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube.d.ts +0 -14
  262. package/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.d.ts +0 -47
  263. package/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport.d.ts +0 -40
  264. package/abstractions/line/line-input.d.ts +0 -42
  265. package/abstractions/line/line.d.ts +0 -35
  266. package/abstractions/quadratic-bezier-line/quadratic-bezier-line.d.ts +0 -23
  267. package/esm2022/abstractions/catmull-rom-line/catmull-rom-line.mjs +0 -131
  268. package/esm2022/abstractions/cubic-bezier-line/cubic-bezier-line.mjs +0 -113
  269. package/esm2022/abstractions/gizmo-helper/gizmo-helper.mjs +0 -210
  270. package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/constants.mjs +0 -31
  271. package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-edge.mjs +0 -95
  272. package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-face.mjs +0 -155
  273. package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube-inputs.mjs +0 -62
  274. package/esm2022/abstractions/gizmo-helper/gizmo-viewcube/gizmo-viewcube.mjs +0 -80
  275. package/esm2022/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport-axis.mjs +0 -206
  276. package/esm2022/abstractions/gizmo-helper/gizmo-viewport/gizmo-viewport.mjs +0 -273
  277. package/esm2022/abstractions/line/line-input.mjs +0 -113
  278. package/esm2022/abstractions/line/line.mjs +0 -165
  279. package/esm2022/abstractions/quadratic-bezier-line/quadratic-bezier-line.mjs +0 -128
  280. package/esm2022/performance/adaptive/adaptive-dpr.mjs +0 -46
  281. package/esm2022/performance/adaptive/adaptive-events.mjs +0 -31
  282. package/esm2022/performance/angular-three-soba-performance.mjs +0 -5
  283. package/esm2022/performance/detailed/detailed.mjs +0 -61
  284. package/esm2022/performance/index.mjs +0 -7
  285. package/esm2022/performance/instances/instance.mjs +0 -48
  286. package/esm2022/performance/instances/instances.mjs +0 -189
  287. package/esm2022/performance/instances/position-mesh.mjs +0 -52
  288. package/esm2022/performance/stats/stats.mjs +0 -79
  289. package/esm2022/shaders/caustics-material/caustics-material.mjs +0 -128
  290. package/esm2022/shaders/caustics-material/caustics-projection-material.mjs +0 -33
  291. package/esm2022/staging/caustics/caustisc.mjs +0 -384
  292. package/esm2022/staging/spot-light/spot-light-shadow-mesh-input.mjs +0 -57
  293. package/esm2022/staging/spot-light/spot-light-shadow-mesh.mjs +0 -256
  294. package/fesm2022/angular-three-soba-performance.mjs +0 -487
  295. package/fesm2022/angular-three-soba-performance.mjs.map +0 -1
  296. package/performance/README.md +0 -3
  297. package/performance/adaptive/adaptive-dpr.d.ts +0 -8
  298. package/performance/detailed/detailed.d.ts +0 -20
  299. package/performance/index.d.ts +0 -6
  300. package/performance/instances/instance.d.ts +0 -9
  301. package/performance/instances/instances.d.ts +0 -35
  302. package/performance/stats/stats.d.ts +0 -18
  303. package/plugin/generators.json +0 -19
  304. package/plugin/libs/plugin/README.md +0 -11
  305. package/plugin/package.json +0 -9
  306. package/plugin/src/generators/init/compat.d.ts +0 -2
  307. package/plugin/src/generators/init/compat.js +0 -6
  308. package/plugin/src/generators/init/compat.js.map +0 -1
  309. package/plugin/src/generators/init/init.d.ts +0 -4
  310. package/plugin/src/generators/init/init.js +0 -22
  311. package/plugin/src/generators/init/init.js.map +0 -1
  312. package/plugin/src/generators/init/schema.json +0 -6
  313. package/plugin/src/index.d.ts +0 -1
  314. package/plugin/src/index.js +0 -6
  315. package/plugin/src/index.js.map +0 -1
  316. package/staging/caustics/caustisc.d.ts +0 -70
  317. package/staging/spot-light/spot-light-shadow-mesh-input.d.ts +0 -29
  318. package/staging/spot-light/spot-light-shadow-mesh.d.ts +0 -38
  319. /package/{abstractions → gizmos}/gizmo-helper/gizmo-viewcube/constants.d.ts +0 -0
  320. /package/shaders/{caustics-material → caustics}/caustics-material.d.ts +0 -0
  321. /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
+ }