Skip to content

Commit 3cdc0ee

Browse files
committed
Fix Grid2 strict prop infering
1 parent 0613636 commit 3cdc0ee

File tree

17 files changed

+165
-27
lines changed

17 files changed

+165
-27
lines changed

demos/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mui-flexy-demo-shared",
3-
"version": "2.0.2",
3+
"version": "2.0.3-rc.0",
44
"description": "Shared components for mui-flexy demos",
55
"private": true,
66
"dependencies": {

demos/v5/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mui-flexy-demo-v5",
3-
"version": "2.0.2",
3+
"version": "2.0.3-rc.0",
44
"description": "Demo server for mui-flexy v5",
55
"private": true,
66
"scripts": {

demos/v6/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mui-flexy-demo-v6",
3-
"version": "2.0.2",
3+
"version": "2.0.3-rc.0",
44
"description": "Demo server for mui-flexy v6",
55
"private": true,
66
"scripts": {

demos/v7/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mui-flexy-demo-v7",
3-
"version": "2.0.2",
3+
"version": "2.0.3-rc.0",
44
"description": "Demo server for mui-flexy v7",
55
"private": true,
66
"scripts": {

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mui-flexy-docs",
3-
"version": "2.0.2",
3+
"version": "2.0.3-rc.0",
44
"description": "Documentation for mui-flexy",
55
"private": true,
66
"type": "module",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mui-flexy",
3-
"version": "2.0.2",
3+
"version": "2.0.3-rc.0",
44
"description": "A flexbox convenience component for Material UI Box and Grid with handy shorthand props",
55
"type": "module",
66
"workspaces": [

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui-flexy/core",
3-
"version": "2.0.2",
3+
"version": "2.0.3-rc.0",
44
"description": "Core utilities and types for mui-flexy",
55
"type": "module",
66
"main": "dist/index.js",

packages/core/src/Flex.core.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export type V7GridSizeProps = {
122122
export type LegacyGridSizeProps = V5GridSizeProps;
123123
export type GridSizeProp = V7GridSizeProps;
124124

125-
export type StrictGrid2Props<P = {}> = Omit<P, "item" | "zeroMinWidth" | "xs" | "sm" | "md" | "lg" | "xl"> & {
125+
export type StrictGrid2Props = {
126126
item?: never;
127127
zeroMinWidth?: never;
128128
xs?: never;

packages/v5/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui-flexy/v5",
3-
"version": "2.0.2",
3+
"version": "2.0.3-rc.0",
44
"description": "A flexbox convenience component for Material UI v5 Box and Grid with handy shorthand props",
55
"type": "module",
66
"main": "dist/index.js",

packages/v6/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mui-flexy/v6",
3-
"version": "2.0.2",
3+
"version": "2.0.3-rc.0",
44
"description": "A flexbox convenience component for Material UI v6 Box and Grid with handy shorthand props",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)