PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 3.1.6
JetFormBuilder — Dynamic Blocks Form Builder v3.1.6
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-vuex-package / manager.js
jetformbuilder / assets / src / admin-vuex-package Last commit date
abstract 2 years ago components 2 years ago mixins 2 years ago store 2 years ago styles 2 years ago constants.js 2 years ago event-bus.js 2 years ago functions.js 2 years ago manager.js 2 years ago
manager.js
87 lines
1 import './event-bus';
2 import PaymentsPage from './components/PaymentsPage';
3 import EntriesTable from './components/EntriesTable';
4 import DetailsTableWithStore from './components/DetailsTableWithStore';
5 import TablePagination from './components/TablePagination';
6 import ChooseAction from './components/ChooseAction';
7 import Constants from './constants';
8 import ClearFiltersButton from './components/ClearFiltersButton';
9 import FilterMixin from './mixins/FilterMixin';
10 import GetColumnComponent from './mixins/GetColumnComponent';
11 import BaseStore from './store/base-store';
12 import TableSeedPlugin from './store/plugins/table-seed';
13 import TableModulePlugin from './store/plugins/table-module';
14 import SingleMetaBoxesPlugin from './store/plugins/single-meta-boxes';
15 import NoticesPlugin from './store/plugins/NoticesPlugin';
16 import PostBoxSkeleton from './components/PostBoxSkeleton';
17 import PostBoxGrid from './components/PostBoxGrid';
18 import PostBoxContainer from './components/PostBoxContainer';
19 import PostBoxSimple from './components/PostBoxSimple';
20 import EntriesList from './components/EntriesList';
21 import * as ChooseColumn from './components/TableColumns/choose';
22 import * as LinkTypeColumn from './components/TableColumns/link-type';
23 import * as ActionsColumn from './components/TableColumns/actions';
24 import ScopeStoreMixin from './mixins/ScopeStoreMixin';
25 import EditTableSwitcher from './components/BoxActions/EditTableSwitcher';
26 import AlertsList from './components/Alerts/AlertsList';
27 import DashboardPanel from './components/VuiBoxes/DashboardPanel';
28 import SideBarBoxes from './components/SideBarBoxes';
29 import FormBuilderPage from './components/FormBuilderPage';
30 import PageActionsPlugin from './store/plugins/PageActions';
31 import MessagesPlugin from './store/plugins/MessagesPlugin';
32 import OnUpdateEditableCellPlugin
33 from './store/plugins/OnUpdateEditableCellPlugin';
34 import EditCollectorPlugin from './store/plugins/EditCollectorPlugin';
35 import PortalVue from 'portal-vue';
36 import { PortalTarget, Portal } from 'portal-vue';
37 import ActionsWithFilters from './components/ActionsWithFilters';
38
39 Vue.use( Vuex );
40 Vue.use( PortalVue );
41
42 window.JetFBComponents = {
43 ...window.JetFBComponents,
44 EntriesTable,
45 PaymentsPage,
46 DetailsTableWithStore,
47 TablePagination,
48 ChooseAction,
49 ClearFiltersButton,
50 PostBoxSkeleton,
51 PostBoxGrid,
52 PostBoxContainer,
53 PostBoxSimple,
54 EntriesList,
55 ChooseColumn,
56 ActionsColumn,
57 LinkTypeColumn,
58 EditTableSwitcher,
59 AlertsList,
60 DashboardPanel,
61 SideBarBoxes,
62 FormBuilderPage,
63 ActionsWithFilters,
64 PortalTarget,
65 Portal,
66 };
67
68 window.JetFBMixins = {
69 ...window.JetFBMixins,
70 FilterMixin,
71 GetColumnComponent,
72 ScopeStoreMixin,
73 };
74
75 window.JetFBStore = {
76 BaseStore,
77 TableSeedPlugin,
78 TableModulePlugin,
79 SingleMetaBoxesPlugin,
80 NoticesPlugin,
81 PageActionsPlugin,
82 MessagesPlugin,
83 OnUpdateEditableCellPlugin,
84 EditCollectorPlugin,
85 };
86
87 window.JetFBConst = Constants;