@elliemae/ds-grid 2.0.0-alpha.1 → 2.0.0-alpha.13
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/cjs/Grid.js +27 -96
- package/cjs/GridItem.js +29 -0
- package/cjs/defaultProps.js +2 -2
- package/cjs/index.js +4 -4
- package/cjs/propTypes.js +46 -0
- package/cjs/types.js +2 -0
- package/cjs/utils/constants.js +11 -0
- package/cjs/utils/styles.js +129 -0
- package/esm/Grid.js +23 -91
- package/esm/GridItem.js +21 -0
- package/esm/defaultProps.js +2 -2
- package/esm/propTypes.js +42 -0
- package/esm/types.js +1 -0
- package/esm/utils/constants.js +5 -0
- package/esm/utils/styles.js +119 -0
- package/package.json +25 -10
- package/types/Grid.d.ts +8 -2
- package/types/GridItem.d.ts +2 -0
- package/types/defaultProps.d.ts +3 -3
- package/types/propTypes.d.ts +135 -0
- package/types/types.d.ts +66 -0
- package/types/utils/constants.d.ts +3 -0
- package/types/utils/styles.d.ts +3 -0
- package/cjs/ie11.js +0 -32
- package/cjs/package.json +0 -7
- package/cjs/props.js +0 -39
- package/esm/ie11.js +0 -28
- package/esm/package.json +0 -7
- package/esm/props.js +0 -35
- package/types/ie11.d.ts +0 -5
- package/types/props.d.ts +0 -22
package/types/props.d.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export declare const gridProps: {
|
|
2
|
-
/** Row layout cells */
|
|
3
|
-
rows: any;
|
|
4
|
-
/** Column layout cells */
|
|
5
|
-
cols: any;
|
|
6
|
-
/** Grid span */
|
|
7
|
-
span: any;
|
|
8
|
-
/** flex-like align items prop */
|
|
9
|
-
alignItems: any;
|
|
10
|
-
/** Children node inside grid cell */
|
|
11
|
-
children: any;
|
|
12
|
-
/** CSS class */
|
|
13
|
-
className: any;
|
|
14
|
-
/** flex-like direction prop */
|
|
15
|
-
direction: any;
|
|
16
|
-
/** flex-like justify prop */
|
|
17
|
-
justify: any;
|
|
18
|
-
/** Space between cells prop */
|
|
19
|
-
gutter: any;
|
|
20
|
-
/** Wrap type */
|
|
21
|
-
wrap: any;
|
|
22
|
-
};
|