@scrabble-solver/scrabble-solver 2.13.7 → 2.13.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.
- 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/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/prerender-manifest.js +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/577.js +1 -1
- package/.next/server/chunks/807.js +1 -1
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/pages/404.html +1 -1
- package/.next/server/pages/500.html +1 -1
- package/.next/server/pages/index.html +1 -1
- package/.next/server/pages/index.js +1 -1
- package/.next/server/pages/index.json +1 -1
- package/.next/static/7zESQYo9UAqNh9LV0b7Sd/_buildManifest.js +1 -0
- package/.next/static/chunks/{main-6e708370ad13b1f9.js → main-b5b360c6afb66b05.js} +1 -1
- package/.next/static/chunks/pages/{404-9d5621b1ca024a45.js → 404-63b972b24be99c62.js} +1 -1
- package/.next/static/chunks/pages/_app-a2848b7efa6bb6b0.js +17 -0
- package/.next/static/chunks/pages/{index-710b5c27542027be.js → index-7b73be2915cc7099.js} +1 -1
- package/.next/static/css/6682db14f926d4c7.css +1 -0
- package/.next/static/css/b37850c8d5270d91.css +2 -0
- package/.next/trace +44 -44
- package/package.json +12 -12
- package/src/components/Alert/Alert.module.scss +3 -12
- package/src/components/Board/Board.module.scss +1 -4
- package/src/components/Board/components/Actions/Actions.module.scss +7 -27
- package/src/components/Board/components/Cell/Cell.module.scss +5 -32
- package/src/components/Board/components/InputPrompt/InputPrompt.module.scss +4 -18
- package/src/components/Board/hooks/useBackgroundImage.tsx +15 -4
- package/src/components/Button/Button.module.scss +1 -8
- package/src/components/Dictionary/Dictionary.module.scss +1 -8
- package/src/components/Loading/Loading.module.scss +1 -4
- package/src/components/Modal/Modal.module.scss +2 -16
- package/src/components/Rack/Rack.module.scss +4 -18
- package/src/components/Rack/components/InputPrompt/InputPrompt.module.scss +1 -4
- package/src/components/Results/Results.module.scss +7 -39
- package/src/components/Results/useColumns.ts +1 -1
- package/src/components/Solver/components/ResultCandidatePicker/ResultCandidatePicker.module.scss +9 -40
- package/src/components/Tile/Tile.module.scss +6 -26
- package/src/components/index.ts +0 -1
- package/src/i18n/languages/german.json +1 -1
- package/src/icons/index.ts +0 -2
- package/src/modals/KeyMapModal/components/Mapping/Mapping.module.scss +2 -2
- package/src/modals/MenuModal/MenuModal.module.scss +2 -15
- package/src/modals/RemainingTilesModal/RemainingTilesModal.module.scss +1 -7
- package/src/modals/WordsModal/WordsModal.module.scss +2 -15
- package/src/styles/mixins.scss +2 -5
- package/.next/static/QbBIK_mEs1LhYSpQwv6rZ/_buildManifest.js +0 -1
- package/.next/static/chunks/pages/_app-7bc3bf713c40526a.js +0 -17
- package/.next/static/css/11366b7489cf90ac.css +0 -1
- package/.next/static/css/fe70298e6f597553.css +0 -2
- package/src/components/Checkbox/Checkbox.module.scss +0 -45
- package/src/components/Checkbox/Checkbox.tsx +0 -38
- package/src/components/Checkbox/index.ts +0 -1
- package/src/icons/CheckboxChecked.svg +0 -4
- package/src/icons/CheckboxEmpty.svg +0 -4
- /package/.next/static/{QbBIK_mEs1LhYSpQwv6rZ → 7zESQYo9UAqNh9LV0b7Sd}/_ssgManifest.js +0 -0
|
@@ -31,13 +31,7 @@
|
|
|
31
31
|
--aspect-ratio: var(--highest-flag-aspect-ratio);
|
|
32
32
|
--padding: calc(var(--spacing--l) + var(--button--icon--size) * var(--aspect-ratio));
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
padding-right: var(--padding);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
[dir='rtl'] & {
|
|
39
|
-
padding-left: var(--padding);
|
|
40
|
-
}
|
|
34
|
+
padding-inline-end: var(--padding);
|
|
41
35
|
}
|
|
42
36
|
|
|
43
37
|
.flag {
|
|
@@ -45,12 +39,5 @@
|
|
|
45
39
|
height: var(--button--icon--size);
|
|
46
40
|
border-radius: var(--border--radius);
|
|
47
41
|
box-shadow: 0 0 0 1px var(--box-shadow--color);
|
|
48
|
-
|
|
49
|
-
[dir='ltr'] & {
|
|
50
|
-
right: calc(2 * var(--spacing--l));
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
[dir='rtl'] & {
|
|
54
|
-
left: calc(2 * var(--spacing--l));
|
|
55
|
-
}
|
|
42
|
+
inset-inline-end: calc(2 * var(--spacing--l));
|
|
56
43
|
}
|
|
@@ -6,13 +6,7 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.badge {
|
|
9
|
-
|
|
10
|
-
margin-left: var(--spacing--m);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
[dir='rtl'] & {
|
|
14
|
-
margin-right: var(--spacing--m);
|
|
15
|
-
}
|
|
9
|
+
margin-inline-start: var(--spacing--m);
|
|
16
10
|
}
|
|
17
11
|
|
|
18
12
|
.word {
|
|
@@ -37,12 +31,5 @@
|
|
|
37
31
|
|
|
38
32
|
width: $size;
|
|
39
33
|
height: $size;
|
|
40
|
-
|
|
41
|
-
[dir='ltr'] & {
|
|
42
|
-
margin-right: var(--spacing--s);
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
[dir='rtl'] & {
|
|
46
|
-
margin-left: var(--spacing--s);
|
|
47
|
-
}
|
|
34
|
+
margin-inline-end: var(--spacing--s);
|
|
48
35
|
}
|
package/src/styles/mixins.scss
CHANGED
|
@@ -14,7 +14,7 @@ $media-expressions: (
|
|
|
14
14
|
|
|
15
15
|
@mixin scrollbars {
|
|
16
16
|
scrollbar-color: var(--scrollbar--thumb--color) var(--scrollbar--thumb--track);
|
|
17
|
-
scrollbar-width:
|
|
17
|
+
scrollbar-width: thin;
|
|
18
18
|
|
|
19
19
|
&::-webkit-scrollbar {
|
|
20
20
|
width: var(--scrollbar--size);
|
|
@@ -44,10 +44,7 @@ $media-expressions: (
|
|
|
44
44
|
|
|
45
45
|
&::after {
|
|
46
46
|
position: absolute;
|
|
47
|
-
|
|
48
|
-
right: 0;
|
|
49
|
-
bottom: 0;
|
|
50
|
-
left: 0;
|
|
47
|
+
inset: 0;
|
|
51
48
|
z-index: var(--z-index--focus-effect);
|
|
52
49
|
transition: var(--transition);
|
|
53
50
|
border-radius: var(--border--radius);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
self.__BUILD_MANIFEST={__rewrites:{afterFiles:[],beforeFiles:[],fallback:[]},"/":["static/css/11366b7489cf90ac.css","static/chunks/pages/index-710b5c27542027be.js"],"/404":["static/chunks/pages/404-9d5621b1ca024a45.js"],"/_error":["static/chunks/pages/_error-6f16571cf9224b25.js"],sortedPages:["/","/404","/_app","/_error"]},self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB();
|