forked from refinedev/refine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: declarations for node16/nodenext resolutions (refinedev#5881)
- Loading branch information
Showing
44 changed files
with
253 additions
and
208 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@refinedev/nextjs-router": patch | ||
--- | ||
|
||
fix: `/parse-table-params` export in node10 module resolutions | ||
|
||
`/parse-table-params` subpath export is not correctly resolved by `node10` module resolutions. |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
"@refinedev/airtable": patch | ||
"@refinedev/antd": patch | ||
"@refinedev/appwrite": patch | ||
"@refinedev/chakra-ui": patch | ||
"@refinedev/cli": patch | ||
"@refinedev/core": patch | ||
"@refinedev/devtools": patch | ||
"@refinedev/devtools-internal": patch | ||
"@refinedev/devtools-shared": patch | ||
"@refinedev/devtools-ui": patch | ||
"@refinedev/graphql": patch | ||
"@refinedev/hasura": patch | ||
"@refinedev/inferencer": patch | ||
"@refinedev/kbar": patch | ||
"@refinedev/mantine": patch | ||
"@refinedev/medusa": patch | ||
"@refinedev/mui": patch | ||
"@refinedev/nestjs-query": patch | ||
"@refinedev/nestjsx-crud": patch | ||
"@refinedev/nextjs-router": patch | ||
"@refinedev/react-hook-form": patch | ||
"@refinedev/react-router-v6": patch | ||
"@refinedev/react-table": patch | ||
"@refinedev/remix-router": patch | ||
"@refinedev/simple-rest": patch | ||
"@refinedev/strapi": patch | ||
"@refinedev/strapi-v4": patch | ||
"@refinedev/supabase": patch | ||
"@refinedev/ui-tests": patch | ||
"@refinedev/ui-types": patch | ||
--- | ||
|
||
fix: declaration files in node10, node16 and nodenext module resolutions |
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 @@ | ||
import { dataProvider } from "./dataProvider"; | ||
import { dataProvider } from "./dataProvider.ts"; | ||
|
||
export * from "./utils"; | ||
export * from "./dataProvider"; | ||
export * from "./utils/index.ts"; | ||
export * from "./dataProvider.ts"; | ||
export default dataProvider; |
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,14 +1,14 @@ | ||
export * from "./hooks"; | ||
export * from "./providers"; | ||
export * from "./components"; | ||
export * from "./contexts"; | ||
export * from "./hooks/index.ts"; | ||
export * from "./providers/index.ts"; | ||
export * from "./components/index.ts"; | ||
export * from "./contexts/index.ts"; | ||
|
||
export { | ||
getDefaultSortOrder, | ||
getDefaultFilter, | ||
mapAntdSorterToCrudSorting, | ||
mapAntdFilterToCrudFilter, | ||
} from "./definitions/table"; | ||
export { getValueFromEvent } from "./definitions/upload"; | ||
} from "./definitions/table/index.ts"; | ||
export { getValueFromEvent } from "./definitions/upload/index.ts"; | ||
|
||
export * from "./definitions/themes"; | ||
export * from "./definitions/themes/index.ts"; |
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,5 +1,5 @@ | ||
export * from "./components"; | ||
export * from "./hooks"; | ||
export * from "./theme"; | ||
export * from "./providers"; | ||
export * from "./contexts"; | ||
export * from "./components/index.ts"; | ||
export * from "./hooks/index.ts"; | ||
export * from "./theme/index.ts"; | ||
export * from "./providers/index.ts"; | ||
export * from "./contexts/index.ts"; |
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 @@ | ||
export * from "./definitions"; | ||
export { getImports, getNameChangeInImport } from "./utils/swizzle/import"; | ||
export { appendAfterImports } from "./utils/swizzle/appendAfterImports"; | ||
export { getFileContent } from "./utils/swizzle/getFileContent"; | ||
export type { ImportMatch, NameChangeMatch } from "./utils/swizzle/import"; | ||
export * from "./definitions/index.ts"; | ||
export { getImports, getNameChangeInImport } from "./utils/swizzle/import.ts"; | ||
export { appendAfterImports } from "./utils/swizzle/appendAfterImports.ts"; | ||
export { getFileContent } from "./utils/swizzle/getFileContent.ts"; | ||
export type { ImportMatch, NameChangeMatch } from "./utils/swizzle/import.ts"; |
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,3 @@ | ||
export { getTrace } from "./get-trace"; | ||
export { getXRay } from "./get-xray"; | ||
export { useQuerySubscription } from "./use-query-subscription"; | ||
export { getTrace } from "./get-trace.ts"; | ||
export { getXRay } from "./get-xray.ts"; | ||
export { useQuerySubscription } from "./use-query-subscription.tsx"; |
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,14 +1,14 @@ | ||
export { DevtoolsEvent, DevtoolsEventPayloads } from "./event-types"; | ||
export { TraceType } from "./trace"; | ||
export { Feed, FeedSection } from "./feed"; | ||
export { DevtoolsEvent, DevtoolsEventPayloads } from "./event-types.ts"; | ||
export { TraceType } from "./trace.ts"; | ||
export { Feed, FeedSection } from "./feed.ts"; | ||
export { | ||
PackageType, | ||
PackageLatestVersionType, | ||
AvailablePackageType, | ||
} from "./package"; | ||
export { RefineHook, Scopes, hooksByScope, scopes } from "./scopes"; | ||
} from "./package.ts"; | ||
export { RefineHook, Scopes, hooksByScope, scopes } from "./scopes.ts"; | ||
|
||
export { DevToolsContextProvider, DevToolsContext } from "./context"; | ||
export { DevToolsContextProvider, DevToolsContext } from "./context.tsx"; | ||
|
||
export { send } from "./send"; | ||
export { receive } from "./receive"; | ||
export { send } from "./send.ts"; | ||
export { receive } from "./receive.ts"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export { DevtoolsPanel } from "./panel"; | ||
export { DevtoolsProvider } from "./provider"; | ||
export { DevtoolsPanel } from "./panel.tsx"; | ||
export { DevtoolsProvider } from "./provider.tsx"; |
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.