pixel-react 1.0.9 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/index.d.ts +29 -1
- package/lib/index.esm.js +177 -84
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +177 -83
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
@@ -39,6 +39,7 @@ import IconButton from './components/IconButton';
|
|
39
39
|
import Modal from './components/Modal';
|
40
40
|
import DragAndDrop from './components/DragAndDrop/DragAndDrop';
|
41
41
|
import AllProjectsDropdown from './components/AllProjectsDropdown';
|
42
|
+
import AppHeader from './components/AppHeader';
|
42
43
|
|
43
44
|
// Utils imports
|
44
45
|
import { checkEmpty } from './utils/checkEmpty/checkEmpty';
|
@@ -92,6 +93,7 @@ export {
|
|
92
93
|
|
93
94
|
DragAndDrop,
|
94
95
|
AllProjectsDropdown,
|
96
|
+
AppHeader,
|
95
97
|
|
96
98
|
// utils exports
|
97
99
|
checkEmpty,
|