components
2 years ago
functions
2 years ago
mixins
2 years ago
input-error.js
2 years ago
manager.js
2 years ago
manager.js
72 lines
| 1 | import ApiInputError from './input-error'; |
| 2 | import CxVuiCollapseMini from './components/CxVuiCollapseMini'; |
| 3 | import GetIncoming from './mixins/GetIncoming'; |
| 4 | import SaveTabByAjax from './mixins/SaveTabByAjax'; |
| 5 | import ParseIncomingValueMixin from './mixins/ParseIncomingValueMixin'; |
| 6 | import PromiseWrapper from './mixins/PromiseWrapper'; |
| 7 | import DetailsTable from './components/DetailsTable'; |
| 8 | import SimpleWrapperComponent from './components/RowWrapper'; |
| 9 | import i18n from './mixins/i18n'; |
| 10 | import { renderCurrentPage } from './functions/RenderCurrentPage'; |
| 11 | import { |
| 12 | getCurrentPath, |
| 13 | getSearch, |
| 14 | createPath, |
| 15 | addQueryArgs, |
| 16 | } from './functions/LocationManager'; |
| 17 | import ListComponents from './components/ListComponents'; |
| 18 | import CxVuiTabsPanel from './components/CxVuiTabsPanel'; |
| 19 | import CxVuiTabs from './components/CxVuiTabs'; |
| 20 | import LocalStorage from './functions/LocalStorage'; |
| 21 | import ExternalLink from './components/ExternalLink'; |
| 22 | import resolveRestUrl from './functions/resolveRestUrl'; |
| 23 | import ColumnWrapper from './components/ColumnWrapper'; |
| 24 | import CxVuiSelect from './components/CxVuiSelect'; |
| 25 | import CxVuiPopup from './components/CxVuiPopup'; |
| 26 | import CxVuiFSelect from './components/CxVuiFSelect'; |
| 27 | import CxVuiDate from './components/CxVuiDate'; |
| 28 | import Tooltip from './components/Tooltip'; |
| 29 | import Delimiter from './components/Delimiter'; |
| 30 | import PrintButton from './components/PrintButton'; |
| 31 | |
| 32 | window.JetFBActions = { |
| 33 | renderCurrentPage, |
| 34 | getCurrentPath, |
| 35 | getSearch, |
| 36 | createPath, |
| 37 | addQueryArgs, |
| 38 | LocalStorage, |
| 39 | resolveRestUrl, |
| 40 | }; |
| 41 | |
| 42 | window.JetFBErrors = { |
| 43 | ApiInputError, |
| 44 | }; |
| 45 | |
| 46 | window.JetFBComponents = { |
| 47 | CxVuiCollapseMini, |
| 48 | DetailsTable, |
| 49 | SimpleWrapperComponent, |
| 50 | ListComponents, |
| 51 | CxVuiTabsPanel, |
| 52 | CxVuiTabs, |
| 53 | ExternalLink, |
| 54 | RowWrapper: SimpleWrapperComponent, |
| 55 | ColumnWrapper, |
| 56 | CxVuiSelect, |
| 57 | CxVuiPopup, |
| 58 | CxVuiFSelect, |
| 59 | CxVuiDate, |
| 60 | Tooltip, |
| 61 | Delimiter, |
| 62 | PrintButton, |
| 63 | }; |
| 64 | |
| 65 | window.JetFBMixins = { |
| 66 | GetIncoming, |
| 67 | SaveTabByAjax, |
| 68 | i18n, |
| 69 | ParseIncomingValueMixin, |
| 70 | PromiseWrapper, |
| 71 | }; |
| 72 |