@datarailsshared/dr_renderer 1.2.94 → 1.2.95
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/package.json +1 -1
- package/src/pivottable.js +5 -1
package/package.json
CHANGED
package/src/pivottable.js
CHANGED
|
@@ -926,7 +926,8 @@ let initPivotTable = function($, window, document) {
|
|
|
926
926
|
return PivotData;
|
|
927
927
|
|
|
928
928
|
})();
|
|
929
|
-
|
|
929
|
+
|
|
930
|
+
$.pivotUtilities = {
|
|
930
931
|
aggregatorTemplates: aggregatorTemplates,
|
|
931
932
|
aggregators: aggregators,
|
|
932
933
|
renderers: renderers,
|
|
@@ -938,6 +939,9 @@ let initPivotTable = function($, window, document) {
|
|
|
938
939
|
PivotData: PivotData,
|
|
939
940
|
errorHandling: errorHandling,
|
|
940
941
|
};
|
|
942
|
+
if (window.$) {
|
|
943
|
+
window.$.pivotUtilities = $.pivotUtilities
|
|
944
|
+
}
|
|
941
945
|
|
|
942
946
|
/*
|
|
943
947
|
Default Renderer for hierarchical table layout
|