@uniformdev/canvas-vue 18.33.0 → 18.33.1-alpha.7
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.ts +3 -1260
- package/dist/index.esm.js +0 -8
- package/dist/index.js +0 -12
- package/dist/index.mjs +0 -8
- package/package.json +4 -4
package/dist/index.esm.js
CHANGED
|
@@ -165,7 +165,6 @@ import {
|
|
|
165
165
|
isUpdateCompositionMessage
|
|
166
166
|
} from "@uniformdev/canvas";
|
|
167
167
|
import { computed as computed2, onMounted, ref, watch } from "vue-demi";
|
|
168
|
-
var createApiEnhancer = createUniformApiEnhancer;
|
|
169
168
|
var registeredCompositionIds = /* @__PURE__ */ new Set();
|
|
170
169
|
var useUniformContextualEditing = ({
|
|
171
170
|
initialCompositionValue,
|
|
@@ -245,7 +244,6 @@ function isInContextEditingMode() {
|
|
|
245
244
|
);
|
|
246
245
|
return isOpenedByInContextEditor && isAllowlistedReferrer;
|
|
247
246
|
}
|
|
248
|
-
var useContextualEditing = useUniformContextualEditing;
|
|
249
247
|
|
|
250
248
|
// src/utils/constants.ts
|
|
251
249
|
var globalCompositionEnhancerInjectionKey = "uniformGlobalCompositionEnhancer";
|
|
@@ -304,7 +302,6 @@ var UniformComposition = defineComponent3({
|
|
|
304
302
|
);
|
|
305
303
|
}
|
|
306
304
|
});
|
|
307
|
-
var Composition = UniformComposition;
|
|
308
305
|
|
|
309
306
|
// src/components/UniformSlot.ts
|
|
310
307
|
import {
|
|
@@ -487,7 +484,6 @@ function renderComponent({
|
|
|
487
484
|
);
|
|
488
485
|
return h4("");
|
|
489
486
|
}
|
|
490
|
-
var SlotContent = UniformSlot;
|
|
491
487
|
|
|
492
488
|
// src/composables/useCompositionEventEffect.ts
|
|
493
489
|
import {
|
|
@@ -526,18 +522,14 @@ async function useCompositionEventEffect({
|
|
|
526
522
|
);
|
|
527
523
|
}
|
|
528
524
|
export {
|
|
529
|
-
Composition,
|
|
530
525
|
DefaultNotImplementedComponent,
|
|
531
|
-
SlotContent,
|
|
532
526
|
UniformComponent,
|
|
533
527
|
UniformComposition,
|
|
534
528
|
UniformSlot,
|
|
535
529
|
convertComponentToProps,
|
|
536
|
-
createApiEnhancer,
|
|
537
530
|
createUniformApiEnhancer,
|
|
538
531
|
globalCompositionEnhancerInjectionKey,
|
|
539
532
|
useCompositionEventEffect,
|
|
540
|
-
useContextualEditing,
|
|
541
533
|
useUniformContextualEditing,
|
|
542
534
|
useUniformCurrentComponent,
|
|
543
535
|
useUniformCurrentComposition
|
package/dist/index.js
CHANGED
|
@@ -20,18 +20,14 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/index.ts
|
|
21
21
|
var src_exports = {};
|
|
22
22
|
__export(src_exports, {
|
|
23
|
-
Composition: () => Composition,
|
|
24
23
|
DefaultNotImplementedComponent: () => DefaultNotImplementedComponent,
|
|
25
|
-
SlotContent: () => SlotContent,
|
|
26
24
|
UniformComponent: () => UniformComponent,
|
|
27
25
|
UniformComposition: () => UniformComposition,
|
|
28
26
|
UniformSlot: () => UniformSlot,
|
|
29
27
|
convertComponentToProps: () => convertComponentToProps,
|
|
30
|
-
createApiEnhancer: () => createApiEnhancer,
|
|
31
28
|
createUniformApiEnhancer: () => import_canvas3.createUniformApiEnhancer,
|
|
32
29
|
globalCompositionEnhancerInjectionKey: () => globalCompositionEnhancerInjectionKey,
|
|
33
30
|
useCompositionEventEffect: () => useCompositionEventEffect,
|
|
34
|
-
useContextualEditing: () => useContextualEditing,
|
|
35
31
|
useUniformContextualEditing: () => useUniformContextualEditing,
|
|
36
32
|
useUniformCurrentComponent: () => useUniformCurrentComponent,
|
|
37
33
|
useUniformCurrentComposition: () => useUniformCurrentComposition
|
|
@@ -184,7 +180,6 @@ var import_vue_demi4 = require("vue-demi");
|
|
|
184
180
|
// src/composables/useUniformContextualEditing.ts
|
|
185
181
|
var import_canvas3 = require("@uniformdev/canvas");
|
|
186
182
|
var import_vue_demi3 = require("vue-demi");
|
|
187
|
-
var createApiEnhancer = import_canvas3.createUniformApiEnhancer;
|
|
188
183
|
var registeredCompositionIds = /* @__PURE__ */ new Set();
|
|
189
184
|
var useUniformContextualEditing = ({
|
|
190
185
|
initialCompositionValue,
|
|
@@ -264,7 +259,6 @@ function isInContextEditingMode() {
|
|
|
264
259
|
);
|
|
265
260
|
return isOpenedByInContextEditor && isAllowlistedReferrer;
|
|
266
261
|
}
|
|
267
|
-
var useContextualEditing = useUniformContextualEditing;
|
|
268
262
|
|
|
269
263
|
// src/utils/constants.ts
|
|
270
264
|
var globalCompositionEnhancerInjectionKey = "uniformGlobalCompositionEnhancer";
|
|
@@ -323,7 +317,6 @@ var UniformComposition = (0, import_vue_demi4.defineComponent)({
|
|
|
323
317
|
);
|
|
324
318
|
}
|
|
325
319
|
});
|
|
326
|
-
var Composition = UniformComposition;
|
|
327
320
|
|
|
328
321
|
// src/components/UniformSlot.ts
|
|
329
322
|
var import_canvas4 = require("@uniformdev/canvas");
|
|
@@ -496,7 +489,6 @@ function renderComponent({
|
|
|
496
489
|
);
|
|
497
490
|
return (0, import_vue_demi5.h)("");
|
|
498
491
|
}
|
|
499
|
-
var SlotContent = UniformSlot;
|
|
500
492
|
|
|
501
493
|
// src/composables/useCompositionEventEffect.ts
|
|
502
494
|
var import_canvas5 = require("@uniformdev/canvas");
|
|
@@ -532,18 +524,14 @@ async function useCompositionEventEffect({
|
|
|
532
524
|
}
|
|
533
525
|
// Annotate the CommonJS export names for ESM import in node:
|
|
534
526
|
0 && (module.exports = {
|
|
535
|
-
Composition,
|
|
536
527
|
DefaultNotImplementedComponent,
|
|
537
|
-
SlotContent,
|
|
538
528
|
UniformComponent,
|
|
539
529
|
UniformComposition,
|
|
540
530
|
UniformSlot,
|
|
541
531
|
convertComponentToProps,
|
|
542
|
-
createApiEnhancer,
|
|
543
532
|
createUniformApiEnhancer,
|
|
544
533
|
globalCompositionEnhancerInjectionKey,
|
|
545
534
|
useCompositionEventEffect,
|
|
546
|
-
useContextualEditing,
|
|
547
535
|
useUniformContextualEditing,
|
|
548
536
|
useUniformCurrentComponent,
|
|
549
537
|
useUniformCurrentComposition
|
package/dist/index.mjs
CHANGED
|
@@ -165,7 +165,6 @@ import {
|
|
|
165
165
|
isUpdateCompositionMessage
|
|
166
166
|
} from "@uniformdev/canvas";
|
|
167
167
|
import { computed as computed2, onMounted, ref, watch } from "vue-demi";
|
|
168
|
-
var createApiEnhancer = createUniformApiEnhancer;
|
|
169
168
|
var registeredCompositionIds = /* @__PURE__ */ new Set();
|
|
170
169
|
var useUniformContextualEditing = ({
|
|
171
170
|
initialCompositionValue,
|
|
@@ -245,7 +244,6 @@ function isInContextEditingMode() {
|
|
|
245
244
|
);
|
|
246
245
|
return isOpenedByInContextEditor && isAllowlistedReferrer;
|
|
247
246
|
}
|
|
248
|
-
var useContextualEditing = useUniformContextualEditing;
|
|
249
247
|
|
|
250
248
|
// src/utils/constants.ts
|
|
251
249
|
var globalCompositionEnhancerInjectionKey = "uniformGlobalCompositionEnhancer";
|
|
@@ -304,7 +302,6 @@ var UniformComposition = defineComponent3({
|
|
|
304
302
|
);
|
|
305
303
|
}
|
|
306
304
|
});
|
|
307
|
-
var Composition = UniformComposition;
|
|
308
305
|
|
|
309
306
|
// src/components/UniformSlot.ts
|
|
310
307
|
import {
|
|
@@ -487,7 +484,6 @@ function renderComponent({
|
|
|
487
484
|
);
|
|
488
485
|
return h4("");
|
|
489
486
|
}
|
|
490
|
-
var SlotContent = UniformSlot;
|
|
491
487
|
|
|
492
488
|
// src/composables/useCompositionEventEffect.ts
|
|
493
489
|
import {
|
|
@@ -526,18 +522,14 @@ async function useCompositionEventEffect({
|
|
|
526
522
|
);
|
|
527
523
|
}
|
|
528
524
|
export {
|
|
529
|
-
Composition,
|
|
530
525
|
DefaultNotImplementedComponent,
|
|
531
|
-
SlotContent,
|
|
532
526
|
UniformComponent,
|
|
533
527
|
UniformComposition,
|
|
534
528
|
UniformSlot,
|
|
535
529
|
convertComponentToProps,
|
|
536
|
-
createApiEnhancer,
|
|
537
530
|
createUniformApiEnhancer,
|
|
538
531
|
globalCompositionEnhancerInjectionKey,
|
|
539
532
|
useCompositionEventEffect,
|
|
540
|
-
useContextualEditing,
|
|
541
533
|
useUniformContextualEditing,
|
|
542
534
|
useUniformCurrentComponent,
|
|
543
535
|
useUniformCurrentComposition
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-vue",
|
|
3
|
-
"version": "18.33.
|
|
3
|
+
"version": "18.33.1-alpha.7+7127237a1",
|
|
4
4
|
"description": "Vue SDK for Uniform Canvas",
|
|
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/canvas": "18.33.
|
|
26
|
+
"@uniformdev/canvas": "18.33.1-alpha.7+7127237a1",
|
|
27
27
|
"@vue/test-utils": "2.3.2",
|
|
28
28
|
"vue-demi": "^0.13.11"
|
|
29
29
|
},
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@testing-library/vue": "7.0.0",
|
|
42
42
|
"@types/uuid": "9.0.1",
|
|
43
|
-
"@uniformdev/context-vue": "18.33.
|
|
43
|
+
"@uniformdev/context-vue": "18.33.1-alpha.7+7127237a1",
|
|
44
44
|
"@vue/server-test-utils": "1.3.0",
|
|
45
45
|
"vue": "3.2.45",
|
|
46
46
|
"vue-server-renderer": "2.7.14",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"last 2 versions",
|
|
64
64
|
"not dead"
|
|
65
65
|
],
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "7127237a1e099d2a11fa8c06d49cb01cf16c0852"
|
|
67
67
|
}
|