@uniformdev/context-vue 20.6.2-alpha.10 → 20.6.5-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/index.d.mts +2 -22
- package/dist/index.d.ts +2 -22
- package/dist/index.esm.js +8 -21
- package/dist/index.js +8 -21
- package/dist/index.mjs +8 -21
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
@@ -21,8 +21,6 @@ type PersonalizeComponentProps = {
|
|
21
21
|
component: PersonalizedVariationComponent;
|
22
22
|
/** The number of variations to select. Use for personalized lists where the `count` most relevant should be shown. */
|
23
23
|
count?: number;
|
24
|
-
/** The algorithm to use for personalization, if not the default. */
|
25
|
-
algorithm?: string;
|
26
24
|
};
|
27
25
|
declare const Personalize: vue.DefineComponent<vue.ExtractPropTypes<{
|
28
26
|
name: {
|
@@ -41,10 +39,6 @@ declare const Personalize: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
41
39
|
type: PropType<PersonalizeComponentProps["count"]>;
|
42
40
|
default: number;
|
43
41
|
};
|
44
|
-
algorithm: {
|
45
|
-
type: PropType<PersonalizeComponentProps["algorithm"]>;
|
46
|
-
default: string;
|
47
|
-
};
|
48
42
|
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
49
43
|
[key: string]: any;
|
50
44
|
}>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
@@ -64,16 +58,11 @@ declare const Personalize: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
64
58
|
type: PropType<PersonalizeComponentProps["count"]>;
|
65
59
|
default: number;
|
66
60
|
};
|
67
|
-
algorithm: {
|
68
|
-
type: PropType<PersonalizeComponentProps["algorithm"]>;
|
69
|
-
default: string;
|
70
|
-
};
|
71
61
|
}>> & Readonly<{}>, {
|
72
62
|
count: number | undefined;
|
73
|
-
algorithm: string | undefined;
|
74
63
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
75
64
|
|
76
|
-
declare const
|
65
|
+
declare const PersonalizeStandard: vue.DefineComponent<vue.ExtractPropTypes<{
|
77
66
|
name: {
|
78
67
|
type: PropType<PersonalizeComponentProps["name"]>;
|
79
68
|
required: true;
|
@@ -90,10 +79,6 @@ declare const PersonalizeEdge: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
90
79
|
type: PropType<PersonalizeComponentProps["count"]>;
|
91
80
|
default: number;
|
92
81
|
};
|
93
|
-
algorithm: {
|
94
|
-
type: PropType<PersonalizeComponentProps["algorithm"]>;
|
95
|
-
default: string;
|
96
|
-
};
|
97
82
|
}>, () => (vue.VNode<vue.RendererNode, vue.RendererElement, {
|
98
83
|
[key: string]: any;
|
99
84
|
}> | vue.VNode<vue.RendererNode, vue.RendererElement, {
|
@@ -115,13 +100,8 @@ declare const PersonalizeEdge: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
115
100
|
type: PropType<PersonalizeComponentProps["count"]>;
|
116
101
|
default: number;
|
117
102
|
};
|
118
|
-
algorithm: {
|
119
|
-
type: PropType<PersonalizeComponentProps["algorithm"]>;
|
120
|
-
default: string;
|
121
|
-
};
|
122
103
|
}>> & Readonly<{}>, {
|
123
104
|
count: number | undefined;
|
124
|
-
algorithm: string | undefined;
|
125
105
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
126
106
|
|
127
107
|
interface TestComponentProps {
|
@@ -331,4 +311,4 @@ declare const useQuirks: () => vue.Ref<Quirks, Quirks>;
|
|
331
311
|
*/
|
332
312
|
declare const useScores: () => vue.Ref<ScoreVector, ScoreVector>;
|
333
313
|
|
334
|
-
export { Personalize, type PersonalizeComponentProps, PersonalizeEdge, type PersonalizedVariationComponent, type PersonalizedVariationComponentProps, Test, type TestComponentProps, Track, TrackSlot, type UniformContextProps, UniformContextProvider, type VariantOutputType, isUsingUniformContext, onRouteChange, provideIsPersonalized, provideUniformContext, uniformContextInjectionKey, useIsPersonalized, useQuirks, useScores, useUniformContext };
|
314
|
+
export { Personalize, type PersonalizeComponentProps, PersonalizeStandard as PersonalizeEdge, type PersonalizedVariationComponent, type PersonalizedVariationComponentProps, Test, type TestComponentProps, Track, TrackSlot, type UniformContextProps, UniformContextProvider, type VariantOutputType, isUsingUniformContext, onRouteChange, provideIsPersonalized, provideUniformContext, uniformContextInjectionKey, useIsPersonalized, useQuirks, useScores, useUniformContext };
|
package/dist/index.d.ts
CHANGED
@@ -21,8 +21,6 @@ type PersonalizeComponentProps = {
|
|
21
21
|
component: PersonalizedVariationComponent;
|
22
22
|
/** The number of variations to select. Use for personalized lists where the `count` most relevant should be shown. */
|
23
23
|
count?: number;
|
24
|
-
/** The algorithm to use for personalization, if not the default. */
|
25
|
-
algorithm?: string;
|
26
24
|
};
|
27
25
|
declare const Personalize: vue.DefineComponent<vue.ExtractPropTypes<{
|
28
26
|
name: {
|
@@ -41,10 +39,6 @@ declare const Personalize: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
41
39
|
type: PropType<PersonalizeComponentProps["count"]>;
|
42
40
|
default: number;
|
43
41
|
};
|
44
|
-
algorithm: {
|
45
|
-
type: PropType<PersonalizeComponentProps["algorithm"]>;
|
46
|
-
default: string;
|
47
|
-
};
|
48
42
|
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
49
43
|
[key: string]: any;
|
50
44
|
}>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
@@ -64,16 +58,11 @@ declare const Personalize: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
64
58
|
type: PropType<PersonalizeComponentProps["count"]>;
|
65
59
|
default: number;
|
66
60
|
};
|
67
|
-
algorithm: {
|
68
|
-
type: PropType<PersonalizeComponentProps["algorithm"]>;
|
69
|
-
default: string;
|
70
|
-
};
|
71
61
|
}>> & Readonly<{}>, {
|
72
62
|
count: number | undefined;
|
73
|
-
algorithm: string | undefined;
|
74
63
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
75
64
|
|
76
|
-
declare const
|
65
|
+
declare const PersonalizeStandard: vue.DefineComponent<vue.ExtractPropTypes<{
|
77
66
|
name: {
|
78
67
|
type: PropType<PersonalizeComponentProps["name"]>;
|
79
68
|
required: true;
|
@@ -90,10 +79,6 @@ declare const PersonalizeEdge: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
90
79
|
type: PropType<PersonalizeComponentProps["count"]>;
|
91
80
|
default: number;
|
92
81
|
};
|
93
|
-
algorithm: {
|
94
|
-
type: PropType<PersonalizeComponentProps["algorithm"]>;
|
95
|
-
default: string;
|
96
|
-
};
|
97
82
|
}>, () => (vue.VNode<vue.RendererNode, vue.RendererElement, {
|
98
83
|
[key: string]: any;
|
99
84
|
}> | vue.VNode<vue.RendererNode, vue.RendererElement, {
|
@@ -115,13 +100,8 @@ declare const PersonalizeEdge: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
115
100
|
type: PropType<PersonalizeComponentProps["count"]>;
|
116
101
|
default: number;
|
117
102
|
};
|
118
|
-
algorithm: {
|
119
|
-
type: PropType<PersonalizeComponentProps["algorithm"]>;
|
120
|
-
default: string;
|
121
|
-
};
|
122
103
|
}>> & Readonly<{}>, {
|
123
104
|
count: number | undefined;
|
124
|
-
algorithm: string | undefined;
|
125
105
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
126
106
|
|
127
107
|
interface TestComponentProps {
|
@@ -331,4 +311,4 @@ declare const useQuirks: () => vue.Ref<Quirks, Quirks>;
|
|
331
311
|
*/
|
332
312
|
declare const useScores: () => vue.Ref<ScoreVector, ScoreVector>;
|
333
313
|
|
334
|
-
export { Personalize, type PersonalizeComponentProps, PersonalizeEdge, type PersonalizedVariationComponent, type PersonalizedVariationComponentProps, Test, type TestComponentProps, Track, TrackSlot, type UniformContextProps, UniformContextProvider, type VariantOutputType, isUsingUniformContext, onRouteChange, provideIsPersonalized, provideUniformContext, uniformContextInjectionKey, useIsPersonalized, useQuirks, useScores, useUniformContext };
|
314
|
+
export { Personalize, type PersonalizeComponentProps, PersonalizeStandard as PersonalizeEdge, type PersonalizedVariationComponent, type PersonalizedVariationComponentProps, Test, type TestComponentProps, Track, TrackSlot, type UniformContextProps, UniformContextProvider, type VariantOutputType, isUsingUniformContext, onRouteChange, provideIsPersonalized, provideUniformContext, uniformContextInjectionKey, useIsPersonalized, useQuirks, useScores, useUniformContext };
|
package/dist/index.esm.js
CHANGED
@@ -58,8 +58,8 @@ function isUsingUniformContext() {
|
|
58
58
|
// src/components/personalize/PersonalizeEdge.ts
|
59
59
|
import { EdgeNodeTagName, ScriptType } from "@uniformdev/context";
|
60
60
|
import { defineComponent, h } from "vue";
|
61
|
-
var
|
62
|
-
name: "
|
61
|
+
var PersonalizeStandard = defineComponent({
|
62
|
+
name: "PersonalizeStandard",
|
63
63
|
inheritAttrs: false,
|
64
64
|
props: {
|
65
65
|
name: {
|
@@ -77,18 +77,13 @@ var PersonalizeEdge = defineComponent({
|
|
77
77
|
count: {
|
78
78
|
type: Number,
|
79
79
|
default: 1
|
80
|
-
},
|
81
|
-
algorithm: {
|
82
|
-
type: String,
|
83
|
-
default: "default"
|
84
80
|
}
|
85
81
|
},
|
86
82
|
setup(props) {
|
87
83
|
var _a;
|
88
84
|
const options = {
|
89
85
|
name: props.name,
|
90
|
-
count: (_a = props.count) != null ? _a : 1
|
91
|
-
algorithm: props.algorithm
|
86
|
+
count: (_a = props.count) != null ? _a : 1
|
92
87
|
};
|
93
88
|
return () => [
|
94
89
|
h(EdgeNodeTagName, { "data-type": ScriptType.ListStart, innerHTML: JSON.stringify(options) }),
|
@@ -113,7 +108,7 @@ var PersonalizeEdge = defineComponent({
|
|
113
108
|
];
|
114
109
|
}
|
115
110
|
});
|
116
|
-
var PersonalizeEdge_default =
|
111
|
+
var PersonalizeEdge_default = PersonalizeStandard;
|
117
112
|
|
118
113
|
// src/components/personalize/PersonalizeStandard.ts
|
119
114
|
import { defineComponent as defineComponent3, h as h3, ref as ref2, toRaw, watch } from "vue";
|
@@ -168,7 +163,7 @@ var PersonalizeProvider = defineComponent2({
|
|
168
163
|
var PersonalizeProvider_default = PersonalizeProvider;
|
169
164
|
|
170
165
|
// src/components/personalize/PersonalizeStandard.ts
|
171
|
-
var
|
166
|
+
var PersonalizeStandard2 = defineComponent3({
|
172
167
|
name: "PersonalizeStandard",
|
173
168
|
inheritAttrs: false,
|
174
169
|
props: {
|
@@ -187,10 +182,6 @@ var PersonalizeStandard = defineComponent3({
|
|
187
182
|
count: {
|
188
183
|
type: Number,
|
189
184
|
default: 1
|
190
|
-
},
|
191
|
-
algorithm: {
|
192
|
-
type: String,
|
193
|
-
default: "default"
|
194
185
|
}
|
195
186
|
},
|
196
187
|
setup(props) {
|
@@ -201,8 +192,7 @@ var PersonalizeStandard = defineComponent3({
|
|
201
192
|
return uniformContext.personalize({
|
202
193
|
name: toRaw(props.name),
|
203
194
|
variations: toRaw(props.variations),
|
204
|
-
take: (_a = toRaw(props.count)) != null ? _a : 1
|
205
|
-
algorithm: toRaw(props.algorithm)
|
195
|
+
take: (_a = toRaw(props.count)) != null ? _a : 1
|
206
196
|
});
|
207
197
|
};
|
208
198
|
const personalizedResult = ref2(personalize());
|
@@ -229,6 +219,7 @@ var PersonalizeStandard = defineComponent3({
|
|
229
219
|
);
|
230
220
|
}
|
231
221
|
});
|
222
|
+
var PersonalizeStandard_default = PersonalizeStandard2;
|
232
223
|
|
233
224
|
// src/components/personalize/Personalize.ts
|
234
225
|
var Personalize = defineComponent4({
|
@@ -250,15 +241,11 @@ var Personalize = defineComponent4({
|
|
250
241
|
count: {
|
251
242
|
type: Number,
|
252
243
|
default: 1
|
253
|
-
},
|
254
|
-
algorithm: {
|
255
|
-
type: String,
|
256
|
-
default: "default"
|
257
244
|
}
|
258
245
|
},
|
259
246
|
setup(props) {
|
260
247
|
const { outputType } = useUniformContext();
|
261
|
-
return () => h4(!isServer || outputType === "standard" ?
|
248
|
+
return () => h4(!isServer || outputType === "standard" ? PersonalizeStandard_default : PersonalizeEdge_default, { ...props });
|
262
249
|
}
|
263
250
|
});
|
264
251
|
var Personalize_default = Personalize;
|
package/dist/index.js
CHANGED
@@ -98,8 +98,8 @@ function isUsingUniformContext() {
|
|
98
98
|
// src/components/personalize/PersonalizeEdge.ts
|
99
99
|
var import_context = require("@uniformdev/context");
|
100
100
|
var import_vue2 = require("vue");
|
101
|
-
var
|
102
|
-
name: "
|
101
|
+
var PersonalizeStandard = (0, import_vue2.defineComponent)({
|
102
|
+
name: "PersonalizeStandard",
|
103
103
|
inheritAttrs: false,
|
104
104
|
props: {
|
105
105
|
name: {
|
@@ -117,18 +117,13 @@ var PersonalizeEdge = (0, import_vue2.defineComponent)({
|
|
117
117
|
count: {
|
118
118
|
type: Number,
|
119
119
|
default: 1
|
120
|
-
},
|
121
|
-
algorithm: {
|
122
|
-
type: String,
|
123
|
-
default: "default"
|
124
120
|
}
|
125
121
|
},
|
126
122
|
setup(props) {
|
127
123
|
var _a;
|
128
124
|
const options = {
|
129
125
|
name: props.name,
|
130
|
-
count: (_a = props.count) != null ? _a : 1
|
131
|
-
algorithm: props.algorithm
|
126
|
+
count: (_a = props.count) != null ? _a : 1
|
132
127
|
};
|
133
128
|
return () => [
|
134
129
|
(0, import_vue2.h)(import_context.EdgeNodeTagName, { "data-type": import_context.ScriptType.ListStart, innerHTML: JSON.stringify(options) }),
|
@@ -153,7 +148,7 @@ var PersonalizeEdge = (0, import_vue2.defineComponent)({
|
|
153
148
|
];
|
154
149
|
}
|
155
150
|
});
|
156
|
-
var PersonalizeEdge_default =
|
151
|
+
var PersonalizeEdge_default = PersonalizeStandard;
|
157
152
|
|
158
153
|
// src/components/personalize/PersonalizeStandard.ts
|
159
154
|
var import_vue6 = require("vue");
|
@@ -208,7 +203,7 @@ var PersonalizeProvider = (0, import_vue5.defineComponent)({
|
|
208
203
|
var PersonalizeProvider_default = PersonalizeProvider;
|
209
204
|
|
210
205
|
// src/components/personalize/PersonalizeStandard.ts
|
211
|
-
var
|
206
|
+
var PersonalizeStandard2 = (0, import_vue6.defineComponent)({
|
212
207
|
name: "PersonalizeStandard",
|
213
208
|
inheritAttrs: false,
|
214
209
|
props: {
|
@@ -227,10 +222,6 @@ var PersonalizeStandard = (0, import_vue6.defineComponent)({
|
|
227
222
|
count: {
|
228
223
|
type: Number,
|
229
224
|
default: 1
|
230
|
-
},
|
231
|
-
algorithm: {
|
232
|
-
type: String,
|
233
|
-
default: "default"
|
234
225
|
}
|
235
226
|
},
|
236
227
|
setup(props) {
|
@@ -241,8 +232,7 @@ var PersonalizeStandard = (0, import_vue6.defineComponent)({
|
|
241
232
|
return uniformContext.personalize({
|
242
233
|
name: (0, import_vue6.toRaw)(props.name),
|
243
234
|
variations: (0, import_vue6.toRaw)(props.variations),
|
244
|
-
take: (_a = (0, import_vue6.toRaw)(props.count)) != null ? _a : 1
|
245
|
-
algorithm: (0, import_vue6.toRaw)(props.algorithm)
|
235
|
+
take: (_a = (0, import_vue6.toRaw)(props.count)) != null ? _a : 1
|
246
236
|
});
|
247
237
|
};
|
248
238
|
const personalizedResult = (0, import_vue6.ref)(personalize());
|
@@ -269,6 +259,7 @@ var PersonalizeStandard = (0, import_vue6.defineComponent)({
|
|
269
259
|
);
|
270
260
|
}
|
271
261
|
});
|
262
|
+
var PersonalizeStandard_default = PersonalizeStandard2;
|
272
263
|
|
273
264
|
// src/components/personalize/Personalize.ts
|
274
265
|
var Personalize = (0, import_vue7.defineComponent)({
|
@@ -290,15 +281,11 @@ var Personalize = (0, import_vue7.defineComponent)({
|
|
290
281
|
count: {
|
291
282
|
type: Number,
|
292
283
|
default: 1
|
293
|
-
},
|
294
|
-
algorithm: {
|
295
|
-
type: String,
|
296
|
-
default: "default"
|
297
284
|
}
|
298
285
|
},
|
299
286
|
setup(props) {
|
300
287
|
const { outputType } = useUniformContext();
|
301
|
-
return () => (0, import_vue7.h)(!isServer || outputType === "standard" ?
|
288
|
+
return () => (0, import_vue7.h)(!isServer || outputType === "standard" ? PersonalizeStandard_default : PersonalizeEdge_default, { ...props });
|
302
289
|
}
|
303
290
|
});
|
304
291
|
var Personalize_default = Personalize;
|
package/dist/index.mjs
CHANGED
@@ -58,8 +58,8 @@ function isUsingUniformContext() {
|
|
58
58
|
// src/components/personalize/PersonalizeEdge.ts
|
59
59
|
import { EdgeNodeTagName, ScriptType } from "@uniformdev/context";
|
60
60
|
import { defineComponent, h } from "vue";
|
61
|
-
var
|
62
|
-
name: "
|
61
|
+
var PersonalizeStandard = defineComponent({
|
62
|
+
name: "PersonalizeStandard",
|
63
63
|
inheritAttrs: false,
|
64
64
|
props: {
|
65
65
|
name: {
|
@@ -77,18 +77,13 @@ var PersonalizeEdge = defineComponent({
|
|
77
77
|
count: {
|
78
78
|
type: Number,
|
79
79
|
default: 1
|
80
|
-
},
|
81
|
-
algorithm: {
|
82
|
-
type: String,
|
83
|
-
default: "default"
|
84
80
|
}
|
85
81
|
},
|
86
82
|
setup(props) {
|
87
83
|
var _a;
|
88
84
|
const options = {
|
89
85
|
name: props.name,
|
90
|
-
count: (_a = props.count) != null ? _a : 1
|
91
|
-
algorithm: props.algorithm
|
86
|
+
count: (_a = props.count) != null ? _a : 1
|
92
87
|
};
|
93
88
|
return () => [
|
94
89
|
h(EdgeNodeTagName, { "data-type": ScriptType.ListStart, innerHTML: JSON.stringify(options) }),
|
@@ -113,7 +108,7 @@ var PersonalizeEdge = defineComponent({
|
|
113
108
|
];
|
114
109
|
}
|
115
110
|
});
|
116
|
-
var PersonalizeEdge_default =
|
111
|
+
var PersonalizeEdge_default = PersonalizeStandard;
|
117
112
|
|
118
113
|
// src/components/personalize/PersonalizeStandard.ts
|
119
114
|
import { defineComponent as defineComponent3, h as h3, ref as ref2, toRaw, watch } from "vue";
|
@@ -168,7 +163,7 @@ var PersonalizeProvider = defineComponent2({
|
|
168
163
|
var PersonalizeProvider_default = PersonalizeProvider;
|
169
164
|
|
170
165
|
// src/components/personalize/PersonalizeStandard.ts
|
171
|
-
var
|
166
|
+
var PersonalizeStandard2 = defineComponent3({
|
172
167
|
name: "PersonalizeStandard",
|
173
168
|
inheritAttrs: false,
|
174
169
|
props: {
|
@@ -187,10 +182,6 @@ var PersonalizeStandard = defineComponent3({
|
|
187
182
|
count: {
|
188
183
|
type: Number,
|
189
184
|
default: 1
|
190
|
-
},
|
191
|
-
algorithm: {
|
192
|
-
type: String,
|
193
|
-
default: "default"
|
194
185
|
}
|
195
186
|
},
|
196
187
|
setup(props) {
|
@@ -201,8 +192,7 @@ var PersonalizeStandard = defineComponent3({
|
|
201
192
|
return uniformContext.personalize({
|
202
193
|
name: toRaw(props.name),
|
203
194
|
variations: toRaw(props.variations),
|
204
|
-
take: (_a = toRaw(props.count)) != null ? _a : 1
|
205
|
-
algorithm: toRaw(props.algorithm)
|
195
|
+
take: (_a = toRaw(props.count)) != null ? _a : 1
|
206
196
|
});
|
207
197
|
};
|
208
198
|
const personalizedResult = ref2(personalize());
|
@@ -229,6 +219,7 @@ var PersonalizeStandard = defineComponent3({
|
|
229
219
|
);
|
230
220
|
}
|
231
221
|
});
|
222
|
+
var PersonalizeStandard_default = PersonalizeStandard2;
|
232
223
|
|
233
224
|
// src/components/personalize/Personalize.ts
|
234
225
|
var Personalize = defineComponent4({
|
@@ -250,15 +241,11 @@ var Personalize = defineComponent4({
|
|
250
241
|
count: {
|
251
242
|
type: Number,
|
252
243
|
default: 1
|
253
|
-
},
|
254
|
-
algorithm: {
|
255
|
-
type: String,
|
256
|
-
default: "default"
|
257
244
|
}
|
258
245
|
},
|
259
246
|
setup(props) {
|
260
247
|
const { outputType } = useUniformContext();
|
261
|
-
return () => h4(!isServer || outputType === "standard" ?
|
248
|
+
return () => h4(!isServer || outputType === "standard" ? PersonalizeStandard_default : PersonalizeEdge_default, { ...props });
|
262
249
|
}
|
263
250
|
});
|
264
251
|
var Personalize_default = Personalize;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/context-vue",
|
3
|
-
"version": "20.6.
|
3
|
+
"version": "20.6.5-alpha.1+1b1a069415",
|
4
4
|
"description": "Vue SDK for Uniform Context",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -30,7 +30,7 @@
|
|
30
30
|
"document": "api-extractor run --local"
|
31
31
|
},
|
32
32
|
"dependencies": {
|
33
|
-
"@uniformdev/context": "20.6.
|
33
|
+
"@uniformdev/context": "20.6.5-alpha.1+1b1a069415",
|
34
34
|
"cookie-es": "^1.0.0",
|
35
35
|
"dequal": "^2.0.2",
|
36
36
|
"uuid": "9.0.1"
|
@@ -59,5 +59,5 @@
|
|
59
59
|
"publishConfig": {
|
60
60
|
"access": "public"
|
61
61
|
},
|
62
|
-
"gitHead": "
|
62
|
+
"gitHead": "1b1a06941575fefd19f3ab5621a0c403aa2cf7d5"
|
63
63
|
}
|