From f2d9ad7b8c8e5e9ce5372df46a3be7aaded086a5 Mon Sep 17 00:00:00 2001 From: Tim Deschryver <28659384+timdeschryver@users.noreply.github.com> Date: Thu, 6 Jun 2024 13:50:50 +0200 Subject: [PATCH 1/2] fix(signals): export DeepSignal --- modules/signals/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/signals/src/index.ts b/modules/signals/src/index.ts index 348f0849e1..b55ab411c7 100644 --- a/modules/signals/src/index.ts +++ b/modules/signals/src/index.ts @@ -10,3 +10,4 @@ export { withComputed } from './with-computed'; export { withHooks } from './with-hooks'; export { withMethods } from './with-methods'; export { withState } from './with-state'; +export { DeepSignal } from './deep-signal'; From 6536c3ad1bcbd9cb33efa99b465d66230f49f6e5 Mon Sep 17 00:00:00 2001 From: Tim Deschryver <28659384+timdeschryver@users.noreply.github.com> Date: Fri, 7 Jun 2024 09:32:52 +0200 Subject: [PATCH 2/2] refactor(signals): reorder exports --- modules/signals/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/signals/src/index.ts b/modules/signals/src/index.ts index b55ab411c7..e115ca9b1a 100644 --- a/modules/signals/src/index.ts +++ b/modules/signals/src/index.ts @@ -1,3 +1,4 @@ +export { DeepSignal } from './deep-signal'; export { getState } from './get-state'; export { PartialStateUpdater, patchState } from './patch-state'; export { signalState } from './signal-state'; @@ -10,4 +11,3 @@ export { withComputed } from './with-computed'; export { withHooks } from './with-hooks'; export { withMethods } from './with-methods'; export { withState } from './with-state'; -export { DeepSignal } from './deep-signal';