diff --git a/.changeset/clean-dolphins-tell.md b/.changeset/clean-dolphins-tell.md new file mode 100644 index 000000000..3eb583dee --- /dev/null +++ b/.changeset/clean-dolphins-tell.md @@ -0,0 +1,5 @@ +--- +'@tszhong0411/ui': patch +--- + +Update styles of toaster diff --git a/.changeset/curly-ants-speak.md b/.changeset/curly-ants-speak.md new file mode 100644 index 000000000..f5024fb22 --- /dev/null +++ b/.changeset/curly-ants-speak.md @@ -0,0 +1,5 @@ +--- +'@tszhong0411/ui': patch +--- + +Add margin to video elements in typography styles diff --git a/.changeset/curly-hats-look.md b/.changeset/curly-hats-look.md new file mode 100644 index 000000000..212ac391c --- /dev/null +++ b/.changeset/curly-hats-look.md @@ -0,0 +1,5 @@ +--- +'@tszhong0411/ui': patch +--- + +Update build process and style imports for better organization diff --git a/.changeset/curly-pumas-shout.md b/.changeset/curly-pumas-shout.md new file mode 100644 index 000000000..dc102b6ed --- /dev/null +++ b/.changeset/curly-pumas-shout.md @@ -0,0 +1,5 @@ +--- +'@tszhong0411/eslint-config': patch +--- + +Temporarily disable tailwindcss plugin diff --git a/.changeset/fair-pears-repeat.md b/.changeset/fair-pears-repeat.md new file mode 100644 index 000000000..9b7362d0c --- /dev/null +++ b/.changeset/fair-pears-repeat.md @@ -0,0 +1,8 @@ +--- +'@tszhong0411/prettier-config': patch +--- + +Upgrade some dependencies + +- Upgrade prettier-plugin-sort-json from `^4.0.0` to `^4.1.1` +- Upgrade prettier-plugin-tailwindcss from `^0.6.9` to `^0.6.11` diff --git a/.changeset/happy-hotels-impress.md b/.changeset/happy-hotels-impress.md new file mode 100644 index 000000000..c8c12b2a0 --- /dev/null +++ b/.changeset/happy-hotels-impress.md @@ -0,0 +1,5 @@ +--- +'@tszhong0411/ui': patch +--- + +Update paths for CSS files and include CSS in build process diff --git a/.changeset/lazy-fans-grin.md b/.changeset/lazy-fans-grin.md new file mode 100644 index 000000000..27bb8a66f --- /dev/null +++ b/.changeset/lazy-fans-grin.md @@ -0,0 +1,5 @@ +--- +'@tszhong0411/ui': patch +--- + +Add `@tailwindcss/typography` for v4 diff --git a/.changeset/odd-zebras-refuse.md b/.changeset/odd-zebras-refuse.md new file mode 100644 index 000000000..adca23d52 --- /dev/null +++ b/.changeset/odd-zebras-refuse.md @@ -0,0 +1,7 @@ +--- +'@tszhong0411/prettier-plugin-package-json': patch +'@tszhong0411/prettier-config': patch +'@tszhong0411/utils': patch +--- + +Remove `sideEffects` in package.json diff --git a/.changeset/quiet-keys-share.md b/.changeset/quiet-keys-share.md new file mode 100644 index 000000000..3d0d052f5 --- /dev/null +++ b/.changeset/quiet-keys-share.md @@ -0,0 +1,5 @@ +--- +'@tszhong0411/ui': patch +--- + +Adjust Callout component styles for improved appearance diff --git a/.changeset/smooth-falcons-wash.md b/.changeset/smooth-falcons-wash.md new file mode 100644 index 000000000..ddadabae1 --- /dev/null +++ b/.changeset/smooth-falcons-wash.md @@ -0,0 +1,5 @@ +--- +'@tszhong0411/ui': patch +--- + +Simplify CSS selectors for Shiki styles diff --git a/.changeset/unlucky-masks-perform.md b/.changeset/unlucky-masks-perform.md new file mode 100644 index 000000000..8c267eee5 --- /dev/null +++ b/.changeset/unlucky-masks-perform.md @@ -0,0 +1,5 @@ +--- +'@tszhong0411/ui': patch +--- + +Adjust line-height for highlighted code blocks in shiki.css diff --git a/apps/docs/package.json b/apps/docs/package.json index 2c8cec5c5..0f1dd7ba3 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -38,9 +38,9 @@ }, "devDependencies": { "@next/bundle-analyzer": "^15.1.3", + "@tailwindcss/postcss": "^4.0.1", "@tszhong0411/eslint-config": "workspace:*", "@tszhong0411/shared": "workspace:*", - "@tszhong0411/tailwind-config": "workspace:*", "@tszhong0411/tsconfig": "workspace:*", "@types/node": "^22.10.2", "@types/react": "19.0.2", @@ -49,7 +49,7 @@ "postcss": "^8.5.1", "postcss-lightningcss": "^1.0.1", "postcss-load-config": "^6.0.1", - "tailwindcss": "^3.4.17" + "tailwindcss": "^4.0.1" }, "lint-staged": { "*.{cjs,mjs,js,jsx,cts,mts,ts,tsx,json}": "eslint --fix", diff --git a/apps/docs/postcss.config.mjs b/apps/docs/postcss.config.mjs index dd433ece8..d3ae09cc5 100644 --- a/apps/docs/postcss.config.mjs +++ b/apps/docs/postcss.config.mjs @@ -1,7 +1,7 @@ /** @type {import('postcss-load-config').Config} */ export default { plugins: { - tailwindcss: {}, + '@tailwindcss/postcss': {}, 'postcss-lightningcss': { browsers: '>= .25%' } diff --git a/apps/docs/src/app/layout.tsx b/apps/docs/src/app/layout.tsx index d51fb78d2..18a386f98 100644 --- a/apps/docs/src/app/layout.tsx +++ b/apps/docs/src/app/layout.tsx @@ -2,7 +2,6 @@ import type { Metadata, Viewport } from 'next' import '@/styles/globals.css' -import { Toaster } from '@tszhong0411/ui' import { cn } from '@tszhong0411/utils' import { GeistMono } from 'geist/font/mono' import { GeistSans } from 'geist/font/sans' @@ -119,7 +118,6 @@ const Layout = (props: LayoutProps) => {