feat(deps): add dep build workflow
All checks were successful
/ deploy-and-package (push) Successful in 1m19s
All checks were successful
/ deploy-and-package (push) Successful in 1m19s
This commit is contained in:
parent
67824c6bc8
commit
7194ba72fd
5 changed files with 110 additions and 89 deletions
|
|
@ -17,6 +17,7 @@
|
|||
"devDependencies": {
|
||||
"@eslint/js": "^10.0.1",
|
||||
"@tailwindcss/vite": "^4.3.3",
|
||||
"@typescript/native": "npm:typescript@^7.0.2",
|
||||
"@types/node": "^26.2.0",
|
||||
"@types/react": "^19.2.18",
|
||||
"@types/react-dom": "^19.2.4",
|
||||
|
|
@ -25,7 +26,7 @@
|
|||
"eslint-plugin-react-hooks": "^7.1.1",
|
||||
"eslint-plugin-react-refresh": "^0.5.3",
|
||||
"globals": "^17.9.0",
|
||||
"typescript": "^7.0.2",
|
||||
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
||||
"typescript-eslint": "^8.66.0",
|
||||
"vite": "^8.2.1"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,6 @@
|
|||
import {
|
||||
Button,
|
||||
Card,
|
||||
CardContent,
|
||||
CardDescription,
|
||||
CardHeader,
|
||||
CardTitle,
|
||||
Markdown,
|
||||
} from "@methanium/ui";
|
||||
import { Markdown } from "@methanium/ui";
|
||||
import {
|
||||
createEmojiRegistry,
|
||||
Emoji,
|
||||
EmojiProvider,
|
||||
Input,
|
||||
Text,
|
||||
|
|
@ -136,7 +127,6 @@ function MarkdownShowcase() {
|
|||
const [inputValue, setInputValue] = useState(
|
||||
'Hello **Markdown** :fire:\n\nTry the custom :methanium: emoji or type another `:shortcode:`. \n```ts\nconst stuff = "stuff";\n```',
|
||||
);
|
||||
const [submissions, setSubmissions] = useState(0);
|
||||
const controllerRef = useRef<InputController | null>(null);
|
||||
|
||||
return (
|
||||
|
|
@ -149,7 +139,6 @@ function MarkdownShowcase() {
|
|||
setValue={setInputValue}
|
||||
placeholder="Write Markdown or type :fire:"
|
||||
emojiFrequencies={{ ":methanium:": 20, ":fire:": 10 }}
|
||||
onSubmit={() => setSubmissions((count) => count + 1)}
|
||||
onControllerChange={(controller) => {
|
||||
controllerRef.current = controller;
|
||||
}}
|
||||
|
|
|
|||
Loading…
Reference in a new issue