@moonbase.sh/storefront 0.2.119 → 0.2.120
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/dist/moonbase.d.ts +4 -1
- package/dist/moonbase.js +1517 -1497
- package/dist/moonbase.umd.cjs +13 -13
- package/package.json +2 -2
package/dist/moonbase.d.ts
CHANGED
|
@@ -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
|
};
|