builder

Visual Development for React, Vue, Svelte, Qwik, and more

MIT License

Downloads
614.4K
Stars
7.4K
Committers
91

Bot releases are hidden (Show)

builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • f3c5ff3: Fix: isPreviewing logic on the server, and make usage of isEditing unnecessary.
  • 46bd611: Feature: add support for hover animations.
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • f3c5ff3: Fix: isPreviewing logic on the server, and make usage of isEditing unnecessary.
  • 46bd611: Feature: add support for hover animations.
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • f3c5ff3: Fix: isPreviewing logic on the server, and make usage of isEditing unnecessary.
  • 46bd611: Feature: add support for hover animations.
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • f3c5ff3: Fix: isPreviewing logic on the server, and make usage of isEditing unnecessary.
  • 46bd611: Feature: add support for hover animations.
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • f3c5ff3: Fix: isPreviewing logic on the server, and make usage of isEditing unnecessary.
  • 46bd611: Feature: add support for hover animations.
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • f3c5ff3: Fix: isPreviewing logic on the server, and make usage of isEditing unnecessary.
  • 46bd611: Feature: add support for hover animations.
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • 7bad8d9: Fix: better error-logging for isolated-vm import.
  • d8e08ae: Fix: fetchOneEntry prop types of fetch and fetchOptions
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • 7bad8d9: Fix: better error-logging for isolated-vm import.
  • d8e08ae: Fix: fetchOneEntry prop types of fetch and fetchOptions
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • 7bad8d9: Fix: better error-logging for isolated-vm import.
  • d8e08ae: Fix: fetchOneEntry prop types of fetch and fetchOptions
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • 7bad8d9: Fix: better error-logging for isolated-vm import.
  • d8e08ae: Fix: fetchOneEntry prop types of fetch and fetchOptions
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • d8e08ae: Feature: add @builder.io/sdk-react/node/init entry point with initializeNodeRuntime export that sets the IVM instance.

    This import should be called in a server-only location, such as:

    • The NextJS Pages router's _document.tsx:
    // _document.tsx
    import { Html, Head, Main, NextScript } from 'next/document';
    import { initializeNodeRuntime } from '@builder.io/sdk-react/node/init';
    initializeNodeRuntime();
    
    export default function Document() {
      return (
        <Html lang="en">
          <Head />
          <body>
            <Main />
            <NextScript />
          </body>
        </Html>
      );
    }
    
    • Your Remix route's loader responsible for fetching the page content from Builder.io:
    // ($slug)._index.tsx
    import { fetchOneEntry } from '@builder.io/sdk-react';
    
    export const loader = async ({ params, request }: LoaderFunctionArgs) => {
      // the import must be inside the loader itself.
      const { initializeNodeRuntime } = await import('@builder.io/sdk-react/node/init');
      await initializeNodeRuntime();
    
      const page = await fetchOneEntry({
        /** */
      });
    };
    
  • 7bad8d9: Fix: better error-logging for isolated-vm import.

  • d8e08ae: Fix: fetchOneEntry prop types of fetch and fetchOptions

builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • 7bad8d9: Fix: better error-logging for isolated-vm import.
  • d8e08ae: Fix: fetchOneEntry prop types of fetch and fetchOptions
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • 7bad8d9: Fix: better error-logging for isolated-vm import.
  • d8e08ae: Fix: fetchOneEntry prop types of fetch and fetchOptions
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • a309a4f: Fix: add missing key prop to Select block's option
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • a309a4f: Fix: add missing key prop to Select block's option
  • b668eae: Fix: Blocks styles not applying during SSR.
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • a309a4f: Fix: add missing key prop to Select block's option
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • a309a4f: Fix: add missing key prop to Select block's option
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • a309a4f: Fix: add missing key prop to Select block's option
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • a309a4f: Fix: add missing key prop to Select block's option
builder - @builder.io/[email protected]

Published by samijaber 6 months ago

Patch Changes

  • cde7c61: feat: export BuilderContext from sdks