angular-three 2.0.0-beta.8 → 2.0.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 (153) hide show
  1. package/README.md +221 -4
  2. package/esm2022/index.mjs +13 -14
  3. package/esm2022/lib/canvas.mjs +130 -197
  4. package/esm2022/lib/directives/args.mjs +46 -20
  5. package/esm2022/lib/directives/selection.mjs +65 -0
  6. package/esm2022/lib/dom/events.mjs +2 -2
  7. package/esm2022/lib/events.mjs +33 -31
  8. package/esm2022/lib/html.mjs +40 -0
  9. package/esm2022/lib/instance.mjs +43 -36
  10. package/esm2022/lib/loader.mjs +72 -36
  11. package/esm2022/lib/loop.mjs +29 -26
  12. package/esm2022/lib/pipes/hexify.mjs +67 -0
  13. package/esm2022/lib/portal.mjs +173 -193
  14. package/esm2022/lib/renderer/catalogue.mjs +3 -3
  15. package/esm2022/lib/renderer/constants.mjs +5 -6
  16. package/esm2022/lib/renderer/index.mjs +356 -217
  17. package/esm2022/lib/renderer/state.mjs +54 -0
  18. package/esm2022/lib/renderer/utils.mjs +107 -63
  19. package/esm2022/lib/roots.mjs +86 -62
  20. package/esm2022/lib/routed-scene.mjs +11 -8
  21. package/esm2022/lib/store.mjs +164 -195
  22. package/esm2022/lib/three-types.mjs +1 -1
  23. package/esm2022/lib/types.mjs +1 -1
  24. package/esm2022/lib/utils/apply-props.mjs +24 -28
  25. package/esm2022/lib/utils/attach.mjs +12 -9
  26. package/esm2022/lib/utils/before-render.mjs +12 -0
  27. package/esm2022/lib/utils/is.mjs +6 -5
  28. package/esm2022/lib/utils/make.mjs +19 -17
  29. package/esm2022/lib/utils/non-nullish.mjs +7 -0
  30. package/esm2022/lib/utils/object-events.mjs +91 -0
  31. package/esm2022/lib/utils/parameters.mjs +70 -0
  32. package/esm2022/lib/utils/resolve-ref.mjs +8 -0
  33. package/esm2022/lib/utils/signal-store.mjs +59 -60
  34. package/esm2022/lib/utils/update.mjs +8 -4
  35. package/esm2022/nativescript/angular-three-nativescript.mjs +5 -0
  36. package/esm2022/nativescript/index.mjs +2 -0
  37. package/esm2022/nativescript/lib/canvas.mjs +127 -0
  38. package/esm2022/testing/angular-three-testing.mjs +5 -0
  39. package/esm2022/testing/index.mjs +3 -0
  40. package/esm2022/testing/lib/test-bed.mjs +130 -0
  41. package/esm2022/testing/lib/test-canvas.mjs +45 -0
  42. package/esm2022/testing/lib/utils/mock-canvas.mjs +37 -0
  43. package/esm2022/testing/lib/utils/web-gl-rendering-context.mjs +752 -0
  44. package/fesm2022/angular-three-nativescript.mjs +134 -0
  45. package/fesm2022/angular-three-nativescript.mjs.map +1 -0
  46. package/fesm2022/angular-three-testing.mjs +966 -0
  47. package/fesm2022/angular-three-testing.mjs.map +1 -0
  48. package/fesm2022/angular-three.mjs +2240 -2305
  49. package/fesm2022/angular-three.mjs.map +1 -1
  50. package/index.d.ts +14 -14
  51. package/lib/canvas.d.ts +357 -96
  52. package/lib/directives/args.d.ts +14 -7
  53. package/lib/directives/selection.d.ts +17 -0
  54. package/lib/dom/events.d.ts +2 -3
  55. package/lib/events.d.ts +4 -80
  56. package/lib/html.d.ts +17 -0
  57. package/lib/instance.d.ts +3 -35
  58. package/lib/loader.d.ts +19 -7
  59. package/lib/loop.d.ts +11 -59
  60. package/lib/pipes/hexify.d.ts +20 -0
  61. package/lib/portal.d.ts +54 -48
  62. package/lib/renderer/catalogue.d.ts +7 -3
  63. package/lib/renderer/constants.d.ts +4 -5
  64. package/lib/renderer/index.d.ts +63 -4
  65. package/lib/renderer/state.d.ts +25 -0
  66. package/lib/renderer/utils.d.ts +10 -27
  67. package/lib/roots.d.ts +9 -7
  68. package/lib/store.d.ts +13 -141
  69. package/lib/three-types.d.ts +500 -147
  70. package/lib/types.d.ts +291 -0
  71. package/lib/utils/apply-props.d.ts +1 -3
  72. package/lib/utils/attach.d.ts +4 -6
  73. package/lib/{before-render.d.ts → utils/before-render.d.ts} +1 -1
  74. package/lib/utils/is.d.ts +13 -14
  75. package/lib/utils/make.d.ts +7 -13
  76. package/lib/utils/non-nullish.d.ts +4 -0
  77. package/lib/utils/object-events.d.ts +32 -0
  78. package/lib/utils/parameters.d.ts +20 -0
  79. package/lib/utils/resolve-ref.d.ts +2 -0
  80. package/lib/utils/signal-store.d.ts +13 -4
  81. package/lib/utils/update.d.ts +1 -1
  82. package/metadata.json +1 -1
  83. package/nativescript/README.md +5 -0
  84. package/nativescript/index.d.ts +1 -0
  85. package/nativescript/lib/canvas.d.ts +359 -0
  86. package/nativescript/package.json +3 -0
  87. package/package.json +65 -14
  88. package/plugin/generators.json +8 -20
  89. package/plugin/package.json +3 -3
  90. package/plugin/src/generators/add-soba/compat.js.map +1 -0
  91. package/plugin/src/generators/add-soba/generator.d.ts +3 -0
  92. package/plugin/src/generators/add-soba/generator.js +77 -0
  93. package/plugin/src/generators/add-soba/generator.js.map +1 -0
  94. package/plugin/src/generators/add-soba/schema.json +4 -0
  95. package/plugin/src/generators/init/compat.d.ts +1 -1
  96. package/plugin/src/generators/init/files/experience/experience.component.ts__tmpl__ +29 -0
  97. package/plugin/src/generators/init/generator.d.ts +5 -1
  98. package/plugin/src/generators/init/generator.js +131 -25
  99. package/plugin/src/generators/init/generator.js.map +1 -1
  100. package/plugin/src/generators/init/schema.json +9 -2
  101. package/plugin/src/generators/utils.d.ts +2 -0
  102. package/plugin/src/generators/utils.js +35 -0
  103. package/plugin/src/generators/utils.js.map +1 -0
  104. package/plugin/src/generators/version.d.ts +17 -0
  105. package/plugin/src/generators/version.js +21 -0
  106. package/plugin/src/generators/version.js.map +1 -0
  107. package/plugin/src/index.d.ts +0 -3
  108. package/plugin/src/index.js +0 -9
  109. package/plugin/src/index.js.map +1 -1
  110. package/testing/README.md +3 -0
  111. package/testing/index.d.ts +2 -0
  112. package/testing/lib/test-bed.d.ts +38 -0
  113. package/testing/lib/test-canvas.d.ts +11 -0
  114. package/testing/lib/utils/mock-canvas.d.ts +5 -0
  115. package/testing/lib/utils/web-gl-rendering-context.d.ts +16 -0
  116. package/testing/package.json +3 -0
  117. package/web-types.json +1 -1
  118. package/esm2022/lib/before-render.mjs +0 -13
  119. package/esm2022/lib/directives/common.mjs +0 -41
  120. package/esm2022/lib/directives/key.mjs +0 -29
  121. package/esm2022/lib/directives/parent.mjs +0 -35
  122. package/esm2022/lib/directives/repeat.mjs +0 -17
  123. package/esm2022/lib/ref.mjs +0 -48
  124. package/esm2022/lib/renderer/store.mjs +0 -405
  125. package/esm2022/lib/utils/assert-injection-context.mjs +0 -14
  126. package/esm2022/lib/utils/create-injection-token.mjs +0 -47
  127. package/esm2022/lib/utils/safe-detect-changes.mjs +0 -17
  128. package/lib/directives/common.d.ts +0 -15
  129. package/lib/directives/key.d.ts +0 -10
  130. package/lib/directives/parent.d.ts +0 -11
  131. package/lib/directives/repeat.d.ts +0 -7
  132. package/lib/ref.d.ts +0 -8
  133. package/lib/renderer/store.d.ts +0 -67
  134. package/lib/utils/assert-injection-context.d.ts +0 -2
  135. package/lib/utils/create-injection-token.d.ts +0 -27
  136. package/lib/utils/safe-detect-changes.d.ts +0 -2
  137. package/plugin/src/generators/init-postprocessing/compat.js.map +0 -1
  138. package/plugin/src/generators/init-postprocessing/generator.d.ts +0 -2
  139. package/plugin/src/generators/init-postprocessing/generator.js +0 -20
  140. package/plugin/src/generators/init-postprocessing/generator.js.map +0 -1
  141. package/plugin/src/generators/init-postprocessing/schema.json +0 -6
  142. package/plugin/src/generators/init-soba/compat.d.ts +0 -2
  143. package/plugin/src/generators/init-soba/compat.js +0 -6
  144. package/plugin/src/generators/init-soba/compat.js.map +0 -1
  145. package/plugin/src/generators/init-soba/generator.d.ts +0 -2
  146. package/plugin/src/generators/init-soba/generator.js +0 -24
  147. package/plugin/src/generators/init-soba/generator.js.map +0 -1
  148. package/plugin/src/generators/init-soba/schema.json +0 -6
  149. package/plugin/src/generators/versions.d.ts +0 -9
  150. package/plugin/src/generators/versions.js +0 -13
  151. package/plugin/src/generators/versions.js.map +0 -1
  152. /package/plugin/src/generators/{init-postprocessing → add-soba}/compat.d.ts +0 -0
  153. /package/plugin/src/generators/{init-postprocessing → add-soba}/compat.js +0 -0
package/README.md CHANGED
@@ -1,7 +1,224 @@
1
- # core
1
+ # `angular-three`
2
2
 
3
- This library was generated with [Nx](https://nx.dev).
3
+ A custom Renderer for Angular 18+ that uses Three.js to render 3D scenes.
4
4
 
5
- ## Running unit tests
5
+ ## Compatibility
6
6
 
7
- Run `nx test core` to execute the unit tests.
7
+ Angular Three v2 is still in beta and aims to be compatible with Angular 17+.
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ npm install angular-three@beta ngxtension three
13
+ # yarn add angular-three@beta ngxtension three
14
+ # pnpm add angular-three@beta ngxtension three
15
+ ```
16
+
17
+ > Make sure to install `@types/three` as well
18
+
19
+ ## Usage
20
+
21
+ ```typescript
22
+ import { extend } from 'angular-three';
23
+ import { Mesh, BoxGeometry } from 'three';
24
+
25
+ extend({
26
+ Mesh, // makes ngt-mesh available
27
+ BoxGeometry, // makes ngt-box-geometry available
28
+ /* ... */
29
+ MyMesh: Mesh, // makes ngt-my-mesh available
30
+ });
31
+
32
+ // alternatively for demo purposes, you can use the following
33
+ // extend(THREE);
34
+ // This includes the entire THREE.js namespace
35
+
36
+ @Component({
37
+ // This Component is rendered in the Custom Renderer
38
+ standalone: true,
39
+ template: `
40
+ <ngt-mesh>
41
+ <ngt-box-geometry />
42
+ </ngt-mesh>
43
+ `,
44
+ schemas: [CUSTOM_ELEMENTS_SCHEMA], // required
45
+ changeDetection: ChangeDetectionStrategy.OnPush,
46
+ })
47
+ export class SceneGraph {}
48
+
49
+ @Component({
50
+ // This Component is rendered normally in Angular.
51
+ selector: 'app-my-experience',
52
+ standalone: true,
53
+ template: `
54
+ <ngt-canvas [sceneGraph]="SceneGraph" />
55
+ `,
56
+ imports: [NgtCanvas],
57
+ })
58
+ export class MyExperience {
59
+ SceneGraph = SceneGraph;
60
+ }
61
+ ```
62
+
63
+ > The Component that renders `NgtCanvas` (`MyExperience` in this case) controls the dimensions of the canvas so make sure to style it accordingly.
64
+
65
+ ### Inputs
66
+
67
+ - `sceneGraph: Type<any>`: **required**. This is the Component that renders your 3D Scene graph. It must be a standalone Component.
68
+ - `gl?: NgtGLOptions`: This input allows you to configure the WebGL renderer used by Angular Three. You can provide a THREE.js renderer instance, properties for the default renderer, or a function that returns a renderer based on the canvas element.
69
+ - `size?: NgtSize`: Specifies the dimensions of the renderer. If omitted, the component will automatically measure the canvas dimensions.
70
+ - `shadows?: boolean | 'basic' | 'percentage' | 'soft' | 'variance' | Partial<WebGLShadowMap>`: Enables or disables shadows in the scene. You can provide a boolean value to toggle shadows on or off, or use specific strings to control the shadow type. Additionally, you can pass partial WebGLShadowMap options for fine-tuning.
71
+ - `legacy?: boolean`: Disables three r139 color management when set to true.
72
+ - `linear?: boolean`: Switches off automatic sRGB color space and gamma correction when set to true.
73
+ - `flat?: boolean`: Uses THREE.NoToneMapping instead of THREE.ACESFilmicToneMapping when set to true.
74
+ - `orthographic?: boolean`: Creates an orthographic camera instead of a perspective camera when set to true.
75
+ - `frameloop?: 'always' | 'demand' | 'never'`: Controls the rendering mode. 'always' renders continuously, 'demand' renders only on state changes, and 'never' gives you manual control over rendering.
76
+ - `performance?: Partial<Omit<NgtPerformance, 'regress'>>`: Allows you to configure performance options for adaptive performance.
77
+ - `dpr?: NgtDpr`: Sets the target pixel ratio. You can provide a single number or a range [min, max].
78
+ - `raycaster?: Partial<Raycaster>`: Configures the default raycaster used for interaction.
79
+ - `scene?: Scene | Partial<Scene>`: Provides a THREE.js scene instance or properties to create a default scene.
80
+ - `camera?: NgtCamera | Partial<NgtObject3DNode<Camera>>`: Provides a THREE.js camera instance or properties to create a default camera. You can also set the manual property to true to take control of the camera projection.
81
+ - `events?: (store: NgtSignalStore<NgtState>) => NgtEventManager<HTMLElement>`: Allows you to customize the event manager for handling pointer events.
82
+ - `eventSource?: HTMLElement | ElementRef<HTMLElement>`: Specifies the target element where events are subscribed. By default, it's the div wrapping the canvas.
83
+ - `eventPrefix?: 'offset' | 'client' | 'page' | 'layer' | 'screen'`: Sets the event prefix used for canvas pointer events.
84
+ - `lookAt?: Vector3 | Parameters<Vector3['set']>`: Defines the default coordinate for the camera to look at.
85
+
86
+ ### Outputs
87
+
88
+ - `created`: Emitted when the canvas is created.
89
+ - `pointerMissed`: Emitted when a pointer event is not captured by any element (aka clicking on the canvas)
90
+
91
+ ## Intellisense support
92
+
93
+ Since Angular Three is a custom Renderer, the elements are not recognized by the Angular Language Service.
94
+
95
+ ### Jetbrains IDE
96
+
97
+ The consumers can add `web-types` property to the workspace's `package.json` and set the value to `node_modules/angular-three/web-types.json`.
98
+
99
+ ```json
100
+ {
101
+ "web-types": "node_modules/angular-three/web-types.json"
102
+ }
103
+ ```
104
+
105
+ ### VSCode
106
+
107
+ Similarly, there's `node_modules/angular-three/metadata.json` file that can be used to provide intellisense support for VSCode users.
108
+
109
+ The consumers can enable it via `html.customData` in their `settings.json` file.
110
+
111
+ ```json
112
+ {
113
+ "html.customData": ["node_modules/angular-three/metadata.json"]
114
+ }
115
+ ```
116
+
117
+ ## Input Bindings
118
+
119
+ Input bindings for `ngt-*` elements work the same way as they do in Angular.
120
+
121
+ > You can consult THREE.js documentation on what is available on the entities
122
+
123
+ ```html
124
+ <ngt-mesh [position]="[x, y, z]" [rotation]="[x, y, z]">
125
+ <ngt-mesh-basic-material color="hotpink" />
126
+ </ngt-mesh>
127
+ ```
128
+
129
+ ## Events
130
+
131
+ Angular Three Custom Renderer supports the following events on applicable objects (`ngt-mesh`, `ngt-group` etc...)
132
+
133
+ ```
134
+ 'click',
135
+ 'contextmenu',
136
+ 'dblclick',
137
+ 'pointerup',
138
+ 'pointerdown',
139
+ 'pointerover',
140
+ 'pointerout',
141
+ 'pointerenter',
142
+ 'pointerleave',
143
+ 'pointermove',
144
+ 'pointermissed',
145
+ 'pointercancel',
146
+ 'wheel',
147
+ ```
148
+
149
+ In addition, there are 2 special events that the consumers can listen to;
150
+
151
+ - `attached`: when the element is attached to its parent
152
+ - `updated`: when the element properties are updated
153
+
154
+ ## Constructor Arguments
155
+
156
+ In THREE.js, there are some entities that require the consumers to dispose and recreate them if their parameters change; like the Geometries.
157
+
158
+ To handle this, Angular Three exports a `NgtArgs` structural directive that always accepts an Array of values. The consumers can consult THREE.js documentations to know what values are applicable for what entities and their order.
159
+
160
+ ```html
161
+ <!-- for example, new BoxGeometry(width, height, depth) -->
162
+ <ngt-box-geometry *args="[width, height, depth]" />
163
+ ```
164
+
165
+ `NgtArgs`, as a structural directive, ensures to create a new instance of the entity when the value changes
166
+
167
+ ## Parameters
168
+
169
+ Beside the normal properties that `ngt-*` elements can accept for Input bindings, the consumers can also pass a `parameters` object to a special property `[parameters]` on the elements. This parameters object will be used to apply the properties on the entity.
170
+
171
+ ```html
172
+ <!-- instead of <ngt-mesh [position]="[x, y, z]" [scale]="scale" /> -->
173
+ <ngt-mesh [parameters]="{ position: [x, y, z], scale }" />
174
+ ```
175
+
176
+ ## Element Queries
177
+
178
+ The consumers can query for the THREE.js entities like they would do in normal HTML Angular Template.
179
+
180
+ ```ts
181
+ @Component({
182
+ template: `
183
+ <ngt-mesh #mesh></ngt-mesh>
184
+ `,
185
+ })
186
+ export class Box {
187
+ mesh = viewChild.required<ElementRef<Mesh>>('mesh');
188
+ // notice that it is an ElementRef of THREE.Mesh instead of an HTMLElement
189
+ }
190
+ ```
191
+
192
+ ## Animation Loop
193
+
194
+ In order to participate in the animation loop, use `injectBeforeRender` inject function
195
+
196
+ ```ts
197
+ @Component({
198
+ /*...*/
199
+ })
200
+ export class Box {
201
+ mesh = viewChild.required<ElementRef<Mesh>>('mesh');
202
+
203
+ constructor() {
204
+ injectBeforeRender(() => {
205
+ // runs every frame
206
+ const mesh = this.mesh().nativeElement;
207
+ mesh.rotation.x += 0.01;
208
+ });
209
+ }
210
+ }
211
+ ```
212
+
213
+ ## Store
214
+
215
+ Angular Three keeps track of its state via an internal store. The consumers can access this store via the `injectStore` inject function
216
+
217
+ ```ts
218
+ export class Box {
219
+ store = injectStore();
220
+ viewport = this.store.select('viewport'); // Signal<NgtViewport>
221
+ camera = this.store.select('camera'); // Signal<NgtCamera> - the default camera
222
+ /* many more properties */
223
+ }
224
+ ```
package/esm2022/index.mjs CHANGED
@@ -1,26 +1,25 @@
1
- export * from './lib/before-render';
2
1
  export * from './lib/canvas';
3
2
  export * from './lib/directives/args';
4
- export * from './lib/directives/key';
5
- export * from './lib/directives/parent';
6
- export * from './lib/directives/repeat';
3
+ export * from './lib/directives/selection';
4
+ export * from './lib/html';
7
5
  export * from './lib/instance';
8
6
  export * from './lib/loader';
9
- export { addAfterEffect, addEffect, addTail } from './lib/loop';
10
- export { NgtPortal, NgtPortalContent } from './lib/portal';
11
- export * from './lib/ref';
7
+ export * from './lib/loop';
8
+ export * from './lib/pipes/hexify';
9
+ export * from './lib/portal';
12
10
  export * from './lib/renderer';
11
+ export * from './lib/roots';
13
12
  export * from './lib/routed-scene';
14
13
  export * from './lib/store';
15
- export * from './lib/three-types';
16
- export * from './lib/types';
17
14
  export * from './lib/utils/apply-props';
18
- export * from './lib/utils/assert-injection-context';
19
- export { createAttachFunction } from './lib/utils/attach';
20
- export * from './lib/utils/create-injection-token';
15
+ export * from './lib/utils/attach';
16
+ export * from './lib/utils/before-render';
21
17
  export * from './lib/utils/is';
22
18
  export * from './lib/utils/make';
23
- export * from './lib/utils/safe-detect-changes';
19
+ export * from './lib/utils/non-nullish';
20
+ export * from './lib/utils/object-events';
21
+ export * from './lib/utils/parameters';
22
+ export * from './lib/utils/resolve-ref';
24
23
  export * from './lib/utils/signal-store';
25
24
  export * from './lib/utils/update';
26
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2NvcmUvc3JjL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyx5QkFBeUIsQ0FBQztBQUV4QyxjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsY0FBYyxDQUFDO0FBQzdCLE9BQU8sRUFBRSxjQUFjLEVBQUUsU0FBUyxFQUFFLE9BQU8sRUFBRSxNQUFNLFlBQVksQ0FBQztBQUNoRSxPQUFPLEVBQUUsU0FBUyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sY0FBYyxDQUFDO0FBQzNELGNBQWMsV0FBVyxDQUFDO0FBQzFCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsYUFBYSxDQUFDO0FBQzVCLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUMxRCxjQUFjLG9DQUFvQyxDQUFDO0FBQ25ELGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbGliL2JlZm9yZS1yZW5kZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FudmFzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2RpcmVjdGl2ZXMvYXJncyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL2tleSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL3BhcmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL3JlcGVhdCc7XG5leHBvcnQgeyB0eXBlIE5ndENhbWVyYSwgdHlwZSBOZ3RUaHJlZUV2ZW50IH0gZnJvbSAnLi9saWIvZXZlbnRzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2luc3RhbmNlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2xvYWRlcic7XG5leHBvcnQgeyBhZGRBZnRlckVmZmVjdCwgYWRkRWZmZWN0LCBhZGRUYWlsIH0gZnJvbSAnLi9saWIvbG9vcCc7XG5leHBvcnQgeyBOZ3RQb3J0YWwsIE5ndFBvcnRhbENvbnRlbnQgfSBmcm9tICcuL2xpYi9wb3J0YWwnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvcmVmJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3JlbmRlcmVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3JvdXRlZC1zY2VuZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zdG9yZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi90aHJlZS10eXBlcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi90eXBlcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9hcHBseS1wcm9wcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9hc3NlcnQtaW5qZWN0aW9uLWNvbnRleHQnO1xuZXhwb3J0IHsgY3JlYXRlQXR0YWNoRnVuY3Rpb24gfSBmcm9tICcuL2xpYi91dGlscy9hdHRhY2gnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvY3JlYXRlLWluamVjdGlvbi10b2tlbic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9pcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9tYWtlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzL3NhZmUtZGV0ZWN0LWNoYW5nZXMnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvc2lnbmFsLXN0b3JlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzL3VwZGF0ZSc7XG4iXX0=
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2NvcmUvc3JjL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsYUFBYSxDQUFDO0FBQzVCLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbGliL2NhbnZhcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL2FyZ3MnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9zZWxlY3Rpb24nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvaHRtbCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnN0YW5jZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9sb2FkZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbG9vcCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcy9oZXhpZnknO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvcG9ydGFsJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3JlbmRlcmVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3Jvb3RzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3JvdXRlZC1zY2VuZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zdG9yZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9hcHBseS1wcm9wcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9hdHRhY2gnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvYmVmb3JlLXJlbmRlcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9pcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9tYWtlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzL25vbi1udWxsaXNoJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzL29iamVjdC1ldmVudHMnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvcGFyYW1ldGVycyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9yZXNvbHZlLXJlZic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9zaWduYWwtc3RvcmUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvdXBkYXRlJztcblxuZXhwb3J0IHR5cGUgKiBmcm9tICcuL2xpYi90aHJlZS10eXBlcyc7XG5leHBvcnQgdHlwZSAqIGZyb20gJy4vbGliL3R5cGVzJztcbiJdfQ==