@htmlbricks/hb-map 0.61.17 → 0.61.19

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/manifest.json CHANGED
@@ -111,6 +111,9 @@
111
111
  },
112
112
  "type": "array"
113
113
  },
114
+ "color": {
115
+ "type": "string"
116
+ },
114
117
  "opacity": {
115
118
  "type": "number"
116
119
  },
@@ -158,6 +161,9 @@
158
161
  },
159
162
  "type": "array"
160
163
  },
164
+ "color": {
165
+ "type": "string"
166
+ },
161
167
  "opacity": {
162
168
  "type": "number"
163
169
  },
@@ -203,6 +209,9 @@
203
209
  },
204
210
  "type": "array"
205
211
  },
212
+ "color": {
213
+ "type": "string"
214
+ },
206
215
  "opacity": {
207
216
  "type": "number"
208
217
  },
@@ -452,5 +461,5 @@
452
461
  "size": {},
453
462
  "iifePath": "main.iife.js",
454
463
  "repoName": "@htmlbricks/hb-map",
455
- "version": "0.61.17"
464
+ "version": "0.61.19"
456
465
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-map",
3
- "version": "0.61.17",
3
+ "version": "0.61.19",
4
4
  "contributors": [],
5
5
  "description": "",
6
6
  "licenses": [
@@ -28,6 +28,9 @@
28
28
  },
29
29
  "type": "array"
30
30
  },
31
+ "color": {
32
+ "type": "string"
33
+ },
31
34
  "opacity": {
32
35
  "type": "number"
33
36
  },
@@ -75,6 +78,9 @@
75
78
  },
76
79
  "type": "array"
77
80
  },
81
+ "color": {
82
+ "type": "string"
83
+ },
78
84
  "opacity": {
79
85
  "type": "number"
80
86
  },
@@ -120,6 +126,9 @@
120
126
  },
121
127
  "type": "array"
122
128
  },
129
+ "color": {
130
+ "type": "string"
131
+ },
123
132
  "opacity": {
124
133
  "type": "number"
125
134
  },
@@ -11,6 +11,7 @@ export type Component = {
11
11
  scale?: number;
12
12
  anchor?: number[];
13
13
  opacity?: number;
14
+ color?: string;
14
15
  };
15
16
  id?: string;
16
17
  popupHtml?: string;
@@ -22,6 +23,7 @@ export type Component = {
22
23
  scale?: number;
23
24
  anchor?: number[];
24
25
  opacity?: number;
26
+ color?: string;
25
27
  };
26
28
  id?: string;
27
29
  popupHtml?: string;
@@ -33,6 +35,7 @@ export type Component = {
33
35
  scale?: number;
34
36
  anchor?: number[];
35
37
  opacity?: number;
38
+ color?: string;
36
39
  };
37
40
  id?: string;
38
41
  popupHtml?: string;