@redneckz/wildless-cms-uni-blocks 0.14.800 → 0.14.802
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 +3 -3
- package/bundle/bundle.umd.min.js +1 -1
- package/bundle/model/FormTypeFieldDef.d.ts +1 -1
- package/dist/components/ApplicationLeadForm/parseEsiaProfile.js +1 -1
- package/dist/components/ApplicationLeadForm/parseEsiaProfile.js.map +1 -1
- package/dist/components/Header/useChatBot.js +1 -1
- package/dist/components/Header/useChatBot.js.map +1 -1
- package/dist/model/FormTypeFieldDef.d.ts +1 -1
- package/lib/components/ApplicationForm/ApplicationForm.fixture.d.ts +1 -0
- package/lib/components/ApplicationForm/ApplicationForm.fixture.mobile.d.ts +1 -0
- package/lib/components/ApplicationLeadForm/parseEsiaProfile.js +1 -1
- package/lib/components/ApplicationLeadForm/parseEsiaProfile.js.map +1 -1
- package/lib/components/Header/useChatBot.js +1 -1
- package/lib/components/Header/useChatBot.js.map +1 -1
- package/lib/model/FormTypeFieldDef.d.ts +1 -1
- package/mobile/bundle/bundle.umd.js +3 -3
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/model/FormTypeFieldDef.d.ts +1 -1
- package/mobile/dist/components/ApplicationLeadForm/parseEsiaProfile.js +1 -1
- package/mobile/dist/components/ApplicationLeadForm/parseEsiaProfile.js.map +1 -1
- package/mobile/dist/components/Header/useChatBot.js +1 -1
- package/mobile/dist/components/Header/useChatBot.js.map +1 -1
- package/mobile/dist/model/FormTypeFieldDef.d.ts +1 -1
- package/mobile/lib/components/ApplicationLeadForm/parseEsiaProfile.js +1 -1
- package/mobile/lib/components/ApplicationLeadForm/parseEsiaProfile.js.map +1 -1
- package/mobile/lib/components/Header/useChatBot.js +1 -1
- package/mobile/lib/components/Header/useChatBot.js.map +1 -1
- package/mobile/lib/model/FormTypeFieldDef.d.ts +1 -1
- package/mobile/src/components/ApplicationForm/ApplicationForm.example.json +56 -0
- package/mobile/src/components/ApplicationLeadForm/parseEsiaProfile.ts +1 -1
- package/mobile/src/components/Header/useChatBot.ts +1 -1
- package/mobile/src/model/FormTypeFieldDef.ts +2 -1
- package/package.json +1 -1
- package/src/components/ApplicationForm/ApplicationForm.example.json +56 -0
- package/src/components/ApplicationForm/ApplicationForm.fixture.mobile.tsx +27 -0
- package/src/components/ApplicationForm/ApplicationForm.fixture.tsx +27 -0
- package/src/components/ApplicationLeadForm/parseEsiaProfile.ts +1 -1
- package/src/components/Header/useChatBot.ts +1 -1
- package/src/model/FormTypeFieldDef.ts +2 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -5961,7 +5961,7 @@
|
|
|
5961
5961
|
};
|
|
5962
5962
|
const getYearFromMonth = (month) => Math.floor(month / 12);
|
|
5963
5963
|
const saveDocument = async ({ document, taskId, category, files, }) => {
|
|
5964
|
-
await fetch(`data:
|
|
5964
|
+
await fetch(`data:application/pdf;base64,${document}`)
|
|
5965
5965
|
.then((res) => res.blob())
|
|
5966
5966
|
.then((value) => uploadFile(value, taskId, category))
|
|
5967
5967
|
.then((file) => files.push(file));
|
|
@@ -9987,7 +9987,7 @@
|
|
|
9987
9987
|
const createChatFrame = () => {
|
|
9988
9988
|
const chatFrame = globalThis.document.createElement('div');
|
|
9989
9989
|
chatFrame.id = CHAT_FRAME_ID;
|
|
9990
|
-
chatFrame.className = 'fixed right-0 bottom-0 h-full w-full z-
|
|
9990
|
+
chatFrame.className = 'fixed right-0 bottom-0 h-full w-full z-[100] @3xl:w-auto h-fit';
|
|
9991
9991
|
globalThis.document.body.appendChild(chatFrame);
|
|
9992
9992
|
};
|
|
9993
9993
|
|
|
@@ -11461,7 +11461,7 @@
|
|
|
11461
11461
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
11462
11462
|
});
|
|
11463
11463
|
|
|
11464
|
-
const packageVersion = "0.14.
|
|
11464
|
+
const packageVersion = "0.14.801";
|
|
11465
11465
|
|
|
11466
11466
|
exports.Blocks = Blocks;
|
|
11467
11467
|
exports.ContentPage = ContentPage;
|