@whykusanagi/corrupted-theme 0.1.6 → 0.1.7
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 +38 -0
- package/README.md +207 -42
- package/docs/COMPONENTS_REFERENCE.md +142 -35
- package/docs/governance/VERSION_MANAGEMENT.md +2 -2
- package/docs/governance/VERSION_REFERENCES.md +30 -32
- package/docs/platforms/NPM_PACKAGE.md +8 -7
- package/examples/basic/multi-gallery.html +155 -0
- package/examples/button.html +5 -2
- package/examples/card.html +5 -2
- package/examples/extensions-showcase.html +5 -2
- package/examples/form.html +5 -2
- package/examples/index.html +8 -5
- package/examples/interactive-components.html +223 -0
- package/examples/layout.html +5 -2
- package/examples/nikke-team-builder.html +6 -3
- package/examples/showcase-complete.html +14 -13
- package/examples/showcase.html +6 -3
- package/package.json +6 -5
- package/src/core/corrupted-text.js +25 -5
- package/src/core/event-tracker.js +46 -0
- package/src/core/timer-registry.js +94 -0
- package/src/core/typing-animation.js +36 -17
- package/src/css/components.css +108 -0
- package/src/lib/carousel.js +308 -0
- package/src/lib/celeste-widget.js +178 -47
- package/src/lib/character-corruption.js +33 -8
- package/src/lib/components.js +357 -25
- package/src/lib/corrupted-text.js +21 -5
- package/src/lib/corruption-loading.js +40 -10
- package/src/lib/countdown-widget.js +25 -6
- package/src/lib/gallery.js +420 -354
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Purpose**: Complete list of all files containing version numbers that must be updated when releasing a new version.
|
|
4
4
|
|
|
5
|
-
**Current Version**: 0.1.
|
|
5
|
+
**Current Version**: 0.1.7
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
**Location**: `/package.json`
|
|
13
13
|
**Line**: 3
|
|
14
14
|
```json
|
|
15
|
-
"version": "0.1.
|
|
15
|
+
"version": "0.1.7"
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
### 2. CHANGELOG.md
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
### 7. showcase-complete.html
|
|
63
63
|
**Location**: `/examples/showcase-complete.html`
|
|
64
64
|
**Lines to update**:
|
|
65
|
-
- Line 1135: "NEW v0.1.
|
|
66
|
-
- Line 1317: "NEW v0.1.
|
|
65
|
+
- Line 1135: "NEW v0.1.7" badge (keep for current release, change to version number after)
|
|
66
|
+
- Line 1317: "NEW v0.1.7" badge (keep for current release, change to version number after)
|
|
67
67
|
- Line 1697: Footer version `v0.1.X`
|
|
68
|
-
- Line 1835: Comment `<!-- NEW v0.1.
|
|
68
|
+
- Line 1835: Comment `<!-- NEW v0.1.7: ... -->`
|
|
69
69
|
- Line 1922: Toast message `Welcome to Corrupted Theme v0.1.X!`
|
|
70
70
|
|
|
71
71
|
### 8. Other Example Pages
|
|
@@ -77,13 +77,13 @@ All have footer version references like:
|
|
|
77
77
|
<p>... • Corrupted Theme v0.1.0</p>
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
**Update these to current version** (
|
|
80
|
+
**Update these to current version** (updated to v0.1.7 as of 2026-02-09)
|
|
81
81
|
|
|
82
82
|
---
|
|
83
83
|
|
|
84
84
|
## Version Bump Procedure
|
|
85
85
|
|
|
86
|
-
When releasing a new version (e.g., 0.1.
|
|
86
|
+
When releasing a new version (e.g., 0.1.7 → 0.1.7):
|
|
87
87
|
|
|
88
88
|
### Step 1: Core Files
|
|
89
89
|
```bash
|
|
@@ -115,7 +115,7 @@ npm version patch # or minor, or major
|
|
|
115
115
|
# - Footer
|
|
116
116
|
|
|
117
117
|
# 7. Update showcase-complete.html
|
|
118
|
-
# - Change "NEW v0.1.
|
|
118
|
+
# - Change "NEW v0.1.7" badges to just version number
|
|
119
119
|
# - Update footer
|
|
120
120
|
# - Update toast message
|
|
121
121
|
|
|
@@ -143,7 +143,7 @@ Create `/scripts/bump-version.sh`:
|
|
|
143
143
|
|
|
144
144
|
```bash
|
|
145
145
|
#!/bin/bash
|
|
146
|
-
# Usage: ./scripts/bump-version.sh 0.1.
|
|
146
|
+
# Usage: ./scripts/bump-version.sh 0.1.7
|
|
147
147
|
|
|
148
148
|
NEW_VERSION=$1
|
|
149
149
|
OLD_VERSION=$(node -p "require('./package.json').version")
|
|
@@ -171,59 +171,57 @@ When updating, search for these patterns:
|
|
|
171
171
|
|
|
172
172
|
```bash
|
|
173
173
|
# Version with v prefix
|
|
174
|
-
"v0.1.
|
|
174
|
+
"v0.1.7"
|
|
175
175
|
"v0\.1\.3"
|
|
176
176
|
|
|
177
177
|
# Version without v prefix
|
|
178
|
-
"0.1.
|
|
178
|
+
"0.1.7"
|
|
179
179
|
"0\.1\.3"
|
|
180
180
|
|
|
181
181
|
# NPM package version
|
|
182
|
-
"@whykusanagi/corrupted-theme@0.1.
|
|
182
|
+
"@whykusanagi/corrupted-theme@0.1.7"
|
|
183
183
|
|
|
184
184
|
# NEW badge references
|
|
185
|
-
"NEW v0.1.
|
|
186
|
-
"NEW in v0.1.
|
|
185
|
+
"NEW v0.1.7"
|
|
186
|
+
"NEW in v0.1.7"
|
|
187
187
|
```
|
|
188
188
|
|
|
189
189
|
---
|
|
190
190
|
|
|
191
|
-
## Current Version Discrepancies (As of
|
|
191
|
+
## Current Version Discrepancies (As of 2026-02-09)
|
|
192
192
|
|
|
193
|
-
**
|
|
193
|
+
**All version references have been synchronized to v0.1.7.**
|
|
194
194
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
3. `/examples/layout.html` - Shows v0.1.0 (should be v0.1.4)
|
|
198
|
-
4. `/examples/card.html` - Shows v0.1.0 (should be v0.1.4)
|
|
199
|
-
5. `/examples/button.html` - Shows v0.1.0 (should be v0.1.4)
|
|
200
|
-
6. `/examples/nikke-team-builder.html` - Shows v0.1.0 (should be v0.1.4)
|
|
201
|
-
7. `/examples/showcase-complete.html` footer - Shows v0.1.0 (should be v0.1.4)
|
|
202
|
-
8. `/examples/index.html` - Shows v0.1.2 (should be v0.1.4)
|
|
203
|
-
9. `/docs/platforms/NPM_PACKAGE.md` - Shows v0.1.2 (should be v0.1.4)
|
|
204
|
-
10. `/docs/governance/VERSION_MANAGEMENT.md` - Shows v0.1.2 (should be v0.1.4)
|
|
195
|
+
No outstanding discrepancies. All example footers, documentation files, and package files
|
|
196
|
+
are consistent.
|
|
205
197
|
|
|
206
|
-
|
|
198
|
+
### Note: package-lock.json
|
|
199
|
+
|
|
200
|
+
`package-lock.json` is listed in `.gitignore` and is not tracked by git. This is
|
|
201
|
+
intentional — npm recommends not committing lockfiles for library packages (only for
|
|
202
|
+
applications). CLAUDE.md section 5 references syncing `package-lock.json`, but since
|
|
203
|
+
it's local-only, version sync is handled automatically by `npm version` and does not
|
|
204
|
+
require manual updates.
|
|
207
205
|
|
|
208
206
|
---
|
|
209
207
|
|
|
210
208
|
## Next Version Release Checklist
|
|
211
209
|
|
|
212
|
-
When preparing
|
|
210
|
+
When preparing the next version:
|
|
213
211
|
|
|
214
212
|
- [ ] Update `package.json` version
|
|
215
213
|
- [ ] Add CHANGELOG.md entry with release date
|
|
216
214
|
- [ ] Update NPM_PACKAGE.md (6 locations)
|
|
217
215
|
- [ ] Update VERSION_MANAGEMENT.md (3 locations)
|
|
218
216
|
- [ ] Update index.html hero and footer
|
|
219
|
-
- [ ] Update showcase-complete.html (
|
|
220
|
-
- [ ] Update all example page footers (
|
|
217
|
+
- [ ] Update showcase-complete.html (footer, toast, badges)
|
|
218
|
+
- [ ] Update all example page footers (8 files)
|
|
221
219
|
- [ ] Run version search to verify no old references remain
|
|
222
220
|
- [ ] Build and test Docker container
|
|
223
|
-
- [ ] Git tag release
|
|
221
|
+
- [ ] Git tag release
|
|
224
222
|
- [ ] Publish to npm: `npm publish`
|
|
225
223
|
|
|
226
224
|
---
|
|
227
225
|
|
|
228
|
-
**Last Updated**:
|
|
226
|
+
**Last Updated**: 2026-02-09
|
|
229
227
|
**Maintained By**: whykusanagi team
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
```json
|
|
32
32
|
{
|
|
33
33
|
"name": "@whykusanagi/corrupted-theme",
|
|
34
|
-
"version": "0.1.
|
|
34
|
+
"version": "0.1.7",
|
|
35
35
|
"description": "Premium corrupted AI aesthetic with glassmorphism and translation-failure linguistics",
|
|
36
36
|
"author": "Kusanagi <you@example.com>",
|
|
37
37
|
"license": "MIT",
|
|
@@ -80,7 +80,7 @@ pnpm add @whykusanagi/corrupted-theme
|
|
|
80
80
|
|
|
81
81
|
```html
|
|
82
82
|
<!-- Full theme (8.2KB gzipped) -->
|
|
83
|
-
<link rel="stylesheet" href="https://unpkg.com/@whykusanagi/corrupted-theme@0.1.
|
|
83
|
+
<link rel="stylesheet" href="https://unpkg.com/@whykusanagi/corrupted-theme@0.1.7/dist/theme.css">
|
|
84
84
|
```
|
|
85
85
|
|
|
86
86
|
### Local Development
|
|
@@ -664,7 +664,7 @@ The package follows [Semantic Versioning 2.0.0](https://semver.org/):
|
|
|
664
664
|
```
|
|
665
665
|
MAJOR.MINOR.PATCH
|
|
666
666
|
|
|
667
|
-
Example: 0.1.
|
|
667
|
+
Example: 0.1.7
|
|
668
668
|
│ │ └─ Patch: Bug fixes (backward compatible)
|
|
669
669
|
│ └─── Minor: New features (backward compatible)
|
|
670
670
|
└───── Major: Breaking changes
|
|
@@ -674,8 +674,9 @@ Example: 0.1.4
|
|
|
674
674
|
|
|
675
675
|
| Version | Date | Changes | Migration |
|
|
676
676
|
|---------|------|---------|-----------|
|
|
677
|
-
| **0.1.
|
|
678
|
-
| 0.1.
|
|
677
|
+
| **0.1.7** | 2026-02-07 | Security, lifecycle, new components | N/A |
|
|
678
|
+
| 0.1.6 | 2026-01-15 | Package cleanup | N/A |
|
|
679
|
+
| 0.1.4 | 2025-12-10 | Character corruption, components | N/A |
|
|
679
680
|
| 0.1.0 | 2025-10-01 | Initial public release | N/A |
|
|
680
681
|
|
|
681
682
|
### Upgrade Strategy
|
|
@@ -691,7 +692,7 @@ npm update @whykusanagi/corrupted-theme
|
|
|
691
692
|
npm install @whykusanagi/corrupted-theme@^0.2.0
|
|
692
693
|
|
|
693
694
|
# Update to specific version
|
|
694
|
-
npm install @whykusanagi/corrupted-theme@0.1.
|
|
695
|
+
npm install @whykusanagi/corrupted-theme@0.1.7
|
|
695
696
|
|
|
696
697
|
# Update to latest (including major - may have breaking changes)
|
|
697
698
|
npm install @whykusanagi/corrupted-theme@latest
|
|
@@ -849,6 +850,6 @@ import '@whykusanagi/corrupted-theme/src/css/components.css';
|
|
|
849
850
|
|
|
850
851
|
**Last Updated**: 2025-12-13
|
|
851
852
|
**Version**: 1.0.0
|
|
852
|
-
**Package Version**: 0.1.
|
|
853
|
+
**Package Version**: 0.1.7
|
|
853
854
|
**Maintainer**: Celeste Brand System
|
|
854
855
|
**Status**: ✅ Production Ready
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Corrupted Theme - Multi-Gallery Demo</title>
|
|
7
|
+
<link rel="stylesheet" href="../../src/css/theme.css">
|
|
8
|
+
<style>
|
|
9
|
+
body {
|
|
10
|
+
background: var(--bg);
|
|
11
|
+
color: var(--text);
|
|
12
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
13
|
+
line-height: 1.6;
|
|
14
|
+
padding: 0;
|
|
15
|
+
margin: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.demo {
|
|
19
|
+
max-width: 1200px;
|
|
20
|
+
margin: 0 auto;
|
|
21
|
+
padding: var(--spacing-xl);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.demo h1 {
|
|
25
|
+
color: var(--accent);
|
|
26
|
+
margin-bottom: var(--spacing-sm);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.demo h2 {
|
|
30
|
+
color: var(--accent-light);
|
|
31
|
+
border-bottom: 1px solid var(--border);
|
|
32
|
+
padding-bottom: var(--spacing-sm);
|
|
33
|
+
margin-top: var(--spacing-2xl);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.demo-note {
|
|
37
|
+
color: var(--text-secondary);
|
|
38
|
+
font-size: 0.9rem;
|
|
39
|
+
margin-bottom: var(--spacing-lg);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/* Placeholder images */
|
|
43
|
+
.gallery-item img {
|
|
44
|
+
width: 100%;
|
|
45
|
+
height: 200px;
|
|
46
|
+
object-fit: cover;
|
|
47
|
+
display: block;
|
|
48
|
+
background: var(--glass);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.placeholder-img {
|
|
52
|
+
width: 100%;
|
|
53
|
+
height: 200px;
|
|
54
|
+
display: flex;
|
|
55
|
+
align-items: center;
|
|
56
|
+
justify-content: center;
|
|
57
|
+
background: var(--glass);
|
|
58
|
+
color: var(--text-secondary);
|
|
59
|
+
font-size: 0.9rem;
|
|
60
|
+
border-radius: var(--radius-md);
|
|
61
|
+
}
|
|
62
|
+
</style>
|
|
63
|
+
</head>
|
|
64
|
+
<body>
|
|
65
|
+
|
|
66
|
+
<div class="demo">
|
|
67
|
+
<h1>Multi-Gallery Demo</h1>
|
|
68
|
+
<p class="demo-note">
|
|
69
|
+
Two independent gallery instances on the same page.
|
|
70
|
+
Each has its own filters, lightbox, and state.
|
|
71
|
+
</p>
|
|
72
|
+
|
|
73
|
+
<!-- ==================== GALLERY 1 ==================== -->
|
|
74
|
+
<h2>Gallery 1 — Landscapes</h2>
|
|
75
|
+
|
|
76
|
+
<div class="filter-bar" id="filter-bar-1">
|
|
77
|
+
<button class="filter-btn active" data-filter="all">All</button>
|
|
78
|
+
<button class="filter-btn" data-filter="mountains">Mountains</button>
|
|
79
|
+
<button class="filter-btn" data-filter="ocean">Ocean</button>
|
|
80
|
+
</div>
|
|
81
|
+
|
|
82
|
+
<div class="gallery-container" id="gallery-1">
|
|
83
|
+
<div class="gallery-item" data-tags="mountains">
|
|
84
|
+
<div class="placeholder-img">Mountain 1</div>
|
|
85
|
+
<div class="gallery-caption">Alpine Peak</div>
|
|
86
|
+
</div>
|
|
87
|
+
<div class="gallery-item" data-tags="ocean">
|
|
88
|
+
<div class="placeholder-img">Ocean 1</div>
|
|
89
|
+
<div class="gallery-caption">Pacific Coast</div>
|
|
90
|
+
</div>
|
|
91
|
+
<div class="gallery-item" data-tags="mountains">
|
|
92
|
+
<div class="placeholder-img">Mountain 2</div>
|
|
93
|
+
<div class="gallery-caption">Rocky Ridge</div>
|
|
94
|
+
</div>
|
|
95
|
+
<div class="gallery-item" data-tags="ocean">
|
|
96
|
+
<div class="placeholder-img">Ocean 2</div>
|
|
97
|
+
<div class="gallery-caption">Coral Bay</div>
|
|
98
|
+
</div>
|
|
99
|
+
</div>
|
|
100
|
+
|
|
101
|
+
<!-- ==================== GALLERY 2 ==================== -->
|
|
102
|
+
<h2>Gallery 2 — Art</h2>
|
|
103
|
+
|
|
104
|
+
<div class="filter-bar" id="filter-bar-2">
|
|
105
|
+
<button class="filter-btn active" data-filter="all">All</button>
|
|
106
|
+
<button class="filter-btn" data-filter="digital">Digital</button>
|
|
107
|
+
<button class="filter-btn" data-filter="traditional">Traditional</button>
|
|
108
|
+
</div>
|
|
109
|
+
|
|
110
|
+
<div class="gallery-container" id="gallery-2">
|
|
111
|
+
<div class="gallery-item" data-tags="digital">
|
|
112
|
+
<div class="placeholder-img">Digital Art 1</div>
|
|
113
|
+
<div class="gallery-caption">Neon Dreams</div>
|
|
114
|
+
</div>
|
|
115
|
+
<div class="gallery-item" data-tags="traditional">
|
|
116
|
+
<div class="placeholder-img">Traditional Art 1</div>
|
|
117
|
+
<div class="gallery-caption">Ink Wash</div>
|
|
118
|
+
</div>
|
|
119
|
+
<div class="gallery-item" data-tags="digital">
|
|
120
|
+
<div class="placeholder-img">Digital Art 2</div>
|
|
121
|
+
<div class="gallery-caption">Glitch Portrait</div>
|
|
122
|
+
</div>
|
|
123
|
+
</div>
|
|
124
|
+
|
|
125
|
+
<div class="glass-card" style="padding: 1.5rem; margin-top: var(--spacing-2xl);">
|
|
126
|
+
<h3 style="color: var(--accent);">How it works</h3>
|
|
127
|
+
<p>Each gallery is initialized as a separate instance with its own lightbox and filter state:</p>
|
|
128
|
+
<pre><code>const g1 = initGallery('#gallery-1');
|
|
129
|
+
const g2 = initGallery('#gallery-2');
|
|
130
|
+
|
|
131
|
+
// Destroy only one
|
|
132
|
+
g1.destroy();
|
|
133
|
+
// g2 continues working independently</code></pre>
|
|
134
|
+
</div>
|
|
135
|
+
</div>
|
|
136
|
+
|
|
137
|
+
<script type="module">
|
|
138
|
+
import { initGallery } from '../../src/lib/gallery.js';
|
|
139
|
+
|
|
140
|
+
// Initialize two independent galleries
|
|
141
|
+
const gallery1 = initGallery('#gallery-1', {
|
|
142
|
+
filterBarSelector: '#filter-bar-1 .filter-btn'
|
|
143
|
+
});
|
|
144
|
+
|
|
145
|
+
const gallery2 = initGallery('#gallery-2', {
|
|
146
|
+
filterBarSelector: '#filter-bar-2 .filter-btn'
|
|
147
|
+
});
|
|
148
|
+
|
|
149
|
+
// Expose for console debugging
|
|
150
|
+
window._gallery1 = gallery1;
|
|
151
|
+
window._gallery2 = gallery2;
|
|
152
|
+
</script>
|
|
153
|
+
|
|
154
|
+
</body>
|
|
155
|
+
</html>
|
package/examples/button.html
CHANGED
|
@@ -135,9 +135,12 @@
|
|
|
135
135
|
<a href="card.html"><i class="fas fa-square"></i> Cards</a>
|
|
136
136
|
<a href="form.html"><i class="fas fa-edit"></i> Forms</a>
|
|
137
137
|
<a href="layout.html"><i class="fas fa-columns"></i> Layouts</a>
|
|
138
|
+
<a href="basic/corrupted-text.html"><i class="fas fa-terminal"></i> Character Corruption</a>
|
|
139
|
+
<a href="basic/typing-animation.html"><i class="fas fa-keyboard"></i> Buffer Corruption</a>
|
|
140
|
+
<a href="advanced/nsfw-corruption.html"><i class="fas fa-exclamation-triangle"></i> NSFW (18+)</a>
|
|
138
141
|
</div>
|
|
139
142
|
</li>
|
|
140
|
-
<li><a href="
|
|
143
|
+
<li><a href="showcase-complete.html"><i class="fas fa-book"></i> Docs</a></li>
|
|
141
144
|
</ul>
|
|
142
145
|
</div>
|
|
143
146
|
</nav>
|
|
@@ -438,7 +441,7 @@
|
|
|
438
441
|
</section>
|
|
439
442
|
|
|
440
443
|
<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);">
|
|
441
|
-
<p>Button Component Documentation • Corrupted Theme v0.1.
|
|
444
|
+
<p>Button Component Documentation • Corrupted Theme v0.1.7</p>
|
|
442
445
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
443
446
|
<a href="index.html" style="color: var(--accent); text-decoration: none;">← Back to Showcase</a>
|
|
444
447
|
</p>
|
package/examples/card.html
CHANGED
|
@@ -244,9 +244,12 @@
|
|
|
244
244
|
<a href="card.html" class="active"><i class="fas fa-square"></i> Cards</a>
|
|
245
245
|
<a href="form.html"><i class="fas fa-edit"></i> Forms</a>
|
|
246
246
|
<a href="layout.html"><i class="fas fa-columns"></i> Layouts</a>
|
|
247
|
+
<a href="basic/corrupted-text.html"><i class="fas fa-terminal"></i> Character Corruption</a>
|
|
248
|
+
<a href="basic/typing-animation.html"><i class="fas fa-keyboard"></i> Buffer Corruption</a>
|
|
249
|
+
<a href="advanced/nsfw-corruption.html"><i class="fas fa-exclamation-triangle"></i> NSFW (18+)</a>
|
|
247
250
|
</div>
|
|
248
251
|
</li>
|
|
249
|
-
<li><a href="
|
|
252
|
+
<li><a href="showcase-complete.html"><i class="fas fa-book"></i> Docs</a></li>
|
|
250
253
|
</ul>
|
|
251
254
|
</div>
|
|
252
255
|
</nav>
|
|
@@ -681,7 +684,7 @@
|
|
|
681
684
|
</section>
|
|
682
685
|
|
|
683
686
|
<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);">
|
|
684
|
-
<p>Card Components Documentation • Corrupted Theme v0.1.
|
|
687
|
+
<p>Card Components Documentation • Corrupted Theme v0.1.7</p>
|
|
685
688
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
686
689
|
<a href="index.html" style="color: var(--accent); text-decoration: none;">← Back to Showcase</a>
|
|
687
690
|
</p>
|
|
@@ -160,9 +160,12 @@
|
|
|
160
160
|
<a href="card.html"><i class="fas fa-square"></i> Cards</a>
|
|
161
161
|
<a href="form.html"><i class="fas fa-edit"></i> Forms</a>
|
|
162
162
|
<a href="layout.html"><i class="fas fa-columns"></i> Layouts</a>
|
|
163
|
+
<a href="basic/corrupted-text.html"><i class="fas fa-terminal"></i> Character Corruption</a>
|
|
164
|
+
<a href="basic/typing-animation.html"><i class="fas fa-keyboard"></i> Buffer Corruption</a>
|
|
165
|
+
<a href="advanced/nsfw-corruption.html"><i class="fas fa-exclamation-triangle"></i> NSFW (18+)</a>
|
|
163
166
|
</div>
|
|
164
167
|
</li>
|
|
165
|
-
<li><a href="
|
|
168
|
+
<li><a href="showcase-complete.html"><i class="fas fa-book"></i> Docs</a></li>
|
|
166
169
|
</ul>
|
|
167
170
|
</div>
|
|
168
171
|
</nav>
|
|
@@ -633,7 +636,7 @@
|
|
|
633
636
|
<footer style="text-align: center; padding: var(--spacing-2xl) var(--spacing-lg); margin-top: var(--spacing-xl); border-top: 1px solid var(--border); color: var(--text-secondary);">
|
|
634
637
|
<p><strong>Corrupted Theme Extensions</strong> • Production-tested components from whykusanagi.xyz</p>
|
|
635
638
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
636
|
-
<a href="
|
|
639
|
+
<a href="https://github.com/whykusanagi/corrupted-theme#readme" class="link">Documentation</a> •
|
|
637
640
|
<a href="showcase-complete.html" class="link">Full Component Library</a> •
|
|
638
641
|
<a href="https://github.com/whykusanagi/corrupted-theme" class="link">GitHub</a>
|
|
639
642
|
</p>
|
package/examples/form.html
CHANGED
|
@@ -201,9 +201,12 @@
|
|
|
201
201
|
<a href="card.html"><i class="fas fa-square"></i> Cards</a>
|
|
202
202
|
<a href="form.html" class="active"><i class="fas fa-edit"></i> Forms</a>
|
|
203
203
|
<a href="layout.html"><i class="fas fa-columns"></i> Layouts</a>
|
|
204
|
+
<a href="basic/corrupted-text.html"><i class="fas fa-terminal"></i> Character Corruption</a>
|
|
205
|
+
<a href="basic/typing-animation.html"><i class="fas fa-keyboard"></i> Buffer Corruption</a>
|
|
206
|
+
<a href="advanced/nsfw-corruption.html"><i class="fas fa-exclamation-triangle"></i> NSFW (18+)</a>
|
|
204
207
|
</div>
|
|
205
208
|
</li>
|
|
206
|
-
<li><a href="
|
|
209
|
+
<li><a href="showcase-complete.html"><i class="fas fa-book"></i> Docs</a></li>
|
|
207
210
|
</ul>
|
|
208
211
|
</div>
|
|
209
212
|
</nav>
|
|
@@ -550,7 +553,7 @@
|
|
|
550
553
|
</section>
|
|
551
554
|
|
|
552
555
|
<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);">
|
|
553
|
-
<p>Form Components Documentation • Corrupted Theme v0.1.
|
|
556
|
+
<p>Form Components Documentation • Corrupted Theme v0.1.7</p>
|
|
554
557
|
<p style="font-size: 0.875rem; margin-top: var(--spacing-md);">
|
|
555
558
|
<a href="index.html" style="color: var(--accent); text-decoration: none;">← Back to Showcase</a>
|
|
556
559
|
</p>
|
package/examples/index.html
CHANGED
|
@@ -461,9 +461,12 @@
|
|
|
461
461
|
<a href="card.html"><i class="fas fa-square"></i> Cards</a>
|
|
462
462
|
<a href="form.html"><i class="fas fa-edit"></i> Forms</a>
|
|
463
463
|
<a href="layout.html"><i class="fas fa-columns"></i> Layouts</a>
|
|
464
|
+
<a href="basic/corrupted-text.html"><i class="fas fa-terminal"></i> Character Corruption</a>
|
|
465
|
+
<a href="basic/typing-animation.html"><i class="fas fa-keyboard"></i> Buffer Corruption</a>
|
|
466
|
+
<a href="advanced/nsfw-corruption.html"><i class="fas fa-exclamation-triangle"></i> NSFW (18+)</a>
|
|
464
467
|
</div>
|
|
465
468
|
</li>
|
|
466
|
-
<li><a href="
|
|
469
|
+
<li><a href="showcase-complete.html"><i class="fas fa-book"></i> Docs</a></li>
|
|
467
470
|
</ul>
|
|
468
471
|
</div>
|
|
469
472
|
</nav>
|
|
@@ -473,7 +476,7 @@
|
|
|
473
476
|
<div class="hero-content">
|
|
474
477
|
<div class="hero-badge">
|
|
475
478
|
<i class="fas fa-sparkles"></i>
|
|
476
|
-
<span>v0.1.
|
|
479
|
+
<span>v0.1.7 — Production Ready</span>
|
|
477
480
|
</div>
|
|
478
481
|
<h1>Corrupted Theme</h1>
|
|
479
482
|
<p class="hero-description">
|
|
@@ -742,13 +745,13 @@
|
|
|
742
745
|
<footer class="landing-footer">
|
|
743
746
|
<div class="footer-content">
|
|
744
747
|
<div class="footer-links">
|
|
745
|
-
<a href="
|
|
746
|
-
<a href="
|
|
748
|
+
<a href="https://github.com/whykusanagi/corrupted-theme#readme"><i class="fas fa-book"></i> Documentation</a>
|
|
749
|
+
<a href="showcase-complete.html"><i class="fas fa-list"></i> Component Reference</a>
|
|
747
750
|
<a href="https://github.com/whykusanagi/corrupted-theme" target="_blank"><i class="fab fa-github"></i> GitHub</a>
|
|
748
751
|
<a href="https://www.npmjs.com/package/@whykusanagi/corrupted-theme" target="_blank"><i class="fab fa-npm"></i> npm</a>
|
|
749
752
|
</div>
|
|
750
753
|
<p class="footer-meta">
|
|
751
|
-
Corrupted Theme v0.1.
|
|
754
|
+
Corrupted Theme v0.1.7 • Built with <i class="fas fa-heart" style="color: var(--accent);"></i> by
|
|
752
755
|
<a href="https://whykusanagi.xyz" target="_blank">@whykusanagi</a>
|
|
753
756
|
</p>
|
|
754
757
|
</div>
|