@astryxdesign/theme-butter 0.4.5 → 0.4.6-canary.cea9ecd

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.4.5
6
- * Core: @astryxdesign/core@0.4.5
5
+ * CLI: @astryxdesign/cli@0.4.6
6
+ * Core: @astryxdesign/core@0.4.6
7
7
  */
8
8
 
9
9
  /// <reference path="./butter.variants.d.ts" />
package/dist/butter.js 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.4.5
6
- * Core: @astryxdesign/core@0.4.5
5
+ * CLI: @astryxdesign/cli@0.4.6
6
+ * Core: @astryxdesign/core@0.4.6
7
7
  */
8
8
 
9
9
  import { butterIconRegistry } from "./icons.mjs";
@@ -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.4.5
6
- * Core: @astryxdesign/core@0.4.5
5
+ * CLI: @astryxdesign/cli@0.4.6
6
+ * Core: @astryxdesign/core@0.4.6
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.4.5
6
- * Core: @astryxdesign/core@0.4.5
5
+ * CLI: @astryxdesign/cli@0.4.6
6
+ * Core: @astryxdesign/core@0.4.6
7
7
  */
8
8
 
9
9
  @layer reset {
@@ -382,7 +382,7 @@
382
382
  background-color: transparent;
383
383
  }
384
384
 
385
- .astryx-top-nav-item.selected:hover {
385
+ .astryx-top-nav-item.selected:hover:where(:not(:disabled,[aria-disabled="true"])) {
386
386
  background-color: var(--color-overlay-hover);
387
387
  }
388
388
 
@@ -403,7 +403,7 @@
403
403
  color: light-dark(#225BFF, #FDEE8C);
404
404
  }
405
405
 
406
- .astryx-button.secondary:hover {
406
+ .astryx-button.secondary:hover:where(:not(:disabled,[aria-disabled="true"])) {
407
407
  background-color: light-dark(#225BFF14, #FDEE8C14);
408
408
  }
409
409
 
@@ -628,9 +628,10 @@
628
628
  }
629
629
 
630
630
  .astryx-number-input {
631
- padding-block: var(--spacing-2);
632
- padding-inline: var(--spacing-3);
633
631
  border-color: var(--color-border);
632
+ --astryx-number-input-padding-inline: var(--spacing-3);
633
+ --astryx-number-input-padding-block-start: var(--spacing-2);
634
+ --astryx-number-input-padding-block-end: var(--spacing-2);
634
635
  }
635
636
 
636
637
  .astryx-number-input.success {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astryxdesign/theme-butter",
3
- "version": "0.4.5",
3
+ "version": "0.4.6-canary.cea9ecd",
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,15 @@
49
49
  "lucide-react": "^1.18.0"
50
50
  },
51
51
  "peerDependencies": {
52
- "@astryxdesign/core": "0.4.5",
52
+ "@astryxdesign/core": "0.4.6-canary.cea9ecd",
53
53
  "react": ">=19"
54
54
  },
55
55
  "devDependencies": {
56
- "@astryxdesign/cli": "0.4.5"
56
+ "@astryxdesign/cli": "0.4.6-canary.cea9ecd",
57
+ "rimraf": "^6.0.1"
57
58
  },
58
59
  "module": "./dist/source.mjs",
59
60
  "scripts": {
60
- "build": "astryx theme build src/butterTheme.ts -o dist/theme.css --icons-specifier ./icons.mjs && tsup && tsc --project tsconfig.build.json && node ../../../scripts/check-fully-specified.mjs"
61
+ "build": "rimraf dist && astryx theme build src/butterTheme.ts -o dist/theme.css --icons-specifier ./icons.mjs && tsup && tsc --project tsconfig.build.json && node ../../../scripts/check-fully-specified.mjs"
61
62
  }
62
63
  }