PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 3.1.1
JetFormBuilder — Dynamic Blocks Form Builder v3.1.1
3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 3.0.0 3.0.0.1 3.0.0.2 3.0.0.3 3.0.1 3.0.1.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.0.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.3.1 3.3.4 3.3.4.1 3.3.4.2 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.5.1 3.4.5.2 3.4.6 3.4.7 3.4.7.1 3.5.0 3.5.1 3.5.1.1 3.5.1.2 3.5.2 3.5.2.1 3.5.3 3.5.4 3.5.5 3.5.6 3.5.6.1 3.5.6.2 3.5.6.3 3.6.0
jetformbuilder / assets / src / admin-package / manager.js
jetformbuilder / assets / src / admin-package Last commit date
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