@useinsider/guido 3.11.0-beta.181af4d → 3.11.0-beta.1fde696

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.
Files changed (49) hide show
  1. package/dist/@types/config/schemas.js +59 -52
  2. package/dist/components/organisms/header/AutoSaveToggle.vue.js +22 -0
  3. package/dist/components/organisms/header/AutoSaveToggle.vue2.js +19 -0
  4. package/dist/components/organisms/header/EditorActions.vue.js +11 -11
  5. package/dist/components/organisms/header/EditorActions.vue2.js +50 -34
  6. package/dist/components/organisms/header/HeaderWrapper.vue.js +3 -3
  7. package/dist/components/organisms/header/HeaderWrapper.vue2.js +0 -2
  8. package/dist/components/organisms/header/MiddleSlot.vue.js +4 -4
  9. package/dist/components/organisms/header/MiddleSlot.vue2.js +7 -8
  10. package/dist/components/organisms/header/RightSlot.vue.js +8 -8
  11. package/dist/components/organisms/header/RightSlot.vue2.js +15 -15
  12. package/dist/components/organisms/header/version-history/VersionHistory.vue.js +1 -1
  13. package/dist/composables/useModuleDynamicContentRepair.js +36 -0
  14. package/dist/composables/useStripo.js +62 -59
  15. package/dist/config/i18n/en/labels.json.js +0 -17
  16. package/dist/guido.css +1 -1
  17. package/dist/node_modules/@vueuse/shared/index.js +28 -40
  18. package/dist/src/@types/config/schemas.d.ts +36 -4
  19. package/dist/src/composables/useActionsApi.d.ts +2 -2
  20. package/dist/src/composables/useConfig.d.ts +18 -2
  21. package/dist/src/composables/useHtmlValidator.test.d.ts +1 -0
  22. package/dist/src/composables/useModuleDynamicContentRepair.d.ts +18 -0
  23. package/dist/src/config/compiler/utils/recommendationIgnoreUtils.test.d.ts +1 -0
  24. package/dist/src/stores/config.d.ts +162 -18
  25. package/dist/src/stores/editor.d.ts +0 -105
  26. package/dist/src/stores/version-history.d.ts +1 -1
  27. package/dist/src/utils/dynamicContentConverter.d.ts +31 -0
  28. package/dist/src/utils/genericUtil.d.ts +7 -0
  29. package/dist/src/utils/timeUtil.d.ts +0 -10
  30. package/dist/stores/editor.js +1 -5
  31. package/dist/utils/dynamicContentConverter.js +33 -0
  32. package/dist/utils/genericUtil.js +26 -19
  33. package/dist/utils/timeUtil.js +17 -6
  34. package/package.json +1 -5
  35. package/dist/components/organisms/header/AutoSaveStatus.vue.js +0 -17
  36. package/dist/components/organisms/header/AutoSaveStatus.vue2.js +0 -21
  37. package/dist/components/organisms/header/EditorActionsMenu.vue.js +0 -20
  38. package/dist/components/organisms/header/EditorActionsMenu.vue2.js +0 -39
  39. package/dist/components/organisms/header/accessibility/AccessibilityToolbar.vue.js +0 -18
  40. package/dist/components/organisms/header/accessibility/AccessibilityToolbar.vue2.js +0 -37
  41. package/dist/components/organisms/header/accessibility/ColorVisionSelect.vue.js +0 -24
  42. package/dist/components/organisms/header/accessibility/ColorVisionSelect.vue2.js +0 -48
  43. package/dist/composables/useAccessibilityApi.js +0 -31
  44. package/dist/node_modules/@vueuse/core/index.js +0 -102
  45. package/dist/src/components/organisms/header/EditorActionsMenu.vue.d.ts +0 -2
  46. package/dist/src/components/organisms/header/accessibility/AccessibilityToolbar.vue.d.ts +0 -2
  47. package/dist/src/components/organisms/header/accessibility/ColorVisionSelect.vue.d.ts +0 -2
  48. package/dist/src/composables/useAccessibilityApi.d.ts +0 -15
  49. /package/dist/src/components/organisms/header/{AutoSaveStatus.vue.d.ts → AutoSaveToggle.vue.d.ts} +0 -0
@@ -39,6 +39,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
39
39
  value: string;
40
40
  } | undefined;
41
41
  }[];
42
+ availableDynamicContent: {
43
+ text: string;
44
+ value: string;
45
+ fallback?: string | undefined;
46
+ format?: {
47
+ key: string;
48
+ value: string;
49
+ } | undefined;
50
+ }[];
42
51
  customFieldAttributes: string[];
43
52
  selectedUnsubscribePages: number[];
44
53
  forceRecreate: boolean;
@@ -98,7 +107,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
98
107
  modulesDisabled: boolean;
99
108
  liquidSyntax: boolean;
100
109
  autosave: boolean;
101
- accessibilityTesting: boolean;
102
110
  };
103
111
  blocks: {
104
112
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -174,6 +182,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
174
182
  value: string;
175
183
  } | undefined;
176
184
  }[];
185
+ availableDynamicContent: {
186
+ text: string;
187
+ value: string;
188
+ fallback?: string | undefined;
189
+ format?: {
190
+ key: string;
191
+ value: string;
192
+ } | undefined;
193
+ }[];
177
194
  customFieldAttributes: string[];
178
195
  selectedUnsubscribePages: number[];
179
196
  forceRecreate: boolean;
@@ -233,7 +250,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
233
250
  modulesDisabled: boolean;
234
251
  liquidSyntax: boolean;
235
252
  autosave: boolean;
236
- accessibilityTesting: boolean;
237
253
  };
238
254
  blocks: {
239
255
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -309,6 +325,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
309
325
  value: string;
310
326
  } | undefined;
311
327
  }[];
328
+ availableDynamicContent: {
329
+ text: string;
330
+ value: string;
331
+ fallback?: string | undefined;
332
+ format?: {
333
+ key: string;
334
+ value: string;
335
+ } | undefined;
336
+ }[];
312
337
  customFieldAttributes: string[];
313
338
  selectedUnsubscribePages: number[];
314
339
  forceRecreate: boolean;
@@ -368,7 +393,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
368
393
  modulesDisabled: boolean;
369
394
  liquidSyntax: boolean;
370
395
  autosave: boolean;
371
- accessibilityTesting: boolean;
372
396
  };
373
397
  blocks: {
374
398
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -444,6 +468,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
444
468
  value: string;
445
469
  } | undefined;
446
470
  }[];
471
+ availableDynamicContent: {
472
+ text: string;
473
+ value: string;
474
+ fallback?: string | undefined;
475
+ format?: {
476
+ key: string;
477
+ value: string;
478
+ } | undefined;
479
+ }[];
447
480
  customFieldAttributes: string[];
448
481
  selectedUnsubscribePages: number[];
449
482
  forceRecreate: boolean;
@@ -503,7 +536,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
503
536
  modulesDisabled: boolean;
504
537
  liquidSyntax: boolean;
505
538
  autosave: boolean;
506
- accessibilityTesting: boolean;
507
539
  };
508
540
  blocks: {
509
541
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -579,6 +611,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
579
611
  value: string;
580
612
  } | undefined;
581
613
  }[];
614
+ availableDynamicContent: {
615
+ text: string;
616
+ value: string;
617
+ fallback?: string | undefined;
618
+ format?: {
619
+ key: string;
620
+ value: string;
621
+ } | undefined;
622
+ }[];
582
623
  customFieldAttributes: string[];
583
624
  selectedUnsubscribePages: number[];
584
625
  forceRecreate: boolean;
@@ -638,7 +679,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
638
679
  modulesDisabled: boolean;
639
680
  liquidSyntax: boolean;
640
681
  autosave: boolean;
641
- accessibilityTesting: boolean;
642
682
  };
643
683
  blocks: {
644
684
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -714,6 +754,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
714
754
  value: string;
715
755
  } | undefined;
716
756
  }[];
757
+ availableDynamicContent: {
758
+ text: string;
759
+ value: string;
760
+ fallback?: string | undefined;
761
+ format?: {
762
+ key: string;
763
+ value: string;
764
+ } | undefined;
765
+ }[];
717
766
  customFieldAttributes: string[];
718
767
  selectedUnsubscribePages: number[];
719
768
  forceRecreate: boolean;
@@ -773,7 +822,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
773
822
  modulesDisabled: boolean;
774
823
  liquidSyntax: boolean;
775
824
  autosave: boolean;
776
- accessibilityTesting: boolean;
777
825
  };
778
826
  blocks: {
779
827
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -849,6 +897,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
849
897
  value: string;
850
898
  } | undefined;
851
899
  }[];
900
+ availableDynamicContent: {
901
+ text: string;
902
+ value: string;
903
+ fallback?: string | undefined;
904
+ format?: {
905
+ key: string;
906
+ value: string;
907
+ } | undefined;
908
+ }[];
852
909
  customFieldAttributes: string[];
853
910
  selectedUnsubscribePages: number[];
854
911
  forceRecreate: boolean;
@@ -908,7 +965,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
908
965
  modulesDisabled: boolean;
909
966
  liquidSyntax: boolean;
910
967
  autosave: boolean;
911
- accessibilityTesting: boolean;
912
968
  };
913
969
  blocks: {
914
970
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -984,6 +1040,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
984
1040
  value: string;
985
1041
  } | undefined;
986
1042
  }[];
1043
+ availableDynamicContent: {
1044
+ text: string;
1045
+ value: string;
1046
+ fallback?: string | undefined;
1047
+ format?: {
1048
+ key: string;
1049
+ value: string;
1050
+ } | undefined;
1051
+ }[];
987
1052
  customFieldAttributes: string[];
988
1053
  selectedUnsubscribePages: number[];
989
1054
  forceRecreate: boolean;
@@ -1043,7 +1108,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1043
1108
  modulesDisabled: boolean;
1044
1109
  liquidSyntax: boolean;
1045
1110
  autosave: boolean;
1046
- accessibilityTesting: boolean;
1047
1111
  };
1048
1112
  blocks: {
1049
1113
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1119,6 +1183,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1119
1183
  value: string;
1120
1184
  } | undefined;
1121
1185
  }[];
1186
+ availableDynamicContent: {
1187
+ text: string;
1188
+ value: string;
1189
+ fallback?: string | undefined;
1190
+ format?: {
1191
+ key: string;
1192
+ value: string;
1193
+ } | undefined;
1194
+ }[];
1122
1195
  customFieldAttributes: string[];
1123
1196
  selectedUnsubscribePages: number[];
1124
1197
  forceRecreate: boolean;
@@ -1178,7 +1251,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1178
1251
  modulesDisabled: boolean;
1179
1252
  liquidSyntax: boolean;
1180
1253
  autosave: boolean;
1181
- accessibilityTesting: boolean;
1182
1254
  };
1183
1255
  blocks: {
1184
1256
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1254,6 +1326,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1254
1326
  value: string;
1255
1327
  } | undefined;
1256
1328
  }[];
1329
+ availableDynamicContent: {
1330
+ text: string;
1331
+ value: string;
1332
+ fallback?: string | undefined;
1333
+ format?: {
1334
+ key: string;
1335
+ value: string;
1336
+ } | undefined;
1337
+ }[];
1257
1338
  customFieldAttributes: string[];
1258
1339
  selectedUnsubscribePages: number[];
1259
1340
  forceRecreate: boolean;
@@ -1313,7 +1394,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1313
1394
  modulesDisabled: boolean;
1314
1395
  liquidSyntax: boolean;
1315
1396
  autosave: boolean;
1316
- accessibilityTesting: boolean;
1317
1397
  };
1318
1398
  blocks: {
1319
1399
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1389,6 +1469,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1389
1469
  value: string;
1390
1470
  } | undefined;
1391
1471
  }[];
1472
+ availableDynamicContent: {
1473
+ text: string;
1474
+ value: string;
1475
+ fallback?: string | undefined;
1476
+ format?: {
1477
+ key: string;
1478
+ value: string;
1479
+ } | undefined;
1480
+ }[];
1392
1481
  customFieldAttributes: string[];
1393
1482
  selectedUnsubscribePages: number[];
1394
1483
  forceRecreate: boolean;
@@ -1448,7 +1537,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1448
1537
  modulesDisabled: boolean;
1449
1538
  liquidSyntax: boolean;
1450
1539
  autosave: boolean;
1451
- accessibilityTesting: boolean;
1452
1540
  };
1453
1541
  blocks: {
1454
1542
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1524,6 +1612,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1524
1612
  value: string;
1525
1613
  } | undefined;
1526
1614
  }[];
1615
+ availableDynamicContent: {
1616
+ text: string;
1617
+ value: string;
1618
+ fallback?: string | undefined;
1619
+ format?: {
1620
+ key: string;
1621
+ value: string;
1622
+ } | undefined;
1623
+ }[];
1527
1624
  customFieldAttributes: string[];
1528
1625
  selectedUnsubscribePages: number[];
1529
1626
  forceRecreate: boolean;
@@ -1583,7 +1680,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1583
1680
  modulesDisabled: boolean;
1584
1681
  liquidSyntax: boolean;
1585
1682
  autosave: boolean;
1586
- accessibilityTesting: boolean;
1587
1683
  };
1588
1684
  blocks: {
1589
1685
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1659,6 +1755,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1659
1755
  value: string;
1660
1756
  } | undefined;
1661
1757
  }[];
1758
+ availableDynamicContent: {
1759
+ text: string;
1760
+ value: string;
1761
+ fallback?: string | undefined;
1762
+ format?: {
1763
+ key: string;
1764
+ value: string;
1765
+ } | undefined;
1766
+ }[];
1662
1767
  customFieldAttributes: string[];
1663
1768
  selectedUnsubscribePages: number[];
1664
1769
  forceRecreate: boolean;
@@ -1718,7 +1823,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1718
1823
  modulesDisabled: boolean;
1719
1824
  liquidSyntax: boolean;
1720
1825
  autosave: boolean;
1721
- accessibilityTesting: boolean;
1722
1826
  };
1723
1827
  blocks: {
1724
1828
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1794,6 +1898,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1794
1898
  value: string;
1795
1899
  } | undefined;
1796
1900
  }[];
1901
+ availableDynamicContent: {
1902
+ text: string;
1903
+ value: string;
1904
+ fallback?: string | undefined;
1905
+ format?: {
1906
+ key: string;
1907
+ value: string;
1908
+ } | undefined;
1909
+ }[];
1797
1910
  customFieldAttributes: string[];
1798
1911
  selectedUnsubscribePages: number[];
1799
1912
  forceRecreate: boolean;
@@ -1853,7 +1966,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1853
1966
  modulesDisabled: boolean;
1854
1967
  liquidSyntax: boolean;
1855
1968
  autosave: boolean;
1856
- accessibilityTesting: boolean;
1857
1969
  };
1858
1970
  blocks: {
1859
1971
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1929,6 +2041,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1929
2041
  value: string;
1930
2042
  } | undefined;
1931
2043
  }[];
2044
+ availableDynamicContent: {
2045
+ text: string;
2046
+ value: string;
2047
+ fallback?: string | undefined;
2048
+ format?: {
2049
+ key: string;
2050
+ value: string;
2051
+ } | undefined;
2052
+ }[];
1932
2053
  customFieldAttributes: string[];
1933
2054
  selectedUnsubscribePages: number[];
1934
2055
  forceRecreate: boolean;
@@ -1988,7 +2109,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1988
2109
  modulesDisabled: boolean;
1989
2110
  liquidSyntax: boolean;
1990
2111
  autosave: boolean;
1991
- accessibilityTesting: boolean;
1992
2112
  };
1993
2113
  blocks: {
1994
2114
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -2064,6 +2184,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
2064
2184
  value: string;
2065
2185
  } | undefined;
2066
2186
  }[];
2187
+ availableDynamicContent: {
2188
+ text: string;
2189
+ value: string;
2190
+ fallback?: string | undefined;
2191
+ format?: {
2192
+ key: string;
2193
+ value: string;
2194
+ } | undefined;
2195
+ }[];
2067
2196
  customFieldAttributes: string[];
2068
2197
  selectedUnsubscribePages: number[];
2069
2198
  forceRecreate: boolean;
@@ -2123,7 +2252,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
2123
2252
  modulesDisabled: boolean;
2124
2253
  liquidSyntax: boolean;
2125
2254
  autosave: boolean;
2126
- accessibilityTesting: boolean;
2127
2255
  };
2128
2256
  blocks: {
2129
2257
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -2199,6 +2327,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
2199
2327
  value: string;
2200
2328
  } | undefined;
2201
2329
  }[];
2330
+ availableDynamicContent: {
2331
+ text: string;
2332
+ value: string;
2333
+ fallback?: string | undefined;
2334
+ format?: {
2335
+ key: string;
2336
+ value: string;
2337
+ } | undefined;
2338
+ }[];
2202
2339
  customFieldAttributes: string[];
2203
2340
  selectedUnsubscribePages: number[];
2204
2341
  forceRecreate: boolean;
@@ -2258,7 +2395,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
2258
2395
  modulesDisabled: boolean;
2259
2396
  liquidSyntax: boolean;
2260
2397
  autosave: boolean;
2261
- accessibilityTesting: boolean;
2262
2398
  };
2263
2399
  blocks: {
2264
2400
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -2334,6 +2470,15 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
2334
2470
  value: string;
2335
2471
  } | undefined;
2336
2472
  }[];
2473
+ availableDynamicContent: {
2474
+ text: string;
2475
+ value: string;
2476
+ fallback?: string | undefined;
2477
+ format?: {
2478
+ key: string;
2479
+ value: string;
2480
+ } | undefined;
2481
+ }[];
2337
2482
  customFieldAttributes: string[];
2338
2483
  selectedUnsubscribePages: number[];
2339
2484
  forceRecreate: boolean;
@@ -2393,7 +2538,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
2393
2538
  modulesDisabled: boolean;
2394
2539
  liquidSyntax: boolean;
2395
2540
  autosave: boolean;
2396
- accessibilityTesting: boolean;
2397
2541
  };
2398
2542
  blocks: {
2399
2543
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];