Răsfoiți Sursa

Remove schedule_update and schedule_update_any from prelude (#4128)

Craig 4 săptămâni în urmă
părinte
comite
49e44f583e
1 a modificat fișierele cu 9 adăugiri și 10 ștergeri
  1. 9 10
      packages/core/src/lib.rs

+ 9 - 10
packages/core/src/lib.rs

@@ -93,16 +93,15 @@ pub mod prelude {
         consume_context, consume_context_from_scope, current_owner, current_scope_id,
         fc_to_builder, force_all_dirty, generation, has_context, needs_update, needs_update_any,
         parent_scope, provide_context, provide_error_boundary, provide_root_context, queue_effect,
-        remove_future, schedule_update, schedule_update_any, spawn, spawn_forever,
-        spawn_isomorphic, suspend, suspense_context, throw_error, try_consume_context,
-        use_after_render, use_before_render, use_drop, use_hook, use_hook_with_cleanup, with_owner,
-        AnyValue, Attribute, Callback, Component, ComponentFunction, Context, Element,
-        ErrorBoundary, ErrorContext, Event, EventHandler, Fragment, HasAttributes,
-        IntoAttributeValue, IntoDynNode, OptionStringFromMarker, Properties, ReactiveContext,
-        RenderError, Runtime, RuntimeGuard, ScopeId, ScopeState, SuperFrom, SuperInto,
-        SuspendedFuture, SuspenseBoundary, SuspenseBoundaryProps, SuspenseContext,
-        SuspenseExtension, Task, Template, TemplateAttribute, TemplateNode, VNode, VNodeInner,
-        VirtualDom,
+        remove_future, spawn, spawn_forever, spawn_isomorphic, suspend, suspense_context,
+        throw_error, try_consume_context, use_after_render, use_before_render, use_drop, use_hook,
+        use_hook_with_cleanup, with_owner, AnyValue, Attribute, Callback, Component,
+        ComponentFunction, Context, Element, ErrorBoundary, ErrorContext, Event, EventHandler,
+        Fragment, HasAttributes, IntoAttributeValue, IntoDynNode, OptionStringFromMarker,
+        Properties, ReactiveContext, RenderError, Runtime, RuntimeGuard, ScopeId, ScopeState,
+        SuperFrom, SuperInto, SuspendedFuture, SuspenseBoundary, SuspenseBoundaryProps,
+        SuspenseContext, SuspenseExtension, Task, Template, TemplateAttribute, TemplateNode, VNode,
+        VNodeInner, VirtualDom,
     };
 }