@astryxdesign/theme-stone 0.5.2 → 0.5.3
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/source.js +1 -1
- package/dist/source.mjs +1 -1
- package/dist/stone.d.ts +2 -2
- package/dist/stone.js +2 -2
- package/dist/stone.variants.d.ts +10 -2
- package/dist/theme.css +2 -2
- package/package.json +3 -3
- package/src/stoneTheme.ts +1 -1
package/dist/source.js
CHANGED
package/dist/source.mjs
CHANGED
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.5.
|
|
6
|
-
* Core: @astryxdesign/core@0.5.
|
|
5
|
+
* CLI: @astryxdesign/cli@0.5.3
|
|
6
|
+
* Core: @astryxdesign/core@0.5.3
|
|
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.5.
|
|
6
|
-
* Core: @astryxdesign/core@0.5.
|
|
5
|
+
* CLI: @astryxdesign/cli@0.5.3
|
|
6
|
+
* Core: @astryxdesign/core@0.5.3
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
import { stoneIconRegistry } from "./icons.mjs";
|
package/dist/stone.variants.d.ts
CHANGED
|
@@ -2,13 +2,21 @@
|
|
|
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.5.
|
|
6
|
-
* Core: @astryxdesign/core@0.5.
|
|
5
|
+
* CLI: @astryxdesign/cli@0.5.3
|
|
6
|
+
* Core: @astryxdesign/core@0.5.3
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
// Generated by astryx theme build
|
|
10
10
|
export {};
|
|
11
11
|
|
|
12
|
+
declare module '@astryxdesign/core/Heading' {
|
|
13
|
+
interface HeadingTypeMap {
|
|
14
|
+
'display-1': true;
|
|
15
|
+
'display-2': true;
|
|
16
|
+
'display-3': true;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
12
20
|
declare module '@astryxdesign/core/ProgressBar' {
|
|
13
21
|
interface ProgressBarVariantMap {
|
|
14
22
|
'accent': true;
|
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.5.
|
|
6
|
-
* Core: @astryxdesign/core@0.5.
|
|
5
|
+
* CLI: @astryxdesign/cli@0.5.3
|
|
6
|
+
* Core: @astryxdesign/core@0.5.3
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
@layer reset {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astryxdesign/theme-stone",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
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,11 +49,11 @@
|
|
|
49
49
|
"lucide-react": "^1.18.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@astryxdesign/core": "0.5.
|
|
52
|
+
"@astryxdesign/core": "0.5.3",
|
|
53
53
|
"react": ">=19"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@astryxdesign/cli": "0.5.
|
|
56
|
+
"@astryxdesign/cli": "0.5.3"
|
|
57
57
|
},
|
|
58
58
|
"module": "./dist/source.mjs",
|
|
59
59
|
"scripts": {
|
package/src/stoneTheme.ts
CHANGED
|
@@ -40,7 +40,7 @@ const INPUT_STATUS_VARS = {
|
|
|
40
40
|
* the stone neutral palette doesn't carry a distinct green stop.
|
|
41
41
|
*/
|
|
42
42
|
const stoneSyntax = defineSyntaxTheme({
|
|
43
|
-
name: '
|
|
43
|
+
name: 'astryx-stone',
|
|
44
44
|
tokens: {
|
|
45
45
|
keyword: ['#645a72', '#b2a7c1'], // Purple T40 / T70
|
|
46
46
|
string: ['#4e6357', '#9bb19a'], // Teal T40 / Green T70
|