@arcanewizards/sigil 0.1.6 → 0.1.7

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.
@@ -18,7 +18,7 @@ type SigilUsageColorUsage = {
18
18
  gradientLight: string;
19
19
  gradientDark: string;
20
20
  };
21
- declare const sigilColorUsage: (color: SigilUsageColor) => SigilUsageColorUsage;
21
+ declare const sigilColorUsage: (color: SigilUsageColor | "hint") => SigilUsageColorUsage;
22
22
  declare const cssSigilColorUsageVariables: (prefix: string, usage: SigilUsageColorUsage) => CSSProperties;
23
23
  declare const cssHintColorVariables: (color: SigilColor) => CSSProperties;
24
24
  declare const cssVariables: (variables: Partial<Record<`--${string}`, string | number>>) => CSSProperties;
@@ -18,7 +18,7 @@ type SigilUsageColorUsage = {
18
18
  gradientLight: string;
19
19
  gradientDark: string;
20
20
  };
21
- declare const sigilColorUsage: (color: SigilUsageColor) => SigilUsageColorUsage;
21
+ declare const sigilColorUsage: (color: SigilUsageColor | "hint") => SigilUsageColorUsage;
22
22
  declare const cssSigilColorUsageVariables: (prefix: string, usage: SigilUsageColorUsage) => CSSProperties;
23
23
  declare const cssHintColorVariables: (color: SigilColor) => CSSProperties;
24
24
  declare const cssVariables: (variables: Partial<Record<`--${string}`, string | number>>) => CSSProperties;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arcanewizards/sigil",
3
3
  "description": "Application framework for A/V applications, built on-top of arcanejs",
4
- "version": "0.1.6",
4
+ "version": "0.1.7",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "type": "module",
@@ -133,8 +133,9 @@
133
133
  "@arcanewizards/typescript-config": "^0.0.0"
134
134
  },
135
135
  "scripts": {
136
- "build": "rm -rf dist && tsup && pnpm build:styles && check-export-map",
136
+ "build": "pnpm clean && tsup && pnpm build:styles && check-export-map",
137
137
  "build:styles": "tailwindcss -i ./src/frontend/styles/sigil.css -o ./dist/frontend/styles/sigil.css && cp ./src/frontend/styles/theme.css ./dist/frontend/styles/theme.css && cp ./src/frontend/styles/base.css ./dist/frontend/styles/base.css",
138
+ "clean": "rm -rf dist",
138
139
  "check:types": "tsc --noEmit",
139
140
  "format:fix": "cd .. && pnpm format:fix",
140
141
  "lint": "eslint . --max-warnings 0",