@scrabble-solver/scrabble-solver 2.11.0 → 2.11.1
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 +7 -7
- 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 +341 -459
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/pages/404.html +2 -2
- package/.next/server/pages/404.js.nft.json +1 -1
- package/.next/server/pages/500.html +1 -1
- package/.next/server/pages/_app.js +0 -24
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/_document.js.nft.json +1 -1
- package/.next/server/pages/api/solve.js +0 -1
- package/.next/server/pages/index.html +1 -1
- package/.next/server/pages/index.js +4 -52
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/index.json +1 -1
- package/.next/static/chunks/pages/{404-e0f30450e9920dc3.js → 404-448ba28510855455.js} +1 -1
- package/.next/static/chunks/pages/_app-270526803bc274eb.js +28 -0
- package/.next/static/chunks/pages/index-c6e7754ccf3532df.js +1 -0
- package/.next/static/css/ad39b36eab07e613.css +1 -0
- package/.next/static/css/e5803e581e4c0451.css +2 -0
- package/.next/static/esK8DG-6aS5V7QFRtR3YE/_buildManifest.js +1 -0
- package/.next/trace +53 -55
- package/package.json +9 -14
- package/src/components/{Solver/components/EmptyState/EmptyState.module.scss → Alert/Alert.module.scss} +11 -7
- package/src/components/{Solver/components/EmptyState/EmptyState.tsx → Alert/Alert.tsx} +8 -6
- package/src/components/Alert/index.ts +1 -0
- package/src/components/Board/Board.module.scss +55 -0
- package/src/components/Board/BoardPure.tsx +4 -0
- package/src/components/Board/components/Cell/Cell.module.scss +41 -0
- package/src/components/Board/components/Cell/Cell.tsx +12 -0
- package/src/components/Board/components/Cell/CellPure.tsx +12 -0
- package/src/components/Board/hooks/useGrid.ts +8 -24
- package/src/components/Dictionary/Dictionary.module.scss +4 -0
- package/src/components/DictionaryInput/DictionaryInput.module.scss +1 -0
- package/src/components/EmptyState/EmptyState.module.scss +2 -1
- package/src/components/EmptyState/EmptyState.tsx +1 -2
- package/src/components/Loading/Loading.module.scss +1 -1
- package/src/components/Logo/Logo.tsx +5 -0
- package/src/components/Modal/Modal.module.scss +2 -0
- package/src/components/PlainTiles/PlainTiles.module.scss +1 -1
- package/src/components/PlainTiles/Tile.tsx +3 -3
- package/src/components/Rack/Rack.module.scss +25 -0
- package/src/components/Rack/Rack.tsx +5 -4
- package/src/components/Rack/RackTile.tsx +6 -13
- package/src/components/Results/Results.module.scss +28 -0
- package/src/components/ResultsInput/ResultsInput.module.scss +1 -0
- package/src/components/Solver/Solver.module.scss +5 -4
- package/src/components/Solver/Solver.tsx +8 -7
- package/src/components/Solver/components/index.ts +0 -1
- package/src/components/Tile/Tile.module.scss +14 -2
- package/src/components/Tooltip/Tooltip.module.scss +1 -72
- package/src/components/Tooltip/useTooltip.tsx +25 -35
- package/src/components/index.ts +1 -0
- package/src/hooks/index.ts +0 -1
- package/src/lib/index.ts +0 -1
- package/src/modals/DictionaryModal/DictionaryModal.module.scss +6 -1
- package/src/modals/KeyMapModal/KeyMapModal.tsx +5 -21
- package/src/modals/KeyMapModal/components/Mapping/Mapping.module.scss +4 -0
- package/src/modals/RemainingTilesModal/components/Character/Character.module.scss +1 -0
- package/src/modals/ResultsModal/ResultsModal.module.scss +1 -0
- package/src/modals/SettingsModal/components/LocaleSetting/LocaleSetting.module.scss +2 -0
- package/src/modals/WordsModal/WordsModal.module.scss +8 -1
- package/src/state/createAppStore.ts +26 -10
- package/src/state/types.ts +20 -2
- package/src/styles/mixins.scss +22 -0
- package/src/styles/variables.scss +16 -1
- package/.next/static/45ye7793DY705HOcuK9lJ/_buildManifest.js +0 -1
- package/.next/static/chunks/pages/_app-d7acee5e526752d9.js +0 -28
- package/.next/static/chunks/pages/index-35d2c1c79a201ae2.js +0 -1
- package/.next/static/css/a48caa6f57de6e98.css +0 -1
- package/.next/static/css/c49bbe944ddd1b39.css +0 -2
- package/src/components/Solver/components/EmptyState/index.ts +0 -1
- package/src/components/Tooltip/constants.ts +0 -28
- package/src/hooks/useUniqueId.ts +0 -9
- package/src/lib/isCtrl.ts +0 -7
- package/src/state/rootReducer.ts +0 -25
- /package/.next/static/{45ye7793DY705HOcuK9lJ → esK8DG-6aS5V7QFRtR3YE}/_ssgManifest.js +0 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@import 'styles/mixins';
|
|
2
|
+
|
|
1
3
|
$easeOutSine: cubic-bezier(0.61, 1, 0.88, 1);
|
|
2
4
|
|
|
3
5
|
:root {
|
|
@@ -8,7 +10,7 @@ $easeOutSine: cubic-bezier(0.61, 1, 0.88, 1);
|
|
|
8
10
|
--border--width: 1px;
|
|
9
11
|
|
|
10
12
|
--box-shadow: 0 0 var(--box-shadow--blur) var(--box-shadow--spread) var(--box-shadow--color);
|
|
11
|
-
--box-shadow--blur:
|
|
13
|
+
--box-shadow--blur: 8px;
|
|
12
14
|
--box-shadow--color: rgba(0, 0, 0, 0.15);
|
|
13
15
|
--box-shadow--spread: 1px;
|
|
14
16
|
--box-shadow--null: 0 0 var(--box-shadow--blur) var(--box-shadow--spread) transparent;
|
|
@@ -74,6 +76,11 @@ $easeOutSine: cubic-bezier(0.61, 1, 0.88, 1);
|
|
|
74
76
|
--spacing--xl: 40px;
|
|
75
77
|
--spacing--xxl: 80px;
|
|
76
78
|
|
|
79
|
+
--scrollbar--size: 5px;
|
|
80
|
+
--scrollbar--thumb--color: var(--border--color);
|
|
81
|
+
--scrollbar--thumb--color--highlight: var(--color--foreground--secondary);
|
|
82
|
+
--scrollbar--track--color: transparent;
|
|
83
|
+
|
|
77
84
|
--transition: all var(--transition--duration) var(--transition--easing);
|
|
78
85
|
--transition--long: all var(--transition--duration--long) var(--transition--easing);
|
|
79
86
|
--transition--duration: 100ms;
|
|
@@ -92,4 +99,12 @@ $easeOutSine: cubic-bezier(0.61, 1, 0.88, 1);
|
|
|
92
99
|
--solver-column--width: 580px;
|
|
93
100
|
--square-button--size: 32px;
|
|
94
101
|
--text-input--height: 40px;
|
|
102
|
+
|
|
103
|
+
@include media('<s') {
|
|
104
|
+
--box-shadow--blur: 5px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
@include media('<xs') {
|
|
108
|
+
--box-shadow--blur: 3px;
|
|
109
|
+
}
|
|
95
110
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
self.__BUILD_MANIFEST={__rewrites:{beforeFiles:[],afterFiles:[],fallback:[]},"/":["static/css/a48caa6f57de6e98.css","static/chunks/pages/index-35d2c1c79a201ae2.js"],"/404":["static/chunks/pages/404-e0f30450e9920dc3.js"],"/_error":["static/chunks/pages/_error-54de1933a164a1ff.js"],sortedPages:["/","/404","/_app","/_error"]},self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB();
|