-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.7.0: Tweaks, Precens and Fixes (#9)
- flag: scalability and minor design improvements - tlcc: design improvements - rewind: scalability and design improvements for smol screens - fix screenshots on mobile (smol screens) - kinks: remove Children (reasoning in commit 64462cd) technical: - adjust kinkcheck internal representation and serialization according to procens plans (and update tests accordingly) - use culling in the `Input` and `Kink` components - move unfinished and internal pages to their own directory - deploy: use npm clean-install - minor dependency upgrades
- Loading branch information
Showing
27 changed files
with
1,427 additions
and
1,832 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ yarn-debug.log* | |
yarn-error.log* | ||
pnpm-debug.log* | ||
.DS_Store | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
{ | ||
"extends": "stylelint-config-standard" | ||
"extends": "stylelint-config-standard", | ||
"rules": { | ||
"selector-pseudo-class-no-unknown": [ | ||
true, | ||
{ | ||
"ignorePseudoClasses": ["global"] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
set -uxe | ||
|
||
npm install | ||
npm ci | ||
npm run build |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
.input { | ||
margin-top: 8px; | ||
margin-bottom: 8px; | ||
font-size: 16pt; | ||
margin: 0.5em 0; | ||
border: 0; | ||
padding: 0.25em; | ||
font-size: 2em; | ||
width: 14.5em; | ||
background-color: rgb(var(--cmblack)); | ||
color: white; | ||
border: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import { type StateUpdater } from "preact/hooks"; | ||
import { type Dispatch, type StateUpdater } from "preact/hooks"; | ||
|
||
export default function Input({ error, placeholder, value, setValue, className }: | ||
{ error?: string, placeholder: string, value: string, setValue: StateUpdater<string>, className?: string }) { | ||
{ error?: string, placeholder: string, value: string, setValue: Dispatch<StateUpdater<string>>, className?: string }) { | ||
return <div className={className}> | ||
<input type="text" spellcheck={false} autocorrect="false" | ||
placeholder={placeholder} value={value} onInput={(e) => setValue(e.target.value)} /> | ||
<span style={{ color: "red" }}>{error}</span> | ||
{error && <span style={{ color: "red" }}>{error}</span>} | ||
</div>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.