polymatica-widget 2.1.11 → 2.1.12

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/config.d.ts CHANGED
@@ -43,6 +43,8 @@ export interface DataConfig {
43
43
  heatmap?: {
44
44
  targets: string[];
45
45
  };
46
+ hideSort?: boolean;
47
+ hideCounter?: boolean;
46
48
  }
47
49
  export interface Block {
48
50
  key: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polymatica-widget",
3
- "version": "2.1.11",
3
+ "version": "2.1.12",
4
4
  "description": "SDK для создания виджетов для платформы Polymatica",
5
5
  "keywords": [],
6
6
  "license": "ISC",
package/theme.d.ts CHANGED
@@ -1,3 +1,14 @@
1
1
  export interface Theme {
2
2
  palette: string[];
3
+ labels: ThemeText;
4
+ texts: ThemeText;
5
+ }
6
+ export interface ThemeText {
7
+ align: "start" | "end" | "center" | "justify";
8
+ background: string;
9
+ color: string;
10
+ fontFamily: string;
11
+ fontSize: string;
12
+ fontStyle: string;
13
+ fontWeight: string;
3
14
  }