@get-set/gs-sortable 0.0.8 → 0.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.
|
@@ -9,6 +9,7 @@ import initMouseMove from "../actions/initMouseMove";
|
|
|
9
9
|
import initSortEnd from "../actions/initSortEnd";
|
|
10
10
|
import initScroll from "../actions/initScroll";
|
|
11
11
|
import types from '../constants/types';
|
|
12
|
+
import './styles/GSSortable.css';
|
|
12
13
|
|
|
13
14
|
const params = {
|
|
14
15
|
reference: PropTypes.string,
|
|
@@ -16,12 +17,9 @@ const params = {
|
|
|
16
17
|
gap: PropTypes.string,
|
|
17
18
|
allowOutOfBox: PropTypes.bool,
|
|
18
19
|
count: PropTypes.number,
|
|
19
|
-
type: types.column
|
|
20
|
+
type: PropTypes.oneOf([types.column, types.row, types.grid])
|
|
20
21
|
};
|
|
21
22
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
23
|
/**
|
|
26
24
|
* GSSortable component to display a customizable sortable.
|
|
27
25
|
*
|