@redneckz/wildless-cms-uni-blocks 0.14.886 → 0.14.888

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 (72) hide show
  1. package/bundle/api/LeadServiceAPI.d.ts +2 -1
  2. package/bundle/blocks.schema.json +1 -1
  3. package/bundle/bundle.umd.js +10 -3
  4. package/bundle/bundle.umd.min.js +1 -1
  5. package/bundle/icons/IconName.d.ts +3 -7
  6. package/bundle/model/FormTypeFieldDef.d.ts +1 -1
  7. package/cosmos-static/icons/LogoIcon.svg +1 -1
  8. package/cosmos-static/icons/sprites.svg +1 -3
  9. package/dist/api/LeadServiceAPI.d.ts +2 -1
  10. package/dist/api/LeadServiceAPI.js +7 -1
  11. package/dist/api/LeadServiceAPI.js.map +1 -1
  12. package/dist/components/ApplicationForm/ApplicationForm.js +3 -1
  13. package/dist/components/ApplicationForm/ApplicationForm.js.map +1 -1
  14. package/dist/icons/IconName.d.ts +3 -7
  15. package/dist/icons/IconName.js +2 -6
  16. package/dist/icons/IconName.js.map +1 -1
  17. package/dist/model/FormTypeFieldDef.d.ts +1 -1
  18. package/lib/api/LeadServiceAPI.d.ts +2 -1
  19. package/lib/api/LeadServiceAPI.js +7 -1
  20. package/lib/api/LeadServiceAPI.js.map +1 -1
  21. package/lib/components/ApplicationForm/ApplicationForm.fixture.d.ts +1 -0
  22. package/lib/components/ApplicationForm/ApplicationForm.fixture.mobile.d.ts +1 -0
  23. package/lib/components/ApplicationForm/ApplicationForm.js +3 -1
  24. package/lib/components/ApplicationForm/ApplicationForm.js.map +1 -1
  25. package/lib/icons/IconName.d.ts +3 -7
  26. package/lib/icons/IconName.js +2 -6
  27. package/lib/icons/IconName.js.map +1 -1
  28. package/lib/model/FormTypeFieldDef.d.ts +1 -1
  29. package/mobile/bundle/api/LeadServiceAPI.d.ts +2 -1
  30. package/mobile/bundle/bundle.umd.js +10 -3
  31. package/mobile/bundle/bundle.umd.min.js +1 -1
  32. package/mobile/bundle/icons/IconName.d.ts +3 -7
  33. package/mobile/bundle/model/FormTypeFieldDef.d.ts +1 -1
  34. package/mobile/dist/api/LeadServiceAPI.d.ts +2 -1
  35. package/mobile/dist/api/LeadServiceAPI.js +7 -1
  36. package/mobile/dist/api/LeadServiceAPI.js.map +1 -1
  37. package/mobile/dist/components/ApplicationForm/ApplicationForm.js +3 -1
  38. package/mobile/dist/components/ApplicationForm/ApplicationForm.js.map +1 -1
  39. package/mobile/dist/icons/IconName.d.ts +3 -7
  40. package/mobile/dist/icons/IconName.js +2 -6
  41. package/mobile/dist/icons/IconName.js.map +1 -1
  42. package/mobile/dist/model/FormTypeFieldDef.d.ts +1 -1
  43. package/mobile/lib/api/LeadServiceAPI.d.ts +2 -1
  44. package/mobile/lib/api/LeadServiceAPI.js +7 -1
  45. package/mobile/lib/api/LeadServiceAPI.js.map +1 -1
  46. package/mobile/lib/components/ApplicationForm/ApplicationForm.js +3 -1
  47. package/mobile/lib/components/ApplicationForm/ApplicationForm.js.map +1 -1
  48. package/mobile/lib/icons/IconName.d.ts +3 -7
  49. package/mobile/lib/icons/IconName.js +2 -6
  50. package/mobile/lib/icons/IconName.js.map +1 -1
  51. package/mobile/lib/model/FormTypeFieldDef.d.ts +1 -1
  52. package/mobile/src/api/LeadServiceAPI.ts +10 -1
  53. package/mobile/src/components/ApplicationForm/ApplicationForm.example.json +30 -0
  54. package/mobile/src/components/ApplicationForm/ApplicationForm.tsx +3 -1
  55. package/mobile/src/icons/IconName.ts +5 -5
  56. package/mobile/src/icons/LogoIcon.svg +6 -27
  57. package/mobile/src/model/FormTypeFieldDef.ts +2 -1
  58. package/package.json +2 -2
  59. package/src/api/LeadServiceAPI.ts +10 -1
  60. package/src/components/ApplicationForm/ApplicationForm.example.json +30 -0
  61. package/src/components/ApplicationForm/ApplicationForm.fixture.mobile.tsx +23 -0
  62. package/src/components/ApplicationForm/ApplicationForm.fixture.tsx +23 -0
  63. package/src/components/ApplicationForm/ApplicationForm.tsx +3 -1
  64. package/src/icons/IconName.ts +5 -5
  65. package/src/icons/LogoIcon.svg +6 -27
  66. package/src/model/FormTypeFieldDef.ts +2 -1
  67. package/cosmos-static/icons/LogoIconBig.svg +0 -1
  68. package/cosmos-static/icons/LogoIconDefault.svg +0 -1
  69. package/mobile/src/icons/LogoIconBig.svg +0 -28
  70. package/mobile/src/icons/LogoIconDefault.svg +0 -7
  71. package/src/icons/LogoIconBig.svg +0 -28
  72. package/src/icons/LogoIconDefault.svg +0 -7
@@ -1,4 +1,5 @@
1
1
  import { type JSONRecord, type JSONScalar } from '@redneckz/json-op';
2
+ import { type Router } from '../external/useRouter';
2
3
  export declare type LeadRequest = Record<string, JSONRecord | JSONScalar | null> & {
3
4
  typeForm?: string;
4
5
  addressBranch?: string;
@@ -12,5 +13,5 @@ export declare type LeadRequest = Record<string, JSONRecord | JSONScalar | null>
12
13
  companyNameByInn?: string;
13
14
  };
14
15
  export declare function LeadServiceAPI(): {
15
- send: (body: LeadRequest, isIndividualType?: boolean) => Promise<any>;
16
+ send: (body: LeadRequest, router: Router, isIndividualType?: boolean) => Promise<any>;
16
17
  };