@aurea-uds/tokens 0.2.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/aurea.tokens.css +1 -1
- package/dist/aurea.tokens.css.d.ts +3 -0
- package/dist/aurea.tokens.native.d.ts +9 -0
- package/dist/aurea.tokens.native.js +957 -0
- package/package.json +19 -4
- package/src/aurea.tokens.json +2311 -2311
package/dist/aurea.tokens.css
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// Gerado por scripts/build-tokens.mjs.
|
|
2
|
+
export type AureaColor = {hex: string; p3: string; oklch: string | null};
|
|
3
|
+
export type AureaShadow = {offsetX: number; offsetY: number; blurRadius: number; spreadDistance: number; color: string};
|
|
4
|
+
export declare const REM_EM_DP: number;
|
|
5
|
+
export declare const base: Record<string, number | string | number[] | AureaColor | AureaShadow>;
|
|
6
|
+
export declare const tracking: Record<string, number>;
|
|
7
|
+
export declare const breakpoints: Record<string, number>;
|
|
8
|
+
export declare const themes: Record<"dark" | "light", Record<string, AureaColor | number>>;
|
|
9
|
+
export declare const densities: Record<"compact" | "comfortable" | "spacious", Record<string, number>>;
|