@saasquatch/squatch-js 2.8.0 → 2.8.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 +8 -1
- package/README.md +3 -11
- package/coverage/clover.xml +944 -0
- package/coverage/coverage-final.json +22 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov.info +1714 -0
- package/dist/squatch.cjs.js +19 -15
- package/dist/squatch.cjs.js.map +1 -1
- package/dist/squatch.d.ts +1 -1
- package/dist/squatch.esm.js +19 -15
- package/dist/squatch.esm.js.map +1 -1
- package/dist/squatch.js +19 -15
- package/dist/squatch.js.map +1 -1
- package/dist/squatch.min.js +1 -1
- package/dist/utils/utmUtils.d.ts +1 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.8.1] - 2025-11-17
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Prevent overriding of API domain with auto popups
|
|
15
|
+
|
|
10
16
|
## [2.8.0] - 2025-10-22
|
|
11
17
|
|
|
12
18
|
### Added
|
|
@@ -387,7 +393,8 @@ No release notes.
|
|
|
387
393
|
|
|
388
394
|
No release notes.
|
|
389
395
|
|
|
390
|
-
[unreleased]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.8.
|
|
396
|
+
[unreleased]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.8.1...HEAD
|
|
397
|
+
[2.8.1]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.7.0...@saasquatch%2Fsquatch-js@2.8.1
|
|
391
398
|
[2.8.0]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.7.0...@saasquatch%2Fsquatch-js@2.8.0
|
|
392
399
|
[2.7.0]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.6.3...@saasquatch%2Fsquatch-js@2.7.0
|
|
393
400
|
[2.6.3]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.6.2...@saasquatch%2Fsquatch-js@2.6.3
|
package/README.md
CHANGED
|
@@ -197,19 +197,11 @@ squatch.api().upsertUser({...});
|
|
|
197
197
|
### `squatch-popup`
|
|
198
198
|
|
|
199
199
|
```html
|
|
200
|
-
<squatch-
|
|
201
|
-
widget="WIDGET_TYPE"
|
|
202
|
-
[
|
|
203
|
-
open
|
|
204
|
-
|
|
|
205
|
-
container="#selector"
|
|
206
|
-
|
|
|
207
|
-
locale="en_US"
|
|
208
|
-
]
|
|
209
|
-
>
|
|
200
|
+
<squatch-popup
|
|
201
|
+
widget="WIDGET_TYPE" [ open | container="#selector" | locale="en_US" ]>
|
|
210
202
|
<!-- Clicking a child of squatch-popup opens the popup -->
|
|
211
203
|
<button>Click me to open</button>
|
|
212
|
-
</squatch-
|
|
204
|
+
</squatch-popup>
|
|
213
205
|
```
|
|
214
206
|
|
|
215
207
|
- `widget: string`: Specifies the SaaSquatch `widgetType` identifier of the desired widget
|