@lukeashford/aurelius 2.6.0 → 2.8.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/dist/index.d.mts +21 -1
- package/dist/index.d.ts +21 -1
- package/dist/index.js +109 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +108 -10
- package/dist/index.mjs.map +1 -1
- package/llms.md +1 -0
- package/package.json +5 -2
package/llms.md
CHANGED
|
@@ -120,6 +120,7 @@ Import from `@lukeashford/aurelius`:
|
|
|
120
120
|
| Textarea | error |
|
|
121
121
|
| Toast | children, position (top-right, top-left, bottom-right, bottom-left, top-center, bottom-center), defaultDuration |
|
|
122
122
|
| Tooltip | content, children, open, side (top, right, bottom, left) |
|
|
123
|
+
| VideoCard | src, title, subtitle, aspectRatio (${number}/${number}), playing, controls, light, volume, muted, loop, mediaClassName, contentClassName, playerProps |
|
|
123
124
|
|
|
124
125
|
### Component Notes
|
|
125
126
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lukeashford/aurelius",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"description": "Design system for Aurelius applications — A cohesive visual language for creative technologists",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -123,7 +123,10 @@
|
|
|
123
123
|
"license": "MIT",
|
|
124
124
|
"dependencies": {
|
|
125
125
|
"@tailwindcss/typography": "^0.5.15",
|
|
126
|
+
"clsx": "^2.1.1",
|
|
126
127
|
"dompurify": "^3.3.1",
|
|
127
|
-
"lucide-react": "^0.555.0"
|
|
128
|
+
"lucide-react": "^0.555.0",
|
|
129
|
+
"react-player": "^3.4.0",
|
|
130
|
+
"tailwind-merge": "^3.4.0"
|
|
128
131
|
}
|
|
129
132
|
}
|