@mirohq/design-system-themes 0.6.1 → 0.6.2
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/types.d.ts +3 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -13,9 +13,9 @@ declare const focusShadows: {
|
|
|
13
13
|
|
|
14
14
|
declare type AliasShadowKeys = 50 | 100 | keyof typeof focusShadows;
|
|
15
15
|
|
|
16
|
-
declare type
|
|
16
|
+
declare type GlobalAliasOrRawColor = `$${tokens.Colors}` | `$${AliasColorsKeys}` | (string & {});
|
|
17
17
|
declare type AliasColors = {
|
|
18
|
-
[Key in AliasColorsKeys]?:
|
|
18
|
+
[Key in AliasColorsKeys]?: GlobalAliasOrRawColor;
|
|
19
19
|
};
|
|
20
20
|
declare type AliasShadows = {
|
|
21
21
|
[Key in AliasShadowKeys]?: string;
|
|
@@ -31,4 +31,4 @@ declare const dark: Theme;
|
|
|
31
31
|
|
|
32
32
|
declare const base: Theme;
|
|
33
33
|
|
|
34
|
-
export { AliasColors, AliasColorsKeys, AliasShadowKeys, AliasShadows,
|
|
34
|
+
export { AliasColors, AliasColorsKeys, AliasShadowKeys, AliasShadows, GlobalAliasOrRawColor, Theme, base, dark, light };
|