qapture2 0.8.3 → 0.9.0
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/{chunk-OSYYMS6R.cjs → chunk-5EWNGJ2N.cjs} +905 -50
- package/dist/{chunk-32LKZ2PG.js → chunk-B22X5Y6U.js} +905 -50
- package/dist/index.cjs +5 -5
- package/dist/index.d.cts +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +1 -1
- package/dist/next.cjs +4 -4
- package/dist/next.js +1 -1
- package/dist/standalone.cjs +2 -2
- package/dist/standalone.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk5EWNGJ2N_cjs = require('./chunk-5EWNGJ2N.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "QaStudio", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunk5EWNGJ2N_cjs.Qapture; }
|
|
10
10
|
});
|
|
11
11
|
Object.defineProperty(exports, "Qapture", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunk5EWNGJ2N_cjs.Qapture; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, "deleteQaDatabase", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunk5EWNGJ2N_cjs.deleteQaDatabase; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "initQaStudio", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunk5EWNGJ2N_cjs.initQaStudio; }
|
|
22
22
|
});
|
|
23
23
|
//# sourceMappingURL=index.cjs.map
|
|
24
24
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.d.cts
CHANGED
|
@@ -113,6 +113,18 @@ type QaConfig = {
|
|
|
113
113
|
preamble?: QaPreamble;
|
|
114
114
|
/** If true, default language initializes to 'ar' (RTL). */
|
|
115
115
|
rtl?: boolean;
|
|
116
|
+
/**
|
|
117
|
+
* Show a small "beta" mark on the button.
|
|
118
|
+
*
|
|
119
|
+
* For shipping this into a client's live site during a review period. It
|
|
120
|
+
* sets an expectation before anything goes wrong -- a client who knows a
|
|
121
|
+
* tool is new forgives a rough edge and tells you about it, and a client who
|
|
122
|
+
* thought it was finished quietly stops using it instead.
|
|
123
|
+
*
|
|
124
|
+
* Deliberately a mark on the button and nothing else: no banner, no modal,
|
|
125
|
+
* no interruption. It is a label, not an announcement.
|
|
126
|
+
*/
|
|
127
|
+
beta?: boolean;
|
|
116
128
|
/**
|
|
117
129
|
* Whether the panel is visible.
|
|
118
130
|
* - true / false: always show / always hide
|
|
@@ -156,6 +168,7 @@ type ResolvedConfig = {
|
|
|
156
168
|
journey: QaJourneyLane[];
|
|
157
169
|
preamble: QaPreamble | null;
|
|
158
170
|
rtl: boolean;
|
|
171
|
+
beta: boolean;
|
|
159
172
|
/**
|
|
160
173
|
* Visibility sentinel.
|
|
161
174
|
* - true: always show
|
package/dist/index.d.ts
CHANGED
|
@@ -113,6 +113,18 @@ type QaConfig = {
|
|
|
113
113
|
preamble?: QaPreamble;
|
|
114
114
|
/** If true, default language initializes to 'ar' (RTL). */
|
|
115
115
|
rtl?: boolean;
|
|
116
|
+
/**
|
|
117
|
+
* Show a small "beta" mark on the button.
|
|
118
|
+
*
|
|
119
|
+
* For shipping this into a client's live site during a review period. It
|
|
120
|
+
* sets an expectation before anything goes wrong -- a client who knows a
|
|
121
|
+
* tool is new forgives a rough edge and tells you about it, and a client who
|
|
122
|
+
* thought it was finished quietly stops using it instead.
|
|
123
|
+
*
|
|
124
|
+
* Deliberately a mark on the button and nothing else: no banner, no modal,
|
|
125
|
+
* no interruption. It is a label, not an announcement.
|
|
126
|
+
*/
|
|
127
|
+
beta?: boolean;
|
|
116
128
|
/**
|
|
117
129
|
* Whether the panel is visible.
|
|
118
130
|
* - true / false: always show / always hide
|
|
@@ -156,6 +168,7 @@ type ResolvedConfig = {
|
|
|
156
168
|
journey: QaJourneyLane[];
|
|
157
169
|
preamble: QaPreamble | null;
|
|
158
170
|
rtl: boolean;
|
|
171
|
+
beta: boolean;
|
|
159
172
|
/**
|
|
160
173
|
* Visibility sentinel.
|
|
161
174
|
* - true: always show
|
package/dist/index.js
CHANGED
package/dist/next.cjs
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunk5EWNGJ2N_cjs = require('./chunk-5EWNGJ2N.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
Object.defineProperty(exports, "QaStudio", {
|
|
9
9
|
enumerable: true,
|
|
10
|
-
get: function () { return
|
|
10
|
+
get: function () { return chunk5EWNGJ2N_cjs.Qapture; }
|
|
11
11
|
});
|
|
12
12
|
Object.defineProperty(exports, "Qapture", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunk5EWNGJ2N_cjs.Qapture; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "initQaStudio", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk5EWNGJ2N_cjs.initQaStudio; }
|
|
19
19
|
});
|
|
20
20
|
//# sourceMappingURL=next.cjs.map
|
|
21
21
|
//# sourceMappingURL=next.cjs.map
|
package/dist/next.js
CHANGED
package/dist/standalone.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk5EWNGJ2N_cjs = require('./chunk-5EWNGJ2N.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
|
|
41
|
+
get: function () { return chunk5EWNGJ2N_cjs.initQaStudio; }
|
|
42
42
|
});
|
|
43
43
|
//# sourceMappingURL=standalone.cjs.map
|
|
44
44
|
//# sourceMappingURL=standalone.cjs.map
|
package/dist/standalone.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qapture2",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
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",
|