makethisbetter 1.16.0 → 1.18.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.
Files changed (99) hide show
  1. package/README.md +56 -29
  2. package/dist/annotate/draw-note-bar.d.ts +0 -4
  3. package/dist/annotate/draw-note-bar.d.ts.map +1 -1
  4. package/dist/annotate/session.d.ts +1 -0
  5. package/dist/annotate/session.d.ts.map +1 -1
  6. package/dist/annotate/toolbar.d.ts +4 -1
  7. package/dist/annotate/toolbar.d.ts.map +1 -1
  8. package/dist/api/client.d.ts.map +1 -1
  9. package/dist/context/breadcrumbs.d.ts.map +1 -1
  10. package/dist/context/collector.d.ts.map +1 -1
  11. package/dist/context/console.d.ts.map +1 -1
  12. package/dist/context/error-source.d.ts +1 -0
  13. package/dist/context/error-source.d.ts.map +1 -1
  14. package/dist/context/error-summary.d.ts +3 -0
  15. package/dist/context/error-summary.d.ts.map +1 -0
  16. package/dist/context/frustration.d.ts.map +1 -1
  17. package/dist/i18n/de.d.ts +1 -0
  18. package/dist/i18n/de.d.ts.map +1 -1
  19. package/dist/i18n/en.d.ts +1 -0
  20. package/dist/i18n/en.d.ts.map +1 -1
  21. package/dist/i18n/es.d.ts +1 -0
  22. package/dist/i18n/es.d.ts.map +1 -1
  23. package/dist/i18n/fr.d.ts +1 -0
  24. package/dist/i18n/fr.d.ts.map +1 -1
  25. package/dist/i18n/ja.d.ts +1 -0
  26. package/dist/i18n/ja.d.ts.map +1 -1
  27. package/dist/i18n/ko.d.ts +1 -0
  28. package/dist/i18n/ko.d.ts.map +1 -1
  29. package/dist/i18n/zh-CN.d.ts +1 -0
  30. package/dist/i18n/zh-CN.d.ts.map +1 -1
  31. package/dist/index.d.ts.map +1 -1
  32. package/dist/makethisbetter.cjs +42 -44
  33. package/dist/makethisbetter.cjs.map +1 -1
  34. package/dist/makethisbetter.esm.js +1202 -865
  35. package/dist/makethisbetter.esm.js.map +1 -1
  36. package/dist/makethisbetter.js +42 -44
  37. package/dist/makethisbetter.js.map +1 -1
  38. package/dist/popup/clarify.d.ts +1 -0
  39. package/dist/popup/clarify.d.ts.map +1 -1
  40. package/dist/popup/comment.d.ts +0 -4
  41. package/dist/popup/comment.d.ts.map +1 -1
  42. package/dist/privacy/dom.d.ts +5 -0
  43. package/dist/privacy/dom.d.ts.map +1 -0
  44. package/dist/privacy/fields.d.ts +3 -0
  45. package/dist/privacy/fields.d.ts.map +1 -0
  46. package/dist/privacy/fields.test.d.ts +2 -0
  47. package/dist/privacy/fields.test.d.ts.map +1 -0
  48. package/dist/privacy/sanitize.d.ts +7 -0
  49. package/dist/privacy/sanitize.d.ts.map +1 -0
  50. package/dist/privacy/sanitize.test.d.ts +2 -0
  51. package/dist/privacy/sanitize.test.d.ts.map +1 -0
  52. package/dist/privacy/text-context.d.ts +6 -0
  53. package/dist/privacy/text-context.d.ts.map +1 -0
  54. package/dist/record/session.d.ts +1 -3
  55. package/dist/record/session.d.ts.map +1 -1
  56. package/dist/screenshot/capture.d.ts.map +1 -1
  57. package/dist/styles/clarify-card-size.test.d.ts +2 -0
  58. package/dist/styles/clarify-card-size.test.d.ts.map +1 -0
  59. package/dist/types.d.ts +0 -4
  60. package/dist/types.d.ts.map +1 -1
  61. package/dist/widget/controller.d.ts +8 -0
  62. package/dist/widget/controller.d.ts.map +1 -1
  63. package/dist/widget/page-offset.d.ts +1 -1
  64. package/dist/widget/payload.d.ts.map +1 -1
  65. package/dist/widget/recording-manager.d.ts +1 -2
  66. package/dist/widget/recording-manager.d.ts.map +1 -1
  67. package/package.json +2 -1
  68. package/src/annotate/draw-note-bar.ts +2 -29
  69. package/src/annotate/session.ts +55 -4
  70. package/src/annotate/toolbar.ts +24 -4
  71. package/src/api/client.ts +8 -1
  72. package/src/context/breadcrumbs.ts +28 -7
  73. package/src/context/collector.ts +3 -1
  74. package/src/context/console.ts +2 -2
  75. package/src/context/error-source.ts +10 -2
  76. package/src/context/error-summary.ts +27 -0
  77. package/src/context/frustration.ts +15 -4
  78. package/src/i18n/de.ts +1 -0
  79. package/src/i18n/en.ts +1 -0
  80. package/src/i18n/es.ts +1 -0
  81. package/src/i18n/fr.ts +1 -0
  82. package/src/i18n/ja.ts +1 -0
  83. package/src/i18n/ko.ts +1 -0
  84. package/src/i18n/zh-CN.ts +2 -1
  85. package/src/index.ts +17 -2
  86. package/src/popup/clarify.ts +7 -0
  87. package/src/popup/comment.ts +3 -28
  88. package/src/privacy/dom.ts +17 -0
  89. package/src/privacy/fields.ts +18 -0
  90. package/src/privacy/sanitize.ts +116 -0
  91. package/src/privacy/text-context.ts +39 -0
  92. package/src/record/session.ts +98 -10
  93. package/src/screenshot/capture.ts +171 -19
  94. package/src/styles/widget.css +317 -296
  95. package/src/types.ts +0 -9
  96. package/src/widget/controller.ts +52 -15
  97. package/src/widget/page-offset.ts +1 -1
  98. package/src/widget/payload.ts +10 -4
  99. package/src/widget/recording-manager.ts +1 -3
package/README.md CHANGED
@@ -191,29 +191,24 @@ Switch to **Replay** mode in the toolbar to capture an Interaction Replay (up to
191
191
 
192
192
  | Captured | Not captured |
193
193
  |----------|--------------|
194
- | The page's DOM structure and every mutation to it | Values typed into any `input`, `textarea` or `select` — masked by default, including values already filled in when the replay starts |
195
- | Visible text content | Anything inside an element you mark `rr-block` or `rr-mask` |
194
+ | The page's DOM structure and every mutation to it | Passwords, payment-card data, OTPs, access tokens, private keys, and other high-confidence credentials replaced with `[Filtered]` |
195
+ | Visible text content and ordinary form values | Content inside an element you mark `rr-block` or `rr-mask` |
196
196
  | Mouse positions, clicks, scrolls, viewport size | Screen video, audio, camera, microphone |
197
197
  | Stylesheets needed to render the replay | Cookies, `localStorage`, HTTP request or response bodies |
198
198
 
199
- **Excluding an element.** Add rrweb's own escape-hatch classes to anything a replay must not see:
199
+ Sensitive-data filtering is fixed and cannot be disabled through SDK configuration. Ordinary values such as search queries, issue descriptions, and internal form fields remain available because they are often necessary to reproduce a problem.
200
200
 
201
- - `class="rr-block"` the element is recorded as an empty placeholder of the same size; nothing inside it is serialized.
202
- - `class="rr-mask"` — the element's text is replaced with asterisks.
201
+ **Excluding an element.** Add rrweb's privacy classes to any page region that the SDK must not capture. These classes apply consistently to Interaction Replay, click and input breadcrumbs, annotation metadata, and screenshots:
202
+
203
+ - `class="rr-block"` — hides the entire marked region while preserving its footprint.
204
+ - `class="rr-mask"` — hides text and form-control content while preserving the surrounding layout.
203
205
 
204
206
  ```html
205
207
  <div class="rr-block"><!-- never appears in a replay --></div>
206
208
  <span class="rr-mask">Account balance: $12,400</span>
207
209
  ```
208
210
 
209
- **Opting out of input masking.** Input masking is on by default, so a replay taken on a checkout or sign-in page carries no card numbers, passwords, 2FA codes or email addresses. If you need real typed values — for example on an internal tool where no input is sensitive turn it off explicitly:
210
-
211
- ```js
212
- MakeThisBetter.init({
213
- projectKey: 'mtb_proj_xxx',
214
- recording: { maskAllInputs: false }, // records typed values verbatim
215
- })
216
- ```
211
+ If screenshot or Replay filtering cannot complete, that attachment is silently omitted and the text feedback still submits. Automated filtering cannot identify every site-specific secret, so use `rr-block` or `rr-mask` on sensitive application regions.
217
212
 
218
213
  ### Frustration Detection
219
214
 
@@ -238,10 +233,10 @@ Before final confirmation, an AI assistant may ask one short follow-up question
238
233
 
239
234
  Every submission automatically includes:
240
235
 
241
- - Page URL, browser, OS, screen resolution
242
- - Console errors (via `window.onerror` and `window.onunhandledrejection`)
236
+ - Page URL origin and pathname, browser, OS, screen resolution
237
+ - Error type, script pathname, and line/column location (via `window.onerror` and `window.onunhandledrejection`)
243
238
  - Target element selector and text
244
- - Annotated screenshot (via `html-to-image`)
239
+ - Annotated screenshot with privacy covers applied before upload (via `html-to-image`)
245
240
  - Annotation coordinates and draw paths
246
241
 
247
242
  ### Internationalization
@@ -266,19 +261,17 @@ MakeThisBetter.init({
266
261
  projectKey: 'mtb_proj_xxx',
267
262
 
268
263
  // Optional
269
- locale: 'en', // UI language
264
+ locale: 'en', // UI language. Unset: falls back to <html lang>, then 'en'
270
265
  position: 'right', // Tab position: 'left' | 'right'
266
+ tabText: 'Feedback', // Label on the docked tab. Unset: the locale's own wording
271
267
  entryMode: 'button', // 'button' docks a tab | 'api' renders none
272
268
  theme: 'auto', // 'light' | 'dark' | 'auto'
273
269
  frustrationDetection: true, // Proactive frustration prompts
274
270
  apiUrl: 'https://...', // Self-hosted API endpoint
275
271
 
276
- // Interaction Replay
277
- recording: {
278
- maskAllInputs: true, // Default. false records typed input values verbatim
279
- },
280
-
281
- // User identification (recommended)
272
+ // User identification (recommended).
273
+ // Ignored entirely when a valid userToken/userTokenFn JWT is present —
274
+ // see Identity Verification below.
282
275
  user: {
283
276
  id: 'usr_123',
284
277
  email: 'alex@example.com',
@@ -287,6 +280,10 @@ MakeThisBetter.init({
287
280
  })
288
281
  ```
289
282
 
283
+ `locale` is resolved once, in this order: the `locale` you pass, then the page's
284
+ `<html lang>` attribute, then `en`. A tag with no exact match is retried without
285
+ its region (`fr-CA` → `fr`), and anything still unmatched falls back to `en`.
286
+
290
287
  ### Changing the language at runtime
291
288
 
292
289
  `MakeThisBetter.setLocale('zh-CN')` switches the language for the tab and for
@@ -309,6 +306,13 @@ Identity verification links feedback to authenticated users and lets them view t
309
306
  MakeThisBetter.init({ projectKey: 'mtb_proj_xxx' })
310
307
  ```
311
308
 
309
+ Anonymous reporters are offered a follow-up: the success card shows an optional
310
+ email field, and an address entered there is sent to the reporter endpoint and
311
+ kept in `localStorage` under `mtb_reporter_email` so the field is not asked for
312
+ again on later reports from the same browser. The field is skipped entirely when
313
+ `user` is set or when a JWT already identifies the reporter. Clearing site data
314
+ clears it.
315
+
312
316
  **Level 1 -- Static token**: Pass a pre-generated JWT. Simple, but the token may expire during long sessions.
313
317
 
314
318
  ```js
@@ -333,12 +337,24 @@ MakeThisBetter.init({
333
337
 
334
338
  When `userToken` or `userTokenFn` is set, the widget sends an `X-User-Token` header with every request. After final confirmation, a "View my feedback" link appears that opens the project board filtered to the user's submissions.
335
339
 
336
- Generate tokens server-side using your project's HMAC secret (available in your project settings):
340
+ **The JWT wins over `user`.** These are not two independent ways to name the
341
+ reporter. Whenever the server receives a valid token, it takes the reporter's id,
342
+ email and name from the token's `sub`, `email` and `name` claims and discards the
343
+ `user` fields the widget sent alongside them — a claim you leave out is simply not
344
+ recorded, even if `user` carried it. Put everything you want attributed in the
345
+ token, and treat `user` as the anonymous-only path.
346
+
347
+ Generate tokens server-side using your project's Signing Secret (available in your project settings):
337
348
 
338
349
  ```ruby
339
350
  # Rails example
340
- payload = { sub: current_user.id, email: current_user.email, exp: 1.hour.from_now.to_i }
341
- JWT.encode(payload, project.widget_secret, 'HS256')
351
+ payload = {
352
+ sub: current_user.id,
353
+ email: current_user.email,
354
+ name: current_user.name,
355
+ exp: 1.hour.from_now.to_i,
356
+ }
357
+ JWT.encode(payload, project.signing_secret, 'HS256')
342
358
  ```
343
359
 
344
360
  ### Conditional Loading
@@ -352,16 +368,24 @@ if (user.isBetaTester) {
352
368
 
353
369
  ## Self-Hosting
354
370
 
355
- The Widget works with any backend — not just makethisbetter.dev. Implement one API endpoint and point `apiUrl` at your server:
371
+ The Widget works with any backend — not just makethisbetter.dev. Implement the
372
+ Submission Session profile you need from the
373
+ [Self-Hosting API Specification](https://github.com/makethisbetter/makethisbetter-js/blob/main/SELF_HOSTING.md),
374
+ then point `apiUrl` at your API version root:
356
375
 
357
376
  ```js
358
377
  MakeThisBetter.init({
359
378
  projectKey: 'your-key',
360
- apiUrl: 'https://feedback.yoursite.com',
379
+ apiUrl: 'https://feedback.yoursite.com/api/v1',
361
380
  })
362
381
  ```
363
382
 
364
- Your backend needs to support the Submission Session flow: create a Session with multipart context, clarify it with the in-memory Submission Token, then explicitly finalize or abandon it. The Widget takes care of annotation, Interaction Replay, frustration detection, and context collection.
383
+ The minimum backend supports the Submission Session flow: create a Session with
384
+ multipart context, optionally clarify it with the in-memory Submission Token,
385
+ then explicitly finalize or abandon it. The Widget takes care of annotation,
386
+ Interaction Replay, frustration detection, and context collection. Anonymous
387
+ board handoff and post-submit email capture use two additional optional
388
+ operations documented in the specification.
365
389
 
366
390
  The cloud platform at [makethisbetter.dev](https://makethisbetter.dev) adds AI triage, dashboard, GitHub/Linear sync, and email notifications on top.
367
391
 
@@ -385,6 +409,9 @@ MakeThisBetter.close(): void
385
409
  // Show or remove the docked tab without tearing the widget down
386
410
  MakeThisBetter.showLauncher(): void
387
411
  MakeThisBetter.hideLauncher(): void
412
+
413
+ // Switch the UI language for anything opened afterwards
414
+ MakeThisBetter.setLocale(locale: string): void
388
415
  ```
389
416
 
390
417
  ### Your own entry point
@@ -14,15 +14,11 @@ export declare class DrawNoteBar {
14
14
  private undoBtn;
15
15
  private redoBtn;
16
16
  private submitBtn;
17
- private errorEl;
18
17
  private onSubmit;
19
18
  private submitLabel;
20
- private loading;
21
19
  constructor(shadow: ShadowContainer, opts: DrawNoteBarOptions);
22
20
  private buildHTML;
23
21
  setUndoRedo(canUndo: boolean, canRedo: boolean): void;
24
- setLoading(loading: boolean): void;
25
- setError(message: string): void;
26
22
  private submit;
27
23
  destroy(): void;
28
24
  }
@@ -1 +1 @@
1
- {"version":3,"file":"draw-note-bar.d.ts","sourceRoot":"","sources":["../../src/annotate/draw-note-bar.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AACvD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAI3C,UAAU,kBAAkB;IAC1B,QAAQ,EAAE,YAAY,CAAA;IACtB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,QAAQ,EAAE,MAAM,IAAI,CAAA;IACpB,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;CACjC;AAED,qBAAa,WAAW;IACtB,OAAO,CAAC,EAAE,CAAgB;IAC1B,OAAO,CAAC,KAAK,CAAa;IAC1B,OAAO,CAAC,KAAK,CAAmB;IAChC,OAAO,CAAC,OAAO,CAAoB;IACnC,OAAO,CAAC,OAAO,CAAoB;IACnC,OAAO,CAAC,SAAS,CAAoB;IACrC,OAAO,CAAC,OAAO,CAAiB;IAChC,OAAO,CAAC,QAAQ,CAAwB;IACxC,OAAO,CAAC,WAAW,CAAQ;IAC3B,OAAO,CAAC,OAAO,CAAQ;gBAEX,MAAM,EAAE,eAAe,EAAE,IAAI,EAAE,kBAAkB;IAiC7D,OAAO,CAAC,SAAS;IAgBjB,WAAW,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,GAAG,IAAI;IAKrD,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAiBlC,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAK/B,OAAO,CAAC,MAAM;IAKd,OAAO,IAAI,IAAI;CAIhB"}
1
+ {"version":3,"file":"draw-note-bar.d.ts","sourceRoot":"","sources":["../../src/annotate/draw-note-bar.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AACvD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAI3C,UAAU,kBAAkB;IAC1B,QAAQ,EAAE,YAAY,CAAA;IACtB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,QAAQ,EAAE,MAAM,IAAI,CAAA;IACpB,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;CACjC;AAED,qBAAa,WAAW;IACtB,OAAO,CAAC,EAAE,CAAgB;IAC1B,OAAO,CAAC,KAAK,CAAa;IAC1B,OAAO,CAAC,KAAK,CAAmB;IAChC,OAAO,CAAC,OAAO,CAAoB;IACnC,OAAO,CAAC,OAAO,CAAoB;IACnC,OAAO,CAAC,SAAS,CAAoB;IACrC,OAAO,CAAC,QAAQ,CAAwB;IACxC,OAAO,CAAC,WAAW,CAAQ;gBAEf,MAAM,EAAE,eAAe,EAAE,IAAI,EAAE,kBAAkB;IAgC7D,OAAO,CAAC,SAAS;IAejB,WAAW,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,GAAG,IAAI;IAKrD,OAAO,CAAC,MAAM;IAId,OAAO,IAAI,IAAI;CAIhB"}
@@ -16,6 +16,7 @@ export declare class AnnotationSession {
16
16
  private pendingHighlightFrame;
17
17
  private lastMoveX;
18
18
  private lastMoveY;
19
+ private readonly touch;
19
20
  constructor(shadow: ShadowContainer, messages: I18nMessages, handlers: SessionHandlers);
20
21
  private handlePointerDown;
21
22
  private handlePointerMove;
@@ -1 +1 @@
1
- {"version":3,"file":"session.d.ts","sourceRoot":"","sources":["../../src/annotate/session.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AACvD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAC3C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAW1C,UAAU,eAAe;IACvB,KAAK,EAAE,CAAC,UAAU,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,KAAK,IAAI,CAAA;IAC3D,YAAY,EAAE,MAAM,IAAI,CAAA;CACzB;AAED,qBAAa,iBAAiB;IAY1B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,QAAQ;IAZlB,OAAO,CAAC,OAAO,CAAmB;IAClC,OAAO,CAAC,WAAW,CAAoB;IACvC,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,iBAAiB,CAAO;IAChC,OAAO,CAAC,qBAAqB,CAAsB;IACnD,OAAO,CAAC,SAAS,CAAI;IACrB,OAAO,CAAC,SAAS,CAAI;gBAGnB,MAAM,EAAE,eAAe,EACf,QAAQ,EAAE,YAAY,EACtB,QAAQ,EAAE,eAAe;IAoBnC,OAAO,CAAC,iBAAiB;IAKzB,OAAO,CAAC,iBAAiB;IAiBzB,OAAO,CAAC,eAAe;IAOvB,OAAO,CAAC,sBAAsB;IAM9B,OAAO,CAAC,eAAe;IAQvB,OAAO,CAAC,YAAY;IA4BpB,QAAQ,IAAI,IAAI;IAIhB,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,OAAO;IAItB,WAAW,IAAI,OAAO;IAItB,cAAc,IAAI,OAAO;IAIzB,OAAO,CAAC,iBAAiB;IAIzB,iBAAiB,IAAI,UAAU,GAAG,IAAI;IAItC,SAAS,IAAI,IAAI;IAIjB,kBAAkB,IAAI,IAAI;IAO1B,aAAa,IAAI,IAAI;IAIrB,OAAO,IAAI,IAAI;CAMhB"}
1
+ {"version":3,"file":"session.d.ts","sourceRoot":"","sources":["../../src/annotate/session.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AACvD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAC3C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAa1C,UAAU,eAAe;IACvB,KAAK,EAAE,CAAC,UAAU,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,KAAK,IAAI,CAAA;IAC3D,YAAY,EAAE,MAAM,IAAI,CAAA;CACzB;AAkBD,qBAAa,iBAAiB;IAe1B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,QAAQ;IAflB,OAAO,CAAC,OAAO,CAAmB;IAClC,OAAO,CAAC,WAAW,CAAoB;IACvC,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,iBAAiB,CAAO;IAChC,OAAO,CAAC,qBAAqB,CAAsB;IACnD,OAAO,CAAC,SAAS,CAAI;IACrB,OAAO,CAAC,SAAS,CAAI;IAGrB,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAmB;gBAGvC,MAAM,EAAE,eAAe,EACf,QAAQ,EAAE,YAAY,EACtB,QAAQ,EAAE,eAAe;IAoBnC,OAAO,CAAC,iBAAiB;IAKzB,OAAO,CAAC,iBAAiB;IAiBzB,OAAO,CAAC,eAAe;IAOvB,OAAO,CAAC,sBAAsB;IAM9B,OAAO,CAAC,eAAe;IAQvB,OAAO,CAAC,YAAY;IAqCpB,QAAQ,IAAI,IAAI;IAIhB,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,OAAO;IAItB,WAAW,IAAI,OAAO;IAItB,cAAc,IAAI,OAAO;IAIzB,OAAO,CAAC,iBAAiB;IAWzB,iBAAiB,IAAI,UAAU,GAAG,IAAI;IAkBtC,SAAS,IAAI,IAAI;IAIjB,kBAAkB,IAAI,IAAI;IAO1B,aAAa,IAAI,IAAI;IAIrB,OAAO,IAAI,IAAI;CAMhB"}
@@ -10,9 +10,12 @@ export declare class AnnotationToolbar {
10
10
  private recordBtn;
11
11
  private messages;
12
12
  private currentMode;
13
+ private readonly touch;
13
14
  private handlePointerMove;
14
- constructor(shadow: ShadowContainer, messages: I18nMessages, onExit: () => void, onModeChange?: (mode: ToolbarMode) => void, position?: 'left' | 'right');
15
+ private dismissTouchHint;
16
+ constructor(shadow: ShadowContainer, messages: I18nMessages, onExit: () => void, onModeChange?: (mode: ToolbarMode) => void, position?: 'left' | 'right', showTouchHint?: boolean);
15
17
  private buildHTML;
18
+ private idleHint;
16
19
  setMode(mode: ToolbarMode): void;
17
20
  getMode(): ToolbarMode;
18
21
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"toolbar.d.ts","sourceRoot":"","sources":["../../src/annotate/toolbar.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AACvD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAE3C,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,QAAQ,CAAA;AAM7C,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,EAAE,CAAgB;IAI1B,OAAO,CAAC,SAAS,CAAgB;IACjC,OAAO,CAAC,UAAU,CAAkB;IACpC,OAAO,CAAC,IAAI,CAAa;IACzB,OAAO,CAAC,SAAS,CAAoB;IACrC,OAAO,CAAC,SAAS,CAAoB;IACrC,OAAO,CAAC,QAAQ,CAAc;IAC9B,OAAO,CAAC,WAAW,CAAwB;IAS3C,OAAO,CAAC,iBAAiB,CAQxB;gBAGC,MAAM,EAAE,eAAe,EACvB,QAAQ,EAAE,YAAY,EACtB,MAAM,EAAE,MAAM,IAAI,EAClB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,KAAK,IAAI,EAC1C,QAAQ,GAAE,MAAM,GAAG,OAAiB;IAwCtC,OAAO,CAAC,SAAS;IAmBjB,OAAO,CAAC,IAAI,EAAE,WAAW,GAAG,IAAI;IAahC,OAAO,IAAI,WAAW;IAItB;;;;;;;OAOG;IACH,MAAM,IAAI,MAAM;IAIhB,OAAO,IAAI,IAAI;CAMhB"}
1
+ {"version":3,"file":"toolbar.d.ts","sourceRoot":"","sources":["../../src/annotate/toolbar.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AACvD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAG3C,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,QAAQ,CAAA;AAM7C,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,EAAE,CAAgB;IAI1B,OAAO,CAAC,SAAS,CAAgB;IACjC,OAAO,CAAC,UAAU,CAAkB;IACpC,OAAO,CAAC,IAAI,CAAa;IACzB,OAAO,CAAC,SAAS,CAAoB;IACrC,OAAO,CAAC,SAAS,CAAoB;IACrC,OAAO,CAAC,QAAQ,CAAc;IAC9B,OAAO,CAAC,WAAW,CAAwB;IAC3C,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAS;IAS/B,OAAO,CAAC,iBAAiB,CAQxB;IAED,OAAO,CAAC,gBAAgB,CAGvB;gBAGC,MAAM,EAAE,eAAe,EACvB,QAAQ,EAAE,YAAY,EACtB,MAAM,EAAE,MAAM,IAAI,EAClB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,KAAK,IAAI,EAC1C,QAAQ,GAAE,MAAM,GAAG,OAAiB,EACpC,aAAa,UAAO;IA+CtB,OAAO,CAAC,SAAS;IAmBjB,OAAO,CAAC,QAAQ;IAIhB,OAAO,CAAC,IAAI,EAAE,WAAW,GAAG,IAAI;IAahC,OAAO,IAAI,WAAW;IAItB;;;;;;;OAOG;IACH,MAAM,IAAI,MAAM;IAIhB,OAAO,IAAI,IAAI;CAOhB"}
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/api/client.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,eAAe,EACf,gBAAgB,EAChB,yBAAyB,EACzB,eAAe,EACf,cAAc,EACf,MAAM,UAAU,CAAA;AAEjB,MAAM,WAAW,mBAAmB;IAClC,QAAQ,EAAE,cAAc,EAAE,CAAA;IAC1B,IAAI,EAAE,OAAO,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAKD,qBAAa,QAAS,SAAQ,KAAK;IACjC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;gBAEX,MAAM,EAAE,MAAM;CAK3B;AAED,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAE1D;AAID,qBAAa,SAAS;IACpB,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,UAAU,CAAQ;IAC1B,OAAO,CAAC,YAAY,CAAQ;IAC5B,OAAO,CAAC,SAAS,CAAC,CAAQ;IAC1B,OAAO,CAAC,WAAW,CAAC,CAAuB;gBAE/B,UAAU,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,EAAE,YAAY,SAAO,EAAE,SAAS,CAAC,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,OAAO,CAAC,MAAM,CAAC;IAQvH,gBAAgB,IAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;YAKvC,WAAW;YAQX,iBAAiB;IAMzB,uBAAuB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC,yBAAyB,CAAC;IAuD9G,mBAAmB,CAAC,kBAAkB,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,cAAc,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAc9G,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAe1F,kBAAkB,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IAM1G,kBAAkB,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;YAIhF,oBAAoB;IAe5B,gBAAgB,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IAatF,mBAAmB,CACvB,mBAAmB,EAAE,MAAM,EAC3B,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EAC/B,MAAM,CAAC,EAAE,WAAW,GACnB,OAAO,CAAC,mBAAmB,CAAC;IAmBzB,yBAAyB,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAUhG,wBAAwB,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;YAQ3E,cAAc;CAmB7B"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/api/client.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,eAAe,EACf,gBAAgB,EAChB,yBAAyB,EACzB,eAAe,EACf,cAAc,EACf,MAAM,UAAU,CAAA;AAGjB,MAAM,WAAW,mBAAmB;IAClC,QAAQ,EAAE,cAAc,EAAE,CAAA;IAC1B,IAAI,EAAE,OAAO,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAKD,qBAAa,QAAS,SAAQ,KAAK;IACjC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;gBAEX,MAAM,EAAE,MAAM;CAK3B;AAED,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAE1D;AAKD,qBAAa,SAAS;IACpB,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,UAAU,CAAQ;IAC1B,OAAO,CAAC,YAAY,CAAQ;IAC5B,OAAO,CAAC,SAAS,CAAC,CAAQ;IAC1B,OAAO,CAAC,WAAW,CAAC,CAAuB;gBAE/B,UAAU,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,EAAE,YAAY,SAAO,EAAE,SAAS,CAAC,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,OAAO,CAAC,MAAM,CAAC;IAQvH,gBAAgB,IAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC;YAKvC,WAAW;YAQX,iBAAiB;IAMzB,uBAAuB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC,yBAAyB,CAAC;IAwD9G,mBAAmB,CAAC,kBAAkB,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,cAAc,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAc9G,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAe1F,kBAAkB,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IAM1G,kBAAkB,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;YAIhF,oBAAoB;IAe5B,gBAAgB,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IAatF,mBAAmB,CACvB,mBAAmB,EAAE,MAAM,EAC3B,KAAK,EAAE,MAAM,EACb,OAAO,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EAC/B,MAAM,CAAC,EAAE,WAAW,GACnB,OAAO,CAAC,mBAAmB,CAAC;IAuBzB,yBAAyB,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAUhG,wBAAwB,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;YAQ3E,cAAc;CAmB7B"}
@@ -1 +1 @@
1
- {"version":3,"file":"breadcrumbs.d.ts","sourceRoot":"","sources":["../../src/context/breadcrumbs.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAI1C,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,WAAW,CAAmB;IACtC,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,iBAAiB,CAA4B;IACrD,OAAO,CAAC,iBAAiB,CAAyB;IAClD,OAAO,CAAC,kBAAkB,CAAoB;IAC9C,OAAO,CAAC,qBAAqB,CAA4B;IACzD,OAAO,CAAC,OAAO,CAAK;;IAOpB,KAAK,IAAI,IAAI;IAUb,IAAI,IAAI,IAAI;IAWZ,cAAc,IAAI,UAAU,EAAE;IAI9B,OAAO,CAAC,GAAG;IAOX,OAAO,CAAC,WAAW;IAgBnB,OAAO,CAAC,YAAY;IAkBpB,OAAO,CAAC,WAAW;IAUnB,OAAO,CAAC,gBAAgB;CAezB"}
1
+ {"version":3,"file":"breadcrumbs.d.ts","sourceRoot":"","sources":["../../src/context/breadcrumbs.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAiB1C,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,WAAW,CAAmB;IACtC,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,iBAAiB,CAA4B;IACrD,OAAO,CAAC,iBAAiB,CAAyB;IAClD,OAAO,CAAC,kBAAkB,CAAoB;IAC9C,OAAO,CAAC,qBAAqB,CAA4B;IACzD,OAAO,CAAC,OAAO,CAAK;;IAOpB,KAAK,IAAI,IAAI;IAUb,IAAI,IAAI,IAAI;IAWZ,cAAc,IAAI,UAAU,EAAE;IAI9B,OAAO,CAAC,GAAG;IAOX,OAAO,CAAC,WAAW;IAgBnB,OAAO,CAAC,YAAY;IAoBpB,OAAO,CAAC,WAAW;IAWnB,OAAO,CAAC,gBAAgB;CAiBzB"}
@@ -1 +1 @@
1
- {"version":3,"file":"collector.d.ts","sourceRoot":"","sources":["../../src/context/collector.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,WAAW;IAC1B,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,OAAO,EAAE,MAAM,CAAA;IACf,EAAE,EAAE,MAAM,CAAA;IACV,YAAY,EAAE,MAAM,CAAA;IACpB,aAAa,EAAE,MAAM,CAAA;CACtB;AAED,wBAAgB,kBAAkB,IAAI,WAAW,CAShD"}
1
+ {"version":3,"file":"collector.d.ts","sourceRoot":"","sources":["../../src/context/collector.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,WAAW;IAC1B,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,OAAO,EAAE,MAAM,CAAA;IACf,EAAE,EAAE,MAAM,CAAA;IACV,YAAY,EAAE,MAAM,CAAA;IACpB,aAAa,EAAE,MAAM,CAAA;CACtB;AAED,wBAAgB,kBAAkB,IAAI,WAAW,CAShD"}
@@ -1 +1 @@
1
- {"version":3,"file":"console.d.ts","sourceRoot":"","sources":["../../src/context/console.ts"],"names":[],"mappings":"AAIA,qBAAa,qBAAqB;IAChC,OAAO,CAAC,MAAM,CAAe;IAC7B,OAAO,CAAC,WAAW,CAA4B;IAE/C,KAAK,IAAI,IAAI;IAKb,OAAO,CAAC,MAAM;IAKd,OAAO,CAAC,QAAQ;IAOhB,SAAS,IAAI,MAAM,EAAE;IAIrB,IAAI,IAAI,IAAI;CAIb"}
1
+ {"version":3,"file":"console.d.ts","sourceRoot":"","sources":["../../src/context/console.ts"],"names":[],"mappings":"AAKA,qBAAa,qBAAqB;IAChC,OAAO,CAAC,MAAM,CAAe;IAC7B,OAAO,CAAC,WAAW,CAA4B;IAE/C,KAAK,IAAI,IAAI;IAKb,OAAO,CAAC,MAAM;IAId,OAAO,CAAC,QAAQ;IAOhB,SAAS,IAAI,MAAM,EAAE;IAIrB,IAAI,IAAI,IAAI;CAIb"}
@@ -1,4 +1,5 @@
1
1
  export interface ErrorSourceEvent {
2
+ name?: string;
2
3
  message: string;
3
4
  source?: string;
4
5
  line?: number;
@@ -1 +1 @@
1
- {"version":3,"file":"error-source.d.ts","sourceRoot":"","sources":["../../src/context/error-source.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,OAAO,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB;AAED,KAAK,aAAa,GAAG,CAAC,KAAK,EAAE,gBAAgB,KAAK,IAAI,CAAA;AAEtD,cAAM,WAAW;IACf,OAAO,CAAC,SAAS,CAA2B;IAC5C,OAAO,CAAC,eAAe,CAAmC;IAC1D,OAAO,CAAC,gBAAgB,CAAmC;IAC3D,OAAO,CAAC,gBAAgB,CAAoD;IAC5E,OAAO,CAAC,MAAM,CAAQ;IAEtB,SAAS,CAAC,QAAQ,EAAE,aAAa,GAAG,MAAM,IAAI;IAS9C,OAAO,CAAC,IAAI;IAqBZ,OAAO,CAAC,MAAM;IAgBd,OAAO,CAAC,IAAI;CAGb;AAED,eAAO,MAAM,WAAW,aAAoB,CAAA"}
1
+ {"version":3,"file":"error-source.d.ts","sourceRoot":"","sources":["../../src/context/error-source.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB;AAED,KAAK,aAAa,GAAG,CAAC,KAAK,EAAE,gBAAgB,KAAK,IAAI,CAAA;AAEtD,cAAM,WAAW;IACf,OAAO,CAAC,SAAS,CAA2B;IAC5C,OAAO,CAAC,eAAe,CAAmC;IAC1D,OAAO,CAAC,gBAAgB,CAAmC;IAC3D,OAAO,CAAC,gBAAgB,CAAoD;IAC5E,OAAO,CAAC,MAAM,CAAQ;IAEtB,SAAS,CAAC,QAAQ,EAAE,aAAa,GAAG,MAAM,IAAI;IAS9C,OAAO,CAAC,IAAI;IAsBZ,OAAO,CAAC,MAAM;IAgBd,OAAO,CAAC,IAAI;CAGb;AAED,eAAO,MAAM,WAAW,aAAoB,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { ErrorSourceEvent } from './error-source';
2
+ export declare function summarizeError(event: ErrorSourceEvent): string;
3
+ //# sourceMappingURL=error-summary.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"error-summary.d.ts","sourceRoot":"","sources":["../../src/context/error-summary.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAEtD,wBAAgB,cAAc,CAAC,KAAK,EAAE,gBAAgB,GAAG,MAAM,CAI9D"}
@@ -1 +1 @@
1
- {"version":3,"file":"frustration.d.ts","sourceRoot":"","sources":["../../src/context/frustration.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,iBAAiB,GACzB,YAAY,GACZ,YAAY,GACZ,kBAAkB,GAClB,cAAc,GACd,YAAY,GACZ,gBAAgB,CAAA;AAEpB,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,iBAAiB,CAAA;IACzB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,SAAS,EAAE,MAAM,CAAA;CAClB;AA6BD,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,YAAY,CAAoB;IACxC,OAAO,CAAC,aAAa,CAAmC;IACxD,OAAO,CAAC,iBAAiB,CAAyB;IAClD,OAAO,CAAC,iBAAiB,CAA4B;IACrD,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,UAAU,CAAI;IACtB,OAAO,CAAC,cAAc,CAAI;IAC1B,OAAO,CAAC,aAAa,CAAI;IACzB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAS;IAE5C,OAAO,CAAC,aAAa,CAAe;IACpC,OAAO,CAAC,qBAAqB,CAA4B;IACzD,OAAO,CAAC,qBAAqB,CAA4B;IACzD,OAAO,CAAC,gBAAgB,CAAK;IAC7B,OAAO,CAAC,kBAAkB,CAAoC;IAC9D,OAAO,CAAC,mBAAmB,CAAoC;IAC/D,OAAO,CAAC,iBAAiB,CAAiC;IAC1D,OAAO,CAAC,aAAa,CAAoB;IACzC,OAAO,CAAC,WAAW,CAAgC;IACnD,OAAO,CAAC,gBAAgB,CAAI;IAC5B,OAAO,CAAC,cAAc,CAAK;gBAEf,aAAa,EAAE,CAAC,KAAK,EAAE,gBAAgB,KAAK,IAAI;IAK5D,KAAK,IAAI,IAAI;IAcb,IAAI,IAAI,IAAI;IAeZ,OAAO,CAAC,uBAAuB;IAe/B,OAAO,CAAC,sBAAsB;IAa9B,OAAO,CAAC,qBAAqB;IAQ7B,OAAO,CAAC,YAAY;IAOpB,OAAO,CAAC,YAAY;IAUpB,OAAO,CAAC,iBAAiB;IAOzB,OAAO,CAAC,gBAAgB;IAWxB,OAAO,CAAC,WAAW;IAwCnB,OAAO,CAAC,gBAAgB;IAmBxB,OAAO,CAAC,gBAAgB;IAmBxB,OAAO,CAAC,qBAAqB;IAS7B,OAAO,CAAC,qBAAqB;IAO7B,OAAO,CAAC,iBAAiB;IAazB,OAAO,CAAC,cAAc;IAmCtB,OAAO,CAAC,iBAAiB;IAwBzB,OAAO,CAAC,iBAAiB;IAazB,OAAO,CAAC,qBAAqB;IAK7B,OAAO,CAAC,gBAAgB;IAcxB,OAAO,CAAC,aAAa;IAmBrB,OAAO,CAAC,WAAW;IAQnB,OAAO,CAAC,gBAAgB;CAKzB"}
1
+ {"version":3,"file":"frustration.d.ts","sourceRoot":"","sources":["../../src/context/frustration.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,iBAAiB,GACzB,YAAY,GACZ,YAAY,GACZ,kBAAkB,GAClB,cAAc,GACd,YAAY,GACZ,gBAAgB,CAAA;AAEpB,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,iBAAiB,CAAA;IACzB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,SAAS,EAAE,MAAM,CAAA;CAClB;AAwCD,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,YAAY,CAAoB;IACxC,OAAO,CAAC,aAAa,CAAmC;IACxD,OAAO,CAAC,iBAAiB,CAAyB;IAClD,OAAO,CAAC,iBAAiB,CAA4B;IACrD,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,UAAU,CAAI;IACtB,OAAO,CAAC,cAAc,CAAI;IAC1B,OAAO,CAAC,aAAa,CAAI;IACzB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAS;IAE5C,OAAO,CAAC,aAAa,CAAe;IACpC,OAAO,CAAC,qBAAqB,CAA4B;IACzD,OAAO,CAAC,qBAAqB,CAA4B;IACzD,OAAO,CAAC,gBAAgB,CAAK;IAC7B,OAAO,CAAC,kBAAkB,CAAoC;IAC9D,OAAO,CAAC,mBAAmB,CAAoC;IAC/D,OAAO,CAAC,iBAAiB,CAAiC;IAC1D,OAAO,CAAC,aAAa,CAAoB;IACzC,OAAO,CAAC,WAAW,CAAgC;IACnD,OAAO,CAAC,gBAAgB,CAAI;IAC5B,OAAO,CAAC,cAAc,CAAK;gBAEf,aAAa,EAAE,CAAC,KAAK,EAAE,gBAAgB,KAAK,IAAI;IAK5D,KAAK,IAAI,IAAI;IAcb,IAAI,IAAI,IAAI;IAeZ,OAAO,CAAC,uBAAuB;IAe/B,OAAO,CAAC,sBAAsB;IAa9B,OAAO,CAAC,qBAAqB;IAQ7B,OAAO,CAAC,YAAY;IAOpB,OAAO,CAAC,YAAY;IAUpB,OAAO,CAAC,iBAAiB;IAOzB,OAAO,CAAC,gBAAgB;IAWxB,OAAO,CAAC,WAAW;IAwCnB,OAAO,CAAC,gBAAgB;IAmBxB,OAAO,CAAC,gBAAgB;IAmBxB,OAAO,CAAC,qBAAqB;IAS7B,OAAO,CAAC,qBAAqB;IAO7B,OAAO,CAAC,iBAAiB;IAazB,OAAO,CAAC,cAAc;IAmCtB,OAAO,CAAC,iBAAiB;IAwBzB,OAAO,CAAC,iBAAiB;IAazB,OAAO,CAAC,qBAAqB;IAK7B,OAAO,CAAC,gBAAgB;IAcxB,OAAO,CAAC,aAAa;IAmBrB,OAAO,CAAC,WAAW;IAQnB,OAAO,CAAC,gBAAgB;CAKzB"}
package/dist/i18n/de.d.ts CHANGED
@@ -4,6 +4,7 @@ declare const _default: {
4
4
  markup: string;
5
5
  record: string;
6
6
  hint: string;
7
+ hintTouch: string;
7
8
  hintRecord: string;
8
9
  exit: string;
9
10
  };
@@ -1 +1 @@
1
- {"version":3,"file":"de.d.ts","sourceRoot":"","sources":["../../src/i18n/de.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA6EC"}
1
+ {"version":3,"file":"de.d.ts","sourceRoot":"","sources":["../../src/i18n/de.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA8EC"}
package/dist/i18n/en.d.ts CHANGED
@@ -4,6 +4,7 @@ declare const _default: {
4
4
  markup: string;
5
5
  record: string;
6
6
  hint: string;
7
+ hintTouch: string;
7
8
  hintRecord: string;
8
9
  exit: string;
9
10
  };
@@ -1 +1 @@
1
- {"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA6EC"}
1
+ {"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA8EC"}
package/dist/i18n/es.d.ts CHANGED
@@ -4,6 +4,7 @@ declare const _default: {
4
4
  markup: string;
5
5
  record: string;
6
6
  hint: string;
7
+ hintTouch: string;
7
8
  hintRecord: string;
8
9
  exit: string;
9
10
  };
@@ -1 +1 @@
1
- {"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../src/i18n/es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA6EC"}
1
+ {"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../src/i18n/es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA8EC"}
package/dist/i18n/fr.d.ts CHANGED
@@ -4,6 +4,7 @@ declare const _default: {
4
4
  markup: string;
5
5
  record: string;
6
6
  hint: string;
7
+ hintTouch: string;
7
8
  hintRecord: string;
8
9
  exit: string;
9
10
  };
@@ -1 +1 @@
1
- {"version":3,"file":"fr.d.ts","sourceRoot":"","sources":["../../src/i18n/fr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA6EC"}
1
+ {"version":3,"file":"fr.d.ts","sourceRoot":"","sources":["../../src/i18n/fr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA8EC"}
package/dist/i18n/ja.d.ts CHANGED
@@ -4,6 +4,7 @@ declare const _default: {
4
4
  markup: string;
5
5
  record: string;
6
6
  hint: string;
7
+ hintTouch: string;
7
8
  hintRecord: string;
8
9
  exit: string;
9
10
  };
@@ -1 +1 @@
1
- {"version":3,"file":"ja.d.ts","sourceRoot":"","sources":["../../src/i18n/ja.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA6EC"}
1
+ {"version":3,"file":"ja.d.ts","sourceRoot":"","sources":["../../src/i18n/ja.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA8EC"}
package/dist/i18n/ko.d.ts CHANGED
@@ -4,6 +4,7 @@ declare const _default: {
4
4
  markup: string;
5
5
  record: string;
6
6
  hint: string;
7
+ hintTouch: string;
7
8
  hintRecord: string;
8
9
  exit: string;
9
10
  };
@@ -1 +1 @@
1
- {"version":3,"file":"ko.d.ts","sourceRoot":"","sources":["../../src/i18n/ko.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA6EC"}
1
+ {"version":3,"file":"ko.d.ts","sourceRoot":"","sources":["../../src/i18n/ko.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA8EC"}
@@ -4,6 +4,7 @@ declare const _default: {
4
4
  markup: string;
5
5
  record: string;
6
6
  hint: string;
7
+ hintTouch: string;
7
8
  hintRecord: string;
8
9
  exit: string;
9
10
  };
@@ -1 +1 @@
1
- {"version":3,"file":"zh-CN.d.ts","sourceRoot":"","sources":["../../src/i18n/zh-CN.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA6EC"}
1
+ {"version":3,"file":"zh-CN.d.ts","sourceRoot":"","sources":["../../src/i18n/zh-CN.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA8EC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AAKnD,QAAA,MAAM,cAAc;iBACL,oBAAoB,GAAG,IAAI;eAe7B,IAAI;sBAMG,MAAM,GAAG,IAAI;IAK/B;;;;OAIG;YACK,IAAI;aAIH,IAAI;oBAIG,IAAI;oBAIJ,IAAI;CAGrB,CAAA;AAED,OAAO,EAAE,cAAc,EAAE,CAAA;AACzB,YAAY,EAAE,oBAAoB,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AAgBnD,QAAA,MAAM,cAAc;iBACL,oBAAoB,GAAG,IAAI;eAkB7B,IAAI;sBAOG,MAAM,GAAG,IAAI;IAK/B;;;;OAIG;YACK,IAAI;aAIH,IAAI;oBAIG,IAAI;oBAIJ,IAAI;CAGrB,CAAA;AAED,OAAO,EAAE,cAAc,EAAE,CAAA;AACzB,YAAY,EAAE,oBAAoB,EAAE,CAAA"}