angular-three-soba 2.0.0-beta.9 → 2.1.0

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 (425) hide show
  1. package/README.md +62 -4
  2. package/abstractions/README.md +279 -2
  3. package/abstractions/index.d.ts +13 -6
  4. package/abstractions/lib/billboard.d.ts +19 -0
  5. package/abstractions/lib/catmull-rom-line.d.ts +617 -0
  6. package/abstractions/lib/cubic-bezier-line.d.ts +19 -0
  7. package/abstractions/lib/edges.d.ts +800 -0
  8. package/abstractions/lib/gradient-texture.d.ts +24 -0
  9. package/abstractions/lib/grid.d.ts +315 -0
  10. package/abstractions/lib/helper.d.ts +25 -0
  11. package/abstractions/lib/line.d.ts +41 -0
  12. package/abstractions/lib/prism-geometry.d.ts +32 -0
  13. package/abstractions/lib/quadratic-bezier-line.d.ts +21 -0
  14. package/abstractions/lib/rounded-box.d.ts +41 -0
  15. package/abstractions/lib/text-3d.d.ts +314 -0
  16. package/abstractions/lib/text.d.ts +54 -0
  17. package/cameras/README.md +91 -2
  18. package/cameras/index.d.ts +4 -4
  19. package/cameras/lib/camera-content.d.ts +10 -0
  20. package/cameras/lib/cube-camera.d.ts +38 -0
  21. package/cameras/lib/orthographic-camera.d.ts +40 -0
  22. package/cameras/lib/perspective-camera.d.ts +36 -0
  23. package/controls/README.md +96 -2
  24. package/controls/index.d.ts +4 -1
  25. package/controls/lib/camera-controls.d.ts +31 -0
  26. package/controls/lib/orbit-controls.d.ts +38 -0
  27. package/controls/lib/pivot-controls/axis-arrow.d.ts +31 -0
  28. package/controls/lib/pivot-controls/axis-rotator.d.ts +30 -0
  29. package/controls/lib/pivot-controls/pivot-controls.d.ts +110 -0
  30. package/controls/lib/pivot-controls/plane-slider.d.ts +32 -0
  31. package/controls/lib/pivot-controls/scaling-sphere.d.ts +32 -0
  32. package/controls/lib/scroll-controls.d.ts +78 -0
  33. package/esm2022/abstractions/index.mjs +14 -7
  34. package/esm2022/abstractions/lib/billboard.mjs +69 -0
  35. package/esm2022/abstractions/lib/catmull-rom-line.mjs +76 -0
  36. package/esm2022/abstractions/lib/cubic-bezier-line.mjs +51 -0
  37. package/esm2022/abstractions/lib/edges.mjs +70 -0
  38. package/esm2022/abstractions/lib/gradient-texture.mjs +91 -0
  39. package/esm2022/abstractions/lib/grid.mjs +103 -0
  40. package/esm2022/abstractions/lib/helper.mjs +76 -0
  41. package/esm2022/abstractions/lib/line.mjs +126 -0
  42. package/esm2022/abstractions/lib/prism-geometry.mjs +46 -0
  43. package/esm2022/abstractions/lib/quadratic-bezier-line.mjs +73 -0
  44. package/esm2022/abstractions/lib/rounded-box.mjs +111 -0
  45. package/esm2022/abstractions/lib/text-3d.mjs +98 -0
  46. package/esm2022/abstractions/lib/text.mjs +91 -0
  47. package/esm2022/cameras/index.mjs +5 -5
  48. package/esm2022/cameras/lib/camera-content.mjs +14 -0
  49. package/esm2022/cameras/lib/cube-camera.mjs +111 -0
  50. package/esm2022/cameras/lib/orthographic-camera.mjs +131 -0
  51. package/esm2022/cameras/lib/perspective-camera.mjs +104 -0
  52. package/esm2022/controls/index.mjs +5 -2
  53. package/esm2022/controls/lib/camera-controls.mjs +127 -0
  54. package/esm2022/controls/lib/orbit-controls.mjs +132 -0
  55. package/esm2022/controls/lib/pivot-controls/axis-arrow.mjs +263 -0
  56. package/esm2022/controls/lib/pivot-controls/axis-rotator.mjs +264 -0
  57. package/esm2022/controls/lib/pivot-controls/pivot-controls.mjs +340 -0
  58. package/esm2022/controls/lib/pivot-controls/plane-slider.mjs +266 -0
  59. package/esm2022/controls/lib/pivot-controls/scaling-sphere.mjs +232 -0
  60. package/esm2022/controls/lib/scroll-controls.mjs +268 -0
  61. package/esm2022/loaders/index.mjs +6 -5
  62. package/esm2022/loaders/lib/font-loader.mjs +49 -0
  63. package/esm2022/loaders/lib/gltf-loader.mjs +51 -0
  64. package/esm2022/loaders/lib/loader.mjs +109 -0
  65. package/esm2022/loaders/lib/progress.mjs +51 -0
  66. package/esm2022/loaders/lib/texture-loader.mjs +32 -0
  67. package/esm2022/materials/index.mjs +8 -7
  68. package/esm2022/materials/lib/custom-shader-material.mjs +71 -0
  69. package/esm2022/materials/lib/mesh-distort-material.mjs +42 -0
  70. package/esm2022/materials/lib/mesh-reflector-material.mjs +278 -0
  71. package/esm2022/materials/lib/mesh-refraction-material.mjs +144 -0
  72. package/esm2022/materials/lib/mesh-transmission-material.mjs +188 -0
  73. package/esm2022/materials/lib/mesh-wobble-material.mjs +42 -0
  74. package/esm2022/materials/lib/point-material.mjs +33 -0
  75. package/esm2022/misc/index.mjs +14 -14
  76. package/esm2022/misc/lib/animations.mjs +71 -0
  77. package/esm2022/misc/lib/bake-shadows.mjs +26 -0
  78. package/esm2022/misc/lib/computed-attribute.mjs +55 -0
  79. package/esm2022/misc/lib/constants.mjs +5 -0
  80. package/esm2022/misc/lib/decal.mjs +139 -0
  81. package/esm2022/misc/lib/deprecated.mjs +15 -0
  82. package/esm2022/misc/lib/depth-buffer.mjs +39 -0
  83. package/esm2022/misc/lib/fbo.mjs +86 -0
  84. package/esm2022/misc/lib/html/html-content.mjs +327 -0
  85. package/esm2022/misc/lib/html/html.mjs +129 -0
  86. package/esm2022/misc/lib/html/utils.mjs +74 -0
  87. package/esm2022/misc/lib/intersect.mjs +52 -0
  88. package/esm2022/misc/lib/sampler.mjs +122 -0
  89. package/esm2022/misc/lib/scale-factor.mjs +29 -0
  90. package/esm2022/performances/index.mjs +7 -6
  91. package/esm2022/performances/lib/adaptive-dpr.mjs +52 -0
  92. package/esm2022/performances/lib/adaptive-events.mjs +28 -0
  93. package/esm2022/performances/lib/detailed.mjs +57 -0
  94. package/esm2022/performances/lib/instances/instances.mjs +183 -0
  95. package/esm2022/performances/lib/instances/position-mesh.mjs +51 -0
  96. package/esm2022/performances/lib/points/points.mjs +278 -0
  97. package/esm2022/performances/lib/points/position-point.mjs +53 -0
  98. package/esm2022/performances/lib/segments/segment-object.mjs +9 -0
  99. package/esm2022/performances/lib/segments/segments.mjs +129 -0
  100. package/esm2022/shaders/index.mjs +4 -18
  101. package/esm2022/shaders/lib/grid-material.mjs +81 -0
  102. package/esm2022/shaders/lib/mesh-refraction-material.mjs +163 -0
  103. package/esm2022/shaders/lib/point-material.mjs +24 -0
  104. package/esm2022/staging/index.mjs +20 -22
  105. package/esm2022/staging/lib/accumulative-shadows.mjs +182 -0
  106. package/esm2022/staging/lib/backdrop.mjs +73 -0
  107. package/esm2022/staging/lib/bb-anchor.mjs +58 -0
  108. package/esm2022/staging/lib/bounds.mjs +286 -0
  109. package/esm2022/staging/lib/camera-shake.mjs +69 -0
  110. package/esm2022/staging/lib/caustics.mjs +188 -0
  111. package/esm2022/staging/lib/center.mjs +118 -0
  112. package/esm2022/staging/lib/contact-shadows.mjs +214 -0
  113. package/esm2022/staging/lib/environment.mjs +481 -0
  114. package/esm2022/staging/lib/float.mjs +70 -0
  115. package/esm2022/staging/lib/lightformer.mjs +107 -0
  116. package/esm2022/staging/lib/mask.mjs +78 -0
  117. package/esm2022/staging/lib/matcap-texture.mjs +81 -0
  118. package/esm2022/staging/lib/normal-texture.mjs +81 -0
  119. package/esm2022/staging/lib/randomized-lights.mjs +104 -0
  120. package/esm2022/staging/lib/render-texture.mjs +203 -0
  121. package/esm2022/staging/lib/sky.mjs +86 -0
  122. package/esm2022/staging/lib/spot-light.mjs +453 -0
  123. package/esm2022/staging/lib/stage.mjs +236 -0
  124. package/esm2022/{utils/angular-three-soba-utils.mjs → stats/angular-three-soba-stats.mjs} +1 -1
  125. package/esm2022/stats/index.mjs +2 -0
  126. package/esm2022/stats/lib/stats.mjs +63 -0
  127. package/esm2022/vanilla-exports/angular-three-soba-vanilla-exports.mjs +5 -0
  128. package/esm2022/vanilla-exports/index.mjs +3 -0
  129. package/fesm2022/angular-three-soba-abstractions.mjs +884 -697
  130. package/fesm2022/angular-three-soba-abstractions.mjs.map +1 -1
  131. package/fesm2022/angular-three-soba-cameras.mjs +261 -308
  132. package/fesm2022/angular-three-soba-cameras.mjs.map +1 -1
  133. package/fesm2022/angular-three-soba-controls.mjs +1776 -109
  134. package/fesm2022/angular-three-soba-controls.mjs.map +1 -1
  135. package/fesm2022/angular-three-soba-loaders.mjs +191 -145
  136. package/fesm2022/angular-three-soba-loaders.mjs.map +1 -1
  137. package/fesm2022/angular-three-soba-materials.mjs +527 -748
  138. package/fesm2022/angular-three-soba-materials.mjs.map +1 -1
  139. package/fesm2022/angular-three-soba-misc.mjs +783 -1935
  140. package/fesm2022/angular-three-soba-misc.mjs.map +1 -1
  141. package/fesm2022/angular-three-soba-performances.mjs +591 -475
  142. package/fesm2022/angular-three-soba-performances.mjs.map +1 -1
  143. package/fesm2022/angular-three-soba-shaders.mjs +51 -1369
  144. package/fesm2022/angular-three-soba-shaders.mjs.map +1 -1
  145. package/fesm2022/angular-three-soba-staging.mjs +2421 -3521
  146. package/fesm2022/angular-three-soba-staging.mjs.map +1 -1
  147. package/fesm2022/angular-three-soba-stats.mjs +70 -0
  148. package/fesm2022/angular-three-soba-stats.mjs.map +1 -0
  149. package/fesm2022/angular-three-soba-vanilla-exports.mjs +6 -0
  150. package/fesm2022/angular-three-soba-vanilla-exports.mjs.map +1 -0
  151. package/loaders/README.md +130 -2
  152. package/loaders/index.d.ts +5 -4
  153. package/loaders/lib/font-loader.d.ts +27 -0
  154. package/loaders/lib/gltf-loader.d.ts +24 -0
  155. package/loaders/lib/loader.d.ts +29 -0
  156. package/loaders/lib/progress.d.ts +9 -0
  157. package/loaders/lib/texture-loader.d.ts +13 -0
  158. package/materials/README.md +160 -2
  159. package/materials/index.d.ts +7 -6
  160. package/materials/lib/custom-shader-material.d.ts +20 -0
  161. package/materials/lib/mesh-distort-material.d.ts +17 -0
  162. package/materials/lib/mesh-reflector-material.d.ts +51 -0
  163. package/materials/lib/mesh-refraction-material.d.ts +42 -0
  164. package/materials/lib/mesh-transmission-material.d.ts +77 -0
  165. package/materials/lib/mesh-wobble-material.d.ts +15 -0
  166. package/materials/lib/point-material.d.ts +11 -0
  167. package/metadata.json +1 -1
  168. package/misc/README.md +217 -2
  169. package/misc/index.d.ts +13 -13
  170. package/misc/lib/animations.d.ts +17 -0
  171. package/misc/lib/computed-attribute.d.ts +64 -0
  172. package/misc/lib/constants.d.ts +1 -0
  173. package/misc/lib/decal.d.ts +27 -0
  174. package/misc/lib/deprecated.d.ts +14 -0
  175. package/misc/lib/depth-buffer.d.ts +8 -0
  176. package/misc/lib/fbo.d.ts +46 -0
  177. package/misc/lib/html/html-content.d.ts +47 -0
  178. package/misc/lib/html/html.d.ts +30 -0
  179. package/misc/lib/html/utils.d.ts +14 -0
  180. package/misc/lib/intersect.d.ts +13 -0
  181. package/misc/lib/sampler.d.ts +73 -0
  182. package/misc/lib/scale-factor.d.ts +3 -0
  183. package/package.json +90 -50
  184. package/performances/index.d.ts +6 -5
  185. package/performances/lib/adaptive-dpr.d.ts +7 -0
  186. package/performances/{adaptive-events → lib}/adaptive-events.d.ts +0 -3
  187. package/performances/lib/detailed.d.ts +17 -0
  188. package/performances/lib/instances/instances.d.ts +122 -0
  189. package/performances/lib/instances/position-mesh.d.ts +20 -0
  190. package/performances/lib/points/points.d.ts +224 -0
  191. package/performances/lib/points/position-point.d.ts +21 -0
  192. package/performances/lib/segments/segment-object.d.ts +17 -0
  193. package/performances/lib/segments/segments.d.ts +97 -0
  194. package/shaders/index.d.ts +3 -17
  195. package/shaders/lib/grid-material.d.ts +69 -0
  196. package/shaders/lib/mesh-refraction-material.d.ts +11 -0
  197. package/shaders/lib/point-material.d.ts +14 -0
  198. package/staging/README.md +473 -2
  199. package/staging/index.d.ts +19 -21
  200. package/staging/lib/accumulative-shadows.d.ts +75 -0
  201. package/staging/lib/backdrop.d.ts +22 -0
  202. package/staging/lib/bb-anchor.d.ts +17 -0
  203. package/staging/lib/bounds.d.ts +47 -0
  204. package/staging/lib/camera-shake.d.ts +29 -0
  205. package/staging/lib/caustics.d.ts +53 -0
  206. package/staging/lib/center.d.ts +390 -0
  207. package/staging/lib/contact-shadows.d.ts +55 -0
  208. package/staging/lib/environment.d.ts +132 -0
  209. package/staging/lib/float.d.ts +20 -0
  210. package/staging/lib/lightformer.d.ts +310 -0
  211. package/staging/lib/mask.d.ts +30 -0
  212. package/staging/lib/matcap-texture.d.ts +32 -0
  213. package/staging/lib/normal-texture.d.ts +37 -0
  214. package/staging/lib/randomized-lights.d.ts +54 -0
  215. package/staging/lib/render-texture.d.ts +64 -0
  216. package/staging/lib/sky.d.ts +32 -0
  217. package/staging/lib/spot-light.d.ts +119 -0
  218. package/staging/lib/stage.d.ts +352 -0
  219. package/stats/README.md +3 -0
  220. package/stats/index.d.ts +1 -0
  221. package/stats/lib/stats.d.ts +14 -0
  222. package/vanilla-exports/README.md +3 -0
  223. package/vanilla-exports/index.d.ts +27 -0
  224. package/web-types.json +1 -1
  225. package/abstractions/billboard/billboard.d.ts +0 -28
  226. package/abstractions/detailed/detailed.d.ts +0 -26
  227. package/abstractions/edges/edges.d.ts +0 -34
  228. package/abstractions/grid/grid.d.ts +0 -50
  229. package/abstractions/text/text.d.ts +0 -82
  230. package/abstractions/text-3d/text-3d.d.ts +0 -81
  231. package/assets/distort.vert.glsl +0 -1
  232. package/cameras/camera/camera-content.d.ts +0 -13
  233. package/cameras/camera/camera.d.ts +0 -26
  234. package/cameras/cube-camera/cube-camera.d.ts +0 -69
  235. package/cameras/orthographic-camera/orthographic-camera.d.ts +0 -37
  236. package/cameras/perspective-camera/perspective-camera.d.ts +0 -18
  237. package/controls/orbit-controls/orbit-controls.d.ts +0 -54
  238. package/esm2022/abstractions/billboard/billboard.mjs +0 -74
  239. package/esm2022/abstractions/detailed/detailed.mjs +0 -64
  240. package/esm2022/abstractions/edges/edges.mjs +0 -88
  241. package/esm2022/abstractions/grid/grid.mjs +0 -180
  242. package/esm2022/abstractions/text/text.mjs +0 -274
  243. package/esm2022/abstractions/text-3d/text-3d.mjs +0 -165
  244. package/esm2022/cameras/camera/camera-content.mjs +0 -20
  245. package/esm2022/cameras/camera/camera.mjs +0 -77
  246. package/esm2022/cameras/cube-camera/cube-camera.mjs +0 -161
  247. package/esm2022/cameras/orthographic-camera/orthographic-camera.mjs +0 -102
  248. package/esm2022/cameras/perspective-camera/perspective-camera.mjs +0 -46
  249. package/esm2022/controls/orbit-controls/orbit-controls.mjs +0 -181
  250. package/esm2022/loaders/gltf-loader/gltf-loader.mjs +0 -30
  251. package/esm2022/loaders/loader/loader.mjs +0 -138
  252. package/esm2022/loaders/progress/progress.mjs +0 -45
  253. package/esm2022/loaders/texture-loader/texture-loader.mjs +0 -28
  254. package/esm2022/materials/mesh-distort-material/mesh-distort-material.mjs +0 -82
  255. package/esm2022/materials/mesh-reflector-material/mesh-reflector-material.mjs +0 -367
  256. package/esm2022/materials/mesh-refraction-material/mesh-refraction-material.mjs +0 -171
  257. package/esm2022/materials/mesh-transmission-material/mesh-transmission-material.mjs +0 -278
  258. package/esm2022/materials/mesh-wobble-material/mesh-wobble-material.mjs +0 -68
  259. package/esm2022/materials/point-material/point-material.mjs +0 -46
  260. package/esm2022/misc/animations/animations.mjs +0 -59
  261. package/esm2022/misc/bake-shadows/bake-shadows.mjs +0 -24
  262. package/esm2022/misc/caustics/caustics.mjs +0 -387
  263. package/esm2022/misc/decal/decal.mjs +0 -187
  264. package/esm2022/misc/depth-buffer/depth-buffer.mjs +0 -44
  265. package/esm2022/misc/example/example.mjs +0 -160
  266. package/esm2022/misc/fbo/fbo.mjs +0 -47
  267. package/esm2022/misc/html/html-wrapper.mjs +0 -478
  268. package/esm2022/misc/html/html.mjs +0 -304
  269. package/esm2022/misc/sampler/sampler.mjs +0 -142
  270. package/esm2022/misc/shadow/shadow.mjs +0 -111
  271. package/esm2022/misc/stats-gl/stats-gl.mjs +0 -61
  272. package/esm2022/misc/trail/trail.mjs +0 -209
  273. package/esm2022/misc/trail-texture/inject-trail-texture.mjs +0 -17
  274. package/esm2022/misc/trail-texture/trail-texture.mjs +0 -106
  275. package/esm2022/modifiers/angular-three-soba-modifiers.mjs +0 -5
  276. package/esm2022/modifiers/curve-modifier/curve-modifier.mjs +0 -64
  277. package/esm2022/modifiers/index.mjs +0 -2
  278. package/esm2022/performances/adaptive-dpr/adaptive-dpr.mjs +0 -44
  279. package/esm2022/performances/adaptive-events/adaptive-events.mjs +0 -27
  280. package/esm2022/performances/points/points-input.mjs +0 -64
  281. package/esm2022/performances/points/points.mjs +0 -329
  282. package/esm2022/performances/points/position-point.mjs +0 -54
  283. package/esm2022/performances/segments/segment-object.mjs +0 -9
  284. package/esm2022/performances/segments/segments.mjs +0 -182
  285. package/esm2022/shaders/blur-pass/blur-pass.mjs +0 -61
  286. package/esm2022/shaders/caustics/caustics-material.mjs +0 -130
  287. package/esm2022/shaders/caustics/caustics-projection-material.mjs +0 -31
  288. package/esm2022/shaders/convolution-material/convolution-material.mjs +0 -94
  289. package/esm2022/shaders/discard-material/discard-material.mjs +0 -3
  290. package/esm2022/shaders/grid-material/grid-material.mjs +0 -77
  291. package/esm2022/shaders/mesh-distort-material/mesh-distort-material.mjs +0 -56
  292. package/esm2022/shaders/mesh-reflector-material/mesh-reflector-material.mjs +0 -223
  293. package/esm2022/shaders/mesh-refraction-material/mesh-refraction-material.mjs +0 -170
  294. package/esm2022/shaders/mesh-transmission-material/mesh-transmission-material.mjs +0 -268
  295. package/esm2022/shaders/mesh-wobble-material/mesh-wobble-material.mjs +0 -37
  296. package/esm2022/shaders/shader-material/shader-material.mjs +0 -34
  297. package/esm2022/shaders/soft-shadow-material/soft-shadow-material.mjs +0 -25
  298. package/esm2022/shaders/sparkles-material/sparkles-material.mjs +0 -33
  299. package/esm2022/shaders/spot-light-material/spot-light-material.mjs +0 -86
  300. package/esm2022/shaders/star-field-material/star-field-material.mjs +0 -33
  301. package/esm2022/shaders/wireframe-material/wireframe-material.mjs +0 -247
  302. package/esm2022/staging/accumulative-shadows/accumulative-shadows.mjs +0 -267
  303. package/esm2022/staging/accumulative-shadows/progressive-light-map.mjs +0 -108
  304. package/esm2022/staging/accumulative-shadows/randomized-lights.mjs +0 -206
  305. package/esm2022/staging/backdrop/backdrop.mjs +0 -77
  306. package/esm2022/staging/bb-anchor/bb-anchor.mjs +0 -70
  307. package/esm2022/staging/bounds/bounds.mjs +0 -308
  308. package/esm2022/staging/camera-shake/camera-shake.mjs +0 -123
  309. package/esm2022/staging/center/center.mjs +0 -163
  310. package/esm2022/staging/cloud/cloud.mjs +0 -158
  311. package/esm2022/staging/contact-shadows/contact-shadows.mjs +0 -246
  312. package/esm2022/staging/environment/assets.mjs +0 -13
  313. package/esm2022/staging/environment/environment-cube.mjs +0 -47
  314. package/esm2022/staging/environment/environment-ground.mjs +0 -41
  315. package/esm2022/staging/environment/environment-input.mjs +0 -119
  316. package/esm2022/staging/environment/environment-map.mjs +0 -53
  317. package/esm2022/staging/environment/environment-portal.mjs +0 -113
  318. package/esm2022/staging/environment/environment.mjs +0 -61
  319. package/esm2022/staging/environment/utils.mjs +0 -105
  320. package/esm2022/staging/float/float.mjs +0 -94
  321. package/esm2022/staging/matcap-texture/matcap-texture.mjs +0 -64
  322. package/esm2022/staging/normal-texture/normal-texture.mjs +0 -53
  323. package/esm2022/staging/sky/sky.mjs +0 -119
  324. package/esm2022/staging/sparkles/sparkles.mjs +0 -164
  325. package/esm2022/staging/spot-light/shadow-mesh-input.mjs +0 -63
  326. package/esm2022/staging/spot-light/shadow-mesh.mjs +0 -266
  327. package/esm2022/staging/spot-light/spot-light-input.mjs +0 -84
  328. package/esm2022/staging/spot-light/spot-light.mjs +0 -81
  329. package/esm2022/staging/spot-light/volumetric-mesh.mjs +0 -98
  330. package/esm2022/staging/stage/stage.mjs +0 -388
  331. package/esm2022/staging/stars/stars.mjs +0 -147
  332. package/esm2022/staging/wireframe/wireframe-input.mjs +0 -191
  333. package/esm2022/staging/wireframe/wireframe.mjs +0 -224
  334. package/esm2022/utils/content/content.mjs +0 -15
  335. package/esm2022/utils/index.mjs +0 -2
  336. package/fesm2022/angular-three-soba-modifiers.mjs +0 -71
  337. package/fesm2022/angular-three-soba-modifiers.mjs.map +0 -1
  338. package/fesm2022/angular-three-soba-utils.mjs +0 -22
  339. package/fesm2022/angular-three-soba-utils.mjs.map +0 -1
  340. package/loaders/gltf-loader/gltf-loader.d.ts +0 -10
  341. package/loaders/loader/loader.d.ts +0 -33
  342. package/loaders/progress/progress.d.ts +0 -9
  343. package/loaders/texture-loader/texture-loader.d.ts +0 -7
  344. package/materials/mesh-distort-material/mesh-distort-material.d.ts +0 -40
  345. package/materials/mesh-reflector-material/mesh-reflector-material.d.ts +0 -99
  346. package/materials/mesh-refraction-material/mesh-refraction-material.d.ts +0 -62
  347. package/materials/mesh-transmission-material/mesh-transmission-material.d.ts +0 -107
  348. package/materials/mesh-wobble-material/mesh-wobble-material.d.ts +0 -29
  349. package/materials/point-material/point-material.d.ts +0 -24
  350. package/misc/animations/animations.d.ts +0 -15
  351. package/misc/caustics/caustics.d.ts +0 -87
  352. package/misc/decal/decal.d.ts +0 -49
  353. package/misc/depth-buffer/depth-buffer.d.ts +0 -9
  354. package/misc/example/example.d.ts +0 -81
  355. package/misc/fbo/fbo.d.ts +0 -17
  356. package/misc/html/html-wrapper.d.ts +0 -559
  357. package/misc/html/html.d.ts +0 -214
  358. package/misc/sampler/sampler.d.ts +0 -67
  359. package/misc/shadow/shadow.d.ts +0 -37
  360. package/misc/stats-gl/stats-gl.d.ts +0 -24
  361. package/misc/trail/trail.d.ts +0 -57
  362. package/misc/trail-texture/inject-trail-texture.d.ts +0 -9
  363. package/misc/trail-texture/trail-texture.d.ts +0 -50
  364. package/modifiers/README.md +0 -3
  365. package/modifiers/curve-modifier/curve-modifier.d.ts +0 -23
  366. package/modifiers/index.d.ts +0 -1
  367. package/performances/adaptive-dpr/adaptive-dpr.d.ts +0 -14
  368. package/performances/points/points-input.d.ts +0 -32
  369. package/performances/points/points.d.ts +0 -92
  370. package/performances/points/position-point.d.ts +0 -11
  371. package/performances/segments/segment-object.d.ts +0 -7
  372. package/performances/segments/segments.d.ts +0 -124
  373. package/shaders/blur-pass/blur-pass.d.ts +0 -23
  374. package/shaders/caustics/caustics-material.d.ts +0 -4
  375. package/shaders/caustics/caustics-projection-material.d.ts +0 -4
  376. package/shaders/convolution-material/convolution-material.d.ts +0 -7
  377. package/shaders/discard-material/discard-material.d.ts +0 -3
  378. package/shaders/grid-material/grid-material.d.ts +0 -37
  379. package/shaders/mesh-distort-material/mesh-distort-material.d.ts +0 -295
  380. package/shaders/mesh-reflector-material/mesh-reflector-material.d.ts +0 -50
  381. package/shaders/mesh-refraction-material/mesh-refraction-material.d.ts +0 -4
  382. package/shaders/mesh-transmission-material/mesh-transmission-material.d.ts +0 -25
  383. package/shaders/mesh-wobble-material/mesh-wobble-material.d.ts +0 -16
  384. package/shaders/shader-material/shader-material.d.ts +0 -6
  385. package/shaders/soft-shadow-material/soft-shadow-material.d.ts +0 -19
  386. package/shaders/sparkles-material/sparkles-material.d.ts +0 -17
  387. package/shaders/spot-light-material/spot-light-material.d.ts +0 -13
  388. package/shaders/star-field-material/star-field-material.d.ts +0 -13
  389. package/shaders/wireframe-material/wireframe-material.d.ts +0 -58
  390. package/staging/accumulative-shadows/accumulative-shadows.d.ts +0 -146
  391. package/staging/accumulative-shadows/progressive-light-map.d.ts +0 -34
  392. package/staging/accumulative-shadows/randomized-lights.d.ts +0 -90
  393. package/staging/backdrop/backdrop.d.ts +0 -30
  394. package/staging/bb-anchor/bb-anchor.d.ts +0 -27
  395. package/staging/bounds/bounds.d.ts +0 -134
  396. package/staging/camera-shake/camera-shake.d.ts +0 -43
  397. package/staging/center/center.d.ts +0 -70
  398. package/staging/cloud/cloud.d.ts +0 -51
  399. package/staging/contact-shadows/contact-shadows.d.ts +0 -70
  400. package/staging/environment/assets.d.ts +0 -13
  401. package/staging/environment/environment-cube.d.ts +0 -15
  402. package/staging/environment/environment-ground.d.ts +0 -13
  403. package/staging/environment/environment-input.d.ts +0 -68
  404. package/staging/environment/environment-map.d.ts +0 -16
  405. package/staging/environment/environment-portal.d.ts +0 -18
  406. package/staging/environment/environment.d.ts +0 -8
  407. package/staging/environment/utils.d.ts +0 -7
  408. package/staging/float/float.d.ts +0 -31
  409. package/staging/matcap-texture/matcap-texture.d.ts +0 -13
  410. package/staging/normal-texture/normal-texture.d.ts +0 -16
  411. package/staging/sky/sky.d.ts +0 -48
  412. package/staging/sparkles/sparkles.d.ts +0 -63
  413. package/staging/spot-light/shadow-mesh-input.d.ts +0 -29
  414. package/staging/spot-light/shadow-mesh.d.ts +0 -37
  415. package/staging/spot-light/spot-light-input.d.ts +0 -38
  416. package/staging/spot-light/spot-light.d.ts +0 -39
  417. package/staging/spot-light/volumetric-mesh.d.ts +0 -24
  418. package/staging/stage/stage.d.ts +0 -130
  419. package/staging/stars/stars.d.ts +0 -45
  420. package/staging/wireframe/wireframe-input.d.ts +0 -65
  421. package/staging/wireframe/wireframe.d.ts +0 -28
  422. package/utils/README.md +0 -3
  423. package/utils/content/content.d.ts +0 -8
  424. package/utils/index.d.ts +0 -1
  425. /package/misc/{bake-shadows → lib}/bake-shadows.d.ts +0 -0
@@ -1,81 +0,0 @@
1
- import { Group } from 'three';
2
- import * as i0 from "@angular/core";
3
- /**
4
- * define states of a component. usually acts for inputs signalStore
5
- */
6
- export type NgtsExampleState = {
7
- font: string;
8
- color: THREE.ColorRepresentation;
9
- debug: boolean;
10
- bevelSize: number;
11
- };
12
- /**
13
- * We can setup public API for this soba component with createInjectionToken + forwardRef
14
- * the `example.api` is **usually** a computed property in the component class
15
- *
16
- * @see Bounds for example
17
- */
18
- export declare const injectNgtsExampleApi: {
19
- (): import("@angular/core").Signal<{
20
- bevelSize: number;
21
- increment: () => void;
22
- decrement: () => void;
23
- }>;
24
- (injectOptions: import("@angular/core").InjectOptions & {
25
- optional?: false | undefined;
26
- }): import("@angular/core").Signal<{
27
- bevelSize: number;
28
- increment: () => void;
29
- decrement: () => void;
30
- }>;
31
- (injectOptions: import("@angular/core").InjectOptions): import("@angular/core").Signal<{
32
- bevelSize: number;
33
- increment: () => void;
34
- decrement: () => void;
35
- }> | null;
36
- }, provideNgtsExampleApi: (value?: import("@angular/core").Signal<{
37
- bevelSize: number;
38
- increment: () => void;
39
- decrement: () => void;
40
- }> | undefined) => import("@angular/core").Provider;
41
- export declare class NgtsExample {
42
- /**
43
- * use signalStore to store inputs with default inputs
44
- */
45
- private inputs;
46
- /**
47
- * a soba component usually has a Input for the component ref and this Input always has a default value with injectNgtRef
48
- */
49
- exampleRef: import("angular-three").NgtInjectedRef<Group>;
50
- /**
51
- * setup Input for the Inputs state. Use alias to have an easier time to setup computed
52
- *
53
- * @example: this way "private font" and "set _font" won't conflict
54
- * private font = this.inputs.select('font');
55
- */
56
- set _font(font: string);
57
- set _color(color: THREE.ColorRepresentation);
58
- set _debug(debug: boolean);
59
- set _bevelSize(bevelSize: number);
60
- /**
61
- * exposes signals from inputs
62
- */
63
- bevelSize: import("@angular/core").Signal<number>;
64
- font: import("@angular/core").Signal<string>;
65
- debug: import("@angular/core").Signal<boolean>;
66
- color: import("@angular/core").Signal<import("three").ColorRepresentation>;
67
- /**
68
- * can have internal state
69
- */
70
- count: import("@angular/core").WritableSignal<number>;
71
- /**
72
- * Expose the public API for this soba component
73
- */
74
- api: import("@angular/core").Signal<{
75
- bevelSize: number;
76
- increment: () => void;
77
- decrement: () => void;
78
- }>;
79
- static ɵfac: i0.ɵɵFactoryDeclaration<NgtsExample, never>;
80
- static ɵcmp: i0.ɵɵComponentDeclaration<NgtsExample, "ngts-example", never, { "exampleRef": { "alias": "exampleRef"; "required": false; }; "_font": { "alias": "font"; "required": true; }; "_color": { "alias": "color"; "required": false; }; "_debug": { "alias": "debug"; "required": false; }; "_bevelSize": { "alias": "bevelSize"; "required": false; }; }, {}, never, ["*"], true, never>;
81
- }
package/misc/fbo/fbo.d.ts DELETED
@@ -1,17 +0,0 @@
1
- import { type Injector } from '@angular/core';
2
- import * as THREE from 'three';
3
- interface FBOSettings extends THREE.WebGLRenderTargetOptions {
4
- /** Defines the count of MSAA samples. Can only be used with WebGL 2. Default: 0 */
5
- samples?: number;
6
- /** If set, the scene depth will be rendered into buffer.depthTexture. Default: false */
7
- depth?: boolean;
8
- }
9
- export interface NgtsFBOParams {
10
- width?: number | FBOSettings;
11
- height?: number;
12
- settings?: FBOSettings;
13
- }
14
- export declare function injectNgtsFBO(fboParams: () => NgtsFBOParams, { injector }?: {
15
- injector?: Injector;
16
- }): import("angular-three").NgtInjectedRef<THREE.WebGLRenderTarget<THREE.Texture> | null>;
17
- export {};
@@ -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
- }