angular-three 2.0.0-beta.9 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +221 -4
- package/esm2022/index.mjs +13 -14
- package/esm2022/lib/canvas.mjs +130 -197
- package/esm2022/lib/directives/args.mjs +46 -20
- package/esm2022/lib/directives/selection.mjs +65 -0
- package/esm2022/lib/dom/events.mjs +2 -2
- package/esm2022/lib/events.mjs +33 -31
- package/esm2022/lib/html.mjs +40 -0
- package/esm2022/lib/instance.mjs +43 -36
- package/esm2022/lib/loader.mjs +72 -36
- package/esm2022/lib/loop.mjs +29 -26
- package/esm2022/lib/pipes/hexify.mjs +67 -0
- package/esm2022/lib/portal.mjs +173 -193
- package/esm2022/lib/renderer/catalogue.mjs +3 -3
- package/esm2022/lib/renderer/constants.mjs +6 -6
- package/esm2022/lib/renderer/index.mjs +356 -217
- package/esm2022/lib/renderer/state.mjs +54 -0
- package/esm2022/lib/renderer/utils.mjs +120 -64
- package/esm2022/lib/roots.mjs +86 -62
- package/esm2022/lib/routed-scene.mjs +11 -8
- package/esm2022/lib/store.mjs +164 -195
- package/esm2022/lib/three-types.mjs +1 -1
- package/esm2022/lib/types.mjs +1 -1
- package/esm2022/lib/utils/apply-props.mjs +31 -28
- package/esm2022/lib/utils/attach.mjs +26 -12
- package/esm2022/lib/utils/before-render.mjs +12 -0
- package/esm2022/lib/utils/is.mjs +6 -5
- package/esm2022/lib/utils/make.mjs +19 -17
- package/esm2022/lib/utils/non-nullish.mjs +7 -0
- package/esm2022/lib/utils/object-events.mjs +91 -0
- package/esm2022/lib/utils/parameters.mjs +70 -0
- package/esm2022/lib/utils/resolve-ref.mjs +8 -0
- package/esm2022/lib/utils/signal-store.mjs +59 -60
- package/esm2022/lib/utils/update.mjs +8 -4
- package/esm2022/nativescript/angular-three-nativescript.mjs +5 -0
- package/esm2022/nativescript/index.mjs +2 -0
- package/esm2022/nativescript/lib/canvas.mjs +127 -0
- package/esm2022/testing/angular-three-testing.mjs +5 -0
- package/esm2022/testing/index.mjs +3 -0
- package/esm2022/testing/lib/test-bed.mjs +130 -0
- package/esm2022/testing/lib/test-canvas.mjs +45 -0
- package/esm2022/testing/lib/utils/mock-canvas.mjs +37 -0
- package/esm2022/testing/lib/utils/web-gl-rendering-context.mjs +752 -0
- package/fesm2022/angular-three-nativescript.mjs +134 -0
- package/fesm2022/angular-three-nativescript.mjs.map +1 -0
- package/fesm2022/angular-three-testing.mjs +966 -0
- package/fesm2022/angular-three-testing.mjs.map +1 -0
- package/fesm2022/angular-three.mjs +2271 -2306
- package/fesm2022/angular-three.mjs.map +1 -1
- package/index.d.ts +14 -14
- package/lib/canvas.d.ts +357 -96
- package/lib/directives/args.d.ts +14 -7
- package/lib/directives/selection.d.ts +17 -0
- package/lib/dom/events.d.ts +2 -3
- package/lib/events.d.ts +4 -80
- package/lib/html.d.ts +17 -0
- package/lib/instance.d.ts +3 -35
- package/lib/loader.d.ts +19 -7
- package/lib/loop.d.ts +11 -59
- package/lib/pipes/hexify.d.ts +20 -0
- package/lib/portal.d.ts +54 -48
- package/lib/renderer/catalogue.d.ts +7 -3
- package/lib/renderer/constants.d.ts +5 -5
- package/lib/renderer/index.d.ts +63 -4
- package/lib/renderer/state.d.ts +25 -0
- package/lib/renderer/utils.d.ts +10 -27
- package/lib/roots.d.ts +9 -7
- package/lib/store.d.ts +13 -141
- package/lib/three-types.d.ts +528 -147
- package/lib/types.d.ts +291 -0
- package/lib/utils/apply-props.d.ts +2 -3
- package/lib/utils/attach.d.ts +4 -6
- package/lib/{before-render.d.ts → utils/before-render.d.ts} +1 -1
- package/lib/utils/is.d.ts +13 -14
- package/lib/utils/make.d.ts +7 -13
- package/lib/utils/non-nullish.d.ts +4 -0
- package/lib/utils/object-events.d.ts +32 -0
- package/lib/utils/parameters.d.ts +20 -0
- package/lib/utils/resolve-ref.d.ts +2 -0
- package/lib/utils/signal-store.d.ts +13 -4
- package/lib/utils/update.d.ts +1 -1
- package/metadata.json +1 -1
- package/nativescript/README.md +5 -0
- package/nativescript/index.d.ts +1 -0
- package/nativescript/lib/canvas.d.ts +359 -0
- package/nativescript/package.json +3 -0
- package/package.json +65 -14
- package/plugin/generators.json +8 -30
- package/plugin/package.json +3 -3
- package/plugin/src/generators/add-soba/compat.js.map +1 -0
- package/plugin/src/generators/add-soba/generator.d.ts +3 -0
- package/plugin/src/generators/add-soba/generator.js +77 -0
- package/plugin/src/generators/add-soba/generator.js.map +1 -0
- package/plugin/src/generators/add-soba/schema.json +4 -0
- package/plugin/src/generators/init/compat.d.ts +1 -1
- package/plugin/src/generators/init/files/experience/experience.component.ts__tmpl__ +29 -0
- package/plugin/src/generators/init/generator.d.ts +5 -1
- package/plugin/src/generators/init/generator.js +131 -25
- package/plugin/src/generators/init/generator.js.map +1 -1
- package/plugin/src/generators/init/schema.json +9 -2
- package/plugin/src/generators/utils.d.ts +2 -0
- package/plugin/src/generators/utils.js +35 -0
- package/plugin/src/generators/utils.js.map +1 -0
- package/plugin/src/generators/version.d.ts +17 -0
- package/plugin/src/generators/version.js +21 -0
- package/plugin/src/generators/version.js.map +1 -0
- package/plugin/src/index.d.ts +0 -3
- package/plugin/src/index.js +0 -9
- package/plugin/src/index.js.map +1 -1
- package/testing/README.md +3 -0
- package/testing/index.d.ts +2 -0
- package/testing/lib/test-bed.d.ts +38 -0
- package/testing/lib/test-canvas.d.ts +11 -0
- package/testing/lib/utils/mock-canvas.d.ts +5 -0
- package/testing/lib/utils/web-gl-rendering-context.d.ts +16 -0
- package/testing/package.json +3 -0
- package/web-types.json +1 -1
- package/esm2022/lib/before-render.mjs +0 -13
- package/esm2022/lib/directives/common.mjs +0 -41
- package/esm2022/lib/directives/key.mjs +0 -29
- package/esm2022/lib/directives/parent.mjs +0 -35
- package/esm2022/lib/directives/repeat.mjs +0 -17
- package/esm2022/lib/ref.mjs +0 -48
- package/esm2022/lib/renderer/store.mjs +0 -405
- package/esm2022/lib/utils/assert-injection-context.mjs +0 -14
- package/esm2022/lib/utils/create-injection-token.mjs +0 -47
- package/esm2022/lib/utils/safe-detect-changes.mjs +0 -17
- package/lib/directives/common.d.ts +0 -15
- package/lib/directives/key.d.ts +0 -10
- package/lib/directives/parent.d.ts +0 -11
- package/lib/directives/repeat.d.ts +0 -7
- package/lib/ref.d.ts +0 -8
- package/lib/renderer/store.d.ts +0 -67
- package/lib/utils/assert-injection-context.d.ts +0 -2
- package/lib/utils/create-injection-token.d.ts +0 -27
- package/lib/utils/safe-detect-changes.d.ts +0 -2
- package/plugin/src/generators/init-cannon/compat.js.map +0 -1
- package/plugin/src/generators/init-cannon/generator.d.ts +0 -2
- package/plugin/src/generators/init-cannon/generator.js +0 -22
- package/plugin/src/generators/init-cannon/generator.js.map +0 -1
- package/plugin/src/generators/init-cannon/schema.json +0 -6
- package/plugin/src/generators/init-postprocessing/compat.d.ts +0 -2
- package/plugin/src/generators/init-postprocessing/compat.js +0 -6
- package/plugin/src/generators/init-postprocessing/compat.js.map +0 -1
- package/plugin/src/generators/init-postprocessing/generator.d.ts +0 -2
- package/plugin/src/generators/init-postprocessing/generator.js +0 -20
- package/plugin/src/generators/init-postprocessing/generator.js.map +0 -1
- package/plugin/src/generators/init-postprocessing/schema.json +0 -6
- package/plugin/src/generators/init-soba/compat.d.ts +0 -2
- package/plugin/src/generators/init-soba/compat.js +0 -6
- package/plugin/src/generators/init-soba/compat.js.map +0 -1
- package/plugin/src/generators/init-soba/generator.d.ts +0 -2
- package/plugin/src/generators/init-soba/generator.js +0 -24
- package/plugin/src/generators/init-soba/generator.js.map +0 -1
- package/plugin/src/generators/init-soba/schema.json +0 -6
- package/plugin/src/generators/versions.d.ts +0 -12
- package/plugin/src/generators/versions.js +0 -16
- package/plugin/src/generators/versions.js.map +0 -1
- /package/plugin/src/generators/{init-cannon → add-soba}/compat.d.ts +0 -0
- /package/plugin/src/generators/{init-cannon → add-soba}/compat.js +0 -0
package/README.md
CHANGED
|
@@ -1,7 +1,224 @@
|
|
|
1
|
-
#
|
|
1
|
+
# `angular-three`
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A custom Renderer for Angular 18+ that uses Three.js to render 3D scenes.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Compatibility
|
|
6
6
|
|
|
7
|
-
|
|
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/
|
|
5
|
-
export * from './lib/
|
|
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
|
|
10
|
-
export
|
|
11
|
-
export * from './lib/
|
|
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/
|
|
19
|
-
export
|
|
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/
|
|
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,
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2NvcmUvc3JjL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsYUFBYSxDQUFDO0FBQzVCLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbGliL2NhbnZhcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL2FyZ3MnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9zZWxlY3Rpb24nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvaHRtbCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9pbnN0YW5jZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9sb2FkZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbG9vcCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9waXBlcy9oZXhpZnknO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvcG9ydGFsJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3JlbmRlcmVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3Jvb3RzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3JvdXRlZC1zY2VuZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zdG9yZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9hcHBseS1wcm9wcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9hdHRhY2gnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvYmVmb3JlLXJlbmRlcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9pcyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9tYWtlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzL25vbi1udWxsaXNoJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3V0aWxzL29iamVjdC1ldmVudHMnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvcGFyYW1ldGVycyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9yZXNvbHZlLXJlZic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9zaWduYWwtc3RvcmUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXRpbHMvdXBkYXRlJztcblxuZXhwb3J0IHR5cGUgKiBmcm9tICcuL2xpYi90aHJlZS10eXBlcyc7XG5leHBvcnQgdHlwZSAqIGZyb20gJy4vbGliL3R5cGVzJztcbiJdfQ==
|