@moonbase.sh/storefront 0.2.119 → 0.2.122

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.
@@ -193,7 +193,7 @@ export declare interface MoonbaseIntentArgs {
193
193
  declare interface MoonbaseOptions {
194
194
  toolbar: {
195
195
  enabled: boolean;
196
- location: 'bottom-left' | 'bottom-right';
196
+ location: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
197
197
  show: {
198
198
  cart: boolean;
199
199
  account: boolean;
@@ -201,6 +201,9 @@ declare interface MoonbaseOptions {
201
201
  };
202
202
  };
203
203
  auth: {
204
+ signIn: {
205
+ enabled: boolean;
206
+ };
204
207
  signUp: {
205
208
  enabled: boolean;
206
209
  };
@@ -218,7 +221,7 @@ declare interface MoonbaseOptions {
218
221
  body: 'Inter' | 'Roboto' | 'EB Garamond' | 'Merriweather';
219
222
  };
220
223
  corners: 'sharp' | 'soft' | 'round';
221
- buttons: 'a' | 'b' | 'c';
224
+ buttons: 'outlined' | 'light';
222
225
  cards: 'outlined' | 'shadow' | 'white';
223
226
  };
224
227
  target: HTMLElement | undefined;