-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: improve typing registry * feat: breaking change - component column props move to object * fix: api useRegistry and columns * chore: Improve typing * fix: search * chore: vite example * chore: github actions * chore: package json types * chore: yarn lock * feat: improve types * fix: checkbox, default value * refactor: parseSearchQueryParamFunction name * chore: changelog
- Loading branch information
1 parent
0c4a9c7
commit be120ca
Showing
25 changed files
with
230 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
/// <reference types="vite/client" /> | ||
|
||
declare module 'react-gmi' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "0.30.1", | ||
"version": "0.31.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:guillotinaweb/guillotina_react.git" | ||
|
@@ -9,9 +9,16 @@ | |
], | ||
"source": "./src/guillo-gmi/index.ts", | ||
"main": "./dist/react-gmi.js", | ||
"exports": "./dist/react-gmi.modern.js", | ||
"module": "./dist/react-gmi.modern.js", | ||
"types": "./dist/index.d.ts", | ||
"unpkg": "./dist/react-gmi.umd.js", | ||
"exports": { | ||
".": { | ||
"import": "./dist/react-gmi.modern.js", | ||
"require": "./dist/react-gmi.js", | ||
"types": "./dist/index.d.ts" | ||
} | ||
}, | ||
"name": "@guillotinaweb/react-gmi", | ||
"dependencies": { | ||
"brace": "0.11.1", | ||
|
@@ -46,7 +53,7 @@ | |
"prettier": "2.2.1", | ||
"sass": "1.69.5", | ||
"serialize-javascript": "5.0.1", | ||
"typescript": "5.4.2", | ||
"typescript": "5.4.5", | ||
"vitest": "^0.34.6", | ||
"@types/react-beautiful-dnd": "13.1.8" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.