angular-three 1.0.0-beta.10 → 1.0.0-beta.11
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/esm2020/index.mjs +2 -1
- package/esm2020/lib/utils/attach.mjs +4 -1
- package/fesm2015/angular-three.mjs +4 -1
- package/fesm2015/angular-three.mjs.map +1 -1
- package/fesm2020/angular-three.mjs +4 -1
- package/fesm2020/angular-three.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/utils/attach.d.ts +7 -1
- package/package.json +1 -1
|
@@ -1353,6 +1353,9 @@ function assignEmpty(obj, base) {
|
|
|
1353
1353
|
obj[base] = {};
|
|
1354
1354
|
}
|
|
1355
1355
|
}
|
|
1356
|
+
function createAttachFunction(cb) {
|
|
1357
|
+
return (parent, child, store) => cb({ parent, child, store });
|
|
1358
|
+
}
|
|
1356
1359
|
|
|
1357
1360
|
const SPECIAL_DOM_TAG = {
|
|
1358
1361
|
NGT_PORTAL: 'ngt-portal',
|
|
@@ -2630,5 +2633,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
2630
2633
|
* Generated bundle index. Do not edit.
|
|
2631
2634
|
*/
|
|
2632
2635
|
|
|
2633
|
-
export { NGT_CATALOGUE, NgtArgs, NgtCanvas, NgtPush, NgtRepeat, NgtRxStore, NgtStore, checkNeedsUpdate, checkUpdate, extend, getLocalState, injectBeforeRender, injectNgtDestroy, injectNgtLoader, injectNgtRef, invalidateInstance, is, prepare, rootStateMap, startWithUndefined, updateCamera };
|
|
2636
|
+
export { NGT_CATALOGUE, NgtArgs, NgtCanvas, NgtPush, NgtRepeat, NgtRxStore, NgtStore, checkNeedsUpdate, checkUpdate, createAttachFunction, extend, getLocalState, injectBeforeRender, injectNgtDestroy, injectNgtLoader, injectNgtRef, invalidateInstance, is, prepare, rootStateMap, startWithUndefined, updateCamera };
|
|
2634
2637
|
//# sourceMappingURL=angular-three.mjs.map
|