@uniformdev/context-react 18.18.1-alpha.12 → 18.19.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/index.esm.js CHANGED
@@ -127,6 +127,7 @@ function PersonalizeStandard({
127
127
  variations,
128
128
  take: count
129
129
  }),
130
+ // eslint-disable-next-line react-hooks/exhaustive-deps
130
131
  [scores, context, count, name, variations]
131
132
  );
132
133
  const Wrapper = wrapperComponent != null ? wrapperComponent : ({ children }) => /* @__PURE__ */ React2.createElement(React2.Fragment, null, children);
package/dist/index.js CHANGED
@@ -18,6 +18,10 @@ var __copyProps = (to, from, except, desc) => {
18
18
  return to;
19
19
  };
20
20
  var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
21
25
  isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
22
26
  mod
23
27
  ));
@@ -166,6 +170,7 @@ function PersonalizeStandard({
166
170
  variations,
167
171
  take: count
168
172
  }),
173
+ // eslint-disable-next-line react-hooks/exhaustive-deps
169
174
  [scores, context, count, name, variations]
170
175
  );
171
176
  const Wrapper = wrapperComponent != null ? wrapperComponent : ({ children }) => /* @__PURE__ */ import_react7.default.createElement(import_react7.default.Fragment, null, children);
package/dist/index.mjs CHANGED
@@ -127,6 +127,7 @@ function PersonalizeStandard({
127
127
  variations,
128
128
  take: count
129
129
  }),
130
+ // eslint-disable-next-line react-hooks/exhaustive-deps
130
131
  [scores, context, count, name, variations]
131
132
  );
132
133
  const Wrapper = wrapperComponent != null ? wrapperComponent : ({ children }) => /* @__PURE__ */ React2.createElement(React2.Fragment, null, children);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/context-react",
3
- "version": "18.18.1-alpha.12+e9f4d7eda",
3
+ "version": "18.19.0",
4
4
  "description": "Uniform Context React integration package",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -20,7 +20,8 @@
20
20
  "clean": "rimraf dist",
21
21
  "test": "jest --maxWorkers=1",
22
22
  "lint": "eslint \"src/**/*.{js,ts,tsx}\"",
23
- "format": "prettier --write \"src/**/*.{js,ts,tsx}\""
23
+ "format": "prettier --write \"src/**/*.{js,ts,tsx}\"",
24
+ "document": "api-extractor run --local"
24
25
  },
25
26
  "devDependencies": {
26
27
  "@types/cookie": "0.5.1",
@@ -29,7 +30,7 @@
29
30
  "react-dom": "18.2.0"
30
31
  },
31
32
  "dependencies": {
32
- "@uniformdev/context": "18.18.1-alpha.12+e9f4d7eda",
33
+ "@uniformdev/context": "18.19.0",
33
34
  "cookie": "0.5.0",
34
35
  "dequal": "2.0.3"
35
36
  },
@@ -43,5 +44,5 @@
43
44
  "publishConfig": {
44
45
  "access": "public"
45
46
  },
46
- "gitHead": "e9f4d7eda7b1b425205d0be4ec736ebd5dbaed4d"
47
+ "gitHead": "bd4414826a6d38b928b5ba2ea68e58160b784562"
47
48
  }