jsonresume-theme-elegant-pink 0.1.0 → 0.1.1
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 +28 -0
- package/LICENSE +21 -0
- package/dist/index.js +6602 -0
- package/dist/style.css +139 -0
- package/package.json +16 -6
- package/src/Resume.jsx +6 -1
- package/vite.config.js +33 -0
- /package/src/{index.js → index.jsx} +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# jsonresume-theme-elegant-pink
|
|
2
|
+
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 718690c: Add missing JSON Resume sections (certificates/volunteer/publications); visual and crash fixes.
|
|
8
|
+
|
|
9
|
+
Publishes the wave 5-7 theme improvements that currently exist only in git (refs #275). The
|
|
10
|
+
published npm versions are stale: most themes never rendered certificates/volunteer/publications,
|
|
11
|
+
and all carried the `@resume/core` import (renamed to `@jsonresume/core`) plus the Date-shadow
|
|
12
|
+
rendering crash.
|
|
13
|
+
|
|
14
|
+
Minor (gained rendered sections via the "render missing sections" batches #363-#366 and the
|
|
15
|
+
operations-precision a11y/markdown work): all themes listed above as `minor` now render the
|
|
16
|
+
previously-missing certificates/volunteer/publications (and related) sections.
|
|
17
|
+
|
|
18
|
+
Patch (no new sections; visual, crash and dependency-rename fixes only):
|
|
19
|
+
|
|
20
|
+
- consultant-polished: stop crash when certificates/publications present (#359).
|
|
21
|
+
- tokyo-modernist: exports/CI fixes; styled-components moved to dependencies.
|
|
22
|
+
- @jsonresume/theme-stackoverflow: consistent date formatting (#259) + a11y fixes (the
|
|
23
|
+
Yarn-Berry lockfile removal did not change source and does not drive this bump).
|
|
24
|
+
- community-garden, desert-modern, elegant-pink: `@resume/core` -> `@jsonresume/core` import
|
|
25
|
+
fix and visual polish; sections were already rendered.
|
|
26
|
+
|
|
27
|
+
Excludes `@jsonresume/jsonresume-theme-professional` (already current on npm) and the private
|
|
28
|
+
themes (claude, creative-confidence, flat, tailwind).
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2014-2026 JSON Resume contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|