alexui 1.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.
- package/README.md +57 -0
- package/components/ActionTable.tsx +307 -0
- package/components/AlertBanner.tsx +124 -0
- package/components/AnimatedAccordion.tsx +95 -0
- package/components/Autocomplete.tsx +144 -0
- package/components/Avatar.tsx +123 -0
- package/components/Badge.tsx +80 -0
- package/components/Breadcrumb.tsx +74 -0
- package/components/Calendar.tsx +340 -0
- package/components/Card3D.tsx +117 -0
- package/components/Carousel3D.tsx +193 -0
- package/components/CascadeSelect.tsx +232 -0
- package/components/ChartShowcase.tsx +700 -0
- package/components/Checkbox.tsx +212 -0
- package/components/ChipsInput.tsx +152 -0
- package/components/CircularKnob.tsx +240 -0
- package/components/CodeVisualizer.tsx +67 -0
- package/components/Collapsible.tsx +72 -0
- package/components/ColorThemeManager.tsx +458 -0
- package/components/CommandMenu.tsx +191 -0
- package/components/ConfirmDialog.tsx +152 -0
- package/components/ContextMenu.tsx +192 -0
- package/components/DashboardLayout.tsx +115 -0
- package/components/DatePicker.tsx +108 -0
- package/components/Divider.tsx +67 -0
- package/components/Dock.tsx +93 -0
- package/components/DragDropLists.tsx +160 -0
- package/components/Drawer.tsx +161 -0
- package/components/DropdownPlus.tsx +304 -0
- package/components/EmptyState.tsx +49 -0
- package/components/ErrorPage.tsx +62 -0
- package/components/FileDropzone.tsx +206 -0
- package/components/ForgotPassword.tsx +137 -0
- package/components/FormField.tsx +81 -0
- package/components/GlassButton.tsx +56 -0
- package/components/GlassCard.tsx +82 -0
- package/components/GlassInput.tsx +96 -0
- package/components/GlassmorphicModal.tsx +108 -0
- package/components/GlowInput.tsx +111 -0
- package/components/GlowSelect.tsx +203 -0
- package/components/GlowTextArea.tsx +105 -0
- package/components/HorizontalTimeline.tsx +121 -0
- package/components/HoverCard.tsx +105 -0
- package/components/ImageLightbox.tsx +259 -0
- package/components/InputGroup.tsx +118 -0
- package/components/InputOTP.tsx +147 -0
- package/components/InteractiveNavbar.tsx +266 -0
- package/components/InteractiveSidebar.tsx +211 -0
- package/components/Kbd.tsx +51 -0
- package/components/LiteYouTube.tsx +118 -0
- package/components/LoaderCollection.tsx +368 -0
- package/components/LoginForm.tsx +192 -0
- package/components/MagneticButton.tsx +101 -0
- package/components/MaskedInput.tsx +79 -0
- package/components/MentionInput.tsx +413 -0
- package/components/MorphingSwitch.tsx +86 -0
- package/components/MultiSelect.tsx +158 -0
- package/components/NumberInput.tsx +203 -0
- package/components/Panel.tsx +104 -0
- package/components/PasswordInput.tsx +203 -0
- package/components/Popover.tsx +91 -0
- package/components/PricingTable.tsx +113 -0
- package/components/ProgressBar.tsx +152 -0
- package/components/RadioButton.tsx +211 -0
- package/components/Rating.tsx +82 -0
- package/components/ResizablePanel.tsx +114 -0
- package/components/ScrollPanel.tsx +103 -0
- package/components/SettingsPage.tsx +154 -0
- package/components/SignupForm.tsx +182 -0
- package/components/Skeleton.tsx +41 -0
- package/components/Slider.tsx +95 -0
- package/components/SlidingTabs.tsx +54 -0
- package/components/SortableList.tsx +91 -0
- package/components/SpeedDial.tsx +134 -0
- package/components/Spinner.tsx +40 -0
- package/components/Stepper.tsx +124 -0
- package/components/TabMenu.tsx +72 -0
- package/components/TableControls.tsx +77 -0
- package/components/TablePagination.tsx +88 -0
- package/components/TextEditor.tsx +329 -0
- package/components/TextReveal.tsx +99 -0
- package/components/ThemeSwitcher.tsx +133 -0
- package/components/TimelineGSAP.tsx +164 -0
- package/components/ToastSystem.tsx +110 -0
- package/components/ToggleButton.tsx +79 -0
- package/components/Tooltip.tsx +121 -0
- package/components/Tree.tsx +138 -0
- package/dist/commands/add.d.ts +7 -0
- package/dist/commands/add.js +110 -0
- package/dist/commands/init.d.ts +5 -0
- package/dist/commands/init.js +76 -0
- package/dist/commands/list.d.ts +1 -0
- package/dist/commands/list.js +32 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +60 -0
- package/dist/registry.d.ts +6 -0
- package/dist/registry.js +38 -0
- package/dist/tui/browse.d.ts +3 -0
- package/dist/tui/browse.js +139 -0
- package/dist/tui/format.d.ts +11 -0
- package/dist/tui/format.js +52 -0
- package/dist/tui/main.d.ts +1 -0
- package/dist/tui/main.js +86 -0
- package/dist/tui/panels.d.ts +9 -0
- package/dist/tui/panels.js +50 -0
- package/dist/tui/theme.d.ts +28 -0
- package/dist/tui/theme.js +76 -0
- package/dist/types.d.ts +28 -0
- package/dist/types.js +1 -0
- package/dist/utils/config.d.ts +6 -0
- package/dist/utils/config.js +24 -0
- package/dist/utils/copy.d.ts +9 -0
- package/dist/utils/copy.js +43 -0
- package/dist/utils/cwd.d.ts +6 -0
- package/dist/utils/cwd.js +30 -0
- package/dist/utils/deps.d.ts +1 -0
- package/dist/utils/deps.js +19 -0
- package/dist/utils/project.d.ts +5 -0
- package/dist/utils/project.js +30 -0
- package/dist/utils/theme.d.ts +1 -0
- package/dist/utils/theme.js +24 -0
- package/package.json +52 -0
- package/registry.json +1133 -0
- package/templates/theme.css +81 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/* alexui-theme */
|
|
2
|
+
@import "tailwindcss";
|
|
3
|
+
|
|
4
|
+
@custom-variant dark (&:where(.dark, .dark *));
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--color-bg-app: #f3f4f6;
|
|
8
|
+
--color-bg-card: #ffffff;
|
|
9
|
+
--color-border-app: #e5e7eb;
|
|
10
|
+
--color-text-main: #111827;
|
|
11
|
+
--color-text-muted: #4b5563;
|
|
12
|
+
--color-accent: #6366f1;
|
|
13
|
+
--color-accent-hover: #4f46e5;
|
|
14
|
+
--color-accent-glow: rgba(99, 102, 241, 0.15);
|
|
15
|
+
--color-glass-bg: rgba(255, 255, 255, 0.75);
|
|
16
|
+
--color-glass-border: rgba(229, 231, 235, 0.5);
|
|
17
|
+
--color-success: #10b981;
|
|
18
|
+
--color-error: #ef4444;
|
|
19
|
+
--color-warning: #f59e0b;
|
|
20
|
+
--color-info: #3b82f6;
|
|
21
|
+
--font-sans: 'Inter', system-ui, -apple-system, sans-serif;
|
|
22
|
+
--font-display: 'Outfit', system-ui, -apple-system, sans-serif;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.dark {
|
|
26
|
+
--color-bg-app: #09090b;
|
|
27
|
+
--color-bg-card: #18181b;
|
|
28
|
+
--color-border-app: #27272a;
|
|
29
|
+
--color-text-main: #fafafa;
|
|
30
|
+
--color-text-muted: #a1a1aa;
|
|
31
|
+
--color-accent: #818cf8;
|
|
32
|
+
--color-accent-hover: #6366f1;
|
|
33
|
+
--color-accent-glow: rgba(129, 140, 248, 0.2);
|
|
34
|
+
--color-glass-bg: rgba(24, 24, 27, 0.75);
|
|
35
|
+
--color-glass-border: rgba(39, 39, 42, 0.5);
|
|
36
|
+
--color-success: #34d399;
|
|
37
|
+
--color-error: #f87171;
|
|
38
|
+
--color-warning: #fbbf24;
|
|
39
|
+
--color-info: #60a5fa;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@theme {
|
|
43
|
+
--color-bg-app: var(--color-bg-app);
|
|
44
|
+
--color-bg-card: var(--color-bg-card);
|
|
45
|
+
--color-border-app: var(--color-border-app);
|
|
46
|
+
--color-text-main: var(--color-text-main);
|
|
47
|
+
--color-text-muted: var(--color-text-muted);
|
|
48
|
+
--color-accent: var(--color-accent);
|
|
49
|
+
--color-accent-hover: var(--color-accent-hover);
|
|
50
|
+
--color-accent-glow: var(--color-accent-glow);
|
|
51
|
+
--color-glass-bg: var(--color-glass-bg);
|
|
52
|
+
--color-glass-border: var(--color-glass-border);
|
|
53
|
+
--color-success: var(--color-success);
|
|
54
|
+
--color-error: var(--color-error);
|
|
55
|
+
--color-warning: var(--color-warning);
|
|
56
|
+
--color-info: var(--color-info);
|
|
57
|
+
--font-sans: var(--font-sans);
|
|
58
|
+
--font-display: var(--font-display);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.glass {
|
|
62
|
+
background-color: var(--color-glass-bg);
|
|
63
|
+
backdrop-filter: blur(12px);
|
|
64
|
+
-webkit-backdrop-filter: blur(12px);
|
|
65
|
+
border: 1px solid var(--color-glass-border);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.mesh-gradient {
|
|
69
|
+
background-color: var(--color-bg-app);
|
|
70
|
+
background-image:
|
|
71
|
+
radial-gradient(at 10% 20%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
|
|
72
|
+
radial-gradient(at 90% 10%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
|
|
73
|
+
radial-gradient(at 50% 80%, rgba(236, 72, 153, 0.1) 0px, transparent 50%);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.dark .mesh-gradient {
|
|
77
|
+
background-image:
|
|
78
|
+
radial-gradient(at 10% 20%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
|
|
79
|
+
radial-gradient(at 90% 10%, rgba(139, 92, 246, 0.1) 0px, transparent 50%),
|
|
80
|
+
radial-gradient(at 50% 80%, rgba(236, 72, 153, 0.05) 0px, transparent 50%);
|
|
81
|
+
}
|