|
1 | 1 | export { _noopQrl, _noopQrlDEV, _regSymbol } from './shared/qrl/qrl';
|
2 |
| -export { _walkJSX } from './ssr/ssr-render-jsx'; |
3 |
| -export { _SharedContainer } from './shared/shared-container'; |
4 |
| -export { queueQRL as _run } from './client/queue-qrl'; |
5 |
| -export { scheduleTask as _task } from './use/use-task'; |
6 |
| -export { _wrapSignal, _wrapProp, _wrapStore } from './reactive-primitives/internal-api'; |
7 |
| -export { _restProps } from './shared/utils/prop'; |
8 |
| -export { _IMMUTABLE } from './shared/utils/constants'; |
9 |
| -export { _CONST_PROPS, _VAR_PROPS } from './shared/utils/constants'; |
10 |
| -export { _weakSerialize } from './shared/utils/serialize-utils'; |
11 |
| -export { verifySerializable as _verifySerializable } from './shared/utils/serialize-utils'; |
| 2 | +// ^ keep this above to avoid circular dependency issues |
| 3 | + |
12 | 4 | export {
|
13 |
| - _getContextElement, |
14 |
| - _getContextEvent, |
15 |
| - _jsxBranch, |
16 |
| - _waitUntilRendered, |
17 |
| -} from './use/use-core'; |
18 |
| -export { _jsxSorted, _jsxSplit, isJSXNode as _isJSXNode } from './shared/jsx/jsx-runtime'; |
19 |
| -export { _fnSignal } from './shared/qrl/inlined-fn'; |
| 5 | + DomContainer as _DomContainer, |
| 6 | + getDomContainer as _getDomContainer, |
| 7 | +} from './client/dom-container'; |
| 8 | +export { queueQRL as _run } from './client/queue-qrl'; |
20 | 9 | export type {
|
21 | 10 | ContainerElement as _ContainerElement,
|
| 11 | + ElementVNode as _ElementVNode, |
| 12 | + QDocument as _QDocument, |
| 13 | + TextVNode as _TextVNode, |
| 14 | + VirtualVNode as _VirtualVNode, |
22 | 15 | VNode as _VNode,
|
23 | 16 | VNodeFlags as _VNodeFlags,
|
24 |
| - VirtualVNode as _VirtualVNode, |
25 |
| - TextVNode as _TextVNode, |
26 |
| - QDocument as _QDocument, |
27 |
| - ElementVNode as _ElementVNode, |
28 | 17 | } from './client/types';
|
| 18 | +export { vnode_toString as _vnode_toString } from './client/vnode'; |
| 19 | +export { _wrapProp, _wrapSignal, _wrapStore } from './reactive-primitives/internal-api'; |
| 20 | +export { SubscriptionData as _SubscriptionData } from './reactive-primitives/subscription-data'; |
| 21 | +export { _EFFECT_BACK_REF } from './reactive-primitives/types'; |
29 | 22 | export {
|
30 | 23 | isStringifiable as _isStringifiable,
|
31 | 24 | type Stringifiable as _Stringifiable,
|
32 | 25 | } from './shared-types';
|
33 | 26 | export {
|
34 |
| - DomContainer as _DomContainer, |
35 |
| - getDomContainer as _getDomContainer, |
36 |
| -} from './client/dom-container'; |
| 27 | + isJSXNode as _isJSXNode, |
| 28 | + _jsxC, |
| 29 | + _jsxQ, |
| 30 | + _jsxS, |
| 31 | + _jsxSorted, |
| 32 | + _jsxSplit, |
| 33 | +} from './shared/jsx/jsx-runtime'; |
| 34 | +export { _fnSignal } from './shared/qrl/inlined-fn'; |
| 35 | +export { _SharedContainer } from './shared/shared-container'; |
| 36 | +export { |
| 37 | + _deserialize, |
| 38 | + dumpState as _dumpState, |
| 39 | + preprocessState as _preprocessState, |
| 40 | + _serialize, |
| 41 | +} from './shared/shared-serialization'; |
| 42 | +export { _CONST_PROPS, _IMMUTABLE, _VAR_PROPS } from './shared/utils/constants'; |
37 | 43 | export { EMPTY_ARRAY as _EMPTY_ARRAY } from './shared/utils/flyweight';
|
38 |
| -export { _serialize, _deserialize } from './shared/shared-serialization'; |
39 |
| -export { _jsxQ, _jsxC, _jsxS } from './shared/jsx/jsx-runtime'; |
40 |
| -export { _EFFECT_BACK_REF } from './reactive-primitives/types'; |
41 |
| -export { SubscriptionData as _SubscriptionData } from './reactive-primitives/subscription-data'; |
| 44 | +export { _restProps } from './shared/utils/prop'; |
| 45 | +export { |
| 46 | + verifySerializable as _verifySerializable, |
| 47 | + _weakSerialize, |
| 48 | +} from './shared/utils/serialize-utils'; |
| 49 | +export { _walkJSX } from './ssr/ssr-render-jsx'; |
| 50 | +export { |
| 51 | + _getContextElement, |
| 52 | + _getContextEvent, |
| 53 | + _jsxBranch, |
| 54 | + _waitUntilRendered, |
| 55 | +} from './use/use-core'; |
| 56 | +export { scheduleTask as _task } from './use/use-task'; |
0 commit comments