@speedkit/cli 3.22.0 → 3.23.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
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
# [3.23.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.22.0...v3.23.0) (2026-01-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **customer-config:** add a timeout to wait for potential click listeners to be completed ([36aba47](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/36aba475854d8a873a31a464c5e0e68302d2cdd9))
|
|
7
|
+
* **customer-config:** include comment about hard navigation execution ([f0fdac6](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/f0fdac631a90e818e6ed4ce3d9b3c8482df3f3aa))
|
|
8
|
+
|
|
1
9
|
# [3.22.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.21.0...v3.22.0) (2026-01-30)
|
|
2
10
|
|
|
3
11
|
|
package/README.md
CHANGED
|
@@ -449,9 +449,12 @@ import { PredictivePreloading } from 'predictive-preloading/predictivePreloading
|
|
|
449
449
|
|
|
450
450
|
// Prevent soft navigation
|
|
451
451
|
event.preventDefault();
|
|
452
|
+
setTimeout(() => {
|
|
453
|
+
// let potential click listener be completed
|
|
452
454
|
|
|
453
|
-
|
|
454
|
-
|
|
455
|
+
//Execute hard navigation instead
|
|
456
|
+
location.href = target.href;
|
|
457
|
+
});
|
|
455
458
|
}
|
|
456
459
|
window.addEventListener("click", speedKitClickEventListener, true);
|
|
457
460
|
}
|
package/oclif.manifest.json
CHANGED