@whykusanagi/corrupted-theme 0.1.1 → 0.1.3
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/CHANGELOG.md +253 -0
- package/README.md +97 -7
- package/docs/CAPABILITIES.md +209 -0
- package/docs/CHARACTER_LEVEL_CORRUPTION.md +264 -0
- package/docs/COMPONENTS_REFERENCE.md +295 -8
- package/docs/CORRUPTION_PHRASES.md +529 -0
- package/docs/FUTURE_WORK.md +189 -0
- package/docs/IMPLEMENTATION_VALIDATION.md +401 -0
- package/docs/LLM_PROVIDERS.md +345 -0
- package/docs/PERSONALITY.md +128 -0
- package/docs/ROADMAP.md +266 -0
- package/docs/ROUTING.md +324 -0
- package/docs/STYLE_GUIDE.md +605 -0
- package/docs/brand/BRAND_OVERVIEW.md +413 -0
- package/docs/brand/COLOR_SYSTEM.md +583 -0
- package/docs/brand/DESIGN_TOKENS.md +1009 -0
- package/docs/brand/TRANSLATION_FAILURE_AESTHETIC.md +525 -0
- package/docs/brand/TYPOGRAPHY.md +624 -0
- package/docs/components/ANIMATION_GUIDELINES.md +901 -0
- package/docs/components/COMPONENT_LIBRARY.md +1061 -0
- package/docs/components/GLASSMORPHISM.md +602 -0
- package/docs/components/INTERACTIVE_STATES.md +766 -0
- package/docs/governance/CONTRIBUTION_GUIDELINES.md +593 -0
- package/docs/governance/DESIGN_SYSTEM_GOVERNANCE.md +451 -0
- package/docs/governance/VERSION_MANAGEMENT.md +447 -0
- package/docs/governance/VERSION_REFERENCES.md +229 -0
- package/docs/platforms/CLI_IMPLEMENTATION.md +1025 -0
- package/docs/platforms/COMPONENT_MAPPING.md +579 -0
- package/docs/platforms/NPM_PACKAGE.md +854 -0
- package/docs/platforms/WEB_IMPLEMENTATION.md +1221 -0
- package/docs/standards/ACCESSIBILITY.md +715 -0
- package/docs/standards/ANTI_PATTERNS.md +554 -0
- package/docs/standards/SPACING_SYSTEM.md +549 -0
- package/examples/assets/celeste-avatar.png +0 -0
- package/examples/button.html +22 -10
- package/examples/card.html +22 -9
- package/examples/extensions-showcase.html +716 -0
- package/examples/form.html +22 -9
- package/examples/index.html +619 -396
- package/examples/layout.html +22 -8
- package/examples/nikke-team-builder.html +23 -9
- package/examples/showcase-complete.html +884 -28
- package/examples/showcase.html +21 -8
- package/package.json +14 -5
- package/src/css/components.css +676 -0
- package/src/css/extensions.css +933 -0
- package/src/css/theme.css +6 -74
- package/src/css/typography.css +5 -0
- package/src/lib/character-corruption.js +563 -0
- package/src/lib/components.js +283 -0
- package/src/lib/countdown-widget.js +609 -0
- package/src/lib/gallery.js +481 -0
package/examples/form.html
CHANGED
|
@@ -182,16 +182,29 @@
|
|
|
182
182
|
</style>
|
|
183
183
|
</head>
|
|
184
184
|
<body>
|
|
185
|
+
<!-- Global Navigation -->
|
|
185
186
|
<nav class="navbar">
|
|
186
187
|
<div class="navbar-content">
|
|
187
|
-
<a href="index.html" class="navbar-logo"><i class="fas fa-
|
|
188
|
-
<
|
|
189
|
-
<a href="
|
|
190
|
-
<a href="
|
|
191
|
-
<a href="
|
|
192
|
-
<
|
|
193
|
-
|
|
194
|
-
|
|
188
|
+
<a href="index.html" class="navbar-logo"><i class="fas fa-palette"></i> Corrupted Theme</a>
|
|
189
|
+
<ul class="navbar-links">
|
|
190
|
+
<li><a href="index.html"><i class="fas fa-home"></i> Home</a></li>
|
|
191
|
+
<li><a href="showcase-complete.html"><i class="fas fa-cube"></i> Components</a></li>
|
|
192
|
+
<li><a href="extensions-showcase.html"><i class="fas fa-puzzle-piece"></i> Extensions</a></li>
|
|
193
|
+
<li class="has-submenu">
|
|
194
|
+
<a href="#" class="active">
|
|
195
|
+
<i class="fas fa-flask"></i> Examples
|
|
196
|
+
<i class="fas fa-chevron-down" style="font-size: 0.7em; margin-left: 4px;"></i>
|
|
197
|
+
</a>
|
|
198
|
+
<div class="submenu">
|
|
199
|
+
<a href="nikke-team-builder.html"><i class="fas fa-users"></i> Nikke Team Builder</a>
|
|
200
|
+
<a href="button.html"><i class="fas fa-hand-pointer"></i> Buttons</a>
|
|
201
|
+
<a href="card.html"><i class="fas fa-square"></i> Cards</a>
|
|
202
|
+
<a href="form.html" class="active"><i class="fas fa-edit"></i> Forms</a>
|
|
203
|
+
<a href="layout.html"><i class="fas fa-columns"></i> Layouts</a>
|
|
204
|
+
</div>
|
|
205
|
+
</li>
|
|
206
|
+
<li><a href="../docs/COMPONENTS_REFERENCE.md"><i class="fas fa-book"></i> Docs</a></li>
|
|
207
|
+
</ul>
|
|
195
208
|
</div>
|
|
196
209
|
</nav>
|
|
197
210
|
|
|
@@ -537,7 +550,7 @@
|
|
|
537
550
|
</section>
|
|
538
551
|
|
|
539
552
|
<footer style="text-align: center; padding: var(--spacing-2xl) var(--spacing-lg); margin-top: var(--spacing-2xl); border-top: 1px solid var(--border); color: var(--text-secondary);">
|
|
540
|
-
<p>Form Components Documentation • Corrupted Theme v0.1.
|
|
553
|
+
<p>Form Components Documentation • Corrupted Theme v0.1.3</p>
|
|
541
554
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
542
555
|
<a href="index.html" style="color: var(--accent); text-decoration: none;">← Back to Showcase</a>
|
|
543
556
|
</p>
|