Skip to content

Commit ce75287

Browse files
committed
GridLayout Layout component
1 parent dbf2701 commit ce75287

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
"version": "3.0.1",
44
"private": false,
55
"main": "dist/index.js",
6-
"typings": "dist/index.d.ts",
6+
"types": "dist/index.d.ts",
77
"module": "dist/index.mjs",
88
"exports": {
99
".": {
1010
"import": "./dist/index.mjs",
11-
"require": "./dist/index.js"
11+
"require": "./dist/index.js",
12+
"types": "./dist/index.d.ts"
1213
},
1314
"./dist/index.css": {
1415
"import": "./dist/index.css",

src/lib/Layouts/GridLayout/GridItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export function GridItem({
4949
? {
5050
'--item-area': area,
5151
}
52-
: { '--grid-Column': column, '--grid-Row': row },
52+
: { '--grid-Column': computedColumn, '--grid-Row': row },
5353
responsiveStyles
5454
)}
5555
className={clsx('GridItem', className)}

0 commit comments

Comments
 (0)