@uniformdev/context-vue 19.165.2-alpha.0 → 19.167.2-alpha.3
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 +1 -2
- package/dist/index.js +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +3 -3
package/dist/index.esm.js
CHANGED
@@ -469,8 +469,7 @@ var TrackSlot = defineComponent9({
|
|
469
469
|
watchEffect3(() => {
|
470
470
|
const hasNoBehaviorValue = !props.behavior || Array.isArray(props.behavior) && !props.behavior.length;
|
471
471
|
const cannotTrack = insidePersonalizeComponent || hasNoBehaviorValue;
|
472
|
-
if (cannotTrack)
|
473
|
-
return;
|
472
|
+
if (cannotTrack) return;
|
474
473
|
const pushBehaviorEnrichment = () => {
|
475
474
|
if (hasTracked.value) {
|
476
475
|
return;
|
package/dist/index.js
CHANGED
@@ -509,8 +509,7 @@ var TrackSlot = (0, import_vue_demi12.defineComponent)({
|
|
509
509
|
(0, import_vue_demi12.watchEffect)(() => {
|
510
510
|
const hasNoBehaviorValue = !props.behavior || Array.isArray(props.behavior) && !props.behavior.length;
|
511
511
|
const cannotTrack = insidePersonalizeComponent || hasNoBehaviorValue;
|
512
|
-
if (cannotTrack)
|
513
|
-
return;
|
512
|
+
if (cannotTrack) return;
|
514
513
|
const pushBehaviorEnrichment = () => {
|
515
514
|
if (hasTracked.value) {
|
516
515
|
return;
|
package/dist/index.mjs
CHANGED
@@ -469,8 +469,7 @@ var TrackSlot = defineComponent9({
|
|
469
469
|
watchEffect3(() => {
|
470
470
|
const hasNoBehaviorValue = !props.behavior || Array.isArray(props.behavior) && !props.behavior.length;
|
471
471
|
const cannotTrack = insidePersonalizeComponent || hasNoBehaviorValue;
|
472
|
-
if (cannotTrack)
|
473
|
-
return;
|
472
|
+
if (cannotTrack) return;
|
474
473
|
const pushBehaviorEnrichment = () => {
|
475
474
|
if (hasTracked.value) {
|
476
475
|
return;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/context-vue",
|
3
|
-
"version": "19.
|
3
|
+
"version": "19.167.2-alpha.3+d42f32a982",
|
4
4
|
"description": "Vue SDK for Uniform Context",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -23,7 +23,7 @@
|
|
23
23
|
"document": "api-extractor run --local"
|
24
24
|
},
|
25
25
|
"dependencies": {
|
26
|
-
"@uniformdev/context": "19.
|
26
|
+
"@uniformdev/context": "19.167.2-alpha.3+d42f32a982",
|
27
27
|
"cookie-es": "^1.0.0",
|
28
28
|
"dequal": "^2.0.2",
|
29
29
|
"uuid": "9.0.1",
|
@@ -59,5 +59,5 @@
|
|
59
59
|
"publishConfig": {
|
60
60
|
"access": "public"
|
61
61
|
},
|
62
|
-
"gitHead": "
|
62
|
+
"gitHead": "d42f32a98294c96f55a29c10c7c461c5327f56f3"
|
63
63
|
}
|