From dba8a4db935e0a00537a92dcba976730c4c43262 Mon Sep 17 00:00:00 2001 From: Tom Meyer Date: Fri, 22 Sep 2023 06:34:21 -0700 Subject: [PATCH] Version 0.23.0. (#382) ## Features - We've introduced the concept of Page Layouts (or Layouts) to Studio. A Page Layout is a pre-prescribed set of Components that you can apply to a Page. By default, Layouts live in the `src/layouts` directory. In the UI, a Layout can be applied via the "Insert" button. (#370, #367, #375) - There is now improved UX for creating or editing an Entity Page's Stream Scope. Instead of being raw inputs, the fields for Entity Ids, Entity Types, and Saved Filters are now drop-downs with the relevant options populated from the account. (#380) ## Changes - Repeaters and Modules have been officially deprecated and removed from Studio. (#369) --- package-lock.json | 14 +++++++------- packages/studio-plugin/package.json | 2 +- packages/studio-ui/package.json | 6 +++--- packages/studio/package.json | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index a9bd9ac27..563dfe79e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24460,11 +24460,11 @@ }, "packages/studio": { "name": "@yext/studio", - "version": "0.22.0", + "version": "0.23.0", "dependencies": { "@vitejs/plugin-react": "^4.0.4", - "@yext/studio-plugin": "0.22.0", - "@yext/studio-ui": "0.22.0", + "@yext/studio-plugin": "0.23.0", + "@yext/studio-ui": "0.23.0", "autoprefixer": "^10.4.14", "cac": "^6.7.14", "cross-env": "^7.0.3", @@ -24484,7 +24484,7 @@ }, "packages/studio-plugin": { "name": "@yext/studio-plugin", - "version": "0.22.0", + "version": "0.23.0", "dependencies": { "@babel/parser": "^7.21.8", "@babel/preset-env": "^7.22.4", @@ -26658,7 +26658,7 @@ }, "packages/studio-ui": { "name": "@yext/studio-ui", - "version": "0.22.0", + "version": "0.23.0", "dependencies": { "@dhmk/zustand-lens": "^2.0.5", "@minoru/react-dnd-treeview": "^3.4.1", @@ -26699,7 +26699,7 @@ "@types/react": "^18.0.26", "@types/react-dom": "^18.0.10", "@types/react-modal": "3.13.1", - "@yext/studio-plugin": "*", + "@yext/studio-plugin": "0.23.0", "copyfiles": "^2.4.1", "jest": "^29.5.0", "jest-environment-jsdom": "^29.3.1", @@ -26712,7 +26712,7 @@ "vite-plugin-svgr": "^2.4.0" }, "peerDependencies": { - "@yext/studio-plugin": "*" + "@yext/studio-plugin": "0.23.0" } }, "packages/studio-ui/node_modules/@types/node": { diff --git a/packages/studio-plugin/package.json b/packages/studio-plugin/package.json index bf84d5954..2df51a3b6 100644 --- a/packages/studio-plugin/package.json +++ b/packages/studio-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@yext/studio-plugin", - "version": "0.22.0", + "version": "0.23.0", "types": "./lib/index.d.ts", "main": "./lib/index.js", "type": "module", diff --git a/packages/studio-ui/package.json b/packages/studio-ui/package.json index 6bbc8e6f4..dd8acf975 100644 --- a/packages/studio-ui/package.json +++ b/packages/studio-ui/package.json @@ -1,6 +1,6 @@ { "name": "@yext/studio-ui", - "version": "0.22.0", + "version": "0.23.0", "types": "./lib/src/index.d.ts", "main": "./lib/src/index.js", "type": "module", @@ -62,7 +62,7 @@ "@types/react": "^18.0.26", "@types/react-dom": "^18.0.10", "@types/react-modal": "3.13.1", - "@yext/studio-plugin": "*", + "@yext/studio-plugin": "0.23.0", "copyfiles": "^2.4.1", "jest": "^29.5.0", "jest-environment-jsdom": "^29.3.1", @@ -75,6 +75,6 @@ "vite-plugin-svgr": "^2.4.0" }, "peerDependencies": { - "@yext/studio-plugin": "*" + "@yext/studio-plugin": "0.23.0" } } diff --git a/packages/studio/package.json b/packages/studio/package.json index 71522c355..9c28ed3cb 100644 --- a/packages/studio/package.json +++ b/packages/studio/package.json @@ -1,6 +1,6 @@ { "name": "@yext/studio", - "version": "0.22.0", + "version": "0.23.0", "types": "./lib/types.d.ts", "type": "module", "bin": { @@ -14,8 +14,8 @@ }, "dependencies": { "@vitejs/plugin-react": "^4.0.4", - "@yext/studio-plugin": "0.22.0", - "@yext/studio-ui": "0.22.0", + "@yext/studio-plugin": "0.23.0", + "@yext/studio-ui": "0.23.0", "autoprefixer": "^10.4.14", "cac": "^6.7.14", "cross-env": "^7.0.3",