@scrabble-solver/scrabble-solver 2.11.5 → 2.11.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.
- package/.next/BUILD_ID +1 -1
- package/.next/build-manifest.json +11 -11
- package/.next/cache/.tsbuildinfo +1 -1
- package/.next/cache/eslint/.cache_8dgz12 +1 -1
- package/.next/cache/next-server.js.nft.json +1 -1
- package/.next/cache/webpack/client-production/0.pack +0 -0
- package/.next/cache/webpack/client-production/index.pack +0 -0
- package/.next/cache/webpack/edge-server-production/0.pack +0 -0
- package/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/.next/cache/webpack/server-production/0.pack +0 -0
- package/.next/cache/webpack/server-production/index.pack +0 -0
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/277.js +778 -746
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/pages/404.html +1 -5
- package/.next/server/pages/404.js.nft.json +1 -1
- package/.next/server/pages/500.html +1 -1
- package/.next/server/pages/_app.js +9 -2
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/api/solve.js +29 -1
- package/.next/server/pages/index.html +1 -1
- package/.next/server/pages/index.js +10 -4
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/index.json +1 -1
- package/.next/static/chunks/framework-2c5cac93e8c637b5.js +49 -0
- package/.next/static/chunks/pages/{404-d30fe85d005ce32b.js → 404-ca203fa27afc37d8.js} +1 -1
- package/.next/static/chunks/pages/_app-e89a3c225b87516a.js +28 -0
- package/.next/static/chunks/pages/index-58744f49bf6b891f.js +1 -0
- package/.next/static/css/34adfcf12a7d9bb6.css +1 -0
- package/.next/static/css/edaeaa48321b4cf2.css +2 -0
- package/.next/static/uhB6d-q63uRC6RubwepLq/_buildManifest.js +1 -0
- package/.next/trace +50 -50
- package/package.json +9 -9
- package/src/components/Board/Board.module.scss +2 -59
- package/src/components/Board/Board.tsx +22 -10
- package/src/components/Board/BoardPure.tsx +13 -8
- package/src/components/Board/components/Cell/Cell.module.scss +8 -144
- package/src/components/Board/components/Cell/Cell.tsx +18 -37
- package/src/components/Board/hooks/index.ts +1 -0
- package/src/components/Board/hooks/useBackgroundImage.tsx +170 -0
- package/src/components/Board/lib/getBonusColor.ts +18 -0
- package/src/components/Board/lib/index.ts +1 -0
- package/src/components/Dictionary/Dictionary.module.scss +0 -1
- package/src/components/DictionaryInput/DictionaryInput.tsx +5 -3
- package/src/components/EmptyState/EmptyState.module.scss +0 -1
- package/src/components/Key/Key.module.scss +1 -1
- package/src/components/PlainTiles/PlainTiles.tsx +0 -10
- package/src/components/PlainTiles/Tile.tsx +1 -4
- package/src/components/Results/Cell.tsx +2 -2
- package/src/components/Results/Result.tsx +4 -8
- package/src/components/Results/Results.module.scss +5 -4
- package/src/components/Solver/Solver.tsx +2 -2
- package/src/components/Tooltip/Tooltip.module.scss +2 -0
- package/src/components/index.ts +0 -2
- package/src/hooks/useAppLayout.ts +1 -0
- package/src/hooks/useDirection.ts +2 -2
- package/src/hooks/useLanguage.ts +2 -2
- package/src/i18n/constants.ts +25 -16
- package/src/i18n/de.json +2 -2
- package/src/i18n/en.json +2 -2
- package/src/i18n/es.json +2 -2
- package/src/i18n/fa.json +2 -2
- package/src/i18n/fr.json +2 -2
- package/src/i18n/pl.json +2 -2
- package/src/lib/dataUrlToBlob.ts +20 -0
- package/src/lib/index.ts +1 -0
- package/src/modals/KeyMapModal/components/Mapping/Mapping.module.scss +0 -1
- package/src/modals/SettingsModal/components/ConfigSetting/ConfigSetting.module.scss +0 -1
- package/src/modals/SettingsModal/components/LocaleSetting/LocaleSetting.module.scss +0 -5
- package/src/pages/_app.tsx +1 -3
- package/src/pages/index.tsx +1 -3
- package/src/parameters/index.ts +33 -2
- package/src/state/index.ts +1 -1
- package/src/state/sagas.ts +3 -4
- package/src/state/store.ts +34 -0
- package/src/styles/global.scss +4 -8
- package/src/styles/mixins.scss +0 -1
- package/src/styles/variables.scss +5 -5
- package/.next/static/UzQCOB6CHhyOupkEq8oZM/_buildManifest.js +0 -1
- package/.next/static/chunks/framework-2c79e2a64abdb08b.js +0 -33
- package/.next/static/chunks/pages/_app-e27464a187a58684.js +0 -28
- package/.next/static/chunks/pages/index-3fd280f406cc00fd.js +0 -1
- package/.next/static/css/4bd04cebe207859c.css +0 -1
- package/.next/static/css/5b3b78170f4c5875.css +0 -2
- package/src/components/Board/components/Cell/CellPure.tsx +0 -93
- package/src/components/Board/components/Cell/lib.ts +0 -59
- package/src/components/SvgFontCss/SvgFontCss.tsx +0 -14
- package/src/components/SvgFontCss/createCss.ts +0 -11
- package/src/components/SvgFontCss/createStyle.ts +0 -9
- package/src/components/SvgFontCss/createSvg.ts +0 -10
- package/src/components/SvgFontCss/index.ts +0 -1
- package/src/components/SvgFontFix/SvgFontFix.module.scss +0 -5
- package/src/components/SvgFontFix/SvgFontFix.tsx +0 -21
- package/src/components/SvgFontFix/index.ts +0 -1
- package/src/state/createAppStore.ts +0 -38
- /package/.next/static/{UzQCOB6CHhyOupkEq8oZM → uhB6d-q63uRC6RubwepLq}/_ssgManifest.js +0 -0
package/.next/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
uhB6d-q63uRC6RubwepLq
|
|
@@ -5,34 +5,34 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"ampDevFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/uhB6d-q63uRC6RubwepLq/_buildManifest.js",
|
|
9
|
+
"static/uhB6d-q63uRC6RubwepLq/_ssgManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": [],
|
|
12
12
|
"pages": {
|
|
13
13
|
"/": [
|
|
14
14
|
"static/chunks/webpack-6ef43a8d4a395f49.js",
|
|
15
|
-
"static/chunks/framework-
|
|
15
|
+
"static/chunks/framework-2c5cac93e8c637b5.js",
|
|
16
16
|
"static/chunks/main-0ecb9ccfcb6c9b24.js",
|
|
17
|
-
"static/css/
|
|
18
|
-
"static/chunks/pages/index-
|
|
17
|
+
"static/css/34adfcf12a7d9bb6.css",
|
|
18
|
+
"static/chunks/pages/index-58744f49bf6b891f.js"
|
|
19
19
|
],
|
|
20
20
|
"/404": [
|
|
21
21
|
"static/chunks/webpack-6ef43a8d4a395f49.js",
|
|
22
|
-
"static/chunks/framework-
|
|
22
|
+
"static/chunks/framework-2c5cac93e8c637b5.js",
|
|
23
23
|
"static/chunks/main-0ecb9ccfcb6c9b24.js",
|
|
24
|
-
"static/chunks/pages/404-
|
|
24
|
+
"static/chunks/pages/404-ca203fa27afc37d8.js"
|
|
25
25
|
],
|
|
26
26
|
"/_app": [
|
|
27
27
|
"static/chunks/webpack-6ef43a8d4a395f49.js",
|
|
28
|
-
"static/chunks/framework-
|
|
28
|
+
"static/chunks/framework-2c5cac93e8c637b5.js",
|
|
29
29
|
"static/chunks/main-0ecb9ccfcb6c9b24.js",
|
|
30
|
-
"static/css/
|
|
31
|
-
"static/chunks/pages/_app-
|
|
30
|
+
"static/css/edaeaa48321b4cf2.css",
|
|
31
|
+
"static/chunks/pages/_app-e89a3c225b87516a.js"
|
|
32
32
|
],
|
|
33
33
|
"/_error": [
|
|
34
34
|
"static/chunks/webpack-6ef43a8d4a395f49.js",
|
|
35
|
-
"static/chunks/framework-
|
|
35
|
+
"static/chunks/framework-2c5cac93e8c637b5.js",
|
|
36
36
|
"static/chunks/main-0ecb9ccfcb6c9b24.js",
|
|
37
37
|
"static/chunks/pages/_error-54de1933a164a1ff.js"
|
|
38
38
|
]
|