@akinon/projectzero 1.42.0-rc.8 → 1.42.0

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 (40) hide show
  1. package/CHANGELOG.md +2 -52
  2. package/README.md +2 -3
  3. package/app-template/.lintstagedrc.js +4 -5
  4. package/app-template/CHANGELOG.md +23 -522
  5. package/app-template/docs/basic-setup.md +1 -1
  6. package/app-template/docs/plugins.md +7 -7
  7. package/app-template/package.json +20 -22
  8. package/app-template/public/locales/en/account.json +4 -4
  9. package/app-template/public/locales/en/basket.json +4 -0
  10. package/app-template/public/locales/tr/account.json +1 -1
  11. package/app-template/public/locales/tr/basket.json +4 -0
  12. package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
  13. package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +0 -1
  14. package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +15 -5
  15. package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +8 -12
  16. package/app-template/src/components/checkbox.tsx +2 -2
  17. package/app-template/src/components/input.tsx +7 -19
  18. package/app-template/src/components/price.tsx +4 -9
  19. package/app-template/src/redux/reducers/category.ts +1 -7
  20. package/app-template/src/views/account/address-form.tsx +7 -22
  21. package/app-template/src/views/account/contact-form.tsx +6 -23
  22. package/app-template/src/views/account/favorite-item.tsx +1 -1
  23. package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +1 -5
  24. package/app-template/src/views/basket/basket-item.tsx +12 -4
  25. package/app-template/src/views/category/category-info.tsx +17 -31
  26. package/app-template/src/views/category/filters/index.tsx +105 -5
  27. package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +4 -33
  28. package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +37 -43
  29. package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +35 -128
  30. package/app-template/src/views/header/mobile-menu.tsx +8 -25
  31. package/app-template/tsconfig.json +4 -14
  32. package/app-template/yarn.lock +1953 -1824
  33. package/commands/create.ts +5 -29
  34. package/commands/plugins.ts +4 -0
  35. package/dist/commands/create.js +2 -25
  36. package/dist/commands/plugins.js +4 -0
  37. package/package.json +2 -2
  38. package/app-template/package-lock.json +0 -29303
  39. package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +0 -8
  40. package/app-template/src/views/category/filters/filter-item.tsx +0 -131
@@ -3,19 +3,7 @@
3
3
  "display": "Default",
4
4
  "compilerOptions": {
5
5
  "baseUrl": "./src",
6
- "paths": {
7
- "@theme/*": ["./*"],
8
- "@root/*": ["./app/[commerce]/[locale]/[currency]/*"],
9
- "@product/*": ["./app/[commerce]/[locale]/[currency]/product/*"],
10
- "@group-product/*": [
11
- "./app/[commerce]/[locale]/[currency]/group-product/*"
12
- ],
13
- "@category/*": ["./app/[commerce]/[locale]/[currency]/category/*"],
14
- "@special-page/*": [
15
- "./app/[commerce]/[locale]/[currency]/special-page/*"
16
- ],
17
- "@flat-page/*": ["./app/[commerce]/[locale]/[currency]/flat-page/*"]
18
- },
6
+ "paths": { "@theme/*": ["./*"] },
19
7
  "allowSyntheticDefaultImports": true,
20
8
  "composite": false,
21
9
  "declaration": true,
@@ -52,5 +40,7 @@
52
40
  ".next/types/**/*.ts",
53
41
  "../../packages/**/*"
54
42
  ],
55
- "exclude": ["node_modules", "../../packages/projectzero/app-template"]
43
+ "exclude": ["node_modules",
44
+ "../../packages/projectzero/app-template"
45
+ ]
56
46
  }