@uniformdev/context-devtools 18.23.1-alpha.34 → 18.24.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/dist/esm/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -5
package/dist/esm/index.js
CHANGED
|
@@ -91,7 +91,7 @@ function useQuirkIndex({ apiHost, apiKey, projectId }, quirksData) {
|
|
|
91
91
|
apiKey,
|
|
92
92
|
apiHost: apiHost ? apiHost : void 0
|
|
93
93
|
});
|
|
94
|
-
const quirksResponse = await client.get();
|
|
94
|
+
const quirksResponse = await client.get({ withIntegrations: true });
|
|
95
95
|
const quirksIndexData = {};
|
|
96
96
|
quirksResponse.quirks.map((quirkData) => {
|
|
97
97
|
quirksIndexData[quirkData.id] = { ...quirkData, value: quirksData[quirkData.id] };
|
package/dist/index.js
CHANGED
|
@@ -125,7 +125,7 @@ function useQuirkIndex({ apiHost, apiKey, projectId }, quirksData) {
|
|
|
125
125
|
apiKey,
|
|
126
126
|
apiHost: apiHost ? apiHost : void 0
|
|
127
127
|
});
|
|
128
|
-
const quirksResponse = await client.get();
|
|
128
|
+
const quirksResponse = await client.get({ withIntegrations: true });
|
|
129
129
|
const quirksIndexData = {};
|
|
130
130
|
quirksResponse.quirks.map((quirkData) => {
|
|
131
131
|
quirksIndexData[quirkData.id] = { ...quirkData, value: quirksData[quirkData.id] };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/context-devtools",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.24.0",
|
|
4
4
|
"description": "Uniform Context developer tools components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"react-dom": ">=17"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@types/chrome": "0.0.
|
|
24
|
+
"@types/chrome": "0.0.224",
|
|
25
25
|
"@types/react": "18.0.28",
|
|
26
26
|
"autoprefixer": "10.4.14",
|
|
27
27
|
"postcss": "8.4.21",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@emotion/react": "11.10.5",
|
|
34
|
-
"@uniformdev/context": "18.
|
|
35
|
-
"@uniformdev/design-system": "18.
|
|
34
|
+
"@uniformdev/context": "18.24.0",
|
|
35
|
+
"@uniformdev/design-system": "18.24.0",
|
|
36
36
|
"formik": "^2.2.9",
|
|
37
37
|
"react-use": "^17.4.0",
|
|
38
38
|
"reakit": "^1.3.11",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "1e3a51a48860f7ec5861307dcda7d75278ac1505"
|
|
48
48
|
}
|