qapture2 0.7.4 → 0.7.5

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.
@@ -1785,6 +1785,7 @@ var STR = {
1785
1785
  redraw_notice: "This is a redraw of the page, not a real photo.",
1786
1786
  redraw_action: "Use real screenshots",
1787
1787
  redraw_no_engine: "This browser cannot photograph a tab, so charts and canvases may come out wrong. Open the app in Chrome, Edge or Brave for true screenshots.",
1788
+ fab_title: "Qapture \u2014 click to open, drag to move it out of the way",
1788
1789
  exact_on: "Pixel-exact screenshots on",
1789
1790
  exact_off: "Back to redrawn screenshots",
1790
1791
  exact_declined: "Staying on redrawn screenshots",
@@ -1982,6 +1983,7 @@ var STR = {
1982
1983
  redraw_notice: "\u0647\u0630\u0647 \u0625\u0639\u0627\u062F\u0629 \u0631\u0633\u0645 \u0644\u0644\u0635\u0641\u062D\u0629\u060C \u0648\u0644\u064A\u0633\u062A \u0635\u0648\u0631\u0629 \u062D\u0642\u064A\u0642\u064A\u0629.",
1983
1984
  redraw_action: "\u0627\u0633\u062A\u062E\u062F\u0645 \u0644\u0642\u0637\u0627\u062A \u062D\u0642\u064A\u0642\u064A\u0629",
1984
1985
  redraw_no_engine: "\u0644\u0627 \u064A\u0633\u062A\u0637\u064A\u0639 \u0647\u0630\u0627 \u0627\u0644\u0645\u062A\u0635\u0641\u062D \u062A\u0635\u0648\u064A\u0631 \u0627\u0644\u062A\u0628\u0648\u064A\u0628\u060C \u0644\u0630\u0627 \u0642\u062F \u062A\u0638\u0647\u0631 \u0627\u0644\u0645\u062E\u0637\u0637\u0627\u062A \u0648\u0627\u0644\u0644\u0648\u062D\u0627\u062A \u0628\u0634\u0643\u0644 \u062E\u0627\u0637\u0626. \u0627\u0641\u062A\u062D \u0627\u0644\u062A\u0637\u0628\u064A\u0642 \u0641\u064A Chrome \u0623\u0648 Edge \u0623\u0648 Brave \u0644\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u0649 \u0644\u0642\u0637\u0627\u062A \u062D\u0642\u064A\u0642\u064A\u0629.",
1986
+ fab_title: "Qapture \u2014 \u0627\u0636\u063A\u0637 \u0644\u0644\u0641\u062A\u062D\u060C \u0648\u0627\u0633\u062D\u0628 \u0644\u062A\u062D\u0631\u064A\u0643\u0647 \u0645\u0646 \u0645\u0643\u0627\u0646\u0647",
1985
1987
  exact_on: "\u062A\u0645 \u062A\u0641\u0639\u064A\u0644 \u0627\u0644\u0644\u0642\u0637\u0627\u062A \u0627\u0644\u0645\u0637\u0627\u0628\u0642\u0629",
1986
1988
  exact_off: "\u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0644\u0642\u0637\u0627\u062A \u0627\u0644\u0645\u064F\u0639\u0627\u062F \u0631\u0633\u0645\u0647\u0627",
1987
1989
  exact_declined: "\u0633\u0646\u0628\u0642\u0649 \u0639\u0644\u0649 \u0627\u0644\u0644\u0642\u0637\u0627\u062A \u0627\u0644\u0645\u064F\u0639\u0627\u062F \u0631\u0633\u0645\u0647\u0627",
@@ -5306,29 +5308,6 @@ function Icon({
5306
5308
  function renderSvgElement(tag, attrs, key) {
5307
5309
  return React__default.default.createElement(tag, { key, ...attrs });
5308
5310
  }
5309
- function isCoarsePointer() {
5310
- if (typeof window === "undefined") return false;
5311
- try {
5312
- if (window.matchMedia && window.matchMedia("(pointer: coarse)").matches) return true;
5313
- } catch {
5314
- }
5315
- return typeof navigator !== "undefined" && (navigator.maxTouchPoints || 0) > 0;
5316
- }
5317
- function useCoarsePointer() {
5318
- const [coarse, setCoarse] = React.useState(() => isCoarsePointer());
5319
- React.useEffect(() => {
5320
- if (typeof window === "undefined" || !window.matchMedia) return;
5321
- const mq = window.matchMedia("(pointer: coarse)");
5322
- const on = () => setCoarse(isCoarsePointer());
5323
- if (mq.addEventListener) mq.addEventListener("change", on);
5324
- else if (mq.addListener) mq.addListener(on);
5325
- return () => {
5326
- if (mq.removeEventListener) mq.removeEventListener("change", on);
5327
- else if (mq.removeListener) mq.removeListener(on);
5328
- };
5329
- }, []);
5330
- return coarse;
5331
- }
5332
5311
  var DEFAULT_LEFT = "calc(1.25rem + env(safe-area-inset-left))";
5333
5312
  var DEFAULT_BOTTOM = "calc(5rem + env(safe-area-inset-bottom))";
5334
5313
  var FAB_SIZE_PX = 56;
@@ -5385,8 +5364,7 @@ function clampFabPos(p, w = FAB_SIZE_PX, h = FAB_SIZE_PX) {
5385
5364
  };
5386
5365
  }
5387
5366
  function QaFab() {
5388
- const { isOpen, setIsOpen, notes, captureActive, namespace } = useQa();
5389
- const coarse = useCoarsePointer();
5367
+ const { isOpen, setIsOpen, notes, captureActive, namespace, t } = useQa();
5390
5368
  const [pos, setPos] = React.useState(() => loadFabPos(namespace));
5391
5369
  const dragRef = React.useRef(null);
5392
5370
  const didDragRef = React.useRef(false);
@@ -5404,6 +5382,7 @@ function QaFab() {
5404
5382
  if (captureActive) return null;
5405
5383
  const onPointerDown = (e) => {
5406
5384
  if (dragRef.current) return;
5385
+ if (e.pointerType === "mouse" && e.button !== 0) return;
5407
5386
  didDragRef.current = false;
5408
5387
  const target = e.currentTarget;
5409
5388
  const rect = target.getBoundingClientRect();
@@ -5465,7 +5444,7 @@ function QaFab() {
5465
5444
  }
5466
5445
  setIsOpen(!isOpen);
5467
5446
  };
5468
- const applied = coarse && pos ? clampFabPos(pos) : null;
5447
+ const applied = pos ? clampFabPos(pos) : null;
5469
5448
  const fabStyle = {
5470
5449
  left: applied ? `${applied.left}px` : DEFAULT_LEFT,
5471
5450
  bottom: applied ? `${applied.bottom}px` : DEFAULT_BOTTOM,
@@ -5480,13 +5459,13 @@ function QaFab() {
5480
5459
  "data-qa-overlay": "true",
5481
5460
  dir: "ltr",
5482
5461
  onClick: handleClick,
5483
- onPointerDown: coarse ? onPointerDown : void 0,
5484
- onPointerMove: coarse ? onPointerMove : void 0,
5485
- onPointerUp: coarse ? onPointerUp : void 0,
5486
- onPointerCancel: coarse ? onPointerCancel : void 0,
5462
+ onPointerDown,
5463
+ onPointerMove,
5464
+ onPointerUp,
5465
+ onPointerCancel,
5487
5466
  "aria-label": "Qapture \u2014 testing notes",
5488
- title: "Qapture",
5489
- className: `qa-fixed qa-flex qa-items-center qa-justify-center qa-rounded-full qa-bg-accent qa-elev-2 qa-print-hidden qa-fab-btn${coarse ? " qa-touch-none" : ""}`,
5467
+ title: t("fab_title"),
5468
+ className: "qa-fixed qa-flex qa-items-center qa-justify-center qa-rounded-full qa-bg-accent qa-elev-2 qa-print-hidden qa-fab-btn qa-touch-none",
5490
5469
  style: fabStyle,
5491
5470
  children: [
5492
5471
  !isOpen && /* @__PURE__ */ jsxRuntime.jsx(
@@ -7803,6 +7782,29 @@ function GuideSection() {
7803
7782
  ))
7804
7783
  ] });
7805
7784
  }
7785
+ function isCoarsePointer() {
7786
+ if (typeof window === "undefined") return false;
7787
+ try {
7788
+ if (window.matchMedia && window.matchMedia("(pointer: coarse)").matches) return true;
7789
+ } catch {
7790
+ }
7791
+ return typeof navigator !== "undefined" && (navigator.maxTouchPoints || 0) > 0;
7792
+ }
7793
+ function useCoarsePointer() {
7794
+ const [coarse, setCoarse] = React.useState(() => isCoarsePointer());
7795
+ React.useEffect(() => {
7796
+ if (typeof window === "undefined" || !window.matchMedia) return;
7797
+ const mq = window.matchMedia("(pointer: coarse)");
7798
+ const on = () => setCoarse(isCoarsePointer());
7799
+ if (mq.addEventListener) mq.addEventListener("change", on);
7800
+ else if (mq.addListener) mq.addListener(on);
7801
+ return () => {
7802
+ if (mq.removeEventListener) mq.removeEventListener("change", on);
7803
+ else if (mq.removeListener) mq.removeListener(on);
7804
+ };
7805
+ }, []);
7806
+ return coarse;
7807
+ }
7806
7808
  var TABS = [
7807
7809
  { key: "notes", labelKey: "tab_notes", icon: "StickyNote" },
7808
7810
  { key: "logins", labelKey: "tab_logins", icon: "KeyRound" },
@@ -10099,5 +10101,5 @@ function Qapture({ config }) {
10099
10101
  exports.Qapture = Qapture;
10100
10102
  exports.deleteQaDatabase = deleteQaDatabase;
10101
10103
  exports.initQaStudio = initQaStudio;
10102
- //# sourceMappingURL=chunk-7WHQBMVP.cjs.map
10103
- //# sourceMappingURL=chunk-7WHQBMVP.cjs.map
10104
+ //# sourceMappingURL=chunk-COQKFGKZ.cjs.map
10105
+ //# sourceMappingURL=chunk-COQKFGKZ.cjs.map
@@ -1778,6 +1778,7 @@ var STR = {
1778
1778
  redraw_notice: "This is a redraw of the page, not a real photo.",
1779
1779
  redraw_action: "Use real screenshots",
1780
1780
  redraw_no_engine: "This browser cannot photograph a tab, so charts and canvases may come out wrong. Open the app in Chrome, Edge or Brave for true screenshots.",
1781
+ fab_title: "Qapture \u2014 click to open, drag to move it out of the way",
1781
1782
  exact_on: "Pixel-exact screenshots on",
1782
1783
  exact_off: "Back to redrawn screenshots",
1783
1784
  exact_declined: "Staying on redrawn screenshots",
@@ -1975,6 +1976,7 @@ var STR = {
1975
1976
  redraw_notice: "\u0647\u0630\u0647 \u0625\u0639\u0627\u062F\u0629 \u0631\u0633\u0645 \u0644\u0644\u0635\u0641\u062D\u0629\u060C \u0648\u0644\u064A\u0633\u062A \u0635\u0648\u0631\u0629 \u062D\u0642\u064A\u0642\u064A\u0629.",
1976
1977
  redraw_action: "\u0627\u0633\u062A\u062E\u062F\u0645 \u0644\u0642\u0637\u0627\u062A \u062D\u0642\u064A\u0642\u064A\u0629",
1977
1978
  redraw_no_engine: "\u0644\u0627 \u064A\u0633\u062A\u0637\u064A\u0639 \u0647\u0630\u0627 \u0627\u0644\u0645\u062A\u0635\u0641\u062D \u062A\u0635\u0648\u064A\u0631 \u0627\u0644\u062A\u0628\u0648\u064A\u0628\u060C \u0644\u0630\u0627 \u0642\u062F \u062A\u0638\u0647\u0631 \u0627\u0644\u0645\u062E\u0637\u0637\u0627\u062A \u0648\u0627\u0644\u0644\u0648\u062D\u0627\u062A \u0628\u0634\u0643\u0644 \u062E\u0627\u0637\u0626. \u0627\u0641\u062A\u062D \u0627\u0644\u062A\u0637\u0628\u064A\u0642 \u0641\u064A Chrome \u0623\u0648 Edge \u0623\u0648 Brave \u0644\u0644\u062D\u0635\u0648\u0644 \u0639\u0644\u0649 \u0644\u0642\u0637\u0627\u062A \u062D\u0642\u064A\u0642\u064A\u0629.",
1979
+ fab_title: "Qapture \u2014 \u0627\u0636\u063A\u0637 \u0644\u0644\u0641\u062A\u062D\u060C \u0648\u0627\u0633\u062D\u0628 \u0644\u062A\u062D\u0631\u064A\u0643\u0647 \u0645\u0646 \u0645\u0643\u0627\u0646\u0647",
1978
1980
  exact_on: "\u062A\u0645 \u062A\u0641\u0639\u064A\u0644 \u0627\u0644\u0644\u0642\u0637\u0627\u062A \u0627\u0644\u0645\u0637\u0627\u0628\u0642\u0629",
1979
1981
  exact_off: "\u0627\u0644\u0639\u0648\u062F\u0629 \u0625\u0644\u0649 \u0627\u0644\u0644\u0642\u0637\u0627\u062A \u0627\u0644\u0645\u064F\u0639\u0627\u062F \u0631\u0633\u0645\u0647\u0627",
1980
1982
  exact_declined: "\u0633\u0646\u0628\u0642\u0649 \u0639\u0644\u0649 \u0627\u0644\u0644\u0642\u0637\u0627\u062A \u0627\u0644\u0645\u064F\u0639\u0627\u062F \u0631\u0633\u0645\u0647\u0627",
@@ -5299,29 +5301,6 @@ function Icon({
5299
5301
  function renderSvgElement(tag, attrs, key) {
5300
5302
  return React.createElement(tag, { key, ...attrs });
5301
5303
  }
5302
- function isCoarsePointer() {
5303
- if (typeof window === "undefined") return false;
5304
- try {
5305
- if (window.matchMedia && window.matchMedia("(pointer: coarse)").matches) return true;
5306
- } catch {
5307
- }
5308
- return typeof navigator !== "undefined" && (navigator.maxTouchPoints || 0) > 0;
5309
- }
5310
- function useCoarsePointer() {
5311
- const [coarse, setCoarse] = useState(() => isCoarsePointer());
5312
- useEffect(() => {
5313
- if (typeof window === "undefined" || !window.matchMedia) return;
5314
- const mq = window.matchMedia("(pointer: coarse)");
5315
- const on = () => setCoarse(isCoarsePointer());
5316
- if (mq.addEventListener) mq.addEventListener("change", on);
5317
- else if (mq.addListener) mq.addListener(on);
5318
- return () => {
5319
- if (mq.removeEventListener) mq.removeEventListener("change", on);
5320
- else if (mq.removeListener) mq.removeListener(on);
5321
- };
5322
- }, []);
5323
- return coarse;
5324
- }
5325
5304
  var DEFAULT_LEFT = "calc(1.25rem + env(safe-area-inset-left))";
5326
5305
  var DEFAULT_BOTTOM = "calc(5rem + env(safe-area-inset-bottom))";
5327
5306
  var FAB_SIZE_PX = 56;
@@ -5378,8 +5357,7 @@ function clampFabPos(p, w = FAB_SIZE_PX, h = FAB_SIZE_PX) {
5378
5357
  };
5379
5358
  }
5380
5359
  function QaFab() {
5381
- const { isOpen, setIsOpen, notes, captureActive, namespace } = useQa();
5382
- const coarse = useCoarsePointer();
5360
+ const { isOpen, setIsOpen, notes, captureActive, namespace, t } = useQa();
5383
5361
  const [pos, setPos] = useState(() => loadFabPos(namespace));
5384
5362
  const dragRef = useRef(null);
5385
5363
  const didDragRef = useRef(false);
@@ -5397,6 +5375,7 @@ function QaFab() {
5397
5375
  if (captureActive) return null;
5398
5376
  const onPointerDown = (e) => {
5399
5377
  if (dragRef.current) return;
5378
+ if (e.pointerType === "mouse" && e.button !== 0) return;
5400
5379
  didDragRef.current = false;
5401
5380
  const target = e.currentTarget;
5402
5381
  const rect = target.getBoundingClientRect();
@@ -5458,7 +5437,7 @@ function QaFab() {
5458
5437
  }
5459
5438
  setIsOpen(!isOpen);
5460
5439
  };
5461
- const applied = coarse && pos ? clampFabPos(pos) : null;
5440
+ const applied = pos ? clampFabPos(pos) : null;
5462
5441
  const fabStyle = {
5463
5442
  left: applied ? `${applied.left}px` : DEFAULT_LEFT,
5464
5443
  bottom: applied ? `${applied.bottom}px` : DEFAULT_BOTTOM,
@@ -5473,13 +5452,13 @@ function QaFab() {
5473
5452
  "data-qa-overlay": "true",
5474
5453
  dir: "ltr",
5475
5454
  onClick: handleClick,
5476
- onPointerDown: coarse ? onPointerDown : void 0,
5477
- onPointerMove: coarse ? onPointerMove : void 0,
5478
- onPointerUp: coarse ? onPointerUp : void 0,
5479
- onPointerCancel: coarse ? onPointerCancel : void 0,
5455
+ onPointerDown,
5456
+ onPointerMove,
5457
+ onPointerUp,
5458
+ onPointerCancel,
5480
5459
  "aria-label": "Qapture \u2014 testing notes",
5481
- title: "Qapture",
5482
- className: `qa-fixed qa-flex qa-items-center qa-justify-center qa-rounded-full qa-bg-accent qa-elev-2 qa-print-hidden qa-fab-btn${coarse ? " qa-touch-none" : ""}`,
5460
+ title: t("fab_title"),
5461
+ className: "qa-fixed qa-flex qa-items-center qa-justify-center qa-rounded-full qa-bg-accent qa-elev-2 qa-print-hidden qa-fab-btn qa-touch-none",
5483
5462
  style: fabStyle,
5484
5463
  children: [
5485
5464
  !isOpen && /* @__PURE__ */ jsx(
@@ -7796,6 +7775,29 @@ function GuideSection() {
7796
7775
  ))
7797
7776
  ] });
7798
7777
  }
7778
+ function isCoarsePointer() {
7779
+ if (typeof window === "undefined") return false;
7780
+ try {
7781
+ if (window.matchMedia && window.matchMedia("(pointer: coarse)").matches) return true;
7782
+ } catch {
7783
+ }
7784
+ return typeof navigator !== "undefined" && (navigator.maxTouchPoints || 0) > 0;
7785
+ }
7786
+ function useCoarsePointer() {
7787
+ const [coarse, setCoarse] = useState(() => isCoarsePointer());
7788
+ useEffect(() => {
7789
+ if (typeof window === "undefined" || !window.matchMedia) return;
7790
+ const mq = window.matchMedia("(pointer: coarse)");
7791
+ const on = () => setCoarse(isCoarsePointer());
7792
+ if (mq.addEventListener) mq.addEventListener("change", on);
7793
+ else if (mq.addListener) mq.addListener(on);
7794
+ return () => {
7795
+ if (mq.removeEventListener) mq.removeEventListener("change", on);
7796
+ else if (mq.removeListener) mq.removeListener(on);
7797
+ };
7798
+ }, []);
7799
+ return coarse;
7800
+ }
7799
7801
  var TABS = [
7800
7802
  { key: "notes", labelKey: "tab_notes", icon: "StickyNote" },
7801
7803
  { key: "logins", labelKey: "tab_logins", icon: "KeyRound" },
@@ -10090,5 +10092,5 @@ function Qapture({ config }) {
10090
10092
  }
10091
10093
 
10092
10094
  export { Qapture, deleteQaDatabase, initQaStudio };
10093
- //# sourceMappingURL=chunk-ZAWR5VJR.js.map
10094
- //# sourceMappingURL=chunk-ZAWR5VJR.js.map
10095
+ //# sourceMappingURL=chunk-FBFESAG6.js.map
10096
+ //# sourceMappingURL=chunk-FBFESAG6.js.map
package/dist/index.cjs CHANGED
@@ -1,24 +1,24 @@
1
1
  'use strict';
2
2
 
3
- var chunk7WHQBMVP_cjs = require('./chunk-7WHQBMVP.cjs');
3
+ var chunkCOQKFGKZ_cjs = require('./chunk-COQKFGKZ.cjs');
4
4
 
5
5
 
6
6
 
7
7
  Object.defineProperty(exports, "QaStudio", {
8
8
  enumerable: true,
9
- get: function () { return chunk7WHQBMVP_cjs.Qapture; }
9
+ get: function () { return chunkCOQKFGKZ_cjs.Qapture; }
10
10
  });
11
11
  Object.defineProperty(exports, "Qapture", {
12
12
  enumerable: true,
13
- get: function () { return chunk7WHQBMVP_cjs.Qapture; }
13
+ get: function () { return chunkCOQKFGKZ_cjs.Qapture; }
14
14
  });
15
15
  Object.defineProperty(exports, "deleteQaDatabase", {
16
16
  enumerable: true,
17
- get: function () { return chunk7WHQBMVP_cjs.deleteQaDatabase; }
17
+ get: function () { return chunkCOQKFGKZ_cjs.deleteQaDatabase; }
18
18
  });
19
19
  Object.defineProperty(exports, "initQaStudio", {
20
20
  enumerable: true,
21
- get: function () { return chunk7WHQBMVP_cjs.initQaStudio; }
21
+ get: function () { return chunkCOQKFGKZ_cjs.initQaStudio; }
22
22
  });
23
23
  //# sourceMappingURL=index.cjs.map
24
24
  //# sourceMappingURL=index.cjs.map
package/dist/index.js CHANGED
@@ -1,3 +1,3 @@
1
- export { Qapture as QaStudio, Qapture, deleteQaDatabase, initQaStudio } from './chunk-ZAWR5VJR.js';
1
+ export { Qapture as QaStudio, Qapture, deleteQaDatabase, initQaStudio } from './chunk-FBFESAG6.js';
2
2
  //# sourceMappingURL=index.js.map
3
3
  //# sourceMappingURL=index.js.map
package/dist/next.cjs CHANGED
@@ -1,21 +1,21 @@
1
1
  "use client";
2
2
  'use strict';
3
3
 
4
- var chunk7WHQBMVP_cjs = require('./chunk-7WHQBMVP.cjs');
4
+ var chunkCOQKFGKZ_cjs = require('./chunk-COQKFGKZ.cjs');
5
5
 
6
6
 
7
7
 
8
8
  Object.defineProperty(exports, "QaStudio", {
9
9
  enumerable: true,
10
- get: function () { return chunk7WHQBMVP_cjs.Qapture; }
10
+ get: function () { return chunkCOQKFGKZ_cjs.Qapture; }
11
11
  });
12
12
  Object.defineProperty(exports, "Qapture", {
13
13
  enumerable: true,
14
- get: function () { return chunk7WHQBMVP_cjs.Qapture; }
14
+ get: function () { return chunkCOQKFGKZ_cjs.Qapture; }
15
15
  });
16
16
  Object.defineProperty(exports, "initQaStudio", {
17
17
  enumerable: true,
18
- get: function () { return chunk7WHQBMVP_cjs.initQaStudio; }
18
+ get: function () { return chunkCOQKFGKZ_cjs.initQaStudio; }
19
19
  });
20
20
  //# sourceMappingURL=next.cjs.map
21
21
  //# sourceMappingURL=next.cjs.map
package/dist/next.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use client";
2
- export { Qapture as QaStudio, Qapture, initQaStudio } from './chunk-ZAWR5VJR.js';
2
+ export { Qapture as QaStudio, Qapture, initQaStudio } from './chunk-FBFESAG6.js';
3
3
  //# sourceMappingURL=next.js.map
4
4
  //# sourceMappingURL=next.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunk7WHQBMVP_cjs = require('./chunk-7WHQBMVP.cjs');
3
+ var chunkCOQKFGKZ_cjs = require('./chunk-COQKFGKZ.cjs');
4
4
 
5
5
  // src/standalone.ts
6
6
  if (typeof window !== "undefined" && typeof customElements !== "undefined" && !customElements.get("qapture-widget")) {
@@ -38,7 +38,7 @@ if (typeof window !== "undefined" && typeof customElements !== "undefined" && !c
38
38
 
39
39
  Object.defineProperty(exports, "initQaStudio", {
40
40
  enumerable: true,
41
- get: function () { return chunk7WHQBMVP_cjs.initQaStudio; }
41
+ get: function () { return chunkCOQKFGKZ_cjs.initQaStudio; }
42
42
  });
43
43
  //# sourceMappingURL=standalone.cjs.map
44
44
  //# sourceMappingURL=standalone.cjs.map
@@ -1,4 +1,4 @@
1
- export { initQaStudio } from './chunk-ZAWR5VJR.js';
1
+ export { initQaStudio } from './chunk-FBFESAG6.js';
2
2
 
3
3
  // src/standalone.ts
4
4
  if (typeof window !== "undefined" && typeof customElements !== "undefined" && !customElements.get("qapture-widget")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qapture2",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
4
4
  "description": "Drop-in, AI-aware in-browser QA capture widget. A tester annotates the live app (element/region + auto-screenshot + note), tracks a graded testing journey, and exports a ZIP your own coding agent reads. Ships zero AI.",
5
5
  "type": "module",
6
6
  "license": "MIT",