@astryxdesign/theme-stone 0.4.4 → 0.4.5-canary.013e728

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/stone.d.ts CHANGED
@@ -2,8 +2,8 @@
2
2
  * @generated by `astryx theme build` — do not edit manually.
3
3
  * Source: src/stoneTheme.ts
4
4
  * Command: astryx theme build src/stoneTheme.ts --out dist/theme.css
5
- * CLI: @astryxdesign/cli@0.4.4
6
- * Core: @astryxdesign/core@0.4.4
5
+ * CLI: @astryxdesign/cli@0.4.5
6
+ * Core: @astryxdesign/core@0.4.5
7
7
  */
8
8
 
9
9
  /// <reference path="./stone.variants.d.ts" />
package/dist/stone.js CHANGED
@@ -2,8 +2,8 @@
2
2
  * @generated by `astryx theme build` — do not edit manually.
3
3
  * Source: src/stoneTheme.ts
4
4
  * Command: astryx theme build src/stoneTheme.ts --out dist/theme.css
5
- * CLI: @astryxdesign/cli@0.4.4
6
- * Core: @astryxdesign/core@0.4.4
5
+ * CLI: @astryxdesign/cli@0.4.5
6
+ * Core: @astryxdesign/core@0.4.5
7
7
  */
8
8
 
9
9
  import { stoneIconRegistry } from "./icons.mjs";
@@ -2,8 +2,8 @@
2
2
  * @generated by `astryx theme build` — do not edit manually.
3
3
  * Source: src/stoneTheme.ts
4
4
  * Command: astryx theme build src/stoneTheme.ts --out dist/theme.css
5
- * CLI: @astryxdesign/cli@0.4.4
6
- * Core: @astryxdesign/core@0.4.4
5
+ * CLI: @astryxdesign/cli@0.4.5
6
+ * Core: @astryxdesign/core@0.4.5
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/stoneTheme.ts
4
4
  * Command: astryx theme build src/stoneTheme.ts --out dist/theme.css
5
- * CLI: @astryxdesign/cli@0.4.4
6
- * Core: @astryxdesign/core@0.4.4
5
+ * CLI: @astryxdesign/cli@0.4.5
6
+ * Core: @astryxdesign/core@0.4.5
7
7
  */
8
8
 
9
9
  @layer reset {
@@ -377,7 +377,7 @@
377
377
  border-color: var(--color-border-emphasized);
378
378
  }
379
379
 
380
- .astryx-button.secondary:hover {
380
+ .astryx-button.secondary:hover:where(:not(:disabled,[aria-disabled="true"])) {
381
381
  background-color: var(--color-neutral);
382
382
  }
383
383
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astryxdesign/theme-stone",
3
- "version": "0.4.4",
3
+ "version": "0.4.5-canary.013e728",
4
4
  "displayName": "Stone Theme",
5
5
  "private": false,
6
6
  "description": "Warm stone and slate, earthy and understated, with just enough character to feel handcrafted.",
@@ -49,14 +49,15 @@
49
49
  "lucide-react": "^1.18.0"
50
50
  },
51
51
  "peerDependencies": {
52
- "@astryxdesign/core": "0.4.4",
52
+ "@astryxdesign/core": "0.4.5-canary.013e728",
53
53
  "react": ">=19"
54
54
  },
55
55
  "devDependencies": {
56
- "@astryxdesign/cli": "0.4.4"
56
+ "@astryxdesign/cli": "0.4.5-canary.013e728",
57
+ "rimraf": "^6.0.1"
57
58
  },
58
59
  "module": "./dist/source.mjs",
59
60
  "scripts": {
60
- "build": "astryx theme build src/stoneTheme.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/stoneTheme.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
  }