@ankhorage/templates 9.0.2 → 9.1.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.
@@ -0,0 +1,977 @@
1
+ export const AUTHORED_EBANKING_MOBILE_MANIFEST = {
2
+ metadata: {
3
+ name: 'E-Banking Mobile',
4
+ slug: 'ebanking-mobile',
5
+ version: '1.0.0',
6
+ category: 'finance_money',
7
+ themeId: 'default',
8
+ },
9
+ themes: [
10
+ {
11
+ id: 'default',
12
+ name: 'Default',
13
+ light: {
14
+ primaryColor: '#047857',
15
+ harmony: 'complementary',
16
+ },
17
+ dark: {
18
+ primaryColor: '#047857',
19
+ harmony: 'complementary',
20
+ },
21
+ tokens: {
22
+ spacing: {
23
+ none: 0,
24
+ xs: 4,
25
+ s: 8,
26
+ m: 12,
27
+ l: 20,
28
+ xl: 28,
29
+ xxl: 40,
30
+ },
31
+ radii: {
32
+ none: 0,
33
+ s: 4,
34
+ m: 8,
35
+ l: 16,
36
+ full: 9999,
37
+ },
38
+ },
39
+ },
40
+ ],
41
+ activeThemeId: 'default',
42
+ splashScreen: {
43
+ backgroundColor: '#047857',
44
+ image: './assets/splash/icon.png',
45
+ imageWidth: 160,
46
+ resizeMode: 'contain',
47
+ dark: {
48
+ backgroundColor: '#047857',
49
+ image: './assets/splash/icon-dark.png',
50
+ imageWidth: 160,
51
+ resizeMode: 'contain',
52
+ },
53
+ },
54
+ infra: {
55
+ database: {
56
+ provider: 'supabase',
57
+ tier: 'dev',
58
+ },
59
+ storage: {
60
+ provider: 'auto',
61
+ buckets: ['media'],
62
+ },
63
+ secretStore: {
64
+ provider: 'supabase-vault',
65
+ },
66
+ deployment: {
67
+ target: 'minikube',
68
+ monitoring: false,
69
+ },
70
+ auth: {
71
+ provider: 'supabase',
72
+ scope: 'global',
73
+ flow: {
74
+ signInRoute: 'sign-in',
75
+ signUpRoute: 'sign-up',
76
+ signOutRoute: 'sign-out',
77
+ forgotPasswordRoute: 'forgot-password',
78
+ postSignInRoute: '/',
79
+ unauthorizedRoute: 'sign-in',
80
+ },
81
+ signIn: {
82
+ identifiers: ['email'],
83
+ },
84
+ signUp: {
85
+ requiredFields: ['email', 'password'],
86
+ optionalFields: ['firstName', 'lastName'],
87
+ signUpPolicy: 'autoSignIn',
88
+ },
89
+ profile: {
90
+ fields: ['email', 'firstName', 'lastName'],
91
+ },
92
+ },
93
+ networking: {
94
+ cdn: false,
95
+ },
96
+ modules: [],
97
+ },
98
+ settings: {
99
+ localization: {
100
+ defaultLocale: 'en',
101
+ locales: ['en'],
102
+ },
103
+ },
104
+ navigator: {
105
+ type: 'tabs',
106
+ initialRouteName: 'home',
107
+ routes: [
108
+ {
109
+ name: 'home',
110
+ screenId: 'finance-money-ebanking-home',
111
+ label: 'Home',
112
+ icon: {
113
+ provider: 'material-community',
114
+ name: 'home-outline',
115
+ },
116
+ },
117
+ {
118
+ name: 'assets',
119
+ screenId: 'finance-money-ebanking-assets',
120
+ label: 'Assets',
121
+ icon: {
122
+ provider: 'material-community',
123
+ name: 'chart-pie',
124
+ },
125
+ },
126
+ {
127
+ name: 'payments',
128
+ screenId: 'finance-money-ebanking-payments',
129
+ label: 'Payments',
130
+ icon: {
131
+ provider: 'material-community',
132
+ name: 'swap-horizontal',
133
+ },
134
+ },
135
+ {
136
+ name: 'invest',
137
+ screenId: 'finance-money-ebanking-invest',
138
+ label: 'Invest',
139
+ icon: {
140
+ provider: 'material-community',
141
+ name: 'chart-line',
142
+ },
143
+ },
144
+ {
145
+ name: 'more',
146
+ screenId: 'finance-money-ebanking-more',
147
+ label: 'More',
148
+ icon: {
149
+ provider: 'material-community',
150
+ name: 'dots-horizontal',
151
+ },
152
+ },
153
+ ],
154
+ },
155
+ screens: {
156
+ 'finance-money-ebanking-home': {
157
+ id: 'finance-money-ebanking-home',
158
+ name: 'Home',
159
+ title: 'E-banking overview',
160
+ description: 'Balances, quick actions, and upcoming activity at a glance.',
161
+ root: {
162
+ id: 'finance-money-ebanking-home-root',
163
+ type: 'Screen',
164
+ props: {
165
+ width: 'narrow',
166
+ scroll: true,
167
+ },
168
+ children: [
169
+ {
170
+ id: 'finance-money-ebanking-home-header',
171
+ type: 'SectionHeader',
172
+ props: {
173
+ eyebrow: 'Cash overview',
174
+ title: 'Good morning, Alex',
175
+ description: 'Secure view of your money and next actions.',
176
+ },
177
+ },
178
+ {
179
+ id: 'finance-money-ebanking-home-balance',
180
+ type: 'ScreenSection',
181
+ props: {
182
+ title: 'Balances',
183
+ description: 'Your current account position.',
184
+ },
185
+ children: [
186
+ {
187
+ id: 'finance-money-ebanking-home-balance-panel',
188
+ type: 'Panel',
189
+ props: {
190
+ title: 'Total balance',
191
+ description: 'Across linked accounts.',
192
+ tone: 'subtle',
193
+ },
194
+ children: [
195
+ {
196
+ id: 'finance-money-ebanking-home-total',
197
+ type: 'Card',
198
+ props: {
199
+ eyebrow: 'Balance',
200
+ title: 'Total balance',
201
+ description: 'Available cash and linked account value.',
202
+ tone: 'outline',
203
+ },
204
+ },
205
+ {
206
+ id: 'finance-money-ebanking-home-available',
207
+ type: 'Card',
208
+ props: {
209
+ eyebrow: 'Available',
210
+ title: 'Available now',
211
+ description: 'Spendable funds after pending activity.',
212
+ tone: 'outline',
213
+ },
214
+ },
215
+ ],
216
+ },
217
+ ],
218
+ },
219
+ {
220
+ id: 'finance-money-ebanking-home-actions',
221
+ type: 'ScreenSection',
222
+ props: {
223
+ title: 'Quick actions',
224
+ description: 'Common money movement tasks.',
225
+ },
226
+ children: [
227
+ {
228
+ id: 'finance-money-ebanking-home-actions-panel',
229
+ type: 'Panel',
230
+ props: {
231
+ title: 'Quick actions',
232
+ description: 'Move money with confidence.',
233
+ tone: 'subtle',
234
+ },
235
+ children: [
236
+ {
237
+ id: 'finance-money-ebanking-home-transfer',
238
+ type: 'Button',
239
+ props: {
240
+ children: 'Transfer',
241
+ color: 'primary',
242
+ variant: 'solid',
243
+ size: 'm',
244
+ },
245
+ },
246
+ {
247
+ id: 'finance-money-ebanking-home-pay',
248
+ type: 'Button',
249
+ props: {
250
+ children: 'Pay',
251
+ color: 'primary',
252
+ variant: 'solid',
253
+ size: 'm',
254
+ },
255
+ },
256
+ {
257
+ id: 'finance-money-ebanking-home-deposit',
258
+ type: 'Button',
259
+ props: {
260
+ children: 'Deposit',
261
+ color: 'primary',
262
+ variant: 'solid',
263
+ size: 'm',
264
+ },
265
+ },
266
+ ],
267
+ },
268
+ ],
269
+ },
270
+ {
271
+ id: 'finance-money-ebanking-home-upcoming',
272
+ type: 'ScreenSection',
273
+ props: {
274
+ title: 'Upcoming payments',
275
+ description: 'Scheduled obligations and due dates.',
276
+ },
277
+ children: [
278
+ {
279
+ id: 'finance-money-ebanking-home-upcoming-panel',
280
+ type: 'Panel',
281
+ props: {
282
+ title: 'Upcoming payments',
283
+ description: 'Stay ahead of bills.',
284
+ tone: 'subtle',
285
+ },
286
+ children: [
287
+ {
288
+ id: 'finance-money-ebanking-home-rent',
289
+ type: 'Card',
290
+ props: {
291
+ eyebrow: 'Due soon',
292
+ title: 'Rent',
293
+ description: 'Due May 25.',
294
+ tone: 'outline',
295
+ },
296
+ },
297
+ {
298
+ id: 'finance-money-ebanking-home-internet',
299
+ type: 'Card',
300
+ props: {
301
+ eyebrow: 'Upcoming',
302
+ title: 'Internet',
303
+ description: 'Due May 28.',
304
+ tone: 'outline',
305
+ },
306
+ },
307
+ ],
308
+ },
309
+ ],
310
+ },
311
+ {
312
+ id: 'finance-money-ebanking-home-activity',
313
+ type: 'ScreenSection',
314
+ props: {
315
+ title: 'Recent activity',
316
+ description: 'Latest account movements.',
317
+ },
318
+ children: [
319
+ {
320
+ id: 'finance-money-ebanking-home-activity-panel',
321
+ type: 'Panel',
322
+ props: {
323
+ title: 'Recent activity',
324
+ description: 'Review transactions and status.',
325
+ tone: 'subtle',
326
+ },
327
+ children: [
328
+ {
329
+ id: 'finance-money-ebanking-home-whole-foods',
330
+ type: 'Card',
331
+ props: {
332
+ eyebrow: 'Card',
333
+ title: 'Whole Foods Market',
334
+ description: 'Pending card purchase.',
335
+ tone: 'outline',
336
+ },
337
+ },
338
+ {
339
+ id: 'finance-money-ebanking-home-payroll',
340
+ type: 'Card',
341
+ props: {
342
+ eyebrow: 'Deposit',
343
+ title: 'Employer payroll',
344
+ description: 'Completed incoming payment.',
345
+ tone: 'outline',
346
+ },
347
+ },
348
+ ],
349
+ },
350
+ ],
351
+ },
352
+ ],
353
+ },
354
+ },
355
+ 'finance-money-ebanking-assets': {
356
+ id: 'finance-money-ebanking-assets',
357
+ name: 'Assets',
358
+ title: 'Assets',
359
+ description: 'Net worth, account allocation, and linked accounts.',
360
+ root: {
361
+ id: 'finance-money-ebanking-assets-root',
362
+ type: 'Screen',
363
+ props: {
364
+ width: 'narrow',
365
+ scroll: true,
366
+ },
367
+ children: [
368
+ {
369
+ id: 'finance-money-ebanking-assets-header',
370
+ type: 'SectionHeader',
371
+ props: {
372
+ eyebrow: 'Portfolio',
373
+ title: 'Assets',
374
+ description: 'See how your money is distributed.',
375
+ },
376
+ },
377
+ {
378
+ id: 'finance-money-ebanking-assets-net-worth',
379
+ type: 'ScreenSection',
380
+ props: {
381
+ title: 'Net worth',
382
+ description: 'Total value across your accounts.',
383
+ },
384
+ children: [
385
+ {
386
+ id: 'finance-money-ebanking-assets-net-worth-panel',
387
+ type: 'Panel',
388
+ props: {
389
+ title: 'Net worth',
390
+ description: 'A clear total with allocation context.',
391
+ tone: 'subtle',
392
+ },
393
+ children: [
394
+ {
395
+ id: 'finance-money-ebanking-assets-net-worth-card',
396
+ type: 'Card',
397
+ props: {
398
+ eyebrow: 'Total',
399
+ title: 'Net worth',
400
+ description: 'Current value across linked assets.',
401
+ tone: 'outline',
402
+ },
403
+ },
404
+ ],
405
+ },
406
+ ],
407
+ },
408
+ {
409
+ id: 'finance-money-ebanking-assets-allocation',
410
+ type: 'ScreenSection',
411
+ props: {
412
+ title: 'Allocation',
413
+ description: 'A measured view of account distribution.',
414
+ },
415
+ children: [
416
+ {
417
+ id: 'finance-money-ebanking-assets-allocation-panel',
418
+ type: 'Panel',
419
+ props: {
420
+ title: 'Allocation',
421
+ description: 'Checking, savings, and credit composition.',
422
+ tone: 'subtle',
423
+ },
424
+ children: [
425
+ {
426
+ id: 'finance-money-ebanking-assets-checking',
427
+ type: 'Card',
428
+ props: {
429
+ eyebrow: 'Checking',
430
+ title: 'Checking',
431
+ description: 'Primary spending account.',
432
+ tone: 'outline',
433
+ },
434
+ },
435
+ {
436
+ id: 'finance-money-ebanking-assets-savings',
437
+ type: 'Card',
438
+ props: {
439
+ eyebrow: 'Savings',
440
+ title: 'Savings',
441
+ description: 'Emergency fund and goals.',
442
+ tone: 'outline',
443
+ },
444
+ },
445
+ {
446
+ id: 'finance-money-ebanking-assets-credit',
447
+ type: 'Card',
448
+ props: {
449
+ eyebrow: 'Credit',
450
+ title: 'Credit',
451
+ description: 'Outstanding credit position.',
452
+ tone: 'outline',
453
+ },
454
+ },
455
+ ],
456
+ },
457
+ ],
458
+ },
459
+ {
460
+ id: 'finance-money-ebanking-assets-accounts',
461
+ type: 'ScreenSection',
462
+ props: {
463
+ title: 'Accounts',
464
+ description: 'Manage linked accounts.',
465
+ },
466
+ children: [
467
+ {
468
+ id: 'finance-money-ebanking-assets-accounts-panel',
469
+ type: 'Panel',
470
+ props: {
471
+ title: 'Linked accounts',
472
+ description: 'Review balances and account health.',
473
+ tone: 'subtle',
474
+ },
475
+ children: [
476
+ {
477
+ id: 'finance-money-ebanking-assets-add',
478
+ type: 'Button',
479
+ props: {
480
+ children: 'Add account',
481
+ color: 'primary',
482
+ variant: 'outline',
483
+ size: 'm',
484
+ },
485
+ },
486
+ ],
487
+ },
488
+ ],
489
+ },
490
+ ],
491
+ },
492
+ },
493
+ 'finance-money-ebanking-payments': {
494
+ id: 'finance-money-ebanking-payments',
495
+ name: 'Payments',
496
+ title: 'Payments',
497
+ description: 'Transfer funds, pay bills, and review scheduled payments.',
498
+ root: {
499
+ id: 'finance-money-ebanking-payments-root',
500
+ type: 'Screen',
501
+ props: {
502
+ width: 'narrow',
503
+ scroll: true,
504
+ },
505
+ children: [
506
+ {
507
+ id: 'finance-money-ebanking-payments-header',
508
+ type: 'SectionHeader',
509
+ props: {
510
+ eyebrow: 'Money movement',
511
+ title: 'Payments',
512
+ description: 'Send and schedule payments securely.',
513
+ },
514
+ },
515
+ {
516
+ id: 'finance-money-ebanking-payments-actions',
517
+ type: 'ScreenSection',
518
+ props: {
519
+ title: 'Actions',
520
+ description: 'Start a payment flow.',
521
+ },
522
+ children: [
523
+ {
524
+ id: 'finance-money-ebanking-payments-actions-panel',
525
+ type: 'Panel',
526
+ props: {
527
+ title: 'Payment actions',
528
+ description: 'Choose a guarded action.',
529
+ tone: 'subtle',
530
+ },
531
+ children: [
532
+ {
533
+ id: 'finance-money-ebanking-payments-transfer',
534
+ type: 'Button',
535
+ props: {
536
+ children: 'Transfer',
537
+ color: 'primary',
538
+ variant: 'solid',
539
+ size: 'm',
540
+ },
541
+ },
542
+ {
543
+ id: 'finance-money-ebanking-payments-bill',
544
+ type: 'Button',
545
+ props: {
546
+ children: 'Pay a bill',
547
+ color: 'secondary',
548
+ variant: 'outline',
549
+ size: 'm',
550
+ },
551
+ },
552
+ ],
553
+ },
554
+ ],
555
+ },
556
+ {
557
+ id: 'finance-money-ebanking-payments-scheduled',
558
+ type: 'ScreenSection',
559
+ props: {
560
+ title: 'Scheduled payments',
561
+ description: 'Upcoming obligations and recurring payments.',
562
+ },
563
+ children: [
564
+ {
565
+ id: 'finance-money-ebanking-payments-scheduled-panel',
566
+ type: 'Panel',
567
+ props: {
568
+ title: 'Scheduled payments',
569
+ description: 'Rent, utilities, and subscriptions.',
570
+ tone: 'subtle',
571
+ },
572
+ children: [
573
+ {
574
+ id: 'finance-money-ebanking-payments-rent',
575
+ type: 'Card',
576
+ props: {
577
+ eyebrow: 'Scheduled',
578
+ title: 'Rent payment',
579
+ description: 'Due May 25.',
580
+ tone: 'outline',
581
+ },
582
+ },
583
+ {
584
+ id: 'finance-money-ebanking-payments-hydro',
585
+ type: 'Card',
586
+ props: {
587
+ eyebrow: 'Scheduled',
588
+ title: 'Hydro bill',
589
+ description: 'Due May 28.',
590
+ tone: 'outline',
591
+ },
592
+ },
593
+ {
594
+ id: 'finance-money-ebanking-payments-mobile',
595
+ type: 'Card',
596
+ props: {
597
+ eyebrow: 'Scheduled',
598
+ title: 'Mobile plan',
599
+ description: 'Due May 30.',
600
+ tone: 'outline',
601
+ },
602
+ },
603
+ ],
604
+ },
605
+ ],
606
+ },
607
+ {
608
+ id: 'finance-money-ebanking-payments-recipients',
609
+ type: 'ScreenSection',
610
+ props: {
611
+ title: 'Recent recipients',
612
+ description: 'Trusted destinations for faster transfers.',
613
+ },
614
+ children: [
615
+ {
616
+ id: 'finance-money-ebanking-payments-recipients-panel',
617
+ type: 'Panel',
618
+ props: {
619
+ title: 'Recent recipients',
620
+ description: 'Review recipients before sending.',
621
+ tone: 'subtle',
622
+ },
623
+ children: [
624
+ {
625
+ id: 'finance-money-ebanking-payments-james',
626
+ type: 'Card',
627
+ props: {
628
+ eyebrow: 'Recipient',
629
+ title: 'James Miller',
630
+ description: 'Verified recipient.',
631
+ tone: 'outline',
632
+ },
633
+ },
634
+ {
635
+ id: 'finance-money-ebanking-payments-sophia',
636
+ type: 'Card',
637
+ props: {
638
+ eyebrow: 'Recipient',
639
+ title: 'Sophia Patel',
640
+ description: 'Verified recipient.',
641
+ tone: 'outline',
642
+ },
643
+ },
644
+ ],
645
+ },
646
+ ],
647
+ },
648
+ ],
649
+ },
650
+ },
651
+ 'finance-money-ebanking-invest': {
652
+ id: 'finance-money-ebanking-invest',
653
+ name: 'Invest',
654
+ title: 'Invest',
655
+ description: 'Portfolio value, returns, and diversified holdings.',
656
+ root: {
657
+ id: 'finance-money-ebanking-invest-root',
658
+ type: 'Screen',
659
+ props: {
660
+ width: 'narrow',
661
+ scroll: true,
662
+ },
663
+ children: [
664
+ {
665
+ id: 'finance-money-ebanking-invest-header',
666
+ type: 'SectionHeader',
667
+ props: {
668
+ eyebrow: 'Portfolio',
669
+ title: 'Invest',
670
+ description: 'Track long-term progress with measured context.',
671
+ },
672
+ },
673
+ {
674
+ id: 'finance-money-ebanking-invest-portfolio',
675
+ type: 'ScreenSection',
676
+ props: {
677
+ title: 'Portfolio value',
678
+ description: 'Performance over time.',
679
+ },
680
+ children: [
681
+ {
682
+ id: 'finance-money-ebanking-invest-portfolio-panel',
683
+ type: 'Panel',
684
+ props: {
685
+ title: 'Portfolio value',
686
+ description: 'Choose a reporting period.',
687
+ tone: 'subtle',
688
+ },
689
+ children: [
690
+ {
691
+ id: 'finance-money-ebanking-invest-value',
692
+ type: 'Card',
693
+ props: {
694
+ eyebrow: 'Value',
695
+ title: 'Portfolio value',
696
+ description: 'Value as of today.',
697
+ tone: 'outline',
698
+ },
699
+ },
700
+ {
701
+ id: 'finance-money-ebanking-invest-range',
702
+ type: 'Button',
703
+ props: {
704
+ children: '1M',
705
+ color: 'neutral',
706
+ variant: 'outline',
707
+ size: 'm',
708
+ },
709
+ },
710
+ {
711
+ id: 'finance-money-ebanking-invest-range6',
712
+ type: 'Button',
713
+ props: {
714
+ children: '6M',
715
+ color: 'neutral',
716
+ variant: 'outline',
717
+ size: 'm',
718
+ },
719
+ },
720
+ {
721
+ id: 'finance-money-ebanking-invest-range1y',
722
+ type: 'Button',
723
+ props: {
724
+ children: '1Y',
725
+ color: 'primary',
726
+ variant: 'solid',
727
+ size: 'm',
728
+ },
729
+ },
730
+ ],
731
+ },
732
+ ],
733
+ },
734
+ {
735
+ id: 'finance-money-ebanking-invest-return',
736
+ type: 'ScreenSection',
737
+ props: {
738
+ title: 'Return',
739
+ description: 'Performance summary.',
740
+ },
741
+ children: [
742
+ {
743
+ id: 'finance-money-ebanking-invest-return-panel',
744
+ type: 'Panel',
745
+ props: {
746
+ title: 'Return',
747
+ description: 'Separate return from principal.',
748
+ tone: 'subtle',
749
+ },
750
+ children: [
751
+ {
752
+ id: 'finance-money-ebanking-invest-return-card',
753
+ type: 'Card',
754
+ props: {
755
+ eyebrow: 'Performance',
756
+ title: 'Return',
757
+ description: 'Past-year return.',
758
+ tone: 'outline',
759
+ },
760
+ },
761
+ ],
762
+ },
763
+ ],
764
+ },
765
+ {
766
+ id: 'finance-money-ebanking-invest-holdings',
767
+ type: 'ScreenSection',
768
+ props: {
769
+ title: 'Holdings',
770
+ description: 'Diversified positions at a glance.',
771
+ },
772
+ children: [
773
+ {
774
+ id: 'finance-money-ebanking-invest-holdings-panel',
775
+ type: 'Panel',
776
+ props: {
777
+ title: 'Holdings',
778
+ description: 'Stocks, bonds, and cash equivalents.',
779
+ tone: 'subtle',
780
+ },
781
+ children: [
782
+ {
783
+ id: 'finance-money-ebanking-invest-us',
784
+ type: 'Card',
785
+ props: {
786
+ eyebrow: 'Stocks',
787
+ title: 'U.S. stocks',
788
+ description: 'Diversified equity position.',
789
+ tone: 'outline',
790
+ },
791
+ },
792
+ {
793
+ id: 'finance-money-ebanking-invest-intl',
794
+ type: 'Card',
795
+ props: {
796
+ eyebrow: 'Stocks',
797
+ title: 'International stocks',
798
+ description: 'Global equity position.',
799
+ tone: 'outline',
800
+ },
801
+ },
802
+ {
803
+ id: 'finance-money-ebanking-invest-bonds',
804
+ type: 'Card',
805
+ props: {
806
+ eyebrow: 'Bonds',
807
+ title: 'Bonds',
808
+ description: 'Stability allocation.',
809
+ tone: 'outline',
810
+ },
811
+ },
812
+ {
813
+ id: 'finance-money-ebanking-invest-cash',
814
+ type: 'Card',
815
+ props: {
816
+ eyebrow: 'Cash',
817
+ title: 'Cash & cash equivalents',
818
+ description: 'Liquidity reserve.',
819
+ tone: 'outline',
820
+ },
821
+ },
822
+ ],
823
+ },
824
+ ],
825
+ },
826
+ {
827
+ id: 'finance-money-ebanking-invest-browse',
828
+ type: 'Button',
829
+ props: {
830
+ children: 'Browse investments',
831
+ color: 'primary',
832
+ variant: 'outline',
833
+ size: 'm',
834
+ },
835
+ },
836
+ ],
837
+ },
838
+ },
839
+ 'finance-money-ebanking-more': {
840
+ id: 'finance-money-ebanking-more',
841
+ name: 'More',
842
+ title: 'More',
843
+ description: 'Profile, security, support, and account preferences.',
844
+ root: {
845
+ id: 'finance-money-ebanking-more-root',
846
+ type: 'Screen',
847
+ props: {
848
+ width: 'narrow',
849
+ scroll: true,
850
+ },
851
+ children: [
852
+ {
853
+ id: 'finance-money-ebanking-more-header',
854
+ type: 'SectionHeader',
855
+ props: {
856
+ eyebrow: 'Account',
857
+ title: 'More',
858
+ description: 'Manage your profile and security.',
859
+ },
860
+ },
861
+ {
862
+ id: 'finance-money-ebanking-more-profile',
863
+ type: 'ScreenSection',
864
+ props: {
865
+ title: 'Profile & security',
866
+ description: 'Keep account access visible and protected.',
867
+ },
868
+ children: [
869
+ {
870
+ id: 'finance-money-ebanking-more-profile-panel',
871
+ type: 'Panel',
872
+ props: {
873
+ title: 'Profile',
874
+ description: 'Your profile and security status.',
875
+ tone: 'subtle',
876
+ },
877
+ children: [
878
+ {
879
+ id: 'finance-money-ebanking-more-profile-card',
880
+ type: 'Card',
881
+ props: {
882
+ eyebrow: 'Profile',
883
+ title: 'Welcome back',
884
+ description: 'Review your profile.',
885
+ tone: 'outline',
886
+ },
887
+ },
888
+ {
889
+ id: 'finance-money-ebanking-more-secure',
890
+ type: 'Notice',
891
+ props: {
892
+ title: 'Your account is secure',
893
+ description: 'We are monitoring your account and will notify you of important activity.',
894
+ color: 'success',
895
+ },
896
+ },
897
+ ],
898
+ },
899
+ ],
900
+ },
901
+ {
902
+ id: 'finance-money-ebanking-more-settings',
903
+ type: 'ScreenSection',
904
+ props: {
905
+ title: 'Settings',
906
+ description: 'Manage preferences and trusted access.',
907
+ },
908
+ children: [
909
+ {
910
+ id: 'finance-money-ebanking-more-settings-panel',
911
+ type: 'Panel',
912
+ props: {
913
+ title: 'Settings',
914
+ description: 'Common account controls.',
915
+ tone: 'subtle',
916
+ },
917
+ children: [
918
+ {
919
+ id: 'finance-money-ebanking-more-security',
920
+ type: 'Card',
921
+ props: {
922
+ eyebrow: 'Security',
923
+ title: 'Security',
924
+ description: 'Passcode and device controls.',
925
+ tone: 'outline',
926
+ },
927
+ },
928
+ {
929
+ id: 'finance-money-ebanking-more-notifications',
930
+ type: 'Card',
931
+ props: {
932
+ eyebrow: 'Notifications',
933
+ title: 'Notifications',
934
+ description: 'Alerts and delivery preferences.',
935
+ tone: 'outline',
936
+ },
937
+ },
938
+ {
939
+ id: 'finance-money-ebanking-more-beneficiaries',
940
+ type: 'Card',
941
+ props: {
942
+ eyebrow: 'Beneficiaries',
943
+ title: 'Beneficiaries',
944
+ description: 'Manage trusted recipients.',
945
+ tone: 'outline',
946
+ },
947
+ },
948
+ {
949
+ id: 'finance-money-ebanking-more-help',
950
+ type: 'Card',
951
+ props: {
952
+ eyebrow: 'Support',
953
+ title: 'Help and support',
954
+ description: 'Get assistance.',
955
+ tone: 'outline',
956
+ },
957
+ },
958
+ ],
959
+ },
960
+ ],
961
+ },
962
+ {
963
+ id: 'finance-money-ebanking-more-signout',
964
+ type: 'Button',
965
+ props: {
966
+ children: 'Sign out',
967
+ color: 'secondary',
968
+ variant: 'outline',
969
+ size: 'm',
970
+ },
971
+ },
972
+ ],
973
+ },
974
+ },
975
+ },
976
+ };
977
+ //# sourceMappingURL=manifest.js.map