Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat: implement Premium features page using shadcn/ui and Tailwind#15094

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
jaaydenh merged 27 commits intomainfromtailwind-experiment
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
27 commits
Select commitHold shift + click to select a range
459a028
wip
jaaydenhOct 2, 2024
169c4f5
fix
jaaydenhOct 15, 2024
24c97dc
update lock file
jaaydenhOct 15, 2024
4134d90
wip
jaaydenhOct 16, 2024
15eded8
revert css
jaaydenhOct 16, 2024
9dba1c8
fix: import index.css
jaaydenhOct 30, 2024
579ced7
feat: changes for premium page
jaaydenhOct 30, 2024
ae3bd9d
feat: implement Premium page with Tailwind and shadcn button
jaaydenhNov 1, 2024
f977408
fix: fix lock file
jaaydenhNov 1, 2024
71826a8
chore: updates to button styles
jaaydenhNov 1, 2024
093d947
chore: update variant
jaaydenhNov 1, 2024
58fbeb3
chore: update colors
jaaydenhNov 1, 2024
4e6daaf
chore: move CacheProvider to ThemeProvider
jaaydenhNov 1, 2024
287a67a
chore: update paths for shadcn
jaaydenhNov 1, 2024
1310637
fix: fix format
jaaydenhNov 1, 2024
281ec8a
feat: use Lucide instead of Radix icons
jaaydenhNov 2, 2024
25cbb87
fix: add useEffect cleanup function
jaaydenhNov 3, 2024
42e82b6
chore: add comment
jaaydenhNov 3, 2024
4ae065d
fix: fix format
jaaydenhNov 3, 2024
fd045a6
feat: show premium tab if no premium license
jaaydenhNov 3, 2024
e015d20
fix: fix format
jaaydenhNov 3, 2024
3eba3af
fix: use rem for font overrides
jaaydenhNov 5, 2024
162ad19
fix: remove fontSize
jaaydenhNov 5, 2024
fcb4c2a
fix: fix lockfile
jaaydenhNov 5, 2024
962045c
chore: add font sizes to Tailwind config
jaaydenhNov 5, 2024
09c5844
feat: add icons for OSS version
jaaydenhNov 6, 2024
ef4b261
fix: use sentence case
jaaydenhNov 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions.vscode/settings.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -47,10 +47,11 @@
"playwright.reuseBrowser": true,

"[javascript][javascriptreact][json][jsonc][typescript][typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
// "editor.codeActionsOnSave": {
// "source.organizeImports.biome": "explicit"
// }
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit"
// "source.organizeImports.biome": "explicit"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Nit: should we just remove it?

Copy link
ContributorAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

@aslilac Were you keeping this around for some reason?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

I was hoping to re-enable it after Biome pushed a couple more bug fix releases. Enabling this would mean that it'd sort imports on file save (and avoid annoying CI failures) but someone (I think Asher?) encountered a really nasty bug with it. It's been a few months though, so maybe we should enable it!

}
},

"[css][html][markdown][yaml]": {
Expand Down
20 changes: 20 additions & 0 deletionssite/components.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.js",
"css": "src/index.css",
"baseColor": "zinc",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "/components",
"utils": "/utils",
"ui": "/components/ui",
"lib": "/lib",
"hooks": "/hooks"
}
}
16 changes: 11 additions & 5 deletionssite/package.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -36,6 +36,7 @@
"@alwaysmeticulous/recorder-loader": "2.137.0",
"@emoji-mart/data": "1.2.1",
"@emoji-mart/react": "1.1.1",
"@emotion/cache": "11.13.1",
"@emotion/css": "11.13.4",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
Expand All@@ -49,6 +50,7 @@
"@mui/system": "5.16.7",
"@mui/utils": "5.16.6",
"@mui/x-tree-view": "7.18.0",
"@radix-ui/react-slot": "1.1.0",
"@tanstack/react-query-devtools": "4.35.3",
"@xterm/addon-canvas": "0.7.0",
"@xterm/addon-fit": "0.10.0",
Expand All@@ -63,6 +65,8 @@
"chartjs-adapter-date-fns": "3.0.0",
"chartjs-plugin-annotation": "3.0.1",
"chroma-js": "2.4.2",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"color-convert": "2.0.1",
"cron-parser": "4.9.0",
"cronstrue": "2.50.0",
Expand All@@ -74,6 +78,7 @@
"front-matter": "4.0.2",
"jszip": "3.10.1",
"lodash": "4.17.21",
"lucide-react": "0.454.0",
"monaco-editor": "0.52.0",
"pretty-bytes": "6.1.1",
"react": "18.3.1",
Expand All@@ -93,6 +98,8 @@
"resize-observer-polyfill": "1.5.1",
"rollup-plugin-visualizer": "5.12.0",
"semver": "7.6.2",
"tailwind-merge": "2.5.4",
"tailwindcss-animate": "1.0.7",
"tzdata": "1.0.40",
"ua-parser-js": "1.0.33",
"ufuzzy": "npm:@leeoniya/ufuzzy@1.0.10",
Expand DownExpand Up@@ -141,6 +148,7 @@
"@types/ua-parser-js": "0.7.36",
"@types/uuid": "9.0.2",
"@vitejs/plugin-react": "4.3.3",
"autoprefixer": "10.4.20",
"chromatic": "11.16.3",
"eventsourcemock": "2.0.0",
"express": "4.21.0",
Expand All@@ -151,13 +159,15 @@
"jest-websocket-mock": "2.5.0",
"jest_workaround": "0.1.14",
"msw": "2.3.5",
"postcss": "8.4.47",
"prettier": "3.3.3",
"protobufjs": "7.4.0",
"rxjs": "7.8.1",
"ssh2": "1.16.0",
"storybook": "8.3.5",
"storybook-addon-remix-react-router": "3.0.1",
"storybook-react-context": "0.6.0",
"tailwindcss": "3.4.13",
"ts-node": "10.9.1",
"ts-proto": "1.164.0",
"ts-prune": "0.10.3",
Expand All@@ -166,11 +176,7 @@
"vite-plugin-checker": "0.8.0",
"vite-plugin-turbosnap": "1.0.3"
},
"browserslist": [
"chrome 110",
"firefox 111",
"safari 16.0"
],
"browserslist": ["chrome 110", "firefox 111", "safari 16.0"],
"resolutions": {
"optionator": "0.9.3",
"semver": "7.6.2"
Expand Down
Loading
Loading

[8]ページ先頭

©2009-2025 Movatter.jp