genesys-spark 4.65.1 → 4.66.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/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -44,10 +44,10 @@ declare function loadSparkFonts(): Promise<void>;
|
|
|
44
44
|
* application bootstrap if it rejects. Its primary use should be for logging
|
|
45
45
|
* unexpected failures.
|
|
46
46
|
*/
|
|
47
|
-
declare function registerSparkComponents(opts
|
|
47
|
+
declare function registerSparkComponents(opts?: registerOptions): Promise<void>;
|
|
48
48
|
/**
|
|
49
49
|
* TODO
|
|
50
50
|
*/
|
|
51
|
-
declare function registerSparkChartComponents(opts
|
|
51
|
+
declare function registerSparkChartComponents(opts?: registerOptions): Promise<void>;
|
|
52
52
|
|
|
53
53
|
export { intl as Intl, loadSparkFonts, registerSparkChartComponents, registerSparkComponents };
|
package/dist/index.js
CHANGED
|
@@ -196,8 +196,8 @@ var intl = /*#__PURE__*/Object.freeze({
|
|
|
196
196
|
relativeTimeFormat: relativeTimeFormat
|
|
197
197
|
});
|
|
198
198
|
|
|
199
|
-
const COMPONENT_ASSET_PREFIX = "/spark-components/build-assets/4.
|
|
200
|
-
const CHART_COMPONENT_ASSET_PREFIX = "/spark-components/build-assets/4.
|
|
199
|
+
const COMPONENT_ASSET_PREFIX = "/spark-components/build-assets/4.66.0-283/genesys-webcomponents/";
|
|
200
|
+
const CHART_COMPONENT_ASSET_PREFIX = "/spark-components/build-assets/4.66.0-283/chart/genesys-chart-webcomponents/";
|
|
201
201
|
function loadSparkFonts() {
|
|
202
202
|
const fontOrigin = getFontOrigin();
|
|
203
203
|
const FONTS = {
|