1 parent dbf2701 commit ce75287Copy full SHA for ce75287
2 files changed
package.json
@@ -3,12 +3,13 @@
3
"version": "3.0.1",
4
"private": false,
5
"main": "dist/index.js",
6
- "typings": "dist/index.d.ts",
+ "types": "dist/index.d.ts",
7
"module": "dist/index.mjs",
8
"exports": {
9
".": {
10
"import": "./dist/index.mjs",
11
- "require": "./dist/index.js"
+ "require": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
},
14
"./dist/index.css": {
15
"import": "./dist/index.css",
src/lib/Layouts/GridLayout/GridItem.tsx
@@ -49,7 +49,7 @@ export function GridItem({
49
? {
50
'--item-area': area,
51
}
52
- : { '--grid-Column': column, '--grid-Row': row },
+ : { '--grid-Column': computedColumn, '--grid-Row': row },
53
responsiveStyles
54
)}
55
className={clsx('GridItem', className)}
0 commit comments