genesys-spark-chart-components 4.117.1 → 4.119.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.
- package/dist/cjs/{color-palette-bd94968f.js → color-palette-f6443e0c.js} +5 -7
- package/dist/cjs/gux-chart-column-beta.cjs.entry.js +1 -1
- package/dist/cjs/gux-chart-donut-beta.cjs.entry.js +1 -1
- package/dist/cjs/gux-chart-line-beta.cjs.entry.js +1 -1
- package/dist/cjs/gux-chart-pie-beta.cjs.entry.js +1 -1
- package/dist/cjs/gux-chart-scatter-plot-beta.cjs.entry.js +1 -1
- package/dist/cjs/gux-visualization-beta.cjs.entry.js +521 -1247
- package/dist/esm/{color-palette-2c4363f3.js → color-palette-7ac8a54e.js} +5 -7
- package/dist/esm/gux-chart-column-beta.entry.js +1 -1
- package/dist/esm/gux-chart-donut-beta.entry.js +1 -1
- package/dist/esm/gux-chart-line-beta.entry.js +1 -1
- package/dist/esm/gux-chart-pie-beta.entry.js +1 -1
- package/dist/esm/gux-chart-scatter-plot-beta.entry.js +1 -1
- package/dist/esm/gux-visualization-beta.entry.js +521 -1247
- package/dist/genesys-chart-webcomponents/genesys-chart-webcomponents.esm.js +1 -1
- package/dist/genesys-chart-webcomponents/{p-585ea609.entry.js → p-18cc7993.entry.js} +1 -1
- package/dist/genesys-chart-webcomponents/{p-de4b7d31.entry.js → p-52c0b734.entry.js} +1 -1
- package/dist/genesys-chart-webcomponents/{p-52ae245e.entry.js → p-6b6034dc.entry.js} +1 -1
- package/dist/genesys-chart-webcomponents/{p-9737d797.entry.js → p-76e11cad.entry.js} +1 -1
- package/dist/genesys-chart-webcomponents/{p-124a46e1.entry.js → p-9c4197d7.entry.js} +1 -1
- package/dist/genesys-chart-webcomponents/p-aefbcea6.entry.js +11 -0
- package/dist/genesys-chart-webcomponents/{p-eb2043dc.js → p-f652102e.js} +1 -1
- package/dist/stencil-wrapper.js +1 -1
- package/dist/types/stencil-wrapper.d.ts +1 -1
- package/dist/types/utils/tracking/usage.d.ts +6 -2
- package/package.json +5 -7
- package/dist/genesys-chart-webcomponents/p-b73c68d1.entry.js +0 -11
|
@@ -1 +1 @@
|
|
|
1
|
-
const t="4.
|
|
1
|
+
const t="4.119.0",e=20,n=3e4,o=[function(t){const[e,n,...o]=t.split(".");return{name:"spark-library",metadata:{fullVersion:`${e}.${n}.${o.join(".")}`,majorVersion:e,minorVersion:`${e}.${n}`}}}(t)];function a(){const t=window.newrelic;if(t){for(let s=0;s<e;s++){if(0==o.length)return void setTimeout(a,n);const e=o.shift();t.addPageAction(e.name,Object.assign(Object.assign({},e.metadata),{queueDepth:o.length}))}setTimeout(a,n)}}let s=!1;function i(e,n){window.newrelic&&(s||(s=!0,a()),document.contains(e)&&o.push({name:"spark-component",metadata:Object.assign(Object.assign({},n),{component:e.tagName.toLowerCase(),version:t})}))}const r=["#203B73","#1DA8B3","#75A8FF","#8452CF","#B5B5EB","#CC3EBE","#5E5782","#FF8FDD","#868C1E","#DDD933"],c="#596373",m="#596373";export{c as D,r as V,m as a,i as t}
|
package/dist/stencil-wrapper.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { defineCustomElements } from '../dist/loader';
|
|
9
9
|
// Value templated out during build process (see scripts/wrap-stencil.js)
|
|
10
|
-
export const CHART_COMPONENT_ASSETS_PATH = '/spark-components/build-assets/4.
|
|
10
|
+
export const CHART_COMPONENT_ASSETS_PATH = '/spark-components/build-assets/4.119.0-544/chart/genesys-chart-webcomponents/';
|
|
11
11
|
// Default domain to load assets from
|
|
12
12
|
const DEFAULT_DOMAIN = 'app.mypurecloud.com';
|
|
13
13
|
// List of Genesys UI domains
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const CHART_COMPONENT_ASSETS_PATH = "/spark-components/build-assets/4.
|
|
1
|
+
export declare const CHART_COMPONENT_ASSETS_PATH = "/spark-components/build-assets/4.119.0-544/chart/genesys-chart-webcomponents/";
|
|
2
2
|
export declare function registerElements(): void;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
interface NewRelicBrowser {
|
|
2
|
+
addPageAction: (name: string, metadata: {
|
|
3
|
+
[key: string]: string | number;
|
|
4
|
+
}) => void;
|
|
5
|
+
}
|
|
2
6
|
interface LibraryEvent {
|
|
3
7
|
name: 'spark-library';
|
|
4
8
|
metadata: {
|
|
@@ -21,7 +25,7 @@ export declare function trackAction(element: HTMLElement, action: string, action
|
|
|
21
25
|
export declare function getVersionEvent(packageInfoVersion: string): LibraryEvent;
|
|
22
26
|
declare global {
|
|
23
27
|
interface Window {
|
|
24
|
-
newrelic?:
|
|
28
|
+
newrelic?: NewRelicBrowser;
|
|
25
29
|
}
|
|
26
30
|
}
|
|
27
31
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genesys-spark-chart-components",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.119.0",
|
|
4
4
|
"description": "Common chart webcomponents",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/stencil-wrapper.js",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"types": "dist/types/index.d.ts",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@redsift/d3-rs-intl": "^0.4.0",
|
|
56
|
-
"vega": "5.
|
|
56
|
+
"vega": "5.31.0",
|
|
57
57
|
"vega-embed": "6.29.0",
|
|
58
58
|
"vega-lite": "5.23.0"
|
|
59
59
|
},
|
|
@@ -64,16 +64,15 @@
|
|
|
64
64
|
"@stencil/react-output-target": "^0.5.3",
|
|
65
65
|
"@stencil/sass": "^3.0.12",
|
|
66
66
|
"@types/jest": "^29.5.14",
|
|
67
|
-
"@types/new-relic-browser": "^0.1118.2",
|
|
68
67
|
"@types/puppeteer": "^5.4.7",
|
|
69
68
|
"axe-core": "^4.10.2",
|
|
70
69
|
"axe-live": "^1.0.1",
|
|
71
|
-
"eslint": "^9.20.
|
|
70
|
+
"eslint": "^9.20.1",
|
|
72
71
|
"eslint-config-genesys-spark-components": "file:../../shared-configs/eslint-config-genesys-spark-components",
|
|
73
72
|
"file-loader": "^6.2.0",
|
|
74
73
|
"genesys-spark-tokens": "file:../genesys-spark-tokens",
|
|
75
74
|
"glob": "^11.0.1",
|
|
76
|
-
"globals": "^15.
|
|
75
|
+
"globals": "^15.15.0",
|
|
77
76
|
"handlebars": "^4.7.8",
|
|
78
77
|
"inquirer": "^12.4.1",
|
|
79
78
|
"jest": "^29.7.0",
|
|
@@ -82,7 +81,6 @@
|
|
|
82
81
|
"jest-environment-node": "^29.7.0",
|
|
83
82
|
"jest-junit": "^16.0.0",
|
|
84
83
|
"jest-silent-reporter": "^0.6.0",
|
|
85
|
-
"jsdom": "^25.0.1",
|
|
86
84
|
"lint-staged": "^15.4.3",
|
|
87
85
|
"node-fetch": "^3.3.2",
|
|
88
86
|
"npm-run-all": "^4.1.5",
|
|
@@ -99,7 +97,7 @@
|
|
|
99
97
|
"stylelint": "^16.14.1",
|
|
100
98
|
"stylelint-config-genesys-spark-components": "file:../../shared-configs/stylelint-config-genesys-spark-components",
|
|
101
99
|
"stylelint-config-html": "^1.1.0",
|
|
102
|
-
"stylelint-config-recess-order": "^
|
|
100
|
+
"stylelint-config-recess-order": "^6.0.0",
|
|
103
101
|
"stylelint-config-standard": "^36.0.1",
|
|
104
102
|
"stylelint-scss": "^6.11.0",
|
|
105
103
|
"ts-loader": "^9.5.2",
|