@astryxdesign/theme-butter 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/butter.d.ts CHANGED
@@ -2,8 +2,8 @@
2
2
  * @generated by `astryx theme build` — do not edit manually.
3
3
  * Source: src/butterTheme.ts
4
4
  * Command: astryx theme build src/butterTheme.ts --out dist/theme.css
5
- * CLI: @astryxdesign/cli@0.3.0
6
- * Core: @astryxdesign/core@0.3.0
5
+ * CLI: @astryxdesign/cli@0.4.0
6
+ * Core: @astryxdesign/core@0.4.0
7
7
  */
8
8
 
9
9
  /// <reference path="./butter.variants.d.ts" />
package/dist/butter.js CHANGED
@@ -2,11 +2,11 @@
2
2
  * @generated by `astryx theme build` — do not edit manually.
3
3
  * Source: src/butterTheme.ts
4
4
  * Command: astryx theme build src/butterTheme.ts --out dist/theme.css
5
- * CLI: @astryxdesign/cli@0.3.0
6
- * Core: @astryxdesign/core@0.3.0
5
+ * CLI: @astryxdesign/cli@0.4.0
6
+ * Core: @astryxdesign/core@0.4.0
7
7
  */
8
8
 
9
- import { butterIconRegistry } from './icons';
9
+ import { butterIconRegistry } from "./icons.mjs";
10
10
  /**
11
11
  * butter theme — built by `pnpm exec astryx theme build`
12
12
  * Import the CSS file alongside this module:
@@ -2,8 +2,8 @@
2
2
  * @generated by `astryx theme build` — do not edit manually.
3
3
  * Source: src/butterTheme.ts
4
4
  * Command: astryx theme build src/butterTheme.ts --out dist/theme.css
5
- * CLI: @astryxdesign/cli@0.3.0
6
- * Core: @astryxdesign/core@0.3.0
5
+ * CLI: @astryxdesign/cli@0.4.0
6
+ * Core: @astryxdesign/core@0.4.0
7
7
  */
8
8
 
9
9
  // Generated by astryx theme build
package/dist/theme.css CHANGED
@@ -2,8 +2,8 @@
2
2
  * @generated by `astryx theme build` — do not edit manually.
3
3
  * Source: src/butterTheme.ts
4
4
  * Command: astryx theme build src/butterTheme.ts --out dist/theme.css
5
- * CLI: @astryxdesign/cli@0.3.0
6
- * Core: @astryxdesign/core@0.3.0
5
+ * CLI: @astryxdesign/cli@0.4.0
6
+ * Core: @astryxdesign/core@0.4.0
7
7
  */
8
8
 
9
9
  @layer reset {
@@ -302,6 +302,24 @@
302
302
  line-height: var(--text-heading-6-leading);
303
303
  }
304
304
 
305
+ .astryx-heading.display-1 {
306
+ font-family: var(--font-family-heading);
307
+ font-size: var(--text-display-1-size);
308
+ line-height: var(--text-display-1-leading);
309
+ }
310
+
311
+ .astryx-heading.display-2 {
312
+ font-family: var(--font-family-heading);
313
+ font-size: var(--text-display-2-size);
314
+ line-height: var(--text-display-2-leading);
315
+ }
316
+
317
+ .astryx-heading.display-3 {
318
+ font-family: var(--font-family-heading);
319
+ font-size: var(--text-display-3-size);
320
+ line-height: var(--text-display-3-leading);
321
+ }
322
+
305
323
  .astryx-text.body {
306
324
  font-family: var(--font-family-body);
307
325
  font-size: var(--text-body-size);
@@ -593,8 +611,8 @@
593
611
 
594
612
  .astryx-textarea {
595
613
  padding-block: var(--spacing-2);
596
- padding-inline: var(--spacing-3);
597
614
  border-color: var(--color-border);
615
+ --_textarea-inline-padding: var(--spacing-3);
598
616
  }
599
617
 
600
618
  .astryx-textarea.success {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astryxdesign/theme-butter",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "displayName": "Butter Theme",
5
5
  "private": false,
6
6
  "description": "Warm, creamy yellows with a friendly blue accent. Playful enough for consumer surfaces, soft enough to stay readable.",
@@ -49,14 +49,14 @@
49
49
  "lucide-react": "^1.18.0"
50
50
  },
51
51
  "peerDependencies": {
52
- "@astryxdesign/core": "0.3.0",
52
+ "@astryxdesign/core": "0.4.0",
53
53
  "react": ">=19"
54
54
  },
55
55
  "devDependencies": {
56
- "@astryxdesign/cli": "0.3.0"
56
+ "@astryxdesign/cli": "0.4.0"
57
57
  },
58
58
  "module": "./dist/source.mjs",
59
59
  "scripts": {
60
- "build": "astryx theme build src/butterTheme.ts -o dist/theme.css && tsup && tsc --project tsconfig.build.json"
60
+ "build": "astryx theme build src/butterTheme.ts -o dist/theme.css --icons-specifier ./icons.mjs && tsup && tsc --project tsconfig.build.json"
61
61
  }
62
62
  }