File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11.DS_Store
22node_modules
33/build
4+ /dist
45/.svelte-kit
56/package
67.env
78.env. *
89! .env.example
910
1011.vercel
12+
Original file line number Diff line number Diff line change 1- import { blockLookupSig } from "$stores" ;
21import type { BidiClass , Filter } from "$utils/types" ;
32import { PLANE_LENGTH } from "$utils/unicode" ;
43import { createSignal } from "solid-js" ;
54
5+ export type Block = { range : [ number , number ] ; name : string } ;
6+ export const [ blockLookupSig , setBlockLookupSig ] = createSignal < Block [ ] > ( [ ] ) ;
7+
68type MatchType = "Require" | "Exclude" ;
79export type Box =
810 | {
Original file line number Diff line number Diff line change @@ -57,9 +57,6 @@ export const selectedCodepointSig = createMemo(() => {
5757 return results ?. [ index ] ?. [ 1 ] ;
5858} ) ;
5959
60- export type Block = { range : [ number , number ] ; name : string } ;
61- export const [ blockLookupSig , setBlockLookupSig ] = createSignal < Block [ ] > ( [ ] ) ;
62-
6360export const [ encodingModeSig , setEncodingModeSig ] = createSignal < "hex" | "bin" | "dec" > ( "hex" ) ;
6461
6562// advanced search data
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import solidStyled from "unplugin-solid-styled";
44import path from "path" ;
55
66export default defineConfig ( {
7+ publicDir : "static" ,
78 resolve : {
89 alias : {
910 $lib : path . resolve ( __dirname , "src/lib" ) ,
You can’t perform that action at this time.
0 commit comments