@claspo/common 6.0.0-theme.14 → 6.0.0-theme.15

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.
@@ -49,6 +49,10 @@ export interface ClDocumentActionI<T = any> {
49
49
  type: string;
50
50
  params?: T;
51
51
  }
52
+ export type ThemeColorSchemaI = Record<string, string>;
53
+ export interface ThemeI {
54
+ schema: ThemeColorSchemaI;
55
+ }
52
56
  export interface ClDocumentSharedI {
53
57
  headerFontFamily: string;
54
58
  textFontFamily: string;
@@ -67,6 +71,7 @@ export interface ClDocumentSharedI {
67
71
  linkParams?: ClDocumentLinkParamsI;
68
72
  mobileBreakpointWidth?: number;
69
73
  zIndex?: number;
74
+ theme?: ThemeI;
70
75
  }
71
76
  export interface ClDialogParamsI {
72
77
  background: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claspo/common",
3
- "version": "6.0.0-theme.14",
3
+ "version": "6.0.0-theme.15",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "engines": {