angular-three 0.0.7 → 1.0.0-beta.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 (441) hide show
  1. package/esm2020/angular-three.mjs +1 -1
  2. package/esm2020/index.mjs +2 -35
  3. package/esm2020/lib/canvas.mjs +141 -128
  4. package/esm2020/lib/di/catalogue.mjs +7 -0
  5. package/esm2020/lib/directives/args.mjs +37 -17
  6. package/esm2020/lib/directives/repeat.mjs +5 -8
  7. package/esm2020/lib/events.mjs +341 -52
  8. package/esm2020/lib/loader.mjs +55 -0
  9. package/esm2020/lib/loop.mjs +137 -0
  10. package/esm2020/lib/renderer/di.mjs +3 -0
  11. package/esm2020/lib/renderer/enums.mjs +2 -0
  12. package/esm2020/lib/renderer/provider.mjs +19 -0
  13. package/esm2020/lib/renderer/renderer.mjs +293 -0
  14. package/esm2020/lib/renderer/state.mjs +350 -0
  15. package/esm2020/lib/renderer/utils.mjs +177 -0
  16. package/esm2020/lib/stores/rx-store.mjs +99 -0
  17. package/esm2020/lib/stores/store.mjs +190 -239
  18. package/esm2020/lib/types.mjs +1 -1
  19. package/esm2020/lib/utils/apply-props.mjs +37 -80
  20. package/esm2020/lib/utils/attach.mjs +29 -0
  21. package/esm2020/lib/utils/instance.mjs +43 -28
  22. package/esm2020/lib/utils/is.mjs +7 -11
  23. package/esm2020/lib/utils/make.mjs +30 -10
  24. package/esm2020/lib/utils/update.mjs +37 -0
  25. package/esm2020/lib/web/events.mjs +68 -0
  26. package/fesm2015/angular-three.mjs +2053 -2046
  27. package/fesm2015/angular-three.mjs.map +1 -1
  28. package/fesm2020/angular-three.mjs +2003 -1990
  29. package/fesm2020/angular-three.mjs.map +1 -1
  30. package/index.d.ts +1 -34
  31. package/lib/canvas.d.ts +29 -28
  32. package/lib/di/catalogue.d.ts +3 -0
  33. package/lib/directives/args.d.ts +8 -12
  34. package/lib/events.d.ts +7 -2
  35. package/lib/loader.d.ts +15 -0
  36. package/lib/{utils/loop.d.ts → loop.d.ts} +7 -6
  37. package/lib/renderer/di.d.ts +2 -0
  38. package/lib/renderer/enums.d.ts +25 -0
  39. package/lib/renderer/provider.d.ts +25 -0
  40. package/lib/renderer/renderer.d.ts +49 -0
  41. package/lib/renderer/state.d.ts +59 -0
  42. package/lib/renderer/utils.d.ts +20 -0
  43. package/lib/stores/rx-store.d.ts +17 -0
  44. package/lib/stores/store.d.ts +6 -23
  45. package/lib/types.d.ts +182 -191
  46. package/lib/utils/apply-props.d.ts +2 -6
  47. package/lib/utils/attach.d.ts +3 -0
  48. package/lib/utils/instance.d.ts +3 -3
  49. package/lib/utils/is.d.ts +6 -10
  50. package/lib/utils/make.d.ts +5 -2
  51. package/lib/utils/update.d.ts +4 -0
  52. package/lib/web/events.d.ts +4 -0
  53. package/package.json +30 -99
  54. package/attributes/README.md +0 -3
  55. package/attributes/index.d.ts +0 -22
  56. package/attributes/lib/buffer-attribute/buffer-attribute.d.ts +0 -8
  57. package/attributes/lib/color-attribute/color-attribute.d.ts +0 -8
  58. package/attributes/lib/common.d.ts +0 -1
  59. package/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.d.ts +0 -8
  60. package/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.d.ts +0 -8
  61. package/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.d.ts +0 -8
  62. package/attributes/lib/fog-attribute/fog-attribute.d.ts +0 -8
  63. package/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.d.ts +0 -8
  64. package/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.d.ts +0 -8
  65. package/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.d.ts +0 -8
  66. package/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.d.ts +0 -8
  67. package/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.d.ts +0 -8
  68. package/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.d.ts +0 -8
  69. package/attributes/lib/matrix3-attribute/matrix3-attribute.d.ts +0 -8
  70. package/attributes/lib/matrix4-attribute/matrix4-attribute.d.ts +0 -8
  71. package/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.d.ts +0 -8
  72. package/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.d.ts +0 -8
  73. package/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.d.ts +0 -8
  74. package/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.d.ts +0 -8
  75. package/attributes/lib/value-attribute/value-attribute.d.ts +0 -8
  76. package/attributes/lib/vector2-attribute/vector2-attribute.d.ts +0 -8
  77. package/attributes/lib/vector3-attribute/vector3-attribute.d.ts +0 -8
  78. package/attributes/lib/vector4-attribute/vector4-attribute.d.ts +0 -8
  79. package/audios/README.md +0 -3
  80. package/audios/index.d.ts +0 -3
  81. package/audios/lib/audio/audio.d.ts +0 -49
  82. package/audios/lib/audio-listener/audio-listener.d.ts +0 -35
  83. package/audios/lib/common.d.ts +0 -3
  84. package/audios/lib/positional-audio/positional-audio.d.ts +0 -49
  85. package/cameras/README.md +0 -3
  86. package/cameras/index.d.ts +0 -5
  87. package/cameras/lib/array-camera/array-camera.d.ts +0 -56
  88. package/cameras/lib/common.d.ts +0 -3
  89. package/cameras/lib/cube-camera/cube-camera.d.ts +0 -36
  90. package/cameras/lib/orthographic-camera/orthographic-camera.d.ts +0 -54
  91. package/cameras/lib/perspective-camera/perspective-camera.d.ts +0 -55
  92. package/cameras/lib/stereo-camera/stereo-camera.d.ts +0 -42
  93. package/esm2020/attributes/angular-three-attributes.mjs +0 -5
  94. package/esm2020/attributes/index.mjs +0 -24
  95. package/esm2020/attributes/lib/buffer-attribute/buffer-attribute.mjs +0 -26
  96. package/esm2020/attributes/lib/color-attribute/color-attribute.mjs +0 -26
  97. package/esm2020/attributes/lib/common.mjs +0 -13
  98. package/esm2020/attributes/lib/float16-buffer-attribute/float16-buffer-attribute.mjs +0 -26
  99. package/esm2020/attributes/lib/float32-buffer-attribute/float32-buffer-attribute.mjs +0 -26
  100. package/esm2020/attributes/lib/float64-buffer-attribute/float64-buffer-attribute.mjs +0 -26
  101. package/esm2020/attributes/lib/fog-attribute/fog-attribute.mjs +0 -26
  102. package/esm2020/attributes/lib/fog-exp2-attribute/fog-exp2-attribute.mjs +0 -26
  103. package/esm2020/attributes/lib/instanced-buffer-attribute/instanced-buffer-attribute.mjs +0 -26
  104. package/esm2020/attributes/lib/int16-buffer-attribute/int16-buffer-attribute.mjs +0 -26
  105. package/esm2020/attributes/lib/int32-buffer-attribute/int32-buffer-attribute.mjs +0 -26
  106. package/esm2020/attributes/lib/int8-buffer-attribute/int8-buffer-attribute.mjs +0 -26
  107. package/esm2020/attributes/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.mjs +0 -30
  108. package/esm2020/attributes/lib/matrix3-attribute/matrix3-attribute.mjs +0 -26
  109. package/esm2020/attributes/lib/matrix4-attribute/matrix4-attribute.mjs +0 -26
  110. package/esm2020/attributes/lib/uint16-buffer-attribute/uint16-buffer-attribute.mjs +0 -26
  111. package/esm2020/attributes/lib/uint32-buffer-attribute/uint32-buffer-attribute.mjs +0 -26
  112. package/esm2020/attributes/lib/uint8-buffer-attribute/uint8-buffer-attribute.mjs +0 -26
  113. package/esm2020/attributes/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.mjs +0 -26
  114. package/esm2020/attributes/lib/value-attribute/value-attribute.mjs +0 -28
  115. package/esm2020/attributes/lib/vector2-attribute/vector2-attribute.mjs +0 -26
  116. package/esm2020/attributes/lib/vector3-attribute/vector3-attribute.mjs +0 -26
  117. package/esm2020/attributes/lib/vector4-attribute/vector4-attribute.mjs +0 -26
  118. package/esm2020/audios/angular-three-audios.mjs +0 -5
  119. package/esm2020/audios/index.mjs +0 -5
  120. package/esm2020/audios/lib/audio/audio.mjs +0 -45
  121. package/esm2020/audios/lib/audio-listener/audio-listener.mjs +0 -38
  122. package/esm2020/audios/lib/common.mjs +0 -54
  123. package/esm2020/audios/lib/positional-audio/positional-audio.mjs +0 -45
  124. package/esm2020/cameras/angular-three-cameras.mjs +0 -5
  125. package/esm2020/cameras/index.mjs +0 -7
  126. package/esm2020/cameras/lib/array-camera/array-camera.mjs +0 -44
  127. package/esm2020/cameras/lib/common.mjs +0 -54
  128. package/esm2020/cameras/lib/cube-camera/cube-camera.mjs +0 -30
  129. package/esm2020/cameras/lib/orthographic-camera/orthographic-camera.mjs +0 -42
  130. package/esm2020/cameras/lib/perspective-camera/perspective-camera.mjs +0 -43
  131. package/esm2020/cameras/lib/stereo-camera/stereo-camera.mjs +0 -38
  132. package/esm2020/geometries/angular-three-geometries.mjs +0 -5
  133. package/esm2020/geometries/index.mjs +0 -25
  134. package/esm2020/geometries/lib/box-geometry/box-geometry.mjs +0 -26
  135. package/esm2020/geometries/lib/buffer-geometry/buffer-geometry.mjs +0 -26
  136. package/esm2020/geometries/lib/capsule-geometry/capsule-geometry.mjs +0 -26
  137. package/esm2020/geometries/lib/circle-geometry/circle-geometry.mjs +0 -26
  138. package/esm2020/geometries/lib/common.mjs +0 -13
  139. package/esm2020/geometries/lib/cone-geometry/cone-geometry.mjs +0 -26
  140. package/esm2020/geometries/lib/cylinder-geometry/cylinder-geometry.mjs +0 -26
  141. package/esm2020/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.mjs +0 -26
  142. package/esm2020/geometries/lib/edges-geometry/edges-geometry.mjs +0 -26
  143. package/esm2020/geometries/lib/extrude-geometry/extrude-geometry.mjs +0 -26
  144. package/esm2020/geometries/lib/icosahedron-geometry/icosahedron-geometry.mjs +0 -26
  145. package/esm2020/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.mjs +0 -26
  146. package/esm2020/geometries/lib/lathe-geometry/lathe-geometry.mjs +0 -26
  147. package/esm2020/geometries/lib/octahedron-geometry/octahedron-geometry.mjs +0 -26
  148. package/esm2020/geometries/lib/plane-geometry/plane-geometry.mjs +0 -26
  149. package/esm2020/geometries/lib/polyhedron-geometry/polyhedron-geometry.mjs +0 -26
  150. package/esm2020/geometries/lib/ring-geometry/ring-geometry.mjs +0 -26
  151. package/esm2020/geometries/lib/shape-geometry/shape-geometry.mjs +0 -26
  152. package/esm2020/geometries/lib/sphere-geometry/sphere-geometry.mjs +0 -26
  153. package/esm2020/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.mjs +0 -26
  154. package/esm2020/geometries/lib/torus-geometry/torus-geometry.mjs +0 -26
  155. package/esm2020/geometries/lib/torus-knot-geometry/torus-knot-geometry.mjs +0 -26
  156. package/esm2020/geometries/lib/tube-geometry/tube-geometry.mjs +0 -26
  157. package/esm2020/geometries/lib/wireframe-geometry/wireframe-geometry.mjs +0 -26
  158. package/esm2020/helpers/angular-three-helpers.mjs +0 -5
  159. package/esm2020/helpers/index.mjs +0 -15
  160. package/esm2020/helpers/lib/arrow-helper/arrow-helper.mjs +0 -26
  161. package/esm2020/helpers/lib/axes-helper/axes-helper.mjs +0 -26
  162. package/esm2020/helpers/lib/box-helper/box-helper.mjs +0 -36
  163. package/esm2020/helpers/lib/box3-helper/box3-helper.mjs +0 -36
  164. package/esm2020/helpers/lib/camera-helper/camera-helper.mjs +0 -36
  165. package/esm2020/helpers/lib/common.mjs +0 -13
  166. package/esm2020/helpers/lib/directional-light-helper/directional-light-helper.mjs +0 -36
  167. package/esm2020/helpers/lib/grid-helper/grid-helper.mjs +0 -26
  168. package/esm2020/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.mjs +0 -36
  169. package/esm2020/helpers/lib/plane-helper/plane-helper.mjs +0 -36
  170. package/esm2020/helpers/lib/point-light-helper/point-light-helper.mjs +0 -36
  171. package/esm2020/helpers/lib/polar-grid-helper/polar-grid-helper.mjs +0 -26
  172. package/esm2020/helpers/lib/skeleton-helper/skeleton-helper.mjs +0 -36
  173. package/esm2020/helpers/lib/spot-light-helper/spot-light-helper.mjs +0 -36
  174. package/esm2020/lib/di/resize.mjs +0 -19
  175. package/esm2020/lib/di/window.mjs +0 -13
  176. package/esm2020/lib/directives/cursor.mjs +0 -35
  177. package/esm2020/lib/instance.mjs +0 -368
  178. package/esm2020/lib/pipes/math.mjs +0 -15
  179. package/esm2020/lib/pipes/pi.mjs +0 -14
  180. package/esm2020/lib/pipes/radian.mjs +0 -14
  181. package/esm2020/lib/pipes/side.mjs +0 -22
  182. package/esm2020/lib/ref.mjs +0 -15
  183. package/esm2020/lib/services/loader.mjs +0 -45
  184. package/esm2020/lib/services/resize.mjs +0 -127
  185. package/esm2020/lib/stores/component-store.mjs +0 -137
  186. package/esm2020/lib/utils/build-graph.mjs +0 -15
  187. package/esm2020/lib/utils/camera.mjs +0 -28
  188. package/esm2020/lib/utils/capitalize.mjs +0 -4
  189. package/esm2020/lib/utils/check-update.mjs +0 -22
  190. package/esm2020/lib/utils/events.mjs +0 -353
  191. package/esm2020/lib/utils/get-instance-local-state.mjs +0 -6
  192. package/esm2020/lib/utils/inject.mjs +0 -18
  193. package/esm2020/lib/utils/loop.mjs +0 -139
  194. package/esm2020/lib/utils/mutate.mjs +0 -24
  195. package/esm2020/lib/utils/proxy.mjs +0 -99
  196. package/esm2020/lib/utils/renderer.mjs +0 -15
  197. package/esm2020/lights/angular-three-lights.mjs +0 -5
  198. package/esm2020/lights/index.mjs +0 -11
  199. package/esm2020/lights/lib/ambient-light/ambient-light.mjs +0 -30
  200. package/esm2020/lights/lib/ambient-light-probe/ambient-light-probe.mjs +0 -30
  201. package/esm2020/lights/lib/common.mjs +0 -54
  202. package/esm2020/lights/lib/directional-light/directional-light.mjs +0 -30
  203. package/esm2020/lights/lib/hemisphere-light/hemisphere-light.mjs +0 -30
  204. package/esm2020/lights/lib/hemisphere-light-probe/hemisphere-light-probe.mjs +0 -30
  205. package/esm2020/lights/lib/light-probe/light-probe.mjs +0 -30
  206. package/esm2020/lights/lib/point-light/point-light.mjs +0 -30
  207. package/esm2020/lights/lib/rect-area-light/rect-area-light.mjs +0 -30
  208. package/esm2020/lights/lib/spot-light/spot-light.mjs +0 -42
  209. package/esm2020/materials/angular-three-materials.mjs +0 -5
  210. package/esm2020/materials/index.mjs +0 -19
  211. package/esm2020/materials/lib/common.mjs +0 -13
  212. package/esm2020/materials/lib/line-basic-material/line-basic-material.mjs +0 -77
  213. package/esm2020/materials/lib/line-dashed-material/line-dashed-material.mjs +0 -80
  214. package/esm2020/materials/lib/mesh-basic-material/mesh-basic-material.mjs +0 -89
  215. package/esm2020/materials/lib/mesh-depth-material/mesh-depth-material.mjs +0 -80
  216. package/esm2020/materials/lib/mesh-distance-material/mesh-distance-material.mjs +0 -80
  217. package/esm2020/materials/lib/mesh-lambert-material/mesh-lambert-material.mjs +0 -100
  218. package/esm2020/materials/lib/mesh-matcap-material/mesh-matcap-material.mjs +0 -86
  219. package/esm2020/materials/lib/mesh-normal-material/mesh-normal-material.mjs +0 -83
  220. package/esm2020/materials/lib/mesh-phong-material/mesh-phong-material.mjs +0 -103
  221. package/esm2020/materials/lib/mesh-physical-material/mesh-physical-material.mjs +0 -119
  222. package/esm2020/materials/lib/mesh-standard-material/mesh-standard-material.mjs +0 -100
  223. package/esm2020/materials/lib/mesh-toon-material/mesh-toon-material.mjs +0 -96
  224. package/esm2020/materials/lib/points-material/points-material.mjs +0 -78
  225. package/esm2020/materials/lib/raw-shader-material/raw-shader-material.mjs +0 -83
  226. package/esm2020/materials/lib/shader-material/shader-material.mjs +0 -83
  227. package/esm2020/materials/lib/shadow-material/shadow-material.mjs +0 -74
  228. package/esm2020/materials/lib/sprite-material/sprite-material.mjs +0 -78
  229. package/esm2020/objects/angular-three-objects.mjs +0 -5
  230. package/esm2020/objects/index.mjs +0 -14
  231. package/esm2020/objects/lib/bone/bone.mjs +0 -27
  232. package/esm2020/objects/lib/common.mjs +0 -54
  233. package/esm2020/objects/lib/group/group.mjs +0 -27
  234. package/esm2020/objects/lib/instanced-mesh/instanced-mesh.mjs +0 -40
  235. package/esm2020/objects/lib/line/line.mjs +0 -30
  236. package/esm2020/objects/lib/line-loop/line-loop.mjs +0 -30
  237. package/esm2020/objects/lib/line-segments/line-segments.mjs +0 -30
  238. package/esm2020/objects/lib/lod/lod.mjs +0 -30
  239. package/esm2020/objects/lib/mesh/mesh.mjs +0 -30
  240. package/esm2020/objects/lib/points/points.mjs +0 -30
  241. package/esm2020/objects/lib/skeleton/skeleton.mjs +0 -41
  242. package/esm2020/objects/lib/skinned-mesh/skinned-mesh.mjs +0 -39
  243. package/esm2020/objects/lib/sprite/sprite.mjs +0 -30
  244. package/esm2020/primitives/angular-three-primitives.mjs +0 -5
  245. package/esm2020/primitives/index.mjs +0 -3
  246. package/esm2020/primitives/lib/common.mjs +0 -54
  247. package/esm2020/primitives/lib/object-primitive/object-primitive.mjs +0 -27
  248. package/esm2020/primitives/lib/primitive/primitive.mjs +0 -38
  249. package/esm2020/stats/angular-three-stats.mjs +0 -5
  250. package/esm2020/stats/index.mjs +0 -2
  251. package/esm2020/stats/lib/stats/stats.mjs +0 -54
  252. package/esm2020/textures/angular-three-textures.mjs +0 -5
  253. package/esm2020/textures/index.mjs +0 -12
  254. package/esm2020/textures/lib/canvas-texture/canvas-texture.mjs +0 -26
  255. package/esm2020/textures/lib/common.mjs +0 -13
  256. package/esm2020/textures/lib/compressed-array-texture/compressed-array-texture.mjs +0 -26
  257. package/esm2020/textures/lib/compressed-texture/compressed-texture.mjs +0 -26
  258. package/esm2020/textures/lib/cube-texture/cube-texture.mjs +0 -26
  259. package/esm2020/textures/lib/data-array-texture/data-array-texture.mjs +0 -26
  260. package/esm2020/textures/lib/data-texture/data-texture.mjs +0 -26
  261. package/esm2020/textures/lib/data3-dtexture/data3-dtexture.mjs +0 -26
  262. package/esm2020/textures/lib/depth-texture/depth-texture.mjs +0 -26
  263. package/esm2020/textures/lib/framebuffer-texture/framebuffer-texture.mjs +0 -26
  264. package/esm2020/textures/lib/video-texture/video-texture.mjs +0 -26
  265. package/fesm2015/angular-three-attributes.mjs +0 -475
  266. package/fesm2015/angular-three-attributes.mjs.map +0 -1
  267. package/fesm2015/angular-three-audios.mjs +0 -179
  268. package/fesm2015/angular-three-audios.mjs.map +0 -1
  269. package/fesm2015/angular-three-cameras.mjs +0 -236
  270. package/fesm2015/angular-three-cameras.mjs.map +0 -1
  271. package/fesm2015/angular-three-geometries.mjs +0 -488
  272. package/fesm2015/angular-three-geometries.mjs.map +0 -1
  273. package/fesm2015/angular-three-helpers.mjs +0 -378
  274. package/fesm2015/angular-three-helpers.mjs.map +0 -1
  275. package/fesm2015/angular-three-lights.mjs +0 -297
  276. package/fesm2015/angular-three-lights.mjs.map +0 -1
  277. package/fesm2015/angular-three-materials.mjs +0 -1415
  278. package/fesm2015/angular-three-materials.mjs.map +0 -1
  279. package/fesm2015/angular-three-objects.mjs +0 -381
  280. package/fesm2015/angular-three-objects.mjs.map +0 -1
  281. package/fesm2015/angular-three-primitives.mjs +0 -120
  282. package/fesm2015/angular-three-primitives.mjs.map +0 -1
  283. package/fesm2015/angular-three-stats.mjs +0 -62
  284. package/fesm2015/angular-three-stats.mjs.map +0 -1
  285. package/fesm2015/angular-three-textures.mjs +0 -228
  286. package/fesm2015/angular-three-textures.mjs.map +0 -1
  287. package/fesm2020/angular-three-attributes.mjs +0 -475
  288. package/fesm2020/angular-three-attributes.mjs.map +0 -1
  289. package/fesm2020/angular-three-audios.mjs +0 -179
  290. package/fesm2020/angular-three-audios.mjs.map +0 -1
  291. package/fesm2020/angular-three-cameras.mjs +0 -236
  292. package/fesm2020/angular-three-cameras.mjs.map +0 -1
  293. package/fesm2020/angular-three-geometries.mjs +0 -488
  294. package/fesm2020/angular-three-geometries.mjs.map +0 -1
  295. package/fesm2020/angular-three-helpers.mjs +0 -378
  296. package/fesm2020/angular-three-helpers.mjs.map +0 -1
  297. package/fesm2020/angular-three-lights.mjs +0 -297
  298. package/fesm2020/angular-three-lights.mjs.map +0 -1
  299. package/fesm2020/angular-three-materials.mjs +0 -1415
  300. package/fesm2020/angular-three-materials.mjs.map +0 -1
  301. package/fesm2020/angular-three-objects.mjs +0 -381
  302. package/fesm2020/angular-three-objects.mjs.map +0 -1
  303. package/fesm2020/angular-three-primitives.mjs +0 -120
  304. package/fesm2020/angular-three-primitives.mjs.map +0 -1
  305. package/fesm2020/angular-three-stats.mjs +0 -62
  306. package/fesm2020/angular-three-stats.mjs.map +0 -1
  307. package/fesm2020/angular-three-textures.mjs +0 -228
  308. package/fesm2020/angular-three-textures.mjs.map +0 -1
  309. package/geometries/README.md +0 -3
  310. package/geometries/index.d.ts +0 -23
  311. package/geometries/lib/box-geometry/box-geometry.d.ts +0 -8
  312. package/geometries/lib/buffer-geometry/buffer-geometry.d.ts +0 -8
  313. package/geometries/lib/capsule-geometry/capsule-geometry.d.ts +0 -8
  314. package/geometries/lib/circle-geometry/circle-geometry.d.ts +0 -8
  315. package/geometries/lib/common.d.ts +0 -1
  316. package/geometries/lib/cone-geometry/cone-geometry.d.ts +0 -8
  317. package/geometries/lib/cylinder-geometry/cylinder-geometry.d.ts +0 -8
  318. package/geometries/lib/dodecahedron-geometry/dodecahedron-geometry.d.ts +0 -8
  319. package/geometries/lib/edges-geometry/edges-geometry.d.ts +0 -8
  320. package/geometries/lib/extrude-geometry/extrude-geometry.d.ts +0 -8
  321. package/geometries/lib/icosahedron-geometry/icosahedron-geometry.d.ts +0 -8
  322. package/geometries/lib/instanced-buffer-geometry/instanced-buffer-geometry.d.ts +0 -8
  323. package/geometries/lib/lathe-geometry/lathe-geometry.d.ts +0 -8
  324. package/geometries/lib/octahedron-geometry/octahedron-geometry.d.ts +0 -8
  325. package/geometries/lib/plane-geometry/plane-geometry.d.ts +0 -8
  326. package/geometries/lib/polyhedron-geometry/polyhedron-geometry.d.ts +0 -8
  327. package/geometries/lib/ring-geometry/ring-geometry.d.ts +0 -8
  328. package/geometries/lib/shape-geometry/shape-geometry.d.ts +0 -8
  329. package/geometries/lib/sphere-geometry/sphere-geometry.d.ts +0 -8
  330. package/geometries/lib/tetrahedron-geometry/tetrahedron-geometry.d.ts +0 -8
  331. package/geometries/lib/torus-geometry/torus-geometry.d.ts +0 -8
  332. package/geometries/lib/torus-knot-geometry/torus-knot-geometry.d.ts +0 -8
  333. package/geometries/lib/tube-geometry/tube-geometry.d.ts +0 -8
  334. package/geometries/lib/wireframe-geometry/wireframe-geometry.d.ts +0 -8
  335. package/helpers/README.md +0 -3
  336. package/helpers/index.d.ts +0 -13
  337. package/helpers/lib/arrow-helper/arrow-helper.d.ts +0 -8
  338. package/helpers/lib/axes-helper/axes-helper.d.ts +0 -8
  339. package/helpers/lib/box-helper/box-helper.d.ts +0 -8
  340. package/helpers/lib/box3-helper/box3-helper.d.ts +0 -8
  341. package/helpers/lib/camera-helper/camera-helper.d.ts +0 -8
  342. package/helpers/lib/common.d.ts +0 -1
  343. package/helpers/lib/directional-light-helper/directional-light-helper.d.ts +0 -8
  344. package/helpers/lib/grid-helper/grid-helper.d.ts +0 -8
  345. package/helpers/lib/hemisphere-light-helper/hemisphere-light-helper.d.ts +0 -8
  346. package/helpers/lib/plane-helper/plane-helper.d.ts +0 -8
  347. package/helpers/lib/point-light-helper/point-light-helper.d.ts +0 -8
  348. package/helpers/lib/polar-grid-helper/polar-grid-helper.d.ts +0 -8
  349. package/helpers/lib/skeleton-helper/skeleton-helper.d.ts +0 -8
  350. package/helpers/lib/spot-light-helper/spot-light-helper.d.ts +0 -8
  351. package/lib/di/resize.d.ts +0 -12
  352. package/lib/di/window.d.ts +0 -1
  353. package/lib/directives/cursor.d.ts +0 -7
  354. package/lib/instance.d.ts +0 -81
  355. package/lib/pipes/math.d.ts +0 -7
  356. package/lib/pipes/pi.d.ts +0 -7
  357. package/lib/pipes/radian.d.ts +0 -7
  358. package/lib/pipes/side.d.ts +0 -8
  359. package/lib/ref.d.ts +0 -5
  360. package/lib/services/loader.d.ts +0 -11
  361. package/lib/services/resize.d.ts +0 -19
  362. package/lib/stores/component-store.d.ts +0 -69
  363. package/lib/utils/build-graph.d.ts +0 -3
  364. package/lib/utils/camera.d.ts +0 -4
  365. package/lib/utils/capitalize.d.ts +0 -1
  366. package/lib/utils/check-update.d.ts +0 -2
  367. package/lib/utils/events.d.ts +0 -6
  368. package/lib/utils/get-instance-local-state.d.ts +0 -2
  369. package/lib/utils/inject.d.ts +0 -9
  370. package/lib/utils/mutate.d.ts +0 -2
  371. package/lib/utils/proxy.d.ts +0 -7
  372. package/lib/utils/renderer.d.ts +0 -3
  373. package/lights/README.md +0 -3
  374. package/lights/index.d.ts +0 -9
  375. package/lights/lib/ambient-light/ambient-light.d.ts +0 -39
  376. package/lights/lib/ambient-light-probe/ambient-light-probe.d.ts +0 -40
  377. package/lights/lib/common.d.ts +0 -3
  378. package/lights/lib/directional-light/directional-light.d.ts +0 -40
  379. package/lights/lib/hemisphere-light/hemisphere-light.d.ts +0 -41
  380. package/lights/lib/hemisphere-light-probe/hemisphere-light-probe.d.ts +0 -42
  381. package/lights/lib/light-probe/light-probe.d.ts +0 -40
  382. package/lights/lib/point-light/point-light.d.ts +0 -42
  383. package/lights/lib/rect-area-light/rect-area-light.d.ts +0 -42
  384. package/lights/lib/spot-light/spot-light.d.ts +0 -45
  385. package/materials/README.md +0 -3
  386. package/materials/index.d.ts +0 -17
  387. package/materials/lib/common.d.ts +0 -1
  388. package/materials/lib/line-basic-material/line-basic-material.d.ts +0 -55
  389. package/materials/lib/line-dashed-material/line-dashed-material.d.ts +0 -58
  390. package/materials/lib/mesh-basic-material/mesh-basic-material.d.ts +0 -67
  391. package/materials/lib/mesh-depth-material/mesh-depth-material.d.ts +0 -58
  392. package/materials/lib/mesh-distance-material/mesh-distance-material.d.ts +0 -58
  393. package/materials/lib/mesh-lambert-material/mesh-lambert-material.d.ts +0 -78
  394. package/materials/lib/mesh-matcap-material/mesh-matcap-material.d.ts +0 -64
  395. package/materials/lib/mesh-normal-material/mesh-normal-material.d.ts +0 -61
  396. package/materials/lib/mesh-phong-material/mesh-phong-material.d.ts +0 -81
  397. package/materials/lib/mesh-physical-material/mesh-physical-material.d.ts +0 -97
  398. package/materials/lib/mesh-standard-material/mesh-standard-material.d.ts +0 -78
  399. package/materials/lib/mesh-toon-material/mesh-toon-material.d.ts +0 -74
  400. package/materials/lib/points-material/points-material.d.ts +0 -56
  401. package/materials/lib/raw-shader-material/raw-shader-material.d.ts +0 -68
  402. package/materials/lib/shader-material/shader-material.d.ts +0 -68
  403. package/materials/lib/shadow-material/shadow-material.d.ts +0 -52
  404. package/materials/lib/sprite-material/sprite-material.d.ts +0 -56
  405. package/objects/README.md +0 -3
  406. package/objects/index.d.ts +0 -12
  407. package/objects/lib/bone/bone.d.ts +0 -35
  408. package/objects/lib/common.d.ts +0 -3
  409. package/objects/lib/group/group.d.ts +0 -35
  410. package/objects/lib/instanced-mesh/instanced-mesh.d.ts +0 -44
  411. package/objects/lib/line/line.d.ts +0 -41
  412. package/objects/lib/line-loop/line-loop.d.ts +0 -41
  413. package/objects/lib/line-segments/line-segments.d.ts +0 -41
  414. package/objects/lib/lod/lod.d.ts +0 -40
  415. package/objects/lib/mesh/mesh.d.ts +0 -41
  416. package/objects/lib/points/points.d.ts +0 -41
  417. package/objects/lib/skeleton/skeleton.d.ts +0 -16
  418. package/objects/lib/skinned-mesh/skinned-mesh.d.ts +0 -45
  419. package/objects/lib/sprite/sprite.d.ts +0 -38
  420. package/primitives/README.md +0 -3
  421. package/primitives/index.d.ts +0 -2
  422. package/primitives/lib/common.d.ts +0 -3
  423. package/primitives/lib/object-primitive/object-primitive.d.ts +0 -35
  424. package/primitives/lib/primitive/primitive.d.ts +0 -10
  425. package/schematics/README.md +0 -11
  426. package/stats/README.md +0 -3
  427. package/stats/index.d.ts +0 -1
  428. package/stats/lib/stats/stats.d.ts +0 -16
  429. package/textures/README.md +0 -3
  430. package/textures/index.d.ts +0 -10
  431. package/textures/lib/canvas-texture/canvas-texture.d.ts +0 -8
  432. package/textures/lib/common.d.ts +0 -1
  433. package/textures/lib/compressed-array-texture/compressed-array-texture.d.ts +0 -8
  434. package/textures/lib/compressed-texture/compressed-texture.d.ts +0 -8
  435. package/textures/lib/cube-texture/cube-texture.d.ts +0 -8
  436. package/textures/lib/data-array-texture/data-array-texture.d.ts +0 -8
  437. package/textures/lib/data-texture/data-texture.d.ts +0 -8
  438. package/textures/lib/data3-dtexture/data3-dtexture.d.ts +0 -8
  439. package/textures/lib/depth-texture/depth-texture.d.ts +0 -8
  440. package/textures/lib/framebuffer-texture/framebuffer-texture.d.ts +0 -8
  441. package/textures/lib/video-texture/video-texture.d.ts +0 -8
@@ -1,475 +0,0 @@
1
- import * as i1 from 'angular-three';
2
- import { injectArgs, proxify, provideInstanceRef, NgtInstance, injectInstance } from 'angular-three';
3
- import * as i0 from '@angular/core';
4
- import { Component, Input } from '@angular/core';
5
- import * as THREE from 'three';
6
-
7
- // GENERATED - AngularThree v1.0.0
8
- const NGT_INSTANCE_INPUTS = [
9
- 'ref',
10
- 'attach',
11
- 'skipWrapper',
12
- 'skipInit',
13
- 'noAttach',
14
- 'beforeRender',
15
- 'priority',
16
- 'updateCallback',
17
- 'readyCallback',
18
- ];
19
-
20
- // GENERATED - AngularThree v1.0.0
21
- class NgtBufferAttribute extends THREE.BufferAttribute {
22
- constructor() {
23
- super(...(injectArgs({ optional: true }) || [[], 0]));
24
- return proxify(this);
25
- }
26
- }
27
- NgtBufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
28
- NgtBufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtBufferAttribute, isStandalone: true, selector: "ngt-buffer-attribute", providers: [provideInstanceRef(NgtBufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
29
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtBufferAttribute, decorators: [{
30
- type: Component,
31
- args: [{
32
- selector: 'ngt-buffer-attribute',
33
- standalone: true,
34
- template: '<ng-content></ng-content>',
35
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
36
- providers: [provideInstanceRef(NgtBufferAttribute)],
37
- }]
38
- }], ctorParameters: function () { return []; } });
39
-
40
- // GENERATED - AngularThree v1.0.0
41
- class NgtInstancedBufferAttribute extends THREE.InstancedBufferAttribute {
42
- constructor() {
43
- super(...(injectArgs({ optional: true }) || [[], 0]));
44
- return proxify(this);
45
- }
46
- }
47
- NgtInstancedBufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInstancedBufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
48
- NgtInstancedBufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtInstancedBufferAttribute, isStandalone: true, selector: "ngt-instanced-buffer-attribute", providers: [provideInstanceRef(NgtInstancedBufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
49
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInstancedBufferAttribute, decorators: [{
50
- type: Component,
51
- args: [{
52
- selector: 'ngt-instanced-buffer-attribute',
53
- standalone: true,
54
- template: '<ng-content></ng-content>',
55
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
56
- providers: [provideInstanceRef(NgtInstancedBufferAttribute)],
57
- }]
58
- }], ctorParameters: function () { return []; } });
59
-
60
- // GENERATED - AngularThree v1.0.0
61
- class NgtInterleavedBufferAttribute extends THREE.InterleavedBufferAttribute {
62
- constructor() {
63
- super(...(injectArgs({ optional: true }) || [
64
- new THREE.InterleavedBuffer([], 0),
65
- 0,
66
- 0,
67
- ]));
68
- return proxify(this);
69
- }
70
- }
71
- NgtInterleavedBufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInterleavedBufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
72
- NgtInterleavedBufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtInterleavedBufferAttribute, isStandalone: true, selector: "ngt-interleaved-buffer-attribute", providers: [provideInstanceRef(NgtInterleavedBufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
73
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInterleavedBufferAttribute, decorators: [{
74
- type: Component,
75
- args: [{
76
- selector: 'ngt-interleaved-buffer-attribute',
77
- standalone: true,
78
- template: '<ng-content></ng-content>',
79
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
80
- providers: [provideInstanceRef(NgtInterleavedBufferAttribute)],
81
- }]
82
- }], ctorParameters: function () { return []; } });
83
-
84
- // GENERATED - AngularThree v1.0.0
85
- class NgtFloat16BufferAttribute extends THREE.Float16BufferAttribute {
86
- constructor() {
87
- super(...(injectArgs({ optional: true }) || [[], 0]));
88
- return proxify(this);
89
- }
90
- }
91
- NgtFloat16BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat16BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
92
- NgtFloat16BufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtFloat16BufferAttribute, isStandalone: true, selector: "ngt-float16-buffer-attribute", providers: [provideInstanceRef(NgtFloat16BufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
93
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat16BufferAttribute, decorators: [{
94
- type: Component,
95
- args: [{
96
- selector: 'ngt-float16-buffer-attribute',
97
- standalone: true,
98
- template: '<ng-content></ng-content>',
99
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
100
- providers: [provideInstanceRef(NgtFloat16BufferAttribute)],
101
- }]
102
- }], ctorParameters: function () { return []; } });
103
-
104
- // GENERATED - AngularThree v1.0.0
105
- class NgtFloat32BufferAttribute extends THREE.Float32BufferAttribute {
106
- constructor() {
107
- super(...(injectArgs({ optional: true }) || [[], 0]));
108
- return proxify(this);
109
- }
110
- }
111
- NgtFloat32BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat32BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
112
- NgtFloat32BufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtFloat32BufferAttribute, isStandalone: true, selector: "ngt-float32-buffer-attribute", providers: [provideInstanceRef(NgtFloat32BufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
113
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat32BufferAttribute, decorators: [{
114
- type: Component,
115
- args: [{
116
- selector: 'ngt-float32-buffer-attribute',
117
- standalone: true,
118
- template: '<ng-content></ng-content>',
119
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
120
- providers: [provideInstanceRef(NgtFloat32BufferAttribute)],
121
- }]
122
- }], ctorParameters: function () { return []; } });
123
-
124
- // GENERATED - AngularThree v1.0.0
125
- class NgtFloat64BufferAttribute extends THREE.Float64BufferAttribute {
126
- constructor() {
127
- super(...(injectArgs({ optional: true }) || [[], 0]));
128
- return proxify(this);
129
- }
130
- }
131
- NgtFloat64BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat64BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
132
- NgtFloat64BufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtFloat64BufferAttribute, isStandalone: true, selector: "ngt-float64-buffer-attribute", providers: [provideInstanceRef(NgtFloat64BufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
133
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFloat64BufferAttribute, decorators: [{
134
- type: Component,
135
- args: [{
136
- selector: 'ngt-float64-buffer-attribute',
137
- standalone: true,
138
- template: '<ng-content></ng-content>',
139
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
140
- providers: [provideInstanceRef(NgtFloat64BufferAttribute)],
141
- }]
142
- }], ctorParameters: function () { return []; } });
143
-
144
- // GENERATED - AngularThree v1.0.0
145
- class NgtInt8BufferAttribute extends THREE.Int8BufferAttribute {
146
- constructor() {
147
- super(...(injectArgs({ optional: true }) || [[], 0]));
148
- return proxify(this);
149
- }
150
- }
151
- NgtInt8BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInt8BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
152
- NgtInt8BufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtInt8BufferAttribute, isStandalone: true, selector: "ngt-int8-buffer-attribute", providers: [provideInstanceRef(NgtInt8BufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
153
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInt8BufferAttribute, decorators: [{
154
- type: Component,
155
- args: [{
156
- selector: 'ngt-int8-buffer-attribute',
157
- standalone: true,
158
- template: '<ng-content></ng-content>',
159
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
160
- providers: [provideInstanceRef(NgtInt8BufferAttribute)],
161
- }]
162
- }], ctorParameters: function () { return []; } });
163
-
164
- // GENERATED - AngularThree v1.0.0
165
- class NgtInt16BufferAttribute extends THREE.Int16BufferAttribute {
166
- constructor() {
167
- super(...(injectArgs({ optional: true }) || [[], 0]));
168
- return proxify(this);
169
- }
170
- }
171
- NgtInt16BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInt16BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
172
- NgtInt16BufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtInt16BufferAttribute, isStandalone: true, selector: "ngt-int16-buffer-attribute", providers: [provideInstanceRef(NgtInt16BufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
173
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInt16BufferAttribute, decorators: [{
174
- type: Component,
175
- args: [{
176
- selector: 'ngt-int16-buffer-attribute',
177
- standalone: true,
178
- template: '<ng-content></ng-content>',
179
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
180
- providers: [provideInstanceRef(NgtInt16BufferAttribute)],
181
- }]
182
- }], ctorParameters: function () { return []; } });
183
-
184
- // GENERATED - AngularThree v1.0.0
185
- class NgtInt32BufferAttribute extends THREE.Int32BufferAttribute {
186
- constructor() {
187
- super(...(injectArgs({ optional: true }) || [[], 0]));
188
- return proxify(this);
189
- }
190
- }
191
- NgtInt32BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInt32BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
192
- NgtInt32BufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtInt32BufferAttribute, isStandalone: true, selector: "ngt-int32-buffer-attribute", providers: [provideInstanceRef(NgtInt32BufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
193
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtInt32BufferAttribute, decorators: [{
194
- type: Component,
195
- args: [{
196
- selector: 'ngt-int32-buffer-attribute',
197
- standalone: true,
198
- template: '<ng-content></ng-content>',
199
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
200
- providers: [provideInstanceRef(NgtInt32BufferAttribute)],
201
- }]
202
- }], ctorParameters: function () { return []; } });
203
-
204
- // GENERATED - AngularThree v1.0.0
205
- class NgtUint8BufferAttribute extends THREE.Uint8BufferAttribute {
206
- constructor() {
207
- super(...(injectArgs({ optional: true }) || [[], 0]));
208
- return proxify(this);
209
- }
210
- }
211
- NgtUint8BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtUint8BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
212
- NgtUint8BufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtUint8BufferAttribute, isStandalone: true, selector: "ngt-uint8-buffer-attribute", providers: [provideInstanceRef(NgtUint8BufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
213
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtUint8BufferAttribute, decorators: [{
214
- type: Component,
215
- args: [{
216
- selector: 'ngt-uint8-buffer-attribute',
217
- standalone: true,
218
- template: '<ng-content></ng-content>',
219
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
220
- providers: [provideInstanceRef(NgtUint8BufferAttribute)],
221
- }]
222
- }], ctorParameters: function () { return []; } });
223
-
224
- // GENERATED - AngularThree v1.0.0
225
- class NgtUint16BufferAttribute extends THREE.Uint16BufferAttribute {
226
- constructor() {
227
- super(...(injectArgs({ optional: true }) || [[], 0]));
228
- return proxify(this);
229
- }
230
- }
231
- NgtUint16BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtUint16BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
232
- NgtUint16BufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtUint16BufferAttribute, isStandalone: true, selector: "ngt-uint16-buffer-attribute", providers: [provideInstanceRef(NgtUint16BufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
233
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtUint16BufferAttribute, decorators: [{
234
- type: Component,
235
- args: [{
236
- selector: 'ngt-uint16-buffer-attribute',
237
- standalone: true,
238
- template: '<ng-content></ng-content>',
239
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
240
- providers: [provideInstanceRef(NgtUint16BufferAttribute)],
241
- }]
242
- }], ctorParameters: function () { return []; } });
243
-
244
- // GENERATED - AngularThree v1.0.0
245
- class NgtUint32BufferAttribute extends THREE.Uint32BufferAttribute {
246
- constructor() {
247
- super(...(injectArgs({ optional: true }) || [[], 0]));
248
- return proxify(this);
249
- }
250
- }
251
- NgtUint32BufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtUint32BufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
252
- NgtUint32BufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtUint32BufferAttribute, isStandalone: true, selector: "ngt-uint32-buffer-attribute", providers: [provideInstanceRef(NgtUint32BufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
253
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtUint32BufferAttribute, decorators: [{
254
- type: Component,
255
- args: [{
256
- selector: 'ngt-uint32-buffer-attribute',
257
- standalone: true,
258
- template: '<ng-content></ng-content>',
259
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
260
- providers: [provideInstanceRef(NgtUint32BufferAttribute)],
261
- }]
262
- }], ctorParameters: function () { return []; } });
263
-
264
- // GENERATED - AngularThree v1.0.0
265
- class NgtUint8ClampedBufferAttribute extends THREE.Uint8ClampedBufferAttribute {
266
- constructor() {
267
- super(...(injectArgs({ optional: true }) || [[], 0]));
268
- return proxify(this);
269
- }
270
- }
271
- NgtUint8ClampedBufferAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtUint8ClampedBufferAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
272
- NgtUint8ClampedBufferAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtUint8ClampedBufferAttribute, isStandalone: true, selector: "ngt-uint8-clamped-buffer-attribute", providers: [provideInstanceRef(NgtUint8ClampedBufferAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
273
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtUint8ClampedBufferAttribute, decorators: [{
274
- type: Component,
275
- args: [{
276
- selector: 'ngt-uint8-clamped-buffer-attribute',
277
- standalone: true,
278
- template: '<ng-content></ng-content>',
279
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
280
- providers: [provideInstanceRef(NgtUint8ClampedBufferAttribute)],
281
- }]
282
- }], ctorParameters: function () { return []; } });
283
-
284
- // GENERATED - AngularThree v1.0.0
285
- class NgtColorAttribute extends THREE.Color {
286
- constructor() {
287
- super(...(injectArgs({ optional: true }) || []));
288
- return proxify(this);
289
- }
290
- }
291
- NgtColorAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtColorAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
292
- NgtColorAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtColorAttribute, isStandalone: true, selector: "ngt-color", providers: [provideInstanceRef(NgtColorAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
293
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtColorAttribute, decorators: [{
294
- type: Component,
295
- args: [{
296
- selector: 'ngt-color',
297
- standalone: true,
298
- template: '<ng-content></ng-content>',
299
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
300
- providers: [provideInstanceRef(NgtColorAttribute)],
301
- }]
302
- }], ctorParameters: function () { return []; } });
303
-
304
- // GENERATED - AngularThree v1.0.0
305
- class NgtFogAttribute extends THREE.Fog {
306
- constructor() {
307
- super(...(injectArgs({ optional: true }) || ['white']));
308
- return proxify(this);
309
- }
310
- }
311
- NgtFogAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFogAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
312
- NgtFogAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtFogAttribute, isStandalone: true, selector: "ngt-fog", providers: [provideInstanceRef(NgtFogAttribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
313
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFogAttribute, decorators: [{
314
- type: Component,
315
- args: [{
316
- selector: 'ngt-fog',
317
- standalone: true,
318
- template: '<ng-content></ng-content>',
319
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
320
- providers: [provideInstanceRef(NgtFogAttribute)],
321
- }]
322
- }], ctorParameters: function () { return []; } });
323
-
324
- // GENERATED - AngularThree v1.0.0
325
- class NgtFogExp2Attribute extends THREE.FogExp2 {
326
- constructor() {
327
- super(...(injectArgs({ optional: true }) || ['#fff']));
328
- return proxify(this);
329
- }
330
- }
331
- NgtFogExp2Attribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFogExp2Attribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
332
- NgtFogExp2Attribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtFogExp2Attribute, isStandalone: true, selector: "ngt-fog-exp2", providers: [provideInstanceRef(NgtFogExp2Attribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
333
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtFogExp2Attribute, decorators: [{
334
- type: Component,
335
- args: [{
336
- selector: 'ngt-fog-exp2',
337
- standalone: true,
338
- template: '<ng-content></ng-content>',
339
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
340
- providers: [provideInstanceRef(NgtFogExp2Attribute)],
341
- }]
342
- }], ctorParameters: function () { return []; } });
343
-
344
- // GENERATED - AngularThree v1.0.0
345
- class NgtVector2Attribute extends THREE.Vector2 {
346
- constructor() {
347
- super(...(injectArgs({ optional: true }) || []));
348
- return proxify(this);
349
- }
350
- }
351
- NgtVector2Attribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtVector2Attribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
352
- NgtVector2Attribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtVector2Attribute, isStandalone: true, selector: "ngt-vector2", providers: [provideInstanceRef(NgtVector2Attribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
353
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtVector2Attribute, decorators: [{
354
- type: Component,
355
- args: [{
356
- selector: 'ngt-vector2',
357
- standalone: true,
358
- template: '<ng-content></ng-content>',
359
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
360
- providers: [provideInstanceRef(NgtVector2Attribute)],
361
- }]
362
- }], ctorParameters: function () { return []; } });
363
-
364
- // GENERATED - AngularThree v1.0.0
365
- class NgtVector3Attribute extends THREE.Vector3 {
366
- constructor() {
367
- super(...(injectArgs({ optional: true }) || []));
368
- return proxify(this);
369
- }
370
- }
371
- NgtVector3Attribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtVector3Attribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
372
- NgtVector3Attribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtVector3Attribute, isStandalone: true, selector: "ngt-vector3", providers: [provideInstanceRef(NgtVector3Attribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
373
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtVector3Attribute, decorators: [{
374
- type: Component,
375
- args: [{
376
- selector: 'ngt-vector3',
377
- standalone: true,
378
- template: '<ng-content></ng-content>',
379
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
380
- providers: [provideInstanceRef(NgtVector3Attribute)],
381
- }]
382
- }], ctorParameters: function () { return []; } });
383
-
384
- // GENERATED - AngularThree v1.0.0
385
- class NgtVector4Attribute extends THREE.Vector4 {
386
- constructor() {
387
- super(...(injectArgs({ optional: true }) || []));
388
- return proxify(this);
389
- }
390
- }
391
- NgtVector4Attribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtVector4Attribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
392
- NgtVector4Attribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtVector4Attribute, isStandalone: true, selector: "ngt-vector4", providers: [provideInstanceRef(NgtVector4Attribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
393
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtVector4Attribute, decorators: [{
394
- type: Component,
395
- args: [{
396
- selector: 'ngt-vector4',
397
- standalone: true,
398
- template: '<ng-content></ng-content>',
399
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
400
- providers: [provideInstanceRef(NgtVector4Attribute)],
401
- }]
402
- }], ctorParameters: function () { return []; } });
403
-
404
- // GENERATED - AngularThree v1.0.0
405
- class NgtMatrix3Attribute extends THREE.Matrix3 {
406
- constructor() {
407
- super(...(injectArgs({ optional: true }) || []));
408
- return proxify(this);
409
- }
410
- }
411
- NgtMatrix3Attribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMatrix3Attribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
412
- NgtMatrix3Attribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMatrix3Attribute, isStandalone: true, selector: "ngt-matrix3", providers: [provideInstanceRef(NgtMatrix3Attribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
413
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMatrix3Attribute, decorators: [{
414
- type: Component,
415
- args: [{
416
- selector: 'ngt-matrix3',
417
- standalone: true,
418
- template: '<ng-content></ng-content>',
419
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
420
- providers: [provideInstanceRef(NgtMatrix3Attribute)],
421
- }]
422
- }], ctorParameters: function () { return []; } });
423
-
424
- // GENERATED - AngularThree v1.0.0
425
- class NgtMatrix4Attribute extends THREE.Matrix4 {
426
- constructor() {
427
- super(...(injectArgs({ optional: true }) || []));
428
- return proxify(this);
429
- }
430
- }
431
- NgtMatrix4Attribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMatrix4Attribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
432
- NgtMatrix4Attribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtMatrix4Attribute, isStandalone: true, selector: "ngt-matrix4", providers: [provideInstanceRef(NgtMatrix4Attribute)], usesInheritance: true, hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
433
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtMatrix4Attribute, decorators: [{
434
- type: Component,
435
- args: [{
436
- selector: 'ngt-matrix4',
437
- standalone: true,
438
- template: '<ng-content></ng-content>',
439
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
440
- providers: [provideInstanceRef(NgtMatrix4Attribute)],
441
- }]
442
- }], ctorParameters: function () { return []; } });
443
-
444
- class NgtValueAttribute {
445
- constructor() {
446
- this.instance = injectInstance({ host: true });
447
- }
448
- set value(value) {
449
- this.instance.instanceRef.set(value);
450
- }
451
- }
452
- NgtValueAttribute.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtValueAttribute, deps: [], target: i0.ɵɵFactoryTarget.Component });
453
- NgtValueAttribute.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.0", type: NgtValueAttribute, isStandalone: true, selector: "ngt-value", inputs: { value: "value" }, providers: [provideInstanceRef(NgtValueAttribute)], hostDirectives: [{ directive: i1.NgtInstance, inputs: ["ref", "ref", "attach", "attach", "skipWrapper", "skipWrapper", "skipInit", "skipInit", "noAttach", "noAttach", "beforeRender", "beforeRender", "priority", "priority", "updateCallback", "updateCallback", "readyCallback", "readyCallback"] }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
454
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImport: i0, type: NgtValueAttribute, decorators: [{
455
- type: Component,
456
- args: [{
457
- selector: 'ngt-value',
458
- standalone: true,
459
- template: '<ng-content></ng-content>',
460
- hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],
461
- providers: [provideInstanceRef(NgtValueAttribute)],
462
- }]
463
- }], propDecorators: { value: [{
464
- type: Input
465
- }] } });
466
-
467
- // GENERATED - AngularThree v1.0.0
468
-
469
- /**
470
- * Generated bundle index. Do not edit.
471
- */
472
-
473
- export { NgtBufferAttribute, NgtColorAttribute, NgtFloat16BufferAttribute, NgtFloat32BufferAttribute, NgtFloat64BufferAttribute, NgtFogAttribute, NgtFogExp2Attribute, NgtInstancedBufferAttribute, NgtInt16BufferAttribute, NgtInt32BufferAttribute, NgtInt8BufferAttribute, NgtInterleavedBufferAttribute, NgtMatrix3Attribute, NgtMatrix4Attribute, NgtUint16BufferAttribute, NgtUint32BufferAttribute, NgtUint8BufferAttribute, NgtUint8ClampedBufferAttribute, NgtValueAttribute, NgtVector2Attribute, NgtVector3Attribute, NgtVector4Attribute };
474
- //# sourceMappingURL=angular-three-attributes.mjs.map
475
- //# sourceMappingURL=angular-three-attributes.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"angular-three-attributes.mjs","sources":["../../../../packages/angular-three/attributes/src/lib/common.ts","../../../../packages/angular-three/attributes/src/lib/buffer-attribute/buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/instanced-buffer-attribute/instanced-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/interleaved-buffer-attribute/interleaved-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/float16-buffer-attribute/float16-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/float32-buffer-attribute/float32-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/float64-buffer-attribute/float64-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/int8-buffer-attribute/int8-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/int16-buffer-attribute/int16-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/int32-buffer-attribute/int32-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/uint8-buffer-attribute/uint8-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/uint16-buffer-attribute/uint16-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/uint32-buffer-attribute/uint32-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute.ts","../../../../packages/angular-three/attributes/src/lib/color-attribute/color-attribute.ts","../../../../packages/angular-three/attributes/src/lib/fog-attribute/fog-attribute.ts","../../../../packages/angular-three/attributes/src/lib/fog-exp2-attribute/fog-exp2-attribute.ts","../../../../packages/angular-three/attributes/src/lib/vector2-attribute/vector2-attribute.ts","../../../../packages/angular-three/attributes/src/lib/vector3-attribute/vector3-attribute.ts","../../../../packages/angular-three/attributes/src/lib/vector4-attribute/vector4-attribute.ts","../../../../packages/angular-three/attributes/src/lib/matrix3-attribute/matrix3-attribute.ts","../../../../packages/angular-three/attributes/src/lib/matrix4-attribute/matrix4-attribute.ts","../../../../packages/angular-three/attributes/src/lib/value-attribute/value-attribute.ts","../../../../packages/angular-three/attributes/src/index.ts","../../../../packages/angular-three/attributes/src/angular-three-attributes.ts"],"sourcesContent":["// GENERATED - AngularThree v1.0.0\nexport const NGT_INSTANCE_INPUTS = [\n 'ref',\n 'attach',\n 'skipWrapper',\n 'skipInit',\n 'noAttach',\n 'beforeRender',\n 'priority',\n 'updateCallback',\n 'readyCallback',\n];\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtBufferAttribute)],\n})\nexport class NgtBufferAttribute extends THREE.BufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.BufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-instanced-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtInstancedBufferAttribute)],\n})\nexport class NgtInstancedBufferAttribute extends THREE.InstancedBufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.InstancedBufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-interleaved-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtInterleavedBufferAttribute)],\n})\nexport class NgtInterleavedBufferAttribute extends THREE.InterleavedBufferAttribute {\n constructor() {\n super(\n ...(injectArgs<typeof THREE.InterleavedBufferAttribute>({ optional: true }) || [\n new THREE.InterleavedBuffer([], 0),\n 0,\n 0,\n ])\n );\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-float16-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtFloat16BufferAttribute)],\n})\nexport class NgtFloat16BufferAttribute extends THREE.Float16BufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.Float16BufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-float32-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtFloat32BufferAttribute)],\n})\nexport class NgtFloat32BufferAttribute extends THREE.Float32BufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.Float32BufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-float64-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtFloat64BufferAttribute)],\n})\nexport class NgtFloat64BufferAttribute extends THREE.Float64BufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.Float64BufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-int8-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtInt8BufferAttribute)],\n})\nexport class NgtInt8BufferAttribute extends THREE.Int8BufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.Int8BufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-int16-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtInt16BufferAttribute)],\n})\nexport class NgtInt16BufferAttribute extends THREE.Int16BufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.Int16BufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-int32-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtInt32BufferAttribute)],\n})\nexport class NgtInt32BufferAttribute extends THREE.Int32BufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.Int32BufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-uint8-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtUint8BufferAttribute)],\n})\nexport class NgtUint8BufferAttribute extends THREE.Uint8BufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.Uint8BufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-uint16-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtUint16BufferAttribute)],\n})\nexport class NgtUint16BufferAttribute extends THREE.Uint16BufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.Uint16BufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-uint32-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtUint32BufferAttribute)],\n})\nexport class NgtUint32BufferAttribute extends THREE.Uint32BufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.Uint32BufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-uint8-clamped-buffer-attribute',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtUint8ClampedBufferAttribute)],\n})\nexport class NgtUint8ClampedBufferAttribute extends THREE.Uint8ClampedBufferAttribute {\n constructor() {\n super(...(injectArgs<typeof THREE.Uint8ClampedBufferAttribute>({ optional: true }) || [[], 0]));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-color',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtColorAttribute)],\n})\nexport class NgtColorAttribute extends THREE.Color {\n constructor() {\n super(...(injectArgs<typeof THREE.Color>({ optional: true }) || []));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-fog',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtFogAttribute)],\n})\nexport class NgtFogAttribute extends THREE.Fog {\n constructor() {\n super(...(injectArgs<typeof THREE.Fog>({ optional: true }) || ['white']));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-fog-exp2',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtFogExp2Attribute)],\n})\nexport class NgtFogExp2Attribute extends THREE.FogExp2 {\n constructor() {\n super(...(injectArgs<typeof THREE.FogExp2>({ optional: true }) || ['#fff']));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-vector2',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtVector2Attribute)],\n})\nexport class NgtVector2Attribute extends THREE.Vector2 {\n constructor() {\n super(...(injectArgs<typeof THREE.Vector2>({ optional: true }) || []));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-vector3',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtVector3Attribute)],\n})\nexport class NgtVector3Attribute extends THREE.Vector3 {\n constructor() {\n super(...(injectArgs<typeof THREE.Vector3>({ optional: true }) || []));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-vector4',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtVector4Attribute)],\n})\nexport class NgtVector4Attribute extends THREE.Vector4 {\n constructor() {\n super(...(injectArgs<typeof THREE.Vector4>({ optional: true }) || []));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-matrix3',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtMatrix3Attribute)],\n})\nexport class NgtMatrix3Attribute extends THREE.Matrix3 {\n constructor() {\n super(...(injectArgs<typeof THREE.Matrix3>({ optional: true }) || []));\n return proxify(this);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nimport { injectArgs, NgtInstance, provideInstanceRef, proxify } from 'angular-three';\nimport { Component } from '@angular/core';\nimport * as THREE from 'three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-matrix4',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtMatrix4Attribute)],\n})\nexport class NgtMatrix4Attribute extends THREE.Matrix4 {\n constructor() {\n super(...(injectArgs<typeof THREE.Matrix4>({ optional: true }) || []));\n return proxify(this);\n }\n}\n","import { Component, Input } from '@angular/core';\nimport { injectInstance, NgtInstance, provideInstanceRef } from 'angular-three';\nimport { NGT_INSTANCE_INPUTS } from '../common';\n\n@Component({\n selector: 'ngt-value',\n standalone: true,\n template: '<ng-content></ng-content>',\n hostDirectives: [{ directive: NgtInstance, inputs: NGT_INSTANCE_INPUTS }],\n providers: [provideInstanceRef(NgtValueAttribute)],\n})\nexport class NgtValueAttribute {\n private readonly instance = injectInstance({ host: true });\n\n @Input() set value(value: any) {\n this.instance.instanceRef.set(value);\n }\n}\n","// GENERATED - AngularThree v1.0.0\nexport * from './lib/buffer-attribute/buffer-attribute';\nexport * from './lib/instanced-buffer-attribute/instanced-buffer-attribute';\nexport * from './lib/interleaved-buffer-attribute/interleaved-buffer-attribute';\nexport * from './lib/float16-buffer-attribute/float16-buffer-attribute';\nexport * from './lib/float32-buffer-attribute/float32-buffer-attribute';\nexport * from './lib/float64-buffer-attribute/float64-buffer-attribute';\nexport * from './lib/int8-buffer-attribute/int8-buffer-attribute';\nexport * from './lib/int16-buffer-attribute/int16-buffer-attribute';\nexport * from './lib/int32-buffer-attribute/int32-buffer-attribute';\nexport * from './lib/uint8-buffer-attribute/uint8-buffer-attribute';\nexport * from './lib/uint16-buffer-attribute/uint16-buffer-attribute';\nexport * from './lib/uint32-buffer-attribute/uint32-buffer-attribute';\nexport * from './lib/uint8-clamped-buffer-attribute/uint8-clamped-buffer-attribute';\nexport * from './lib/color-attribute/color-attribute';\nexport * from './lib/fog-attribute/fog-attribute';\nexport * from './lib/fog-exp2-attribute/fog-exp2-attribute';\nexport * from './lib/vector2-attribute/vector2-attribute';\nexport * from './lib/vector3-attribute/vector3-attribute';\nexport * from './lib/vector4-attribute/vector4-attribute';\nexport * from './lib/matrix3-attribute/matrix3-attribute';\nexport * from './lib/matrix4-attribute/matrix4-attribute';\nexport * from './lib/value-attribute/value-attribute';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAAA;AACO,MAAM,mBAAmB,GAAG;IAC/B,KAAK;IACL,QAAQ;IACR,aAAa;IACb,UAAU;IACV,UAAU;IACV,cAAc;IACd,UAAU;IACV,gBAAgB;IAChB,eAAe;CAClB;;ACXD;AAaa,MAAA,kBAA2B,SAAA,KAAK,CAAC,eAAe,CAAA;AACzD,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAA+B,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AACpF,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;+GAJQ,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAAlB,kBAAkB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,SAAA,EAFhB,CAAC,kBAAkB,CAAC,kBAAkB,CAAC,CAAC,0VAFzC,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAP9B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,sBAAsB;AAChC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,kBAAA,CAAoB,CAAC;iBACtD,CAAA;;;ACZD;AAaa,MAAA,2BAAoC,SAAA,KAAK,CAAC,wBAAwB,CAAA;AAC3E,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAwC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AAC7F,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;wHAJQ,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;4GAA3B,2BAA2B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,gCAAA,EAAA,SAAA,EAFzB,CAAC,kBAAkB,CAAC,2BAA2B,CAAC,CAAC,0VAFlD,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBAPvC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,gCAAgC;AAC1C,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,2BAAA,CAA6B,CAAC;iBAC/D,CAAA;;;ACZD;AAaa,MAAA,6BAAsC,SAAA,KAAK,CAAC,0BAA0B,CAAA;AAC/E,IAAA,WAAA,GAAA;QACI,KAAK,CACD,IAAI,UAAU,CAA0C,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI;AAC3E,YAAA,IAAI,KAAK,CAAC,iBAAiB,CAAC,EAAE,EAAE,CAAC,CAAC;YAClC,CAAC;YACD,CAAC;AACJ,SAAA,CAAC,CACL,CAAC;AACF,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;0HAVQ,6BAA6B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;8GAA7B,6BAA6B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,kCAAA,EAAA,SAAA,EAF3B,CAAC,kBAAkB,CAAC,6BAA6B,CAAC,CAAC,0VAFpD,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,6BAA6B,EAAA,UAAA,EAAA,CAAA;kBAPzC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,kCAAkC;AAC5C,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,6BAAA,CAA+B,CAAC;iBACjE,CAAA;;;ACZD;AAaa,MAAA,yBAAkC,SAAA,KAAK,CAAC,sBAAsB,CAAA;AACvE,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAsC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3F,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;sHAJQ,yBAAyB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;0GAAzB,yBAAyB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,8BAAA,EAAA,SAAA,EAFvB,CAAC,kBAAkB,CAAC,yBAAyB,CAAC,CAAC,0VAFhD,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBAPrC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,8BAA8B;AACxC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,yBAAA,CAA2B,CAAC;iBAC7D,CAAA;;;ACZD;AAaa,MAAA,yBAAkC,SAAA,KAAK,CAAC,sBAAsB,CAAA;AACvE,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAsC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3F,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;sHAJQ,yBAAyB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;0GAAzB,yBAAyB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,8BAAA,EAAA,SAAA,EAFvB,CAAC,kBAAkB,CAAC,yBAAyB,CAAC,CAAC,0VAFhD,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBAPrC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,8BAA8B;AACxC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,yBAAA,CAA2B,CAAC;iBAC7D,CAAA;;;ACZD;AAaa,MAAA,yBAAkC,SAAA,KAAK,CAAC,sBAAsB,CAAA;AACvE,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAsC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3F,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;sHAJQ,yBAAyB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;0GAAzB,yBAAyB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,8BAAA,EAAA,SAAA,EAFvB,CAAC,kBAAkB,CAAC,yBAAyB,CAAC,CAAC,0VAFhD,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBAPrC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,8BAA8B;AACxC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,yBAAA,CAA2B,CAAC;iBAC7D,CAAA;;;ACZD;AAaa,MAAA,sBAA+B,SAAA,KAAK,CAAC,mBAAmB,CAAA;AACjE,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAmC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AACxF,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;mHAJQ,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;uGAAtB,sBAAsB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,SAAA,EAFpB,CAAC,kBAAkB,CAAC,sBAAsB,CAAC,CAAC,0VAF7C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAPlC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,2BAA2B;AACrC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,sBAAA,CAAwB,CAAC;iBAC1D,CAAA;;;ACZD;AAaa,MAAA,uBAAgC,SAAA,KAAK,CAAC,oBAAoB,CAAA;AACnE,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAoC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AACzF,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;oHAJQ,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;wGAAvB,uBAAuB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,4BAAA,EAAA,SAAA,EAFrB,CAAC,kBAAkB,CAAC,uBAAuB,CAAC,CAAC,0VAF9C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAPnC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,4BAA4B;AACtC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,uBAAA,CAAyB,CAAC;iBAC3D,CAAA;;;ACZD;AAaa,MAAA,uBAAgC,SAAA,KAAK,CAAC,oBAAoB,CAAA;AACnE,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAoC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AACzF,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;oHAJQ,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;wGAAvB,uBAAuB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,4BAAA,EAAA,SAAA,EAFrB,CAAC,kBAAkB,CAAC,uBAAuB,CAAC,CAAC,0VAF9C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAPnC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,4BAA4B;AACtC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,uBAAA,CAAyB,CAAC;iBAC3D,CAAA;;;ACZD;AAaa,MAAA,uBAAgC,SAAA,KAAK,CAAC,oBAAoB,CAAA;AACnE,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAoC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AACzF,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;oHAJQ,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;wGAAvB,uBAAuB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,4BAAA,EAAA,SAAA,EAFrB,CAAC,kBAAkB,CAAC,uBAAuB,CAAC,CAAC,0VAF9C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAPnC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,4BAA4B;AACtC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,uBAAA,CAAyB,CAAC;iBAC3D,CAAA;;;ACZD;AAaa,MAAA,wBAAiC,SAAA,KAAK,CAAC,qBAAqB,CAAA;AACrE,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAqC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1F,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;qHAJQ,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;yGAAxB,wBAAwB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,SAAA,EAFtB,CAAC,kBAAkB,CAAC,wBAAwB,CAAC,CAAC,0VAF/C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBAPpC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,6BAA6B;AACvC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,wBAAA,CAA0B,CAAC;iBAC5D,CAAA;;;ACZD;AAaa,MAAA,wBAAiC,SAAA,KAAK,CAAC,qBAAqB,CAAA;AACrE,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAqC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1F,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;qHAJQ,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;yGAAxB,wBAAwB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,SAAA,EAFtB,CAAC,kBAAkB,CAAC,wBAAwB,CAAC,CAAC,0VAF/C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBAPpC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,6BAA6B;AACvC,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,wBAAA,CAA0B,CAAC;iBAC5D,CAAA;;;ACZD;AAaa,MAAA,8BAAuC,SAAA,KAAK,CAAC,2BAA2B,CAAA;AACjF,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAA2C,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AAChG,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;2HAJQ,8BAA8B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;+GAA9B,8BAA8B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,SAAA,EAF5B,CAAC,kBAAkB,CAAC,8BAA8B,CAAC,CAAC,0VAFrD,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,8BAA8B,EAAA,UAAA,EAAA,CAAA;kBAP1C,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,oCAAoC;AAC9C,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,8BAAA,CAAgC,CAAC;iBAClE,CAAA;;;ACZD;AAaa,MAAA,iBAA0B,SAAA,KAAK,CAAC,KAAK,CAAA;AAC9C,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAqB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACrE,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;8GAJQ,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;kGAAjB,iBAAiB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,WAAA,EAAA,SAAA,EAFf,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,CAAC,0VAFxC,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAP7B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,WAAW;AACrB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,iBAAA,CAAmB,CAAC;iBACrD,CAAA;;;ACZD;AAaa,MAAA,eAAwB,SAAA,KAAK,CAAC,GAAG,CAAA;AAC1C,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAmB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;AAC1E,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;4GAJQ,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;gGAAf,eAAe,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,SAAA,EAAA,SAAA,EAFb,CAAC,kBAAkB,CAAC,eAAe,CAAC,CAAC,0VAFtC,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,eAAe,EAAA,UAAA,EAAA,CAAA;kBAP3B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,SAAS;AACnB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,eAAA,CAAiB,CAAC;iBACnD,CAAA;;;ACZD;AAaa,MAAA,mBAA4B,SAAA,KAAK,CAAC,OAAO,CAAA;AAClD,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAuB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;AAC7E,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;gHAJQ,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;oGAAnB,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,cAAA,EAAA,SAAA,EAFjB,CAAC,kBAAkB,CAAC,mBAAmB,CAAC,CAAC,0VAF1C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAP/B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,cAAc;AACxB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,mBAAA,CAAqB,CAAC;iBACvD,CAAA;;;ACZD;AAaa,MAAA,mBAA4B,SAAA,KAAK,CAAC,OAAO,CAAA;AAClD,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAuB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACvE,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;gHAJQ,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;oGAAnB,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,aAAA,EAAA,SAAA,EAFjB,CAAC,kBAAkB,CAAC,mBAAmB,CAAC,CAAC,0VAF1C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAP/B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,aAAa;AACvB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,mBAAA,CAAqB,CAAC;iBACvD,CAAA;;;ACZD;AAaa,MAAA,mBAA4B,SAAA,KAAK,CAAC,OAAO,CAAA;AAClD,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAuB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACvE,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;gHAJQ,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;oGAAnB,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,aAAA,EAAA,SAAA,EAFjB,CAAC,kBAAkB,CAAC,mBAAmB,CAAC,CAAC,0VAF1C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAP/B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,aAAa;AACvB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,mBAAA,CAAqB,CAAC;iBACvD,CAAA;;;ACZD;AAaa,MAAA,mBAA4B,SAAA,KAAK,CAAC,OAAO,CAAA;AAClD,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAuB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACvE,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;gHAJQ,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;oGAAnB,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,aAAA,EAAA,SAAA,EAFjB,CAAC,kBAAkB,CAAC,mBAAmB,CAAC,CAAC,0VAF1C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAP/B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,aAAa;AACvB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,mBAAA,CAAqB,CAAC;iBACvD,CAAA;;;ACZD;AAaa,MAAA,mBAA4B,SAAA,KAAK,CAAC,OAAO,CAAA;AAClD,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAuB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACvE,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;gHAJQ,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;oGAAnB,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,aAAA,EAAA,SAAA,EAFjB,CAAC,kBAAkB,CAAC,mBAAmB,CAAC,CAAC,0VAF1C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAP/B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,aAAa;AACvB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,mBAAA,CAAqB,CAAC;iBACvD,CAAA;;;ACZD;AAaa,MAAA,mBAA4B,SAAA,KAAK,CAAC,OAAO,CAAA;AAClD,IAAA,WAAA,GAAA;AACI,QAAA,KAAK,CAAC,IAAI,UAAU,CAAuB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACvE,QAAA,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;KACxB;;gHAJQ,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;oGAAnB,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,aAAA,EAAA,SAAA,EAFjB,CAAC,kBAAkB,CAAC,mBAAmB,CAAC,CAAC,0VAF1C,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAP/B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,aAAa;AACvB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,mBAAA,CAAqB,CAAC;iBACvD,CAAA;;;MCDY,iBAAiB,CAAA;AAP9B,IAAA,WAAA,GAAA;QAQqB,IAAQ,CAAA,QAAA,GAAG,cAAc,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;KAK9D;IAHG,IAAa,KAAK,CAAC,KAAU,EAAA;QACzB,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;KACxC;;8GALQ,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;kGAAjB,iBAAiB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,EAAA,KAAA,EAAA,OAAA,EAAA,EAAA,SAAA,EAFf,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,CAAC,mUAFxC,2BAA2B,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;2FAI5B,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAP7B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,WAAW;AACrB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,QAAQ,EAAE,2BAA2B;oBACrC,cAAc,EAAE,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,CAAC;AACzE,oBAAA,SAAS,EAAE,CAAC,kBAAkB,CAAA,iBAAA,CAAmB,CAAC;iBACrD,CAAA;8BAIgB,KAAK,EAAA,CAAA;sBAAjB,KAAK;;;ACdV;;ACAA;;AAEG;;;;"}