solid-js 1.8.16 → 1.8.18

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.
@@ -21,7 +21,7 @@ export declare const hydrate: typeof hydrateCore;
21
21
  *
22
22
  * Useful for inserting modals and tooltips outside of an cropping layout. If no mount point is given, the portal is inserted in document.body; it is wrapped in a `<div>` unless the target is document.head or `isSVG` is true. setting `useShadow` to true places the element in a shadow root to isolate styles.
23
23
  *
24
- * @description https://www.solidjs.com/docs/latest/api#portal
24
+ * @description https://docs.solidjs.com/reference/components/portal
25
25
  */
26
26
  export declare function Portal<T extends boolean = false, S extends boolean = false>(props: {
27
27
  mount?: Node;
@@ -49,6 +49,6 @@ export type DynamicProps<T extends ValidComponent, P = ComponentProps<T>> = {
49
49
  * ```typescript
50
50
  * <Dynamic component={multiline() ? 'textarea' : 'input'} value={value()} />
51
51
  * ```
52
- * @description https://www.solidjs.com/docs/latest/api#dynamic
52
+ * @description https://docs.solidjs.com/reference/components/dynamic
53
53
  */
54
54
  export declare function Dynamic<T extends ValidComponent>(props: DynamicProps<T>): JSX.Element;