@mtngtools/frame-vue 0.0.23-experimental.0 → 0.0.25-experimental.0
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/{VanillaIf-CJLX8GhG.js → VanillaIf-D12LoeQO.js} +22 -14
- package/dist/components/VanillaIf/VanillaIf.vue.d.ts +2 -1
- package/dist/components/VanillaIf/VanillaIf.vue.d.ts.map +1 -1
- package/dist/components/live/LiveFrame/LiveFrame.vue.d.ts +3 -2
- package/dist/components/live/LiveFrame/LiveFrame.vue.d.ts.map +1 -1
- package/dist/components/live/LiveFrame/helpers.test.d.ts +78 -48
- package/dist/components/live/LiveFrame/helpers.test.d.ts.map +1 -1
- package/dist/components.js +1 -1
- package/dist/frame-vue.css +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -371,14 +371,15 @@ var _hoisted_1$4 = ["disabled"], SidePanelControlButton_default = /* @__PURE__ *
|
|
|
371
371
|
sidePanelMaxBottomTall: { default: "60vh" },
|
|
372
372
|
headerHideWidthThreshold: { default: "50rem" },
|
|
373
373
|
headerHideHeightThreshold: { default: "40rem" },
|
|
374
|
-
|
|
374
|
+
displaySidePanel: {
|
|
375
375
|
type: [
|
|
376
376
|
Boolean,
|
|
377
377
|
Function,
|
|
378
378
|
Object
|
|
379
379
|
],
|
|
380
|
-
default: !
|
|
380
|
+
default: !0
|
|
381
381
|
},
|
|
382
|
+
displaySidePanelWindowFn: {},
|
|
382
383
|
hideSidePanelIcons: {
|
|
383
384
|
type: Boolean,
|
|
384
385
|
default: !1
|
|
@@ -408,9 +409,10 @@ var _hoisted_1$4 = ["disabled"], SidePanelControlButton_default = /* @__PURE__ *
|
|
|
408
409
|
xl: 1280,
|
|
409
410
|
"2xl": 1536
|
|
410
411
|
}, ne = computed(() => {
|
|
411
|
-
|
|
412
|
+
if (typeof window < "u" && r.displaySidePanelWindowFn && typeof window[r.displaySidePanelWindowFn] == "function") return !!window[r.displaySidePanelWindowFn]();
|
|
413
|
+
let e = unref(r.displaySidePanel);
|
|
412
414
|
return typeof e == "function" ? e() : !!e;
|
|
413
|
-
}), k = computed(() => !!a.sidePanelContent &&
|
|
415
|
+
}), k = computed(() => !!a.sidePanelContent && ne.value), A = computed(() => !!a.header), j = computed(() => T.value.filter((e) => e !== "auto")), M = computed(() => Math.max(0, v.value - y.value)), N = computed(() => _.value < G(r.controlsOverlayOnly)), P = computed(() => _.value === 0 ? !1 : M.value / _.value > 1.1), re = computed(() => w.value === "right" && E.value === "wide-right" ? r.sidePanelMaxRightWide : r.sidePanelMaxRight), ie = computed(() => _e(r.mainContentAspectRatio, 16 / 9)), ae = computed(() => b.value > 0 ? b.value : Math.max(1, _.value)), oe = computed(() => ae.value / ie.value + 20), se = computed(() => Math.max(1, _.value) / ie.value), ce = computed(() => K(r.sidePanelMinBottom, _.value, v.value)), le = computed(() => {
|
|
414
416
|
let e = se.value + ce.value;
|
|
415
417
|
return M.value >= e;
|
|
416
418
|
}), ue = computed(() => Math.max(0, M.value - oe.value)), de = computed(() => {
|
|
@@ -798,7 +800,7 @@ var _hoisted_1$4 = ["disabled"], SidePanelControlButton_default = /* @__PURE__ *
|
|
|
798
800
|
])], 4)) : createCommentVNode("", !0)
|
|
799
801
|
], 4)], 4));
|
|
800
802
|
}
|
|
801
|
-
}), [["__scopeId", "data-v-
|
|
803
|
+
}), [["__scopeId", "data-v-3fd50542"]]), LoggedInOut_default = /* @__PURE__ */ defineComponent({
|
|
802
804
|
__name: "LoggedInOut",
|
|
803
805
|
props: {
|
|
804
806
|
initiallyLoggedIn: { type: Boolean },
|
|
@@ -844,19 +846,22 @@ var _hoisted_1$4 = ["disabled"], SidePanelControlButton_default = /* @__PURE__ *
|
|
|
844
846
|
}
|
|
845
847
|
}), VanillaIf_default = /* @__PURE__ */ defineComponent({
|
|
846
848
|
__name: "VanillaIf",
|
|
847
|
-
props: {
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
849
|
+
props: {
|
|
850
|
+
show: { type: [
|
|
851
|
+
Boolean,
|
|
852
|
+
Function,
|
|
853
|
+
Object
|
|
854
|
+
] },
|
|
855
|
+
showWindowFn: {}
|
|
856
|
+
},
|
|
852
857
|
setup(e) {
|
|
853
858
|
let t = e, n = ref(!1), r = ref(!1), i = null;
|
|
854
859
|
function o() {
|
|
855
860
|
i &&= (clearInterval(i), null);
|
|
856
861
|
}
|
|
857
862
|
function s() {
|
|
858
|
-
let e
|
|
859
|
-
if (typeof e == "function") try {
|
|
863
|
+
let e;
|
|
864
|
+
if (e = typeof window < "u" && t.showWindowFn ? window[t.showWindowFn] : unref(t.show), typeof e == "function") try {
|
|
860
865
|
let t = e();
|
|
861
866
|
return typeof t == "boolean" ? {
|
|
862
867
|
ready: !0,
|
|
@@ -872,7 +877,10 @@ var _hoisted_1$4 = ["disabled"], SidePanelControlButton_default = /* @__PURE__ *
|
|
|
872
877
|
};
|
|
873
878
|
throw e;
|
|
874
879
|
}
|
|
875
|
-
return
|
|
880
|
+
return t.showWindowFn ? {
|
|
881
|
+
ready: !1,
|
|
882
|
+
value: !1
|
|
883
|
+
} : typeof e == "boolean" ? {
|
|
876
884
|
ready: !0,
|
|
877
885
|
value: e
|
|
878
886
|
} : e == null ? {
|
|
@@ -891,7 +899,7 @@ var _hoisted_1$4 = ["disabled"], SidePanelControlButton_default = /* @__PURE__ *
|
|
|
891
899
|
}, 50);
|
|
892
900
|
}
|
|
893
901
|
let l = s();
|
|
894
|
-
return l.ready && (n.value = !0, r.value = l.value), watch(() => t.show, () => {
|
|
902
|
+
return l.ready && (n.value = !0, r.value = l.value), watch(() => [t.show, t.showWindowFn], () => {
|
|
895
903
|
n.value = !1, o(), c();
|
|
896
904
|
}, { deep: !0 }), onMounted(() => {
|
|
897
905
|
n.value || c();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VanillaIf.vue.d.ts","sourceRoot":"","sources":["../../../src/components/VanillaIf/VanillaIf.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VanillaIf.vue.d.ts","sourceRoot":"","sources":["../../../src/components/VanillaIf/VanillaIf.vue"],"names":[],"mappings":"AAyHA,OAAO,EAAsC,KAAK,GAAG,EAAS,MAAM,KAAK,CAAA;AAEzE,KAAK,WAAW,GAAG;IACjB,IAAI,CAAC,EAAE,OAAO,GAAG,CAAC,MAAM,OAAO,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAA;IAC/C,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB,CAAC;AA6GF,iBAAS,cAAc;WA6BT,OAAO,IAA6B;;yBAXrB,GAAG;sBACN,GAAG;;;;EAe5B;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,kSAMnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -17,7 +17,8 @@ type __VLS_Props = {
|
|
|
17
17
|
sidePanelMaxBottomTall?: string;
|
|
18
18
|
headerHideWidthThreshold?: string;
|
|
19
19
|
headerHideHeightThreshold?: string;
|
|
20
|
-
|
|
20
|
+
displaySidePanel?: boolean | (() => boolean) | Ref<boolean>;
|
|
21
|
+
displaySidePanelWindowFn?: string;
|
|
21
22
|
hideSidePanelIcons?: boolean;
|
|
22
23
|
enforceSlotSizingQuerySelector?: string;
|
|
23
24
|
};
|
|
@@ -72,7 +73,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
72
73
|
sidePanelMaxBottomTall: string;
|
|
73
74
|
headerHideWidthThreshold: string;
|
|
74
75
|
headerHideHeightThreshold: string;
|
|
75
|
-
|
|
76
|
+
displaySidePanel: boolean | (() => boolean) | Ref<boolean>;
|
|
76
77
|
hideSidePanelIcons: boolean;
|
|
77
78
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
78
79
|
rootRef: HTMLElement;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LiveFrame.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/live/LiveFrame/LiveFrame.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"LiveFrame.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/live/LiveFrame/LiveFrame.vue"],"names":[],"mappings":"AAi4BA,OAAO,EAAmG,KAAK,GAAG,EAAE,MAAM,KAAK,CAAA;AAG/H,OAAO,KAAK,EACV,+BAA+B,EAG/B,uBAAuB,EACvB,0BAA0B,EAC3B,MAAM,UAAU,CAAA;AAEjB,KAAK,WAAW,GAAG;IACf,iBAAiB,CAAC,EAAE,uBAAuB,CAAA;IAC3C,sBAAsB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxC,+BAA+B,CAAC,EAAE,MAAM,CAAA;IACxC,8BAA8B,CAAC,EAAE,MAAM,CAAA;IACvC,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,sBAAsB,CAAC,EAAE,MAAM,CAAA;IAC/B,wBAAwB,CAAC,EAAE,MAAM,CAAA;IACjC,yBAAyB,CAAC,EAAE,MAAM,CAAA;IAClC,gBAAgB,CAAC,EAAE,OAAO,GAAG,CAAC,MAAM,OAAO,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,CAAA;IAC3D,wBAAwB,CAAC,EAAE,MAAM,CAAA;IACjC,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,8BAA8B,CAAC,EAAE,MAAM,CAAA;CACxC,CAAC;AAinBJ,iBAAS,OAAO,SAQf;AA8ID,iBAAS,cAAc;WAsJT,OAAO,IAA6B;;wBAftB,GAAG;yBACF,GAAG;kCACO,GAAG;;;;;;;;EAkBzC;AA+BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;eAr6BmB,MAAM;gBAAU,MAAM;;;;;;;eAAtB,MAAM;gBAAU,MAAM;;;uBAjDtC,uBAAuB;4BAClB,MAAM,GAAG,MAAM;qCACN,MAAM;oCACP,MAAM;yBACjB,MAAM;yBACN,MAAM;qBACV,MAAM;sBACL,MAAM;uBACL,MAAM;uBACN,MAAM;2BACF,MAAM;wBACT,MAAM;wBACN,MAAM;4BACF,MAAM;8BACJ,MAAM;+BACL,MAAM;sBACf,OAAO,GAAG,CAAC,MAAM,OAAO,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC;wBAEtC,OAAO;;;;;eA+8B9B,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -77,7 +77,8 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
77
77
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
78
78
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
79
79
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
80
|
-
readonly
|
|
80
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
81
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
81
82
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
82
83
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
83
84
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -107,7 +108,8 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
107
108
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
108
109
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
109
110
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
110
|
-
readonly
|
|
111
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
112
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
111
113
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
112
114
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
113
115
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -156,7 +158,8 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
156
158
|
sidePanelMaxBottomTall?: string;
|
|
157
159
|
headerHideWidthThreshold?: string;
|
|
158
160
|
headerHideHeightThreshold?: string;
|
|
159
|
-
|
|
161
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
162
|
+
displaySidePanelWindowFn?: string;
|
|
160
163
|
hideSidePanelIcons?: boolean;
|
|
161
164
|
enforceSlotSizingQuerySelector?: string;
|
|
162
165
|
}> & Readonly<{
|
|
@@ -194,7 +197,7 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
194
197
|
sidePanelMaxBottomTall: string;
|
|
195
198
|
headerHideWidthThreshold: string;
|
|
196
199
|
headerHideHeightThreshold: string;
|
|
197
|
-
|
|
200
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
198
201
|
hideSidePanelIcons: boolean;
|
|
199
202
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
200
203
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -233,7 +236,7 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
233
236
|
sidePanelMaxBottomTall: string;
|
|
234
237
|
headerHideWidthThreshold: string;
|
|
235
238
|
headerHideHeightThreshold: string;
|
|
236
|
-
|
|
239
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
237
240
|
hideSidePanelIcons: boolean;
|
|
238
241
|
}> & Omit<Readonly<{
|
|
239
242
|
sidePanelPosition?: import('..').SidePanelModeSelectable;
|
|
@@ -252,7 +255,8 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
252
255
|
sidePanelMaxBottomTall?: string;
|
|
253
256
|
headerHideWidthThreshold?: string;
|
|
254
257
|
headerHideHeightThreshold?: string;
|
|
255
|
-
|
|
258
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
259
|
+
displaySidePanelWindowFn?: string;
|
|
256
260
|
hideSidePanelIcons?: boolean;
|
|
257
261
|
enforceSlotSizingQuerySelector?: string;
|
|
258
262
|
}> & Readonly<{
|
|
@@ -263,7 +267,7 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
263
267
|
width: number;
|
|
264
268
|
height: number;
|
|
265
269
|
}) => any) | undefined;
|
|
266
|
-
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "
|
|
270
|
+
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "displaySidePanel" | "hideSidePanelIcons")> & import('vue').ShallowUnwrapRef<{
|
|
267
271
|
refresh: () => void;
|
|
268
272
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
269
273
|
$slots: {
|
|
@@ -288,7 +292,8 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
288
292
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
289
293
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
290
294
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
291
|
-
readonly
|
|
295
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
296
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
292
297
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
293
298
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
294
299
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -318,7 +323,8 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
318
323
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
319
324
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
320
325
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
321
|
-
readonly
|
|
326
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
327
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
322
328
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
323
329
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
324
330
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -367,7 +373,8 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
367
373
|
sidePanelMaxBottomTall?: string;
|
|
368
374
|
headerHideWidthThreshold?: string;
|
|
369
375
|
headerHideHeightThreshold?: string;
|
|
370
|
-
|
|
376
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
377
|
+
displaySidePanelWindowFn?: string;
|
|
371
378
|
hideSidePanelIcons?: boolean;
|
|
372
379
|
enforceSlotSizingQuerySelector?: string;
|
|
373
380
|
}> & Readonly<{
|
|
@@ -405,7 +412,7 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
405
412
|
sidePanelMaxBottomTall: string;
|
|
406
413
|
headerHideWidthThreshold: string;
|
|
407
414
|
headerHideHeightThreshold: string;
|
|
408
|
-
|
|
415
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
409
416
|
hideSidePanelIcons: boolean;
|
|
410
417
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
411
418
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -444,7 +451,7 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
444
451
|
sidePanelMaxBottomTall: string;
|
|
445
452
|
headerHideWidthThreshold: string;
|
|
446
453
|
headerHideHeightThreshold: string;
|
|
447
|
-
|
|
454
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
448
455
|
hideSidePanelIcons: boolean;
|
|
449
456
|
}> & Omit<Readonly<{
|
|
450
457
|
sidePanelPosition?: import('..').SidePanelModeSelectable;
|
|
@@ -463,7 +470,8 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
463
470
|
sidePanelMaxBottomTall?: string;
|
|
464
471
|
headerHideWidthThreshold?: string;
|
|
465
472
|
headerHideHeightThreshold?: string;
|
|
466
|
-
|
|
473
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
474
|
+
displaySidePanelWindowFn?: string;
|
|
467
475
|
hideSidePanelIcons?: boolean;
|
|
468
476
|
enforceSlotSizingQuerySelector?: string;
|
|
469
477
|
}> & Readonly<{
|
|
@@ -474,7 +482,7 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
474
482
|
width: number;
|
|
475
483
|
height: number;
|
|
476
484
|
}) => any) | undefined;
|
|
477
|
-
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "
|
|
485
|
+
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "displaySidePanel" | "hideSidePanelIcons")> & import('vue').ShallowUnwrapRef<{
|
|
478
486
|
refresh: () => void;
|
|
479
487
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
480
488
|
$slots: {
|
|
@@ -499,7 +507,8 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
499
507
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
500
508
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
501
509
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
502
|
-
readonly
|
|
510
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
511
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
503
512
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
504
513
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
505
514
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -526,7 +535,8 @@ export declare function mountLiveFrameWithProps(props: Record<string, unknown>,
|
|
|
526
535
|
sidePanelMaxBottomTall?: string;
|
|
527
536
|
headerHideWidthThreshold?: string;
|
|
528
537
|
headerHideHeightThreshold?: string;
|
|
529
|
-
|
|
538
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
539
|
+
displaySidePanelWindowFn?: string;
|
|
530
540
|
hideSidePanelIcons?: boolean;
|
|
531
541
|
enforceSlotSizingQuerySelector?: string;
|
|
532
542
|
} | "onUpdate:sidePanelPosition" | "onSidePanelTransition" | "onSidePanelAvailableStates" | "onDefaultSlotResize">>>;
|
|
@@ -547,7 +557,8 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
547
557
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
548
558
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
549
559
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
550
|
-
readonly
|
|
560
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
561
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
551
562
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
552
563
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
553
564
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -577,7 +588,8 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
577
588
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
578
589
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
579
590
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
580
|
-
readonly
|
|
591
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
592
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
581
593
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
582
594
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
583
595
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -626,7 +638,8 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
626
638
|
sidePanelMaxBottomTall?: string;
|
|
627
639
|
headerHideWidthThreshold?: string;
|
|
628
640
|
headerHideHeightThreshold?: string;
|
|
629
|
-
|
|
641
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
642
|
+
displaySidePanelWindowFn?: string;
|
|
630
643
|
hideSidePanelIcons?: boolean;
|
|
631
644
|
enforceSlotSizingQuerySelector?: string;
|
|
632
645
|
}> & Readonly<{
|
|
@@ -664,7 +677,7 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
664
677
|
sidePanelMaxBottomTall: string;
|
|
665
678
|
headerHideWidthThreshold: string;
|
|
666
679
|
headerHideHeightThreshold: string;
|
|
667
|
-
|
|
680
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
668
681
|
hideSidePanelIcons: boolean;
|
|
669
682
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
670
683
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -703,7 +716,7 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
703
716
|
sidePanelMaxBottomTall: string;
|
|
704
717
|
headerHideWidthThreshold: string;
|
|
705
718
|
headerHideHeightThreshold: string;
|
|
706
|
-
|
|
719
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
707
720
|
hideSidePanelIcons: boolean;
|
|
708
721
|
}> & Omit<Readonly<{
|
|
709
722
|
sidePanelPosition?: import('..').SidePanelModeSelectable;
|
|
@@ -722,7 +735,8 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
722
735
|
sidePanelMaxBottomTall?: string;
|
|
723
736
|
headerHideWidthThreshold?: string;
|
|
724
737
|
headerHideHeightThreshold?: string;
|
|
725
|
-
|
|
738
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
739
|
+
displaySidePanelWindowFn?: string;
|
|
726
740
|
hideSidePanelIcons?: boolean;
|
|
727
741
|
enforceSlotSizingQuerySelector?: string;
|
|
728
742
|
}> & Readonly<{
|
|
@@ -733,7 +747,7 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
733
747
|
width: number;
|
|
734
748
|
height: number;
|
|
735
749
|
}) => any) | undefined;
|
|
736
|
-
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "
|
|
750
|
+
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "displaySidePanel" | "hideSidePanelIcons")> & import('vue').ShallowUnwrapRef<{
|
|
737
751
|
refresh: () => void;
|
|
738
752
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
739
753
|
$slots: {
|
|
@@ -758,7 +772,8 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
758
772
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
759
773
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
760
774
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
761
|
-
readonly
|
|
775
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
776
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
762
777
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
763
778
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
764
779
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -788,7 +803,8 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
788
803
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
789
804
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
790
805
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
791
|
-
readonly
|
|
806
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
807
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
792
808
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
793
809
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
794
810
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -837,7 +853,8 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
837
853
|
sidePanelMaxBottomTall?: string;
|
|
838
854
|
headerHideWidthThreshold?: string;
|
|
839
855
|
headerHideHeightThreshold?: string;
|
|
840
|
-
|
|
856
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
857
|
+
displaySidePanelWindowFn?: string;
|
|
841
858
|
hideSidePanelIcons?: boolean;
|
|
842
859
|
enforceSlotSizingQuerySelector?: string;
|
|
843
860
|
}> & Readonly<{
|
|
@@ -875,7 +892,7 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
875
892
|
sidePanelMaxBottomTall: string;
|
|
876
893
|
headerHideWidthThreshold: string;
|
|
877
894
|
headerHideHeightThreshold: string;
|
|
878
|
-
|
|
895
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
879
896
|
hideSidePanelIcons: boolean;
|
|
880
897
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
881
898
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -914,7 +931,7 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
914
931
|
sidePanelMaxBottomTall: string;
|
|
915
932
|
headerHideWidthThreshold: string;
|
|
916
933
|
headerHideHeightThreshold: string;
|
|
917
|
-
|
|
934
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
918
935
|
hideSidePanelIcons: boolean;
|
|
919
936
|
}> & Omit<Readonly<{
|
|
920
937
|
sidePanelPosition?: import('..').SidePanelModeSelectable;
|
|
@@ -933,7 +950,8 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
933
950
|
sidePanelMaxBottomTall?: string;
|
|
934
951
|
headerHideWidthThreshold?: string;
|
|
935
952
|
headerHideHeightThreshold?: string;
|
|
936
|
-
|
|
953
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
954
|
+
displaySidePanelWindowFn?: string;
|
|
937
955
|
hideSidePanelIcons?: boolean;
|
|
938
956
|
enforceSlotSizingQuerySelector?: string;
|
|
939
957
|
}> & Readonly<{
|
|
@@ -944,7 +962,7 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
944
962
|
width: number;
|
|
945
963
|
height: number;
|
|
946
964
|
}) => any) | undefined;
|
|
947
|
-
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "
|
|
965
|
+
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "displaySidePanel" | "hideSidePanelIcons")> & import('vue').ShallowUnwrapRef<{
|
|
948
966
|
refresh: () => void;
|
|
949
967
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
950
968
|
$slots: {
|
|
@@ -969,7 +987,8 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
969
987
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
970
988
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
971
989
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
972
|
-
readonly
|
|
990
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
991
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
973
992
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
974
993
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
975
994
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -996,7 +1015,8 @@ export declare function mountLiveFrame(): VueWrapper<{
|
|
|
996
1015
|
sidePanelMaxBottomTall?: string;
|
|
997
1016
|
headerHideWidthThreshold?: string;
|
|
998
1017
|
headerHideHeightThreshold?: string;
|
|
999
|
-
|
|
1018
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
1019
|
+
displaySidePanelWindowFn?: string;
|
|
1000
1020
|
hideSidePanelIcons?: boolean;
|
|
1001
1021
|
enforceSlotSizingQuerySelector?: string;
|
|
1002
1022
|
} | "onUpdate:sidePanelPosition" | "onSidePanelTransition" | "onSidePanelAvailableStates" | "onDefaultSlotResize">>>;
|
|
@@ -1017,7 +1037,8 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1017
1037
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
1018
1038
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
1019
1039
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
1020
|
-
readonly
|
|
1040
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
1041
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
1021
1042
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
1022
1043
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
1023
1044
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -1047,7 +1068,8 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1047
1068
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
1048
1069
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
1049
1070
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
1050
|
-
readonly
|
|
1071
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
1072
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
1051
1073
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
1052
1074
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
1053
1075
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -1096,7 +1118,8 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1096
1118
|
sidePanelMaxBottomTall?: string;
|
|
1097
1119
|
headerHideWidthThreshold?: string;
|
|
1098
1120
|
headerHideHeightThreshold?: string;
|
|
1099
|
-
|
|
1121
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
1122
|
+
displaySidePanelWindowFn?: string;
|
|
1100
1123
|
hideSidePanelIcons?: boolean;
|
|
1101
1124
|
enforceSlotSizingQuerySelector?: string;
|
|
1102
1125
|
}> & Readonly<{
|
|
@@ -1134,7 +1157,7 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1134
1157
|
sidePanelMaxBottomTall: string;
|
|
1135
1158
|
headerHideWidthThreshold: string;
|
|
1136
1159
|
headerHideHeightThreshold: string;
|
|
1137
|
-
|
|
1160
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
1138
1161
|
hideSidePanelIcons: boolean;
|
|
1139
1162
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1140
1163
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -1173,7 +1196,7 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1173
1196
|
sidePanelMaxBottomTall: string;
|
|
1174
1197
|
headerHideWidthThreshold: string;
|
|
1175
1198
|
headerHideHeightThreshold: string;
|
|
1176
|
-
|
|
1199
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
1177
1200
|
hideSidePanelIcons: boolean;
|
|
1178
1201
|
}> & Omit<Readonly<{
|
|
1179
1202
|
sidePanelPosition?: import('..').SidePanelModeSelectable;
|
|
@@ -1192,7 +1215,8 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1192
1215
|
sidePanelMaxBottomTall?: string;
|
|
1193
1216
|
headerHideWidthThreshold?: string;
|
|
1194
1217
|
headerHideHeightThreshold?: string;
|
|
1195
|
-
|
|
1218
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
1219
|
+
displaySidePanelWindowFn?: string;
|
|
1196
1220
|
hideSidePanelIcons?: boolean;
|
|
1197
1221
|
enforceSlotSizingQuerySelector?: string;
|
|
1198
1222
|
}> & Readonly<{
|
|
@@ -1203,7 +1227,7 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1203
1227
|
width: number;
|
|
1204
1228
|
height: number;
|
|
1205
1229
|
}) => any) | undefined;
|
|
1206
|
-
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "
|
|
1230
|
+
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "displaySidePanel" | "hideSidePanelIcons")> & import('vue').ShallowUnwrapRef<{
|
|
1207
1231
|
refresh: () => void;
|
|
1208
1232
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1209
1233
|
$slots: {
|
|
@@ -1228,7 +1252,8 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1228
1252
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
1229
1253
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
1230
1254
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
1231
|
-
readonly
|
|
1255
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
1256
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
1232
1257
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
1233
1258
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
1234
1259
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -1258,7 +1283,8 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1258
1283
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
1259
1284
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
1260
1285
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
1261
|
-
readonly
|
|
1286
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
1287
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
1262
1288
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
1263
1289
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
1264
1290
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -1307,7 +1333,8 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1307
1333
|
sidePanelMaxBottomTall?: string;
|
|
1308
1334
|
headerHideWidthThreshold?: string;
|
|
1309
1335
|
headerHideHeightThreshold?: string;
|
|
1310
|
-
|
|
1336
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
1337
|
+
displaySidePanelWindowFn?: string;
|
|
1311
1338
|
hideSidePanelIcons?: boolean;
|
|
1312
1339
|
enforceSlotSizingQuerySelector?: string;
|
|
1313
1340
|
}> & Readonly<{
|
|
@@ -1345,7 +1372,7 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1345
1372
|
sidePanelMaxBottomTall: string;
|
|
1346
1373
|
headerHideWidthThreshold: string;
|
|
1347
1374
|
headerHideHeightThreshold: string;
|
|
1348
|
-
|
|
1375
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
1349
1376
|
hideSidePanelIcons: boolean;
|
|
1350
1377
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1351
1378
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -1384,7 +1411,7 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1384
1411
|
sidePanelMaxBottomTall: string;
|
|
1385
1412
|
headerHideWidthThreshold: string;
|
|
1386
1413
|
headerHideHeightThreshold: string;
|
|
1387
|
-
|
|
1414
|
+
displaySidePanel: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
1388
1415
|
hideSidePanelIcons: boolean;
|
|
1389
1416
|
}> & Omit<Readonly<{
|
|
1390
1417
|
sidePanelPosition?: import('..').SidePanelModeSelectable;
|
|
@@ -1403,7 +1430,8 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1403
1430
|
sidePanelMaxBottomTall?: string;
|
|
1404
1431
|
headerHideWidthThreshold?: string;
|
|
1405
1432
|
headerHideHeightThreshold?: string;
|
|
1406
|
-
|
|
1433
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
1434
|
+
displaySidePanelWindowFn?: string;
|
|
1407
1435
|
hideSidePanelIcons?: boolean;
|
|
1408
1436
|
enforceSlotSizingQuerySelector?: string;
|
|
1409
1437
|
}> & Readonly<{
|
|
@@ -1414,7 +1442,7 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1414
1442
|
width: number;
|
|
1415
1443
|
height: number;
|
|
1416
1444
|
}) => any) | undefined;
|
|
1417
|
-
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "
|
|
1445
|
+
}>, "refresh" | ("sidePanelPosition" | "mainContentAspectRatio" | "autoBottomAspectRatioBreakpoint" | "autoRightAspectRatioBreakpoint" | "sidePanelBreakpoint" | "controlsOverlayOnly" | "autoHideTimeout" | "layoutDebounceMs" | "sidePanelMinRight" | "sidePanelMaxRight" | "sidePanelMaxRightWide" | "sidePanelMinBottom" | "sidePanelMaxBottom" | "sidePanelMaxBottomTall" | "headerHideWidthThreshold" | "headerHideHeightThreshold" | "displaySidePanel" | "hideSidePanelIcons")> & import('vue').ShallowUnwrapRef<{
|
|
1418
1446
|
refresh: () => void;
|
|
1419
1447
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1420
1448
|
$slots: {
|
|
@@ -1439,7 +1467,8 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1439
1467
|
readonly sidePanelMaxBottomTall?: string | undefined;
|
|
1440
1468
|
readonly headerHideWidthThreshold?: string | undefined;
|
|
1441
1469
|
readonly headerHideHeightThreshold?: string | undefined;
|
|
1442
|
-
readonly
|
|
1470
|
+
readonly displaySidePanel?: (boolean | (() => boolean) | import('vue').Ref<boolean>) | undefined;
|
|
1471
|
+
readonly displaySidePanelWindowFn?: string | undefined;
|
|
1443
1472
|
readonly hideSidePanelIcons?: boolean | undefined;
|
|
1444
1473
|
readonly enforceSlotSizingQuerySelector?: string | undefined;
|
|
1445
1474
|
readonly "onUpdate:sidePanelPosition"?: ((mode: import('..').SidePanelModeSelectable) => any) | undefined;
|
|
@@ -1466,7 +1495,8 @@ export declare function mountLiveFrameUsingBreakpoints(): VueWrapper<{
|
|
|
1466
1495
|
sidePanelMaxBottomTall?: string;
|
|
1467
1496
|
headerHideWidthThreshold?: string;
|
|
1468
1497
|
headerHideHeightThreshold?: string;
|
|
1469
|
-
|
|
1498
|
+
displaySidePanel?: boolean | (() => boolean) | import('vue').Ref<boolean>;
|
|
1499
|
+
displaySidePanelWindowFn?: string;
|
|
1470
1500
|
hideSidePanelIcons?: boolean;
|
|
1471
1501
|
enforceSlotSizingQuerySelector?: string;
|
|
1472
1502
|
} | "onUpdate:sidePanelPosition" | "onSidePanelTransition" | "onSidePanelAvailableStates" | "onDefaultSlotResize">>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.test.d.ts","sourceRoot":"","sources":["../../../../src/components/live/LiveFrame/helpers.test.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"helpers.test.d.ts","sourceRoot":"","sources":["../../../../src/components/live/LiveFrame/helpers.test.ts"],"names":[],"mappings":"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"}
|
package/dist/components.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as IconPanelRight_default, n as IconPanelFull_default, r as IconPanelBottom_default, t as IconClose_default } from "./IconClose-7R37a2Ma.js";
|
|
2
2
|
import "./icons.js";
|
|
3
|
-
import { a as SidePanelHeader_default, i as SidePanelFrame_default, n as LoggedInOut_default, o as SidePanelButtonGroup_default, r as LiveFrame_default, s as SidePanelControlButton_default, t as VanillaIf_default } from "./VanillaIf-
|
|
3
|
+
import { a as SidePanelHeader_default, i as SidePanelFrame_default, n as LoggedInOut_default, o as SidePanelButtonGroup_default, r as LiveFrame_default, s as SidePanelControlButton_default, t as VanillaIf_default } from "./VanillaIf-D12LoeQO.js";
|
|
4
4
|
import "./useSimpleLoggedIn-DT4aMAWu.js";
|
|
5
5
|
export { IconClose_default as IconClose, IconPanelBottom_default as IconPanelBottom, IconPanelFull_default as IconPanelFull, IconPanelRight_default as IconPanelRight, LiveFrame_default as LiveFrame, LoggedInOut_default as LoggedInOut, SidePanelButtonGroup_default as SidePanelButtonGroup, SidePanelControlButton_default as SidePanelControlButton, SidePanelFrame_default as SidePanelFrame, SidePanelHeader_default as SidePanelHeader, VanillaIf_default as VanillaIf };
|
package/dist/frame-vue.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
.slot-content-container>[data-v-
|
|
1
|
+
.slot-content-container>[data-v-3fd50542-s]{box-sizing:border-box!important;width:100%!important;min-width:0!important;max-width:100%!important;min-height:0!important;max-height:100%!important;display:block!important}
|
|
2
2
|
/*$vite$:1*/
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as IconPanelRight_default, n as IconPanelFull_default, r as IconPanelBottom_default, t as IconClose_default } from "./IconClose-7R37a2Ma.js";
|
|
2
|
-
import { a as SidePanelHeader_default, i as SidePanelFrame_default, n as LoggedInOut_default, o as SidePanelButtonGroup_default, r as LiveFrame_default, s as SidePanelControlButton_default, t as VanillaIf_default } from "./VanillaIf-
|
|
2
|
+
import { a as SidePanelHeader_default, i as SidePanelFrame_default, n as LoggedInOut_default, o as SidePanelButtonGroup_default, r as LiveFrame_default, s as SidePanelControlButton_default, t as VanillaIf_default } from "./VanillaIf-D12LoeQO.js";
|
|
3
3
|
import { n as useSimpleLoggedIn, t as __resetStateForTesting } from "./useSimpleLoggedIn-DT4aMAWu.js";
|
|
4
4
|
import "./components.js";
|
|
5
5
|
import "./composables.js";
|
package/package.json
CHANGED