@simonbackx/vue-app-navigation 2.0.0-alpha.4 → 2.0.0-alpha.6
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 +20041 -15079
- package/dist/src/ModalMixin.d.ts +24 -0
- package/dist/src/ModalStackComponent.vue.d.ts +14 -0
- package/dist/src/Sheet.vue.d.ts +24 -0
- package/dist/src/SideView.vue.d.ts +24 -0
- package/dist/src/class-components/VueComponent.d.ts +3 -1
- package/dist/test/EditWebshopMixin.d.ts +72 -0
- package/package.json +1 -1
package/dist/src/ModalMixin.d.ts
CHANGED
|
@@ -13,6 +13,10 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
13
13
|
default: null;
|
|
14
14
|
type: import('vue').PropType<import('./ComponentWithProperties').ComponentWithProperties[] | null>;
|
|
15
15
|
};
|
|
16
|
+
initialPresents: {
|
|
17
|
+
default: null;
|
|
18
|
+
type: import('vue').PropType<import('./PushOptions').PushOptions[] | null>;
|
|
19
|
+
};
|
|
16
20
|
}>>, unknown, unknown, {
|
|
17
21
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
18
22
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -298,6 +302,7 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
298
302
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
299
303
|
readonly root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
300
304
|
readonly initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
305
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
301
306
|
}, unknown, unknown, any, {
|
|
302
307
|
present(options: import('./PushOptions').PushOptions): void;
|
|
303
308
|
returnToHistoryIndex(): boolean;
|
|
@@ -305,9 +310,11 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
305
310
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
306
311
|
readonly root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
307
312
|
readonly initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
313
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
308
314
|
}, {
|
|
309
315
|
root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
310
316
|
initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
317
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
311
318
|
}, false, {}, {}, {
|
|
312
319
|
P: {};
|
|
313
320
|
B: {};
|
|
@@ -318,6 +325,7 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
318
325
|
}, {
|
|
319
326
|
readonly root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
320
327
|
readonly initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
328
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
321
329
|
}, {}, {}, any, {
|
|
322
330
|
present(options: import('./PushOptions').PushOptions): void;
|
|
323
331
|
returnToHistoryIndex(): boolean;
|
|
@@ -325,6 +333,7 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
325
333
|
}, {
|
|
326
334
|
root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
327
335
|
initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
336
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
328
337
|
}>;
|
|
329
338
|
}, {
|
|
330
339
|
present(options: import('./PushOptions').PushOptions): void;
|
|
@@ -339,9 +348,14 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
339
348
|
default: null;
|
|
340
349
|
type: import('vue').PropType<import('./ComponentWithProperties').ComponentWithProperties[] | null>;
|
|
341
350
|
};
|
|
351
|
+
initialPresents: {
|
|
352
|
+
default: null;
|
|
353
|
+
type: import('vue').PropType<import('./PushOptions').PushOptions[] | null>;
|
|
354
|
+
};
|
|
342
355
|
}>>, {
|
|
343
356
|
root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
344
357
|
initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
358
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
345
359
|
}, true, {}, {}, {
|
|
346
360
|
P: {};
|
|
347
361
|
B: {};
|
|
@@ -358,6 +372,10 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
358
372
|
default: null;
|
|
359
373
|
type: import('vue').PropType<import('./ComponentWithProperties').ComponentWithProperties[] | null>;
|
|
360
374
|
};
|
|
375
|
+
initialPresents: {
|
|
376
|
+
default: null;
|
|
377
|
+
type: import('vue').PropType<import('./PushOptions').PushOptions[] | null>;
|
|
378
|
+
};
|
|
361
379
|
}>>, {}, {}, {
|
|
362
380
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
363
381
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -643,6 +661,7 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
643
661
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
644
662
|
readonly root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
645
663
|
readonly initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
664
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
646
665
|
}, unknown, unknown, any, {
|
|
647
666
|
present(options: import('./PushOptions').PushOptions): void;
|
|
648
667
|
returnToHistoryIndex(): boolean;
|
|
@@ -650,9 +669,11 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
650
669
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
651
670
|
readonly root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
652
671
|
readonly initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
672
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
653
673
|
}, {
|
|
654
674
|
root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
655
675
|
initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
676
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
656
677
|
}, false, {}, {}, {
|
|
657
678
|
P: {};
|
|
658
679
|
B: {};
|
|
@@ -663,6 +684,7 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
663
684
|
}, {
|
|
664
685
|
readonly root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
665
686
|
readonly initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
687
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
666
688
|
}, {}, {}, any, {
|
|
667
689
|
present(options: import('./PushOptions').PushOptions): void;
|
|
668
690
|
returnToHistoryIndex(): boolean;
|
|
@@ -670,6 +692,7 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
670
692
|
}, {
|
|
671
693
|
root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
672
694
|
initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
695
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
673
696
|
}>;
|
|
674
697
|
}, {
|
|
675
698
|
present(options: import('./PushOptions').PushOptions): void;
|
|
@@ -678,5 +701,6 @@ export declare const ModalMixin: import('vue').DefineComponent<{}, {}, {}, {}, {
|
|
|
678
701
|
}, {
|
|
679
702
|
root: import('./ComponentWithProperties').ComponentWithProperties | null;
|
|
680
703
|
initialComponents: import('./ComponentWithProperties').ComponentWithProperties[] | null;
|
|
704
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
681
705
|
}> | null;
|
|
682
706
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
@@ -12,6 +12,10 @@ declare const ModalStackComponent: import('vue').DefineComponent<{
|
|
|
12
12
|
default: null;
|
|
13
13
|
type: PropType<ComponentWithProperties[] | null>;
|
|
14
14
|
};
|
|
15
|
+
initialPresents: {
|
|
16
|
+
default: null;
|
|
17
|
+
type: PropType<PushOptions[] | null>;
|
|
18
|
+
};
|
|
15
19
|
}, unknown, unknown, {
|
|
16
20
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
17
21
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -297,6 +301,7 @@ declare const ModalStackComponent: import('vue').DefineComponent<{
|
|
|
297
301
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
298
302
|
readonly root: ComponentWithProperties | null;
|
|
299
303
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
304
|
+
readonly initialPresents: PushOptions[] | null;
|
|
300
305
|
}, unknown, unknown, any, {
|
|
301
306
|
present(options: PushOptions): void;
|
|
302
307
|
returnToHistoryIndex(): boolean;
|
|
@@ -304,9 +309,11 @@ declare const ModalStackComponent: import('vue').DefineComponent<{
|
|
|
304
309
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
305
310
|
readonly root: ComponentWithProperties | null;
|
|
306
311
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
312
|
+
readonly initialPresents: PushOptions[] | null;
|
|
307
313
|
}, {
|
|
308
314
|
root: ComponentWithProperties | null;
|
|
309
315
|
initialComponents: ComponentWithProperties[] | null;
|
|
316
|
+
initialPresents: PushOptions[] | null;
|
|
310
317
|
}, false, {}, {}, {
|
|
311
318
|
P: {};
|
|
312
319
|
B: {};
|
|
@@ -317,6 +324,7 @@ declare const ModalStackComponent: import('vue').DefineComponent<{
|
|
|
317
324
|
}, {
|
|
318
325
|
readonly root: ComponentWithProperties | null;
|
|
319
326
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
327
|
+
readonly initialPresents: PushOptions[] | null;
|
|
320
328
|
}, {}, {}, any, {
|
|
321
329
|
present(options: PushOptions): void;
|
|
322
330
|
returnToHistoryIndex(): boolean;
|
|
@@ -324,6 +332,7 @@ declare const ModalStackComponent: import('vue').DefineComponent<{
|
|
|
324
332
|
}, {
|
|
325
333
|
root: ComponentWithProperties | null;
|
|
326
334
|
initialComponents: ComponentWithProperties[] | null;
|
|
335
|
+
initialPresents: PushOptions[] | null;
|
|
327
336
|
}>;
|
|
328
337
|
}, {
|
|
329
338
|
present(options: PushOptions): void;
|
|
@@ -338,8 +347,13 @@ declare const ModalStackComponent: import('vue').DefineComponent<{
|
|
|
338
347
|
default: null;
|
|
339
348
|
type: PropType<ComponentWithProperties[] | null>;
|
|
340
349
|
};
|
|
350
|
+
initialPresents: {
|
|
351
|
+
default: null;
|
|
352
|
+
type: PropType<PushOptions[] | null>;
|
|
353
|
+
};
|
|
341
354
|
}>>, {
|
|
342
355
|
root: ComponentWithProperties | null;
|
|
343
356
|
initialComponents: ComponentWithProperties[] | null;
|
|
357
|
+
initialPresents: PushOptions[] | null;
|
|
344
358
|
}, {}>;
|
|
345
359
|
export default ModalStackComponent;
|
package/dist/src/Sheet.vue.d.ts
CHANGED
|
@@ -28,6 +28,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
28
28
|
default: null;
|
|
29
29
|
type: PropType<ComponentWithProperties[] | null>;
|
|
30
30
|
};
|
|
31
|
+
initialPresents: {
|
|
32
|
+
default: null;
|
|
33
|
+
type: PropType<import('./PushOptions').PushOptions[] | null>;
|
|
34
|
+
};
|
|
31
35
|
}>>, unknown, unknown, {
|
|
32
36
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
33
37
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -313,6 +317,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
313
317
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
314
318
|
readonly root: ComponentWithProperties | null;
|
|
315
319
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
320
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
316
321
|
}, unknown, unknown, any, {
|
|
317
322
|
present(options: import('./PushOptions').PushOptions): void;
|
|
318
323
|
returnToHistoryIndex(): boolean;
|
|
@@ -320,9 +325,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
320
325
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
321
326
|
readonly root: ComponentWithProperties | null;
|
|
322
327
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
328
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
323
329
|
}, {
|
|
324
330
|
root: ComponentWithProperties | null;
|
|
325
331
|
initialComponents: ComponentWithProperties[] | null;
|
|
332
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
326
333
|
}, false, {}, {}, {
|
|
327
334
|
P: {};
|
|
328
335
|
B: {};
|
|
@@ -333,6 +340,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
333
340
|
}, {
|
|
334
341
|
readonly root: ComponentWithProperties | null;
|
|
335
342
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
343
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
336
344
|
}, {}, {}, any, {
|
|
337
345
|
present(options: import('./PushOptions').PushOptions): void;
|
|
338
346
|
returnToHistoryIndex(): boolean;
|
|
@@ -340,6 +348,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
340
348
|
}, {
|
|
341
349
|
root: ComponentWithProperties | null;
|
|
342
350
|
initialComponents: ComponentWithProperties[] | null;
|
|
351
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
343
352
|
}>;
|
|
344
353
|
}, {
|
|
345
354
|
present(options: import('./PushOptions').PushOptions): void;
|
|
@@ -354,9 +363,14 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
354
363
|
default: null;
|
|
355
364
|
type: PropType<ComponentWithProperties[] | null>;
|
|
356
365
|
};
|
|
366
|
+
initialPresents: {
|
|
367
|
+
default: null;
|
|
368
|
+
type: PropType<import('./PushOptions').PushOptions[] | null>;
|
|
369
|
+
};
|
|
357
370
|
}>>, {
|
|
358
371
|
root: ComponentWithProperties | null;
|
|
359
372
|
initialComponents: ComponentWithProperties[] | null;
|
|
373
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
360
374
|
}, true, {}, {}, {
|
|
361
375
|
P: {};
|
|
362
376
|
B: {};
|
|
@@ -373,6 +387,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
373
387
|
default: null;
|
|
374
388
|
type: PropType<ComponentWithProperties[] | null>;
|
|
375
389
|
};
|
|
390
|
+
initialPresents: {
|
|
391
|
+
default: null;
|
|
392
|
+
type: PropType<import('./PushOptions').PushOptions[] | null>;
|
|
393
|
+
};
|
|
376
394
|
}>>, {}, {}, {
|
|
377
395
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
378
396
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -658,6 +676,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
658
676
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
659
677
|
readonly root: ComponentWithProperties | null;
|
|
660
678
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
679
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
661
680
|
}, unknown, unknown, any, {
|
|
662
681
|
present(options: import('./PushOptions').PushOptions): void;
|
|
663
682
|
returnToHistoryIndex(): boolean;
|
|
@@ -665,9 +684,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
665
684
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
666
685
|
readonly root: ComponentWithProperties | null;
|
|
667
686
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
687
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
668
688
|
}, {
|
|
669
689
|
root: ComponentWithProperties | null;
|
|
670
690
|
initialComponents: ComponentWithProperties[] | null;
|
|
691
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
671
692
|
}, false, {}, {}, {
|
|
672
693
|
P: {};
|
|
673
694
|
B: {};
|
|
@@ -678,6 +699,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
678
699
|
}, {
|
|
679
700
|
readonly root: ComponentWithProperties | null;
|
|
680
701
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
702
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
681
703
|
}, {}, {}, any, {
|
|
682
704
|
present(options: import('./PushOptions').PushOptions): void;
|
|
683
705
|
returnToHistoryIndex(): boolean;
|
|
@@ -685,6 +707,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
685
707
|
}, {
|
|
686
708
|
root: ComponentWithProperties | null;
|
|
687
709
|
initialComponents: ComponentWithProperties[] | null;
|
|
710
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
688
711
|
}>;
|
|
689
712
|
}, {
|
|
690
713
|
present(options: import('./PushOptions').PushOptions): void;
|
|
@@ -693,6 +716,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
693
716
|
}, {
|
|
694
717
|
root: ComponentWithProperties | null;
|
|
695
718
|
initialComponents: ComponentWithProperties[] | null;
|
|
719
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
696
720
|
}> | null;
|
|
697
721
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
698
722
|
root: {
|
|
@@ -29,6 +29,10 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
29
29
|
default: null;
|
|
30
30
|
type: PropType<ComponentWithProperties[] | null>;
|
|
31
31
|
};
|
|
32
|
+
initialPresents: {
|
|
33
|
+
default: null;
|
|
34
|
+
type: PropType<import('./PushOptions').PushOptions[] | null>;
|
|
35
|
+
};
|
|
32
36
|
}>>, unknown, unknown, {
|
|
33
37
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
34
38
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -314,6 +318,7 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
314
318
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
315
319
|
readonly root: ComponentWithProperties | null;
|
|
316
320
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
321
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
317
322
|
}, unknown, unknown, any, {
|
|
318
323
|
present(options: import('./PushOptions').PushOptions): void;
|
|
319
324
|
returnToHistoryIndex(): boolean;
|
|
@@ -321,9 +326,11 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
321
326
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
322
327
|
readonly root: ComponentWithProperties | null;
|
|
323
328
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
329
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
324
330
|
}, {
|
|
325
331
|
root: ComponentWithProperties | null;
|
|
326
332
|
initialComponents: ComponentWithProperties[] | null;
|
|
333
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
327
334
|
}, false, {}, {}, {
|
|
328
335
|
P: {};
|
|
329
336
|
B: {};
|
|
@@ -334,6 +341,7 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
334
341
|
}, {
|
|
335
342
|
readonly root: ComponentWithProperties | null;
|
|
336
343
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
344
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
337
345
|
}, {}, {}, any, {
|
|
338
346
|
present(options: import('./PushOptions').PushOptions): void;
|
|
339
347
|
returnToHistoryIndex(): boolean;
|
|
@@ -341,6 +349,7 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
341
349
|
}, {
|
|
342
350
|
root: ComponentWithProperties | null;
|
|
343
351
|
initialComponents: ComponentWithProperties[] | null;
|
|
352
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
344
353
|
}>;
|
|
345
354
|
}, {
|
|
346
355
|
present(options: import('./PushOptions').PushOptions): void;
|
|
@@ -355,9 +364,14 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
355
364
|
default: null;
|
|
356
365
|
type: PropType<ComponentWithProperties[] | null>;
|
|
357
366
|
};
|
|
367
|
+
initialPresents: {
|
|
368
|
+
default: null;
|
|
369
|
+
type: PropType<import('./PushOptions').PushOptions[] | null>;
|
|
370
|
+
};
|
|
358
371
|
}>>, {
|
|
359
372
|
root: ComponentWithProperties | null;
|
|
360
373
|
initialComponents: ComponentWithProperties[] | null;
|
|
374
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
361
375
|
}, true, {}, {}, {
|
|
362
376
|
P: {};
|
|
363
377
|
B: {};
|
|
@@ -374,6 +388,10 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
374
388
|
default: null;
|
|
375
389
|
type: PropType<ComponentWithProperties[] | null>;
|
|
376
390
|
};
|
|
391
|
+
initialPresents: {
|
|
392
|
+
default: null;
|
|
393
|
+
type: PropType<import('./PushOptions').PushOptions[] | null>;
|
|
394
|
+
};
|
|
377
395
|
}>>, {}, {}, {
|
|
378
396
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
379
397
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -659,6 +677,7 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
659
677
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
660
678
|
readonly root: ComponentWithProperties | null;
|
|
661
679
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
680
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
662
681
|
}, unknown, unknown, any, {
|
|
663
682
|
present(options: import('./PushOptions').PushOptions): void;
|
|
664
683
|
returnToHistoryIndex(): boolean;
|
|
@@ -666,9 +685,11 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
666
685
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
667
686
|
readonly root: ComponentWithProperties | null;
|
|
668
687
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
688
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
669
689
|
}, {
|
|
670
690
|
root: ComponentWithProperties | null;
|
|
671
691
|
initialComponents: ComponentWithProperties[] | null;
|
|
692
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
672
693
|
}, false, {}, {}, {
|
|
673
694
|
P: {};
|
|
674
695
|
B: {};
|
|
@@ -679,6 +700,7 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
679
700
|
}, {
|
|
680
701
|
readonly root: ComponentWithProperties | null;
|
|
681
702
|
readonly initialComponents: ComponentWithProperties[] | null;
|
|
703
|
+
readonly initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
682
704
|
}, {}, {}, any, {
|
|
683
705
|
present(options: import('./PushOptions').PushOptions): void;
|
|
684
706
|
returnToHistoryIndex(): boolean;
|
|
@@ -686,6 +708,7 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
686
708
|
}, {
|
|
687
709
|
root: ComponentWithProperties | null;
|
|
688
710
|
initialComponents: ComponentWithProperties[] | null;
|
|
711
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
689
712
|
}>;
|
|
690
713
|
}, {
|
|
691
714
|
present(options: import('./PushOptions').PushOptions): void;
|
|
@@ -694,6 +717,7 @@ declare const SideView: import('vue').DefineComponent<{
|
|
|
694
717
|
}, {
|
|
695
718
|
root: ComponentWithProperties | null;
|
|
696
719
|
initialComponents: ComponentWithProperties[] | null;
|
|
720
|
+
initialPresents: import('./PushOptions').PushOptions[] | null;
|
|
697
721
|
}> | null;
|
|
698
722
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
699
723
|
root: {
|