@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
|
@@ -145,6 +145,10 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
145
145
|
default: null;
|
|
146
146
|
type: import('vue').PropType<import('..').ComponentWithProperties[] | null>;
|
|
147
147
|
};
|
|
148
|
+
initialPresents: {
|
|
149
|
+
default: null;
|
|
150
|
+
type: import('vue').PropType<import('..').PushOptions[] | null>;
|
|
151
|
+
};
|
|
148
152
|
}>>, unknown, unknown, {
|
|
149
153
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
150
154
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -430,6 +434,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
430
434
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
431
435
|
readonly root: import('..').ComponentWithProperties | null;
|
|
432
436
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
437
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
433
438
|
}, unknown, unknown, any, {
|
|
434
439
|
present(options: import('..').PushOptions): void;
|
|
435
440
|
returnToHistoryIndex(): boolean;
|
|
@@ -437,9 +442,11 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
437
442
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
438
443
|
readonly root: import('..').ComponentWithProperties | null;
|
|
439
444
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
445
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
440
446
|
}, {
|
|
441
447
|
root: import('..').ComponentWithProperties | null;
|
|
442
448
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
449
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
443
450
|
}, false, {}, {}, {
|
|
444
451
|
P: {};
|
|
445
452
|
B: {};
|
|
@@ -450,6 +457,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
450
457
|
}, {
|
|
451
458
|
readonly root: import('..').ComponentWithProperties | null;
|
|
452
459
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
460
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
453
461
|
}, {}, {}, any, {
|
|
454
462
|
present(options: import('..').PushOptions): void;
|
|
455
463
|
returnToHistoryIndex(): boolean;
|
|
@@ -457,6 +465,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
457
465
|
}, {
|
|
458
466
|
root: import('..').ComponentWithProperties | null;
|
|
459
467
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
468
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
460
469
|
}>;
|
|
461
470
|
}, {
|
|
462
471
|
present(options: import('..').PushOptions): void;
|
|
@@ -471,9 +480,14 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
471
480
|
default: null;
|
|
472
481
|
type: import('vue').PropType<import('..').ComponentWithProperties[] | null>;
|
|
473
482
|
};
|
|
483
|
+
initialPresents: {
|
|
484
|
+
default: null;
|
|
485
|
+
type: import('vue').PropType<import('..').PushOptions[] | null>;
|
|
486
|
+
};
|
|
474
487
|
}>>, {
|
|
475
488
|
root: import('..').ComponentWithProperties | null;
|
|
476
489
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
490
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
477
491
|
}, true, {}, {}, {
|
|
478
492
|
P: {};
|
|
479
493
|
B: {};
|
|
@@ -490,6 +504,10 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
490
504
|
default: null;
|
|
491
505
|
type: import('vue').PropType<import('..').ComponentWithProperties[] | null>;
|
|
492
506
|
};
|
|
507
|
+
initialPresents: {
|
|
508
|
+
default: null;
|
|
509
|
+
type: import('vue').PropType<import('..').PushOptions[] | null>;
|
|
510
|
+
};
|
|
493
511
|
}>>, {}, {}, {
|
|
494
512
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
495
513
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -775,6 +793,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
775
793
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
776
794
|
readonly root: import('..').ComponentWithProperties | null;
|
|
777
795
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
796
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
778
797
|
}, unknown, unknown, any, {
|
|
779
798
|
present(options: import('..').PushOptions): void;
|
|
780
799
|
returnToHistoryIndex(): boolean;
|
|
@@ -782,9 +801,11 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
782
801
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
783
802
|
readonly root: import('..').ComponentWithProperties | null;
|
|
784
803
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
804
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
785
805
|
}, {
|
|
786
806
|
root: import('..').ComponentWithProperties | null;
|
|
787
807
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
808
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
788
809
|
}, false, {}, {}, {
|
|
789
810
|
P: {};
|
|
790
811
|
B: {};
|
|
@@ -795,6 +816,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
795
816
|
}, {
|
|
796
817
|
readonly root: import('..').ComponentWithProperties | null;
|
|
797
818
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
819
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
798
820
|
}, {}, {}, any, {
|
|
799
821
|
present(options: import('..').PushOptions): void;
|
|
800
822
|
returnToHistoryIndex(): boolean;
|
|
@@ -802,6 +824,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
802
824
|
}, {
|
|
803
825
|
root: import('..').ComponentWithProperties | null;
|
|
804
826
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
827
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
805
828
|
}>;
|
|
806
829
|
}, {
|
|
807
830
|
present(options: import('..').PushOptions): void;
|
|
@@ -810,6 +833,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
810
833
|
}, {
|
|
811
834
|
root: import('..').ComponentWithProperties | null;
|
|
812
835
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
836
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
813
837
|
}>;
|
|
814
838
|
navigationController: import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
815
839
|
root: {
|
|
@@ -1586,6 +1610,10 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
1586
1610
|
default: null;
|
|
1587
1611
|
type: import('vue').PropType<import('..').ComponentWithProperties[] | null>;
|
|
1588
1612
|
};
|
|
1613
|
+
initialPresents: {
|
|
1614
|
+
default: null;
|
|
1615
|
+
type: import('vue').PropType<import('..').PushOptions[] | null>;
|
|
1616
|
+
};
|
|
1589
1617
|
}>>, unknown, unknown, {
|
|
1590
1618
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
1591
1619
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -1871,6 +1899,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
1871
1899
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
1872
1900
|
readonly root: import('..').ComponentWithProperties | null;
|
|
1873
1901
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
1902
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
1874
1903
|
}, unknown, unknown, any, {
|
|
1875
1904
|
present(options: import('..').PushOptions): void;
|
|
1876
1905
|
returnToHistoryIndex(): boolean;
|
|
@@ -1878,9 +1907,11 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
1878
1907
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
1879
1908
|
readonly root: import('..').ComponentWithProperties | null;
|
|
1880
1909
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
1910
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
1881
1911
|
}, {
|
|
1882
1912
|
root: import('..').ComponentWithProperties | null;
|
|
1883
1913
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
1914
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
1884
1915
|
}, false, {}, {}, {
|
|
1885
1916
|
P: {};
|
|
1886
1917
|
B: {};
|
|
@@ -1891,6 +1922,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
1891
1922
|
}, {
|
|
1892
1923
|
readonly root: import('..').ComponentWithProperties | null;
|
|
1893
1924
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
1925
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
1894
1926
|
}, {}, {}, any, {
|
|
1895
1927
|
present(options: import('..').PushOptions): void;
|
|
1896
1928
|
returnToHistoryIndex(): boolean;
|
|
@@ -1898,6 +1930,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
1898
1930
|
}, {
|
|
1899
1931
|
root: import('..').ComponentWithProperties | null;
|
|
1900
1932
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
1933
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
1901
1934
|
}>;
|
|
1902
1935
|
}, {
|
|
1903
1936
|
present(options: import('..').PushOptions): void;
|
|
@@ -1912,9 +1945,14 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
1912
1945
|
default: null;
|
|
1913
1946
|
type: import('vue').PropType<import('..').ComponentWithProperties[] | null>;
|
|
1914
1947
|
};
|
|
1948
|
+
initialPresents: {
|
|
1949
|
+
default: null;
|
|
1950
|
+
type: import('vue').PropType<import('..').PushOptions[] | null>;
|
|
1951
|
+
};
|
|
1915
1952
|
}>>, {
|
|
1916
1953
|
root: import('..').ComponentWithProperties | null;
|
|
1917
1954
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
1955
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
1918
1956
|
}, true, {}, {}, {
|
|
1919
1957
|
P: {};
|
|
1920
1958
|
B: {};
|
|
@@ -1931,6 +1969,10 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
1931
1969
|
default: null;
|
|
1932
1970
|
type: import('vue').PropType<import('..').ComponentWithProperties[] | null>;
|
|
1933
1971
|
};
|
|
1972
|
+
initialPresents: {
|
|
1973
|
+
default: null;
|
|
1974
|
+
type: import('vue').PropType<import('..').PushOptions[] | null>;
|
|
1975
|
+
};
|
|
1934
1976
|
}>>, {}, {}, {
|
|
1935
1977
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
1936
1978
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -2216,6 +2258,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
2216
2258
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
2217
2259
|
readonly root: import('..').ComponentWithProperties | null;
|
|
2218
2260
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
2261
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
2219
2262
|
}, unknown, unknown, any, {
|
|
2220
2263
|
present(options: import('..').PushOptions): void;
|
|
2221
2264
|
returnToHistoryIndex(): boolean;
|
|
@@ -2223,9 +2266,11 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
2223
2266
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
2224
2267
|
readonly root: import('..').ComponentWithProperties | null;
|
|
2225
2268
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
2269
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
2226
2270
|
}, {
|
|
2227
2271
|
root: import('..').ComponentWithProperties | null;
|
|
2228
2272
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
2273
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
2229
2274
|
}, false, {}, {}, {
|
|
2230
2275
|
P: {};
|
|
2231
2276
|
B: {};
|
|
@@ -2236,6 +2281,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
2236
2281
|
}, {
|
|
2237
2282
|
readonly root: import('..').ComponentWithProperties | null;
|
|
2238
2283
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
2284
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
2239
2285
|
}, {}, {}, any, {
|
|
2240
2286
|
present(options: import('..').PushOptions): void;
|
|
2241
2287
|
returnToHistoryIndex(): boolean;
|
|
@@ -2243,6 +2289,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
2243
2289
|
}, {
|
|
2244
2290
|
root: import('..').ComponentWithProperties | null;
|
|
2245
2291
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
2292
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
2246
2293
|
}>;
|
|
2247
2294
|
}, {
|
|
2248
2295
|
present(options: import('..').PushOptions): void;
|
|
@@ -2251,6 +2298,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
2251
2298
|
}, {
|
|
2252
2299
|
root: import('..').ComponentWithProperties | null;
|
|
2253
2300
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
2301
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
2254
2302
|
}>;
|
|
2255
2303
|
navigationController: import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
2256
2304
|
root: {
|
|
@@ -3119,6 +3167,10 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3119
3167
|
default: null;
|
|
3120
3168
|
type: import('vue').PropType<import('..').ComponentWithProperties[] | null>;
|
|
3121
3169
|
};
|
|
3170
|
+
initialPresents: {
|
|
3171
|
+
default: null;
|
|
3172
|
+
type: import('vue').PropType<import('..').PushOptions[] | null>;
|
|
3173
|
+
};
|
|
3122
3174
|
}>>, unknown, unknown, {
|
|
3123
3175
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
3124
3176
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -3404,6 +3456,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3404
3456
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
3405
3457
|
readonly root: import('..').ComponentWithProperties | null;
|
|
3406
3458
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3459
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
3407
3460
|
}, unknown, unknown, any, {
|
|
3408
3461
|
present(options: import('..').PushOptions): void;
|
|
3409
3462
|
returnToHistoryIndex(): boolean;
|
|
@@ -3411,9 +3464,11 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3411
3464
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
3412
3465
|
readonly root: import('..').ComponentWithProperties | null;
|
|
3413
3466
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3467
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
3414
3468
|
}, {
|
|
3415
3469
|
root: import('..').ComponentWithProperties | null;
|
|
3416
3470
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3471
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
3417
3472
|
}, false, {}, {}, {
|
|
3418
3473
|
P: {};
|
|
3419
3474
|
B: {};
|
|
@@ -3424,6 +3479,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3424
3479
|
}, {
|
|
3425
3480
|
readonly root: import('..').ComponentWithProperties | null;
|
|
3426
3481
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3482
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
3427
3483
|
}, {}, {}, any, {
|
|
3428
3484
|
present(options: import('..').PushOptions): void;
|
|
3429
3485
|
returnToHistoryIndex(): boolean;
|
|
@@ -3431,6 +3487,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3431
3487
|
}, {
|
|
3432
3488
|
root: import('..').ComponentWithProperties | null;
|
|
3433
3489
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3490
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
3434
3491
|
}>;
|
|
3435
3492
|
}, {
|
|
3436
3493
|
present(options: import('..').PushOptions): void;
|
|
@@ -3445,9 +3502,14 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3445
3502
|
default: null;
|
|
3446
3503
|
type: import('vue').PropType<import('..').ComponentWithProperties[] | null>;
|
|
3447
3504
|
};
|
|
3505
|
+
initialPresents: {
|
|
3506
|
+
default: null;
|
|
3507
|
+
type: import('vue').PropType<import('..').PushOptions[] | null>;
|
|
3508
|
+
};
|
|
3448
3509
|
}>>, {
|
|
3449
3510
|
root: import('..').ComponentWithProperties | null;
|
|
3450
3511
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3512
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
3451
3513
|
}, true, {}, {}, {
|
|
3452
3514
|
P: {};
|
|
3453
3515
|
B: {};
|
|
@@ -3464,6 +3526,10 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3464
3526
|
default: null;
|
|
3465
3527
|
type: import('vue').PropType<import('..').ComponentWithProperties[] | null>;
|
|
3466
3528
|
};
|
|
3529
|
+
initialPresents: {
|
|
3530
|
+
default: null;
|
|
3531
|
+
type: import('vue').PropType<import('..').PushOptions[] | null>;
|
|
3532
|
+
};
|
|
3467
3533
|
}>>, {}, {}, {
|
|
3468
3534
|
stackComponent(): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{}>> & {
|
|
3469
3535
|
onPresent?: ((...args: any[]) => any) | undefined;
|
|
@@ -3749,6 +3815,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3749
3815
|
modalStackComponent(): import('vue').CreateComponentPublicInstance<{
|
|
3750
3816
|
readonly root: import('..').ComponentWithProperties | null;
|
|
3751
3817
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3818
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
3752
3819
|
}, unknown, unknown, any, {
|
|
3753
3820
|
present(options: import('..').PushOptions): void;
|
|
3754
3821
|
returnToHistoryIndex(): boolean;
|
|
@@ -3756,9 +3823,11 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3756
3823
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, {
|
|
3757
3824
|
readonly root: import('..').ComponentWithProperties | null;
|
|
3758
3825
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3826
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
3759
3827
|
}, {
|
|
3760
3828
|
root: import('..').ComponentWithProperties | null;
|
|
3761
3829
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3830
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
3762
3831
|
}, false, {}, {}, {
|
|
3763
3832
|
P: {};
|
|
3764
3833
|
B: {};
|
|
@@ -3769,6 +3838,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3769
3838
|
}, {
|
|
3770
3839
|
readonly root: import('..').ComponentWithProperties | null;
|
|
3771
3840
|
readonly initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3841
|
+
readonly initialPresents: import('..').PushOptions[] | null;
|
|
3772
3842
|
}, {}, {}, any, {
|
|
3773
3843
|
present(options: import('..').PushOptions): void;
|
|
3774
3844
|
returnToHistoryIndex(): boolean;
|
|
@@ -3776,6 +3846,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3776
3846
|
}, {
|
|
3777
3847
|
root: import('..').ComponentWithProperties | null;
|
|
3778
3848
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3849
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
3779
3850
|
}>;
|
|
3780
3851
|
}, {
|
|
3781
3852
|
present(options: import('..').PushOptions): void;
|
|
@@ -3784,6 +3855,7 @@ declare const EditWebshopMixin_base: new (...args: any) => {
|
|
|
3784
3855
|
}, {
|
|
3785
3856
|
root: import('..').ComponentWithProperties | null;
|
|
3786
3857
|
initialComponents: import('..').ComponentWithProperties[] | null;
|
|
3858
|
+
initialPresents: import('..').PushOptions[] | null;
|
|
3787
3859
|
}>;
|
|
3788
3860
|
dismiss: (options?: import('..').PopOptions | undefined) => Promise<void>;
|
|
3789
3861
|
isFocused: boolean;
|