@saasquatch/squatch-js 2.7.0-3 → 2.7.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/CHANGELOG.md +9 -1
- package/dist/squatch.cjs.js +2119 -7
- package/dist/squatch.cjs.js.map +1 -1
- package/dist/squatch.esm.js +2161 -0
- package/dist/squatch.esm.js.map +1 -0
- package/dist/squatch.js +2125 -9
- package/dist/squatch.js.map +1 -1
- package/dist/squatch.min.js +6 -0
- package/package.json +10 -9
- package/vite.config.ts +10 -3
- package/coverage/clover.xml +0 -917
- package/coverage/coverage-final.json +0 -21
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -196
- package/coverage/lcov.info +0 -1669
- package/dist/squatch.es.js +0 -1623
- package/dist/squatch.es.js.map +0 -1
- package/dist copy/api/AnalyticsApi.d.ts +0 -32
- package/dist copy/api/EventsApi.d.ts +0 -52
- package/dist copy/api/WidgetApi.d.ts +0 -64
- package/dist copy/api/graphql.d.ts +0 -1
- package/dist copy/async.d.ts +0 -20
- package/dist copy/docs.d.ts +0 -1
- package/dist copy/globals.d.ts +0 -4
- package/dist copy/squatch.cjs.js +0 -48
- package/dist copy/squatch.d.ts +0 -122
- package/dist copy/squatch.es.js +0 -1622
- package/dist copy/squatch.esm.js +0 -2317
- package/dist copy/squatch.esm.js.map +0 -1
- package/dist copy/squatch.js +0 -2337
- package/dist copy/squatch.js.map +0 -1
- package/dist copy/types.d.ts +0 -109
- package/dist copy/utils/cookieUtils.d.ts +0 -3
- package/dist copy/utils/decodeUserJwt.d.ts +0 -2
- package/dist copy/utils/domready.d.ts +0 -6
- package/dist copy/utils/io.d.ts +0 -5
- package/dist copy/utils/utmUtils.d.ts +0 -14
- package/dist copy/utils/validate.d.ts +0 -12
- package/dist copy/widgets/EmbedWidget.d.ts +0 -25
- package/dist copy/widgets/PopupWidget.d.ts +0 -30
- package/dist copy/widgets/Widget.d.ts +0 -57
- package/dist copy/widgets/Widgets.d.ts +0 -112
- package/dist copy/widgets/declarative/DeclarativeWidget.d.ts +0 -100
- package/dist copy/widgets/declarative/DeclarativeWidgets.d.ts +0 -35
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.7.0] - 2025-05-14
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Updated package to use `vite` for the build instead of `webpack`
|
|
15
|
+
- Fixes issue where `define` in webpack's UMD build could have conflicts within certain environments
|
|
16
|
+
|
|
10
17
|
## [2.6.3] - 2024-06-10
|
|
11
18
|
|
|
12
19
|
### Fixed
|
|
@@ -363,7 +370,8 @@ No release notes.
|
|
|
363
370
|
|
|
364
371
|
No release notes.
|
|
365
372
|
|
|
366
|
-
[unreleased]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.
|
|
373
|
+
[unreleased]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.7.0...HEAD
|
|
374
|
+
[2.7.0]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.6.3...@saasquatch%2Fsquatch-js@2.7.0
|
|
367
375
|
[2.6.3]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.6.2...@saasquatch%2Fsquatch-js@2.6.3
|
|
368
376
|
[2.6.2]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.6.1...@saasquatch%2Fsquatch-js@2.6.2
|
|
369
377
|
[2.6.1]: https://github.com/saasquatch/squatch-js/compare/@saasquatch%2Fsquatch-js@2.6.0...@saasquatch%2Fsquatch-js@2.6.1
|