@elliemae/ds-resizeable-container 3.14.0-next.9 → 3.14.0-rc.0

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.
@@ -0,0 +1,32 @@
1
+ declare const ResizableContainer: {
2
+ ({ children, cols, rows, vertical, horizontal, ...rest }: {
3
+ [x: string]: any;
4
+ children: any;
5
+ cols: any;
6
+ rows: any;
7
+ vertical: any;
8
+ horizontal: any;
9
+ }): JSX.Element;
10
+ propTypes: {
11
+ children: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
12
+ vertical: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
13
+ horizontal: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
14
+ rows: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
15
+ cols: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
16
+ };
17
+ defaultProps: {
18
+ vertical: boolean;
19
+ horizontal: boolean;
20
+ };
21
+ displayName: string;
22
+ };
23
+ declare const DSResizableContainerWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<{
24
+ [x: string]: any;
25
+ children: any;
26
+ cols: any;
27
+ rows: any;
28
+ vertical: any;
29
+ horizontal: any;
30
+ }>;
31
+ export { ResizableContainer, DSResizableContainerWithSchema };
32
+ export default ResizableContainer;
@@ -0,0 +1,4 @@
1
+ export declare const defaultProps: {
2
+ vertical: boolean;
3
+ horizontal: boolean;
4
+ };
@@ -0,0 +1,2 @@
1
+ export * from './Resizable';
2
+ export { default } from './Resizable';
@@ -0,0 +1,12 @@
1
+ export declare const props: {
2
+ /** grid item content */
3
+ children: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
4
+ /** vertical resizing */
5
+ vertical: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
6
+ /** horizontal resizing */
7
+ horizontal: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
8
+ /** Row layout cells */
9
+ rows: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
10
+ /** Column layout cells */
11
+ cols: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
12
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-resizeable-container",
3
- "version": "3.14.0-next.9",
3
+ "version": "3.14.0-rc.0",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Resizeable Container",
6
6
  "files": [
@@ -47,9 +47,9 @@
47
47
  "indent": 4
48
48
  },
49
49
  "dependencies": {
50
- "@elliemae/ds-grid": "3.14.0-next.9",
51
- "@elliemae/ds-system": "3.14.0-next.9",
52
- "@elliemae/ds-utilities": "3.14.0-next.9"
50
+ "@elliemae/ds-grid": "3.14.0-rc.0",
51
+ "@elliemae/ds-system": "3.14.0-rc.0",
52
+ "@elliemae/ds-utilities": "3.14.0-rc.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@testing-library/jest-dom": "~5.16.4",