vis-core 0.28.13 → 0.28.15

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.
@@ -0,0 +1,2 @@
1
+ export declare function encodeArrayBufferToUrlSafeBase64(arrayBuffer: ArrayBuffer): string;
2
+ export declare function decodeUrlSafeBase64ToArrayBuffer(str: string): ArrayBuffer;
@@ -3,5 +3,6 @@ type DownloadProgress = {
3
3
  transferredBytes: number;
4
4
  totalBytes: number;
5
5
  };
6
- declare const _default: (url: string, onDownloadProgress?: (progress: DownloadProgress) => void, gizp?: boolean) => Promise<any>;
6
+ export declare const isGzip: (url: string) => boolean;
7
+ declare const _default: (url: string, onDownloadProgress?: (progress: DownloadProgress) => void, gzip?: (url: string) => boolean) => Promise<any>;
7
8
  export default _default;
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "0.28.13";
1
+ declare const _default: "0.28.15";
2
2
  export default _default;
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "vis-core",
3
- "version": "0.28.13",
3
+ "version": "0.28.15",
4
4
  "scripts": {
5
5
  "start": "npm run version && PORT=5173 bundler-dev",
6
- "build:site": "npm run version && bundler",
6
+ "build:site": "npm run version && PUBLIC_EXCLUDE=true bundler",
7
7
  "build:lib": "npm run version && PUBLIC_EXCLUDE=true BUILD_LIBRARY=src/sdk/index.ts CSS_EXTRACT=false bundler && npm run build:type",
8
8
  "build:type": "BUILD_LIBRARY=src/sdk/index.ts bundler-type",
9
9
  "preview": "bundler-preview",