@redneckz/wildless-cms-uni-blocks 0.14.271 → 0.14.273
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 +2 -4
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/Blocks.mobile.js +2 -0
- package/dist/components/Blocks.mobile.js.map +1 -1
- package/dist/components/LinkDocs/LinkDocs.js +1 -3
- package/dist/components/LinkDocs/LinkDocs.js.map +1 -1
- package/lib/components/BankAccountFiltration/BankAccountFiltration.fixture.mobile.d.ts +6 -0
- package/lib/components/Blocks.mobile.js +2 -0
- package/lib/components/Blocks.mobile.js.map +1 -1
- package/lib/components/LinkDocs/LinkDocs.js +1 -3
- package/lib/components/LinkDocs/LinkDocs.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +279 -246
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/Blocks.js +2 -0
- package/mobile/dist/components/Blocks.js.map +1 -1
- package/mobile/dist/components/LinkDocs/LinkDocs.js +1 -3
- package/mobile/dist/components/LinkDocs/LinkDocs.js.map +1 -1
- package/mobile/lib/components/Blocks.js +2 -0
- package/mobile/lib/components/Blocks.js.map +1 -1
- package/mobile/lib/components/LinkDocs/LinkDocs.js +1 -3
- package/mobile/lib/components/LinkDocs/LinkDocs.js.map +1 -1
- package/mobile/src/components/Blocks.ts +2 -0
- package/mobile/src/components/LinkDocs/LinkDocs.tsx +4 -4
- package/package.json +1 -1
- package/src/components/BankAccountFiltration/BankAccountFiltration.fixture.mobile.tsx +141 -0
- package/src/components/Blocks.mobile.ts +2 -0
- package/src/components/LinkDocs/LinkDocs.tsx +4 -4
- package/src/icons/IconName.ts +0 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -4560,9 +4560,7 @@
|
|
|
4560
4560
|
if (docBlockDef?.docType === '') {
|
|
4561
4561
|
return null;
|
|
4562
4562
|
}
|
|
4563
|
-
const href = docBlockDef?.docType === 'Attachment'
|
|
4564
|
-
? adjustHref(router)(docBlockDef?.attachment?.src)
|
|
4565
|
-
: docBlockDef?.href;
|
|
4563
|
+
const href = adjustHref(router)(docBlockDef?.docType === 'Attachment' ? docBlockDef?.attachment?.src : docBlockDef?.href);
|
|
4566
4564
|
const fileSize = docBlockDef?.docType === 'Attachment'
|
|
4567
4565
|
? formatBytes(docBlockDef?.attachment?.fileSize || 0)
|
|
4568
4566
|
: docBlockDef?.fileSize;
|
|
@@ -6128,7 +6126,7 @@
|
|
|
6128
6126
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6129
6127
|
});
|
|
6130
6128
|
|
|
6131
|
-
const packageVersion = "0.14.
|
|
6129
|
+
const packageVersion = "0.14.272";
|
|
6132
6130
|
|
|
6133
6131
|
exports.Blocks = Blocks;
|
|
6134
6132
|
exports.ContentPage = ContentPage;
|