@appcues/web-sdk 7.7.5 → 7.11.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 +54 -0
- package/README.md +1 -1
- package/build/{index.CqR_XnNb.js → index.CJIQdw-Y.js} +721 -716
- package/build/{index.9GXuIaQi.js → index.DH6u0iuG.js} +1 -1
- package/build/{index.npm.CfqWFIRl.js → index.npm.BCTxf1Tq.js} +1 -1
- package/build/index.npm.js +1 -1
- package/build/open-builder.DxQABU78.js +9416 -0
- package/package.json +26 -29
- package/build/open-builder.CNK6T74R.js +0 -9186
- /package/build/{checklist.5f4099830587e6584504e8ee75172b2f2fc9baf4.css → checklist.a78f4df397e3b099a535f68c857dd828db518b74.css} +0 -0
- /package/build/{container.5f4099830587e6584504e8ee75172b2f2fc9baf4.css → container.a78f4df397e3b099a535f68c857dd828db518b74.css} +0 -0
- /package/build/{debugger.5f4099830587e6584504e8ee75172b2f2fc9baf4.css → debugger.a78f4df397e3b099a535f68c857dd828db518b74.css} +0 -0
- /package/build/{modal-step-legacy-render.5f4099830587e6584504e8ee75172b2f2fc9baf4.css → modal-step-legacy-render.a78f4df397e3b099a535f68c857dd828db518b74.css} +0 -0
- /package/build/{modal.5f4099830587e6584504e8ee75172b2f2fc9baf4.css → modal.a78f4df397e3b099a535f68c857dd828db518b74.css} +0 -0
- /package/build/{satisfaction-survey.5f4099830587e6584504e8ee75172b2f2fc9baf4.css → satisfaction-survey.a78f4df397e3b099a535f68c857dd828db518b74.css} +0 -0
- /package/build/{test-mode.5f4099830587e6584504e8ee75172b2f2fc9baf4.css → test-mode.a78f4df397e3b099a535f68c857dd828db518b74.css} +0 -0
- /package/build/{tooltip.5f4099830587e6584504e8ee75172b2f2fc9baf4.css → tooltip.a78f4df397e3b099a535f68c857dd828db518b74.css} +0 -0
package/package.json
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appcues/web-sdk",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.11.1",
|
|
4
4
|
"description": "The Appcues Javascript SDK",
|
|
5
5
|
"main": "build/index.npm.js",
|
|
6
6
|
"types": "build/index.npm.d.ts",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"appcues",
|
|
9
|
+
"sdk",
|
|
10
|
+
"web-sdk",
|
|
11
|
+
"digital_adoption",
|
|
12
|
+
"banners",
|
|
13
|
+
"tooltips",
|
|
14
|
+
"checklists",
|
|
15
|
+
"modals",
|
|
16
|
+
"flows",
|
|
17
|
+
"onboarding"
|
|
18
|
+
],
|
|
7
19
|
"engines": {
|
|
8
20
|
"node": ">=23",
|
|
9
21
|
"npm": ">=8"
|
|
@@ -35,10 +47,11 @@
|
|
|
35
47
|
"e2e": "turbo run build:sdk --env-mode=loose && concurrently \"servor ./build/$APPCUES_ENV/ index.html 8082 --secure\" \"playwright test\"",
|
|
36
48
|
"e2e:ci": "concurrently --kill-others --success first \"servor ./build/$APPCUES_ENV/ index.html 8082 --secure\" \"playwright test\"",
|
|
37
49
|
"e2e:ui": "turbo run build:sdk --env-mode=loose && concurrently \"servor ./build/$APPCUES_ENV/ index.html 8082 --secure\" \"playwright test --ui\"",
|
|
38
|
-
"test": "
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"test:
|
|
50
|
+
"test": "NODE_ENV=test NODE_OPTIONS='--no-deprecation' vitest run",
|
|
51
|
+
"test:watch": "NODE_ENV=test NODE_OPTIONS='--no-deprecation' vitest watch",
|
|
52
|
+
"test:ui": "NODE_ENV=test NODE_OPTIONS='--no-deprecation' vitest --ui",
|
|
53
|
+
"test:coverage": "NODE_ENV=test NODE_OPTIONS='--no-deprecation' vitest run --coverage",
|
|
54
|
+
"test:ci": "NODE_ENV=test NODE_OPTIONS='--no-deprecation' vitest run --reporter=verbose --reporter=junit --outputFile=./test-results/junit-vitest.xml"
|
|
42
55
|
},
|
|
43
56
|
"repository": {
|
|
44
57
|
"type": "git",
|
|
@@ -48,35 +61,20 @@
|
|
|
48
61
|
"devDependencies": {
|
|
49
62
|
"@appcues/opscues": "^0.5.0",
|
|
50
63
|
"@appcues/stylecues": "^2.2.1",
|
|
64
|
+
"@aws-sdk/client-s3": "^3.958.0",
|
|
51
65
|
"@types/glob": "^8.1.0",
|
|
52
|
-
"
|
|
53
|
-
"
|
|
66
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
67
|
+
"@vitest/ui": "^4.0.16",
|
|
54
68
|
"bourbon": "^4.2.7",
|
|
55
|
-
"chai": "^3.4.1",
|
|
56
|
-
"chai-as-promised": "^5.2.0",
|
|
57
|
-
"chai-dom": "1.8.0",
|
|
58
69
|
"clone": "^2.1.2",
|
|
59
70
|
"concurrently": "^6.4.0",
|
|
60
71
|
"cross-env": "^7.0.3",
|
|
61
72
|
"deep-freeze": "0.0.1",
|
|
62
73
|
"dom-testing-library": "^3.11.3",
|
|
63
74
|
"glob": "^11.0.3",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"karma-browserstack-launcher": "^1.6.0",
|
|
67
|
-
"karma-chai": "^0.1.0",
|
|
68
|
-
"karma-chai-as-promised": "^0.1.2",
|
|
69
|
-
"karma-chai-dom": "^1.1.0",
|
|
70
|
-
"karma-chai-sinon": "^0.1.4",
|
|
71
|
-
"karma-chrome-launcher": "^3.2.0",
|
|
72
|
-
"karma-coverage": "^0.5.3",
|
|
73
|
-
"karma-firefox-launcher": "^0.1.7",
|
|
74
|
-
"karma-mocha": "^2.0.1",
|
|
75
|
-
"karma-mocha-reporter": "^2.2.5",
|
|
76
|
-
"karma-sinon": "^1.0.4",
|
|
77
|
-
"karma-vite": "^1.0.5",
|
|
75
|
+
"happy-dom": "^20.0.11",
|
|
76
|
+
"jsdom": "^27.3.0",
|
|
78
77
|
"lodash-match-pattern": "^1.1.0",
|
|
79
|
-
"mocha": "^2.3.4",
|
|
80
78
|
"mock-raf": "^0.1.0",
|
|
81
79
|
"node-sass": "npm:sass@^1.54.0",
|
|
82
80
|
"redux-logger": "^3.0.6",
|
|
@@ -84,12 +82,11 @@
|
|
|
84
82
|
"sanitize-html": "^2.3.3",
|
|
85
83
|
"sass-embedded": "^1.90.0",
|
|
86
84
|
"simulant": "^0.2.2",
|
|
87
|
-
"sinon": "^1.17.2",
|
|
88
|
-
"sinon-chai": "^2.8.0",
|
|
89
85
|
"typescript": "^5.9.2",
|
|
90
|
-
"vite": "^7.
|
|
86
|
+
"vite": "^7.3.0",
|
|
91
87
|
"vite-plugin-checker": "^0.10.2",
|
|
92
|
-
"vite-tsconfig-paths": "^
|
|
88
|
+
"vite-tsconfig-paths": "^6.0.3",
|
|
89
|
+
"vitest": "^4.0.16"
|
|
93
90
|
},
|
|
94
91
|
"dependencies": {
|
|
95
92
|
"@webcomponents/custom-elements": "^1.6.0",
|