From 9920a24db21845aeb8a5a88a88b2b41c51170413 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 15 Nov 2024 07:59:56 +0000 Subject: [PATCH] Version Packages --- .changeset/cool-elephants-think.md | 12 --- .changeset/orange-kangaroos-camp.md | 5 -- .changeset/sweet-hotels-sleep.md | 5 -- demo-solid/CHANGELOG.md | 14 ++++ demo-solid/package.json | 14 ++-- demo/CHANGELOG.md | 13 +++ demo/package.json | 12 +-- docs/CHANGELOG.md | 12 +++ docs/package.json | 10 +-- extensions/link/CHANGELOG.md | 14 ++++ extensions/link/package.json | 10 +-- extensions/plugin-basic-ui/CHANGELOG.md | 12 +++ extensions/plugin-basic-ui/package.json | 8 +- extensions/plugin-history-sync/CHANGELOG.md | 13 +++ extensions/plugin-history-sync/package.json | 6 +- extensions/plugin-preload/CHANGELOG.md | 13 +++ extensions/plugin-preload/package.json | 6 +- extensions/plugin-renderer-basic/CHANGELOG.md | 11 +++ extensions/plugin-renderer-basic/package.json | 6 +- extensions/plugin-renderer-web/CHANGELOG.md | 11 +++ extensions/plugin-renderer-web/package.json | 6 +- extensions/solid-ui-core/CHANGELOG.md | 11 +++ extensions/solid-ui-core/package.json | 6 +- integrations/solid/CHANGELOG.md | 6 ++ integrations/solid/package.json | 2 +- yarn.lock | 80 +++++++++---------- 26 files changed, 213 insertions(+), 105 deletions(-) delete mode 100644 .changeset/cool-elephants-think.md delete mode 100644 .changeset/orange-kangaroos-camp.md delete mode 100644 .changeset/sweet-hotels-sleep.md diff --git a/.changeset/cool-elephants-think.md b/.changeset/cool-elephants-think.md deleted file mode 100644 index 4704bf35..00000000 --- a/.changeset/cool-elephants-think.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@contentstech/stackflow-link": minor -"@contentstech/stackflow-plugin-basic-ui": minor -"@contentstech/stackflow-plugin-history-sync": minor -"@contentstech/stackflow-plugin-preload": minor -"@contentstech/stackflow-plugin-renderer-basic": minor -"@contentstech/stackflow-plugin-renderer-web": minor -"@contentstech/stackflow-solid-ui-core": minor -"@contentstech/stackflow-solid": minor ---- - -Rebase over 0a105c3f669e27d3b06f9334289f53fe52c1d3fb diff --git a/.changeset/orange-kangaroos-camp.md b/.changeset/orange-kangaroos-camp.md deleted file mode 100644 index d5099db9..00000000 --- a/.changeset/orange-kangaroos-camp.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@contentstech/stackflow-plugin-history-sync": minor ---- - -Add `encode` interface diff --git a/.changeset/sweet-hotels-sleep.md b/.changeset/sweet-hotels-sleep.md deleted file mode 100644 index fcf18b88..00000000 --- a/.changeset/sweet-hotels-sleep.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@contentstech/stackflow-plugin-history-sync": minor ---- - -Enable usage of `encode` and `decode` with Future API diff --git a/demo-solid/CHANGELOG.md b/demo-solid/CHANGELOG.md index 6111610b..7eaacbb9 100644 --- a/demo-solid/CHANGELOG.md +++ b/demo-solid/CHANGELOG.md @@ -1,5 +1,19 @@ # @stackflow/demo-solid +## 1.4.3 + +### Patch Changes + +- Updated dependencies [e3c7070] +- Updated dependencies [04f54c2] +- Updated dependencies [0a105c3] + - @contentstech/stackflow-link@0.4.0 + - @contentstech/stackflow-plugin-basic-ui@0.6.0 + - @contentstech/stackflow-plugin-history-sync@0.7.0 + - @contentstech/stackflow-plugin-preload@0.4.0 + - @contentstech/stackflow-plugin-renderer-basic@0.6.0 + - @contentstech/stackflow-solid@0.7.0 + ## 1.4.2 ### Patch Changes diff --git a/demo-solid/package.json b/demo-solid/package.json index bf17e2f4..33de6bce 100644 --- a/demo-solid/package.json +++ b/demo-solid/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/demo-solid", - "version": "1.4.2", + "version": "1.4.3", "private": true, "license": "MIT", "type": "module", @@ -30,12 +30,12 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@contentstech/stackflow-link": "^0.3.0", - "@contentstech/stackflow-plugin-basic-ui": "^0.5.1", - "@contentstech/stackflow-plugin-history-sync": "^0.6.1", - "@contentstech/stackflow-plugin-preload": "^0.3.0", - "@contentstech/stackflow-plugin-renderer-basic": "^0.5.1", - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-link": "^0.4.0", + "@contentstech/stackflow-plugin-basic-ui": "^0.6.0", + "@contentstech/stackflow-plugin-history-sync": "^0.7.0", + "@contentstech/stackflow-plugin-preload": "^0.4.0", + "@contentstech/stackflow-plugin-renderer-basic": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@seed-design/design-token": "^1.0.3", "@seed-design/stylesheet": "^1.0.4", "@stackflow/compat-await-push": "^1.1.13", diff --git a/demo/CHANGELOG.md b/demo/CHANGELOG.md index a36299b2..f0ef90b2 100644 --- a/demo/CHANGELOG.md +++ b/demo/CHANGELOG.md @@ -1,5 +1,18 @@ # @stackflow/demo +## 1.4.2 + +### Patch Changes + +- Updated dependencies [e3c7070] +- Updated dependencies [04f54c2] +- Updated dependencies [0a105c3] + - @contentstech/stackflow-link@0.4.0 + - @contentstech/stackflow-plugin-basic-ui@0.6.0 + - @contentstech/stackflow-plugin-history-sync@0.7.0 + - @contentstech/stackflow-plugin-preload@0.4.0 + - @contentstech/stackflow-plugin-renderer-basic@0.6.0 + ## 1.4.1 ### Patch Changes diff --git a/demo/package.json b/demo/package.json index 3605cf3e..cd636c24 100644 --- a/demo/package.json +++ b/demo/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/demo", - "version": "1.4.1", + "version": "1.4.2", "private": true, "license": "MIT", "type": "module", @@ -30,11 +30,11 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@contentstech/stackflow-link": "^0.3.0", - "@contentstech/stackflow-plugin-basic-ui": "^0.5.0", - "@contentstech/stackflow-plugin-history-sync": "^0.6.0", - "@contentstech/stackflow-plugin-preload": "^0.3.0", - "@contentstech/stackflow-plugin-renderer-basic": "^0.5.0", + "@contentstech/stackflow-link": "^0.4.0", + "@contentstech/stackflow-plugin-basic-ui": "^0.6.0", + "@contentstech/stackflow-plugin-history-sync": "^0.7.0", + "@contentstech/stackflow-plugin-preload": "^0.4.0", + "@contentstech/stackflow-plugin-renderer-basic": "^0.6.0", "@seed-design/design-token": "^1.0.3", "@seed-design/stylesheet": "^1.0.4", "@stackflow/compat-await-push": "^1.1.13", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 214beab2..46c66e75 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,17 @@ # @stackflow/docs +## 2.0.2 + +### Patch Changes + +- Updated dependencies [e3c7070] +- Updated dependencies [04f54c2] +- Updated dependencies [0a105c3] + - @contentstech/stackflow-plugin-basic-ui@0.6.0 + - @contentstech/stackflow-plugin-history-sync@0.7.0 + - @contentstech/stackflow-plugin-renderer-basic@0.6.0 + - @stackflow/demo@1.4.2 + ## 2.0.1 ### Patch Changes diff --git a/docs/package.json b/docs/package.json index 0ea938c8..77370476 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/docs", - "version": "2.0.1", + "version": "2.0.2", "private": true, "description": "Mobile-first stack navigator framework with Composable Plugin System", "license": "MIT", @@ -10,13 +10,13 @@ "dev": "next -p 6006" }, "dependencies": { - "@contentstech/stackflow-plugin-basic-ui": "^0.5.0", - "@contentstech/stackflow-plugin-history-sync": "^0.6.0", - "@contentstech/stackflow-plugin-renderer-basic": "^0.5.0", + "@contentstech/stackflow-plugin-basic-ui": "^0.6.0", + "@contentstech/stackflow-plugin-history-sync": "^0.7.0", + "@contentstech/stackflow-plugin-renderer-basic": "^0.6.0", "@mdx-js/react": "^3.0.1", "@seed-design/design-token": "^1.0.3", "@stackflow/core": "^1.1.0", - "@stackflow/demo": "^1.4.0", + "@stackflow/demo": "^1.4.2", "@stackflow/react": "^1.4.0", "@types/react": "^18.3.3", "autoprefixer": "^10.4.20", diff --git a/extensions/link/CHANGELOG.md b/extensions/link/CHANGELOG.md index f63e9f48..0a51ca6c 100644 --- a/extensions/link/CHANGELOG.md +++ b/extensions/link/CHANGELOG.md @@ -1,5 +1,19 @@ # @stackflow/link +## 0.4.0 + +### Minor Changes + +- e3c7070: Rebase over 0a105c3f669e27d3b06f9334289f53fe52c1d3fb + +### Patch Changes + +- Updated dependencies [e3c7070] +- Updated dependencies [04f54c2] +- Updated dependencies [0a105c3] + - @contentstech/stackflow-plugin-history-sync@0.7.0 + - @contentstech/stackflow-plugin-preload@0.4.0 + ## 0.3.0 ### Minor Changes diff --git a/extensions/link/package.json b/extensions/link/package.json index b00061a8..48be32a2 100644 --- a/extensions/link/package.json +++ b/extensions/link/package.json @@ -1,6 +1,6 @@ { "name": "@contentstech/stackflow-link", - "version": "0.3.0", + "version": "0.4.0", "private": true, "repository": { "type": "git", @@ -42,8 +42,8 @@ "typecheck": "tsc --noEmit" }, "devDependencies": { - "@contentstech/stackflow-plugin-history-sync": "^0.6.0", - "@contentstech/stackflow-plugin-preload": "^0.3.0", + "@contentstech/stackflow-plugin-history-sync": "^0.7.0", + "@contentstech/stackflow-plugin-preload": "^0.4.0", "@stackflow/config": "^1.2.0", "@stackflow/core": "^1.1.0", "@stackflow/esbuild-config": "^1.0.3", @@ -56,8 +56,8 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@contentstech/stackflow-plugin-history-sync": "^0.6.0", - "@contentstech/stackflow-plugin-preload": "^0.3.0", + "@contentstech/stackflow-plugin-history-sync": "^0.7.0", + "@contentstech/stackflow-plugin-preload": "^0.4.0", "@stackflow/core": "^1.1.0-canary.0", "@stackflow/react": "^1.3.2-canary.0", "@types/react": ">=16.8.0", diff --git a/extensions/plugin-basic-ui/CHANGELOG.md b/extensions/plugin-basic-ui/CHANGELOG.md index 38e265ef..8a4f0d6f 100644 --- a/extensions/plugin-basic-ui/CHANGELOG.md +++ b/extensions/plugin-basic-ui/CHANGELOG.md @@ -1,5 +1,17 @@ # @stackflow/plugin-basic-ui +## 0.6.0 + +### Minor Changes + +- e3c7070: Rebase over 0a105c3f669e27d3b06f9334289f53fe52c1d3fb + +### Patch Changes + +- Updated dependencies [e3c7070] + - @contentstech/stackflow-solid-ui-core@0.4.0 + - @contentstech/stackflow-solid@0.7.0 + ## 0.5.1 ### Patch Changes diff --git a/extensions/plugin-basic-ui/package.json b/extensions/plugin-basic-ui/package.json index 5ed15d0d..a2c603bf 100644 --- a/extensions/plugin-basic-ui/package.json +++ b/extensions/plugin-basic-ui/package.json @@ -1,6 +1,6 @@ { "name": "@contentstech/stackflow-plugin-basic-ui", - "version": "0.5.1", + "version": "0.6.0", "repository": { "type": "git", "url": "https://github.com/contentstech-com/stackflow.git", @@ -62,7 +62,7 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@contentstech/stackflow-solid-ui-core": "^0.3.1", + "@contentstech/stackflow-solid-ui-core": "^0.4.0", "@stackflow/react-ui-core": "^1.1.2", "@vanilla-extract/css": "^1.15.3", "@vanilla-extract/dynamic": "^2.1.1", @@ -70,7 +70,7 @@ "@vanilla-extract/recipes": "^0.5.3" }, "devDependencies": { - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@stackflow/core": "^1.1.0", "@stackflow/esbuild-config": "^1.0.3", "@stackflow/react": "^1.3.2", @@ -83,7 +83,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@stackflow/core": "^1.1.0-canary.0", "@stackflow/react": "^1.3.2-canary.0", "@types/react": ">=16.8.0", diff --git a/extensions/plugin-history-sync/CHANGELOG.md b/extensions/plugin-history-sync/CHANGELOG.md index 2a264730..7630999d 100644 --- a/extensions/plugin-history-sync/CHANGELOG.md +++ b/extensions/plugin-history-sync/CHANGELOG.md @@ -1,5 +1,18 @@ # @stackflow/plugin-history-sync +## 0.7.0 + +### Minor Changes + +- e3c7070: Rebase over 0a105c3f669e27d3b06f9334289f53fe52c1d3fb +- 04f54c2: Add `encode` interface +- 0a105c3: Enable usage of `encode` and `decode` with Future API + +### Patch Changes + +- Updated dependencies [e3c7070] + - @contentstech/stackflow-solid@0.7.0 + ## 0.6.1 ### Patch Changes diff --git a/extensions/plugin-history-sync/package.json b/extensions/plugin-history-sync/package.json index db8c784f..b1cdca3b 100644 --- a/extensions/plugin-history-sync/package.json +++ b/extensions/plugin-history-sync/package.json @@ -1,6 +1,6 @@ { "name": "@contentstech/stackflow-plugin-history-sync", - "version": "0.6.1", + "version": "0.7.0", "repository": { "type": "git", "url": "https://github.com/contentstech-com/stackflow.git", @@ -87,7 +87,7 @@ "url-pattern": "^1.0.3" }, "devDependencies": { - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@graphql-tools/schema": "^10.0.5", "@stackflow/config": "^1.2.0", "@stackflow/core": "^1.1.0", @@ -113,7 +113,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@stackflow/config": "^1.0.1-canary.0", "@stackflow/core": "^1.1.0-canary.0", "@stackflow/react": "^1.3.2-canary.0", diff --git a/extensions/plugin-preload/CHANGELOG.md b/extensions/plugin-preload/CHANGELOG.md index 5f1a0daa..5ba45353 100644 --- a/extensions/plugin-preload/CHANGELOG.md +++ b/extensions/plugin-preload/CHANGELOG.md @@ -1,5 +1,18 @@ # @stackflow/plugin-preload +## 0.4.0 + +### Minor Changes + +- e3c7070: Rebase over 0a105c3f669e27d3b06f9334289f53fe52c1d3fb + +### Patch Changes + +- Updated dependencies [e3c7070] +- Updated dependencies [04f54c2] +- Updated dependencies [0a105c3] + - @contentstech/stackflow-plugin-history-sync@0.7.0 + ## 0.3.0 ### Minor Changes diff --git a/extensions/plugin-preload/package.json b/extensions/plugin-preload/package.json index f1a2cdd1..d11e4862 100644 --- a/extensions/plugin-preload/package.json +++ b/extensions/plugin-preload/package.json @@ -1,6 +1,6 @@ { "name": "@contentstech/stackflow-plugin-preload", - "version": "0.3.0", + "version": "0.4.0", "private": true, "repository": { "type": "git", @@ -32,7 +32,7 @@ "typecheck": "tsc --noEmit" }, "devDependencies": { - "@contentstech/stackflow-plugin-history-sync": "^0.6.0", + "@contentstech/stackflow-plugin-history-sync": "^0.7.0", "@stackflow/core": "^1.1.0", "@stackflow/esbuild-config": "^1.0.3", "@stackflow/react": "^1.4.0", @@ -43,7 +43,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@contentstech/stackflow-plugin-history-sync": "^0.6.0", + "@contentstech/stackflow-plugin-history-sync": "^0.7.0", "@stackflow/core": "^1.1.0-canary.0", "@stackflow/react": "^1.3.2-canary.0", "@types/react": ">=16.8.0", diff --git a/extensions/plugin-renderer-basic/CHANGELOG.md b/extensions/plugin-renderer-basic/CHANGELOG.md index f1b3764f..152b28b9 100644 --- a/extensions/plugin-renderer-basic/CHANGELOG.md +++ b/extensions/plugin-renderer-basic/CHANGELOG.md @@ -1,5 +1,16 @@ # @stackflow/plugin-renderer-basic +## 0.6.0 + +### Minor Changes + +- e3c7070: Rebase over 0a105c3f669e27d3b06f9334289f53fe52c1d3fb + +### Patch Changes + +- Updated dependencies [e3c7070] + - @contentstech/stackflow-solid@0.7.0 + ## 0.5.1 ### Patch Changes diff --git a/extensions/plugin-renderer-basic/package.json b/extensions/plugin-renderer-basic/package.json index d07bf114..afbf71b2 100644 --- a/extensions/plugin-renderer-basic/package.json +++ b/extensions/plugin-renderer-basic/package.json @@ -1,6 +1,6 @@ { "name": "@contentstech/stackflow-plugin-renderer-basic", - "version": "0.5.1", + "version": "0.6.0", "repository": { "type": "git", "url": "https://github.com/contentstech-com/stackflow.git", @@ -61,7 +61,7 @@ "typecheck": "tsc --noEmit" }, "devDependencies": { - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@stackflow/core": "^1.1.0", "@stackflow/esbuild-config": "^1.0.3", "@stackflow/react": "^1.3.2", @@ -74,7 +74,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@stackflow/core": "^1.1.0-canary.0", "@stackflow/react": "^1.3.2-canary.0", "@types/react": ">=16.8.0", diff --git a/extensions/plugin-renderer-web/CHANGELOG.md b/extensions/plugin-renderer-web/CHANGELOG.md index 8f5de81f..3ce3b17e 100644 --- a/extensions/plugin-renderer-web/CHANGELOG.md +++ b/extensions/plugin-renderer-web/CHANGELOG.md @@ -1,5 +1,16 @@ # @stackflow/plugin-renderer-web +## 0.6.0 + +### Minor Changes + +- e3c7070: Rebase over 0a105c3f669e27d3b06f9334289f53fe52c1d3fb + +### Patch Changes + +- Updated dependencies [e3c7070] + - @contentstech/stackflow-solid@0.7.0 + ## 0.5.1 ### Patch Changes diff --git a/extensions/plugin-renderer-web/package.json b/extensions/plugin-renderer-web/package.json index 97d8f70a..c06e3f66 100644 --- a/extensions/plugin-renderer-web/package.json +++ b/extensions/plugin-renderer-web/package.json @@ -1,6 +1,6 @@ { "name": "@contentstech/stackflow-plugin-renderer-web", - "version": "0.5.1", + "version": "0.6.0", "repository": { "type": "git", "url": "https://github.com/contentstech-com/stackflow.git", @@ -61,7 +61,7 @@ "typecheck": "tsc --noEmit" }, "devDependencies": { - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@stackflow/core": "^1.1.0", "@stackflow/esbuild-config": "^1.0.3", "@stackflow/react": "^1.3.2", @@ -74,7 +74,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@stackflow/core": "^1.1.0-canary.0", "@stackflow/react": "^1.3.2-canary.0", "@types/react": ">=16.8.0", diff --git a/extensions/solid-ui-core/CHANGELOG.md b/extensions/solid-ui-core/CHANGELOG.md index 3fe4d3ad..86cd550d 100644 --- a/extensions/solid-ui-core/CHANGELOG.md +++ b/extensions/solid-ui-core/CHANGELOG.md @@ -1,5 +1,16 @@ # @contentstech/stackflow-solid-ui-core +## 0.4.0 + +### Minor Changes + +- e3c7070: Rebase over 0a105c3f669e27d3b06f9334289f53fe52c1d3fb + +### Patch Changes + +- Updated dependencies [e3c7070] + - @contentstech/stackflow-solid@0.7.0 + ## 0.3.1 ### Patch Changes diff --git a/extensions/solid-ui-core/package.json b/extensions/solid-ui-core/package.json index 4423eab3..01c71a3e 100644 --- a/extensions/solid-ui-core/package.json +++ b/extensions/solid-ui-core/package.json @@ -1,6 +1,6 @@ { "name": "@contentstech/stackflow-solid-ui-core", - "version": "0.3.1", + "version": "0.4.0", "repository": { "type": "git", "url": "https://github.com/daangn/stackflow.git", @@ -32,7 +32,7 @@ "typecheck": "tsc --noEmit" }, "devDependencies": { - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@stackflow/core": "^1.1.0", "@stackflow/esbuild-config": "^1.0.2", "esbuild": "^0.23.0", @@ -42,7 +42,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@contentstech/stackflow-solid": "^0.6.0", + "@contentstech/stackflow-solid": "^0.7.0", "@stackflow/core": "^1.1.0-canary.0", "solid-js": ">=1.4.0" }, diff --git a/integrations/solid/CHANGELOG.md b/integrations/solid/CHANGELOG.md index 95af1697..a3b29798 100644 --- a/integrations/solid/CHANGELOG.md +++ b/integrations/solid/CHANGELOG.md @@ -1,5 +1,11 @@ # @contentstech/stackflow-solid +## 0.7.0 + +### Minor Changes + +- e3c7070: Rebase over 0a105c3f669e27d3b06f9334289f53fe52c1d3fb + ## 0.6.0 ### Minor Changes diff --git a/integrations/solid/package.json b/integrations/solid/package.json index ef865c6a..1d19d73f 100644 --- a/integrations/solid/package.json +++ b/integrations/solid/package.json @@ -1,6 +1,6 @@ { "name": "@contentstech/stackflow-solid", - "version": "0.6.0", + "version": "0.7.0", "repository": { "type": "git", "url": "https://github.com/contentstech/stackflow.git", diff --git a/yarn.lock b/yarn.lock index 0fb9a7e4..6b9668ec 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1138,12 +1138,12 @@ __metadata: languageName: node linkType: hard -"@contentstech/stackflow-link@npm:^0.3.0, @contentstech/stackflow-link@workspace:extensions/link": +"@contentstech/stackflow-link@npm:^0.4.0, @contentstech/stackflow-link@workspace:extensions/link": version: 0.0.0-use.local resolution: "@contentstech/stackflow-link@workspace:extensions/link" dependencies: - "@contentstech/stackflow-plugin-history-sync": "npm:^0.6.0" - "@contentstech/stackflow-plugin-preload": "npm:^0.3.0" + "@contentstech/stackflow-plugin-history-sync": "npm:^0.7.0" + "@contentstech/stackflow-plugin-preload": "npm:^0.4.0" "@stackflow/config": "npm:^1.2.0" "@stackflow/core": "npm:^1.1.0" "@stackflow/esbuild-config": "npm:^1.0.3" @@ -1155,8 +1155,8 @@ __metadata: rimraf: "npm:^3.0.2" typescript: "npm:^5.5.3" peerDependencies: - "@contentstech/stackflow-plugin-history-sync": ^0.6.0 - "@contentstech/stackflow-plugin-preload": ^0.3.0 + "@contentstech/stackflow-plugin-history-sync": ^0.7.0 + "@contentstech/stackflow-plugin-preload": ^0.4.0 "@stackflow/core": ^1.1.0-canary.0 "@stackflow/react": ^1.3.2-canary.0 "@types/react": ">=16.8.0" @@ -1164,12 +1164,12 @@ __metadata: languageName: unknown linkType: soft -"@contentstech/stackflow-plugin-basic-ui@npm:^0.5.0, @contentstech/stackflow-plugin-basic-ui@npm:^0.5.1, @contentstech/stackflow-plugin-basic-ui@workspace:extensions/plugin-basic-ui": +"@contentstech/stackflow-plugin-basic-ui@npm:^0.6.0, @contentstech/stackflow-plugin-basic-ui@workspace:extensions/plugin-basic-ui": version: 0.0.0-use.local resolution: "@contentstech/stackflow-plugin-basic-ui@workspace:extensions/plugin-basic-ui" dependencies: - "@contentstech/stackflow-solid": "npm:^0.6.0" - "@contentstech/stackflow-solid-ui-core": "npm:^0.3.1" + "@contentstech/stackflow-solid": "npm:^0.7.0" + "@contentstech/stackflow-solid-ui-core": "npm:^0.4.0" "@stackflow/core": "npm:^1.1.0" "@stackflow/esbuild-config": "npm:^1.0.3" "@stackflow/react": "npm:^1.3.2" @@ -1186,7 +1186,7 @@ __metadata: solid-js: "npm:^1.8.18" typescript: "npm:^5.5.3" peerDependencies: - "@contentstech/stackflow-solid": ^0.6.0 + "@contentstech/stackflow-solid": ^0.7.0 "@stackflow/core": ^1.1.0-canary.0 "@stackflow/react": ^1.3.2-canary.0 "@types/react": ">=16.8.0" @@ -1206,11 +1206,11 @@ __metadata: languageName: unknown linkType: soft -"@contentstech/stackflow-plugin-history-sync@npm:^0.6.0, @contentstech/stackflow-plugin-history-sync@npm:^0.6.1, @contentstech/stackflow-plugin-history-sync@workspace:extensions/plugin-history-sync": +"@contentstech/stackflow-plugin-history-sync@npm:^0.7.0, @contentstech/stackflow-plugin-history-sync@workspace:extensions/plugin-history-sync": version: 0.0.0-use.local resolution: "@contentstech/stackflow-plugin-history-sync@workspace:extensions/plugin-history-sync" dependencies: - "@contentstech/stackflow-solid": "npm:^0.6.0" + "@contentstech/stackflow-solid": "npm:^0.7.0" "@graphql-tools/schema": "npm:^10.0.5" "@stackflow/config": "npm:^1.2.0" "@stackflow/core": "npm:^1.1.0" @@ -1238,7 +1238,7 @@ __metadata: typescript: "npm:^5.5.3" url-pattern: "npm:^1.0.3" peerDependencies: - "@contentstech/stackflow-solid": ^0.6.0 + "@contentstech/stackflow-solid": ^0.7.0 "@stackflow/config": ^1.0.1-canary.0 "@stackflow/core": ^1.1.0-canary.0 "@stackflow/react": ^1.3.2-canary.0 @@ -1259,11 +1259,11 @@ __metadata: languageName: unknown linkType: soft -"@contentstech/stackflow-plugin-preload@npm:^0.3.0, @contentstech/stackflow-plugin-preload@workspace:extensions/plugin-preload": +"@contentstech/stackflow-plugin-preload@npm:^0.4.0, @contentstech/stackflow-plugin-preload@workspace:extensions/plugin-preload": version: 0.0.0-use.local resolution: "@contentstech/stackflow-plugin-preload@workspace:extensions/plugin-preload" dependencies: - "@contentstech/stackflow-plugin-history-sync": "npm:^0.6.0" + "@contentstech/stackflow-plugin-history-sync": "npm:^0.7.0" "@stackflow/core": "npm:^1.1.0" "@stackflow/esbuild-config": "npm:^1.0.3" "@stackflow/react": "npm:^1.4.0" @@ -1273,7 +1273,7 @@ __metadata: rimraf: "npm:^3.0.2" typescript: "npm:^5.5.3" peerDependencies: - "@contentstech/stackflow-plugin-history-sync": ^0.6.0 + "@contentstech/stackflow-plugin-history-sync": ^0.7.0 "@stackflow/core": ^1.1.0-canary.0 "@stackflow/react": ^1.3.2-canary.0 "@types/react": ">=16.8.0" @@ -1281,11 +1281,11 @@ __metadata: languageName: unknown linkType: soft -"@contentstech/stackflow-plugin-renderer-basic@npm:^0.5.0, @contentstech/stackflow-plugin-renderer-basic@npm:^0.5.1, @contentstech/stackflow-plugin-renderer-basic@workspace:extensions/plugin-renderer-basic": +"@contentstech/stackflow-plugin-renderer-basic@npm:^0.6.0, @contentstech/stackflow-plugin-renderer-basic@workspace:extensions/plugin-renderer-basic": version: 0.0.0-use.local resolution: "@contentstech/stackflow-plugin-renderer-basic@workspace:extensions/plugin-renderer-basic" dependencies: - "@contentstech/stackflow-solid": "npm:^0.6.0" + "@contentstech/stackflow-solid": "npm:^0.7.0" "@stackflow/core": "npm:^1.1.0" "@stackflow/esbuild-config": "npm:^1.0.3" "@stackflow/react": "npm:^1.3.2" @@ -1297,7 +1297,7 @@ __metadata: solid-js: "npm:^1.8.18" typescript: "npm:^5.5.3" peerDependencies: - "@contentstech/stackflow-solid": ^0.6.0 + "@contentstech/stackflow-solid": ^0.7.0 "@stackflow/core": ^1.1.0-canary.0 "@stackflow/react": ^1.3.2-canary.0 "@types/react": ">=16.8.0" @@ -1321,7 +1321,7 @@ __metadata: version: 0.0.0-use.local resolution: "@contentstech/stackflow-plugin-renderer-web@workspace:extensions/plugin-renderer-web" dependencies: - "@contentstech/stackflow-solid": "npm:^0.6.0" + "@contentstech/stackflow-solid": "npm:^0.7.0" "@stackflow/core": "npm:^1.1.0" "@stackflow/esbuild-config": "npm:^1.0.3" "@stackflow/react": "npm:^1.3.2" @@ -1333,7 +1333,7 @@ __metadata: solid-js: "npm:^1.8.18" typescript: "npm:^5.5.3" peerDependencies: - "@contentstech/stackflow-solid": ^0.6.0 + "@contentstech/stackflow-solid": ^0.7.0 "@stackflow/core": ^1.1.0-canary.0 "@stackflow/react": ^1.3.2-canary.0 "@types/react": ">=16.8.0" @@ -1353,11 +1353,11 @@ __metadata: languageName: unknown linkType: soft -"@contentstech/stackflow-solid-ui-core@npm:^0.3.1, @contentstech/stackflow-solid-ui-core@workspace:extensions/solid-ui-core": +"@contentstech/stackflow-solid-ui-core@npm:^0.4.0, @contentstech/stackflow-solid-ui-core@workspace:extensions/solid-ui-core": version: 0.0.0-use.local resolution: "@contentstech/stackflow-solid-ui-core@workspace:extensions/solid-ui-core" dependencies: - "@contentstech/stackflow-solid": "npm:^0.6.0" + "@contentstech/stackflow-solid": "npm:^0.7.0" "@stackflow/core": "npm:^1.1.0" "@stackflow/esbuild-config": "npm:^1.0.2" esbuild: "npm:^0.23.0" @@ -1366,13 +1366,13 @@ __metadata: solid-js: "npm:^1.8.18" typescript: "npm:^5.5.3" peerDependencies: - "@contentstech/stackflow-solid": ^0.6.0 + "@contentstech/stackflow-solid": ^0.7.0 "@stackflow/core": ^1.1.0-canary.0 solid-js: ">=1.4.0" languageName: unknown linkType: soft -"@contentstech/stackflow-solid@npm:^0.6.0, @contentstech/stackflow-solid@workspace:integrations/solid": +"@contentstech/stackflow-solid@npm:^0.7.0, @contentstech/stackflow-solid@workspace:integrations/solid": version: 0.0.0-use.local resolution: "@contentstech/stackflow-solid@workspace:integrations/solid" dependencies: @@ -2630,12 +2630,12 @@ __metadata: version: 0.0.0-use.local resolution: "@stackflow/demo-solid@workspace:demo-solid" dependencies: - "@contentstech/stackflow-link": "npm:^0.3.0" - "@contentstech/stackflow-plugin-basic-ui": "npm:^0.5.1" - "@contentstech/stackflow-plugin-history-sync": "npm:^0.6.1" - "@contentstech/stackflow-plugin-preload": "npm:^0.3.0" - "@contentstech/stackflow-plugin-renderer-basic": "npm:^0.5.1" - "@contentstech/stackflow-solid": "npm:^0.6.0" + "@contentstech/stackflow-link": "npm:^0.4.0" + "@contentstech/stackflow-plugin-basic-ui": "npm:^0.6.0" + "@contentstech/stackflow-plugin-history-sync": "npm:^0.7.0" + "@contentstech/stackflow-plugin-preload": "npm:^0.4.0" + "@contentstech/stackflow-plugin-renderer-basic": "npm:^0.6.0" + "@contentstech/stackflow-solid": "npm:^0.7.0" "@seed-design/design-token": "npm:^1.0.3" "@seed-design/stylesheet": "npm:^1.0.4" "@stackflow/compat-await-push": "npm:^1.1.13" @@ -2661,15 +2661,15 @@ __metadata: languageName: unknown linkType: soft -"@stackflow/demo@npm:^1.4.0, @stackflow/demo@workspace:demo": +"@stackflow/demo@npm:^1.4.2, @stackflow/demo@workspace:demo": version: 0.0.0-use.local resolution: "@stackflow/demo@workspace:demo" dependencies: - "@contentstech/stackflow-link": "npm:^0.3.0" - "@contentstech/stackflow-plugin-basic-ui": "npm:^0.5.0" - "@contentstech/stackflow-plugin-history-sync": "npm:^0.6.0" - "@contentstech/stackflow-plugin-preload": "npm:^0.3.0" - "@contentstech/stackflow-plugin-renderer-basic": "npm:^0.5.0" + "@contentstech/stackflow-link": "npm:^0.4.0" + "@contentstech/stackflow-plugin-basic-ui": "npm:^0.6.0" + "@contentstech/stackflow-plugin-history-sync": "npm:^0.7.0" + "@contentstech/stackflow-plugin-preload": "npm:^0.4.0" + "@contentstech/stackflow-plugin-renderer-basic": "npm:^0.6.0" "@seed-design/design-token": "npm:^1.0.3" "@seed-design/stylesheet": "npm:^1.0.4" "@stackflow/compat-await-push": "npm:^1.1.13" @@ -2705,14 +2705,14 @@ __metadata: version: 0.0.0-use.local resolution: "@stackflow/docs@workspace:docs" dependencies: - "@contentstech/stackflow-plugin-basic-ui": "npm:^0.5.0" - "@contentstech/stackflow-plugin-history-sync": "npm:^0.6.0" - "@contentstech/stackflow-plugin-renderer-basic": "npm:^0.5.0" + "@contentstech/stackflow-plugin-basic-ui": "npm:^0.6.0" + "@contentstech/stackflow-plugin-history-sync": "npm:^0.7.0" + "@contentstech/stackflow-plugin-renderer-basic": "npm:^0.6.0" "@mdx-js/react": "npm:^3.0.1" "@seed-design/design-token": "npm:^1.0.3" "@seed-design/stylesheet": "npm:^1.0.4" "@stackflow/core": "npm:^1.1.0" - "@stackflow/demo": "npm:^1.4.0" + "@stackflow/demo": "npm:^1.4.2" "@stackflow/react": "npm:^1.4.0" "@types/node": "npm:^22.7.5" "@types/react": "npm:^18.3.3"