@mirohq/design-system-themes 0.9.2 → 0.10.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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -18,10 +18,10 @@ declare type AliasShadows = 50 | 100 | keyof typeof focus;
18
18
 
19
19
  declare type Color = `$${Colors}` | `$${AliasColors}` | (string & {});
20
20
  declare type Theme = {
21
- colors?: {
21
+ colors: {
22
22
  [Key in AliasColors]?: Color;
23
23
  };
24
- shadows?: {
24
+ shadows: {
25
25
  [Key in AliasShadows]?: string;
26
26
  };
27
27
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mirohq/design-system-themes",
3
- "version": "0.9.2",
3
+ "version": "0.10.0",
4
4
  "description": "",
5
5
  "author": "Miro",
6
6
  "source": "src/index.ts",