-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53031c4
commit 668264a
Showing
114 changed files
with
4,525 additions
and
1,099 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+554 KB
.yarn/cache/@blueprintjs-datetime-npm-5.2.11-9c709ae380-c69470e3c0.zip
Binary file not shown.
Binary file added
BIN
+418 KB
.yarn/cache/@blueprintjs-datetime2-npm-2.2.9-a95144ba37-ef35243cad.zip
Binary file not shown.
Binary file removed
BIN
-49 KB
.yarn/cache/@blueprintjs-eslint-plugin-npm-2.1.2-461eb5c970-cf3fb5279a.zip
Binary file not shown.
Binary file added
BIN
+98.1 KB
.yarn/cache/@blueprintjs-eslint-plugin-npm-6.1.0-522d490a83-27171db159.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-266 KB
.yarn/cache/@blueprintjs-popover2-npm-1.8.0-f9e6fd492f-59635cbd75.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-18.4 KB
.yarn/cache/@humanwhocodes-config-array-npm-0.11.6-02675b40c5-2fb7288638.zip
Binary file not shown.
Binary file removed
BIN
-13.4 KB
.yarn/cache/@humanwhocodes-object-schema-npm-1.2.1-eb622b5d0e-a824a1ec31.zip
Binary file not shown.
Binary file removed
BIN
-6.95 KB
.yarn/cache/@hypnosphi-create-react-context-npm-0.3.1-01f6252b38-d2f069a562.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+50.4 KB
.yarn/cache/@tanstack-react-virtual-npm-3.0.1-4ec4d04e6c-11534a2310.zip
Binary file not shown.
Binary file added
BIN
+113 KB
.yarn/cache/@tanstack-virtual-core-npm-3.0.0-f5ce10d614-7283d50fc7.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { startCase } from "lodash-es"; | ||
import title from "title"; | ||
import { SPECIAL_TOKENS } from "./specialTokens"; | ||
|
||
export function titleCase(name: string): string { | ||
const titleCased = title(startCase(name), { special: SPECIAL_TOKENS }); | ||
|
||
// regex match "V 2", "V 4", etc. and replace it with "V2", "V4", etc. | ||
const versionedTitle = titleCased.replace(/V\s(\d)/g, "V$1"); | ||
return versionedTitle; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { useEffect, useRef } from "react"; | ||
|
||
export function usePrevious<T>(value: T): T { | ||
const ref = useRef<T>(value); | ||
useEffect(() => { | ||
ref.current = value; | ||
}, [value]); | ||
return ref.current; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{ "ignores": ["@types/jest", "@types/node", "vite", "@types/react", "@types/react"], "ignore-patterns": ["lib"] } | ||
{ "ignores": ["@types/jest", "@types/node", "vite", "@types/react", "@types/react-dom"], "ignore-patterns": ["lib"] } |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"private": true, | ||
"rules": { | ||
"depcheck": { | ||
"ignores": ["@types/react"] | ||
"ignores": ["@types/react-dom"] | ||
} | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.
668264a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
fern-dev – ./packages/ui/fe-bundle
fern-dev-git-main-buildwithfern.vercel.app
app-dev.buildwithfern.com
fern-dev-buildwithfern.vercel.app