@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.
Files changed (39) hide show
  1. package/bundle/bundle.umd.js +3 -3
  2. package/bundle/bundle.umd.min.js +1 -1
  3. package/bundle/model/FormTypeFieldDef.d.ts +1 -1
  4. package/dist/components/ApplicationLeadForm/parseEsiaProfile.js +1 -1
  5. package/dist/components/ApplicationLeadForm/parseEsiaProfile.js.map +1 -1
  6. package/dist/components/Header/useChatBot.js +1 -1
  7. package/dist/components/Header/useChatBot.js.map +1 -1
  8. package/dist/model/FormTypeFieldDef.d.ts +1 -1
  9. package/lib/components/ApplicationForm/ApplicationForm.fixture.d.ts +1 -0
  10. package/lib/components/ApplicationForm/ApplicationForm.fixture.mobile.d.ts +1 -0
  11. package/lib/components/ApplicationLeadForm/parseEsiaProfile.js +1 -1
  12. package/lib/components/ApplicationLeadForm/parseEsiaProfile.js.map +1 -1
  13. package/lib/components/Header/useChatBot.js +1 -1
  14. package/lib/components/Header/useChatBot.js.map +1 -1
  15. package/lib/model/FormTypeFieldDef.d.ts +1 -1
  16. package/mobile/bundle/bundle.umd.js +3 -3
  17. package/mobile/bundle/bundle.umd.min.js +1 -1
  18. package/mobile/bundle/model/FormTypeFieldDef.d.ts +1 -1
  19. package/mobile/dist/components/ApplicationLeadForm/parseEsiaProfile.js +1 -1
  20. package/mobile/dist/components/ApplicationLeadForm/parseEsiaProfile.js.map +1 -1
  21. package/mobile/dist/components/Header/useChatBot.js +1 -1
  22. package/mobile/dist/components/Header/useChatBot.js.map +1 -1
  23. package/mobile/dist/model/FormTypeFieldDef.d.ts +1 -1
  24. package/mobile/lib/components/ApplicationLeadForm/parseEsiaProfile.js +1 -1
  25. package/mobile/lib/components/ApplicationLeadForm/parseEsiaProfile.js.map +1 -1
  26. package/mobile/lib/components/Header/useChatBot.js +1 -1
  27. package/mobile/lib/components/Header/useChatBot.js.map +1 -1
  28. package/mobile/lib/model/FormTypeFieldDef.d.ts +1 -1
  29. package/mobile/src/components/ApplicationForm/ApplicationForm.example.json +56 -0
  30. package/mobile/src/components/ApplicationLeadForm/parseEsiaProfile.ts +1 -1
  31. package/mobile/src/components/Header/useChatBot.ts +1 -1
  32. package/mobile/src/model/FormTypeFieldDef.ts +2 -1
  33. package/package.json +1 -1
  34. package/src/components/ApplicationForm/ApplicationForm.example.json +56 -0
  35. package/src/components/ApplicationForm/ApplicationForm.fixture.mobile.tsx +27 -0
  36. package/src/components/ApplicationForm/ApplicationForm.fixture.tsx +27 -0
  37. package/src/components/ApplicationLeadForm/parseEsiaProfile.ts +1 -1
  38. package/src/components/Header/useChatBot.ts +1 -1
  39. package/src/model/FormTypeFieldDef.ts +2 -1
@@ -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:'application/pdf';base64,${document}`)
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-10 @3xl:w-auto h-fit';
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.799";
11464
+ const packageVersion = "0.14.801";
11465
11465
 
11466
11466
  exports.Blocks = Blocks;
11467
11467
  exports.ContentPage = ContentPage;