|
|
|
@ -3,7 +3,7 @@ import { DIRTY, LEGACY_PROPS, MAYBE_DIRTY } from '../internal/client/constants.j
|
|
|
|
import { user_pre_effect } from '../internal/client/reactivity/effects.js';
|
|
|
|
import { user_pre_effect } from '../internal/client/reactivity/effects.js';
|
|
|
|
import { mutable_source, set } from '../internal/client/reactivity/sources.js';
|
|
|
|
import { mutable_source, set } from '../internal/client/reactivity/sources.js';
|
|
|
|
import { hydrate, mount, unmount } from '../internal/client/render.js';
|
|
|
|
import { hydrate, mount, unmount } from '../internal/client/render.js';
|
|
|
|
import { active_effect, get, set_signal_status } from '../internal/client/runtime.js';
|
|
|
|
import { active_effect, get } from '../internal/client/runtime.js';
|
|
|
|
import { flushSync } from '../internal/client/reactivity/batch.js';
|
|
|
|
import { flushSync } from '../internal/client/reactivity/batch.js';
|
|
|
|
import { define_property, is_array } from '../internal/shared/utils.js';
|
|
|
|
import { define_property, is_array } from '../internal/shared/utils.js';
|
|
|
|
import * as e from '../internal/client/errors.js';
|
|
|
|
import * as e from '../internal/client/errors.js';
|
|
|
|
@ -12,6 +12,7 @@ import { DEV } from 'esm-env';
|
|
|
|
import { FILENAME } from '../constants.js';
|
|
|
|
import { FILENAME } from '../constants.js';
|
|
|
|
import { component_context, dev_current_component_function } from '../internal/client/context.js';
|
|
|
|
import { component_context, dev_current_component_function } from '../internal/client/context.js';
|
|
|
|
import { async_mode_flag } from '../internal/flags/index.js';
|
|
|
|
import { async_mode_flag } from '../internal/flags/index.js';
|
|
|
|
|
|
|
|
import { set_signal_status } from '../internal/client/reactivity/status.js';
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Takes the same options as a Svelte 4 component and the component function and returns a Svelte 4 compatible component.
|
|
|
|
* Takes the same options as a Svelte 4 component and the component function and returns a Svelte 4 compatible component.
|
|
|
|
|