studiocms 0.1.0-beta.29 → 0.1.0-beta.30

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # studiocms
2
2
 
3
+ ## 0.1.0-beta.30
4
+
5
+ ### Patch Changes
6
+
7
+ - [#983](https://github.com/withstudiocms/studiocms/pull/983) [`044f30e`](https://github.com/withstudiocms/studiocms/commit/044f30e510eedfcdf3917db1884be9c0656c1c67) Thanks [@Adammatthiesen](https://github.com/Adammatthiesen)! - Updates usage of Toaster on first-time setup pages
8
+
9
+ - Updated dependencies [[`34e2c50`](https://github.com/withstudiocms/studiocms/commit/34e2c509914596d5e8bb75bceb6bf2b2cadeba3d), [`61091e1`](https://github.com/withstudiocms/studiocms/commit/61091e1e7633f1b4bf0fa3e0a09debb06b861fbe)]:
10
+ - @withstudiocms/component-registry@0.1.0-beta.6
11
+ - @withstudiocms/effect@0.1.0-beta.6
12
+ - @withstudiocms/auth-kit@0.1.0-beta.5
13
+
3
14
  ## 0.1.0-beta.29
4
15
 
5
16
  ### Patch Changes
@@ -69,7 +69,7 @@ const ogSelectOptions = validImages.map(({ label, name: value }) => ({ label, va
69
69
  </Card>
70
70
 
71
71
  <script>
72
- import { toast } from 'studiocms:ui/components/toaster';
72
+ import { toast } from 'studiocms:ui/components/toaster/client';
73
73
 
74
74
  const form = document.querySelector('#setup-step-one') as HTMLFormElement;
75
75
 
@@ -130,7 +130,7 @@ const Providers = providerData
130
130
  </Card>
131
131
 
132
132
  <script>
133
- import { toast } from 'studiocms:ui/components/toaster';
133
+ import { toast } from 'studiocms:ui/components/toaster/client';
134
134
 
135
135
  const form = document.querySelector('#setup-step-two') as HTMLFormElement;
136
136
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "studiocms",
3
- "version": "0.1.0-beta.29",
3
+ "version": "0.1.0-beta.30",
4
4
  "description": "Astro Native CMS for AstroDB. Built from the ground up by the Astro community.",
5
5
  "author": {
6
6
  "name": "withstudiocms",
@@ -174,10 +174,10 @@
174
174
  "tinyglobby": "^0.2.15",
175
175
  "ultrahtml": "^1.6.0",
176
176
  "@withstudiocms/internal_helpers": "0.1.0-beta.3",
177
- "@withstudiocms/auth-kit": "0.1.0-beta.4",
178
- "@withstudiocms/component-registry": "0.1.0-beta.5",
177
+ "@withstudiocms/auth-kit": "0.1.0-beta.5",
178
+ "@withstudiocms/component-registry": "0.1.0-beta.6",
179
179
  "@withstudiocms/config-utils": "0.1.0-beta.4",
180
- "@withstudiocms/effect": "0.1.0-beta.5",
180
+ "@withstudiocms/effect": "0.1.0-beta.6",
181
181
  "@withstudiocms/template-lang": "0.1.0-beta.1"
182
182
  },
183
183
  "devDependencies": {
@@ -193,7 +193,7 @@
193
193
  "@studiocms/web-vitals": "^4.5.3",
194
194
  "astro": "^5.12.9",
195
195
  "drizzle-orm": "^0.42.0",
196
- "effect": "^3.19.0",
196
+ "effect": "^3.19.2",
197
197
  "vite": "^6.3.4"
198
198
  },
199
199
  "peerDependenciesMeta": {
@@ -69,7 +69,7 @@ const ogSelectOptions = validImages.map(({ label, name: value }) => ({ label, va
69
69
  </Card>
70
70
 
71
71
  <script>
72
- import { toast } from 'studiocms:ui/components/toaster';
72
+ import { toast } from 'studiocms:ui/components/toaster/client';
73
73
 
74
74
  const form = document.querySelector('#setup-step-one') as HTMLFormElement;
75
75
 
@@ -130,7 +130,7 @@ const Providers = providerData
130
130
  </Card>
131
131
 
132
132
  <script>
133
- import { toast } from 'studiocms:ui/components/toaster';
133
+ import { toast } from 'studiocms:ui/components/toaster/client';
134
134
 
135
135
  const form = document.querySelector('#setup-step-two') as HTMLFormElement;
136
136