@progress/kendo-vue-charts
Version:
25 lines (24 loc) • 758 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { chartBaseTheme as d, chartTheme as o, deepExtend as m } from "@progress/kendo-charts";
const c = (e, p, h) => {
const t = d();
if (typeof document == "undefined") {
e.dispatch({ type: "push", payload: t });
return;
}
let a = {};
try {
a = o(h);
} finally {
e.dispatch({ type: "push", payload: m(t, a) }), p();
}
};
export {
c as loadTheme
};