@saasquatch/squatch-js 2.8.2-8 → 2.8.2
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 -7
- 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 -457
- package/dist/squatch.cjs.js.map +1 -1
- package/dist/squatch.esm.js +19 -457
- package/dist/squatch.esm.js.map +1 -1
- package/dist/squatch.js +19 -457
- package/dist/squatch.js.map +1 -1
- package/dist/squatch.min.js +2 -2
- package/dist/widgets/Widget.d.ts +0 -1
- package/package.json +1 -1
- package/dist/widgets/SkeletonTemplate.d.ts +0 -12
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.2] - 2026-03-16
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fixed bug where brandingConfig was not being applied to auto-popup widgets
|
|
15
|
+
|
|
10
16
|
## [2.8.1] - 2025-11-17
|
|
11
17
|
|
|
12
18
|
### Fixed
|
|
@@ -60,9 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
60
66
|
### Added
|
|
61
67
|
|
|
62
68
|
- SquatchJS now supports declarative widget initialization
|
|
63
|
-
|
|
64
69
|
- For rendering widgets and API calls, squatchjs respects configurations set on the following:
|
|
65
|
-
|
|
66
70
|
- `window.squatchToken`: Signed JWT for calls to the SaaSquatch API -- [How to generate valid JWT Tokens](https://docs.saasquatch.com/topics/json-web-tokens#example-building-the-jwt)
|
|
67
71
|
- `window.squatchTenant`: SaaSquatch tenant alias
|
|
68
72
|
- `window.squatchConfig`: Additional configuration overrides (Optional)
|
|
@@ -72,9 +76,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
72
76
|
- Note: If window.squatchToken is undefined, widgets will be rendered as [Instant Access widgets.](https://docs.saasquatch.com/topics/widget-types#instant-access-widgets)
|
|
73
77
|
|
|
74
78
|
- Widget components added:
|
|
75
|
-
|
|
76
79
|
- `<squatch-embed></squatch-embed>`
|
|
77
|
-
|
|
78
80
|
- widget: Specifies the SaaSquatch widgetType identifier of the desired widget
|
|
79
81
|
- Required
|
|
80
82
|
- Changing this attribute's value causes the widget to reload
|
|
@@ -180,7 +182,6 @@ squatch
|
|
|
180
182
|
### Changed
|
|
181
183
|
|
|
182
184
|
- EmbedWidget now supports a `container` as either a selector or an HTMLElement as a parameter
|
|
183
|
-
|
|
184
185
|
- Widget contents will be loaded in a hidden widget and can be opened and closed with `widget.open()` and `widget.close()`
|
|
185
186
|
|
|
186
187
|
- Example:
|
|
@@ -212,7 +213,6 @@ squatch
|
|
|
212
213
|
```
|
|
213
214
|
|
|
214
215
|
- PopupWidget now supports a `trigger` as a selector
|
|
215
|
-
|
|
216
216
|
- provides the ability to use a class other than `.squatchpop` for opening the widget
|
|
217
217
|
|
|
218
218
|
- `sq:refresh` event is sent when `.open()` is called on EmbedWidget and PopupWidget
|
|
@@ -393,7 +393,8 @@ No release notes.
|
|
|
393
393
|
|
|
394
394
|
No release notes.
|
|
395
395
|
|
|
396
|
-
[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.2...HEAD
|
|
397
|
+
[2.8.2]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.7.0...@saasquatch%2Fsquatch-js@2.8.2
|
|
397
398
|
[2.8.1]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.7.0...@saasquatch%2Fsquatch-js@2.8.1
|
|
398
399
|
[2.8.0]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.7.0...@saasquatch%2Fsquatch-js@2.8.0
|
|
399
400
|
[2.7.0]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.6.3...@saasquatch%2Fsquatch-js@2.7.0
|