@simonbackx/vue-app-navigation 2.0.0-alpha.14 → 2.0.0-alpha.15
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.js +42074 -24064
- package/dist/src/ModalMixin.d.ts +20 -8
- package/dist/src/ModalStackComponent.vue.d.ts +10 -4
- package/dist/src/NavigationController.vue.d.ts +6 -3
- package/dist/src/Sheet.vue.d.ts +20 -8
- package/dist/src/SideView.vue.d.ts +20 -8
- package/dist/src/SplitViewController.vue.d.ts +10 -4
- package/dist/test/EditWebshopMixin.d.ts +60 -24
- package/package.json +1 -1
package/dist/src/ModalMixin.d.ts
CHANGED
|
@@ -172,8 +172,8 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
172
172
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
173
173
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
174
174
|
}, unknown, {
|
|
175
|
-
components: import('./ComponentWithProperties').ComponentWithProperties[];
|
|
176
|
-
mainComponent: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
175
|
+
components: import('vue').Raw<import('./ComponentWithProperties').ComponentWithProperties>[];
|
|
176
|
+
mainComponent: import('vue').Raw<import('./ComponentWithProperties').ComponentWithProperties> | null;
|
|
177
177
|
transitionName: string;
|
|
178
178
|
savedScrollPositions: number[];
|
|
179
179
|
nextScrollPosition: number;
|
|
@@ -182,7 +182,10 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
182
182
|
savedInternalScrollPositions: number[];
|
|
183
183
|
asyncQueue: (() => Promise<void>)[];
|
|
184
184
|
asyncQueueRunning: boolean;
|
|
185
|
+
cachedProvides: Map<number, any>;
|
|
185
186
|
}, {}, {
|
|
187
|
+
cacheComponentProvides(newComponent: import('./ComponentWithProperties').ComponentWithProperties): void;
|
|
188
|
+
provideForComponent(key: number): any;
|
|
186
189
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
187
190
|
runQueueIfNeeded(): void;
|
|
188
191
|
freezeSize(): void;
|
|
@@ -264,8 +267,8 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
264
267
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
265
268
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
266
269
|
}, {}, {
|
|
267
|
-
components: import('./ComponentWithProperties').ComponentWithProperties[];
|
|
268
|
-
mainComponent: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
270
|
+
components: import('vue').Raw<import('./ComponentWithProperties').ComponentWithProperties>[];
|
|
271
|
+
mainComponent: import('vue').Raw<import('./ComponentWithProperties').ComponentWithProperties> | null;
|
|
269
272
|
transitionName: string;
|
|
270
273
|
savedScrollPositions: number[];
|
|
271
274
|
nextScrollPosition: number;
|
|
@@ -274,7 +277,10 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
274
277
|
savedInternalScrollPositions: number[];
|
|
275
278
|
asyncQueue: (() => Promise<void>)[];
|
|
276
279
|
asyncQueueRunning: boolean;
|
|
280
|
+
cachedProvides: Map<number, any>;
|
|
277
281
|
}, {}, {
|
|
282
|
+
cacheComponentProvides(newComponent: import('./ComponentWithProperties').ComponentWithProperties): void;
|
|
283
|
+
provideForComponent(key: number): any;
|
|
278
284
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
279
285
|
runQueueIfNeeded(): void;
|
|
280
286
|
freezeSize(): void;
|
|
@@ -540,8 +546,8 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
540
546
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
541
547
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
542
548
|
}, unknown, {
|
|
543
|
-
components: import('./ComponentWithProperties').ComponentWithProperties[];
|
|
544
|
-
mainComponent: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
549
|
+
components: import('vue').Raw<import('./ComponentWithProperties').ComponentWithProperties>[];
|
|
550
|
+
mainComponent: import('vue').Raw<import('./ComponentWithProperties').ComponentWithProperties> | null;
|
|
545
551
|
transitionName: string;
|
|
546
552
|
savedScrollPositions: number[];
|
|
547
553
|
nextScrollPosition: number;
|
|
@@ -550,7 +556,10 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
550
556
|
savedInternalScrollPositions: number[];
|
|
551
557
|
asyncQueue: (() => Promise<void>)[];
|
|
552
558
|
asyncQueueRunning: boolean;
|
|
559
|
+
cachedProvides: Map<number, any>;
|
|
553
560
|
}, {}, {
|
|
561
|
+
cacheComponentProvides(newComponent: import('./ComponentWithProperties').ComponentWithProperties): void;
|
|
562
|
+
provideForComponent(key: number): any;
|
|
554
563
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
555
564
|
runQueueIfNeeded(): void;
|
|
556
565
|
freezeSize(): void;
|
|
@@ -632,8 +641,8 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
632
641
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
633
642
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
634
643
|
}, {}, {
|
|
635
|
-
components: import('./ComponentWithProperties').ComponentWithProperties[];
|
|
636
|
-
mainComponent: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
644
|
+
components: import('vue').Raw<import('./ComponentWithProperties').ComponentWithProperties>[];
|
|
645
|
+
mainComponent: import('vue').Raw<import('./ComponentWithProperties').ComponentWithProperties> | null;
|
|
637
646
|
transitionName: string;
|
|
638
647
|
savedScrollPositions: number[];
|
|
639
648
|
nextScrollPosition: number;
|
|
@@ -642,7 +651,10 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
642
651
|
savedInternalScrollPositions: number[];
|
|
643
652
|
asyncQueue: (() => Promise<void>)[];
|
|
644
653
|
asyncQueueRunning: boolean;
|
|
654
|
+
cachedProvides: Map<number, any>;
|
|
645
655
|
}, {}, {
|
|
656
|
+
cacheComponentProvides(newComponent: import('./ComponentWithProperties').ComponentWithProperties): void;
|
|
657
|
+
provideForComponent(key: number): any;
|
|
646
658
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
647
659
|
runQueueIfNeeded(): void;
|
|
648
660
|
freezeSize(): void;
|
|
@@ -171,8 +171,8 @@ declare const ModalStackComponent: import('vue').DefineComponent<{
|
|
|
171
171
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
172
172
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
173
173
|
}, unknown, {
|
|
174
|
-
components: ComponentWithProperties[];
|
|
175
|
-
mainComponent: ComponentWithProperties | null;
|
|
174
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
175
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
176
176
|
transitionName: string;
|
|
177
177
|
savedScrollPositions: number[];
|
|
178
178
|
nextScrollPosition: number;
|
|
@@ -181,7 +181,10 @@ declare const ModalStackComponent: import('vue').DefineComponent<{
|
|
|
181
181
|
savedInternalScrollPositions: number[];
|
|
182
182
|
asyncQueue: (() => Promise<void>)[];
|
|
183
183
|
asyncQueueRunning: boolean;
|
|
184
|
+
cachedProvides: Map<number, any>;
|
|
184
185
|
}, {}, {
|
|
186
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
187
|
+
provideForComponent(key: number): any;
|
|
185
188
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
186
189
|
runQueueIfNeeded(): void;
|
|
187
190
|
freezeSize(): void;
|
|
@@ -263,8 +266,8 @@ declare const ModalStackComponent: import('vue').DefineComponent<{
|
|
|
263
266
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
264
267
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
265
268
|
}, {}, {
|
|
266
|
-
components: ComponentWithProperties[];
|
|
267
|
-
mainComponent: ComponentWithProperties | null;
|
|
269
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
270
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
268
271
|
transitionName: string;
|
|
269
272
|
savedScrollPositions: number[];
|
|
270
273
|
nextScrollPosition: number;
|
|
@@ -273,7 +276,10 @@ declare const ModalStackComponent: import('vue').DefineComponent<{
|
|
|
273
276
|
savedInternalScrollPositions: number[];
|
|
274
277
|
asyncQueue: (() => Promise<void>)[];
|
|
275
278
|
asyncQueueRunning: boolean;
|
|
279
|
+
cachedProvides: Map<number, any>;
|
|
276
280
|
}, {}, {
|
|
281
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
282
|
+
provideForComponent(key: number): any;
|
|
277
283
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
278
284
|
runQueueIfNeeded(): void;
|
|
279
285
|
freezeSize(): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PushOptions } from './PushOptions';
|
|
2
2
|
import { PopOptions } from './PopOptions';
|
|
3
3
|
import { ComponentWithProperties } from './ComponentWithProperties';
|
|
4
|
-
import { PropType, Ref } from 'vue';
|
|
4
|
+
import { PropType, Raw, Ref } from 'vue';
|
|
5
5
|
|
|
6
6
|
export declare function useNavigationController(): Ref<InstanceType<typeof NavigationController>>;
|
|
7
7
|
declare const NavigationController: import('vue').DefineComponent<{
|
|
@@ -22,8 +22,8 @@ declare const NavigationController: import('vue').DefineComponent<{
|
|
|
22
22
|
default: null;
|
|
23
23
|
};
|
|
24
24
|
}, unknown, {
|
|
25
|
-
components: ComponentWithProperties[];
|
|
26
|
-
mainComponent: ComponentWithProperties | null;
|
|
25
|
+
components: Raw<ComponentWithProperties>[];
|
|
26
|
+
mainComponent: Raw<ComponentWithProperties> | null;
|
|
27
27
|
transitionName: string;
|
|
28
28
|
savedScrollPositions: number[];
|
|
29
29
|
nextScrollPosition: number;
|
|
@@ -32,7 +32,10 @@ declare const NavigationController: import('vue').DefineComponent<{
|
|
|
32
32
|
savedInternalScrollPositions: number[];
|
|
33
33
|
asyncQueue: (() => Promise<void>)[];
|
|
34
34
|
asyncQueueRunning: boolean;
|
|
35
|
+
cachedProvides: Map<number, any>;
|
|
35
36
|
}, {}, {
|
|
37
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
38
|
+
provideForComponent(key: number): any;
|
|
36
39
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
37
40
|
runQueueIfNeeded(): void;
|
|
38
41
|
freezeSize(): void;
|
package/dist/src/Sheet.vue.d.ts
CHANGED
|
@@ -187,8 +187,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
187
187
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
188
188
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
189
189
|
}, unknown, {
|
|
190
|
-
components: ComponentWithProperties[];
|
|
191
|
-
mainComponent: ComponentWithProperties | null;
|
|
190
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
191
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
192
192
|
transitionName: string;
|
|
193
193
|
savedScrollPositions: number[];
|
|
194
194
|
nextScrollPosition: number;
|
|
@@ -197,7 +197,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
197
197
|
savedInternalScrollPositions: number[];
|
|
198
198
|
asyncQueue: (() => Promise<void>)[];
|
|
199
199
|
asyncQueueRunning: boolean;
|
|
200
|
+
cachedProvides: Map<number, any>;
|
|
200
201
|
}, {}, {
|
|
202
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
203
|
+
provideForComponent(key: number): any;
|
|
201
204
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
202
205
|
runQueueIfNeeded(): void;
|
|
203
206
|
freezeSize(): void;
|
|
@@ -279,8 +282,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
279
282
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
280
283
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
281
284
|
}, {}, {
|
|
282
|
-
components: ComponentWithProperties[];
|
|
283
|
-
mainComponent: ComponentWithProperties | null;
|
|
285
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
286
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
284
287
|
transitionName: string;
|
|
285
288
|
savedScrollPositions: number[];
|
|
286
289
|
nextScrollPosition: number;
|
|
@@ -289,7 +292,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
289
292
|
savedInternalScrollPositions: number[];
|
|
290
293
|
asyncQueue: (() => Promise<void>)[];
|
|
291
294
|
asyncQueueRunning: boolean;
|
|
295
|
+
cachedProvides: Map<number, any>;
|
|
292
296
|
}, {}, {
|
|
297
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
298
|
+
provideForComponent(key: number): any;
|
|
293
299
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
294
300
|
runQueueIfNeeded(): void;
|
|
295
301
|
freezeSize(): void;
|
|
@@ -555,8 +561,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
555
561
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
556
562
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
557
563
|
}, unknown, {
|
|
558
|
-
components: ComponentWithProperties[];
|
|
559
|
-
mainComponent: ComponentWithProperties | null;
|
|
564
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
565
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
560
566
|
transitionName: string;
|
|
561
567
|
savedScrollPositions: number[];
|
|
562
568
|
nextScrollPosition: number;
|
|
@@ -565,7 +571,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
565
571
|
savedInternalScrollPositions: number[];
|
|
566
572
|
asyncQueue: (() => Promise<void>)[];
|
|
567
573
|
asyncQueueRunning: boolean;
|
|
574
|
+
cachedProvides: Map<number, any>;
|
|
568
575
|
}, {}, {
|
|
576
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
577
|
+
provideForComponent(key: number): any;
|
|
569
578
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
570
579
|
runQueueIfNeeded(): void;
|
|
571
580
|
freezeSize(): void;
|
|
@@ -647,8 +656,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
647
656
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
648
657
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
649
658
|
}, {}, {
|
|
650
|
-
components: ComponentWithProperties[];
|
|
651
|
-
mainComponent: ComponentWithProperties | null;
|
|
659
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
660
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
652
661
|
transitionName: string;
|
|
653
662
|
savedScrollPositions: number[];
|
|
654
663
|
nextScrollPosition: number;
|
|
@@ -657,7 +666,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
657
666
|
savedInternalScrollPositions: number[];
|
|
658
667
|
asyncQueue: (() => Promise<void>)[];
|
|
659
668
|
asyncQueueRunning: boolean;
|
|
669
|
+
cachedProvides: Map<number, any>;
|
|
660
670
|
}, {}, {
|
|
671
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
672
|
+
provideForComponent(key: number): any;
|
|
661
673
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
662
674
|
runQueueIfNeeded(): void;
|
|
663
675
|
freezeSize(): void;
|
|
@@ -188,8 +188,8 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
188
188
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
189
189
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
190
190
|
}, unknown, {
|
|
191
|
-
components: ComponentWithProperties[];
|
|
192
|
-
mainComponent: ComponentWithProperties | null;
|
|
191
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
192
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
193
193
|
transitionName: string;
|
|
194
194
|
savedScrollPositions: number[];
|
|
195
195
|
nextScrollPosition: number;
|
|
@@ -198,7 +198,10 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
198
198
|
savedInternalScrollPositions: number[];
|
|
199
199
|
asyncQueue: (() => Promise<void>)[];
|
|
200
200
|
asyncQueueRunning: boolean;
|
|
201
|
+
cachedProvides: Map<number, any>;
|
|
201
202
|
}, {}, {
|
|
203
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
204
|
+
provideForComponent(key: number): any;
|
|
202
205
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
203
206
|
runQueueIfNeeded(): void;
|
|
204
207
|
freezeSize(): void;
|
|
@@ -280,8 +283,8 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
280
283
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
281
284
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
282
285
|
}, {}, {
|
|
283
|
-
components: ComponentWithProperties[];
|
|
284
|
-
mainComponent: ComponentWithProperties | null;
|
|
286
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
287
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
285
288
|
transitionName: string;
|
|
286
289
|
savedScrollPositions: number[];
|
|
287
290
|
nextScrollPosition: number;
|
|
@@ -290,7 +293,10 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
290
293
|
savedInternalScrollPositions: number[];
|
|
291
294
|
asyncQueue: (() => Promise<void>)[];
|
|
292
295
|
asyncQueueRunning: boolean;
|
|
296
|
+
cachedProvides: Map<number, any>;
|
|
293
297
|
}, {}, {
|
|
298
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
299
|
+
provideForComponent(key: number): any;
|
|
294
300
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
295
301
|
runQueueIfNeeded(): void;
|
|
296
302
|
freezeSize(): void;
|
|
@@ -556,8 +562,8 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
556
562
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
557
563
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
558
564
|
}, unknown, {
|
|
559
|
-
components: ComponentWithProperties[];
|
|
560
|
-
mainComponent: ComponentWithProperties | null;
|
|
565
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
566
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
561
567
|
transitionName: string;
|
|
562
568
|
savedScrollPositions: number[];
|
|
563
569
|
nextScrollPosition: number;
|
|
@@ -566,7 +572,10 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
566
572
|
savedInternalScrollPositions: number[];
|
|
567
573
|
asyncQueue: (() => Promise<void>)[];
|
|
568
574
|
asyncQueueRunning: boolean;
|
|
575
|
+
cachedProvides: Map<number, any>;
|
|
569
576
|
}, {}, {
|
|
577
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
578
|
+
provideForComponent(key: number): any;
|
|
570
579
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
571
580
|
runQueueIfNeeded(): void;
|
|
572
581
|
freezeSize(): void;
|
|
@@ -648,8 +657,8 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
648
657
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
649
658
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
650
659
|
}, {}, {
|
|
651
|
-
components: ComponentWithProperties[];
|
|
652
|
-
mainComponent: ComponentWithProperties | null;
|
|
660
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
661
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
653
662
|
transitionName: string;
|
|
654
663
|
savedScrollPositions: number[];
|
|
655
664
|
nextScrollPosition: number;
|
|
@@ -658,7 +667,10 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
658
667
|
savedInternalScrollPositions: number[];
|
|
659
668
|
asyncQueue: (() => Promise<void>)[];
|
|
660
669
|
asyncQueueRunning: boolean;
|
|
670
|
+
cachedProvides: Map<number, any>;
|
|
661
671
|
}, {}, {
|
|
672
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
673
|
+
provideForComponent(key: number): any;
|
|
662
674
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
663
675
|
runQueueIfNeeded(): void;
|
|
664
676
|
freezeSize(): void;
|
|
@@ -47,8 +47,8 @@ declare const SplitViewController: import('vue').DefineComponent<{
|
|
|
47
47
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
48
48
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
49
49
|
}, unknown, {
|
|
50
|
-
components: ComponentWithProperties[];
|
|
51
|
-
mainComponent: ComponentWithProperties | null;
|
|
50
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
51
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
52
52
|
transitionName: string;
|
|
53
53
|
savedScrollPositions: number[];
|
|
54
54
|
nextScrollPosition: number;
|
|
@@ -57,7 +57,10 @@ declare const SplitViewController: import('vue').DefineComponent<{
|
|
|
57
57
|
savedInternalScrollPositions: number[];
|
|
58
58
|
asyncQueue: (() => Promise<void>)[];
|
|
59
59
|
asyncQueueRunning: boolean;
|
|
60
|
+
cachedProvides: Map<number, any>;
|
|
60
61
|
}, {}, {
|
|
62
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
63
|
+
provideForComponent(key: number): any;
|
|
61
64
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
62
65
|
runQueueIfNeeded(): void;
|
|
63
66
|
freezeSize(): void;
|
|
@@ -139,8 +142,8 @@ declare const SplitViewController: import('vue').DefineComponent<{
|
|
|
139
142
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
140
143
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
141
144
|
}, {}, {
|
|
142
|
-
components: ComponentWithProperties[];
|
|
143
|
-
mainComponent: ComponentWithProperties | null;
|
|
145
|
+
components: import('vue').Raw<ComponentWithProperties>[];
|
|
146
|
+
mainComponent: import('vue').Raw<ComponentWithProperties> | null;
|
|
144
147
|
transitionName: string;
|
|
145
148
|
savedScrollPositions: number[];
|
|
146
149
|
nextScrollPosition: number;
|
|
@@ -149,7 +152,10 @@ declare const SplitViewController: import('vue').DefineComponent<{
|
|
|
149
152
|
savedInternalScrollPositions: number[];
|
|
150
153
|
asyncQueue: (() => Promise<void>)[];
|
|
151
154
|
asyncQueueRunning: boolean;
|
|
155
|
+
cachedProvides: Map<number, any>;
|
|
152
156
|
}, {}, {
|
|
157
|
+
cacheComponentProvides(newComponent: ComponentWithProperties): void;
|
|
158
|
+
provideForComponent(key: number): any;
|
|
153
159
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
154
160
|
runQueueIfNeeded(): void;
|
|
155
161
|
freezeSize(): void;
|
|
@@ -235,8 +235,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
235
235
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
236
236
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
237
237
|
}, unknown, {
|
|
238
|
-
components: import('..').ComponentWithProperties[];
|
|
239
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
238
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
239
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
240
240
|
transitionName: string;
|
|
241
241
|
savedScrollPositions: number[];
|
|
242
242
|
nextScrollPosition: number;
|
|
@@ -245,7 +245,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
245
245
|
savedInternalScrollPositions: number[];
|
|
246
246
|
asyncQueue: (() => Promise<void>)[];
|
|
247
247
|
asyncQueueRunning: boolean;
|
|
248
|
+
cachedProvides: Map<number, any>;
|
|
248
249
|
}, {}, {
|
|
250
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
251
|
+
provideForComponent(key: number): any;
|
|
249
252
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
250
253
|
runQueueIfNeeded(): void;
|
|
251
254
|
freezeSize(): void;
|
|
@@ -327,8 +330,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
327
330
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
328
331
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
329
332
|
}, {}, {
|
|
330
|
-
components: import('..').ComponentWithProperties[];
|
|
331
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
333
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
334
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
332
335
|
transitionName: string;
|
|
333
336
|
savedScrollPositions: number[];
|
|
334
337
|
nextScrollPosition: number;
|
|
@@ -337,7 +340,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
337
340
|
savedInternalScrollPositions: number[];
|
|
338
341
|
asyncQueue: (() => Promise<void>)[];
|
|
339
342
|
asyncQueueRunning: boolean;
|
|
343
|
+
cachedProvides: Map<number, any>;
|
|
340
344
|
}, {}, {
|
|
345
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
346
|
+
provideForComponent(key: number): any;
|
|
341
347
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
342
348
|
runQueueIfNeeded(): void;
|
|
343
349
|
freezeSize(): void;
|
|
@@ -603,8 +609,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
603
609
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
604
610
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
605
611
|
}, unknown, {
|
|
606
|
-
components: import('..').ComponentWithProperties[];
|
|
607
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
612
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
613
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
608
614
|
transitionName: string;
|
|
609
615
|
savedScrollPositions: number[];
|
|
610
616
|
nextScrollPosition: number;
|
|
@@ -613,7 +619,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
613
619
|
savedInternalScrollPositions: number[];
|
|
614
620
|
asyncQueue: (() => Promise<void>)[];
|
|
615
621
|
asyncQueueRunning: boolean;
|
|
622
|
+
cachedProvides: Map<number, any>;
|
|
616
623
|
}, {}, {
|
|
624
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
625
|
+
provideForComponent(key: number): any;
|
|
617
626
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
618
627
|
runQueueIfNeeded(): void;
|
|
619
628
|
freezeSize(): void;
|
|
@@ -695,8 +704,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
695
704
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
696
705
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
697
706
|
}, {}, {
|
|
698
|
-
components: import('..').ComponentWithProperties[];
|
|
699
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
707
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
708
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
700
709
|
transitionName: string;
|
|
701
710
|
savedScrollPositions: number[];
|
|
702
711
|
nextScrollPosition: number;
|
|
@@ -705,7 +714,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
705
714
|
savedInternalScrollPositions: number[];
|
|
706
715
|
asyncQueue: (() => Promise<void>)[];
|
|
707
716
|
asyncQueueRunning: boolean;
|
|
717
|
+
cachedProvides: Map<number, any>;
|
|
708
718
|
}, {}, {
|
|
719
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
720
|
+
provideForComponent(key: number): any;
|
|
709
721
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
710
722
|
runQueueIfNeeded(): void;
|
|
711
723
|
freezeSize(): void;
|
|
@@ -807,8 +819,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
807
819
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
808
820
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
809
821
|
}, unknown, {
|
|
810
|
-
components: import('..').ComponentWithProperties[];
|
|
811
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
822
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
823
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
812
824
|
transitionName: string;
|
|
813
825
|
savedScrollPositions: number[];
|
|
814
826
|
nextScrollPosition: number;
|
|
@@ -817,7 +829,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
817
829
|
savedInternalScrollPositions: number[];
|
|
818
830
|
asyncQueue: (() => Promise<void>)[];
|
|
819
831
|
asyncQueueRunning: boolean;
|
|
832
|
+
cachedProvides: Map<number, any>;
|
|
820
833
|
}, {}, {
|
|
834
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
835
|
+
provideForComponent(key: number): any;
|
|
821
836
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
822
837
|
runQueueIfNeeded(): void;
|
|
823
838
|
freezeSize(): void;
|
|
@@ -899,8 +914,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
899
914
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
900
915
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
901
916
|
}, {}, {
|
|
902
|
-
components: import('..').ComponentWithProperties[];
|
|
903
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
917
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
918
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
904
919
|
transitionName: string;
|
|
905
920
|
savedScrollPositions: number[];
|
|
906
921
|
nextScrollPosition: number;
|
|
@@ -909,7 +924,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
909
924
|
savedInternalScrollPositions: number[];
|
|
910
925
|
asyncQueue: (() => Promise<void>)[];
|
|
911
926
|
asyncQueueRunning: boolean;
|
|
927
|
+
cachedProvides: Map<number, any>;
|
|
912
928
|
}, {}, {
|
|
929
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
930
|
+
provideForComponent(key: number): any;
|
|
913
931
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
914
932
|
runQueueIfNeeded(): void;
|
|
915
933
|
freezeSize(): void;
|
|
@@ -983,8 +1001,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
983
1001
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
984
1002
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
985
1003
|
}, unknown, {
|
|
986
|
-
components: import('..').ComponentWithProperties[];
|
|
987
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
1004
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
1005
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
988
1006
|
transitionName: string;
|
|
989
1007
|
savedScrollPositions: number[];
|
|
990
1008
|
nextScrollPosition: number;
|
|
@@ -993,7 +1011,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
993
1011
|
savedInternalScrollPositions: number[];
|
|
994
1012
|
asyncQueue: (() => Promise<void>)[];
|
|
995
1013
|
asyncQueueRunning: boolean;
|
|
1014
|
+
cachedProvides: Map<number, any>;
|
|
996
1015
|
}, {}, {
|
|
1016
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
1017
|
+
provideForComponent(key: number): any;
|
|
997
1018
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
998
1019
|
runQueueIfNeeded(): void;
|
|
999
1020
|
freezeSize(): void;
|
|
@@ -1075,8 +1096,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
1075
1096
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
1076
1097
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
1077
1098
|
}, {}, {
|
|
1078
|
-
components: import('..').ComponentWithProperties[];
|
|
1079
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
1099
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
1100
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
1080
1101
|
transitionName: string;
|
|
1081
1102
|
savedScrollPositions: number[];
|
|
1082
1103
|
nextScrollPosition: number;
|
|
@@ -1085,7 +1106,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
1085
1106
|
savedInternalScrollPositions: number[];
|
|
1086
1107
|
asyncQueue: (() => Promise<void>)[];
|
|
1087
1108
|
asyncQueueRunning: boolean;
|
|
1109
|
+
cachedProvides: Map<number, any>;
|
|
1088
1110
|
}, {}, {
|
|
1111
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
1112
|
+
provideForComponent(key: number): any;
|
|
1089
1113
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
1090
1114
|
runQueueIfNeeded(): void;
|
|
1091
1115
|
freezeSize(): void;
|
|
@@ -1188,8 +1212,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
1188
1212
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
1189
1213
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
1190
1214
|
}, unknown, {
|
|
1191
|
-
components: import('..').ComponentWithProperties[];
|
|
1192
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
1215
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
1216
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
1193
1217
|
transitionName: string;
|
|
1194
1218
|
savedScrollPositions: number[];
|
|
1195
1219
|
nextScrollPosition: number;
|
|
@@ -1198,7 +1222,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
1198
1222
|
savedInternalScrollPositions: number[];
|
|
1199
1223
|
asyncQueue: (() => Promise<void>)[];
|
|
1200
1224
|
asyncQueueRunning: boolean;
|
|
1225
|
+
cachedProvides: Map<number, any>;
|
|
1201
1226
|
}, {}, {
|
|
1227
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
1228
|
+
provideForComponent(key: number): any;
|
|
1202
1229
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
1203
1230
|
runQueueIfNeeded(): void;
|
|
1204
1231
|
freezeSize(): void;
|
|
@@ -1280,8 +1307,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
1280
1307
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
1281
1308
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
1282
1309
|
}, {}, {
|
|
1283
|
-
components: import('..').ComponentWithProperties[];
|
|
1284
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
1310
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
1311
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
1285
1312
|
transitionName: string;
|
|
1286
1313
|
savedScrollPositions: number[];
|
|
1287
1314
|
nextScrollPosition: number;
|
|
@@ -1290,7 +1317,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
1290
1317
|
savedInternalScrollPositions: number[];
|
|
1291
1318
|
asyncQueue: (() => Promise<void>)[];
|
|
1292
1319
|
asyncQueueRunning: boolean;
|
|
1320
|
+
cachedProvides: Map<number, any>;
|
|
1293
1321
|
}, {}, {
|
|
1322
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
1323
|
+
provideForComponent(key: number): any;
|
|
1294
1324
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
1295
1325
|
runQueueIfNeeded(): void;
|
|
1296
1326
|
freezeSize(): void;
|
|
@@ -1358,8 +1388,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
1358
1388
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
1359
1389
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
1360
1390
|
}, unknown, {
|
|
1361
|
-
components: import('..').ComponentWithProperties[];
|
|
1362
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
1391
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
1392
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
1363
1393
|
transitionName: string;
|
|
1364
1394
|
savedScrollPositions: number[];
|
|
1365
1395
|
nextScrollPosition: number;
|
|
@@ -1368,7 +1398,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
1368
1398
|
savedInternalScrollPositions: number[];
|
|
1369
1399
|
asyncQueue: (() => Promise<void>)[];
|
|
1370
1400
|
asyncQueueRunning: boolean;
|
|
1401
|
+
cachedProvides: Map<number, any>;
|
|
1371
1402
|
}, {}, {
|
|
1403
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
1404
|
+
provideForComponent(key: number): any;
|
|
1372
1405
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
1373
1406
|
runQueueIfNeeded(): void;
|
|
1374
1407
|
freezeSize(): void;
|
|
@@ -1450,8 +1483,8 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
1450
1483
|
onShowDetail?: ((...args: any[]) => any) | undefined;
|
|
1451
1484
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
1452
1485
|
}, {}, {
|
|
1453
|
-
components: import('..').ComponentWithProperties[];
|
|
1454
|
-
mainComponent: import('..').ComponentWithProperties | null;
|
|
1486
|
+
components: import('vue').Raw<import('..').ComponentWithProperties>[];
|
|
1487
|
+
mainComponent: import('vue').Raw<import('..').ComponentWithProperties> | null;
|
|
1455
1488
|
transitionName: string;
|
|
1456
1489
|
savedScrollPositions: number[];
|
|
1457
1490
|
nextScrollPosition: number;
|
|
@@ -1460,7 +1493,10 @@ declare const EditWebshopMixin_base: new (...args: any) => import('../src/class-
|
|
|
1460
1493
|
savedInternalScrollPositions: number[];
|
|
1461
1494
|
asyncQueue: (() => Promise<void>)[];
|
|
1462
1495
|
asyncQueueRunning: boolean;
|
|
1496
|
+
cachedProvides: Map<number, any>;
|
|
1463
1497
|
}, {}, {
|
|
1498
|
+
cacheComponentProvides(newComponent: import('..').ComponentWithProperties): void;
|
|
1499
|
+
provideForComponent(key: number): any;
|
|
1464
1500
|
runQueue<T>(run: () => Promise<T>): Promise<T>;
|
|
1465
1501
|
runQueueIfNeeded(): void;
|
|
1466
1502
|
freezeSize(): void;
|