@weareconceptstudio/account 0.2.6 → 0.2.7

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.
Files changed (38) hide show
  1. package/dist/components/AccountButton/style.js +112 -41
  2. package/dist/components/AccountContainer/index.d.ts +9 -2
  3. package/dist/components/AccountContainer/index.js +3 -2
  4. package/dist/components/TotalCheckout/FreeShippingComp/index.d.ts +8 -0
  5. package/dist/components/TotalCheckout/FreeShippingComp/index.js +22 -0
  6. package/dist/components/TotalCheckout/FreeShippingComp/style.d.ts +2 -0
  7. package/dist/components/TotalCheckout/FreeShippingComp/style.js +101 -0
  8. package/dist/components/TotalCheckout/PromoCodeComp/index.d.ts +5 -0
  9. package/dist/components/TotalCheckout/PromoCodeComp/index.js +29 -0
  10. package/dist/components/TotalCheckout/PromoCodeComp/style.d.ts +2 -0
  11. package/dist/components/TotalCheckout/PromoCodeComp/style.js +127 -0
  12. package/dist/components/TotalCheckout/PromoCodeComp/utils.d.ts +10 -0
  13. package/dist/components/TotalCheckout/PromoCodeComp/utils.js +14 -0
  14. package/dist/components/TotalCheckout/index.js +10 -4
  15. package/dist/modules/account/AccountTemplate/style.js +7 -5
  16. package/dist/modules/auth/ForgotPasswordTemplate/index.js +62 -45
  17. package/dist/modules/auth/ForgotPasswordTemplate/style.js +17 -9
  18. package/dist/modules/auth/ResetPasswordTemplate/style.js +5 -3
  19. package/dist/modules/auth/SignInTemplate/style.js +10 -6
  20. package/dist/modules/auth/VerifyEmailAddressTemplate/style.js +5 -3
  21. package/dist/modules/cart/CartTemplate/index.js +2 -2
  22. package/dist/modules/cart/CartTemplate/style.js +7 -5
  23. package/dist/modules/cart/SimpleItems/Item/index.js +1 -1
  24. package/dist/modules/cart/SimpleItems/ItemMobile/index.js +1 -1
  25. package/dist/modules/cart/SimpleItems/style.js +36 -4
  26. package/dist/modules/checkout/CheckoutTemplate/index.js +2 -2
  27. package/dist/modules/order/OrderedItems/style.js +40 -28
  28. package/dist/styles/helperClass.js +8 -0
  29. package/dist/styles/theme.js +1 -0
  30. package/dist/styles/variables.js +2 -0
  31. package/dist/translations/en.d.ts +3 -0
  32. package/dist/translations/en.js +3 -0
  33. package/dist/translations/hy.d.ts +3 -0
  34. package/dist/translations/hy.js +3 -0
  35. package/dist/translations/index.d.ts +9 -0
  36. package/dist/translations/ru.d.ts +3 -0
  37. package/dist/translations/ru.js +3 -0
  38. package/package.json +1 -1
@@ -14,6 +14,7 @@ declare const _default: {
14
14
  recoveryText: string;
15
15
  tryAgainText: string;
16
16
  tryAgain: string;
17
+ resendNewLink: string;
17
18
  successfullyMessage: string;
18
19
  registration: string;
19
20
  alreadyHaveAnAccount: string;
@@ -169,5 +170,7 @@ declare const _default: {
169
170
  reorder: string;
170
171
  backToShop: string;
171
172
  forgotErrorDescription: string;
173
+ gotPromotionCode: string;
174
+ promoCodePlaceholder: string;
172
175
  };
173
176
  export default _default;
@@ -14,6 +14,7 @@ export default {
14
14
  recoveryText: 'We sent a recovery link to you at',
15
15
  tryAgainText: 'If you didn’t receive the email please',
16
16
  tryAgain: 'try again.',
17
+ resendNewLink: 'Resend a new link',
17
18
  successfullyMessage: 'Your password has successfully changed.',
18
19
  registration: 'Registration',
19
20
  alreadyHaveAnAccount: 'Already have an account?',
@@ -181,4 +182,6 @@ export default {
181
182
  reorder: 'Reorder',
182
183
  backToShop: 'Back to shop',
183
184
  forgotErrorDescription: 'You will receive an email with a recovery link code within 1 minute․',
185
+ gotPromotionCode: '+ Got a promotion code?',
186
+ promoCodePlaceholder: 'Type your code',
184
187
  };
@@ -15,6 +15,7 @@ declare const _default: {
15
15
  recoveryText: string;
16
16
  tryAgainText: string;
17
17
  tryAgain: string;
18
+ resendNewLink: string;
18
19
  successfullyMessage: string;
19
20
  registration: string;
20
21
  alreadyHaveAnAccount: string;
@@ -170,6 +171,8 @@ declare const _default: {
170
171
  reorder: string;
171
172
  backToShop: string;
172
173
  forgotErrorDescription: string;
174
+ gotPromotionCode: string;
175
+ promoCodePlaceholder: string;
173
176
  };
174
177
  hy: {
175
178
  editCart: string;
@@ -187,6 +190,7 @@ declare const _default: {
187
190
  recoveryText: string;
188
191
  tryAgainText: string;
189
192
  tryAgain: string;
193
+ resendNewLink: string;
190
194
  successfullyMessage: string;
191
195
  registration: string;
192
196
  alreadyHaveAnAccount: string;
@@ -342,6 +346,8 @@ declare const _default: {
342
346
  reorder: string;
343
347
  backToShop: string;
344
348
  forgotErrorDescription: string;
349
+ gotPromotionCode: string;
350
+ promoCodePlaceholder: string;
345
351
  };
346
352
  ru: {
347
353
  editCart: string;
@@ -359,6 +365,7 @@ declare const _default: {
359
365
  recoveryText: string;
360
366
  tryAgainText: string;
361
367
  tryAgain: string;
368
+ resendNewLink: string;
362
369
  successfullyMessage: string;
363
370
  registration: string;
364
371
  alreadyHaveAnAccount: string;
@@ -514,6 +521,8 @@ declare const _default: {
514
521
  reorder: string;
515
522
  backToShop: string;
516
523
  forgotErrorDescription: string;
524
+ gotPromotionCode: string;
525
+ promoCodePlaceholder: string;
517
526
  };
518
527
  };
519
528
  export default _default;
@@ -14,6 +14,7 @@ declare const _default: {
14
14
  recoveryText: string;
15
15
  tryAgainText: string;
16
16
  tryAgain: string;
17
+ resendNewLink: string;
17
18
  successfullyMessage: string;
18
19
  registration: string;
19
20
  alreadyHaveAnAccount: string;
@@ -169,5 +170,7 @@ declare const _default: {
169
170
  reorder: string;
170
171
  backToShop: string;
171
172
  forgotErrorDescription: string;
173
+ gotPromotionCode: string;
174
+ promoCodePlaceholder: string;
172
175
  };
173
176
  export default _default;
@@ -14,6 +14,7 @@ export default {
14
14
  recoveryText: 'We sent a recovery link to you at',
15
15
  tryAgainText: 'If you didn’t receive the email please',
16
16
  tryAgain: 'try again.',
17
+ resendNewLink: 'Resend a new link',
17
18
  successfullyMessage: 'Your password has successfully changed.',
18
19
  registration: 'Registration',
19
20
  alreadyHaveAnAccount: 'Already have an account?',
@@ -181,4 +182,6 @@ export default {
181
182
  reorder: 'Reorder',
182
183
  backToShop: 'Back to shop',
183
184
  forgotErrorDescription: 'You will receive an email with a recovery link code within 1 minute․',
185
+ gotPromotionCode: '+ Got a promotion code?',
186
+ promoCodePlaceholder: 'Type your code',
184
187
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weareconceptstudio/account",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Concept Studio Account",
5
5
  "author": "Concept Studio",
6
6
  "license": "ISC",