@hpcc-js/dgrid 3.1.0 → 3.2.1
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.js +503 -495
- package/dist/index.js.map +1 -7
- package/dist/index.umd.cjs +3 -0
- package/dist/index.umd.cjs.map +1 -0
- package/package.json +16 -12
- package/src/RowFormatter.ts +15 -8
- package/src/__package__.ts +1 -1
- package/src/dgrid-shim.ts +2 -2
- package/src/i18n.js +2 -1
- package/types/__package__.d.ts +1 -1
- package/types/dgrid-shim.d.ts +1 -1
package/src/dgrid-shim.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as dgrid_shim from "@hpcc-js/dgrid-shim";
|
|
2
2
|
|
|
3
3
|
if (!globalThis["@hpcc-js/dgrid-shim"]) {
|
|
4
|
-
console.error("dgrid-shim not loaded, please add `<script src=\"https://cdn.jsdelivr.net/npm/@hpcc-js/dgrid-shim
|
|
4
|
+
console.error("dgrid-shim not loaded, please add `<script src=\"https://cdn.jsdelivr.net/npm/@hpcc-js/dgrid-shim/dist/index.min.js\"></script>` or similar to your HTML file");
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
export const Deferred = globalThis["@hpcc-js/dgrid-shim"].Deferred as typeof dgrid_shim.Deferred;
|
package/src/i18n.js
CHANGED
package/types/__package__.d.ts
CHANGED
package/types/dgrid-shim.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as dgrid_shim from "@hpcc-js/dgrid-shim";
|
|
2
2
|
export declare const Deferred: typeof dgrid_shim.Deferred;
|
|
3
3
|
export declare const Memory: typeof dgrid_shim.Memory;
|
|
4
4
|
export declare const QueryResults: typeof dgrid_shim.QueryResults;
|