@redneckz/wildless-cms-uni-blocks 0.14.643 → 0.14.644
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/bundle/bundle.umd.js +6 -2
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/utils/url.js +5 -1
- package/dist/utils/url.js.map +1 -1
- package/lib/components/OfficesAtmsMap/OfficesAtmsMapLayout.d.ts +1 -1
- package/lib/utils/url.js +5 -1
- package/lib/utils/url.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +6 -2
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/utils/url.js +5 -1
- package/mobile/dist/utils/url.js.map +1 -1
- package/mobile/lib/utils/url.js +5 -1
- package/mobile/lib/utils/url.js.map +1 -1
- package/mobile/src/utils/url.ts +5 -1
- package/package.json +1 -1
- package/src/utils/url.ts +5 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -239,7 +239,11 @@
|
|
|
239
239
|
.filter(Boolean)
|
|
240
240
|
.join('/')
|
|
241
241
|
.replace(/\/+/g, '/')
|
|
242
|
-
.replace(/^(.+):\//, '$1://')
|
|
242
|
+
.replace(/^(.+):\//, '$1://')
|
|
243
|
+
.replace(/^file:/, 'file:/')
|
|
244
|
+
.replace(/\/(\?|&|#[^!])/g, '$1')
|
|
245
|
+
.replace(/\?/g, '&')
|
|
246
|
+
.replace('&', '?');
|
|
243
247
|
const hasPrefix = (href, prefix) => {
|
|
244
248
|
if (!href || !prefix) {
|
|
245
249
|
return false;
|
|
@@ -8835,7 +8839,7 @@
|
|
|
8835
8839
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
8836
8840
|
});
|
|
8837
8841
|
|
|
8838
|
-
const packageVersion = "0.14.
|
|
8842
|
+
const packageVersion = "0.14.643";
|
|
8839
8843
|
|
|
8840
8844
|
exports.Blocks = Blocks;
|
|
8841
8845
|
exports.ContentPage = ContentPage;
|