main.js
22 lines
| 1 | import CaptchaOptions from './components/CaptchaOptions'; |
| 2 | import CaptchaBlockEdit from './components/CaptchaBlockEdit'; |
| 3 | import useCaptchaProvider from './hooks/useCaptchaProvider'; |
| 4 | import getCaptchaProviders from './helpers/getCaptchaProviders'; |
| 5 | import CaptchaBlockTip from './components/CaptchaBlockTip'; |
| 6 | |
| 7 | window.JetFBComponents = { |
| 8 | ...window.JetFBComponents, |
| 9 | CaptchaOptions, |
| 10 | CaptchaBlockEdit, |
| 11 | CaptchaBlockTip, |
| 12 | }; |
| 13 | |
| 14 | window.JetFBActions = { |
| 15 | ...window.JetFBActions, |
| 16 | getCaptchaProviders, |
| 17 | }; |
| 18 | |
| 19 | window.JetFBHooks = { |
| 20 | ...window.JetFBHooks, |
| 21 | useCaptchaProvider, |
| 22 | }; |