acidui-core 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 +127 -0
- package/eslint.config.js +23 -0
- package/git +0 -0
- package/index.html +13 -0
- package/package.json +38 -0
- package/public/vite.svg +1 -0
- package/src/App.css +8 -0
- package/src/App.tsx +26 -0
- package/src/assets/react.svg +1 -0
- package/src/cli/main.mjs +209 -0
- package/src/components/AcidAccordion.css +52 -0
- package/src/components/AcidAccordion.tsx +72 -0
- package/src/components/AcidAlert.css +86 -0
- package/src/components/AcidAlert.tsx +52 -0
- package/src/components/AcidAnimatedNotification.css +103 -0
- package/src/components/AcidAnimatedNotification.tsx +62 -0
- package/src/components/AcidAspectRatio.css +16 -0
- package/src/components/AcidAspectRatio.tsx +21 -0
- package/src/components/AcidAuroraText.css +49 -0
- package/src/components/AcidAuroraText.tsx +19 -0
- package/src/components/AcidAvatar.css +70 -0
- package/src/components/AcidAvatar.tsx +32 -0
- package/src/components/AcidBadge.css +54 -0
- package/src/components/AcidBadge.tsx +27 -0
- package/src/components/AcidBentoGrid.css +98 -0
- package/src/components/AcidBentoGrid.tsx +68 -0
- package/src/components/AcidBorderBeam.css +27 -0
- package/src/components/AcidBorderBeam.tsx +37 -0
- package/src/components/AcidBreadcrumb.css +36 -0
- package/src/components/AcidBreadcrumb.tsx +35 -0
- package/src/components/AcidButton.css +97 -0
- package/src/components/AcidButton.tsx +29 -0
- package/src/components/AcidCalendar.css +136 -0
- package/src/components/AcidCalendar.tsx +144 -0
- package/src/components/AcidCard.css +42 -0
- package/src/components/AcidCard.tsx +26 -0
- package/src/components/AcidCarousel.css +166 -0
- package/src/components/AcidCarousel.tsx +168 -0
- package/src/components/AcidChart.css +132 -0
- package/src/components/AcidChart.tsx +198 -0
- package/src/components/AcidCheckbox.css +64 -0
- package/src/components/AcidCheckbox.tsx +58 -0
- package/src/components/AcidCodeBlock.css +51 -0
- package/src/components/AcidCodeBlock.tsx +25 -0
- package/src/components/AcidCodeDisplay.css +79 -0
- package/src/components/AcidCodeDisplay.tsx +42 -0
- package/src/components/AcidCollapsible.css +54 -0
- package/src/components/AcidCollapsible.tsx +56 -0
- package/src/components/AcidCommand.css +207 -0
- package/src/components/AcidCommand.tsx +149 -0
- package/src/components/AcidConfettiButton.tsx +37 -0
- package/src/components/AcidContextMenu.css +84 -0
- package/src/components/AcidContextMenu.tsx +111 -0
- package/src/components/AcidCountUp.css +54 -0
- package/src/components/AcidCountUp.tsx +66 -0
- package/src/components/AcidDialog.css +124 -0
- package/src/components/AcidDialog.tsx +89 -0
- package/src/components/AcidDivider.css +44 -0
- package/src/components/AcidDivider.tsx +28 -0
- package/src/components/AcidDock.css +74 -0
- package/src/components/AcidDock.tsx +65 -0
- package/src/components/AcidDragOrderList.css +45 -0
- package/src/components/AcidDragOrderList.tsx +58 -0
- package/src/components/AcidDrawer.css +64 -0
- package/src/components/AcidDrawer.tsx +55 -0
- package/src/components/AcidDropdown.css +103 -0
- package/src/components/AcidDropdown.tsx +87 -0
- package/src/components/AcidDynamicNavbar.css +273 -0
- package/src/components/AcidDynamicNavbar.tsx +157 -0
- package/src/components/AcidElectroBorder.css +141 -0
- package/src/components/AcidElectroBorder.tsx +53 -0
- package/src/components/AcidFloatingNavbar.css +152 -0
- package/src/components/AcidFloatingNavbar.tsx +111 -0
- package/src/components/AcidForm.css +78 -0
- package/src/components/AcidForm.tsx +45 -0
- package/src/components/AcidGlassFolder.css +111 -0
- package/src/components/AcidGlassFolder.tsx +34 -0
- package/src/components/AcidGradientButton.css +99 -0
- package/src/components/AcidGradientButton.tsx +37 -0
- package/src/components/AcidGridBox.css +61 -0
- package/src/components/AcidGridBox.tsx +26 -0
- package/src/components/AcidIconBox.css +42 -0
- package/src/components/AcidIconBox.tsx +18 -0
- package/src/components/AcidInput.css +99 -0
- package/src/components/AcidInput.tsx +27 -0
- package/src/components/AcidInputOtp.css +57 -0
- package/src/components/AcidInputOtp.tsx +102 -0
- package/src/components/AcidLabel.css +26 -0
- package/src/components/AcidLabel.tsx +18 -0
- package/src/components/AcidLayout.css +42 -0
- package/src/components/AcidLayout.tsx +35 -0
- package/src/components/AcidLink.css +26 -0
- package/src/components/AcidLink.tsx +19 -0
- package/src/components/AcidMagicCard.css +27 -0
- package/src/components/AcidMagicCard.tsx +49 -0
- package/src/components/AcidMagicLoader.css +47 -0
- package/src/components/AcidMagicLoader.tsx +43 -0
- package/src/components/AcidMarquee.css +59 -0
- package/src/components/AcidMarquee.tsx +28 -0
- package/src/components/AcidMeter.css +118 -0
- package/src/components/AcidMeter.tsx +37 -0
- package/src/components/AcidNavbar.css +142 -0
- package/src/components/AcidNavbar.tsx +111 -0
- package/src/components/AcidNavigationMenu.css +47 -0
- package/src/components/AcidNavigationMenu.tsx +38 -0
- package/src/components/AcidPagination.css +57 -0
- package/src/components/AcidPagination.tsx +51 -0
- package/src/components/AcidProgress.css +57 -0
- package/src/components/AcidProgress.tsx +40 -0
- package/src/components/AcidRadioGroup.css +98 -0
- package/src/components/AcidRadioGroup.tsx +70 -0
- package/src/components/AcidResizable.css +34 -0
- package/src/components/AcidResizable.tsx +46 -0
- package/src/components/AcidRippleButton.css +34 -0
- package/src/components/AcidRippleButton.tsx +61 -0
- package/src/components/AcidRippleLoader.css +23 -0
- package/src/components/AcidRippleLoader.tsx +40 -0
- package/src/components/AcidScrollArea.css +28 -0
- package/src/components/AcidScrollArea.tsx +21 -0
- package/src/components/AcidScrollList.css +107 -0
- package/src/components/AcidScrollList.tsx +58 -0
- package/src/components/AcidScrollReveal.tsx +29 -0
- package/src/components/AcidScrollStack.css +46 -0
- package/src/components/AcidScrollStack.tsx +54 -0
- package/src/components/AcidSelect.css +144 -0
- package/src/components/AcidSelect.tsx +108 -0
- package/src/components/AcidSeparator.css +15 -0
- package/src/components/AcidSeparator.tsx +24 -0
- package/src/components/AcidSheet.css +99 -0
- package/src/components/AcidSheet.tsx +68 -0
- package/src/components/AcidShineButton.css +36 -0
- package/src/components/AcidShineButton.tsx +24 -0
- package/src/components/AcidShinyText.css +22 -0
- package/src/components/AcidShinyText.tsx +20 -0
- package/src/components/AcidSidebar.css +152 -0
- package/src/components/AcidSidebar.tsx +44 -0
- package/src/components/AcidSkeleton.css +61 -0
- package/src/components/AcidSkeleton.tsx +29 -0
- package/src/components/AcidSlider.css +89 -0
- package/src/components/AcidSlider.tsx +87 -0
- package/src/components/AcidSolidCard.css +55 -0
- package/src/components/AcidSolidCard.tsx +35 -0
- package/src/components/AcidStackList.css +59 -0
- package/src/components/AcidStackList.tsx +38 -0
- package/src/components/AcidStepList.css +35 -0
- package/src/components/AcidStepList.tsx +31 -0
- package/src/components/AcidSwitch.css +48 -0
- package/src/components/AcidSwitch.tsx +48 -0
- package/src/components/AcidTable.css +60 -0
- package/src/components/AcidTable.tsx +44 -0
- package/src/components/AcidTabs.css +102 -0
- package/src/components/AcidTabs.tsx +47 -0
- package/src/components/AcidTerminalCard.css +63 -0
- package/src/components/AcidTerminalCard.tsx +35 -0
- package/src/components/AcidTextMarquee.css +30 -0
- package/src/components/AcidTextMarquee.tsx +37 -0
- package/src/components/AcidTextarea.tsx +32 -0
- package/src/components/AcidTimeline.css +129 -0
- package/src/components/AcidTimeline.tsx +59 -0
- package/src/components/AcidToast.css +77 -0
- package/src/components/AcidToast.tsx +72 -0
- package/src/components/AcidToggle.css +73 -0
- package/src/components/AcidToggle.tsx +56 -0
- package/src/components/AcidToggleGroup.css +61 -0
- package/src/components/AcidToggleGroup.tsx +76 -0
- package/src/components/AcidTooltip.css +81 -0
- package/src/components/AcidTooltip.tsx +44 -0
- package/src/components/AcidTopLoader.css +24 -0
- package/src/components/AcidTopLoader.tsx +61 -0
- package/src/components/AcidTopStickyBar.css +99 -0
- package/src/components/AcidTopStickyBar.tsx +51 -0
- package/src/components/AcidTrialButton.css +55 -0
- package/src/components/AcidTrialButton.tsx +26 -0
- package/src/components/AcidTrustedUsers.css +59 -0
- package/src/components/AcidTrustedUsers.tsx +46 -0
- package/src/components/AcidTypewriterInput.css +37 -0
- package/src/components/AcidTypewriterInput.tsx +31 -0
- package/src/components/AcidTypingText.tsx +32 -0
- package/src/components/AcidVideoText.css +35 -0
- package/src/components/AcidVideoText.tsx +25 -0
- package/src/data/sidebar.ts +135 -0
- package/src/data/snippets.ts +13 -0
- package/src/index.css +136 -0
- package/src/main.tsx +13 -0
- package/src/pages/Docs.css +604 -0
- package/src/pages/Docs.tsx +2347 -0
- package/src/pages/Landing.css +342 -0
- package/src/pages/Landing.tsx +216 -0
- package/src/pages/Library.css +426 -0
- package/src/pages/Library.tsx +254 -0
- package/tsconfig.app.json +28 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +26 -0
- package/vite.config.ts +7 -0
|
@@ -0,0 +1,604 @@
|
|
|
1
|
+
.docs-container {
|
|
2
|
+
display: grid;
|
|
3
|
+
grid-template-columns: 260px 1fr 240px;
|
|
4
|
+
gap: 0;
|
|
5
|
+
min-height: 100vh;
|
|
6
|
+
background: var(--ac-bg);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@media (max-width: 1200px) {
|
|
10
|
+
.docs-container {
|
|
11
|
+
grid-template-columns: 260px 1fr;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.docs-toc {
|
|
15
|
+
display: none;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@media (max-width: 768px) {
|
|
20
|
+
.docs-container {
|
|
21
|
+
grid-template-columns: 1fr;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.docs-sidebar {
|
|
25
|
+
display: none;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* Sidebar Styling */
|
|
30
|
+
.docs-sidebar {
|
|
31
|
+
border-right: 1px solid var(--ac-border-muted);
|
|
32
|
+
height: 100vh;
|
|
33
|
+
position: sticky;
|
|
34
|
+
top: 0;
|
|
35
|
+
overflow-y: auto;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* Main Content area */
|
|
39
|
+
.docs-main {
|
|
40
|
+
padding: 3rem 4rem;
|
|
41
|
+
max-width: 1000px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.docs-breadcrumbs {
|
|
45
|
+
display: flex;
|
|
46
|
+
align-items: center;
|
|
47
|
+
gap: 0.75rem;
|
|
48
|
+
font-family: var(--font-mono);
|
|
49
|
+
font-size: 0.8rem;
|
|
50
|
+
color: var(--ac-text-muted);
|
|
51
|
+
margin-bottom: 2rem;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.docs-breadcrumbs .current {
|
|
55
|
+
color: var(--ac-text-primary);
|
|
56
|
+
font-weight: 500;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/* Copy Menu Styles */
|
|
60
|
+
.copy-menu-wrapper {
|
|
61
|
+
position: relative;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.copy-menu {
|
|
65
|
+
position: absolute;
|
|
66
|
+
top: calc(100% + 8px);
|
|
67
|
+
right: 0;
|
|
68
|
+
width: 240px;
|
|
69
|
+
background: var(--ac-surface);
|
|
70
|
+
border: 1px solid var(--ac-border-muted);
|
|
71
|
+
border-radius: 12px;
|
|
72
|
+
padding: 8px;
|
|
73
|
+
z-index: 100;
|
|
74
|
+
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
|
|
75
|
+
display: flex;
|
|
76
|
+
flex-direction: column;
|
|
77
|
+
gap: 4px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.copy-menu-item {
|
|
81
|
+
display: flex;
|
|
82
|
+
align-items: center;
|
|
83
|
+
gap: 12px;
|
|
84
|
+
width: 100%;
|
|
85
|
+
padding: 10px 12px;
|
|
86
|
+
background: transparent;
|
|
87
|
+
border: none;
|
|
88
|
+
border-radius: 8px;
|
|
89
|
+
color: var(--ac-text-secondary);
|
|
90
|
+
font-family: var(--font-mono);
|
|
91
|
+
font-size: 0.85rem;
|
|
92
|
+
cursor: pointer;
|
|
93
|
+
transition: all 0.2s;
|
|
94
|
+
text-align: left;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.copy-menu-item:hover {
|
|
98
|
+
background: #000;
|
|
99
|
+
color: var(--ac-text-primary);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.copy-menu-item svg {
|
|
103
|
+
color: var(--ac-text-muted);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.docs-page-header {
|
|
107
|
+
display: flex;
|
|
108
|
+
justify-content: space-between;
|
|
109
|
+
align-items: flex-start;
|
|
110
|
+
margin-bottom: 2.5rem;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.docs-title {
|
|
114
|
+
font-size: 3rem;
|
|
115
|
+
font-family: var(--font-primary);
|
|
116
|
+
font-weight: 600;
|
|
117
|
+
letter-spacing: -0.04em;
|
|
118
|
+
color: var(--ac-text-primary);
|
|
119
|
+
margin-bottom: 1rem;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.docs-description {
|
|
123
|
+
font-size: 1.125rem;
|
|
124
|
+
color: var(--ac-text-secondary);
|
|
125
|
+
line-height: 1.6;
|
|
126
|
+
max-width: 700px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.docs-control-group {
|
|
130
|
+
display: flex;
|
|
131
|
+
gap: 0.5rem;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.docs-control-btn {
|
|
135
|
+
width: 36px;
|
|
136
|
+
height: 36px;
|
|
137
|
+
border-radius: 8px;
|
|
138
|
+
border: 1px solid var(--ac-border-muted);
|
|
139
|
+
background: transparent;
|
|
140
|
+
color: var(--ac-text-secondary);
|
|
141
|
+
display: flex;
|
|
142
|
+
align-items: center;
|
|
143
|
+
justify-content: center;
|
|
144
|
+
cursor: pointer;
|
|
145
|
+
transition: all 0.2s;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.docs-control-btn:hover {
|
|
149
|
+
border-color: var(--ac-text-primary);
|
|
150
|
+
color: var(--ac-text-primary);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/* Action Bar Styling */
|
|
154
|
+
.docs-action-bar {
|
|
155
|
+
display: flex;
|
|
156
|
+
justify-content: space-between;
|
|
157
|
+
align-items: center;
|
|
158
|
+
margin-bottom: 2rem;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.action-tabs {
|
|
162
|
+
display: flex;
|
|
163
|
+
background: var(--ac-surface);
|
|
164
|
+
padding: 4px;
|
|
165
|
+
border-radius: 8px;
|
|
166
|
+
gap: 4px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.action-tab {
|
|
170
|
+
display: flex;
|
|
171
|
+
align-items: center;
|
|
172
|
+
gap: 0.5rem;
|
|
173
|
+
padding: 0.5rem 1rem;
|
|
174
|
+
font-family: var(--font-mono);
|
|
175
|
+
font-size: 0.85rem;
|
|
176
|
+
font-weight: 500;
|
|
177
|
+
border: none;
|
|
178
|
+
background: transparent;
|
|
179
|
+
color: var(--ac-text-secondary);
|
|
180
|
+
border-radius: 6px;
|
|
181
|
+
cursor: pointer;
|
|
182
|
+
transition: all 0.2s;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.action-tab.active {
|
|
186
|
+
background: var(--ac-text-primary);
|
|
187
|
+
color: var(--ac-bg);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.action-right {
|
|
191
|
+
display: flex;
|
|
192
|
+
gap: 1rem;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
/* Pagination / Next Prev */
|
|
196
|
+
.docs-pagination {
|
|
197
|
+
display: flex;
|
|
198
|
+
justify-content: space-between;
|
|
199
|
+
margin-top: 6rem;
|
|
200
|
+
padding-top: 3rem;
|
|
201
|
+
border-top: 1px solid var(--ac-border-muted);
|
|
202
|
+
gap: 2rem;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.pagination-btn {
|
|
206
|
+
flex: 1;
|
|
207
|
+
display: flex;
|
|
208
|
+
flex-direction: column;
|
|
209
|
+
padding: 1.5rem;
|
|
210
|
+
border: 1px solid var(--ac-border-muted);
|
|
211
|
+
background: var(--ac-surface);
|
|
212
|
+
transition: all 0.2s;
|
|
213
|
+
text-decoration: none;
|
|
214
|
+
max-width: 400px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.pagination-btn:hover {
|
|
218
|
+
border-color: var(--ac-brand);
|
|
219
|
+
background: var(--ac-surface-hover);
|
|
220
|
+
transform: translateY(-2px);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.pagination-btn .dir {
|
|
224
|
+
font-size: 0.7rem;
|
|
225
|
+
color: var(--ac-text-muted);
|
|
226
|
+
font-family: var(--font-mono);
|
|
227
|
+
margin-bottom: 0.5rem;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.pagination-btn .title {
|
|
231
|
+
font-size: 1.1rem;
|
|
232
|
+
font-weight: 600;
|
|
233
|
+
color: var(--ac-text-primary);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.pagination-btn.prev {
|
|
237
|
+
align-items: flex-start;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.pagination-btn.next {
|
|
241
|
+
align-items: flex-end;
|
|
242
|
+
text-align: right;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/* Usage Section */
|
|
246
|
+
.docs-usage-section {
|
|
247
|
+
margin-bottom: 4rem;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.usage-grid {
|
|
251
|
+
display: grid;
|
|
252
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
253
|
+
gap: 1.5rem;
|
|
254
|
+
margin-top: 1.5rem;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.usage-card {
|
|
258
|
+
border: 1px solid var(--ac-border-muted);
|
|
259
|
+
padding: 1.5rem;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.usage-label {
|
|
263
|
+
font-size: 0.7rem;
|
|
264
|
+
font-family: var(--font-mono);
|
|
265
|
+
color: var(--ac-text-muted);
|
|
266
|
+
margin-bottom: 1rem;
|
|
267
|
+
display: block;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
/* Description Section */
|
|
271
|
+
.docs-desc-section {
|
|
272
|
+
margin: 2rem 0 4rem;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.docs-desc-text {
|
|
276
|
+
font-size: 1.1rem;
|
|
277
|
+
line-height: 1.7;
|
|
278
|
+
color: var(--ac-text-secondary);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/* Tables */
|
|
282
|
+
.docs-table-wrapper {
|
|
283
|
+
margin-top: 1.5rem;
|
|
284
|
+
border: 1px solid var(--ac-border-muted);
|
|
285
|
+
overflow: hidden;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.docs-table {
|
|
289
|
+
width: 100%;
|
|
290
|
+
border-collapse: collapse;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.docs-table th {
|
|
294
|
+
text-align: left;
|
|
295
|
+
padding: 1rem;
|
|
296
|
+
background: var(--ac-surface);
|
|
297
|
+
border-bottom: 1px solid var(--ac-border-muted);
|
|
298
|
+
font-size: 0.8rem;
|
|
299
|
+
color: var(--ac-text-muted);
|
|
300
|
+
font-family: var(--font-mono);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.docs-table td {
|
|
304
|
+
padding: 1rem;
|
|
305
|
+
border-bottom: 1px solid var(--ac-border-muted);
|
|
306
|
+
font-size: 0.9rem;
|
|
307
|
+
font-family: var(--font-mono);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.docs-table tr:last-child td {
|
|
311
|
+
border-bottom: none;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.docs-table .prop-name {
|
|
315
|
+
color: var(--ac-brand);
|
|
316
|
+
font-weight: 600;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.docs-table .prop-type {
|
|
320
|
+
color: var(--ac-text-primary);
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.docs-table .prop-default {
|
|
324
|
+
color: var(--ac-text-muted);
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/* Showcase Stability */
|
|
328
|
+
.docs-showcase-container {
|
|
329
|
+
min-height: 400px;
|
|
330
|
+
/* Fixed minimum height to prevent jitter */
|
|
331
|
+
display: flex;
|
|
332
|
+
flex-direction: column;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.showcase-content {
|
|
336
|
+
flex: 1;
|
|
337
|
+
display: flex;
|
|
338
|
+
align-items: center;
|
|
339
|
+
justify-content: center;
|
|
340
|
+
padding: 4rem !important;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.github-pill {
|
|
344
|
+
display: flex;
|
|
345
|
+
align-items: center;
|
|
346
|
+
gap: 0.5rem;
|
|
347
|
+
padding: 0 1rem;
|
|
348
|
+
height: 36px;
|
|
349
|
+
border: 1px solid var(--ac-border-muted);
|
|
350
|
+
border-radius: 99px;
|
|
351
|
+
font-family: var(--font-mono);
|
|
352
|
+
font-size: 0.8rem;
|
|
353
|
+
color: var(--ac-text-primary);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.star-count {
|
|
357
|
+
display: flex;
|
|
358
|
+
align-items: center;
|
|
359
|
+
gap: 4px;
|
|
360
|
+
margin-left: 0.5rem;
|
|
361
|
+
padding-left: 0.5rem;
|
|
362
|
+
border-left: 1px solid var(--ac-border-muted);
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.copy-dropdown {
|
|
366
|
+
display: flex;
|
|
367
|
+
align-items: center;
|
|
368
|
+
gap: 0.5rem;
|
|
369
|
+
padding: 0 1rem;
|
|
370
|
+
height: 36px;
|
|
371
|
+
border: 1px solid var(--ac-border-muted);
|
|
372
|
+
border-radius: 8px;
|
|
373
|
+
background: transparent;
|
|
374
|
+
color: var(--ac-text-primary);
|
|
375
|
+
font-weight: 500;
|
|
376
|
+
cursor: pointer;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
/* Showcase Styling */
|
|
380
|
+
.docs-showcase-container {
|
|
381
|
+
border: 1px solid var(--ac-border-muted);
|
|
382
|
+
border-radius: 12px;
|
|
383
|
+
background: var(--ac-bg);
|
|
384
|
+
margin-bottom: 4rem;
|
|
385
|
+
overflow: hidden;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.showcase-header {
|
|
389
|
+
padding: 0.75rem 1.25rem;
|
|
390
|
+
border-bottom: 1px solid var(--ac-border-muted);
|
|
391
|
+
display: flex;
|
|
392
|
+
justify-content: flex-end;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.refresh-btn {
|
|
396
|
+
background: transparent;
|
|
397
|
+
border: none;
|
|
398
|
+
color: var(--ac-text-muted);
|
|
399
|
+
cursor: pointer;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.showcase-content {
|
|
403
|
+
padding: 4rem 2rem;
|
|
404
|
+
min-height: 400px;
|
|
405
|
+
display: flex;
|
|
406
|
+
align-items: center;
|
|
407
|
+
justify-content: center;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.docs-showcase-container.compact .showcase-content {
|
|
411
|
+
min-height: 180px;
|
|
412
|
+
padding: 2rem;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.preview-layout {
|
|
416
|
+
text-align: center;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.preview-title {
|
|
420
|
+
font-size: 2.25rem;
|
|
421
|
+
margin-bottom: 1rem;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.preview-desc {
|
|
425
|
+
color: var(--ac-text-secondary);
|
|
426
|
+
margin-bottom: 4rem;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.preview-grid {
|
|
430
|
+
display: flex;
|
|
431
|
+
justify-content: center;
|
|
432
|
+
gap: 4rem;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
/* Doc Content Sections */
|
|
436
|
+
.docs-doc-section {
|
|
437
|
+
margin-bottom: 5rem;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.section-title {
|
|
441
|
+
font-size: 2rem;
|
|
442
|
+
margin-bottom: 1rem;
|
|
443
|
+
letter-spacing: -0.02em;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.section-text {
|
|
447
|
+
color: var(--ac-text-secondary);
|
|
448
|
+
font-size: 1.1rem;
|
|
449
|
+
margin-bottom: 2rem;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.docs-sections {
|
|
453
|
+
display: flex;
|
|
454
|
+
flex-direction: column;
|
|
455
|
+
gap: 6rem;
|
|
456
|
+
margin-top: 4rem;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.docs-section-desc {
|
|
460
|
+
color: var(--ac-text-secondary);
|
|
461
|
+
font-size: 1rem;
|
|
462
|
+
margin: -0.5rem 0 2rem;
|
|
463
|
+
opacity: 0.8;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.docs-list {
|
|
467
|
+
list-style: none;
|
|
468
|
+
padding: 0;
|
|
469
|
+
display: flex;
|
|
470
|
+
flex-direction: column;
|
|
471
|
+
gap: 1.5rem;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.docs-list li {
|
|
475
|
+
padding-left: 2rem;
|
|
476
|
+
position: relative;
|
|
477
|
+
color: var(--ac-text-secondary);
|
|
478
|
+
line-height: 1.6;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.docs-list li::before {
|
|
482
|
+
content: "→";
|
|
483
|
+
position: absolute;
|
|
484
|
+
left: 0;
|
|
485
|
+
color: var(--ac-brand);
|
|
486
|
+
font-weight: bold;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
/* Table of Contents sidebar */
|
|
490
|
+
.docs-toc {
|
|
491
|
+
padding: 3rem 2rem;
|
|
492
|
+
border-left: 1px solid var(--ac-border-muted);
|
|
493
|
+
height: 100vh;
|
|
494
|
+
position: sticky;
|
|
495
|
+
top: 0;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.toc-title {
|
|
499
|
+
font-family: var(--font-mono);
|
|
500
|
+
font-size: 0.75rem;
|
|
501
|
+
letter-spacing: 0.05em;
|
|
502
|
+
color: var(--ac-text-primary);
|
|
503
|
+
margin-bottom: 1.5rem;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.toc-list {
|
|
507
|
+
list-style: none;
|
|
508
|
+
padding: 0;
|
|
509
|
+
margin: 0;
|
|
510
|
+
display: flex;
|
|
511
|
+
flex-direction: column;
|
|
512
|
+
gap: 0.75rem;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.toc-list li {
|
|
516
|
+
font-size: 0.9rem;
|
|
517
|
+
color: var(--ac-text-secondary);
|
|
518
|
+
cursor: pointer;
|
|
519
|
+
transition: color 0.2s;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.toc-list li:hover {
|
|
523
|
+
color: var(--ac-text-primary);
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.toc-list li.active {
|
|
527
|
+
color: var(--ac-brand);
|
|
528
|
+
font-weight: 500;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
/* New Docs Page Content Styles */
|
|
532
|
+
.docs-page-content {
|
|
533
|
+
display: flex;
|
|
534
|
+
flex-direction: column;
|
|
535
|
+
gap: 4rem;
|
|
536
|
+
padding: 2rem 0;
|
|
537
|
+
text-align: left;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.docs-intro-hero .content-h1 {
|
|
541
|
+
font-size: 3.5rem;
|
|
542
|
+
margin: 1.5rem 0;
|
|
543
|
+
letter-spacing: -0.04em;
|
|
544
|
+
line-height: 1;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.content-p {
|
|
548
|
+
color: var(--ac-text-secondary);
|
|
549
|
+
font-size: 1.125rem;
|
|
550
|
+
line-height: 1.7;
|
|
551
|
+
max-width: 800px;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.docs-grid-header {
|
|
555
|
+
display: flex;
|
|
556
|
+
align-items: center;
|
|
557
|
+
gap: 2rem;
|
|
558
|
+
margin-bottom: 2rem;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.docs-grid-header .content-h3 {
|
|
562
|
+
font-size: 0.8rem;
|
|
563
|
+
letter-spacing: 0.15em;
|
|
564
|
+
color: var(--ac-text-muted);
|
|
565
|
+
white-space: nowrap;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.header-line {
|
|
569
|
+
flex: 1;
|
|
570
|
+
height: 1px;
|
|
571
|
+
background: var(--ac-border-muted);
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.docs-principles-grid {
|
|
575
|
+
display: grid;
|
|
576
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
577
|
+
gap: 1rem;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.principle-card {
|
|
581
|
+
padding: 2.5rem;
|
|
582
|
+
display: flex;
|
|
583
|
+
flex-direction: column;
|
|
584
|
+
gap: 1.25rem;
|
|
585
|
+
border-radius: 0;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.principle-card h4 {
|
|
589
|
+
font-size: 1.1rem;
|
|
590
|
+
letter-spacing: -0.02em;
|
|
591
|
+
color: var(--ac-text-primary);
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.principle-card p {
|
|
595
|
+
font-size: 0.95rem;
|
|
596
|
+
color: var(--ac-text-secondary);
|
|
597
|
+
line-height: 1.6;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.docs-step-section {
|
|
601
|
+
display: flex;
|
|
602
|
+
flex-direction: column;
|
|
603
|
+
gap: 1.5rem;
|
|
604
|
+
}
|