@htmlbricks/hb-downloader 0.68.9 → 0.68.11

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/manifest.json CHANGED
@@ -66,7 +66,6 @@
66
66
  "type": "string"
67
67
  },
68
68
  "show": {
69
- "const": true,
70
69
  "type": "boolean"
71
70
  }
72
71
  },
@@ -219,7 +218,7 @@
219
218
  }
220
219
  }
221
220
  ],
222
- "iifeIntegrity": "sha384-lGWJhLV/MAxYIc5c/fK3TaRZwmOZ6pZhp7uCm9BVJWA3Xtk3FGhhvzs77d5zJkRF",
221
+ "iifeIntegrity": "sha384-9S6m839qOWg65lpq8Nv39OygdarThBL6m7cXCnNHSHbElvAKwJVwrU2ZikIfSMFO",
223
222
  "dependencies": [
224
223
  {
225
224
  "name": "hb-dialog",
@@ -245,5 +244,5 @@
245
244
  "size": {},
246
245
  "iifePath": "main.iife.js",
247
246
  "repoName": "@htmlbricks/hb-downloader",
248
- "version": "0.68.9"
247
+ "version": "0.68.11"
249
248
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-downloader",
3
- "version": "0.68.9",
3
+ "version": "0.68.11",
4
4
  "contributors": [],
5
5
  "description": "Opens `hb-dialog` while `uri` is set and downloads the resource with `XMLHttpRequest` as a blob: optional JSON `headers`, inferred or explicit `targetfilename`, `Content-Disposition` parsing when exposed by CORS, progress bar from `onprogress`, then triggers a browser file save. Dispatches `downloadComplete` or `downloadError` (with `downloadid`) and propagates `modalShow`; clears/aborts when the dialog closes.",
6
6
  "licenses": [
@@ -14,5 +14,5 @@ export type Component = {
14
14
  export type Events = {
15
15
  downloadError: { downloaded: boolean; id: string; error: Error };
16
16
  downloadComplete: { downloaded: boolean; id: string };
17
- modalShow: { id: string; show: true };
17
+ modalShow: { id: string; show: boolean };
18
18
  };
@@ -64,7 +64,6 @@
64
64
  "type": "string"
65
65
  },
66
66
  "show": {
67
- "const": true,
68
67
  "type": "boolean"
69
68
  }
70
69
  },