@uniformdev/context-devtools 18.23.1-alpha.34 → 18.24.1-alpha.1

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 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.23.1-alpha.34+8eddcae60",
3
+ "version": "18.24.1-alpha.1+65e77b560",
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.222",
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.23.1-alpha.34+8eddcae60",
35
- "@uniformdev/design-system": "18.23.1-alpha.34+8eddcae60",
34
+ "@uniformdev/context": "18.24.1-alpha.1+65e77b560",
35
+ "@uniformdev/design-system": "18.24.1-alpha.1+65e77b560",
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": "8eddcae607f5c8b7ef9f7752bc11e186eee4305b"
47
+ "gitHead": "65e77b56039b0c688518358a8402acd84686e9e0"
48
48
  }