@scrabble-solver/scrabble-solver 2.11.6 → 2.11.8

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 (86) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +11 -11
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/eslint/.cache_8dgz12 +1 -1
  5. package/.next/cache/next-server.js.nft.json +1 -1
  6. package/.next/cache/webpack/client-production/0.pack +0 -0
  7. package/.next/cache/webpack/client-production/index.pack +0 -0
  8. package/.next/cache/webpack/edge-server-production/0.pack +0 -0
  9. package/.next/cache/webpack/edge-server-production/index.pack +0 -0
  10. package/.next/cache/webpack/server-production/0.pack +0 -0
  11. package/.next/cache/webpack/server-production/index.pack +0 -0
  12. package/.next/next-server.js.nft.json +1 -1
  13. package/.next/prerender-manifest.json +1 -1
  14. package/.next/routes-manifest.json +1 -1
  15. package/.next/server/chunks/277.js +653 -399
  16. package/.next/server/chunks/865.js +153 -115
  17. package/.next/server/middleware-build-manifest.js +1 -1
  18. package/.next/server/pages/404.html +1 -1
  19. package/.next/server/pages/404.js.nft.json +1 -1
  20. package/.next/server/pages/500.html +1 -1
  21. package/.next/server/pages/_app.js +9 -2
  22. package/.next/server/pages/_app.js.nft.json +1 -1
  23. package/.next/server/pages/api/solve.js +30 -1
  24. package/.next/server/pages/index.html +1 -1
  25. package/.next/server/pages/index.js +35 -6
  26. package/.next/server/pages/index.js.nft.json +1 -1
  27. package/.next/server/pages/index.json +1 -1
  28. package/.next/server/pages-manifest.json +3 -3
  29. package/.next/static/5ttGCAW8jcIKxpR8om9fK/_buildManifest.js +1 -0
  30. package/.next/static/chunks/framework-2c5cac93e8c637b5.js +49 -0
  31. package/.next/static/chunks/pages/{404-8176f4acd0cfeb42.js → 404-ca203fa27afc37d8.js} +1 -1
  32. package/.next/static/chunks/pages/_app-76a8840b6244d5a2.js +28 -0
  33. package/.next/static/chunks/pages/index-6894f40e6cac9243.js +1 -0
  34. package/.next/static/css/af871fef886ef5b7.css +2 -0
  35. package/.next/static/css/c6e0e01f44fc0425.css +1 -0
  36. package/.next/trace +50 -50
  37. package/package.json +9 -9
  38. package/src/components/Board/Board.module.scss +2 -59
  39. package/src/components/Board/Board.tsx +22 -10
  40. package/src/components/Board/BoardPure.tsx +13 -8
  41. package/src/components/Board/components/Cell/Cell.module.scss +8 -140
  42. package/src/components/Board/components/Cell/Cell.tsx +18 -37
  43. package/src/components/Board/hooks/index.ts +1 -0
  44. package/src/components/Board/hooks/useBackgroundImage.tsx +174 -0
  45. package/src/components/Board/hooks/useGrid.ts +17 -1
  46. package/src/components/Board/lib/getBonusColor.ts +18 -0
  47. package/src/components/Board/lib/index.ts +1 -0
  48. package/src/components/DictionaryInput/DictionaryInput.tsx +5 -3
  49. package/src/components/Key/Key.module.scss +7 -11
  50. package/src/components/Rack/Rack.tsx +4 -1
  51. package/src/components/Rack/RackTile.tsx +12 -2
  52. package/src/components/Results/Cell.tsx +2 -2
  53. package/src/components/Results/Result.tsx +4 -8
  54. package/src/components/Results/Results.module.scss +5 -3
  55. package/src/components/Solver/Solver.tsx +2 -2
  56. package/src/components/Tile/Tile.module.scss +4 -0
  57. package/src/components/Tooltip/Tooltip.module.scss +2 -0
  58. package/src/hooks/useAppLayout.ts +1 -0
  59. package/src/i18n/constants.ts +25 -8
  60. package/src/i18n/de.json +2 -2
  61. package/src/i18n/en.json +2 -2
  62. package/src/i18n/es.json +2 -2
  63. package/src/i18n/fa.json +2 -2
  64. package/src/i18n/fr.json +2 -2
  65. package/src/i18n/pl.json +2 -2
  66. package/src/lib/dataUrlToBlob.ts +20 -0
  67. package/src/lib/index.ts +2 -0
  68. package/src/lib/isCtrl.ts +7 -0
  69. package/src/modals/KeyMapModal/KeyMapModal.tsx +20 -4
  70. package/src/modals/KeyMapModal/components/Mapping/Mapping.module.scss +10 -4
  71. package/src/pages/_app.tsx +1 -3
  72. package/src/parameters/index.ts +33 -2
  73. package/src/state/index.ts +1 -1
  74. package/src/state/sagas.ts +3 -4
  75. package/src/state/store.ts +34 -0
  76. package/src/styles/variables.scss +4 -0
  77. package/.next/static/Jmk00rVXCbdjFgP77tKXQ/_buildManifest.js +0 -1
  78. package/.next/static/chunks/framework-2c79e2a64abdb08b.js +0 -33
  79. package/.next/static/chunks/pages/_app-b4fa92112b8f0385.js +0 -28
  80. package/.next/static/chunks/pages/index-ccd762f8f5028729.js +0 -1
  81. package/.next/static/css/1cd302e7648d209c.css +0 -2
  82. package/.next/static/css/34adfcf12a7d9bb6.css +0 -1
  83. package/src/components/Board/components/Cell/CellPure.tsx +0 -93
  84. package/src/components/Board/components/Cell/lib.ts +0 -59
  85. package/src/state/createAppStore.ts +0 -38
  86. /package/.next/static/{Jmk00rVXCbdjFgP77tKXQ → 5ttGCAW8jcIKxpR8om9fK}/_ssgManifest.js +0 -0
package/.next/BUILD_ID CHANGED
@@ -1 +1 @@
1
- Jmk00rVXCbdjFgP77tKXQ
1
+ 5ttGCAW8jcIKxpR8om9fK
@@ -5,34 +5,34 @@
5
5
  "devFiles": [],
6
6
  "ampDevFiles": [],
7
7
  "lowPriorityFiles": [
8
- "static/Jmk00rVXCbdjFgP77tKXQ/_buildManifest.js",
9
- "static/Jmk00rVXCbdjFgP77tKXQ/_ssgManifest.js"
8
+ "static/5ttGCAW8jcIKxpR8om9fK/_buildManifest.js",
9
+ "static/5ttGCAW8jcIKxpR8om9fK/_ssgManifest.js"
10
10
  ],
11
11
  "rootMainFiles": [],
12
12
  "pages": {
13
13
  "/": [
14
14
  "static/chunks/webpack-6ef43a8d4a395f49.js",
15
- "static/chunks/framework-2c79e2a64abdb08b.js",
15
+ "static/chunks/framework-2c5cac93e8c637b5.js",
16
16
  "static/chunks/main-0ecb9ccfcb6c9b24.js",
17
- "static/css/34adfcf12a7d9bb6.css",
18
- "static/chunks/pages/index-ccd762f8f5028729.js"
17
+ "static/css/c6e0e01f44fc0425.css",
18
+ "static/chunks/pages/index-6894f40e6cac9243.js"
19
19
  ],
20
20
  "/404": [
21
21
  "static/chunks/webpack-6ef43a8d4a395f49.js",
22
- "static/chunks/framework-2c79e2a64abdb08b.js",
22
+ "static/chunks/framework-2c5cac93e8c637b5.js",
23
23
  "static/chunks/main-0ecb9ccfcb6c9b24.js",
24
- "static/chunks/pages/404-8176f4acd0cfeb42.js"
24
+ "static/chunks/pages/404-ca203fa27afc37d8.js"
25
25
  ],
26
26
  "/_app": [
27
27
  "static/chunks/webpack-6ef43a8d4a395f49.js",
28
- "static/chunks/framework-2c79e2a64abdb08b.js",
28
+ "static/chunks/framework-2c5cac93e8c637b5.js",
29
29
  "static/chunks/main-0ecb9ccfcb6c9b24.js",
30
- "static/css/1cd302e7648d209c.css",
31
- "static/chunks/pages/_app-b4fa92112b8f0385.js"
30
+ "static/css/af871fef886ef5b7.css",
31
+ "static/chunks/pages/_app-76a8840b6244d5a2.js"
32
32
  ],
33
33
  "/_error": [
34
34
  "static/chunks/webpack-6ef43a8d4a395f49.js",
35
- "static/chunks/framework-2c79e2a64abdb08b.js",
35
+ "static/chunks/framework-2c5cac93e8c637b5.js",
36
36
  "static/chunks/main-0ecb9ccfcb6c9b24.js",
37
37
  "static/chunks/pages/_error-54de1933a164a1ff.js"
38
38
  ]