cemtrik-dependencies 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +45 -0
- package/package.json +1 -1
- package/src/components.js +0 -45
package/index.js
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import Alert from "./src/components/atoms/Alert";
|
|
2
|
+
import Avatar from "./src/components/atoms/Avatar";
|
|
3
|
+
import Bullets from "./src/components/atoms/Bullets";
|
|
4
|
+
import ButtonOutline from "./src/components/atoms/ButtonOutline";
|
|
5
|
+
import ButtonPagination from "./src/components/atoms/ButtonPagination";
|
|
6
|
+
import ButtonSolid from "./src/components/atoms/ButtonSolid";
|
|
7
|
+
import Checkbox from "./src/components/atoms/Checkbox";
|
|
8
|
+
import ConfirmationAbandoningCreation from "./src/components/atoms/ConfirmationAbandoningCreation";
|
|
9
|
+
import Divider from "./src/components/atoms/Divider";
|
|
10
|
+
import GoBack from "./src/components/atoms/GoBack";
|
|
11
|
+
import Input from "./src/components/atoms/Input";
|
|
12
|
+
import InputDropdown from "./src/components/atoms/InputDropdown";
|
|
13
|
+
import Select from "./src/components/atoms/Select";
|
|
14
|
+
import Spinner from "./src/components/atoms/Spinner";
|
|
15
|
+
import Switch from "./src/components/atoms/Switch";
|
|
16
|
+
import Textarea from "./src/components/atoms/Textarea";
|
|
17
|
+
import Tooltip from "./src/components/atoms/Tooltip";
|
|
18
|
+
import Dropdown from "./src/components/molecules/Dropdown";
|
|
19
|
+
import Modal from "./src/components/molecules/Modal";
|
|
20
|
+
import Pagination from "./src/components/molecules/Pagination";
|
|
21
|
+
import Accordion from "./src/components/templates/Accordion";
|
|
22
|
+
|
|
23
|
+
export {
|
|
24
|
+
Alert,
|
|
25
|
+
Avatar,
|
|
26
|
+
Bullets,
|
|
27
|
+
ButtonOutline,
|
|
28
|
+
ButtonPagination,
|
|
29
|
+
ButtonSolid,
|
|
30
|
+
Checkbox,
|
|
31
|
+
ConfirmationAbandoningCreation,
|
|
32
|
+
Divider,
|
|
33
|
+
GoBack,
|
|
34
|
+
Input,
|
|
35
|
+
InputDropdown,
|
|
36
|
+
Select,
|
|
37
|
+
Spinner,
|
|
38
|
+
Switch,
|
|
39
|
+
Textarea,
|
|
40
|
+
Tooltip,
|
|
41
|
+
Dropdown,
|
|
42
|
+
Modal,
|
|
43
|
+
Pagination,
|
|
44
|
+
Accordion,
|
|
45
|
+
};
|
package/package.json
CHANGED
package/src/components.js
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import Alert from "./components/atoms/Alert";
|
|
2
|
-
import Avatar from "./components/atoms/Avatar";
|
|
3
|
-
import Bullets from "./components/atoms/Bullets";
|
|
4
|
-
import ButtonOutline from "./components/atoms/ButtonOutline";
|
|
5
|
-
import ButtonPagination from "./components/atoms/ButtonPagination";
|
|
6
|
-
import ButtonSolid from "./components/atoms/ButtonSolid";
|
|
7
|
-
import Checkbox from "./components/atoms/Checkbox";
|
|
8
|
-
import ConfirmationAbandoningCreation from "./components/atoms/ConfirmationAbandoningCreation";
|
|
9
|
-
import Divider from "./components/atoms/Divider";
|
|
10
|
-
import GoBack from "./components/atoms/GoBack";
|
|
11
|
-
import Input from "./components/atoms/Input";
|
|
12
|
-
import InputDropdown from "./components/atoms/InputDropdown";
|
|
13
|
-
import Select from "./components/atoms/Select";
|
|
14
|
-
import Spinner from "./components/atoms/Spinner";
|
|
15
|
-
import Switch from "./components/atoms/Switch";
|
|
16
|
-
import Textarea from "./components/atoms/Textarea";
|
|
17
|
-
import Tooltip from "./components/atoms/Tooltip";
|
|
18
|
-
import Dropdown from "./components/molecules/Dropdown";
|
|
19
|
-
import Modal from "./components/molecules/Modal";
|
|
20
|
-
import Pagination from "./components/molecules/Pagination";
|
|
21
|
-
import Accordion from "./components/templates/Accordion";
|
|
22
|
-
|
|
23
|
-
export {
|
|
24
|
-
Alert,
|
|
25
|
-
Avatar,
|
|
26
|
-
Bullets,
|
|
27
|
-
ButtonOutline,
|
|
28
|
-
ButtonPagination,
|
|
29
|
-
ButtonSolid,
|
|
30
|
-
Checkbox,
|
|
31
|
-
ConfirmationAbandoningCreation,
|
|
32
|
-
Divider,
|
|
33
|
-
GoBack,
|
|
34
|
-
Input,
|
|
35
|
-
InputDropdown,
|
|
36
|
-
Select,
|
|
37
|
-
Spinner,
|
|
38
|
-
Switch,
|
|
39
|
-
Textarea,
|
|
40
|
-
Tooltip,
|
|
41
|
-
Dropdown,
|
|
42
|
-
Modal,
|
|
43
|
-
Pagination,
|
|
44
|
-
Accordion,
|
|
45
|
-
};
|