@useinsider/guido 3.18.1-beta.8d3bf29 → 3.18.1
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/@types/config/schemas.js +1 -3
- package/dist/components/Guido.vue.js +4 -4
- package/dist/components/Guido.vue2.js +53 -55
- package/dist/components/organisms/extensions/recommendation/AssignStrategyDrawer.vue.js +7 -7
- package/dist/components/organisms/extensions/recommendation/AssignStrategyDrawer.vue2.js +57 -82
- package/dist/components/organisms/onboarding/OnboardingWrapper.vue2.js +24 -28
- package/dist/composables/useCustomInterfaceAppearance.js +42 -46
- package/dist/enums/extensions/recommendationBlock.js +1 -2
- package/dist/extensions/Blocks/Recommendation/controls/main/index.js +69 -70
- package/dist/extensions/Blocks/Recommendation/controls/main/strategy.js +28 -67
- package/dist/extensions/Blocks/Recommendation/store/recommendation.js +56 -98
- package/dist/guido.css +1 -1
- package/dist/services/recommendationApi.js +52 -61
- package/dist/src/@types/config/schemas.d.ts +0 -4
- package/dist/src/composables/useConfig.d.ts +0 -2
- package/dist/src/enums/extensions/recommendationBlock.d.ts +0 -1
- package/dist/src/extensions/Blocks/Recommendation/controls/main/strategy.d.ts +0 -2
- package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +1 -54
- package/dist/src/services/recommendationApi.d.ts +1 -2
- package/dist/src/stores/config.d.ts +0 -160
- package/dist/src/stores/onboarding.d.ts +10 -808
- package/dist/static/styles/components/recommendation-strategy.css.js +5 -70
- package/dist/stores/config.js +59 -66
- package/dist/stores/onboarding.js +36 -46
- package/package.json +1 -1
- package/dist/components/organisms/extensions/recommendation/LegacyStrategyUpdatedModal.vue.js +0 -18
- package/dist/components/organisms/extensions/recommendation/LegacyStrategyUpdatedModal.vue2.js +0 -25
- package/dist/components/organisms/onboarding/RecommendationLegacyStrategyOnboarding.vue.js +0 -21
- package/dist/components/organisms/onboarding/RecommendationLegacyStrategyOnboarding.vue2.js +0 -46
- package/dist/components/organisms/onboarding/RecommendationStrategyOnboarding.vue.js +0 -21
- package/dist/components/organisms/onboarding/RecommendationStrategyOnboarding.vue2.js +0 -46
- package/dist/composables/useLegacyStrategyConversion.js +0 -54
- package/dist/extensions/Blocks/Recommendation/utils/legacyStrategyMigration.js +0 -58
- package/dist/src/components/organisms/extensions/recommendation/LegacyStrategyUpdatedModal.vue.d.ts +0 -2
- package/dist/src/components/organisms/onboarding/RecommendationLegacyStrategyOnboarding.vue.d.ts +0 -2
- package/dist/src/components/organisms/onboarding/RecommendationStrategyOnboarding.vue.d.ts +0 -2
- package/dist/src/composables/useLegacyStrategyConversion.d.ts +0 -3
- package/dist/src/extensions/Blocks/Recommendation/utils/legacyStrategyMigration.d.ts +0 -39
- package/dist/static/assets/icons/filled-arrow-rising.svg.js +0 -5
- package/dist/static/assets/icons/line-info.svg.js +0 -5
|
@@ -128,48 +128,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
128
128
|
backButtonText?: string | undefined;
|
|
129
129
|
}[];
|
|
130
130
|
};
|
|
131
|
-
recommendationStrategyOnboarding: {
|
|
132
|
-
cardIndex: number;
|
|
133
|
-
isActive: boolean;
|
|
134
|
-
config: {
|
|
135
|
-
classes: string;
|
|
136
|
-
position: string;
|
|
137
|
-
left?: string | undefined;
|
|
138
|
-
right?: string | undefined;
|
|
139
|
-
top?: string | undefined;
|
|
140
|
-
bottom?: string | undefined;
|
|
141
|
-
title: string;
|
|
142
|
-
description: string;
|
|
143
|
-
imageSource: string;
|
|
144
|
-
backButtonClick: () => void;
|
|
145
|
-
nextButtonType: string;
|
|
146
|
-
nextButtonText: string;
|
|
147
|
-
nextButtonClick: () => void;
|
|
148
|
-
backButtonType?: string | undefined;
|
|
149
|
-
backButtonText?: string | undefined;
|
|
150
|
-
}[];
|
|
151
|
-
};
|
|
152
|
-
recommendationLegacyStrategyOnboarding: {
|
|
153
|
-
cardIndex: number;
|
|
154
|
-
isActive: boolean;
|
|
155
|
-
config: {
|
|
156
|
-
classes: string;
|
|
157
|
-
position: string;
|
|
158
|
-
left?: string | undefined;
|
|
159
|
-
right?: string | undefined;
|
|
160
|
-
top?: string | undefined;
|
|
161
|
-
bottom?: string | undefined;
|
|
162
|
-
title: string;
|
|
163
|
-
description: string;
|
|
164
|
-
imageSource: string;
|
|
165
|
-
backButtonClick: () => void;
|
|
166
|
-
nextButtonType: string;
|
|
167
|
-
nextButtonText: string;
|
|
168
|
-
nextButtonClick: () => void;
|
|
169
|
-
backButtonType?: string | undefined;
|
|
170
|
-
backButtonText?: string | undefined;
|
|
171
|
-
}[];
|
|
172
|
-
};
|
|
173
131
|
};
|
|
174
132
|
userModalState: {
|
|
175
133
|
Guido?: {
|
|
@@ -179,8 +137,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
179
137
|
versionHistoryOnboarding?: boolean | undefined;
|
|
180
138
|
ampOnboarding?: boolean | undefined;
|
|
181
139
|
itemsOnboarding?: boolean | undefined;
|
|
182
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
183
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
184
140
|
} | undefined;
|
|
185
141
|
};
|
|
186
142
|
isFetched: boolean;
|
|
@@ -333,48 +289,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
333
289
|
backButtonText?: string | undefined;
|
|
334
290
|
}[];
|
|
335
291
|
};
|
|
336
|
-
recommendationStrategyOnboarding: {
|
|
337
|
-
cardIndex: number;
|
|
338
|
-
isActive: boolean;
|
|
339
|
-
config: {
|
|
340
|
-
classes: string;
|
|
341
|
-
position: string;
|
|
342
|
-
left?: string | undefined;
|
|
343
|
-
right?: string | undefined;
|
|
344
|
-
top?: string | undefined;
|
|
345
|
-
bottom?: string | undefined;
|
|
346
|
-
title: string;
|
|
347
|
-
description: string;
|
|
348
|
-
imageSource: string;
|
|
349
|
-
backButtonClick: () => void;
|
|
350
|
-
nextButtonType: string;
|
|
351
|
-
nextButtonText: string;
|
|
352
|
-
nextButtonClick: () => void;
|
|
353
|
-
backButtonType?: string | undefined;
|
|
354
|
-
backButtonText?: string | undefined;
|
|
355
|
-
}[];
|
|
356
|
-
};
|
|
357
|
-
recommendationLegacyStrategyOnboarding: {
|
|
358
|
-
cardIndex: number;
|
|
359
|
-
isActive: boolean;
|
|
360
|
-
config: {
|
|
361
|
-
classes: string;
|
|
362
|
-
position: string;
|
|
363
|
-
left?: string | undefined;
|
|
364
|
-
right?: string | undefined;
|
|
365
|
-
top?: string | undefined;
|
|
366
|
-
bottom?: string | undefined;
|
|
367
|
-
title: string;
|
|
368
|
-
description: string;
|
|
369
|
-
imageSource: string;
|
|
370
|
-
backButtonClick: () => void;
|
|
371
|
-
nextButtonType: string;
|
|
372
|
-
nextButtonText: string;
|
|
373
|
-
nextButtonClick: () => void;
|
|
374
|
-
backButtonType?: string | undefined;
|
|
375
|
-
backButtonText?: string | undefined;
|
|
376
|
-
}[];
|
|
377
|
-
};
|
|
378
292
|
};
|
|
379
293
|
userModalState: {
|
|
380
294
|
Guido?: {
|
|
@@ -384,8 +298,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
384
298
|
versionHistoryOnboarding?: boolean | undefined;
|
|
385
299
|
ampOnboarding?: boolean | undefined;
|
|
386
300
|
itemsOnboarding?: boolean | undefined;
|
|
387
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
388
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
389
301
|
} | undefined;
|
|
390
302
|
};
|
|
391
303
|
isFetched: boolean;
|
|
@@ -434,451 +346,7 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
434
346
|
backButtonText?: string | undefined;
|
|
435
347
|
}[];
|
|
436
348
|
};
|
|
437
|
-
textBlockOnboarding: {
|
|
438
|
-
cardIndex: number;
|
|
439
|
-
isActive: boolean;
|
|
440
|
-
config: {
|
|
441
|
-
classes: string;
|
|
442
|
-
position: string;
|
|
443
|
-
left?: string | undefined;
|
|
444
|
-
right?: string | undefined;
|
|
445
|
-
top?: string | undefined;
|
|
446
|
-
bottom?: string | undefined;
|
|
447
|
-
title: string;
|
|
448
|
-
description: string;
|
|
449
|
-
imageSource: string;
|
|
450
|
-
backButtonClick: () => void;
|
|
451
|
-
nextButtonType: string;
|
|
452
|
-
nextButtonText: string;
|
|
453
|
-
nextButtonClick: () => void;
|
|
454
|
-
backButtonType?: string | undefined;
|
|
455
|
-
backButtonText?: string | undefined;
|
|
456
|
-
}[];
|
|
457
|
-
};
|
|
458
|
-
versionHistoryOnboarding: {
|
|
459
|
-
cardIndex: number;
|
|
460
|
-
isActive: boolean;
|
|
461
|
-
config: {
|
|
462
|
-
classes: string;
|
|
463
|
-
position: string;
|
|
464
|
-
left?: string | undefined;
|
|
465
|
-
right?: string | undefined;
|
|
466
|
-
top?: string | undefined;
|
|
467
|
-
bottom?: string | undefined;
|
|
468
|
-
title: string;
|
|
469
|
-
description: string;
|
|
470
|
-
imageSource: string;
|
|
471
|
-
backButtonClick: () => void;
|
|
472
|
-
nextButtonType: string;
|
|
473
|
-
nextButtonText: string;
|
|
474
|
-
nextButtonClick: () => void;
|
|
475
|
-
backButtonType?: string | undefined;
|
|
476
|
-
backButtonText?: string | undefined;
|
|
477
|
-
}[];
|
|
478
|
-
};
|
|
479
|
-
ampOnboarding: {
|
|
480
|
-
cardIndex: number;
|
|
481
|
-
isActive: boolean;
|
|
482
|
-
config: {
|
|
483
|
-
classes: string;
|
|
484
|
-
position: string;
|
|
485
|
-
left?: string | undefined;
|
|
486
|
-
right?: string | undefined;
|
|
487
|
-
top?: string | undefined;
|
|
488
|
-
bottom?: string | undefined;
|
|
489
|
-
title: string;
|
|
490
|
-
description: string;
|
|
491
|
-
imageSource: string;
|
|
492
|
-
backButtonClick: () => void;
|
|
493
|
-
nextButtonType: string;
|
|
494
|
-
nextButtonText: string;
|
|
495
|
-
nextButtonClick: () => void;
|
|
496
|
-
backButtonType?: string | undefined;
|
|
497
|
-
backButtonText?: string | undefined;
|
|
498
|
-
}[];
|
|
499
|
-
};
|
|
500
|
-
itemsOnboarding: {
|
|
501
|
-
cardIndex: number;
|
|
502
|
-
isActive: boolean;
|
|
503
|
-
config: {
|
|
504
|
-
classes: string;
|
|
505
|
-
position: string;
|
|
506
|
-
left?: string | undefined;
|
|
507
|
-
right?: string | undefined;
|
|
508
|
-
top?: string | undefined;
|
|
509
|
-
bottom?: string | undefined;
|
|
510
|
-
title: string;
|
|
511
|
-
description: string;
|
|
512
|
-
imageSource: string;
|
|
513
|
-
backButtonClick: () => void;
|
|
514
|
-
nextButtonType: string;
|
|
515
|
-
nextButtonText: string;
|
|
516
|
-
nextButtonClick: () => void;
|
|
517
|
-
backButtonType?: string | undefined;
|
|
518
|
-
backButtonText?: string | undefined;
|
|
519
|
-
}[];
|
|
520
|
-
};
|
|
521
|
-
recommendationStrategyOnboarding: {
|
|
522
|
-
cardIndex: number;
|
|
523
|
-
isActive: boolean;
|
|
524
|
-
config: {
|
|
525
|
-
classes: string;
|
|
526
|
-
position: string;
|
|
527
|
-
left?: string | undefined;
|
|
528
|
-
right?: string | undefined;
|
|
529
|
-
top?: string | undefined;
|
|
530
|
-
bottom?: string | undefined;
|
|
531
|
-
title: string;
|
|
532
|
-
description: string;
|
|
533
|
-
imageSource: string;
|
|
534
|
-
backButtonClick: () => void;
|
|
535
|
-
nextButtonType: string;
|
|
536
|
-
nextButtonText: string;
|
|
537
|
-
nextButtonClick: () => void;
|
|
538
|
-
backButtonType?: string | undefined;
|
|
539
|
-
backButtonText?: string | undefined;
|
|
540
|
-
}[];
|
|
541
|
-
};
|
|
542
|
-
recommendationLegacyStrategyOnboarding: {
|
|
543
|
-
cardIndex: number;
|
|
544
|
-
isActive: boolean;
|
|
545
|
-
config: {
|
|
546
|
-
classes: string;
|
|
547
|
-
position: string;
|
|
548
|
-
left?: string | undefined;
|
|
549
|
-
right?: string | undefined;
|
|
550
|
-
top?: string | undefined;
|
|
551
|
-
bottom?: string | undefined;
|
|
552
|
-
title: string;
|
|
553
|
-
description: string;
|
|
554
|
-
imageSource: string;
|
|
555
|
-
backButtonClick: () => void;
|
|
556
|
-
nextButtonType: string;
|
|
557
|
-
nextButtonText: string;
|
|
558
|
-
nextButtonClick: () => void;
|
|
559
|
-
backButtonType?: string | undefined;
|
|
560
|
-
backButtonText?: string | undefined;
|
|
561
|
-
}[];
|
|
562
|
-
};
|
|
563
|
-
};
|
|
564
|
-
userModalState: {
|
|
565
|
-
Guido?: {
|
|
566
|
-
newVersionPopup?: boolean | undefined;
|
|
567
|
-
genericOnboarding?: boolean | undefined;
|
|
568
|
-
textBlockOnboarding?: boolean | undefined;
|
|
569
|
-
versionHistoryOnboarding?: boolean | undefined;
|
|
570
|
-
ampOnboarding?: boolean | undefined;
|
|
571
|
-
itemsOnboarding?: boolean | undefined;
|
|
572
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
573
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
574
|
-
} | undefined;
|
|
575
|
-
};
|
|
576
|
-
isFetched: boolean;
|
|
577
|
-
} & import("pinia").PiniaCustomStateProperties<OnboardingStoreState>) => (type: OnboardingType) => {
|
|
578
|
-
classes: string;
|
|
579
|
-
position: string;
|
|
580
|
-
left?: string | undefined;
|
|
581
|
-
right?: string | undefined;
|
|
582
|
-
top?: string | undefined;
|
|
583
|
-
bottom?: string | undefined;
|
|
584
|
-
title: string;
|
|
585
|
-
description: string;
|
|
586
|
-
imageSource: string;
|
|
587
|
-
backButtonClick: () => void;
|
|
588
|
-
nextButtonType: string;
|
|
589
|
-
nextButtonText: string;
|
|
590
|
-
nextButtonClick: () => void;
|
|
591
|
-
backButtonType?: string | undefined;
|
|
592
|
-
backButtonText?: string | undefined;
|
|
593
|
-
};
|
|
594
|
-
getGenericCurrentCard: (state: {
|
|
595
|
-
onboardings: {
|
|
596
|
-
newVersionPopup: {
|
|
597
|
-
cardIndex: number;
|
|
598
|
-
isActive: boolean;
|
|
599
|
-
config: {
|
|
600
|
-
classes: string;
|
|
601
|
-
position: string;
|
|
602
|
-
left?: string | undefined;
|
|
603
|
-
right?: string | undefined;
|
|
604
|
-
top?: string | undefined;
|
|
605
|
-
bottom?: string | undefined;
|
|
606
|
-
title: string;
|
|
607
|
-
description: string;
|
|
608
|
-
imageSource: string;
|
|
609
|
-
backButtonClick: () => void;
|
|
610
|
-
nextButtonType: string;
|
|
611
|
-
nextButtonText: string;
|
|
612
|
-
nextButtonClick: () => void;
|
|
613
|
-
backButtonType?: string | undefined;
|
|
614
|
-
backButtonText?: string | undefined;
|
|
615
|
-
}[];
|
|
616
|
-
};
|
|
617
|
-
genericOnboarding: {
|
|
618
|
-
cardIndex: number;
|
|
619
|
-
isActive: boolean;
|
|
620
|
-
config: {
|
|
621
|
-
classes: string;
|
|
622
|
-
position: string;
|
|
623
|
-
left?: string | undefined;
|
|
624
|
-
right?: string | undefined;
|
|
625
|
-
top?: string | undefined;
|
|
626
|
-
bottom?: string | undefined;
|
|
627
|
-
title: string;
|
|
628
|
-
description: string;
|
|
629
|
-
imageSource: string;
|
|
630
|
-
backButtonClick: () => void;
|
|
631
|
-
nextButtonType: string;
|
|
632
|
-
nextButtonText: string;
|
|
633
|
-
nextButtonClick: () => void;
|
|
634
|
-
backButtonType?: string | undefined;
|
|
635
|
-
backButtonText?: string | undefined;
|
|
636
|
-
}[];
|
|
637
|
-
};
|
|
638
|
-
textBlockOnboarding: {
|
|
639
|
-
cardIndex: number;
|
|
640
|
-
isActive: boolean;
|
|
641
|
-
config: {
|
|
642
|
-
classes: string;
|
|
643
|
-
position: string;
|
|
644
|
-
left?: string | undefined;
|
|
645
|
-
right?: string | undefined;
|
|
646
|
-
top?: string | undefined;
|
|
647
|
-
bottom?: string | undefined;
|
|
648
|
-
title: string;
|
|
649
|
-
description: string;
|
|
650
|
-
imageSource: string;
|
|
651
|
-
backButtonClick: () => void;
|
|
652
|
-
nextButtonType: string;
|
|
653
|
-
nextButtonText: string;
|
|
654
|
-
nextButtonClick: () => void;
|
|
655
|
-
backButtonType?: string | undefined;
|
|
656
|
-
backButtonText?: string | undefined;
|
|
657
|
-
}[];
|
|
658
|
-
};
|
|
659
|
-
versionHistoryOnboarding: {
|
|
660
|
-
cardIndex: number;
|
|
661
|
-
isActive: boolean;
|
|
662
|
-
config: {
|
|
663
|
-
classes: string;
|
|
664
|
-
position: string;
|
|
665
|
-
left?: string | undefined;
|
|
666
|
-
right?: string | undefined;
|
|
667
|
-
top?: string | undefined;
|
|
668
|
-
bottom?: string | undefined;
|
|
669
|
-
title: string;
|
|
670
|
-
description: string;
|
|
671
|
-
imageSource: string;
|
|
672
|
-
backButtonClick: () => void;
|
|
673
|
-
nextButtonType: string;
|
|
674
|
-
nextButtonText: string;
|
|
675
|
-
nextButtonClick: () => void;
|
|
676
|
-
backButtonType?: string | undefined;
|
|
677
|
-
backButtonText?: string | undefined;
|
|
678
|
-
}[];
|
|
679
|
-
};
|
|
680
|
-
ampOnboarding: {
|
|
681
|
-
cardIndex: number;
|
|
682
|
-
isActive: boolean;
|
|
683
|
-
config: {
|
|
684
|
-
classes: string;
|
|
685
|
-
position: string;
|
|
686
|
-
left?: string | undefined;
|
|
687
|
-
right?: string | undefined;
|
|
688
|
-
top?: string | undefined;
|
|
689
|
-
bottom?: string | undefined;
|
|
690
|
-
title: string;
|
|
691
|
-
description: string;
|
|
692
|
-
imageSource: string;
|
|
693
|
-
backButtonClick: () => void;
|
|
694
|
-
nextButtonType: string;
|
|
695
|
-
nextButtonText: string;
|
|
696
|
-
nextButtonClick: () => void;
|
|
697
|
-
backButtonType?: string | undefined;
|
|
698
|
-
backButtonText?: string | undefined;
|
|
699
|
-
}[];
|
|
700
|
-
};
|
|
701
|
-
itemsOnboarding: {
|
|
702
|
-
cardIndex: number;
|
|
703
|
-
isActive: boolean;
|
|
704
|
-
config: {
|
|
705
|
-
classes: string;
|
|
706
|
-
position: string;
|
|
707
|
-
left?: string | undefined;
|
|
708
|
-
right?: string | undefined;
|
|
709
|
-
top?: string | undefined;
|
|
710
|
-
bottom?: string | undefined;
|
|
711
|
-
title: string;
|
|
712
|
-
description: string;
|
|
713
|
-
imageSource: string;
|
|
714
|
-
backButtonClick: () => void;
|
|
715
|
-
nextButtonType: string;
|
|
716
|
-
nextButtonText: string;
|
|
717
|
-
nextButtonClick: () => void;
|
|
718
|
-
backButtonType?: string | undefined;
|
|
719
|
-
backButtonText?: string | undefined;
|
|
720
|
-
}[];
|
|
721
|
-
};
|
|
722
|
-
recommendationStrategyOnboarding: {
|
|
723
|
-
cardIndex: number;
|
|
724
|
-
isActive: boolean;
|
|
725
|
-
config: {
|
|
726
|
-
classes: string;
|
|
727
|
-
position: string;
|
|
728
|
-
left?: string | undefined;
|
|
729
|
-
right?: string | undefined;
|
|
730
|
-
top?: string | undefined;
|
|
731
|
-
bottom?: string | undefined;
|
|
732
|
-
title: string;
|
|
733
|
-
description: string;
|
|
734
|
-
imageSource: string;
|
|
735
|
-
backButtonClick: () => void;
|
|
736
|
-
nextButtonType: string;
|
|
737
|
-
nextButtonText: string;
|
|
738
|
-
nextButtonClick: () => void;
|
|
739
|
-
backButtonType?: string | undefined;
|
|
740
|
-
backButtonText?: string | undefined;
|
|
741
|
-
}[];
|
|
742
|
-
};
|
|
743
|
-
recommendationLegacyStrategyOnboarding: {
|
|
744
|
-
cardIndex: number;
|
|
745
|
-
isActive: boolean;
|
|
746
|
-
config: {
|
|
747
|
-
classes: string;
|
|
748
|
-
position: string;
|
|
749
|
-
left?: string | undefined;
|
|
750
|
-
right?: string | undefined;
|
|
751
|
-
top?: string | undefined;
|
|
752
|
-
bottom?: string | undefined;
|
|
753
|
-
title: string;
|
|
754
|
-
description: string;
|
|
755
|
-
imageSource: string;
|
|
756
|
-
backButtonClick: () => void;
|
|
757
|
-
nextButtonType: string;
|
|
758
|
-
nextButtonText: string;
|
|
759
|
-
nextButtonClick: () => void;
|
|
760
|
-
backButtonType?: string | undefined;
|
|
761
|
-
backButtonText?: string | undefined;
|
|
762
|
-
}[];
|
|
763
|
-
};
|
|
764
|
-
};
|
|
765
|
-
userModalState: {
|
|
766
|
-
Guido?: {
|
|
767
|
-
newVersionPopup?: boolean | undefined;
|
|
768
|
-
genericOnboarding?: boolean | undefined;
|
|
769
|
-
textBlockOnboarding?: boolean | undefined;
|
|
770
|
-
versionHistoryOnboarding?: boolean | undefined;
|
|
771
|
-
ampOnboarding?: boolean | undefined;
|
|
772
|
-
itemsOnboarding?: boolean | undefined;
|
|
773
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
774
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
775
|
-
} | undefined;
|
|
776
|
-
};
|
|
777
|
-
isFetched: boolean;
|
|
778
|
-
} & import("pinia").PiniaCustomStateProperties<OnboardingStoreState>) => {
|
|
779
|
-
classes: string;
|
|
780
|
-
position: string;
|
|
781
|
-
left?: string | undefined;
|
|
782
|
-
right?: string | undefined;
|
|
783
|
-
top?: string | undefined;
|
|
784
|
-
bottom?: string | undefined;
|
|
785
|
-
title: string;
|
|
786
|
-
description: string;
|
|
787
|
-
imageSource: string;
|
|
788
|
-
backButtonClick: () => void;
|
|
789
|
-
nextButtonType: string;
|
|
790
|
-
nextButtonText: string;
|
|
791
|
-
nextButtonClick: () => void;
|
|
792
|
-
backButtonType?: string | undefined;
|
|
793
|
-
backButtonText?: string | undefined;
|
|
794
|
-
};
|
|
795
|
-
getTextBlockCurrentCard: (state: {
|
|
796
|
-
onboardings: {
|
|
797
|
-
newVersionPopup: {
|
|
798
|
-
cardIndex: number;
|
|
799
|
-
isActive: boolean;
|
|
800
|
-
config: {
|
|
801
|
-
classes: string;
|
|
802
|
-
position: string;
|
|
803
|
-
left?: string | undefined;
|
|
804
|
-
right?: string | undefined;
|
|
805
|
-
top?: string | undefined;
|
|
806
|
-
bottom?: string | undefined;
|
|
807
|
-
title: string;
|
|
808
|
-
description: string;
|
|
809
|
-
imageSource: string;
|
|
810
|
-
backButtonClick: () => void;
|
|
811
|
-
nextButtonType: string;
|
|
812
|
-
nextButtonText: string;
|
|
813
|
-
nextButtonClick: () => void;
|
|
814
|
-
backButtonType?: string | undefined;
|
|
815
|
-
backButtonText?: string | undefined;
|
|
816
|
-
}[];
|
|
817
|
-
};
|
|
818
|
-
genericOnboarding: {
|
|
819
|
-
cardIndex: number;
|
|
820
|
-
isActive: boolean;
|
|
821
|
-
config: {
|
|
822
|
-
classes: string;
|
|
823
|
-
position: string;
|
|
824
|
-
left?: string | undefined;
|
|
825
|
-
right?: string | undefined;
|
|
826
|
-
top?: string | undefined;
|
|
827
|
-
bottom?: string | undefined;
|
|
828
|
-
title: string;
|
|
829
|
-
description: string;
|
|
830
|
-
imageSource: string;
|
|
831
|
-
backButtonClick: () => void;
|
|
832
|
-
nextButtonType: string;
|
|
833
|
-
nextButtonText: string;
|
|
834
|
-
nextButtonClick: () => void;
|
|
835
|
-
backButtonType?: string | undefined;
|
|
836
|
-
backButtonText?: string | undefined;
|
|
837
|
-
}[];
|
|
838
|
-
};
|
|
839
|
-
textBlockOnboarding: {
|
|
840
|
-
cardIndex: number;
|
|
841
|
-
isActive: boolean;
|
|
842
|
-
config: {
|
|
843
|
-
classes: string;
|
|
844
|
-
position: string;
|
|
845
|
-
left?: string | undefined;
|
|
846
|
-
right?: string | undefined;
|
|
847
|
-
top?: string | undefined;
|
|
848
|
-
bottom?: string | undefined;
|
|
849
|
-
title: string;
|
|
850
|
-
description: string;
|
|
851
|
-
imageSource: string;
|
|
852
|
-
backButtonClick: () => void;
|
|
853
|
-
nextButtonType: string;
|
|
854
|
-
nextButtonText: string;
|
|
855
|
-
nextButtonClick: () => void;
|
|
856
|
-
backButtonType?: string | undefined;
|
|
857
|
-
backButtonText?: string | undefined;
|
|
858
|
-
}[];
|
|
859
|
-
};
|
|
860
|
-
versionHistoryOnboarding: {
|
|
861
|
-
cardIndex: number;
|
|
862
|
-
isActive: boolean;
|
|
863
|
-
config: {
|
|
864
|
-
classes: string;
|
|
865
|
-
position: string;
|
|
866
|
-
left?: string | undefined;
|
|
867
|
-
right?: string | undefined;
|
|
868
|
-
top?: string | undefined;
|
|
869
|
-
bottom?: string | undefined;
|
|
870
|
-
title: string;
|
|
871
|
-
description: string;
|
|
872
|
-
imageSource: string;
|
|
873
|
-
backButtonClick: () => void;
|
|
874
|
-
nextButtonType: string;
|
|
875
|
-
nextButtonText: string;
|
|
876
|
-
nextButtonClick: () => void;
|
|
877
|
-
backButtonType?: string | undefined;
|
|
878
|
-
backButtonText?: string | undefined;
|
|
879
|
-
}[];
|
|
880
|
-
};
|
|
881
|
-
ampOnboarding: {
|
|
349
|
+
textBlockOnboarding: {
|
|
882
350
|
cardIndex: number;
|
|
883
351
|
isActive: boolean;
|
|
884
352
|
config: {
|
|
@@ -899,7 +367,7 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
899
367
|
backButtonText?: string | undefined;
|
|
900
368
|
}[];
|
|
901
369
|
};
|
|
902
|
-
|
|
370
|
+
versionHistoryOnboarding: {
|
|
903
371
|
cardIndex: number;
|
|
904
372
|
isActive: boolean;
|
|
905
373
|
config: {
|
|
@@ -920,7 +388,7 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
920
388
|
backButtonText?: string | undefined;
|
|
921
389
|
}[];
|
|
922
390
|
};
|
|
923
|
-
|
|
391
|
+
ampOnboarding: {
|
|
924
392
|
cardIndex: number;
|
|
925
393
|
isActive: boolean;
|
|
926
394
|
config: {
|
|
@@ -941,7 +409,7 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
941
409
|
backButtonText?: string | undefined;
|
|
942
410
|
}[];
|
|
943
411
|
};
|
|
944
|
-
|
|
412
|
+
itemsOnboarding: {
|
|
945
413
|
cardIndex: number;
|
|
946
414
|
isActive: boolean;
|
|
947
415
|
config: {
|
|
@@ -971,12 +439,10 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
971
439
|
versionHistoryOnboarding?: boolean | undefined;
|
|
972
440
|
ampOnboarding?: boolean | undefined;
|
|
973
441
|
itemsOnboarding?: boolean | undefined;
|
|
974
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
975
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
976
442
|
} | undefined;
|
|
977
443
|
};
|
|
978
444
|
isFetched: boolean;
|
|
979
|
-
} & import("pinia").PiniaCustomStateProperties<OnboardingStoreState>) => {
|
|
445
|
+
} & import("pinia").PiniaCustomStateProperties<OnboardingStoreState>) => (type: OnboardingType) => {
|
|
980
446
|
classes: string;
|
|
981
447
|
position: string;
|
|
982
448
|
left?: string | undefined;
|
|
@@ -993,7 +459,7 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
993
459
|
backButtonType?: string | undefined;
|
|
994
460
|
backButtonText?: string | undefined;
|
|
995
461
|
};
|
|
996
|
-
|
|
462
|
+
getGenericCurrentCard: (state: {
|
|
997
463
|
onboardings: {
|
|
998
464
|
newVersionPopup: {
|
|
999
465
|
cardIndex: number;
|
|
@@ -1121,48 +587,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1121
587
|
backButtonText?: string | undefined;
|
|
1122
588
|
}[];
|
|
1123
589
|
};
|
|
1124
|
-
recommendationStrategyOnboarding: {
|
|
1125
|
-
cardIndex: number;
|
|
1126
|
-
isActive: boolean;
|
|
1127
|
-
config: {
|
|
1128
|
-
classes: string;
|
|
1129
|
-
position: string;
|
|
1130
|
-
left?: string | undefined;
|
|
1131
|
-
right?: string | undefined;
|
|
1132
|
-
top?: string | undefined;
|
|
1133
|
-
bottom?: string | undefined;
|
|
1134
|
-
title: string;
|
|
1135
|
-
description: string;
|
|
1136
|
-
imageSource: string;
|
|
1137
|
-
backButtonClick: () => void;
|
|
1138
|
-
nextButtonType: string;
|
|
1139
|
-
nextButtonText: string;
|
|
1140
|
-
nextButtonClick: () => void;
|
|
1141
|
-
backButtonType?: string | undefined;
|
|
1142
|
-
backButtonText?: string | undefined;
|
|
1143
|
-
}[];
|
|
1144
|
-
};
|
|
1145
|
-
recommendationLegacyStrategyOnboarding: {
|
|
1146
|
-
cardIndex: number;
|
|
1147
|
-
isActive: boolean;
|
|
1148
|
-
config: {
|
|
1149
|
-
classes: string;
|
|
1150
|
-
position: string;
|
|
1151
|
-
left?: string | undefined;
|
|
1152
|
-
right?: string | undefined;
|
|
1153
|
-
top?: string | undefined;
|
|
1154
|
-
bottom?: string | undefined;
|
|
1155
|
-
title: string;
|
|
1156
|
-
description: string;
|
|
1157
|
-
imageSource: string;
|
|
1158
|
-
backButtonClick: () => void;
|
|
1159
|
-
nextButtonType: string;
|
|
1160
|
-
nextButtonText: string;
|
|
1161
|
-
nextButtonClick: () => void;
|
|
1162
|
-
backButtonType?: string | undefined;
|
|
1163
|
-
backButtonText?: string | undefined;
|
|
1164
|
-
}[];
|
|
1165
|
-
};
|
|
1166
590
|
};
|
|
1167
591
|
userModalState: {
|
|
1168
592
|
Guido?: {
|
|
@@ -1172,8 +596,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1172
596
|
versionHistoryOnboarding?: boolean | undefined;
|
|
1173
597
|
ampOnboarding?: boolean | undefined;
|
|
1174
598
|
itemsOnboarding?: boolean | undefined;
|
|
1175
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
1176
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
1177
599
|
} | undefined;
|
|
1178
600
|
};
|
|
1179
601
|
isFetched: boolean;
|
|
@@ -1194,7 +616,7 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1194
616
|
backButtonType?: string | undefined;
|
|
1195
617
|
backButtonText?: string | undefined;
|
|
1196
618
|
};
|
|
1197
|
-
|
|
619
|
+
getTextBlockCurrentCard: (state: {
|
|
1198
620
|
onboardings: {
|
|
1199
621
|
newVersionPopup: {
|
|
1200
622
|
cardIndex: number;
|
|
@@ -1322,48 +744,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1322
744
|
backButtonText?: string | undefined;
|
|
1323
745
|
}[];
|
|
1324
746
|
};
|
|
1325
|
-
recommendationStrategyOnboarding: {
|
|
1326
|
-
cardIndex: number;
|
|
1327
|
-
isActive: boolean;
|
|
1328
|
-
config: {
|
|
1329
|
-
classes: string;
|
|
1330
|
-
position: string;
|
|
1331
|
-
left?: string | undefined;
|
|
1332
|
-
right?: string | undefined;
|
|
1333
|
-
top?: string | undefined;
|
|
1334
|
-
bottom?: string | undefined;
|
|
1335
|
-
title: string;
|
|
1336
|
-
description: string;
|
|
1337
|
-
imageSource: string;
|
|
1338
|
-
backButtonClick: () => void;
|
|
1339
|
-
nextButtonType: string;
|
|
1340
|
-
nextButtonText: string;
|
|
1341
|
-
nextButtonClick: () => void;
|
|
1342
|
-
backButtonType?: string | undefined;
|
|
1343
|
-
backButtonText?: string | undefined;
|
|
1344
|
-
}[];
|
|
1345
|
-
};
|
|
1346
|
-
recommendationLegacyStrategyOnboarding: {
|
|
1347
|
-
cardIndex: number;
|
|
1348
|
-
isActive: boolean;
|
|
1349
|
-
config: {
|
|
1350
|
-
classes: string;
|
|
1351
|
-
position: string;
|
|
1352
|
-
left?: string | undefined;
|
|
1353
|
-
right?: string | undefined;
|
|
1354
|
-
top?: string | undefined;
|
|
1355
|
-
bottom?: string | undefined;
|
|
1356
|
-
title: string;
|
|
1357
|
-
description: string;
|
|
1358
|
-
imageSource: string;
|
|
1359
|
-
backButtonClick: () => void;
|
|
1360
|
-
nextButtonType: string;
|
|
1361
|
-
nextButtonText: string;
|
|
1362
|
-
nextButtonClick: () => void;
|
|
1363
|
-
backButtonType?: string | undefined;
|
|
1364
|
-
backButtonText?: string | undefined;
|
|
1365
|
-
}[];
|
|
1366
|
-
};
|
|
1367
747
|
};
|
|
1368
748
|
userModalState: {
|
|
1369
749
|
Guido?: {
|
|
@@ -1373,8 +753,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1373
753
|
versionHistoryOnboarding?: boolean | undefined;
|
|
1374
754
|
ampOnboarding?: boolean | undefined;
|
|
1375
755
|
itemsOnboarding?: boolean | undefined;
|
|
1376
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
1377
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
1378
756
|
} | undefined;
|
|
1379
757
|
};
|
|
1380
758
|
isFetched: boolean;
|
|
@@ -1395,7 +773,7 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1395
773
|
backButtonType?: string | undefined;
|
|
1396
774
|
backButtonText?: string | undefined;
|
|
1397
775
|
};
|
|
1398
|
-
|
|
776
|
+
getVersionHistoryCurrentCard: (state: {
|
|
1399
777
|
onboardings: {
|
|
1400
778
|
newVersionPopup: {
|
|
1401
779
|
cardIndex: number;
|
|
@@ -1523,48 +901,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1523
901
|
backButtonText?: string | undefined;
|
|
1524
902
|
}[];
|
|
1525
903
|
};
|
|
1526
|
-
recommendationStrategyOnboarding: {
|
|
1527
|
-
cardIndex: number;
|
|
1528
|
-
isActive: boolean;
|
|
1529
|
-
config: {
|
|
1530
|
-
classes: string;
|
|
1531
|
-
position: string;
|
|
1532
|
-
left?: string | undefined;
|
|
1533
|
-
right?: string | undefined;
|
|
1534
|
-
top?: string | undefined;
|
|
1535
|
-
bottom?: string | undefined;
|
|
1536
|
-
title: string;
|
|
1537
|
-
description: string;
|
|
1538
|
-
imageSource: string;
|
|
1539
|
-
backButtonClick: () => void;
|
|
1540
|
-
nextButtonType: string;
|
|
1541
|
-
nextButtonText: string;
|
|
1542
|
-
nextButtonClick: () => void;
|
|
1543
|
-
backButtonType?: string | undefined;
|
|
1544
|
-
backButtonText?: string | undefined;
|
|
1545
|
-
}[];
|
|
1546
|
-
};
|
|
1547
|
-
recommendationLegacyStrategyOnboarding: {
|
|
1548
|
-
cardIndex: number;
|
|
1549
|
-
isActive: boolean;
|
|
1550
|
-
config: {
|
|
1551
|
-
classes: string;
|
|
1552
|
-
position: string;
|
|
1553
|
-
left?: string | undefined;
|
|
1554
|
-
right?: string | undefined;
|
|
1555
|
-
top?: string | undefined;
|
|
1556
|
-
bottom?: string | undefined;
|
|
1557
|
-
title: string;
|
|
1558
|
-
description: string;
|
|
1559
|
-
imageSource: string;
|
|
1560
|
-
backButtonClick: () => void;
|
|
1561
|
-
nextButtonType: string;
|
|
1562
|
-
nextButtonText: string;
|
|
1563
|
-
nextButtonClick: () => void;
|
|
1564
|
-
backButtonType?: string | undefined;
|
|
1565
|
-
backButtonText?: string | undefined;
|
|
1566
|
-
}[];
|
|
1567
|
-
};
|
|
1568
904
|
};
|
|
1569
905
|
userModalState: {
|
|
1570
906
|
Guido?: {
|
|
@@ -1574,8 +910,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1574
910
|
versionHistoryOnboarding?: boolean | undefined;
|
|
1575
911
|
ampOnboarding?: boolean | undefined;
|
|
1576
912
|
itemsOnboarding?: boolean | undefined;
|
|
1577
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
1578
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
1579
913
|
} | undefined;
|
|
1580
914
|
};
|
|
1581
915
|
isFetched: boolean;
|
|
@@ -1596,7 +930,7 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1596
930
|
backButtonType?: string | undefined;
|
|
1597
931
|
backButtonText?: string | undefined;
|
|
1598
932
|
};
|
|
1599
|
-
|
|
933
|
+
getAmpCurrentCard: (state: {
|
|
1600
934
|
onboardings: {
|
|
1601
935
|
newVersionPopup: {
|
|
1602
936
|
cardIndex: number;
|
|
@@ -1724,48 +1058,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1724
1058
|
backButtonText?: string | undefined;
|
|
1725
1059
|
}[];
|
|
1726
1060
|
};
|
|
1727
|
-
recommendationStrategyOnboarding: {
|
|
1728
|
-
cardIndex: number;
|
|
1729
|
-
isActive: boolean;
|
|
1730
|
-
config: {
|
|
1731
|
-
classes: string;
|
|
1732
|
-
position: string;
|
|
1733
|
-
left?: string | undefined;
|
|
1734
|
-
right?: string | undefined;
|
|
1735
|
-
top?: string | undefined;
|
|
1736
|
-
bottom?: string | undefined;
|
|
1737
|
-
title: string;
|
|
1738
|
-
description: string;
|
|
1739
|
-
imageSource: string;
|
|
1740
|
-
backButtonClick: () => void;
|
|
1741
|
-
nextButtonType: string;
|
|
1742
|
-
nextButtonText: string;
|
|
1743
|
-
nextButtonClick: () => void;
|
|
1744
|
-
backButtonType?: string | undefined;
|
|
1745
|
-
backButtonText?: string | undefined;
|
|
1746
|
-
}[];
|
|
1747
|
-
};
|
|
1748
|
-
recommendationLegacyStrategyOnboarding: {
|
|
1749
|
-
cardIndex: number;
|
|
1750
|
-
isActive: boolean;
|
|
1751
|
-
config: {
|
|
1752
|
-
classes: string;
|
|
1753
|
-
position: string;
|
|
1754
|
-
left?: string | undefined;
|
|
1755
|
-
right?: string | undefined;
|
|
1756
|
-
top?: string | undefined;
|
|
1757
|
-
bottom?: string | undefined;
|
|
1758
|
-
title: string;
|
|
1759
|
-
description: string;
|
|
1760
|
-
imageSource: string;
|
|
1761
|
-
backButtonClick: () => void;
|
|
1762
|
-
nextButtonType: string;
|
|
1763
|
-
nextButtonText: string;
|
|
1764
|
-
nextButtonClick: () => void;
|
|
1765
|
-
backButtonType?: string | undefined;
|
|
1766
|
-
backButtonText?: string | undefined;
|
|
1767
|
-
}[];
|
|
1768
|
-
};
|
|
1769
1061
|
};
|
|
1770
1062
|
userModalState: {
|
|
1771
1063
|
Guido?: {
|
|
@@ -1775,8 +1067,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1775
1067
|
versionHistoryOnboarding?: boolean | undefined;
|
|
1776
1068
|
ampOnboarding?: boolean | undefined;
|
|
1777
1069
|
itemsOnboarding?: boolean | undefined;
|
|
1778
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
1779
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
1780
1070
|
} | undefined;
|
|
1781
1071
|
};
|
|
1782
1072
|
isFetched: boolean;
|
|
@@ -1797,7 +1087,7 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1797
1087
|
backButtonType?: string | undefined;
|
|
1798
1088
|
backButtonText?: string | undefined;
|
|
1799
1089
|
};
|
|
1800
|
-
|
|
1090
|
+
getItemsCurrentCard: (state: {
|
|
1801
1091
|
onboardings: {
|
|
1802
1092
|
newVersionPopup: {
|
|
1803
1093
|
cardIndex: number;
|
|
@@ -1925,48 +1215,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1925
1215
|
backButtonText?: string | undefined;
|
|
1926
1216
|
}[];
|
|
1927
1217
|
};
|
|
1928
|
-
recommendationStrategyOnboarding: {
|
|
1929
|
-
cardIndex: number;
|
|
1930
|
-
isActive: boolean;
|
|
1931
|
-
config: {
|
|
1932
|
-
classes: string;
|
|
1933
|
-
position: string;
|
|
1934
|
-
left?: string | undefined;
|
|
1935
|
-
right?: string | undefined;
|
|
1936
|
-
top?: string | undefined;
|
|
1937
|
-
bottom?: string | undefined;
|
|
1938
|
-
title: string;
|
|
1939
|
-
description: string;
|
|
1940
|
-
imageSource: string;
|
|
1941
|
-
backButtonClick: () => void;
|
|
1942
|
-
nextButtonType: string;
|
|
1943
|
-
nextButtonText: string;
|
|
1944
|
-
nextButtonClick: () => void;
|
|
1945
|
-
backButtonType?: string | undefined;
|
|
1946
|
-
backButtonText?: string | undefined;
|
|
1947
|
-
}[];
|
|
1948
|
-
};
|
|
1949
|
-
recommendationLegacyStrategyOnboarding: {
|
|
1950
|
-
cardIndex: number;
|
|
1951
|
-
isActive: boolean;
|
|
1952
|
-
config: {
|
|
1953
|
-
classes: string;
|
|
1954
|
-
position: string;
|
|
1955
|
-
left?: string | undefined;
|
|
1956
|
-
right?: string | undefined;
|
|
1957
|
-
top?: string | undefined;
|
|
1958
|
-
bottom?: string | undefined;
|
|
1959
|
-
title: string;
|
|
1960
|
-
description: string;
|
|
1961
|
-
imageSource: string;
|
|
1962
|
-
backButtonClick: () => void;
|
|
1963
|
-
nextButtonType: string;
|
|
1964
|
-
nextButtonText: string;
|
|
1965
|
-
nextButtonClick: () => void;
|
|
1966
|
-
backButtonType?: string | undefined;
|
|
1967
|
-
backButtonText?: string | undefined;
|
|
1968
|
-
}[];
|
|
1969
|
-
};
|
|
1970
1218
|
};
|
|
1971
1219
|
userModalState: {
|
|
1972
1220
|
Guido?: {
|
|
@@ -1976,8 +1224,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
1976
1224
|
versionHistoryOnboarding?: boolean | undefined;
|
|
1977
1225
|
ampOnboarding?: boolean | undefined;
|
|
1978
1226
|
itemsOnboarding?: boolean | undefined;
|
|
1979
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
1980
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
1981
1227
|
} | undefined;
|
|
1982
1228
|
};
|
|
1983
1229
|
isFetched: boolean;
|
|
@@ -2126,48 +1372,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
2126
1372
|
backButtonText?: string | undefined;
|
|
2127
1373
|
}[];
|
|
2128
1374
|
};
|
|
2129
|
-
recommendationStrategyOnboarding: {
|
|
2130
|
-
cardIndex: number;
|
|
2131
|
-
isActive: boolean;
|
|
2132
|
-
config: {
|
|
2133
|
-
classes: string;
|
|
2134
|
-
position: string;
|
|
2135
|
-
left?: string | undefined;
|
|
2136
|
-
right?: string | undefined;
|
|
2137
|
-
top?: string | undefined;
|
|
2138
|
-
bottom?: string | undefined;
|
|
2139
|
-
title: string;
|
|
2140
|
-
description: string;
|
|
2141
|
-
imageSource: string;
|
|
2142
|
-
backButtonClick: () => void;
|
|
2143
|
-
nextButtonType: string;
|
|
2144
|
-
nextButtonText: string;
|
|
2145
|
-
nextButtonClick: () => void;
|
|
2146
|
-
backButtonType?: string | undefined;
|
|
2147
|
-
backButtonText?: string | undefined;
|
|
2148
|
-
}[];
|
|
2149
|
-
};
|
|
2150
|
-
recommendationLegacyStrategyOnboarding: {
|
|
2151
|
-
cardIndex: number;
|
|
2152
|
-
isActive: boolean;
|
|
2153
|
-
config: {
|
|
2154
|
-
classes: string;
|
|
2155
|
-
position: string;
|
|
2156
|
-
left?: string | undefined;
|
|
2157
|
-
right?: string | undefined;
|
|
2158
|
-
top?: string | undefined;
|
|
2159
|
-
bottom?: string | undefined;
|
|
2160
|
-
title: string;
|
|
2161
|
-
description: string;
|
|
2162
|
-
imageSource: string;
|
|
2163
|
-
backButtonClick: () => void;
|
|
2164
|
-
nextButtonType: string;
|
|
2165
|
-
nextButtonText: string;
|
|
2166
|
-
nextButtonClick: () => void;
|
|
2167
|
-
backButtonType?: string | undefined;
|
|
2168
|
-
backButtonText?: string | undefined;
|
|
2169
|
-
}[];
|
|
2170
|
-
};
|
|
2171
1375
|
};
|
|
2172
1376
|
userModalState: {
|
|
2173
1377
|
Guido?: {
|
|
@@ -2177,8 +1381,6 @@ export declare const useOnboardingStore: import("pinia").StoreDefinition<"guidoO
|
|
|
2177
1381
|
versionHistoryOnboarding?: boolean | undefined;
|
|
2178
1382
|
ampOnboarding?: boolean | undefined;
|
|
2179
1383
|
itemsOnboarding?: boolean | undefined;
|
|
2180
|
-
recommendationStrategyOnboarding?: boolean | undefined;
|
|
2181
|
-
recommendationLegacyStrategyOnboarding?: boolean | undefined;
|
|
2182
1384
|
} | undefined;
|
|
2183
1385
|
};
|
|
2184
1386
|
isFetched: boolean;
|