@webflow/webflow-cli 1.6.12 → 1.7.0

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.
Files changed (66) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/LICENCE +11 -11
  3. package/dist/cloud-scaffolds/astro/.vscode/extensions.json +4 -0
  4. package/dist/cloud-scaffolds/astro/.vscode/launch.json +11 -0
  5. package/dist/cloud-scaffolds/astro/.vscode/settings.json +5 -0
  6. package/dist/cloud-scaffolds/astro/README.md +48 -0
  7. package/dist/cloud-scaffolds/astro/astro.config.mjs +27 -0
  8. package/dist/cloud-scaffolds/astro/package.json +25 -0
  9. package/dist/cloud-scaffolds/astro/public/.assetsignore +2 -0
  10. package/dist/cloud-scaffolds/astro/public/favicon.svg +9 -0
  11. package/dist/cloud-scaffolds/astro/src/assets/astro.svg +1 -0
  12. package/dist/cloud-scaffolds/astro/src/assets/background.svg +1 -0
  13. package/dist/cloud-scaffolds/astro/src/components/Welcome.astro +210 -0
  14. package/dist/cloud-scaffolds/astro/src/env.d.ts +6 -0
  15. package/dist/cloud-scaffolds/astro/src/layouts/Layout.astro +32 -0
  16. package/dist/cloud-scaffolds/astro/src/pages/index.astro +55 -0
  17. package/dist/cloud-scaffolds/astro/tsconfig.json +17 -0
  18. package/dist/cloud-scaffolds/astro/webflow.json +12 -0
  19. package/dist/cloud-scaffolds/astro/worker-configuration.d.ts +4 -0
  20. package/dist/cloud-scaffolds/astro/wrangler.jsonc +54 -0
  21. package/dist/cloud-scaffolds/nextjs/.vscode/settings.json +5 -0
  22. package/dist/cloud-scaffolds/nextjs/README.md +26 -0
  23. package/dist/cloud-scaffolds/nextjs/cloudflare-env.d.ts +5 -0
  24. package/dist/cloud-scaffolds/nextjs/eslint.config.mjs +16 -0
  25. package/dist/cloud-scaffolds/nextjs/next.config.ts +10 -0
  26. package/dist/cloud-scaffolds/nextjs/open-next.config.ts +9 -0
  27. package/dist/cloud-scaffolds/nextjs/package.json +33 -0
  28. package/dist/cloud-scaffolds/nextjs/postcss.config.mjs +5 -0
  29. package/dist/cloud-scaffolds/nextjs/public/file.svg +1 -0
  30. package/dist/cloud-scaffolds/nextjs/public/globe.svg +1 -0
  31. package/dist/cloud-scaffolds/nextjs/public/next.svg +1 -0
  32. package/dist/cloud-scaffolds/nextjs/public/window.svg +1 -0
  33. package/dist/cloud-scaffolds/nextjs/src/app/favicon.ico +0 -0
  34. package/dist/cloud-scaffolds/nextjs/src/app/globals.css +26 -0
  35. package/dist/cloud-scaffolds/nextjs/src/app/layout.tsx +41 -0
  36. package/dist/cloud-scaffolds/nextjs/src/app/page.tsx +57 -0
  37. package/dist/cloud-scaffolds/nextjs/tsconfig.json +30 -0
  38. package/dist/cloud-scaffolds/nextjs/webflow.json +9 -0
  39. package/dist/cloud-scaffolds/nextjs/wrangler.jsonc +54 -0
  40. package/dist/{scaffolds → extension-scaffolds}/default/README.md +1 -1
  41. package/dist/{scaffolds/typescript-alt → extension-scaffolds/default}/package.json +1 -1
  42. package/dist/{scaffolds → extension-scaffolds}/react/README.md +1 -1
  43. package/dist/{scaffolds → extension-scaffolds}/react/package.json +1 -1
  44. package/dist/{scaffolds → extension-scaffolds}/react/src/index.tsx +5 -2
  45. package/dist/{scaffolds → extension-scaffolds}/typescript-alt/README.md +1 -1
  46. package/dist/{scaffolds/default → extension-scaffolds/typescript-alt}/package.json +1 -2
  47. package/dist/index.js +958 -882
  48. package/package.json +10 -5
  49. /package/dist/{scaffolds → extension-scaffolds}/default/.eslintrc +0 -0
  50. /package/dist/{scaffolds → extension-scaffolds}/default/public/index.html +0 -0
  51. /package/dist/{scaffolds → extension-scaffolds}/default/public/styles.css +0 -0
  52. /package/dist/{scaffolds → extension-scaffolds}/default/src/index.ts +0 -0
  53. /package/dist/{scaffolds → extension-scaffolds}/default/tsconfig.json +0 -0
  54. /package/dist/{scaffolds → extension-scaffolds}/default/webflow.json +0 -0
  55. /package/dist/{scaffolds → extension-scaffolds}/react/.eslintrc +0 -0
  56. /package/dist/{scaffolds → extension-scaffolds}/react/public/index.html +0 -0
  57. /package/dist/{scaffolds → extension-scaffolds}/react/public/styles.css +0 -0
  58. /package/dist/{scaffolds → extension-scaffolds}/react/tsconfig.json +0 -0
  59. /package/dist/{scaffolds → extension-scaffolds}/react/webflow.json +0 -0
  60. /package/dist/{scaffolds → extension-scaffolds}/react/webpack.config.mjs +0 -0
  61. /package/dist/{scaffolds → extension-scaffolds}/typescript-alt/.eslintrc +0 -0
  62. /package/dist/{scaffolds → extension-scaffolds}/typescript-alt/public/index.html +0 -0
  63. /package/dist/{scaffolds → extension-scaffolds}/typescript-alt/public/styles.css +0 -0
  64. /package/dist/{scaffolds → extension-scaffolds}/typescript-alt/src/index.ts +0 -0
  65. /package/dist/{scaffolds → extension-scaffolds}/typescript-alt/tsconfig.json +0 -0
  66. /package/dist/{scaffolds → extension-scaffolds}/typescript-alt/webflow.json +0 -0
@@ -0,0 +1,10 @@
1
+ import type { NextConfig } from "next";
2
+
3
+ const nextConfig: NextConfig = {
4
+ basePath: "CLOUD_MOUNT_PATH",
5
+ };
6
+
7
+ export default nextConfig;
8
+ // added by create cloudflare to enable calling `getCloudflareContext()` in `next dev`
9
+ import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
10
+ initOpenNextCloudflareForDev();
@@ -0,0 +1,9 @@
1
+ import { defineCloudflareConfig } from "@opennextjs/cloudflare";
2
+
3
+ export default defineCloudflareConfig({
4
+ // Uncomment to enable R2 cache,
5
+ // It should be imported as:
6
+ // `import r2IncrementalCache from "@opennextjs/cloudflare/overrides/incremental-cache/r2-incremental-cache";`
7
+ // See https://opennext.js.org/cloudflare/caching for more details
8
+ // incrementalCache: r2IncrementalCache,
9
+ });
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "nextjs",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "dev": "next dev",
7
+ "build": "next build",
8
+ "start": "next start",
9
+ "lint": "next lint",
10
+ "deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
11
+ "preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
12
+ "cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
13
+ },
14
+ "dependencies": {
15
+ "next": "15.2.5",
16
+ "react": "^19.0.0",
17
+ "react-dom": "^19.0.0"
18
+ },
19
+ "devDependencies": {
20
+ "@cloudflare/workers-types": "^4.20250415.0",
21
+ "@eslint/eslintrc": "^3",
22
+ "@opennextjs/cloudflare": "~1.0.0-beta.0 || ^1.0.0",
23
+ "@tailwindcss/postcss": "^4",
24
+ "@types/node": "^20",
25
+ "@types/react": "^19",
26
+ "@types/react-dom": "^19",
27
+ "eslint": "^9",
28
+ "eslint-config-next": "15.2.5",
29
+ "tailwindcss": "^4",
30
+ "typescript": "^5",
31
+ "wrangler": "^4.11.1"
32
+ }
33
+ }
@@ -0,0 +1,5 @@
1
+ const config = {
2
+ plugins: ["@tailwindcss/postcss"],
3
+ };
4
+
5
+ export default config;
@@ -0,0 +1 @@
1
+ <svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>
@@ -0,0 +1,26 @@
1
+ @import "tailwindcss";
2
+
3
+ :root {
4
+ --background: #ffffff;
5
+ --foreground: #171717;
6
+ }
7
+
8
+ @theme inline {
9
+ --color-background: var(--background);
10
+ --color-foreground: var(--foreground);
11
+ --font-sans: var(--font-geist-sans);
12
+ --font-mono: var(--font-geist-mono);
13
+ }
14
+
15
+ @media (prefers-color-scheme: dark) {
16
+ :root {
17
+ --background: #0a0a0a;
18
+ --foreground: #ededed;
19
+ }
20
+ }
21
+
22
+ body {
23
+ background: var(--background);
24
+ color: var(--foreground);
25
+ font-family: Arial, Helvetica, sans-serif;
26
+ }
@@ -0,0 +1,41 @@
1
+ import type { Metadata } from "next";
2
+ import { Geist, Geist_Mono, Inter } from "next/font/google";
3
+ import "./globals.css";
4
+ import "../../devlink/global.css";
5
+ import { DevLinkProvider } from "../../devlink/DevLinkProvider";
6
+
7
+ const inter = Inter({
8
+ subsets: ["latin"],
9
+ variable: "--font-inter",
10
+ });
11
+
12
+ const geistSans = Geist({
13
+ variable: "--font-geist-sans",
14
+ subsets: ["latin"],
15
+ });
16
+
17
+ const geistMono = Geist_Mono({
18
+ variable: "--font-geist-mono",
19
+ subsets: ["latin"],
20
+ });
21
+
22
+ export const metadata: Metadata = {
23
+ title: "Create Next App",
24
+ description: "Generated by create next app",
25
+ };
26
+
27
+ export default function RootLayout({
28
+ children,
29
+ }: Readonly<{
30
+ children: React.ReactNode;
31
+ }>) {
32
+ return (
33
+ <html lang="en">
34
+ <body
35
+ className={`${geistSans.variable} ${geistMono.variable} ${inter.variable} antialiased`}
36
+ >
37
+ <DevLinkProvider>{children}</DevLinkProvider>
38
+ </body>
39
+ </html>
40
+ );
41
+ }
@@ -0,0 +1,57 @@
1
+ "use client";
2
+
3
+ import { Section, Block, Link } from "../../devlink/_Builtin";
4
+
5
+ export default function Home() {
6
+ return (
7
+ <Section
8
+ tag="section"
9
+ style={{
10
+ minHeight: "100vh",
11
+ display: "flex",
12
+ alignItems: "center",
13
+ justifyContent: "center",
14
+ }}
15
+ >
16
+ <Block tag="div" className="container">
17
+ <Block
18
+ tag="div"
19
+ className="hero-split"
20
+ style={{
21
+ textAlign: "center",
22
+ maxWidth: "600px",
23
+ margin: "0 auto",
24
+ }}
25
+ >
26
+ <h1
27
+ className="margin-bottom-24px"
28
+ style={{
29
+ fontSize: "2.5rem",
30
+ fontWeight: 700,
31
+ background: "linear-gradient(83.21deg, #3245ff 0%, #bc52ee 100%)",
32
+ WebkitBackgroundClip: "text",
33
+ WebkitTextFillColor: "transparent",
34
+ backgroundClip: "text",
35
+ }}
36
+ >
37
+ Welcome to Webflow Cloud
38
+ </h1>
39
+ <Block tag="p" className="margin-bottom-24px">
40
+ This is a simple test using Basic components with enhanced styling.
41
+ </Block>
42
+ <div>
43
+ <Link
44
+ button={true}
45
+ options={{
46
+ href: "#",
47
+ }}
48
+ className="button-primary"
49
+ >
50
+ Get Started
51
+ </Link>
52
+ </div>
53
+ </Block>
54
+ </Block>
55
+ </Section>
56
+ );
57
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2017",
4
+ "lib": ["dom", "dom.iterable", "esnext"],
5
+ "allowJs": true,
6
+ "skipLibCheck": true,
7
+ "strict": true,
8
+ "noEmit": true,
9
+ "esModuleInterop": true,
10
+ "module": "esnext",
11
+ "moduleResolution": "bundler",
12
+ "resolveJsonModule": true,
13
+ "isolatedModules": true,
14
+ "jsx": "preserve",
15
+ "incremental": true,
16
+ "plugins": [
17
+ {
18
+ "name": "next"
19
+ }
20
+ ],
21
+ "paths": {
22
+ "@/*": ["./src/*"]
23
+ },
24
+ "types": [
25
+ "@cloudflare/workers-types/2023-07-01"
26
+ ]
27
+ },
28
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
29
+ "exclude": ["node_modules"]
30
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "cloud": {
3
+ "framework": "nextjs"
4
+ },
5
+ "devlink": {
6
+ "rootDir": "./devlink",
7
+ "cssModules": true
8
+ }
9
+ }
@@ -0,0 +1,54 @@
1
+ /**
2
+ * For more details on how to configure Wrangler, refer to:
3
+ * https://developers.cloudflare.com/workers/wrangler/configuration/
4
+ */
5
+ {
6
+ "$schema": "node_modules/wrangler/config-schema.json",
7
+ "name": "nextjs",
8
+ "main": ".open-next/worker.js",
9
+ "compatibility_date": "2025-03-01",
10
+ "compatibility_flags": [
11
+ "nodejs_compat"
12
+ ],
13
+ "assets": {
14
+ "binding": "ASSETS",
15
+ "directory": ".open-next/assets"
16
+ },
17
+ "observability": {
18
+ "enabled": true
19
+ }
20
+ /**
21
+ * Smart Placement
22
+ * Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
23
+ */
24
+ // "placement": { "mode": "smart" },
25
+
26
+ /**
27
+ * Bindings
28
+ * Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
29
+ * databases, object storage, AI inference, real-time communication and more.
30
+ * https://developers.cloudflare.com/workers/runtime-apis/bindings/
31
+ */
32
+
33
+ /**
34
+ * Environment Variables
35
+ * https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
36
+ */
37
+ // "vars": { "MY_VARIABLE": "production_value" },
38
+ /**
39
+ * Note: Use secrets to store sensitive data.
40
+ * https://developers.cloudflare.com/workers/configuration/secrets/
41
+ */
42
+
43
+ /**
44
+ * Static Assets
45
+ * https://developers.cloudflare.com/workers/static-assets/binding/
46
+ */
47
+ // "assets": { "directory": "./public/", "binding": "ASSETS" },
48
+
49
+ /**
50
+ * Service Bindings (communicate between multiple Workers)
51
+ * https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
52
+ */
53
+ // "services": [{ "binding": "MY_SERVICE", "service": "my-service" }]
54
+ }
@@ -1,6 +1,6 @@
1
1
  # Designer Extension Starter: TypeScript
2
2
 
3
- This is an example Webflow Designer extension written in TypeScript that inserts a text emoji into an element selected within the Designer. Check out our [documentation](https://docs.developers.webflow.com/v2.0.0/docs/create-a-designer-extensions) for in-depth information about Designer Extension features and API.
3
+ This is an example Webflow Designer extension written in TypeScript that inserts a text emoji into an element selected within the Designer. Check out our [documentation](https://developers.webflow.com/designer/reference/introduction) for in-depth information about Designer Extension features and API.
4
4
 
5
5
  ## Developing
6
6
 
@@ -9,7 +9,7 @@
9
9
  "lint": "eslint . --ext .ts"
10
10
  },
11
11
  "devDependencies": {
12
- "@webflow/designer-extension-typings": "^0.2.0-beta.8",
12
+ "@webflow/designer-extension-typings": "^2.0.2",
13
13
  "@typescript-eslint/eslint-plugin": "^7.7.0",
14
14
  "@typescript-eslint/parser": "^7.7.0",
15
15
  "eslint": "^8.5.7",
@@ -1,6 +1,6 @@
1
1
  # Designer Extension Starter: React
2
2
 
3
- Explore the [documentation](https://docs.developers.webflow.com/v2.0.0/docs/create-a-designer-extensions) for detailed information on Designer Extension features and API.
3
+ Explore the [documentation](https://developers.webflow.com/designer/reference/introduction) for detailed information on Designer Extension features and API.
4
4
 
5
5
  ## Local Development
6
6
 
@@ -9,7 +9,7 @@
9
9
  "lint": "eslint . --ext .ts,.tsx"
10
10
  },
11
11
  "devDependencies": {
12
- "@webflow/designer-extension-typings": "^0.2.0-beta.8",
12
+ "@webflow/designer-extension-typings": "^2.0.2",
13
13
  "concurrently": "^8.2.2",
14
14
  "eslint": "^8.5.7",
15
15
  "@typescript-eslint/eslint-plugin": "^7.7.0",
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import ReactDOM from "react-dom";
2
+ import ReactDOM from "react-dom/client";
3
3
 
4
4
  const App: React.FC = () => {
5
5
  const addText = async () => {
@@ -23,4 +23,7 @@ const App: React.FC = () => {
23
23
  );
24
24
  };
25
25
 
26
- ReactDOM.render(<App />, document.getElementById("root"));
26
+ const root = ReactDOM.createRoot(
27
+ document.getElementById("root") as HTMLElement
28
+ );
29
+ root.render(<App />);
@@ -1,6 +1,6 @@
1
1
  # Designer Extension Starter: TypeScript (Alt)
2
2
 
3
- Explore the [documentation](https://docs.developers.webflow.com/v2.0.0/docs/create-a-designer-extensions) for in-depth information about Designer Extension features and API.
3
+ Explore the [documentation](https://developers.webflow.com/designer/reference/introduction) for in-depth information about Designer Extension features and API.
4
4
 
5
5
  ## Development
6
6
 
@@ -9,7 +9,7 @@
9
9
  "lint": "eslint . --ext .ts"
10
10
  },
11
11
  "devDependencies": {
12
- "@webflow/designer-extension-typings": "^0.2.0-beta.8",
12
+ "@webflow/designer-extension-typings": "^2.0.2",
13
13
  "@typescript-eslint/eslint-plugin": "^7.7.0",
14
14
  "@typescript-eslint/parser": "^7.7.0",
15
15
  "eslint": "^8.5.7",
@@ -18,4 +18,3 @@
18
18
  "eslint-plugin-promise": "^6.1.1"
19
19
  }
20
20
  }
21
-