@astryxdesign/theme-gothic 0.3.0 → 0.4.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/dist/gothic.d.ts +2 -2
- package/dist/gothic.js +3 -3
- package/dist/theme.css +20 -2
- package/package.json +4 -4
package/dist/gothic.d.ts
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* @generated by `astryx theme build` — do not edit manually.
|
|
3
3
|
* Source: src/gothicTheme.ts
|
|
4
4
|
* Command: astryx theme build src/gothicTheme.ts --out dist/theme.css
|
|
5
|
-
* CLI: @astryxdesign/cli@0.
|
|
6
|
-
* Core: @astryxdesign/core@0.
|
|
5
|
+
* CLI: @astryxdesign/cli@0.4.0
|
|
6
|
+
* Core: @astryxdesign/core@0.4.0
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
import type { DefinedTheme } from '@astryxdesign/core/theme';
|
package/dist/gothic.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
* @generated by `astryx theme build` — do not edit manually.
|
|
3
3
|
* Source: src/gothicTheme.ts
|
|
4
4
|
* Command: astryx theme build src/gothicTheme.ts --out dist/theme.css
|
|
5
|
-
* CLI: @astryxdesign/cli@0.
|
|
6
|
-
* Core: @astryxdesign/core@0.
|
|
5
|
+
* CLI: @astryxdesign/cli@0.4.0
|
|
6
|
+
* Core: @astryxdesign/core@0.4.0
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
import { gothicIconRegistry } from
|
|
9
|
+
import { gothicIconRegistry } from "./icons.mjs";
|
|
10
10
|
/**
|
|
11
11
|
* gothic theme — built by `pnpm exec astryx theme build`
|
|
12
12
|
* Import the CSS file alongside this module:
|
package/dist/theme.css
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* @generated by `astryx theme build` — do not edit manually.
|
|
3
3
|
* Source: src/gothicTheme.ts
|
|
4
4
|
* Command: astryx theme build src/gothicTheme.ts --out dist/theme.css
|
|
5
|
-
* CLI: @astryxdesign/cli@0.
|
|
6
|
-
* Core: @astryxdesign/core@0.
|
|
5
|
+
* CLI: @astryxdesign/cli@0.4.0
|
|
6
|
+
* Core: @astryxdesign/core@0.4.0
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
@layer reset {
|
|
@@ -295,6 +295,24 @@
|
|
|
295
295
|
line-height: var(--text-heading-6-leading);
|
|
296
296
|
}
|
|
297
297
|
|
|
298
|
+
.astryx-heading.display-1 {
|
|
299
|
+
font-family: var(--font-family-heading);
|
|
300
|
+
font-size: var(--text-display-1-size);
|
|
301
|
+
line-height: var(--text-display-1-leading);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.astryx-heading.display-2 {
|
|
305
|
+
font-family: var(--font-family-heading);
|
|
306
|
+
font-size: var(--text-display-2-size);
|
|
307
|
+
line-height: var(--text-display-2-leading);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.astryx-heading.display-3 {
|
|
311
|
+
font-family: var(--font-family-heading);
|
|
312
|
+
font-size: var(--text-display-3-size);
|
|
313
|
+
line-height: var(--text-display-3-leading);
|
|
314
|
+
}
|
|
315
|
+
|
|
298
316
|
.astryx-text.body {
|
|
299
317
|
font-family: var(--font-family-body);
|
|
300
318
|
font-size: var(--text-body-size);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astryxdesign/theme-gothic",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"displayName": "Gothic Theme",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Deep blue-grays and a signature display serif. Dramatic and editorial, for surfaces that want to be remembered.",
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
"lucide-react": "^1.18.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@astryxdesign/core": "0.
|
|
52
|
+
"@astryxdesign/core": "0.4.0",
|
|
53
53
|
"react": ">=19"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@astryxdesign/cli": "0.
|
|
56
|
+
"@astryxdesign/cli": "0.4.0"
|
|
57
57
|
},
|
|
58
58
|
"module": "./dist/source.mjs",
|
|
59
59
|
"scripts": {
|
|
60
|
-
"build": "astryx theme build src/gothicTheme.ts -o dist/theme.css && tsup && tsc --project tsconfig.build.json"
|
|
60
|
+
"build": "astryx theme build src/gothicTheme.ts -o dist/theme.css --icons-specifier ./icons.mjs && tsup && tsc --project tsconfig.build.json"
|
|
61
61
|
}
|
|
62
62
|
}
|