@dotcms/experiments 0.0.1-alpha.29 → 0.0.1-alpha.31

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.
Files changed (2) hide show
  1. package/index.esm.js +9 -5
  2. package/package.json +5 -4
package/index.esm.js CHANGED
@@ -324,7 +324,9 @@ var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty
324
324
  source: 'https://github.com/zloirock/core-js'
325
325
  });
326
326
 
327
- var store$2 = sharedStore.exports;
327
+ var sharedStoreExports = sharedStore.exports;
328
+
329
+ var store$2 = sharedStoreExports;
328
330
 
329
331
  var shared$4 = function (key, value) {
330
332
  return store$2[key] || (store$2[key] = value || {});
@@ -566,7 +568,7 @@ var functionName = {
566
568
 
567
569
  var uncurryThis$m = functionUncurryThis;
568
570
  var isCallable$j = isCallable$p;
569
- var store$1 = sharedStore.exports;
571
+ var store$1 = sharedStoreExports;
570
572
 
571
573
  var functionToString = uncurryThis$m(Function.toString);
572
574
 
@@ -602,7 +604,7 @@ var global$h = global$p;
602
604
  var isObject$9 = isObject$e;
603
605
  var createNonEnumerableProperty$8 = createNonEnumerableProperty$9;
604
606
  var hasOwn$b = hasOwnProperty_1;
605
- var shared$1 = sharedStore.exports;
607
+ var shared$1 = sharedStoreExports;
606
608
  var sharedKey$2 = sharedKey$3;
607
609
  var hiddenKeys$3 = hiddenKeys$4;
608
610
 
@@ -723,9 +725,11 @@ Function.prototype.toString = makeBuiltIn$2(function toString() {
723
725
  return isCallable$h(this) && getInternalState$4(this).source || inspectSource$2(this);
724
726
  }, 'toString');
725
727
 
728
+ var makeBuiltInExports = makeBuiltIn$3.exports;
729
+
726
730
  var isCallable$g = isCallable$p;
727
731
  var definePropertyModule$3 = objectDefineProperty;
728
- var makeBuiltIn$1 = makeBuiltIn$3.exports;
732
+ var makeBuiltIn$1 = makeBuiltInExports;
729
733
  var defineGlobalProperty$1 = defineGlobalProperty$3;
730
734
 
731
735
  var defineBuiltIn$d = function (O, key, value, options) {
@@ -2107,7 +2111,7 @@ var classof$6 = classofRaw$2;
2107
2111
 
2108
2112
  var engineIsNode = classof$6(global$d.process) === 'process';
2109
2113
 
2110
- var makeBuiltIn = makeBuiltIn$3.exports;
2114
+ var makeBuiltIn = makeBuiltInExports;
2111
2115
  var defineProperty = objectDefineProperty;
2112
2116
 
2113
2117
  var defineBuiltInAccessor$5 = function (target, name, descriptor) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotcms/experiments",
3
- "version": "0.0.1-alpha.29",
3
+ "version": "0.0.1-alpha.31",
4
4
  "description": "Official JavaScript library to use Experiments with DotCMS.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,9 +25,10 @@
25
25
  "peerDependencies": {
26
26
  "react": ">=18",
27
27
  "react-dom": ">=18",
28
- "@dotcms/client": "0.0.1-alpha.29"
28
+ "@dotcms/client": "0.0.1-alpha.31"
29
29
  },
30
30
  "module": "./index.esm.js",
31
31
  "type": "module",
32
- "main": "./index.esm.js"
33
- }
32
+ "main": "./index.esm.js",
33
+ "types": "./index.esm.d.ts"
34
+ }