@jsonresume/jsonresume-theme-creative-studio 1.0.1 → 1.1.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/CHANGELOG.md +28 -0
- package/LICENSE +21 -0
- package/dist/index.js +13 -0
- package/package.json +12 -13
- package/src/ui/Resume.jsx +14 -0
- package/.turbo/turbo-build.log +0 -11
- /package/{.eslintrc.js → .eslintrc.cjs} +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# @jsonresume/jsonresume-theme-creative-studio
|
|
2
|
+
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor 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.
|
package/dist/index.js
CHANGED
|
@@ -1477,6 +1477,7 @@ function formatDateRange({
|
|
|
1477
1477
|
return formatter.format(date);
|
|
1478
1478
|
};
|
|
1479
1479
|
const start = formatDate(startDate);
|
|
1480
|
+
if (endDate === void 0) return start;
|
|
1480
1481
|
const end = formatDate(endDate);
|
|
1481
1482
|
return `${start} - ${end}`;
|
|
1482
1483
|
}
|
|
@@ -6218,6 +6219,7 @@ function Resume({ resume }) {
|
|
|
6218
6219
|
projects = [],
|
|
6219
6220
|
volunteer = [],
|
|
6220
6221
|
awards = [],
|
|
6222
|
+
certificates = [],
|
|
6221
6223
|
publications = [],
|
|
6222
6224
|
languages = [],
|
|
6223
6225
|
interests = [],
|
|
@@ -6304,6 +6306,17 @@ function Resume({ resume }) {
|
|
|
6304
6306
|
award.summary && /* @__PURE__ */ jsx(WorkSummary, { children: award.summary })
|
|
6305
6307
|
] }, index))
|
|
6306
6308
|
] }),
|
|
6309
|
+
certificates?.length > 0 && /* @__PURE__ */ jsxs(Section, { children: [
|
|
6310
|
+
/* @__PURE__ */ jsx(StyledSectionTitle, { children: "Certificates" }),
|
|
6311
|
+
certificates.map((cert, index) => /* @__PURE__ */ jsxs(EducationItem, { children: [
|
|
6312
|
+
/* @__PURE__ */ jsx(Institution, { children: cert.name }),
|
|
6313
|
+
cert.issuer && /* @__PURE__ */ jsxs(Degree, { children: [
|
|
6314
|
+
"Issued by ",
|
|
6315
|
+
cert.issuer
|
|
6316
|
+
] }),
|
|
6317
|
+
cert.date && /* @__PURE__ */ jsx(EducationDate, { children: cert.date })
|
|
6318
|
+
] }, index))
|
|
6319
|
+
] }),
|
|
6307
6320
|
publications?.length > 0 && /* @__PURE__ */ jsxs(Section, { children: [
|
|
6308
6321
|
/* @__PURE__ */ jsx(StyledSectionTitle, { children: "Publications" }),
|
|
6309
6322
|
publications.map((pub, index) => /* @__PURE__ */ jsxs(EducationItem, { children: [
|
package/package.json
CHANGED
|
@@ -1,40 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@jsonresume/jsonresume-theme-creative-studio",
|
|
4
|
-
"version": "1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "./
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"description": "Creative Studio theme - artistic yet professional with warm coral accents and rounded typography",
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"@repo/eslint-config-custom": "workspace:^",
|
|
11
10
|
"react": "^19.2.0",
|
|
12
11
|
"styled-components": "^6.1.19",
|
|
13
12
|
"@vitejs/plugin-react": "^4.3.4",
|
|
14
|
-
"vite": "^5.4.21"
|
|
13
|
+
"vite": "^5.4.21",
|
|
14
|
+
"@repo/eslint-config-custom": "^0.0.0"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"styled-components": "^6"
|
|
18
18
|
},
|
|
19
|
-
"scripts": {
|
|
20
|
-
"lint": "eslint src || exit 0",
|
|
21
|
-
"publish": "npm publish --access public",
|
|
22
|
-
"build": "vite build"
|
|
23
|
-
},
|
|
24
19
|
"dependencies": {
|
|
25
|
-
"@jsonresume/core": "workspace:^",
|
|
26
20
|
"marked": "^16.3.0",
|
|
27
21
|
"prismjs": "^1.29.0",
|
|
28
|
-
"react-icons": "^5.0.1"
|
|
22
|
+
"react-icons": "^5.0.1",
|
|
23
|
+
"@jsonresume/core": "^0.1.0"
|
|
29
24
|
},
|
|
30
25
|
"exports": {
|
|
31
26
|
".": {
|
|
32
27
|
"import": "./src/index.jsx",
|
|
33
|
-
"default": "./
|
|
28
|
+
"default": "./dist/index.js"
|
|
34
29
|
},
|
|
35
30
|
"./dist": {
|
|
36
31
|
"import": "./dist/index.js",
|
|
37
32
|
"default": "./dist/index.js"
|
|
38
33
|
}
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"lint": "eslint src || exit 0",
|
|
37
|
+
"build": "vite build"
|
|
39
38
|
}
|
|
40
|
-
}
|
|
39
|
+
}
|
package/src/ui/Resume.jsx
CHANGED
|
@@ -240,6 +240,7 @@ function Resume({ resume }) {
|
|
|
240
240
|
projects = [],
|
|
241
241
|
volunteer = [],
|
|
242
242
|
awards = [],
|
|
243
|
+
certificates = [],
|
|
243
244
|
publications = [],
|
|
244
245
|
languages = [],
|
|
245
246
|
interests = [],
|
|
@@ -383,6 +384,19 @@ function Resume({ resume }) {
|
|
|
383
384
|
</Section>
|
|
384
385
|
)}
|
|
385
386
|
|
|
387
|
+
{certificates?.length > 0 && (
|
|
388
|
+
<Section>
|
|
389
|
+
<StyledSectionTitle>Certificates</StyledSectionTitle>
|
|
390
|
+
{certificates.map((cert, index) => (
|
|
391
|
+
<EducationItem key={index}>
|
|
392
|
+
<Institution>{cert.name}</Institution>
|
|
393
|
+
{cert.issuer && <Degree>Issued by {cert.issuer}</Degree>}
|
|
394
|
+
{cert.date && <EducationDate>{cert.date}</EducationDate>}
|
|
395
|
+
</EducationItem>
|
|
396
|
+
))}
|
|
397
|
+
</Section>
|
|
398
|
+
)}
|
|
399
|
+
|
|
386
400
|
{publications?.length > 0 && (
|
|
387
401
|
<Section>
|
|
388
402
|
<StyledSectionTitle>Publications</StyledSectionTitle>
|
package/.turbo/turbo-build.log
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
> @jsonresume/jsonresume-theme-creative-studio@1.0.0 build /Users/ajaxdavis/repos/jsonresume.org/packages/themes/jsonresume-theme-creative-studio
|
|
3
|
-
> vite build
|
|
4
|
-
|
|
5
|
-
vite v5.4.21 building SSR bundle for production...
|
|
6
|
-
transforming...
|
|
7
|
-
✓ 168 modules transformed.
|
|
8
|
-
rendering chunks...
|
|
9
|
-
dist/style.css 3.59 kB
|
|
10
|
-
dist/index.js 192.46 kB
|
|
11
|
-
✓ built in 2.55s
|
|
File without changes
|