@omnia/tooling-vue 8.0.525-dev → 8.0.527-dev
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.
|
@@ -148,6 +148,7 @@ import wc21a1f20b3d404602853049c1c8b8da2f from '../../../../client/fx/ux/userpre
|
|
|
148
148
|
import wc30289e2b58ff48b0aabb3cb3732c3038 from '../../../../client/fx/ux/usertypelayout/UserTypeLayoutRenderer';
|
|
149
149
|
import wc90cfd68bb4e04f67bfd5677bdf4af59d from '../../../../client/fx/ux/validation/FieldValidation';
|
|
150
150
|
import wcba03fc7e6921468289c0a0ffe0cf942e from '../../../../client/fx/ux/versionedlayout/renderer/VersionedLayoutRenderer';
|
|
151
|
+
import wc16225d552da74599b01a49952f3d2280 from '../../../../client/fx/ux/versionedlayout/renderer/v2/VersionedLayoutRenderer';
|
|
151
152
|
import wc73154f51a92944acbe248779a3fa7ef5 from '../../../../client/fx/ux/versionedlayout/editor/VersionedLayoutEditor_old';
|
|
152
153
|
import wcf61a88097aa748dbb99b691f78da571a from '../../../../client/fx/ux/versionedlayout/editor/VersionedLayoutEditor';
|
|
153
154
|
import wc32a6ca3074384eb4bcef68e9cd49a334 from '../../../../client/fx/ux/versionedlayout/editor/panels/versionhistory/VersionHistory';
|
|
@@ -258,6 +259,7 @@ import wc5d6ec741cf6e4d8ab005abdda288ceed from '../../../../client/fx/ux/layoutc
|
|
|
258
259
|
import wc0b2ee63495854227a082987161a9e641 from '../../../../client/fx/ux/layoutcanvas/renderer/LayoutBlockRendererHelper';
|
|
259
260
|
import wc16631fca46634e1b8c44401400bbf6ef from '../../../../client/fx/ux/layoutcanvas/renderer/InternalLayoutBlockSettingsHelper';
|
|
260
261
|
import wcf346db89a53b404690b1795429fb0162 from '../../../../client/fx/ux/layoutcanvas/renderer/LayoutRendererCanvas';
|
|
262
|
+
import wc100134c612ae49f1a7ab9e89abe8af5b from '../../../../client/fx/ux/layoutcanvas/renderer/LayoutRendererCanvasV2';
|
|
261
263
|
import wc96c7e84dfb66450796fe123aea7999c5 from '../../../../client/fx/ux/mediagallery/view/PhotoWallWithSliderDisplayRenderer';
|
|
262
264
|
import wcc15cd6402e584ab18c73ed2b5e3eded9 from '../../../../client/fx/ux/mediagallery/view/MediaDisplayRenderer';
|
|
263
265
|
import wc29f45ded4fb4479fab6fd6fd79505642 from '../../../../client/fx/ux/mediapickerV2/chrome/MediaPicker';
|
|
@@ -2591,13 +2593,21 @@ declare global {
|
|
|
2591
2593
|
};
|
|
2592
2594
|
"versioned": {
|
|
2593
2595
|
"layout": {
|
|
2594
|
-
"renderer": typeof wcba03fc7e6921468289c0a0ffe0cf942e extends {
|
|
2596
|
+
"renderer": (typeof wcba03fc7e6921468289c0a0ffe0cf942e extends {
|
|
2595
2597
|
propsDefinition: infer TProp;
|
|
2596
2598
|
} ? {
|
|
2597
2599
|
new (...args: any[]): {
|
|
2598
2600
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
|
2599
2601
|
};
|
|
2600
|
-
} : typeof wcba03fc7e6921468289c0a0ffe0cf942e
|
|
2602
|
+
} : typeof wcba03fc7e6921468289c0a0ffe0cf942e) & {
|
|
2603
|
+
"v2": typeof wc16225d552da74599b01a49952f3d2280 extends {
|
|
2604
|
+
propsDefinition: infer TProp;
|
|
2605
|
+
} ? {
|
|
2606
|
+
new (...args: any[]): {
|
|
2607
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
|
2608
|
+
};
|
|
2609
|
+
} : typeof wc16225d552da74599b01a49952f3d2280;
|
|
2610
|
+
};
|
|
2601
2611
|
"editor": (typeof wc73154f51a92944acbe248779a3fa7ef5 extends {
|
|
2602
2612
|
propsDefinition: infer TProp;
|
|
2603
2613
|
} ? {
|
|
@@ -3342,13 +3352,21 @@ declare global {
|
|
|
3342
3352
|
};
|
|
3343
3353
|
};
|
|
3344
3354
|
"renderer": {
|
|
3345
|
-
"canvas": typeof wcf346db89a53b404690b1795429fb0162 extends {
|
|
3355
|
+
"canvas": (typeof wcf346db89a53b404690b1795429fb0162 extends {
|
|
3346
3356
|
propsDefinition: infer TProp;
|
|
3347
3357
|
} ? {
|
|
3348
3358
|
new (...args: any[]): {
|
|
3349
3359
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
|
3350
3360
|
};
|
|
3351
|
-
} : typeof wcf346db89a53b404690b1795429fb0162
|
|
3361
|
+
} : typeof wcf346db89a53b404690b1795429fb0162) & {
|
|
3362
|
+
"v2": typeof wc100134c612ae49f1a7ab9e89abe8af5b extends {
|
|
3363
|
+
propsDefinition: infer TProp;
|
|
3364
|
+
} ? {
|
|
3365
|
+
new (...args: any[]): {
|
|
3366
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
|
3367
|
+
};
|
|
3368
|
+
} : typeof wc100134c612ae49f1a7ab9e89abe8af5b;
|
|
3369
|
+
};
|
|
3352
3370
|
};
|
|
3353
3371
|
"background": {
|
|
3354
3372
|
"settings": typeof wcf5cf0b4975644d688124880ae533869e extends {
|