@refinedev/core 4.49.1 → 4.49.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinedev/core",
3
- "version": "4.49.1",
3
+ "version": "4.49.2",
4
4
  "private": false,
5
5
  "description": "refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
6
6
  "repository": {
@@ -37,7 +37,7 @@
37
37
  "types": "node ../shared/generate-declarations.js"
38
38
  },
39
39
  "dependencies": {
40
- "@refinedev/devtools-internal": "1.1.8",
40
+ "@refinedev/devtools-internal": "1.1.9",
41
41
  "@tanstack/react-query": "^4.10.1",
42
42
  "lodash": "^4.17.21",
43
43
  "lodash-es": "^4.17.21",
package/src/index.tsx CHANGED
@@ -1,9 +1,9 @@
1
- export * from "./components/index.ts";
2
- export * from "./hooks/index.ts";
1
+ export * from "./components/index.js";
2
+ export * from "./hooks/index.js";
3
3
 
4
4
  // all auth types
5
- export * from "./components/pages/auth/types.tsx";
6
- export { ILoginForm } from "./components/pages/login/index.tsx";
5
+ export * from "./components/pages/auth/types.js";
6
+ export { ILoginForm } from "./components/pages/login/index.js";
7
7
 
8
8
  export {
9
9
  getDefaultFilter,
@@ -15,7 +15,7 @@ export {
15
15
  stringifyTableParams,
16
16
  unionFilters,
17
17
  unionSorters,
18
- } from "./definitions/table/index.ts";
18
+ } from "./definitions/table/index.js";
19
19
  export {
20
20
  createTreeView,
21
21
  handleUseParams,
@@ -35,13 +35,13 @@ export {
35
35
  KeyBuilder,
36
36
  flattenObjectKeys,
37
37
  propertyPathToArray,
38
- } from "./definitions/helpers/index.ts";
39
- export { file2Base64 } from "./definitions/upload/index.ts";
40
- export { generateDefaultDocumentTitle } from "./definitions/index.ts";
38
+ } from "./definitions/helpers/index.js";
39
+ export { file2Base64 } from "./definitions/upload/index.js";
40
+ export { generateDefaultDocumentTitle } from "./definitions/index.js";
41
41
 
42
- export { ResourceContext } from "./contexts/resource/index.tsx";
42
+ export { ResourceContext } from "./contexts/resource/index.js";
43
43
 
44
- export { AccessControlContext } from "./contexts/accessControl/index.tsx";
44
+ export { AccessControlContext } from "./contexts/accessControl/index.js";
45
45
 
46
46
  export {
47
47
  AccessControlProvider,
@@ -49,21 +49,21 @@ export {
49
49
  CanParams,
50
50
  CanReturnType,
51
51
  IAccessControlContext,
52
- } from "./contexts/accessControl/types.ts";
52
+ } from "./contexts/accessControl/types.js";
53
53
 
54
54
  export {
55
55
  AuditLogProvider,
56
56
  ILog,
57
57
  ILogData,
58
58
  LogParams,
59
- } from "./contexts/auditLog/types.ts";
59
+ } from "./contexts/auditLog/types.js";
60
60
 
61
61
  export {
62
62
  AuthBindings,
63
63
  AuthProvider,
64
64
  ILegacyAuthContext,
65
65
  LegacyAuthProvider,
66
- } from "./contexts/auth/types.ts";
66
+ } from "./contexts/auth/types.js";
67
67
 
68
68
  export {
69
69
  ConditionalFilter,
@@ -107,19 +107,19 @@ export {
107
107
  BaseOption,
108
108
  IQueryKeys,
109
109
  Prettify,
110
- } from "./contexts/data/types.ts";
110
+ } from "./contexts/data/types.js";
111
111
 
112
112
  export {
113
113
  I18nContext,
114
114
  I18nContext as TranslationContext,
115
- } from "./contexts/i18n/index.tsx";
115
+ } from "./contexts/i18n/index.js";
116
116
 
117
117
  export {
118
118
  I18nProvider,
119
119
  I18nProvider as TranslationProvider,
120
120
  I18nProvider as i18nBindings,
121
121
  II18nContext as ITranslationContext,
122
- } from "./contexts/i18n/types.ts";
122
+ } from "./contexts/i18n/types.js";
123
123
 
124
124
  export {
125
125
  ILiveContext,
@@ -130,7 +130,7 @@ export {
130
130
  LiveOneParams,
131
131
  LiveProvider,
132
132
  LiveListParams,
133
- } from "./contexts/live/types.ts";
133
+ } from "./contexts/live/types.js";
134
134
 
135
135
  export {
136
136
  INotificationContext,
@@ -138,7 +138,7 @@ export {
138
138
  NotificationProvider as NotificationsBindings,
139
139
  OpenNotificationParams,
140
140
  SuccessErrorNotification,
141
- } from "./contexts/notification/types.ts";
141
+ } from "./contexts/notification/types.js";
142
142
 
143
143
  export {
144
144
  IRefineContext,
@@ -149,7 +149,7 @@ export {
149
149
  RefineProps,
150
150
  TextTransformers,
151
151
  TitleProps,
152
- } from "./contexts/refine/types.ts";
152
+ } from "./contexts/refine/types.js";
153
153
 
154
154
  export {
155
155
  ResourceProps,
@@ -159,7 +159,7 @@ export {
159
159
  IResourceItem,
160
160
  ITreeMenu,
161
161
  ResourceBindings,
162
- } from "./contexts/resource/types.ts";
162
+ } from "./contexts/resource/types.js";
163
163
 
164
164
  export {
165
165
  ActionWithPage,
@@ -170,7 +170,7 @@ export {
170
170
  ResourceErrorRouterParams,
171
171
  ResourceRouterParams,
172
172
  RouteAction,
173
- } from "./contexts/router/legacy/types.ts";
173
+ } from "./contexts/router/legacy/types.js";
174
174
 
175
175
  export {
176
176
  Action,
@@ -182,6 +182,6 @@ export {
182
182
  ParseFunction,
183
183
  RouterProvider,
184
184
  RouterProvider as RouterBindings,
185
- } from "./contexts/router/types.ts";
185
+ } from "./contexts/router/types.js";
186
186
 
187
- export { IUnsavedWarnContext } from "./contexts/unsavedWarn/types.ts";
187
+ export { IUnsavedWarnContext } from "./contexts/unsavedWarn/types.js";