pixel-react 1.0.6 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- package/.yarn/install-state.gz +0 -0
- package/lib/StyleGuide/ColorPalette/types.d.ts +2 -0
- package/lib/components/DragAndDrop/DragAndDrop.d.ts +9 -0
- package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
- package/lib/components/DragAndDrop/DragAndDropList.d.ts +20 -0
- package/lib/components/DragAndDrop/index.d.ts +1 -0
- package/lib/components/Drawer/Drawer.d.ts +2 -1
- package/lib/components/GridLayout/types.d.ts +17 -0
- package/lib/components/Modal/Modal.d.ts +5 -0
- package/lib/components/Modal/Modal.stories.d.ts +7 -0
- package/lib/components/Modal/index.d.ts +1 -0
- package/lib/components/Modal/types.d.ts +26 -0
- package/lib/components/TableTree/TableTree.d.ts +1 -1
- package/lib/index.d.ts +29 -3
- package/lib/index.esm.js +4725 -80
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +4723 -77
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +26 -23
- package/src/StyleGuide/ColorPalette/ColorPalette.scss +5 -0
- package/src/StyleGuide/ColorPalette/ColorPalette.tsx +10 -1
- package/src/StyleGuide/ColorPalette/colorPaletteList.ts +2 -2
- package/src/StyleGuide/ColorPalette/types.ts +2 -0
- package/src/assets/Themes/BaseTheme.scss +9 -8
- package/src/assets/Themes/DarkTheme.scss +1 -0
- package/src/assets/icons/collapse-icon.svg +6 -0
- package/src/assets/icons/copy-icon.svg +3 -0
- package/src/assets/icons/download-icon.svg +3 -0
- package/src/assets/icons/expand-icon.svg +6 -0
- package/src/assets/icons/license_info.svg +28 -0
- package/src/assets/icons/license_warning.svg +10 -0
- package/src/assets/icons/refresh-icon.svg +4 -0
- package/src/components/DatePicker/DatePicker.scss +3 -3
- package/src/components/DragAndDrop/DragAndDrop.d.ts +5 -0
- package/src/components/DragAndDrop/DragAndDrop.stories.tsx +25 -0
- package/src/components/DragAndDrop/DragAndDrop.ts +7 -0
- package/src/components/DragAndDrop/DragAndDropList.scss +69 -0
- package/src/components/DragAndDrop/DragAndDropList.tsx +150 -0
- package/src/components/DragAndDrop/index.ts +1 -0
- package/src/components/Drawer/Drawer.tsx +3 -7
- package/src/components/GridLayout/GridLayout.stories.tsx +13 -51
- package/src/components/GridLayout/GridLayout.tsx +9 -7
- package/src/components/GridLayout/types.ts +20 -0
- package/src/components/Icon/iconList.ts +14 -0
- package/src/components/Modal/Modal.stories.tsx +63 -0
- package/src/components/Modal/Modal.tsx +71 -0
- package/src/components/Modal/index.tsx +1 -0
- package/src/components/Modal/modal.scss +37 -0
- package/src/components/Modal/types.ts +37 -0
- package/src/components/TableTree/TableTree.tsx +1 -1
- package/src/components/ThemeProvider/ThemeProvider.tsx +11 -8
- package/src/index.ts +2 -5
package/src/index.ts
CHANGED
@@ -14,10 +14,8 @@ import ExpandableMenu from './components/ExpandableMenu';
|
|
14
14
|
import Select from './components/Select/Select';
|
15
15
|
import TextArea from './components/TextArea';
|
16
16
|
import StatusButton from './components/StatusButton';
|
17
|
-
|
18
17
|
import MenuOption from './components/MenuOption';
|
19
18
|
import Table from './components/Table/Table';
|
20
|
-
|
21
19
|
import AddResourceButton from './components/AddResourceButton';
|
22
20
|
import DonutChart from './components/Charts/DonutChart';
|
23
21
|
import FileDropzone from './components/FileDropzone';
|
@@ -26,7 +24,6 @@ import ThemeProvider from './components/ThemeProvider';
|
|
26
24
|
import Typography from './components/Typography';
|
27
25
|
import useTheme from './hooks/useTheme';
|
28
26
|
import Form from './components/Form';
|
29
|
-
|
30
27
|
import InputWithDropdown from './components/InputWithDropdown';
|
31
28
|
import RadioButton from './components/RadioButton';
|
32
29
|
import RadioGroup from './components/RadioGroup';
|
@@ -39,6 +36,7 @@ import Search from './components/Search/Search';
|
|
39
36
|
import DatePicker from './components/DatePicker';
|
40
37
|
import StateDropdown from './components/StateDropdown';
|
41
38
|
import IconButton from './components/IconButton';
|
39
|
+
import DragAndDrop from './components/DragAndDrop/DragAndDrop';
|
42
40
|
|
43
41
|
// Utils imports
|
44
42
|
import { checkEmpty } from './utils/checkEmpty/checkEmpty';
|
@@ -47,7 +45,6 @@ import {
|
|
47
45
|
getExtensionWithPeriod,
|
48
46
|
} from './utils/getExtension/getExtension';
|
49
47
|
|
50
|
-
|
51
48
|
export {
|
52
49
|
Button,
|
53
50
|
Tooltip,
|
@@ -89,7 +86,7 @@ export {
|
|
89
86
|
StateDropdown,
|
90
87
|
StatusButton,
|
91
88
|
IconButton,
|
92
|
-
|
89
|
+
DragAndDrop,
|
93
90
|
|
94
91
|
// utils exports
|
95
92
|
checkEmpty,
|