@bizy/core 20.10.4 → 20.10.5

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/index.d.ts CHANGED
@@ -952,6 +952,7 @@ declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
952
952
  x: IBizyHeatMapHighlightLineLabel;
953
953
  y: IBizyHeatMapHighlightLineLabel;
954
954
  };
955
+ slot?: 'start' | 'center' | 'end';
955
956
  };
956
957
  xAxis: {
957
958
  labels: Array<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "20.10.4",
3
+ "version": "20.10.5",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^20.0.0",
6
6
  "@angular/common": "^20.0.0",
@@ -156,12 +156,18 @@
156
156
  --bizy-heat-map-chart-tooltip-border-color: #fff;
157
157
  --bizy-heat-map-chart-x-highlight-area-background-color: #c5dcf34d;
158
158
  --bizy-heat-map-chart-x-highlight-area-border-color: var(--bizy-info-color);
159
+ --bizy-heat-map-chart-x-highlight-area-border-width: 0.5;
159
160
  --bizy-heat-map-chart-y-highlight-area-background-color: #f3c5c54d;
160
161
  --bizy-heat-map-chart-y-highlight-area-border-color: var(--bizy-danger-color);
162
+ --bizy-heat-map-chart-y-highlight-area-border-width: 0.5;
161
163
  --bizy-heat-map-chart-x-highlight-line-color: var(--bizy-danger-color);
162
164
  --bizy-heat-map-chart-x-highlight-line-label-color: var(--bizy-default-color);
165
+ --bizy-heat-map-chart-x-highlight-line-width: 1;
166
+ --bizy-heat-map-chart-x-highlight-line-style: solid;
163
167
  --bizy-heat-map-chart-y-highlight-line-color: var(--bizy-danger-color);
164
168
  --bizy-heat-map-chart-y-highlight-line-label-color: var(--bizy-default-color);
169
+ --bizy-heat-map-chart-y-highlight-line-width: 1;
170
+ --bizy-heat-map-chart-y-highlight-line-style: solid;
165
171
 
166
172
  --bizy-input-background-color: #fff;
167
173
  --bizy-input-focus-color: var(--bizy-info-color);