fumadocs-ui 8.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +5 -0
  3. package/dist/chunk-24NYFO7H.js +31 -0
  4. package/dist/chunk-2ZR5Z6B2.js +105 -0
  5. package/dist/chunk-36MVEJ25.js +39 -0
  6. package/dist/chunk-5EZE3X7G.js +31 -0
  7. package/dist/chunk-5KW7ATCP.js +23 -0
  8. package/dist/chunk-6C3VEZWH.js +9 -0
  9. package/dist/chunk-CBOHU2VN.js +28 -0
  10. package/dist/chunk-EDUYFB4P.js +43 -0
  11. package/dist/chunk-F62NYOL5.js +44 -0
  12. package/dist/chunk-GZQICERS.js +31 -0
  13. package/dist/chunk-IXYX64FW.js +243 -0
  14. package/dist/chunk-KCGRUOMD.js +13 -0
  15. package/dist/chunk-OG3QOLYP.js +43 -0
  16. package/dist/chunk-PLXR6QNH.js +21 -0
  17. package/dist/chunk-UIZNMCLD.js +49 -0
  18. package/dist/chunk-YAHHY62W.js +20 -0
  19. package/dist/components/accordion.d.mts +11 -0
  20. package/dist/components/accordion.js +128 -0
  21. package/dist/components/api.d.mts +20 -0
  22. package/dist/components/api.js +136 -0
  23. package/dist/components/callout.d.mts +13 -0
  24. package/dist/components/callout.js +39 -0
  25. package/dist/components/card.d.mts +12 -0
  26. package/dist/components/card.js +10 -0
  27. package/dist/components/codeblock.d.mts +12 -0
  28. package/dist/components/codeblock.js +14 -0
  29. package/dist/components/dialog/search-algolia.d.mts +15 -0
  30. package/dist/components/dialog/search-algolia.js +39 -0
  31. package/dist/components/dialog/search-default.d.mts +15 -0
  32. package/dist/components/dialog/search-default.js +39 -0
  33. package/dist/components/dialog/search.d.mts +25 -0
  34. package/dist/components/dialog/search.js +13 -0
  35. package/dist/components/files.d.mts +20 -0
  36. package/dist/components/files.js +56 -0
  37. package/dist/components/heading.d.mts +9 -0
  38. package/dist/components/heading.js +8 -0
  39. package/dist/components/image-zoom.d.mts +12 -0
  40. package/dist/components/image-zoom.js +39 -0
  41. package/dist/components/inline-toc.d.mts +11 -0
  42. package/dist/components/inline-toc.js +53 -0
  43. package/dist/components/roll-button.d.mts +14 -0
  44. package/dist/components/roll-button.js +54 -0
  45. package/dist/components/steps.d.mts +10 -0
  46. package/dist/components/steps.js +14 -0
  47. package/dist/components/tabs.d.mts +37 -0
  48. package/dist/components/tabs.js +141 -0
  49. package/dist/components/type-table.d.mts +23 -0
  50. package/dist/components/type-table.js +52 -0
  51. package/dist/i18n-dw7ODAws.d.mts +22 -0
  52. package/dist/i18n.d.mts +21 -0
  53. package/dist/i18n.js +146 -0
  54. package/dist/layout-YB7EFpgW.d.mts +79 -0
  55. package/dist/layout.client.d.mts +4 -0
  56. package/dist/layout.client.js +458 -0
  57. package/dist/layout.d.mts +3 -0
  58. package/dist/layout.js +97 -0
  59. package/dist/mdx.client.d.mts +7 -0
  60. package/dist/mdx.client.js +23 -0
  61. package/dist/mdx.d.mts +36 -0
  62. package/dist/mdx.js +51 -0
  63. package/dist/page.client.d.mts +29 -0
  64. package/dist/page.client.js +168 -0
  65. package/dist/page.d.mts +49 -0
  66. package/dist/page.js +56 -0
  67. package/dist/provider.d.mts +50 -0
  68. package/dist/provider.js +51 -0
  69. package/dist/style.css +1 -0
  70. package/dist/tailwind-plugin.d.ts +36 -0
  71. package/dist/tailwind-plugin.js +481 -0
  72. package/dist/tree-Zwtp9xPv.d.mts +15 -0
  73. package/package.json +97 -0
package/package.json ADDED
@@ -0,0 +1,97 @@
1
+ {
2
+ "name": "fumadocs-ui",
3
+ "version": "8.0.0",
4
+ "description": "The framework for building a documentation website in Next.js",
5
+ "keywords": [
6
+ "NextJs",
7
+ "Docs"
8
+ ],
9
+ "homepage": "https://fumadocs.vercel.app",
10
+ "repository": "github:fuma-nama/next-docs",
11
+ "license": "MIT",
12
+ "author": "Fuma Nama",
13
+ "exports": {
14
+ "./style.css": "./dist/style.css",
15
+ "./tailwind-plugin": {
16
+ "import": "./dist/tailwind-plugin.js",
17
+ "require": "./dist/tailwind-plugin.js",
18
+ "types": "./dist/tailwind-plugin.d.ts"
19
+ },
20
+ "./components/*": {
21
+ "import": "./dist/components/*.js",
22
+ "types": "./dist/components/*.d.mts"
23
+ },
24
+ "./*": {
25
+ "import": "./dist/*.js",
26
+ "types": "./dist/*.d.mts"
27
+ }
28
+ },
29
+ "typesVersions": {
30
+ "*": {
31
+ "tailwind-plugin": [
32
+ "./dist/tailwind-plugin.d.ts"
33
+ ],
34
+ "components/*": [
35
+ "./dist/components/*.d.mts"
36
+ ],
37
+ "mdx/*": [
38
+ "./dist/mdx/*.d.mts"
39
+ ],
40
+ "*": [
41
+ "./dist/*.d.mts"
42
+ ]
43
+ }
44
+ },
45
+ "files": [
46
+ "dist/*"
47
+ ],
48
+ "dependencies": {
49
+ "@radix-ui/react-accordion": "^1.1.2",
50
+ "@radix-ui/react-collapsible": "^1.0.3",
51
+ "@radix-ui/react-dialog": "^1.0.4",
52
+ "@radix-ui/react-popover": "^1.0.6",
53
+ "@radix-ui/react-scroll-area": "^1.0.4",
54
+ "@radix-ui/react-select": "^2.0.0",
55
+ "@radix-ui/react-tabs": "^1.0.4",
56
+ "@tailwindcss/typography": "^0.5.10",
57
+ "class-variance-authority": "^0.7.0",
58
+ "clsx": "^2.0.0",
59
+ "cmdk": "^0.2.0",
60
+ "lucide-react": "^0.298.0",
61
+ "next-themes": "^0.2.1",
62
+ "react-medium-image-zoom": "^5.1.8",
63
+ "tailwind-merge": "^2.0.0",
64
+ "tailwindcss": "^3.4.1",
65
+ "fumadocs-core": "8.0.0"
66
+ },
67
+ "devDependencies": {
68
+ "@algolia/client-search": "^4.20.0",
69
+ "@next/eslint-plugin-next": "^14.0.0",
70
+ "@types/react": "18.2.0",
71
+ "@types/react-dom": "18.2.1",
72
+ "algoliasearch": "^4.20.0",
73
+ "next": "14.1.0",
74
+ "postcss": "8.4.33",
75
+ "postcss-cli": "^11.0.0",
76
+ "postcss-lightningcss": "^1.0.0",
77
+ "eslint-config-custom": "0.0.0",
78
+ "tsconfig": "0.0.0"
79
+ },
80
+ "peerDependencies": {
81
+ "next": ">= 13",
82
+ "react": ">= 18",
83
+ "react-dom": ">= 18"
84
+ },
85
+ "publishConfig": {
86
+ "access": "public"
87
+ },
88
+ "scripts": {
89
+ "build": "tsup && postcss css/styles.css -o ./dist/style.css",
90
+ "clean": "rimraf dist",
91
+ "dev": "concurrently \"pnpm dev:layout\" \"pnpm dev:tailwind\"",
92
+ "dev:layout": "tsup --watch",
93
+ "dev:tailwind": "postcss css/styles.css -o ./dist/style.css --watch",
94
+ "lint": "eslint .",
95
+ "types:check": "tsc --noEmit"
96
+ }
97
+ }