pangea-lib 2.12.69 → 2.12.71
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/main.cjs.js +96 -55
- package/dist/main.css +6 -1
- package/dist/main.es.js +36015 -27880
- package/dist/types/components/PgaEditor.vue.d.ts +31 -0
- package/dist/types/components/PgaSpinner.vue.d.ts +2 -0
- package/dist/types/components/_i18n/pga-editor.i18n.d.ts +7 -0
- package/dist/types/components/display/PgaDisplayText.vue.d.ts +19 -3
- package/dist/types/components/form/PgaFormButton.vue.d.ts +21 -0
- package/dist/types/components/form/PgaFormSubtitle.vue.d.ts +17 -0
- package/dist/types/components/index.d.ts +3 -0
- package/dist/types/i18n/i18n.d.ts +559 -1
- package/dist/types/i18n/messages/index.d.ts +6 -0
- package/package.json +3 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnectionsError" | "apiConnectionsSuccess" | "pgaDisplayNoItems" | "pgaInputFile" | "pgaInputGroup" | "pgaLoginForm" | "pgaSelect" | "pgaVueDatePicker" | "pgaImage" | "pgaButton" | "pgaLayout" | "pgaModal" | "pgaTable" | "notifications" | "validations", MP extends ({
|
|
1
|
+
export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnectionsError" | "apiConnectionsSuccess" | "pgaDisplayNoItems" | "pgaInputFile" | "pgaInputGroup" | "pgaLoginForm" | "pgaSelect" | "pgaVueDatePicker" | "pgaImage" | "pgaButton" | "pgaEditor" | "pgaLayout" | "pgaModal" | "pgaTable" | "notifications" | "validations", MP extends ({
|
|
2
2
|
authHelpers: {
|
|
3
3
|
es: {
|
|
4
4
|
successfulLogout: string;
|
|
@@ -77,6 +77,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
77
77
|
logoutBtn: string;
|
|
78
78
|
};
|
|
79
79
|
};
|
|
80
|
+
pgaEditor: {
|
|
81
|
+
es: {
|
|
82
|
+
savedMsg: string;
|
|
83
|
+
saveErrorMsg: string;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
80
86
|
pgaLayout: {
|
|
81
87
|
es: {
|
|
82
88
|
header: {
|
|
@@ -203,6 +209,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
203
209
|
logoutBtn: string;
|
|
204
210
|
};
|
|
205
211
|
};
|
|
212
|
+
pgaEditor: {
|
|
213
|
+
es: {
|
|
214
|
+
savedMsg: string;
|
|
215
|
+
saveErrorMsg: string;
|
|
216
|
+
};
|
|
217
|
+
};
|
|
206
218
|
pgaLayout: {
|
|
207
219
|
es: {
|
|
208
220
|
header: {
|
|
@@ -329,6 +341,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
329
341
|
logoutBtn: string;
|
|
330
342
|
};
|
|
331
343
|
};
|
|
344
|
+
pgaEditor: {
|
|
345
|
+
es: {
|
|
346
|
+
savedMsg: string;
|
|
347
|
+
saveErrorMsg: string;
|
|
348
|
+
};
|
|
349
|
+
};
|
|
332
350
|
pgaLayout: {
|
|
333
351
|
es: {
|
|
334
352
|
header: {
|
|
@@ -455,6 +473,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
455
473
|
logoutBtn: string;
|
|
456
474
|
};
|
|
457
475
|
};
|
|
476
|
+
pgaEditor: {
|
|
477
|
+
es: {
|
|
478
|
+
savedMsg: string;
|
|
479
|
+
saveErrorMsg: string;
|
|
480
|
+
};
|
|
481
|
+
};
|
|
458
482
|
pgaLayout: {
|
|
459
483
|
es: {
|
|
460
484
|
header: {
|
|
@@ -581,6 +605,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
581
605
|
logoutBtn: string;
|
|
582
606
|
};
|
|
583
607
|
};
|
|
608
|
+
pgaEditor: {
|
|
609
|
+
es: {
|
|
610
|
+
savedMsg: string;
|
|
611
|
+
saveErrorMsg: string;
|
|
612
|
+
};
|
|
613
|
+
};
|
|
584
614
|
pgaLayout: {
|
|
585
615
|
es: {
|
|
586
616
|
header: {
|
|
@@ -707,6 +737,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
707
737
|
logoutBtn: string;
|
|
708
738
|
};
|
|
709
739
|
};
|
|
740
|
+
pgaEditor: {
|
|
741
|
+
es: {
|
|
742
|
+
savedMsg: string;
|
|
743
|
+
saveErrorMsg: string;
|
|
744
|
+
};
|
|
745
|
+
};
|
|
710
746
|
pgaLayout: {
|
|
711
747
|
es: {
|
|
712
748
|
header: {
|
|
@@ -833,6 +869,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
833
869
|
logoutBtn: string;
|
|
834
870
|
};
|
|
835
871
|
};
|
|
872
|
+
pgaEditor: {
|
|
873
|
+
es: {
|
|
874
|
+
savedMsg: string;
|
|
875
|
+
saveErrorMsg: string;
|
|
876
|
+
};
|
|
877
|
+
};
|
|
836
878
|
pgaLayout: {
|
|
837
879
|
es: {
|
|
838
880
|
header: {
|
|
@@ -959,6 +1001,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
959
1001
|
logoutBtn: string;
|
|
960
1002
|
};
|
|
961
1003
|
};
|
|
1004
|
+
pgaEditor: {
|
|
1005
|
+
es: {
|
|
1006
|
+
savedMsg: string;
|
|
1007
|
+
saveErrorMsg: string;
|
|
1008
|
+
};
|
|
1009
|
+
};
|
|
962
1010
|
pgaLayout: {
|
|
963
1011
|
es: {
|
|
964
1012
|
header: {
|
|
@@ -1085,6 +1133,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
1085
1133
|
logoutBtn: string;
|
|
1086
1134
|
};
|
|
1087
1135
|
};
|
|
1136
|
+
pgaEditor: {
|
|
1137
|
+
es: {
|
|
1138
|
+
savedMsg: string;
|
|
1139
|
+
saveErrorMsg: string;
|
|
1140
|
+
};
|
|
1141
|
+
};
|
|
1088
1142
|
pgaLayout: {
|
|
1089
1143
|
es: {
|
|
1090
1144
|
header: {
|
|
@@ -1211,6 +1265,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
1211
1265
|
logoutBtn: string;
|
|
1212
1266
|
};
|
|
1213
1267
|
};
|
|
1268
|
+
pgaEditor: {
|
|
1269
|
+
es: {
|
|
1270
|
+
savedMsg: string;
|
|
1271
|
+
saveErrorMsg: string;
|
|
1272
|
+
};
|
|
1273
|
+
};
|
|
1214
1274
|
pgaLayout: {
|
|
1215
1275
|
es: {
|
|
1216
1276
|
header: {
|
|
@@ -1337,6 +1397,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
1337
1397
|
logoutBtn: string;
|
|
1338
1398
|
};
|
|
1339
1399
|
};
|
|
1400
|
+
pgaEditor: {
|
|
1401
|
+
es: {
|
|
1402
|
+
savedMsg: string;
|
|
1403
|
+
saveErrorMsg: string;
|
|
1404
|
+
};
|
|
1405
|
+
};
|
|
1340
1406
|
pgaLayout: {
|
|
1341
1407
|
es: {
|
|
1342
1408
|
header: {
|
|
@@ -1463,6 +1529,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
1463
1529
|
logoutBtn: string;
|
|
1464
1530
|
};
|
|
1465
1531
|
};
|
|
1532
|
+
pgaEditor: {
|
|
1533
|
+
es: {
|
|
1534
|
+
savedMsg: string;
|
|
1535
|
+
saveErrorMsg: string;
|
|
1536
|
+
};
|
|
1537
|
+
};
|
|
1466
1538
|
pgaLayout: {
|
|
1467
1539
|
es: {
|
|
1468
1540
|
header: {
|
|
@@ -1589,6 +1661,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
1589
1661
|
logoutBtn: string;
|
|
1590
1662
|
};
|
|
1591
1663
|
};
|
|
1664
|
+
pgaEditor: {
|
|
1665
|
+
es: {
|
|
1666
|
+
savedMsg: string;
|
|
1667
|
+
saveErrorMsg: string;
|
|
1668
|
+
};
|
|
1669
|
+
};
|
|
1592
1670
|
pgaLayout: {
|
|
1593
1671
|
es: {
|
|
1594
1672
|
header: {
|
|
@@ -1715,6 +1793,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
1715
1793
|
logoutBtn: string;
|
|
1716
1794
|
};
|
|
1717
1795
|
};
|
|
1796
|
+
pgaEditor: {
|
|
1797
|
+
es: {
|
|
1798
|
+
savedMsg: string;
|
|
1799
|
+
saveErrorMsg: string;
|
|
1800
|
+
};
|
|
1801
|
+
};
|
|
1718
1802
|
pgaLayout: {
|
|
1719
1803
|
es: {
|
|
1720
1804
|
header: {
|
|
@@ -1841,6 +1925,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
1841
1925
|
logoutBtn: string;
|
|
1842
1926
|
};
|
|
1843
1927
|
};
|
|
1928
|
+
pgaEditor: {
|
|
1929
|
+
es: {
|
|
1930
|
+
savedMsg: string;
|
|
1931
|
+
saveErrorMsg: string;
|
|
1932
|
+
};
|
|
1933
|
+
};
|
|
1844
1934
|
pgaLayout: {
|
|
1845
1935
|
es: {
|
|
1846
1936
|
header: {
|
|
@@ -1967,6 +2057,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
1967
2057
|
logoutBtn: string;
|
|
1968
2058
|
};
|
|
1969
2059
|
};
|
|
2060
|
+
pgaEditor: {
|
|
2061
|
+
es: {
|
|
2062
|
+
savedMsg: string;
|
|
2063
|
+
saveErrorMsg: string;
|
|
2064
|
+
};
|
|
2065
|
+
};
|
|
1970
2066
|
pgaLayout: {
|
|
1971
2067
|
es: {
|
|
1972
2068
|
header: {
|
|
@@ -2093,6 +2189,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
2093
2189
|
logoutBtn: string;
|
|
2094
2190
|
};
|
|
2095
2191
|
};
|
|
2192
|
+
pgaEditor: {
|
|
2193
|
+
es: {
|
|
2194
|
+
savedMsg: string;
|
|
2195
|
+
saveErrorMsg: string;
|
|
2196
|
+
};
|
|
2197
|
+
};
|
|
2096
2198
|
pgaLayout: {
|
|
2097
2199
|
es: {
|
|
2098
2200
|
header: {
|
|
@@ -2219,6 +2321,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
2219
2321
|
logoutBtn: string;
|
|
2220
2322
|
};
|
|
2221
2323
|
};
|
|
2324
|
+
pgaEditor: {
|
|
2325
|
+
es: {
|
|
2326
|
+
savedMsg: string;
|
|
2327
|
+
saveErrorMsg: string;
|
|
2328
|
+
};
|
|
2329
|
+
};
|
|
2222
2330
|
pgaLayout: {
|
|
2223
2331
|
es: {
|
|
2224
2332
|
header: {
|
|
@@ -2345,6 +2453,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
2345
2453
|
logoutBtn: string;
|
|
2346
2454
|
};
|
|
2347
2455
|
};
|
|
2456
|
+
pgaEditor: {
|
|
2457
|
+
es: {
|
|
2458
|
+
savedMsg: string;
|
|
2459
|
+
saveErrorMsg: string;
|
|
2460
|
+
};
|
|
2461
|
+
};
|
|
2348
2462
|
pgaLayout: {
|
|
2349
2463
|
es: {
|
|
2350
2464
|
header: {
|
|
@@ -2471,6 +2585,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
2471
2585
|
logoutBtn: string;
|
|
2472
2586
|
};
|
|
2473
2587
|
};
|
|
2588
|
+
pgaEditor: {
|
|
2589
|
+
es: {
|
|
2590
|
+
savedMsg: string;
|
|
2591
|
+
saveErrorMsg: string;
|
|
2592
|
+
};
|
|
2593
|
+
};
|
|
2474
2594
|
pgaLayout: {
|
|
2475
2595
|
es: {
|
|
2476
2596
|
header: {
|
|
@@ -2597,6 +2717,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
2597
2717
|
logoutBtn: string;
|
|
2598
2718
|
};
|
|
2599
2719
|
};
|
|
2720
|
+
pgaEditor: {
|
|
2721
|
+
es: {
|
|
2722
|
+
savedMsg: string;
|
|
2723
|
+
saveErrorMsg: string;
|
|
2724
|
+
};
|
|
2725
|
+
};
|
|
2600
2726
|
pgaLayout: {
|
|
2601
2727
|
es: {
|
|
2602
2728
|
header: {
|
|
@@ -2723,6 +2849,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
2723
2849
|
logoutBtn: string;
|
|
2724
2850
|
};
|
|
2725
2851
|
};
|
|
2852
|
+
pgaEditor: {
|
|
2853
|
+
es: {
|
|
2854
|
+
savedMsg: string;
|
|
2855
|
+
saveErrorMsg: string;
|
|
2856
|
+
};
|
|
2857
|
+
};
|
|
2726
2858
|
pgaLayout: {
|
|
2727
2859
|
es: {
|
|
2728
2860
|
header: {
|
|
@@ -2849,6 +2981,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
2849
2981
|
logoutBtn: string;
|
|
2850
2982
|
};
|
|
2851
2983
|
};
|
|
2984
|
+
pgaEditor: {
|
|
2985
|
+
es: {
|
|
2986
|
+
savedMsg: string;
|
|
2987
|
+
saveErrorMsg: string;
|
|
2988
|
+
};
|
|
2989
|
+
};
|
|
2852
2990
|
pgaLayout: {
|
|
2853
2991
|
es: {
|
|
2854
2992
|
header: {
|
|
@@ -2975,6 +3113,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
2975
3113
|
logoutBtn: string;
|
|
2976
3114
|
};
|
|
2977
3115
|
};
|
|
3116
|
+
pgaEditor: {
|
|
3117
|
+
es: {
|
|
3118
|
+
savedMsg: string;
|
|
3119
|
+
saveErrorMsg: string;
|
|
3120
|
+
};
|
|
3121
|
+
};
|
|
2978
3122
|
pgaLayout: {
|
|
2979
3123
|
es: {
|
|
2980
3124
|
header: {
|
|
@@ -3101,6 +3245,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
3101
3245
|
logoutBtn: string;
|
|
3102
3246
|
};
|
|
3103
3247
|
};
|
|
3248
|
+
pgaEditor: {
|
|
3249
|
+
es: {
|
|
3250
|
+
savedMsg: string;
|
|
3251
|
+
saveErrorMsg: string;
|
|
3252
|
+
};
|
|
3253
|
+
};
|
|
3104
3254
|
pgaLayout: {
|
|
3105
3255
|
es: {
|
|
3106
3256
|
header: {
|
|
@@ -3227,6 +3377,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
3227
3377
|
logoutBtn: string;
|
|
3228
3378
|
};
|
|
3229
3379
|
};
|
|
3380
|
+
pgaEditor: {
|
|
3381
|
+
es: {
|
|
3382
|
+
savedMsg: string;
|
|
3383
|
+
saveErrorMsg: string;
|
|
3384
|
+
};
|
|
3385
|
+
};
|
|
3230
3386
|
pgaLayout: {
|
|
3231
3387
|
es: {
|
|
3232
3388
|
header: {
|
|
@@ -3353,6 +3509,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
3353
3509
|
logoutBtn: string;
|
|
3354
3510
|
};
|
|
3355
3511
|
};
|
|
3512
|
+
pgaEditor: {
|
|
3513
|
+
es: {
|
|
3514
|
+
savedMsg: string;
|
|
3515
|
+
saveErrorMsg: string;
|
|
3516
|
+
};
|
|
3517
|
+
};
|
|
3356
3518
|
pgaLayout: {
|
|
3357
3519
|
es: {
|
|
3358
3520
|
header: {
|
|
@@ -3479,6 +3641,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
3479
3641
|
logoutBtn: string;
|
|
3480
3642
|
};
|
|
3481
3643
|
};
|
|
3644
|
+
pgaEditor: {
|
|
3645
|
+
es: {
|
|
3646
|
+
savedMsg: string;
|
|
3647
|
+
saveErrorMsg: string;
|
|
3648
|
+
};
|
|
3649
|
+
};
|
|
3482
3650
|
pgaLayout: {
|
|
3483
3651
|
es: {
|
|
3484
3652
|
header: {
|
|
@@ -3605,6 +3773,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
3605
3773
|
logoutBtn: string;
|
|
3606
3774
|
};
|
|
3607
3775
|
};
|
|
3776
|
+
pgaEditor: {
|
|
3777
|
+
es: {
|
|
3778
|
+
savedMsg: string;
|
|
3779
|
+
saveErrorMsg: string;
|
|
3780
|
+
};
|
|
3781
|
+
};
|
|
3608
3782
|
pgaLayout: {
|
|
3609
3783
|
es: {
|
|
3610
3784
|
header: {
|
|
@@ -3731,6 +3905,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
3731
3905
|
logoutBtn: string;
|
|
3732
3906
|
};
|
|
3733
3907
|
};
|
|
3908
|
+
pgaEditor: {
|
|
3909
|
+
es: {
|
|
3910
|
+
savedMsg: string;
|
|
3911
|
+
saveErrorMsg: string;
|
|
3912
|
+
};
|
|
3913
|
+
};
|
|
3734
3914
|
pgaLayout: {
|
|
3735
3915
|
es: {
|
|
3736
3916
|
header: {
|
|
@@ -3857,6 +4037,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
3857
4037
|
logoutBtn: string;
|
|
3858
4038
|
};
|
|
3859
4039
|
};
|
|
4040
|
+
pgaEditor: {
|
|
4041
|
+
es: {
|
|
4042
|
+
savedMsg: string;
|
|
4043
|
+
saveErrorMsg: string;
|
|
4044
|
+
};
|
|
4045
|
+
};
|
|
3860
4046
|
pgaLayout: {
|
|
3861
4047
|
es: {
|
|
3862
4048
|
header: {
|
|
@@ -3983,6 +4169,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
3983
4169
|
logoutBtn: string;
|
|
3984
4170
|
};
|
|
3985
4171
|
};
|
|
4172
|
+
pgaEditor: {
|
|
4173
|
+
es: {
|
|
4174
|
+
savedMsg: string;
|
|
4175
|
+
saveErrorMsg: string;
|
|
4176
|
+
};
|
|
4177
|
+
};
|
|
3986
4178
|
pgaLayout: {
|
|
3987
4179
|
es: {
|
|
3988
4180
|
header: {
|
|
@@ -4109,6 +4301,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
4109
4301
|
logoutBtn: string;
|
|
4110
4302
|
};
|
|
4111
4303
|
};
|
|
4304
|
+
pgaEditor: {
|
|
4305
|
+
es: {
|
|
4306
|
+
savedMsg: string;
|
|
4307
|
+
saveErrorMsg: string;
|
|
4308
|
+
};
|
|
4309
|
+
};
|
|
4112
4310
|
pgaLayout: {
|
|
4113
4311
|
es: {
|
|
4114
4312
|
header: {
|
|
@@ -4235,6 +4433,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
4235
4433
|
logoutBtn: string;
|
|
4236
4434
|
};
|
|
4237
4435
|
};
|
|
4436
|
+
pgaEditor: {
|
|
4437
|
+
es: {
|
|
4438
|
+
savedMsg: string;
|
|
4439
|
+
saveErrorMsg: string;
|
|
4440
|
+
};
|
|
4441
|
+
};
|
|
4238
4442
|
pgaLayout: {
|
|
4239
4443
|
es: {
|
|
4240
4444
|
header: {
|
|
@@ -4361,6 +4565,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
4361
4565
|
logoutBtn: string;
|
|
4362
4566
|
};
|
|
4363
4567
|
};
|
|
4568
|
+
pgaEditor: {
|
|
4569
|
+
es: {
|
|
4570
|
+
savedMsg: string;
|
|
4571
|
+
saveErrorMsg: string;
|
|
4572
|
+
};
|
|
4573
|
+
};
|
|
4364
4574
|
pgaLayout: {
|
|
4365
4575
|
es: {
|
|
4366
4576
|
header: {
|
|
@@ -4487,6 +4697,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
4487
4697
|
logoutBtn: string;
|
|
4488
4698
|
};
|
|
4489
4699
|
};
|
|
4700
|
+
pgaEditor: {
|
|
4701
|
+
es: {
|
|
4702
|
+
savedMsg: string;
|
|
4703
|
+
saveErrorMsg: string;
|
|
4704
|
+
};
|
|
4705
|
+
};
|
|
4490
4706
|
pgaLayout: {
|
|
4491
4707
|
es: {
|
|
4492
4708
|
header: {
|
|
@@ -4613,6 +4829,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
4613
4829
|
logoutBtn: string;
|
|
4614
4830
|
};
|
|
4615
4831
|
};
|
|
4832
|
+
pgaEditor: {
|
|
4833
|
+
es: {
|
|
4834
|
+
savedMsg: string;
|
|
4835
|
+
saveErrorMsg: string;
|
|
4836
|
+
};
|
|
4837
|
+
};
|
|
4616
4838
|
pgaLayout: {
|
|
4617
4839
|
es: {
|
|
4618
4840
|
header: {
|
|
@@ -4739,6 +4961,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
4739
4961
|
logoutBtn: string;
|
|
4740
4962
|
};
|
|
4741
4963
|
};
|
|
4964
|
+
pgaEditor: {
|
|
4965
|
+
es: {
|
|
4966
|
+
savedMsg: string;
|
|
4967
|
+
saveErrorMsg: string;
|
|
4968
|
+
};
|
|
4969
|
+
};
|
|
4742
4970
|
pgaLayout: {
|
|
4743
4971
|
es: {
|
|
4744
4972
|
header: {
|
|
@@ -4865,6 +5093,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
4865
5093
|
logoutBtn: string;
|
|
4866
5094
|
};
|
|
4867
5095
|
};
|
|
5096
|
+
pgaEditor: {
|
|
5097
|
+
es: {
|
|
5098
|
+
savedMsg: string;
|
|
5099
|
+
saveErrorMsg: string;
|
|
5100
|
+
};
|
|
5101
|
+
};
|
|
4868
5102
|
pgaLayout: {
|
|
4869
5103
|
es: {
|
|
4870
5104
|
header: {
|
|
@@ -4991,6 +5225,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
4991
5225
|
logoutBtn: string;
|
|
4992
5226
|
};
|
|
4993
5227
|
};
|
|
5228
|
+
pgaEditor: {
|
|
5229
|
+
es: {
|
|
5230
|
+
savedMsg: string;
|
|
5231
|
+
saveErrorMsg: string;
|
|
5232
|
+
};
|
|
5233
|
+
};
|
|
4994
5234
|
pgaLayout: {
|
|
4995
5235
|
es: {
|
|
4996
5236
|
header: {
|
|
@@ -5117,6 +5357,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
5117
5357
|
logoutBtn: string;
|
|
5118
5358
|
};
|
|
5119
5359
|
};
|
|
5360
|
+
pgaEditor: {
|
|
5361
|
+
es: {
|
|
5362
|
+
savedMsg: string;
|
|
5363
|
+
saveErrorMsg: string;
|
|
5364
|
+
};
|
|
5365
|
+
};
|
|
5120
5366
|
pgaLayout: {
|
|
5121
5367
|
es: {
|
|
5122
5368
|
header: {
|
|
@@ -5243,6 +5489,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
5243
5489
|
logoutBtn: string;
|
|
5244
5490
|
};
|
|
5245
5491
|
};
|
|
5492
|
+
pgaEditor: {
|
|
5493
|
+
es: {
|
|
5494
|
+
savedMsg: string;
|
|
5495
|
+
saveErrorMsg: string;
|
|
5496
|
+
};
|
|
5497
|
+
};
|
|
5246
5498
|
pgaLayout: {
|
|
5247
5499
|
es: {
|
|
5248
5500
|
header: {
|
|
@@ -5369,6 +5621,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
5369
5621
|
logoutBtn: string;
|
|
5370
5622
|
};
|
|
5371
5623
|
};
|
|
5624
|
+
pgaEditor: {
|
|
5625
|
+
es: {
|
|
5626
|
+
savedMsg: string;
|
|
5627
|
+
saveErrorMsg: string;
|
|
5628
|
+
};
|
|
5629
|
+
};
|
|
5372
5630
|
pgaLayout: {
|
|
5373
5631
|
es: {
|
|
5374
5632
|
header: {
|
|
@@ -5495,6 +5753,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
5495
5753
|
logoutBtn: string;
|
|
5496
5754
|
};
|
|
5497
5755
|
};
|
|
5756
|
+
pgaEditor: {
|
|
5757
|
+
es: {
|
|
5758
|
+
savedMsg: string;
|
|
5759
|
+
saveErrorMsg: string;
|
|
5760
|
+
};
|
|
5761
|
+
};
|
|
5498
5762
|
pgaLayout: {
|
|
5499
5763
|
es: {
|
|
5500
5764
|
header: {
|
|
@@ -5621,6 +5885,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
5621
5885
|
logoutBtn: string;
|
|
5622
5886
|
};
|
|
5623
5887
|
};
|
|
5888
|
+
pgaEditor: {
|
|
5889
|
+
es: {
|
|
5890
|
+
savedMsg: string;
|
|
5891
|
+
saveErrorMsg: string;
|
|
5892
|
+
};
|
|
5893
|
+
};
|
|
5624
5894
|
pgaLayout: {
|
|
5625
5895
|
es: {
|
|
5626
5896
|
header: {
|
|
@@ -5747,6 +6017,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
5747
6017
|
logoutBtn: string;
|
|
5748
6018
|
};
|
|
5749
6019
|
};
|
|
6020
|
+
pgaEditor: {
|
|
6021
|
+
es: {
|
|
6022
|
+
savedMsg: string;
|
|
6023
|
+
saveErrorMsg: string;
|
|
6024
|
+
};
|
|
6025
|
+
};
|
|
5750
6026
|
pgaLayout: {
|
|
5751
6027
|
es: {
|
|
5752
6028
|
header: {
|
|
@@ -5873,6 +6149,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
5873
6149
|
logoutBtn: string;
|
|
5874
6150
|
};
|
|
5875
6151
|
};
|
|
6152
|
+
pgaEditor: {
|
|
6153
|
+
es: {
|
|
6154
|
+
savedMsg: string;
|
|
6155
|
+
saveErrorMsg: string;
|
|
6156
|
+
};
|
|
6157
|
+
};
|
|
5876
6158
|
pgaLayout: {
|
|
5877
6159
|
es: {
|
|
5878
6160
|
header: {
|
|
@@ -5999,6 +6281,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
5999
6281
|
logoutBtn: string;
|
|
6000
6282
|
};
|
|
6001
6283
|
};
|
|
6284
|
+
pgaEditor: {
|
|
6285
|
+
es: {
|
|
6286
|
+
savedMsg: string;
|
|
6287
|
+
saveErrorMsg: string;
|
|
6288
|
+
};
|
|
6289
|
+
};
|
|
6002
6290
|
pgaLayout: {
|
|
6003
6291
|
es: {
|
|
6004
6292
|
header: {
|
|
@@ -6125,6 +6413,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
6125
6413
|
logoutBtn: string;
|
|
6126
6414
|
};
|
|
6127
6415
|
};
|
|
6416
|
+
pgaEditor: {
|
|
6417
|
+
es: {
|
|
6418
|
+
savedMsg: string;
|
|
6419
|
+
saveErrorMsg: string;
|
|
6420
|
+
};
|
|
6421
|
+
};
|
|
6128
6422
|
pgaLayout: {
|
|
6129
6423
|
es: {
|
|
6130
6424
|
header: {
|
|
@@ -6251,6 +6545,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
6251
6545
|
logoutBtn: string;
|
|
6252
6546
|
};
|
|
6253
6547
|
};
|
|
6548
|
+
pgaEditor: {
|
|
6549
|
+
es: {
|
|
6550
|
+
savedMsg: string;
|
|
6551
|
+
saveErrorMsg: string;
|
|
6552
|
+
};
|
|
6553
|
+
};
|
|
6254
6554
|
pgaLayout: {
|
|
6255
6555
|
es: {
|
|
6256
6556
|
header: {
|
|
@@ -6377,6 +6677,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
6377
6677
|
logoutBtn: string;
|
|
6378
6678
|
};
|
|
6379
6679
|
};
|
|
6680
|
+
pgaEditor: {
|
|
6681
|
+
es: {
|
|
6682
|
+
savedMsg: string;
|
|
6683
|
+
saveErrorMsg: string;
|
|
6684
|
+
};
|
|
6685
|
+
};
|
|
6380
6686
|
pgaLayout: {
|
|
6381
6687
|
es: {
|
|
6382
6688
|
header: {
|
|
@@ -6503,6 +6809,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
6503
6809
|
logoutBtn: string;
|
|
6504
6810
|
};
|
|
6505
6811
|
};
|
|
6812
|
+
pgaEditor: {
|
|
6813
|
+
es: {
|
|
6814
|
+
savedMsg: string;
|
|
6815
|
+
saveErrorMsg: string;
|
|
6816
|
+
};
|
|
6817
|
+
};
|
|
6506
6818
|
pgaLayout: {
|
|
6507
6819
|
es: {
|
|
6508
6820
|
header: {
|
|
@@ -6629,6 +6941,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
6629
6941
|
logoutBtn: string;
|
|
6630
6942
|
};
|
|
6631
6943
|
};
|
|
6944
|
+
pgaEditor: {
|
|
6945
|
+
es: {
|
|
6946
|
+
savedMsg: string;
|
|
6947
|
+
saveErrorMsg: string;
|
|
6948
|
+
};
|
|
6949
|
+
};
|
|
6632
6950
|
pgaLayout: {
|
|
6633
6951
|
es: {
|
|
6634
6952
|
header: {
|
|
@@ -6755,6 +7073,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
6755
7073
|
logoutBtn: string;
|
|
6756
7074
|
};
|
|
6757
7075
|
};
|
|
7076
|
+
pgaEditor: {
|
|
7077
|
+
es: {
|
|
7078
|
+
savedMsg: string;
|
|
7079
|
+
saveErrorMsg: string;
|
|
7080
|
+
};
|
|
7081
|
+
};
|
|
6758
7082
|
pgaLayout: {
|
|
6759
7083
|
es: {
|
|
6760
7084
|
header: {
|
|
@@ -6881,6 +7205,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
6881
7205
|
logoutBtn: string;
|
|
6882
7206
|
};
|
|
6883
7207
|
};
|
|
7208
|
+
pgaEditor: {
|
|
7209
|
+
es: {
|
|
7210
|
+
savedMsg: string;
|
|
7211
|
+
saveErrorMsg: string;
|
|
7212
|
+
};
|
|
7213
|
+
};
|
|
6884
7214
|
pgaLayout: {
|
|
6885
7215
|
es: {
|
|
6886
7216
|
header: {
|
|
@@ -7007,6 +7337,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
7007
7337
|
logoutBtn: string;
|
|
7008
7338
|
};
|
|
7009
7339
|
};
|
|
7340
|
+
pgaEditor: {
|
|
7341
|
+
es: {
|
|
7342
|
+
savedMsg: string;
|
|
7343
|
+
saveErrorMsg: string;
|
|
7344
|
+
};
|
|
7345
|
+
};
|
|
7010
7346
|
pgaLayout: {
|
|
7011
7347
|
es: {
|
|
7012
7348
|
header: {
|
|
@@ -7133,6 +7469,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
7133
7469
|
logoutBtn: string;
|
|
7134
7470
|
};
|
|
7135
7471
|
};
|
|
7472
|
+
pgaEditor: {
|
|
7473
|
+
es: {
|
|
7474
|
+
savedMsg: string;
|
|
7475
|
+
saveErrorMsg: string;
|
|
7476
|
+
};
|
|
7477
|
+
};
|
|
7136
7478
|
pgaLayout: {
|
|
7137
7479
|
es: {
|
|
7138
7480
|
header: {
|
|
@@ -7259,6 +7601,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
7259
7601
|
logoutBtn: string;
|
|
7260
7602
|
};
|
|
7261
7603
|
};
|
|
7604
|
+
pgaEditor: {
|
|
7605
|
+
es: {
|
|
7606
|
+
savedMsg: string;
|
|
7607
|
+
saveErrorMsg: string;
|
|
7608
|
+
};
|
|
7609
|
+
};
|
|
7262
7610
|
pgaLayout: {
|
|
7263
7611
|
es: {
|
|
7264
7612
|
header: {
|
|
@@ -7385,6 +7733,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
7385
7733
|
logoutBtn: string;
|
|
7386
7734
|
};
|
|
7387
7735
|
};
|
|
7736
|
+
pgaEditor: {
|
|
7737
|
+
es: {
|
|
7738
|
+
savedMsg: string;
|
|
7739
|
+
saveErrorMsg: string;
|
|
7740
|
+
};
|
|
7741
|
+
};
|
|
7388
7742
|
pgaLayout: {
|
|
7389
7743
|
es: {
|
|
7390
7744
|
header: {
|
|
@@ -7511,6 +7865,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
7511
7865
|
logoutBtn: string;
|
|
7512
7866
|
};
|
|
7513
7867
|
};
|
|
7868
|
+
pgaEditor: {
|
|
7869
|
+
es: {
|
|
7870
|
+
savedMsg: string;
|
|
7871
|
+
saveErrorMsg: string;
|
|
7872
|
+
};
|
|
7873
|
+
};
|
|
7514
7874
|
pgaLayout: {
|
|
7515
7875
|
es: {
|
|
7516
7876
|
header: {
|
|
@@ -7637,6 +7997,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
7637
7997
|
logoutBtn: string;
|
|
7638
7998
|
};
|
|
7639
7999
|
};
|
|
8000
|
+
pgaEditor: {
|
|
8001
|
+
es: {
|
|
8002
|
+
savedMsg: string;
|
|
8003
|
+
saveErrorMsg: string;
|
|
8004
|
+
};
|
|
8005
|
+
};
|
|
7640
8006
|
pgaLayout: {
|
|
7641
8007
|
es: {
|
|
7642
8008
|
header: {
|
|
@@ -7763,6 +8129,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
7763
8129
|
logoutBtn: string;
|
|
7764
8130
|
};
|
|
7765
8131
|
};
|
|
8132
|
+
pgaEditor: {
|
|
8133
|
+
es: {
|
|
8134
|
+
savedMsg: string;
|
|
8135
|
+
saveErrorMsg: string;
|
|
8136
|
+
};
|
|
8137
|
+
};
|
|
7766
8138
|
pgaLayout: {
|
|
7767
8139
|
es: {
|
|
7768
8140
|
header: {
|
|
@@ -7889,6 +8261,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
7889
8261
|
logoutBtn: string;
|
|
7890
8262
|
};
|
|
7891
8263
|
};
|
|
8264
|
+
pgaEditor: {
|
|
8265
|
+
es: {
|
|
8266
|
+
savedMsg: string;
|
|
8267
|
+
saveErrorMsg: string;
|
|
8268
|
+
};
|
|
8269
|
+
};
|
|
7892
8270
|
pgaLayout: {
|
|
7893
8271
|
es: {
|
|
7894
8272
|
header: {
|
|
@@ -8015,6 +8393,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
8015
8393
|
logoutBtn: string;
|
|
8016
8394
|
};
|
|
8017
8395
|
};
|
|
8396
|
+
pgaEditor: {
|
|
8397
|
+
es: {
|
|
8398
|
+
savedMsg: string;
|
|
8399
|
+
saveErrorMsg: string;
|
|
8400
|
+
};
|
|
8401
|
+
};
|
|
8018
8402
|
pgaLayout: {
|
|
8019
8403
|
es: {
|
|
8020
8404
|
header: {
|
|
@@ -8141,6 +8525,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
8141
8525
|
logoutBtn: string;
|
|
8142
8526
|
};
|
|
8143
8527
|
};
|
|
8528
|
+
pgaEditor: {
|
|
8529
|
+
es: {
|
|
8530
|
+
savedMsg: string;
|
|
8531
|
+
saveErrorMsg: string;
|
|
8532
|
+
};
|
|
8533
|
+
};
|
|
8144
8534
|
pgaLayout: {
|
|
8145
8535
|
es: {
|
|
8146
8536
|
header: {
|
|
@@ -8267,6 +8657,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
8267
8657
|
logoutBtn: string;
|
|
8268
8658
|
};
|
|
8269
8659
|
};
|
|
8660
|
+
pgaEditor: {
|
|
8661
|
+
es: {
|
|
8662
|
+
savedMsg: string;
|
|
8663
|
+
saveErrorMsg: string;
|
|
8664
|
+
};
|
|
8665
|
+
};
|
|
8270
8666
|
pgaLayout: {
|
|
8271
8667
|
es: {
|
|
8272
8668
|
header: {
|
|
@@ -8393,6 +8789,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
8393
8789
|
logoutBtn: string;
|
|
8394
8790
|
};
|
|
8395
8791
|
};
|
|
8792
|
+
pgaEditor: {
|
|
8793
|
+
es: {
|
|
8794
|
+
savedMsg: string;
|
|
8795
|
+
saveErrorMsg: string;
|
|
8796
|
+
};
|
|
8797
|
+
};
|
|
8396
8798
|
pgaLayout: {
|
|
8397
8799
|
es: {
|
|
8398
8800
|
header: {
|
|
@@ -8519,6 +8921,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
8519
8921
|
logoutBtn: string;
|
|
8520
8922
|
};
|
|
8521
8923
|
};
|
|
8924
|
+
pgaEditor: {
|
|
8925
|
+
es: {
|
|
8926
|
+
savedMsg: string;
|
|
8927
|
+
saveErrorMsg: string;
|
|
8928
|
+
};
|
|
8929
|
+
};
|
|
8522
8930
|
pgaLayout: {
|
|
8523
8931
|
es: {
|
|
8524
8932
|
header: {
|
|
@@ -8645,6 +9053,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
8645
9053
|
logoutBtn: string;
|
|
8646
9054
|
};
|
|
8647
9055
|
};
|
|
9056
|
+
pgaEditor: {
|
|
9057
|
+
es: {
|
|
9058
|
+
savedMsg: string;
|
|
9059
|
+
saveErrorMsg: string;
|
|
9060
|
+
};
|
|
9061
|
+
};
|
|
8648
9062
|
pgaLayout: {
|
|
8649
9063
|
es: {
|
|
8650
9064
|
header: {
|
|
@@ -8771,6 +9185,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
8771
9185
|
logoutBtn: string;
|
|
8772
9186
|
};
|
|
8773
9187
|
};
|
|
9188
|
+
pgaEditor: {
|
|
9189
|
+
es: {
|
|
9190
|
+
savedMsg: string;
|
|
9191
|
+
saveErrorMsg: string;
|
|
9192
|
+
};
|
|
9193
|
+
};
|
|
8774
9194
|
pgaLayout: {
|
|
8775
9195
|
es: {
|
|
8776
9196
|
header: {
|
|
@@ -8897,6 +9317,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
8897
9317
|
logoutBtn: string;
|
|
8898
9318
|
};
|
|
8899
9319
|
};
|
|
9320
|
+
pgaEditor: {
|
|
9321
|
+
es: {
|
|
9322
|
+
savedMsg: string;
|
|
9323
|
+
saveErrorMsg: string;
|
|
9324
|
+
};
|
|
9325
|
+
};
|
|
8900
9326
|
pgaLayout: {
|
|
8901
9327
|
es: {
|
|
8902
9328
|
header: {
|
|
@@ -9023,6 +9449,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
9023
9449
|
logoutBtn: string;
|
|
9024
9450
|
};
|
|
9025
9451
|
};
|
|
9452
|
+
pgaEditor: {
|
|
9453
|
+
es: {
|
|
9454
|
+
savedMsg: string;
|
|
9455
|
+
saveErrorMsg: string;
|
|
9456
|
+
};
|
|
9457
|
+
};
|
|
9026
9458
|
pgaLayout: {
|
|
9027
9459
|
es: {
|
|
9028
9460
|
header: {
|
|
@@ -9149,6 +9581,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
9149
9581
|
logoutBtn: string;
|
|
9150
9582
|
};
|
|
9151
9583
|
};
|
|
9584
|
+
pgaEditor: {
|
|
9585
|
+
es: {
|
|
9586
|
+
savedMsg: string;
|
|
9587
|
+
saveErrorMsg: string;
|
|
9588
|
+
};
|
|
9589
|
+
};
|
|
9152
9590
|
pgaLayout: {
|
|
9153
9591
|
es: {
|
|
9154
9592
|
header: {
|
|
@@ -9275,6 +9713,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
9275
9713
|
logoutBtn: string;
|
|
9276
9714
|
};
|
|
9277
9715
|
};
|
|
9716
|
+
pgaEditor: {
|
|
9717
|
+
es: {
|
|
9718
|
+
savedMsg: string;
|
|
9719
|
+
saveErrorMsg: string;
|
|
9720
|
+
};
|
|
9721
|
+
};
|
|
9278
9722
|
pgaLayout: {
|
|
9279
9723
|
es: {
|
|
9280
9724
|
header: {
|
|
@@ -9401,6 +9845,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
9401
9845
|
logoutBtn: string;
|
|
9402
9846
|
};
|
|
9403
9847
|
};
|
|
9848
|
+
pgaEditor: {
|
|
9849
|
+
es: {
|
|
9850
|
+
savedMsg: string;
|
|
9851
|
+
saveErrorMsg: string;
|
|
9852
|
+
};
|
|
9853
|
+
};
|
|
9404
9854
|
pgaLayout: {
|
|
9405
9855
|
es: {
|
|
9406
9856
|
header: {
|
|
@@ -9527,6 +9977,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
9527
9977
|
logoutBtn: string;
|
|
9528
9978
|
};
|
|
9529
9979
|
};
|
|
9980
|
+
pgaEditor: {
|
|
9981
|
+
es: {
|
|
9982
|
+
savedMsg: string;
|
|
9983
|
+
saveErrorMsg: string;
|
|
9984
|
+
};
|
|
9985
|
+
};
|
|
9530
9986
|
pgaLayout: {
|
|
9531
9987
|
es: {
|
|
9532
9988
|
header: {
|
|
@@ -9653,6 +10109,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
9653
10109
|
logoutBtn: string;
|
|
9654
10110
|
};
|
|
9655
10111
|
};
|
|
10112
|
+
pgaEditor: {
|
|
10113
|
+
es: {
|
|
10114
|
+
savedMsg: string;
|
|
10115
|
+
saveErrorMsg: string;
|
|
10116
|
+
};
|
|
10117
|
+
};
|
|
9656
10118
|
pgaLayout: {
|
|
9657
10119
|
es: {
|
|
9658
10120
|
header: {
|
|
@@ -9779,6 +10241,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
9779
10241
|
logoutBtn: string;
|
|
9780
10242
|
};
|
|
9781
10243
|
};
|
|
10244
|
+
pgaEditor: {
|
|
10245
|
+
es: {
|
|
10246
|
+
savedMsg: string;
|
|
10247
|
+
saveErrorMsg: string;
|
|
10248
|
+
};
|
|
10249
|
+
};
|
|
9782
10250
|
pgaLayout: {
|
|
9783
10251
|
es: {
|
|
9784
10252
|
header: {
|
|
@@ -9905,6 +10373,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
9905
10373
|
logoutBtn: string;
|
|
9906
10374
|
};
|
|
9907
10375
|
};
|
|
10376
|
+
pgaEditor: {
|
|
10377
|
+
es: {
|
|
10378
|
+
savedMsg: string;
|
|
10379
|
+
saveErrorMsg: string;
|
|
10380
|
+
};
|
|
10381
|
+
};
|
|
9908
10382
|
pgaLayout: {
|
|
9909
10383
|
es: {
|
|
9910
10384
|
header: {
|
|
@@ -10031,6 +10505,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
10031
10505
|
logoutBtn: string;
|
|
10032
10506
|
};
|
|
10033
10507
|
};
|
|
10508
|
+
pgaEditor: {
|
|
10509
|
+
es: {
|
|
10510
|
+
savedMsg: string;
|
|
10511
|
+
saveErrorMsg: string;
|
|
10512
|
+
};
|
|
10513
|
+
};
|
|
10034
10514
|
pgaLayout: {
|
|
10035
10515
|
es: {
|
|
10036
10516
|
header: {
|
|
@@ -10157,6 +10637,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
10157
10637
|
logoutBtn: string;
|
|
10158
10638
|
};
|
|
10159
10639
|
};
|
|
10640
|
+
pgaEditor: {
|
|
10641
|
+
es: {
|
|
10642
|
+
savedMsg: string;
|
|
10643
|
+
saveErrorMsg: string;
|
|
10644
|
+
};
|
|
10645
|
+
};
|
|
10160
10646
|
pgaLayout: {
|
|
10161
10647
|
es: {
|
|
10162
10648
|
header: {
|
|
@@ -10283,6 +10769,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
10283
10769
|
logoutBtn: string;
|
|
10284
10770
|
};
|
|
10285
10771
|
};
|
|
10772
|
+
pgaEditor: {
|
|
10773
|
+
es: {
|
|
10774
|
+
savedMsg: string;
|
|
10775
|
+
saveErrorMsg: string;
|
|
10776
|
+
};
|
|
10777
|
+
};
|
|
10286
10778
|
pgaLayout: {
|
|
10287
10779
|
es: {
|
|
10288
10780
|
header: {
|
|
@@ -10409,6 +10901,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
10409
10901
|
logoutBtn: string;
|
|
10410
10902
|
};
|
|
10411
10903
|
};
|
|
10904
|
+
pgaEditor: {
|
|
10905
|
+
es: {
|
|
10906
|
+
savedMsg: string;
|
|
10907
|
+
saveErrorMsg: string;
|
|
10908
|
+
};
|
|
10909
|
+
};
|
|
10412
10910
|
pgaLayout: {
|
|
10413
10911
|
es: {
|
|
10414
10912
|
header: {
|
|
@@ -10535,6 +11033,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
10535
11033
|
logoutBtn: string;
|
|
10536
11034
|
};
|
|
10537
11035
|
};
|
|
11036
|
+
pgaEditor: {
|
|
11037
|
+
es: {
|
|
11038
|
+
savedMsg: string;
|
|
11039
|
+
saveErrorMsg: string;
|
|
11040
|
+
};
|
|
11041
|
+
};
|
|
10538
11042
|
pgaLayout: {
|
|
10539
11043
|
es: {
|
|
10540
11044
|
header: {
|
|
@@ -10661,6 +11165,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
10661
11165
|
logoutBtn: string;
|
|
10662
11166
|
};
|
|
10663
11167
|
};
|
|
11168
|
+
pgaEditor: {
|
|
11169
|
+
es: {
|
|
11170
|
+
savedMsg: string;
|
|
11171
|
+
saveErrorMsg: string;
|
|
11172
|
+
};
|
|
11173
|
+
};
|
|
10664
11174
|
pgaLayout: {
|
|
10665
11175
|
es: {
|
|
10666
11176
|
header: {
|
|
@@ -10787,6 +11297,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
10787
11297
|
logoutBtn: string;
|
|
10788
11298
|
};
|
|
10789
11299
|
};
|
|
11300
|
+
pgaEditor: {
|
|
11301
|
+
es: {
|
|
11302
|
+
savedMsg: string;
|
|
11303
|
+
saveErrorMsg: string;
|
|
11304
|
+
};
|
|
11305
|
+
};
|
|
10790
11306
|
pgaLayout: {
|
|
10791
11307
|
es: {
|
|
10792
11308
|
header: {
|
|
@@ -10913,6 +11429,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
10913
11429
|
logoutBtn: string;
|
|
10914
11430
|
};
|
|
10915
11431
|
};
|
|
11432
|
+
pgaEditor: {
|
|
11433
|
+
es: {
|
|
11434
|
+
savedMsg: string;
|
|
11435
|
+
saveErrorMsg: string;
|
|
11436
|
+
};
|
|
11437
|
+
};
|
|
10916
11438
|
pgaLayout: {
|
|
10917
11439
|
es: {
|
|
10918
11440
|
header: {
|
|
@@ -11039,6 +11561,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
11039
11561
|
logoutBtn: string;
|
|
11040
11562
|
};
|
|
11041
11563
|
};
|
|
11564
|
+
pgaEditor: {
|
|
11565
|
+
es: {
|
|
11566
|
+
savedMsg: string;
|
|
11567
|
+
saveErrorMsg: string;
|
|
11568
|
+
};
|
|
11569
|
+
};
|
|
11042
11570
|
pgaLayout: {
|
|
11043
11571
|
es: {
|
|
11044
11572
|
header: {
|
|
@@ -11165,6 +11693,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
11165
11693
|
logoutBtn: string;
|
|
11166
11694
|
};
|
|
11167
11695
|
};
|
|
11696
|
+
pgaEditor: {
|
|
11697
|
+
es: {
|
|
11698
|
+
savedMsg: string;
|
|
11699
|
+
saveErrorMsg: string;
|
|
11700
|
+
};
|
|
11701
|
+
};
|
|
11168
11702
|
pgaLayout: {
|
|
11169
11703
|
es: {
|
|
11170
11704
|
header: {
|
|
@@ -11291,6 +11825,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
11291
11825
|
logoutBtn: string;
|
|
11292
11826
|
};
|
|
11293
11827
|
};
|
|
11828
|
+
pgaEditor: {
|
|
11829
|
+
es: {
|
|
11830
|
+
savedMsg: string;
|
|
11831
|
+
saveErrorMsg: string;
|
|
11832
|
+
};
|
|
11833
|
+
};
|
|
11294
11834
|
pgaLayout: {
|
|
11295
11835
|
es: {
|
|
11296
11836
|
header: {
|
|
@@ -11417,6 +11957,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
11417
11957
|
logoutBtn: string;
|
|
11418
11958
|
};
|
|
11419
11959
|
};
|
|
11960
|
+
pgaEditor: {
|
|
11961
|
+
es: {
|
|
11962
|
+
savedMsg: string;
|
|
11963
|
+
saveErrorMsg: string;
|
|
11964
|
+
};
|
|
11965
|
+
};
|
|
11420
11966
|
pgaLayout: {
|
|
11421
11967
|
es: {
|
|
11422
11968
|
header: {
|
|
@@ -11543,6 +12089,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
11543
12089
|
logoutBtn: string;
|
|
11544
12090
|
};
|
|
11545
12091
|
};
|
|
12092
|
+
pgaEditor: {
|
|
12093
|
+
es: {
|
|
12094
|
+
savedMsg: string;
|
|
12095
|
+
saveErrorMsg: string;
|
|
12096
|
+
};
|
|
12097
|
+
};
|
|
11546
12098
|
pgaLayout: {
|
|
11547
12099
|
es: {
|
|
11548
12100
|
header: {
|
|
@@ -11669,6 +12221,12 @@ export declare const useI18n: <FN extends "authHelpers" | "alert" | "apiConnecti
|
|
|
11669
12221
|
logoutBtn: string;
|
|
11670
12222
|
};
|
|
11671
12223
|
};
|
|
12224
|
+
pgaEditor: {
|
|
12225
|
+
es: {
|
|
12226
|
+
savedMsg: string;
|
|
12227
|
+
saveErrorMsg: string;
|
|
12228
|
+
};
|
|
12229
|
+
};
|
|
11672
12230
|
pgaLayout: {
|
|
11673
12231
|
es: {
|
|
11674
12232
|
header: {
|