@pixelverse/strichjs-sdk 1.3.0 → 1.3.1
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/CHANGELOG.md +10 -0
- package/dist/strich.d.ts +4 -0
- package/dist/strich.js +1 -1
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.3.1] - 2023-10-14
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added configuration option `focusOnTap` (default: `true`) to overlay configuration: this toggles the autofocus that occurs when tapping on the overlay. Previously focusing on tap was always enabled.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Adapted license service calls in order to re-enable detailed usage stats in Customer Portal using Client Hints. No changes to existing Content Security Policies are necessary.
|
|
12
|
+
|
|
3
13
|
## [1.3.0] - 2023-09-20
|
|
4
14
|
|
|
5
15
|
### Added
|
package/dist/strich.d.ts
CHANGED
|
@@ -232,6 +232,10 @@ export interface OverlayConfiguration {
|
|
|
232
232
|
* @default true
|
|
233
233
|
*/
|
|
234
234
|
showFlashlight?: boolean;
|
|
235
|
+
/**
|
|
236
|
+
* @default true (where supported)
|
|
237
|
+
*/
|
|
238
|
+
focusOnTap?: boolean;
|
|
235
239
|
/**
|
|
236
240
|
* Override the STRICH logo displayed in the bottom-right corner with a custom image.
|
|
237
241
|
*
|