PluginProbe
Elementor Website Builder – more than just a page builder / 3.10.0-dev1
Elementor Website Builder – more than just a page builder v3.10.0-dev1
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / app / assets / js / package.js

package.js in Elementor Website Builder – more than just a page builder 3.10.0-dev1, at app/assets/js/package.js

91 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 // Alphabetical order.
2 // App UI
3 import AddNewButton from './ui/molecules/add-new-button';
4 import Box from './ui/atoms/box';
5 import Button from './ui/molecules/button';
6 import Card from './ui/card/card';
7 import CardBody from './ui/card/card-body';
8 import CardFooter from './ui/card/card-footer';
9 import CardImage from './ui/card/card-image';
10 import CardHeader from './ui/card/card-header';
11 import CardOverlay from './ui/card/card-overlay';
12 import Checkbox from './ui/atoms/checkbox';
13 import Collapse from './molecules/collapse';
14 import CssGrid from './ui/atoms/css-grid';
15 import Dialog from './ui/dialog/dialog';
16 import DragDrop from './ui/atoms/drag-drop';
17 import DropZone from './organisms/drop-zone';
18 import ErrorBoundary from './organisms/error-boundary';
19 import Heading from './ui/atoms/heading';
20 import Grid from './ui/grid/grid';
21 import Icon from './ui/atoms/icon';
22 import List from './ui/molecules/list';
23 import Menu from './ui/menu/menu';
24 import MenuItem from './ui/menu/menu-item';
25 import { Modal, default as ModalProvider } from './ui/modal/modal';
26 import NotFound from './pages/not-found';
27 import Notice from './ui/molecules/notice';
28 import Page from './layout/page';
29 import Popover from './ui/molecules/popover';
30 import Select from './ui/atoms/select';
31 import Select2 from './ui/molecules/select2';
32 import Text from './ui/atoms/text';
33 import UploadFile from './molecules/upload-file';
34 import InlineLink from './ui/molecules/inline-link';
35
36 // Components
37 import UnfilteredFilesDialog from './organisms/unfiltered-files-dialog.js';
38
39 // Hooks
40 import useAjax from './hooks/use-ajax';
41 import useAction from './hooks/use-action';
42 import usePageTitle from './hooks/use-page-title';
43 import useQueryParams from './hooks/use-query-params';
44
45 export const appUi = {
46 AddNewButton,
47 Box,
48 Button,
49 Card,
50 CardBody,
51 CardFooter,
52 CardHeader,
53 CardImage,
54 CardOverlay,
55 Checkbox,
56 Collapse,
57 CssGrid,
58 Dialog,
59 DragDrop,
60 DropZone,
61 ErrorBoundary,
62 Heading,
63 Grid,
64 Icon,
65 List,
66 Menu,
67 MenuItem,
68 Modal,
69 ModalProvider,
70 NotFound,
71 Notice,
72 Page,
73 Popover,
74 Select,
75 Select2,
76 Text,
77 UploadFile,
78 InlineLink,
79 };
80
81 export const components = {
82 UnfilteredFilesDialog,
83 };
84
85 export const hooks = {
86 useAjax,
87 useAction,
88 usePageTitle,
89 useQueryParams,
90 };
91