@shipengine/alchemy 3.0.3 → 4.0.0
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/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -7,7 +7,7 @@ const jsxRuntime = require('react/jsx-runtime');
|
|
|
7
7
|
const react = require('@emotion/react');
|
|
8
8
|
const giger = require('@packlink/giger');
|
|
9
9
|
const gigerTheme = require('@packlink/giger-theme');
|
|
10
|
-
const reactQuery = require('react-query');
|
|
10
|
+
const reactQuery = require('@tanstack/react-query');
|
|
11
11
|
const reactI18next = require('react-i18next');
|
|
12
12
|
const i18n = require('i18next');
|
|
13
13
|
|
package/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { jsx as jsx$1, jsxs as jsxs$1 } from 'react/jsx-runtime';
|
|
|
4
4
|
import { css, Global, ThemeProvider, CacheProvider } from '@emotion/react';
|
|
5
5
|
import { createIconCache, getEmotionResetStyles, GigerConfigProvider, GigerTestProvider, DefaultPortalRefProvider } from '@packlink/giger';
|
|
6
6
|
import { Theme } from '@packlink/giger-theme';
|
|
7
|
-
import { QueryClient, QueryClientProvider, useQuery, useMutation, useQueryClient } from 'react-query';
|
|
7
|
+
import { QueryClient, QueryClientProvider, useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
|
|
8
8
|
import { I18nextProvider } from 'react-i18next';
|
|
9
9
|
import i18n from 'i18next';
|
|
10
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipengine/alchemy",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"@emotion/react": "11.x",
|
|
20
20
|
"@packlink/giger-theme": "2.x.x",
|
|
21
21
|
"@packlink/giger": ">= 68.19.6 < 69",
|
|
22
|
+
"@tanstack/react-query": "4.x",
|
|
22
23
|
"i18next": "22.x",
|
|
23
24
|
"react": "17.x || 18.x",
|
|
24
25
|
"react-dom": "17.x || 18.x",
|
|
25
|
-
"react-i18next": "3.x"
|
|
26
|
-
"react-query": "3.x"
|
|
26
|
+
"react-i18next": "3.x"
|
|
27
27
|
}
|
|
28
28
|
}
|