@medway-ui/core 0.1.8 → 0.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medway-ui/core",
3
- "version": "0.1.8",
3
+ "version": "0.2.0",
4
4
  "private": false,
5
5
  "description": "Biblioteca de componentes e assets para o sistema Medway",
6
6
  "author": "Alekcarvalho",
@@ -27,6 +27,7 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@radix-ui/react-avatar": "^1.1.10",
30
+ "@radix-ui/react-collapsible": "^1.1.11",
30
31
  "@radix-ui/react-dialog": "^1.1.13",
31
32
  "@radix-ui/react-separator": "^1.1.6",
32
33
  "@radix-ui/react-slot": "^1.2.2",
@@ -35,43 +36,44 @@
35
36
  "clsx": "^2.1.1"
36
37
  },
37
38
  "peerDependencies": {
39
+ "@medway-ui/icons": "^1.0.2",
38
40
  "react": ">=18.0.0",
39
41
  "react-dom": ">=18.0.0",
40
- "tailwindcss": ">=4.0.0",
41
- "@medway-ui/icons": "^1.0.2"
42
+ "tailwindcss": "3"
42
43
  },
43
44
  "devDependencies": {
44
- "@medway-ui/icons": "^1.0.2",
45
45
  "@commitlint/cli": "^19.8.1",
46
46
  "@commitlint/config-conventional": "^19.8.1",
47
47
  "@eslint/eslintrc": "^3",
48
- "@tailwindcss/postcss": "^4",
48
+ "@medway-ui/icons": "^1.0.5",
49
49
  "@types/node": "^20",
50
50
  "@types/react": "^19",
51
51
  "@types/react-dom": "^19",
52
52
  "@types/svg-parser": "^2.0.6",
53
53
  "@typescript-eslint/eslint-plugin": "^8.31.1",
54
54
  "@typescript-eslint/parser": "^8.31.1",
55
+ "autoprefixer": "^10.4.21",
55
56
  "eslint": "^9",
56
57
  "eslint-config-next": "15.3.1",
57
58
  "eslint-config-prettier": "^10.1.2",
58
59
  "eslint-plugin-mdx": "^3.4.1",
59
60
  "husky": "^9.1.7",
61
+ "lucide-react": "^0.510.0",
60
62
  "next": "15.3.1",
61
63
  "nextra": "^4.2.17",
62
64
  "nextra-theme-docs": "^4.2.17",
63
65
  "pagefind": "^1.3.0",
66
+ "postcss": "^8.5.3",
64
67
  "prettier": "3.5.3",
65
68
  "prettier-plugin-tailwindcss": "0.6.11",
66
69
  "react": "^19.0.0",
67
70
  "react-dom": "^19.0.0",
68
71
  "svg-parser": "^2.0.4",
69
72
  "tailwind-merge": "^3.2.0",
70
- "tailwindcss": "^4",
73
+ "tailwindcss": "3",
74
+ "tailwindcss-animate": "^1.0.7",
71
75
  "tsup": "^8.5.0",
72
- "tw-animate-css": "^1.2.9",
73
- "typescript": "^5",
74
- "lucide-react": "^0.510.0"
76
+ "typescript": "^5"
75
77
  },
76
78
  "exports": {
77
79
  ".": {
@@ -80,6 +82,9 @@
80
82
  },
81
83
  "./tokens.css": {
82
84
  "default": "./dist/assets/css/tokens.css"
85
+ },
86
+ "./tokens.js": {
87
+ "default": "./dist/assets/js/tokens.js"
83
88
  }
84
89
  },
85
90
  "publishConfig": {
@@ -1,35 +0,0 @@
1
- @import "tailwindcss";
2
- @import "tw-animate-css";
3
- @import "./tokens.css";
4
-
5
- @layer base {
6
- * {
7
- @apply border-border outline-ring/50;
8
- }
9
- body {
10
- @apply bg-background text-foreground h-full overflow-x-hidden antialiased;
11
- }
12
- main {
13
- @apply desktop:max-w-desktop tablet:max-w-tablet max-w-mobile tablet:px-6 desktop:px-8 mx-auto h-full w-full px-4 py-12;
14
- }
15
- }
16
-
17
- .nextra-code {
18
- @apply mt-0;
19
- }
20
-
21
- .nextra-sidebar-footer {
22
- @apply fixed bottom-0 left-0 w-full max-w-64;
23
- }
24
-
25
- .precode {
26
- @apply border-border rounded-md border p-6;
27
- }
28
-
29
- .precode-alt {
30
- @apply my-6;
31
- }
32
-
33
- .link {
34
- @apply text-[#006BE6] underline;
35
- }