genesys-spark-chart-components 4.201.1 → 4.203.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 (26) hide show
  1. package/dist/cjs/{color-palette-BtjJrL5z.js → color-palette-CU1chhBt.js} +1 -1
  2. package/dist/cjs/gux-chart-column-beta.cjs.entry.js +1 -1
  3. package/dist/cjs/gux-chart-donut-beta.cjs.entry.js +1 -1
  4. package/dist/cjs/gux-chart-line-beta.cjs.entry.js +1 -1
  5. package/dist/cjs/gux-chart-pie-beta.cjs.entry.js +1 -1
  6. package/dist/cjs/gux-chart-scatter-plot-beta.cjs.entry.js +1 -1
  7. package/dist/cjs/gux-visualization-beta.cjs.entry.js +438 -299
  8. package/dist/collection/components/beta/gux-visualization/gux-visualization.js +2 -2
  9. package/dist/collection/test/setupTests.js +0 -2
  10. package/dist/esm/{color-palette-B30G7i3D.js → color-palette-DyPalgli.js} +1 -1
  11. package/dist/esm/gux-chart-column-beta.entry.js +1 -1
  12. package/dist/esm/gux-chart-donut-beta.entry.js +1 -1
  13. package/dist/esm/gux-chart-line-beta.entry.js +1 -1
  14. package/dist/esm/gux-chart-pie-beta.entry.js +1 -1
  15. package/dist/esm/gux-chart-scatter-plot-beta.entry.js +1 -1
  16. package/dist/esm/gux-visualization-beta.entry.js +438 -299
  17. package/dist/genesys-chart-webcomponents/genesys-chart-webcomponents.esm.js +1 -1
  18. package/dist/genesys-chart-webcomponents/p-0613c0d5.entry.js +1 -0
  19. package/dist/genesys-chart-webcomponents/{p-7c5e92ee.entry.js → p-197db998.entry.js} +3 -3
  20. package/dist/genesys-chart-webcomponents/{p-a247e181.entry.js → p-39f1db9c.entry.js} +1 -1
  21. package/dist/genesys-chart-webcomponents/{p-3db92e2b.entry.js → p-87dd0b8f.entry.js} +1 -1
  22. package/dist/genesys-chart-webcomponents/{p-B30G7i3D.js → p-DyPalgli.js} +1 -1
  23. package/dist/genesys-chart-webcomponents/{p-a4cd5603.entry.js → p-a7d9fe74.entry.js} +1 -1
  24. package/dist/genesys-chart-webcomponents/{p-bcb35728.entry.js → p-da9e8b8c.entry.js} +1 -1
  25. package/package.json +13 -13
  26. package/dist/genesys-chart-webcomponents/p-95f28294.entry.js +0 -1
@@ -2,7 +2,7 @@
2
2
  import { h } from "@stencil/core";
3
3
  import embed from "vega-embed";
4
4
  import { time } from "@redsift/d3-rs-intl";
5
- import { sparkIntl } from "genesys-spark-utils";
5
+ import { sparkIntl } from "@genesys/genesys-spark-utils";
6
6
  import { trackComponent } from "../../../utils/tracking/usage";
7
7
  import * as VisualizationColorUtil from "../../../utils/theme/color-palette";
8
8
  export class GuxVisualization {
@@ -71,7 +71,7 @@ export class GuxVisualization {
71
71
  this.chartComponentReady.emit();
72
72
  }
73
73
  render() {
74
- return (h("div", { key: '26f69e7d9a719f90fb87abdfaf5cf7c135de8750', class: "gux-chart-container", ref: el => (this.chartContainer = el) }));
74
+ return (h("div", { key: 'e449ffbfe1bd6f3c5bd1aebba11e804b4273f7da', class: "gux-chart-container", ref: el => (this.chartContainer = el) }));
75
75
  }
76
76
  static get is() { return "gux-visualization-beta"; }
77
77
  static get encapsulation() { return "shadow"; }
@@ -1,5 +1,3 @@
1
- /* eslint-env jest, node */
2
-
3
1
  global.beforeEach(() => {
4
2
  jest.spyOn(global.Math, 'random').mockReturnValue(0.5);
5
3
  });
@@ -1,4 +1,4 @@
1
- const version = "4.201.1";
1
+ const version = "4.203.0";
2
2
  var packageInfo = {
3
3
  version: version};
4
4
 
@@ -1,5 +1,5 @@
1
1
  import { r as registerInstance, h, g as getElement } from './index-WPqt-wWR.js';
2
- import { D as DEFAULT_LABEL_COLOR, a as DEFAULT_DOMAIN_COLOR, V as VISUALIZATION_COLORS, t as trackComponent } from './color-palette-B30G7i3D.js';
2
+ import { D as DEFAULT_LABEL_COLOR, a as DEFAULT_DOMAIN_COLOR, V as VISUALIZATION_COLORS, t as trackComponent } from './color-palette-DyPalgli.js';
3
3
  import { l as logError } from './log-error-nsqlWzyl.js';
4
4
 
5
5
  const guxChartColumnCss = "gux-visualization-beta{height:fit-content;color:#2e394c;}gux-visualization-beta .mark-rect.layer_0_marks path{fill:url(#diagonalHatch0)}gux-visualization-beta{}gux-visualization-beta .mark-rect.layer_1_marks path{fill:#1da8b3}";
@@ -1,5 +1,5 @@
1
1
  import { r as registerInstance, h, g as getElement } from './index-WPqt-wWR.js';
2
- import { V as VISUALIZATION_COLORS, t as trackComponent } from './color-palette-B30G7i3D.js';
2
+ import { V as VISUALIZATION_COLORS, t as trackComponent } from './color-palette-DyPalgli.js';
3
3
  import { l as logError } from './log-error-nsqlWzyl.js';
4
4
 
5
5
  const guxChartDonutCss = "gux-visualization-beta{height:fit-content;color:#2e394c}";
@@ -1,5 +1,5 @@
1
1
  import { r as registerInstance, h, g as getElement } from './index-WPqt-wWR.js';
2
- import { D as DEFAULT_LABEL_COLOR, a as DEFAULT_DOMAIN_COLOR, V as VISUALIZATION_COLORS, t as trackComponent } from './color-palette-B30G7i3D.js';
2
+ import { D as DEFAULT_LABEL_COLOR, a as DEFAULT_DOMAIN_COLOR, V as VISUALIZATION_COLORS, t as trackComponent } from './color-palette-DyPalgli.js';
3
3
  import { l as logError } from './log-error-nsqlWzyl.js';
4
4
 
5
5
  const guxChartLineCss = "gux-visualization-beta{height:fit-content;color:#2e394c}";
@@ -1,5 +1,5 @@
1
1
  import { r as registerInstance, h, g as getElement } from './index-WPqt-wWR.js';
2
- import { V as VISUALIZATION_COLORS, t as trackComponent } from './color-palette-B30G7i3D.js';
2
+ import { V as VISUALIZATION_COLORS, t as trackComponent } from './color-palette-DyPalgli.js';
3
3
  import { l as logError } from './log-error-nsqlWzyl.js';
4
4
 
5
5
  const guxChartPieCss = "gux-visualization-beta{height:fit-content;color:#2e394c}";
@@ -1,5 +1,5 @@
1
1
  import { r as registerInstance, h, g as getElement } from './index-WPqt-wWR.js';
2
- import { D as DEFAULT_LABEL_COLOR, a as DEFAULT_DOMAIN_COLOR, V as VISUALIZATION_COLORS, t as trackComponent } from './color-palette-B30G7i3D.js';
2
+ import { D as DEFAULT_LABEL_COLOR, a as DEFAULT_DOMAIN_COLOR, V as VISUALIZATION_COLORS, t as trackComponent } from './color-palette-DyPalgli.js';
3
3
  import { l as logError } from './log-error-nsqlWzyl.js';
4
4
 
5
5
  const guxChartScatterPlotCss = "gux-visualization-beta{height:fit-content;color:#2e394c}";