@graphysdk/react-renderer 2.0.0-beta.1786440210947 → 2.0.0-beta.1787253424098

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.
@@ -1,8 +1,8 @@
1
1
  import { Command } from '@graphysdk/viz-engine';
2
- import { CompiledPanel } from '@graphysdk/viz-engine';
3
2
  import { CompiledSpec } from '@graphysdk/viz-engine';
4
3
  import { ComponentType } from 'react';
5
4
  import { DispatchOptions } from '@graphysdk/viz-engine';
5
+ import { EdgeSizes } from '@graphysdk/viz-engine';
6
6
  import { EditorPanel } from './editable/panel/editor-panel';
7
7
  import { EditTarget } from '@graphysdk/viz-engine';
8
8
  import { FormattedAxis } from '@graphysdk/viz-engine';
@@ -139,6 +139,15 @@ export declare const CalloutsSection: ({ title, layout, preview }: OverridableSe
139
139
  */
140
140
  export declare const CaptionSection: ({ title, layout, preview }: OverridableSectionProps) => JSX.Element | null;
141
141
 
142
+ /** Every phrase a chart can say. The editing surface adds its own — see `editable/i18n/editor-i18n`. */
143
+ declare type ChartPhrases = typeof EN_GB;
144
+
145
+ /**
146
+ * Which arrangement a combo's halves take: bars under the line, or lines throughout. Shown only for a
147
+ * chart that is already a combo — the type picker is what makes one.
148
+ */
149
+ export declare const ComboSection: ({ title, layout, preview }: OverridableSectionProps) => JSX.Element | null;
150
+
142
151
  /**
143
152
  * A control where one gesture can produce a run of changes — a drag, a burst of typing, a held
144
153
  * arrow key.
@@ -202,570 +211,10 @@ export declare interface ControlRegistry {
202
211
  Select?: ComponentType<SelectControlProps>;
203
212
  }
204
213
 
205
- declare interface CoreIntlProviderProps {
206
- locale?: I18nLocale;
207
- children: ReactNode;
208
- i18nOverrides?: I18nRuntimeOverrides;
209
- }
210
-
211
214
  declare type DeepValue<T, Path extends string> = Path extends `${infer First}.${infer Rest}` ? First extends keyof T ? DeepValue<T[First], Rest> : never : Path extends keyof T ? T[Path] : never;
212
215
 
213
216
  declare const dictionaries: {
214
217
  readonly 'en-GB': {
215
- readonly common: {
216
- readonly save: "Save";
217
- readonly cancel: "Cancel";
218
- readonly confirm: "Confirm";
219
- readonly delete: "Delete";
220
- readonly confirmDelete: (params: {
221
- item: string;
222
- }) => string;
223
- readonly abbreviations: {
224
- readonly thousands: "k";
225
- readonly millions: "m";
226
- readonly billions: "b";
227
- };
228
- };
229
- readonly editor: {
230
- readonly title: "Graphy Editor";
231
- readonly description: "Edit your content here";
232
- readonly graphTypes: {
233
- readonly column: "Column";
234
- readonly columnStacked: "Stacked column";
235
- readonly columnStackedFill: "100% stacked column";
236
- readonly bar: "Bar";
237
- readonly barStacked: "Stacked bar";
238
- readonly barStackedFill: "100% stacked bar";
239
- readonly line: "Line";
240
- readonly areaStacked: "Stacked area";
241
- readonly pie: "Pie";
242
- readonly donut: "Donut";
243
- readonly scatter: "Scatter";
244
- readonly bubble: "Bubble";
245
- readonly funnel: "Funnel";
246
- readonly combo: "Combo";
247
- readonly heatmap: "Heatmap";
248
- readonly waterfall: "Waterfall";
249
- readonly mekko: "Mekko";
250
- readonly table: "Table";
251
- };
252
- readonly sizePanel: {
253
- readonly toolbarButton: "Size";
254
- readonly presetsSection: {
255
- readonly title: "Presets";
256
- };
257
- readonly customSizeSection: {
258
- readonly title: "Custom size";
259
- };
260
- readonly presets: {
261
- readonly googleSlides: "Google Slides / PowerPoint";
262
- readonly webEmail: "Web / email";
263
- readonly linkedIn: "LinkedIn post";
264
- readonly instagram: "Instagram post";
265
- readonly tiktok: "TikTok / Instagram story";
266
- readonly twitter: "X (Twitter)";
267
- readonly mobile: "Mobile";
268
- };
269
- readonly inputs: {
270
- readonly unitLabel: "px";
271
- };
272
- readonly validation: {
273
- readonly maxSizeError: (params: {
274
- max: number;
275
- }) => string;
276
- readonly minSizeError: (params: {
277
- min: number;
278
- }) => string;
279
- };
280
- };
281
- readonly graphPanel: {
282
- readonly toolbarButton: "Graph";
283
- readonly graphTypeSection: {
284
- readonly title: "Graph type";
285
- };
286
- readonly polarSection: {
287
- readonly title: "Polar";
288
- readonly innerRadius: "Inner radius";
289
- readonly startAngle: "Start angle";
290
- };
291
- readonly barSection: {
292
- readonly title: "Bars";
293
- readonly thickness: "Bar thickness";
294
- readonly rounding: "Rounding";
295
- readonly roundingOptions: {
296
- readonly none: "None";
297
- readonly xs: "XS";
298
- readonly sm: "S";
299
- readonly md: "M";
300
- readonly lg: "L";
301
- readonly xl: "XL";
302
- readonly full: "Full";
303
- };
304
- };
305
- readonly graphOptionsSection: {
306
- readonly title: "Graph options";
307
- };
308
- readonly gridSection: {
309
- readonly title: "Grid";
310
- readonly horizontalGridLines: "Horizontal lines";
311
- readonly verticalGridLines: "Vertical lines";
312
- readonly rings: "Rings";
313
- readonly spokes: "Spokes";
314
- readonly gridStyle: "Grid style";
315
- readonly gridThickness: "Grid thickness";
316
- readonly lineStyles: {
317
- readonly solid: "Solid";
318
- readonly dashed: "Dashed";
319
- readonly dotted: "Dotted";
320
- };
321
- };
322
- readonly graphOptions: {
323
- readonly sortBars: "Sort high → low";
324
- readonly showPoints: "Show points";
325
- readonly lineFill: "Fill under line";
326
- readonly smoothLines: "Smooth lines";
327
- readonly stackTotals: "Stack totals";
328
- readonly dataLabels: "Data labels";
329
- readonly showPercentages: "Show percentages";
330
- readonly categoryLabels: "Category labels";
331
- };
332
- readonly legendSection: {
333
- readonly title: "Legend";
334
- readonly auto: "Auto";
335
- readonly top: "Top";
336
- readonly bottom: "Bottom";
337
- readonly left: "Left";
338
- readonly right: "Right";
339
- readonly none: "None";
340
- readonly alignLabel: "Alignment";
341
- readonly align: {
342
- readonly auto: "Auto";
343
- readonly start: "Start";
344
- readonly center: "Center";
345
- readonly end: "End";
346
- };
347
- readonly displayLabel: "Style";
348
- readonly display: {
349
- readonly auto: "Auto";
350
- readonly pill: "Pills";
351
- readonly direct: "Direct";
352
- };
353
- };
354
- readonly numberFormatSection: {
355
- readonly title: "Number format";
356
- };
357
- readonly numberFormat: {
358
- readonly abbreviationLabel: "Abbreviation";
359
- readonly valueLabel: "Value";
360
- readonly decimalPlacesLabel: "Decimal places";
361
- readonly options: {
362
- readonly auto: "Auto";
363
- readonly custom: "Custom";
364
- readonly none: "None";
365
- };
366
- };
367
- readonly headlineNumberSize: {
368
- readonly sizeLabel: "Size";
369
- readonly valueLabel: "Value";
370
- readonly sizes: {
371
- readonly small: "S";
372
- readonly medium: "M";
373
- readonly large: "L";
374
- };
375
- };
376
- readonly lineThickness: {
377
- readonly label: "Line thickness";
378
- };
379
- readonly pointSize: {
380
- readonly label: "Point size";
381
- readonly options: {
382
- readonly auto: "Auto";
383
- readonly custom: "Custom";
384
- };
385
- };
386
- readonly headlineNumberSection: {
387
- readonly title: "Headline number";
388
- readonly toggle: "Visible";
389
- readonly metricLabel: "Metric";
390
- readonly compareWithLabel: "Compare with";
391
- readonly metrics: {
392
- readonly total: "Total";
393
- readonly average: "Avg.";
394
- readonly current: "Last";
395
- readonly conversion: "Conversion";
396
- readonly left: "Left";
397
- };
398
- readonly comparison: {
399
- readonly first: "First";
400
- readonly previous: "Previous";
401
- };
402
- readonly position: {
403
- readonly above: "Above";
404
- readonly center: "Center";
405
- };
406
- };
407
- readonly treatEmptyValues: {
408
- readonly leaveGap: {
409
- readonly label: "Leave gap in chart";
410
- readonly description: "Leaves a visible break in the line where data is missing";
411
- };
412
- readonly fillZero: {
413
- readonly label: "Fill with zero";
414
- readonly description: "Displays missing data points as zero";
415
- };
416
- readonly connectGaps: {
417
- readonly label: "Connect across gaps";
418
- readonly description: "Joins the line between available points, skipping the gap";
419
- };
420
- };
421
- readonly comboChartAppearance: {
422
- readonly title: "Combo chart appearance";
423
- readonly groupedBars: "Grouped bars";
424
- readonly stackedBars: "Stacked bars";
425
- readonly linesOnly: "Lines only";
426
- };
427
- };
428
- readonly columnMapping: {
429
- readonly title: "Data";
430
- readonly xAxis: "X-axis";
431
- readonly yAxis: "Y-axis";
432
- readonly leftYAxis: "Y-axis (left)";
433
- readonly rightYAxis: "Y-axis (right)";
434
- readonly slices: "Values (slices)";
435
- readonly labels: "Labels";
436
- readonly size: "Size";
437
- readonly shape: "Shape";
438
- readonly reset: "Reset to auto";
439
- readonly addSeries: "Add series";
440
- readonly removeSeries: "Remove series";
441
- };
442
- readonly axesPanel: {
443
- readonly toolbarButton: "Axes";
444
- readonly mainAxisSection: {
445
- readonly yAxis: "Y-axis";
446
- readonly xAxis: "X-axis";
447
- };
448
- readonly crossAxisSection: {
449
- readonly xAxis: "X-axis";
450
- readonly yAxis: "Y-axis";
451
- };
452
- readonly controls: {
453
- readonly title: "Title";
454
- readonly visible: "Visible";
455
- readonly ticks: "Ticks";
456
- readonly labels: "Labels";
457
- readonly position: "Position";
458
- readonly scale: "Scale";
459
- readonly startFrom: "Start from";
460
- readonly endAt: "End at";
461
- readonly value: "Value";
462
- readonly numberOfAxes: "Number of axes";
463
- readonly reverse: "Reverse";
464
- };
465
- readonly labelMode: {
466
- readonly auto: "Auto";
467
- readonly edges: "Edges";
468
- };
469
- readonly scale: {
470
- readonly auto: "Auto";
471
- readonly log: "Log";
472
- };
473
- readonly startFrom: {
474
- readonly auto: "Auto";
475
- readonly zero: "Zero";
476
- readonly custom: "Custom";
477
- };
478
- readonly endAt: {
479
- readonly auto: "Auto";
480
- readonly custom: "Custom";
481
- };
482
- readonly axisCount: {
483
- readonly single: "Single";
484
- readonly double: "Double";
485
- };
486
- readonly position: {
487
- readonly left: "Left";
488
- readonly right: "Right";
489
- readonly top: "Top";
490
- readonly bottom: "Bottom";
491
- };
492
- readonly yesNo: {
493
- readonly yes: "Yes";
494
- readonly no: "No";
495
- };
496
- };
497
- readonly colorPanel: {
498
- readonly toolbarButton: "Color";
499
- readonly themeSection: {
500
- readonly title: "Theme";
501
- };
502
- readonly appearanceSection: {
503
- readonly title: "Appearance";
504
- readonly highlightStyle: "Highlight";
505
- };
506
- readonly paletteSection: {
507
- readonly title: "Palette";
508
- readonly colorScheme: "Color scheme";
509
- readonly colors: "Colors";
510
- readonly colorPalettes: "Color palettes";
511
- };
512
- readonly paletteMode: {
513
- readonly preset: "Preset";
514
- readonly brand: "Brand";
515
- readonly freestyle: "Freestyle";
516
- };
517
- readonly paletteThemes: {
518
- readonly colorful: "Colorful";
519
- readonly pastel: "Pastel";
520
- readonly neon: "Neon";
521
- };
522
- readonly backgroundSection: {
523
- readonly title: "Background";
524
- readonly black: "Black";
525
- readonly white: "White";
526
- readonly grey: "Grey";
527
- readonly tint: "Tint";
528
- readonly custom: "Custom";
529
- readonly none: "None";
530
- };
531
- readonly borderSection: {
532
- readonly title: "Border";
533
- readonly borderColor: "Border color";
534
- readonly thickness: "Thickness";
535
- readonly cornerRadius: "Corner radius";
536
- };
537
- readonly borderType: {
538
- readonly solid: "Solid";
539
- readonly gradient: "Gradient";
540
- readonly grey: "Grey";
541
- readonly preset: "Preset";
542
- readonly custom: "Custom";
543
- readonly none: "None";
544
- };
545
- readonly presetGradients: {
546
- readonly lilac: "Lilac";
547
- readonly neonPink: "Neon Pink";
548
- readonly blackberry: "Blackberry";
549
- readonly sun: "Sun";
550
- readonly iceland: "Iceland";
551
- readonly sunset: "Sunset";
552
- readonly ultraviolet: "Ultraviolet";
553
- readonly purple: "Purple";
554
- readonly iceCream: "Ice Cream";
555
- readonly mint: "Mint";
556
- readonly cool: "Cool";
557
- readonly fresh: "Fresh";
558
- };
559
- };
560
- readonly designPanel: {
561
- readonly toolbarButton: "Design";
562
- readonly defaultExpanded: "Palette";
563
- };
564
- readonly annotatePanel: {
565
- readonly toolbarButton: "Annotate";
566
- readonly callOutSection: {
567
- readonly title: "Callouts";
568
- readonly text: "Text";
569
- readonly arrow: "Arrow";
570
- readonly box: "Box";
571
- readonly difference: "Difference";
572
- };
573
- readonly highlightSection: {
574
- readonly title: "Highlight";
575
- readonly button: "Highlight";
576
- readonly colorLabel: "Highlight color";
577
- };
578
- };
579
- readonly annotationsPanel: {
580
- readonly toolbarButton: "Annotate";
581
- readonly freeformSection: {
582
- readonly title: "Freeform";
583
- readonly text: "Text";
584
- readonly arrow: "Arrow";
585
- readonly box: "Box";
586
- readonly difference: "Difference";
587
- };
588
- readonly goalSection: {
589
- readonly title: "Goal";
590
- readonly labelControl: "Label";
591
- readonly labelPlaceholder: "Goal";
592
- readonly labelAriaLabel: "Custom goal label";
593
- readonly valueControl: "Goal value";
594
- readonly valueAriaLabel: "Goal value";
595
- readonly byDate: "By date";
596
- readonly xAxisValue: "X-axis value";
597
- readonly optional: "(optional)";
598
- };
599
- readonly trendsAndAveragesSection: {
600
- readonly title: "Trends and Averages";
601
- readonly trend: "Trend";
602
- readonly average: "Average";
603
- };
604
- readonly trendType: {
605
- readonly label: "Trend type";
606
- readonly placeholder: "Trend type";
607
- readonly options: {
608
- readonly linear: "Linear";
609
- readonly exponential: "Exponential";
610
- readonly quadratic: "Quadratic";
611
- readonly polynomial: "Polynomial";
612
- readonly logarithmic: "Logarithmic";
613
- readonly power: "Power";
614
- readonly loess: "Loess";
615
- };
616
- };
617
- readonly averageLineSeries: {
618
- readonly label: "Average line series";
619
- readonly placeholder: "Select series";
620
- readonly ariaLabel: "Series dropdown for average line";
621
- };
622
- readonly highlightSection: {
623
- readonly title: "Highlight";
624
- readonly button: "Highlight";
625
- readonly fadeColorLabel: "Fade color";
626
- };
627
- readonly titleAndSubtitleSection: {
628
- readonly title: "Title & Subtitle";
629
- readonly toggleTitle: "Title";
630
- readonly subtitle: "Subtitle";
631
- };
632
- readonly captionAndSourceSection: {
633
- readonly title: "Caption & Source";
634
- readonly caption: "Caption";
635
- readonly source: "Source";
636
- readonly url: "URL";
637
- readonly name: "Name";
638
- };
639
- };
640
- readonly elementsPanel: {
641
- readonly contentVisible: "Visible";
642
- readonly contentValue: "Value";
643
- readonly toolbarButton: "Elements";
644
- readonly headerSection: {
645
- readonly title: "Header";
646
- readonly toggleTitle: "Title";
647
- readonly subtitle: "Subtitle";
648
- };
649
- readonly footerSection: {
650
- readonly title: "Footer";
651
- readonly caption: "Caption";
652
- readonly source: "Source";
653
- readonly url: "URL";
654
- readonly name: "Name";
655
- };
656
- readonly textSizeSection: {
657
- readonly title: "Text size";
658
- readonly scaleFormat: (params: {
659
- value: string;
660
- }) => string;
661
- };
662
- readonly fontSection: {
663
- readonly title: "Font";
664
- };
665
- readonly sourceSection: {
666
- readonly title: "Source";
667
- readonly url: "URL";
668
- readonly name: "Name";
669
- };
670
- };
671
- readonly powerUpPanel: {
672
- readonly toolbarButton: "Power-ups";
673
- readonly goalSection: {
674
- readonly title: "Goal";
675
- readonly toggle: "Goal";
676
- readonly labelControl: "Label";
677
- readonly labelPlaceholder: "Goal";
678
- readonly labelAriaLabel: "Custom goal label";
679
- readonly valueControl: "Goal value";
680
- readonly byDate: "By date";
681
- readonly xAxisValue: "X-axis value";
682
- readonly optional: " (optional)";
683
- readonly xAxisReferenceAriaLabel: "X-axis reference value";
684
- readonly anyXAxisValue: "Any x-axis value";
685
- readonly selectValuePlaceholder: "Select value";
686
- };
687
- readonly trendSection: {
688
- readonly title: "Trend";
689
- readonly toggle: "Trend";
690
- };
691
- readonly averageSection: {
692
- readonly title: "Average";
693
- readonly toggle: "Average";
694
- readonly seriesLabel: "Average line series";
695
- readonly seriesPlaceholder: "Select series";
696
- readonly seriesAriaLabel: "Series dropdown for average line";
697
- };
698
- readonly trendType: {
699
- readonly label: "Trend type";
700
- readonly placeholder: "Trend type";
701
- readonly options: {
702
- readonly linear: "Linear";
703
- readonly exponential: "Exponential";
704
- readonly quadratic: "Quadratic";
705
- readonly polynomial: "Polynomial";
706
- readonly logarithmic: "Logarithmic";
707
- readonly power: "Power";
708
- readonly loess: "Loess";
709
- };
710
- };
711
- readonly valueInput: {
712
- readonly percentagePlaceholder: "Percentage";
713
- readonly numberPlaceholder: "Number";
714
- readonly percentageSymbol: "%";
715
- };
716
- };
717
- readonly highlighting: {
718
- readonly modeHelper: {
719
- readonly title: "Highlight mode";
720
- readonly hover: "Hover";
721
- readonly toHighlight: "to highlight";
722
- readonly anyElement: "any element";
723
- readonly escToExit: "to exit";
724
- readonly esc: "ESC";
725
- };
726
- readonly emptyState: "No highlight options available";
727
- readonly deleteAriaLabel: "Delete highlight";
728
- readonly highlightStyle: {
729
- readonly tint: "Tint";
730
- readonly grey: "Grey";
731
- };
732
- };
733
- readonly fineTunePanel: {
734
- readonly toolbarButton: "Fine tune";
735
- readonly detailSection: {
736
- readonly title: "Detail";
737
- readonly missingValues: "Missing values";
738
- };
739
- readonly lineStyleSection: {
740
- readonly title: "Line style";
741
- readonly lineCurve: "Line curve";
742
- readonly sharp: "Sharp";
743
- readonly smooth: "Smooth";
744
- };
745
- };
746
- readonly customThemeEditor: {
747
- readonly patternDropdownAriaLabel: "Pattern dropdown for series";
748
- readonly patterns: {
749
- readonly solid: "Solid";
750
- readonly pattern: "Pattern";
751
- readonly dotted: "Dotted";
752
- readonly dashed: "Dashed";
753
- readonly hatched: "Hatched";
754
- };
755
- readonly heatmapColorLabel: "Color";
756
- };
757
- readonly accessibility: {
758
- readonly toggleSection: (params: {
759
- title: string;
760
- }) => string;
761
- };
762
- readonly graphyDefaults: {
763
- readonly themeOptions: {
764
- readonly light: "Light";
765
- readonly dark: "Dark";
766
- };
767
- };
768
- };
769
218
  readonly graph: {
770
219
  readonly loading: "Loading";
771
220
  readonly error: "Something went wrong";
@@ -860,750 +309,14 @@ declare const dictionaries: {
860
309
  value: string;
861
310
  }) => string;
862
311
  };
863
- readonly titleEditor: {
864
- readonly titlePlaceholder: "Untitled";
865
- readonly subtitlePlaceholder: "Add a subtitle";
866
- };
867
- readonly toolbar: {
868
- readonly formatting: {
869
- readonly bold: "Bold";
870
- readonly italic: "Italic";
871
- readonly underline: "Underline";
872
- readonly link: "Link";
873
- };
874
- readonly link: {
875
- readonly ariaLabel: "Create link";
876
- readonly placeholder: "Type or paste a link...";
877
- readonly submit: "Submit";
878
- readonly urlLabel: "Link URL";
879
- readonly apply: "Apply link";
880
- };
881
- readonly font: {
882
- readonly label: "Font";
883
- readonly ariaLabel: "Font family";
884
- };
885
- readonly heading: {
886
- readonly label: "Heading level";
887
- readonly ariaLabel: "Text style";
888
- readonly text: "Text";
889
- readonly caption: "Caption";
890
- readonly heading1: "Heading 1";
891
- readonly heading2: "Heading 2";
892
- readonly heading3: "Heading 3";
893
- };
894
- readonly textAlign: {
895
- readonly left: "Align left";
896
- readonly center: "Align center";
897
- readonly right: "Align right";
898
- };
899
- readonly color: {
900
- readonly label: "Text color";
901
- };
902
- };
903
- readonly colorDropdown: {
904
- readonly colors: "Colors";
905
- readonly chartColors: "Chart colors";
906
- readonly custom: "Custom";
907
- readonly opacity: "Opacity";
908
- readonly transparent: "Transparent";
909
- readonly pickCustom: "Pick custom color";
910
- readonly pickColor: "Pick color";
911
- };
912
312
  readonly legend: {
913
313
  readonly hiddenItems: "Hidden legend items";
914
314
  };
915
- readonly annotations: {
916
- readonly differenceArrowToolbar: {
917
- readonly label: "Difference arrow options";
918
- readonly labelKind: {
919
- readonly ariaLabel: "Label";
920
- readonly absoluteDifference: "Absolute change";
921
- readonly relativeDifference: "Percentage change";
922
- readonly proportion: "Proportion";
923
- readonly suspectValue: "This value divides by a baseline of zero.";
924
- readonly incomparableEnds: "The two ends measure different quantities, so a difference between them has no meaning.";
925
- };
926
- readonly color: "Arrow colour";
927
- readonly size: {
928
- readonly ariaLabel: "Size";
929
- readonly small: "Small";
930
- readonly medium: "Medium";
931
- readonly large: "Large";
932
- };
933
- readonly swap: "Swap direction";
934
- readonly remove: "Remove arrow";
935
- };
936
- readonly baseMenu: {
937
- readonly pinNumber: "Pin number";
938
- readonly unpinNumber: "Unpin number";
939
- readonly annotate: "Annotate";
940
- readonly removeAnnotation: "Remove annotation";
941
- readonly highlight: "Highlight";
942
- readonly highlightWithLabel: (params: {
943
- label: string;
944
- }) => string;
945
- readonly removeHighlight: "Remove highlight";
946
- readonly differenceArrow: "Difference arrow";
947
- readonly addSticker: "Add sticker";
948
- readonly removeSticker: "Remove sticker";
949
- };
950
- readonly textMenu: {
951
- readonly title: "Annotate";
952
- readonly placeholder: "Add a comment";
953
- readonly addButton: "Add";
954
- };
955
- readonly highlights: {
956
- readonly menuTitle: "Highlight";
957
- readonly labels: {
958
- readonly bar: "bar";
959
- readonly barGroup: "group";
960
- readonly barStack: "stack";
961
- readonly barSeries: "series";
962
- readonly line: "line";
963
- readonly linePoint: "point";
964
- readonly lineSeries: "series";
965
- readonly scatterPoint: "point";
966
- readonly scatterSeries: "series";
967
- readonly pieSlice: "slice";
968
- readonly pointOrBar: "point / bar";
969
- readonly lineOrSeries: "line / series";
970
- };
971
- };
972
- readonly stickerMenu: {
973
- readonly title: "Add sticker";
974
- };
975
- readonly delete: "Delete";
976
- readonly arrow: {
977
- readonly thickness: {
978
- readonly label: "Thickness";
979
- readonly thin: "Thin";
980
- readonly medium: "Medium";
981
- readonly thick: "Thick";
982
- };
983
- readonly arrowhead: {
984
- readonly startPoint: "Start point";
985
- readonly endPoint: "End point";
986
- readonly lineArrow: "Line arrow";
987
- readonly none: "None";
988
- };
989
- readonly lineStyle: {
990
- readonly label: "Line style";
991
- readonly solid: "Solid";
992
- readonly dotted: "Dotted";
993
- };
994
- readonly stickerEffect: "Sticker effect";
995
- readonly toolbarAriaLabel: "Free-form arrow toolbar";
996
- readonly editorAriaLabel: "Arrow editor";
997
- };
998
- readonly differenceArrow: {
999
- readonly type: {
1000
- readonly proportion: "Proportion";
1001
- readonly difference: ({ absoluteDifference }: {
1002
- absoluteDifference: string;
1003
- }) => string;
1004
- readonly increase: ({ absoluteDifference }: {
1005
- absoluteDifference: string;
1006
- }) => string;
1007
- readonly decrease: ({ absoluteDifference }: {
1008
- absoluteDifference: string;
1009
- }) => string;
1010
- readonly percentageChange: ({ percentageChange }: {
1011
- percentageChange: string;
1012
- }) => string;
1013
- readonly percentIncrease: ({ percentageChange }: {
1014
- percentageChange: string;
1015
- }) => string;
1016
- readonly percentDecrease: ({ percentageChange }: {
1017
- percentageChange: string;
1018
- }) => string;
1019
- };
1020
- readonly size: {
1021
- readonly label: "Size";
1022
- readonly small: "Small";
1023
- readonly medium: "Medium";
1024
- readonly large: "Large";
1025
- };
1026
- readonly flipArrow: "Flip arrow";
1027
- readonly color: "Color";
1028
- readonly toolbarAriaLabel: "Difference arrow toolbar";
1029
- readonly editorAriaLabel: "Difference arrow editor";
1030
- };
1031
- readonly shape: {
1032
- readonly color: "Color";
1033
- readonly border: {
1034
- readonly label: "Border";
1035
- readonly none: "None";
1036
- readonly thin: ({ value }: {
1037
- value: string;
1038
- }) => string;
1039
- readonly medium: ({ value }: {
1040
- value: string;
1041
- }) => string;
1042
- readonly thick: ({ value }: {
1043
- value: string;
1044
- }) => string;
1045
- };
1046
- };
1047
- };
1048
315
  };
1049
316
  readonly dir: "ltr";
1050
317
  };
1051
- readonly 'en-US': LooseLocaleShape;
318
+ readonly 'en-US': LooseShapeOf<LocaleShape>;
1052
319
  readonly ar: {
1053
- readonly common: {
1054
- readonly save: "حفظ";
1055
- readonly cancel: "إلغاء";
1056
- readonly confirm: "تأكيد";
1057
- readonly delete: "حذف";
1058
- readonly confirmDelete: (params: {
1059
- item: string;
1060
- }) => string;
1061
- readonly abbreviations: {
1062
- readonly thousands: "ألف";
1063
- readonly millions: "مليون";
1064
- readonly billions: "مليار";
1065
- };
1066
- };
1067
- readonly editor: {
1068
- readonly title: "محرر Graphy";
1069
- readonly description: "قم بتحرير المحتوى الخاص بك هنا";
1070
- readonly graphTypes: {
1071
- readonly column: "أعمدة";
1072
- readonly columnStacked: "أعمدة مكدسة";
1073
- readonly columnStackedFill: "أعمدة مكدسة 100%";
1074
- readonly bar: "شريطي";
1075
- readonly barStacked: "أشرطة مكدسة";
1076
- readonly barStackedFill: "أشرطة مكدسة 100%";
1077
- readonly line: "خطي";
1078
- readonly areaStacked: "مساحة مكدسة";
1079
- readonly pie: "دائري";
1080
- readonly donut: "حلقي";
1081
- readonly scatter: "نقطي";
1082
- readonly bubble: "فقاعي";
1083
- readonly funnel: "قمعي";
1084
- readonly combo: "مركب";
1085
- readonly heatmap: "خريطة حرارية";
1086
- readonly waterfall: "شلالي";
1087
- readonly mekko: "ميكو";
1088
- readonly table: "جدول";
1089
- };
1090
- readonly sizePanel: {
1091
- readonly toolbarButton: "الحجم";
1092
- readonly presetsSection: {
1093
- readonly title: "إعدادات مسبقة";
1094
- };
1095
- readonly customSizeSection: {
1096
- readonly title: "حجم مخصص";
1097
- };
1098
- readonly presets: {
1099
- readonly googleSlides: "Google Slides / PowerPoint";
1100
- readonly webEmail: "ويب / بريد إلكتروني";
1101
- readonly linkedIn: "منشور LinkedIn";
1102
- readonly instagram: "منشور Instagram";
1103
- readonly tiktok: "TikTok / قصة Instagram";
1104
- readonly twitter: "X (Twitter)";
1105
- readonly mobile: "جوال";
1106
- };
1107
- readonly inputs: {
1108
- readonly unitLabel: "بكسل";
1109
- };
1110
- readonly validation: {
1111
- readonly maxSizeError: (params: {
1112
- max: number;
1113
- }) => string;
1114
- readonly minSizeError: (params: {
1115
- min: number;
1116
- }) => string;
1117
- };
1118
- };
1119
- readonly graphPanel: {
1120
- readonly toolbarButton: "الرسم البياني";
1121
- readonly graphTypeSection: {
1122
- readonly title: "نوع الرسم البياني";
1123
- };
1124
- readonly polarSection: {
1125
- readonly title: "قطبي";
1126
- readonly innerRadius: "نصف القطر الداخلي";
1127
- readonly startAngle: "زاوية البداية";
1128
- };
1129
- readonly barSection: {
1130
- readonly title: "الأعمدة";
1131
- readonly thickness: "سمك العمود";
1132
- readonly rounding: "التدوير";
1133
- readonly roundingOptions: {
1134
- readonly none: "بلا";
1135
- readonly xs: "XS";
1136
- readonly sm: "S";
1137
- readonly md: "M";
1138
- readonly lg: "L";
1139
- readonly xl: "XL";
1140
- readonly full: "كامل";
1141
- };
1142
- };
1143
- readonly graphOptionsSection: {
1144
- readonly title: "خيارات الرسم البياني";
1145
- };
1146
- readonly gridSection: {
1147
- readonly title: "الشبكة";
1148
- readonly horizontalGridLines: "خطوط أفقية";
1149
- readonly verticalGridLines: "خطوط رأسية";
1150
- readonly rings: "حلقات";
1151
- readonly spokes: "أشعة";
1152
- readonly gridStyle: "نمط الشبكة";
1153
- readonly gridThickness: "سمك الشبكة";
1154
- readonly lineStyles: {
1155
- readonly solid: "متصل";
1156
- readonly dashed: "متقطع";
1157
- readonly dotted: "منقط";
1158
- };
1159
- };
1160
- readonly graphOptions: {
1161
- readonly sortBars: "ترتيب من الأعلى ← الأدنى";
1162
- readonly showPoints: "إظهار النقاط";
1163
- readonly lineFill: "تعبئة تحت الخط";
1164
- readonly smoothLines: "خطوط ناعمة";
1165
- readonly stackTotals: "مجاميع المكدس";
1166
- readonly dataLabels: "تسميات البيانات";
1167
- readonly showPercentages: "إظهار النسب المئوية";
1168
- readonly categoryLabels: "تسميات الفئات";
1169
- };
1170
- readonly legendSection: {
1171
- readonly title: "وسيلة الإيضاح";
1172
- readonly auto: "تلقائي";
1173
- readonly top: "أعلى";
1174
- readonly bottom: "أسفل";
1175
- readonly left: "يسار";
1176
- readonly right: "يمين";
1177
- readonly none: "بدون";
1178
- readonly alignLabel: "المحاذاة";
1179
- readonly align: {
1180
- readonly auto: "تلقائي";
1181
- readonly start: "البداية";
1182
- readonly center: "الوسط";
1183
- readonly end: "النهاية";
1184
- };
1185
- readonly displayLabel: "النمط";
1186
- readonly display: {
1187
- readonly auto: "تلقائي";
1188
- readonly pill: "شارات";
1189
- readonly direct: "على الرسم";
1190
- };
1191
- };
1192
- readonly numberFormatSection: {
1193
- readonly title: "تنسيق الأرقام";
1194
- };
1195
- readonly numberFormat: {
1196
- readonly abbreviationLabel: "الاختصار";
1197
- readonly valueLabel: "القيمة";
1198
- readonly decimalPlacesLabel: "المنازل العشرية";
1199
- readonly options: {
1200
- readonly auto: "تلقائي";
1201
- readonly custom: "مخصص";
1202
- readonly none: "بدون";
1203
- };
1204
- };
1205
- readonly headlineNumberSize: {
1206
- readonly sizeLabel: "الحجم";
1207
- readonly valueLabel: "القيمة";
1208
- readonly sizes: {
1209
- readonly small: "ص";
1210
- readonly medium: "م";
1211
- readonly large: "ك";
1212
- };
1213
- };
1214
- readonly lineThickness: {
1215
- readonly label: "سمك الخط";
1216
- };
1217
- readonly pointSize: {
1218
- readonly label: "حجم النقطة";
1219
- readonly options: {
1220
- readonly auto: "تلقائي";
1221
- readonly custom: "مخصص";
1222
- };
1223
- };
1224
- readonly headlineNumberSection: {
1225
- readonly title: "الرقم الرئيسي";
1226
- readonly toggle: "مرئي";
1227
- readonly metricLabel: "المقياس";
1228
- readonly compareWithLabel: "مقارنة مع";
1229
- readonly metrics: {
1230
- readonly total: "المجموع";
1231
- readonly average: "المتوسط";
1232
- readonly current: "الأخير";
1233
- readonly conversion: "التحويل";
1234
- readonly left: "يسار";
1235
- };
1236
- readonly comparison: {
1237
- readonly first: "الأول";
1238
- readonly previous: "السابق";
1239
- };
1240
- readonly position: {
1241
- readonly above: "أعلى";
1242
- readonly center: "وسط";
1243
- };
1244
- };
1245
- readonly treatEmptyValues: {
1246
- readonly leaveGap: {
1247
- readonly label: "ترك فجوة في الرسم البياني";
1248
- readonly description: "يترك فاصلاً مرئياً في الخط حيث تكون البيانات مفقودة";
1249
- };
1250
- readonly fillZero: {
1251
- readonly label: "ملء بالصفر";
1252
- readonly description: "يعرض نقاط البيانات المفقودة كصفر";
1253
- };
1254
- readonly connectGaps: {
1255
- readonly label: "الاتصال عبر الفجوات";
1256
- readonly description: "يربط الخط بين النقاط المتاحة، متخطياً الفجوة";
1257
- };
1258
- };
1259
- readonly comboChartAppearance: {
1260
- readonly title: "مظهر الرسم البياني المركب";
1261
- readonly groupedBars: "أشرطة مجمعة";
1262
- readonly stackedBars: "أشرطة مكدسة";
1263
- readonly linesOnly: "خطوط فقط";
1264
- };
1265
- };
1266
- readonly columnMapping: {
1267
- readonly title: "البيانات";
1268
- readonly xAxis: "المحور السيني";
1269
- readonly yAxis: "المحور الصادي";
1270
- readonly leftYAxis: "المحور الصادي (يسار)";
1271
- readonly rightYAxis: "المحور الصادي (يمين)";
1272
- readonly slices: "القيم (الشرائح)";
1273
- readonly labels: "التسميات";
1274
- readonly size: "الحجم";
1275
- readonly shape: "الشكل";
1276
- readonly reset: "إعادة التعيين إلى تلقائي";
1277
- readonly addSeries: "إضافة سلسلة";
1278
- readonly removeSeries: "إزالة السلسلة";
1279
- };
1280
- readonly axesPanel: {
1281
- readonly toolbarButton: "المحاور";
1282
- readonly mainAxisSection: {
1283
- readonly yAxis: "المحور الصادي";
1284
- readonly xAxis: "المحور السيني";
1285
- };
1286
- readonly crossAxisSection: {
1287
- readonly xAxis: "المحور السيني";
1288
- readonly yAxis: "المحور الصادي";
1289
- };
1290
- readonly controls: {
1291
- readonly title: "العنوان";
1292
- readonly visible: "مرئي";
1293
- readonly ticks: "العلامات";
1294
- readonly labels: "التسميات";
1295
- readonly position: "الموضع";
1296
- readonly scale: "المقياس";
1297
- readonly startFrom: "البدء من";
1298
- readonly endAt: "الانتهاء عند";
1299
- readonly value: "القيمة";
1300
- readonly numberOfAxes: "عدد المحاور";
1301
- readonly reverse: "عكس";
1302
- };
1303
- readonly labelMode: {
1304
- readonly auto: "تلقائي";
1305
- readonly edges: "الحواف";
1306
- };
1307
- readonly scale: {
1308
- readonly auto: "تلقائي";
1309
- readonly log: "لوغاريتمي";
1310
- };
1311
- readonly startFrom: {
1312
- readonly auto: "تلقائي";
1313
- readonly zero: "صفر";
1314
- readonly custom: "مخصص";
1315
- };
1316
- readonly endAt: {
1317
- readonly auto: "تلقائي";
1318
- readonly custom: "مخصص";
1319
- };
1320
- readonly axisCount: {
1321
- readonly single: "مفرد";
1322
- readonly double: "مزدوج";
1323
- };
1324
- readonly position: {
1325
- readonly left: "يسار";
1326
- readonly right: "يمين";
1327
- readonly top: "أعلى";
1328
- readonly bottom: "أسفل";
1329
- };
1330
- readonly yesNo: {
1331
- readonly yes: "نعم";
1332
- readonly no: "لا";
1333
- };
1334
- };
1335
- readonly colorPanel: {
1336
- readonly toolbarButton: "اللون";
1337
- readonly themeSection: {
1338
- readonly title: "السمة";
1339
- };
1340
- readonly appearanceSection: {
1341
- readonly title: "المظهر";
1342
- readonly highlightStyle: "التمييز";
1343
- };
1344
- readonly paletteSection: {
1345
- readonly title: "لوحة الألوان";
1346
- readonly colorScheme: "نظام الألوان";
1347
- readonly colors: "الألوان";
1348
- readonly colorPalettes: "لوحات الألوان";
1349
- };
1350
- readonly paletteMode: {
1351
- readonly preset: "مسبق";
1352
- readonly brand: "العلامة التجارية";
1353
- readonly freestyle: "حر";
1354
- };
1355
- readonly paletteThemes: {
1356
- readonly colorful: "ملون";
1357
- readonly pastel: "باستيل";
1358
- readonly neon: "نيون";
1359
- };
1360
- readonly backgroundSection: {
1361
- readonly title: "الخلفية";
1362
- readonly black: "أسود";
1363
- readonly white: "أبيض";
1364
- readonly grey: "رمادي";
1365
- readonly tint: "صبغة";
1366
- readonly custom: "مخصص";
1367
- readonly none: "بدون";
1368
- };
1369
- readonly borderSection: {
1370
- readonly title: "الحدود";
1371
- readonly borderColor: "لون الحدود";
1372
- readonly thickness: "السمك";
1373
- readonly cornerRadius: "نصف قطر الزاوية";
1374
- };
1375
- readonly borderType: {
1376
- readonly solid: "صلب";
1377
- readonly gradient: "متدرج";
1378
- readonly grey: "رمادي";
1379
- readonly preset: "مسبق";
1380
- readonly custom: "مخصص";
1381
- readonly none: "بدون";
1382
- };
1383
- readonly presetGradients: {
1384
- readonly lilac: "ليلكي";
1385
- readonly neonPink: "وردي نيون";
1386
- readonly blackberry: "توت أسود";
1387
- readonly sun: "شمس";
1388
- readonly iceland: "آيسلندا";
1389
- readonly sunset: "غروب";
1390
- readonly ultraviolet: "فوق بنفسجي";
1391
- readonly purple: "أرجواني";
1392
- readonly iceCream: "آيس كريم";
1393
- readonly mint: "نعناع";
1394
- readonly cool: "بارد";
1395
- readonly fresh: "منعش";
1396
- };
1397
- };
1398
- readonly designPanel: {
1399
- readonly toolbarButton: "التصميم";
1400
- readonly defaultExpanded: "لوحة الألوان";
1401
- };
1402
- readonly annotatePanel: {
1403
- readonly toolbarButton: "التعليقات";
1404
- readonly callOutSection: {
1405
- readonly title: "وسائل الشرح";
1406
- readonly text: "نص";
1407
- readonly arrow: "سهم";
1408
- readonly box: "مربع";
1409
- readonly difference: "الفرق";
1410
- };
1411
- readonly highlightSection: {
1412
- readonly title: "التمييز";
1413
- readonly button: "تمييز";
1414
- readonly colorLabel: "لون التمييز";
1415
- };
1416
- };
1417
- readonly annotationsPanel: {
1418
- readonly toolbarButton: "التعليقات";
1419
- readonly freeformSection: {
1420
- readonly title: "حر";
1421
- readonly text: "نص";
1422
- readonly arrow: "سهم";
1423
- readonly box: "مربع";
1424
- readonly difference: "فرق";
1425
- };
1426
- readonly goalSection: {
1427
- readonly title: "الهدف";
1428
- readonly labelControl: "التسمية";
1429
- readonly labelPlaceholder: "الهدف";
1430
- readonly labelAriaLabel: "تسمية الهدف المخصصة";
1431
- readonly valueControl: "قيمة الهدف";
1432
- readonly valueAriaLabel: "قيمة الهدف";
1433
- readonly byDate: "حسب التاريخ";
1434
- readonly xAxisValue: "قيمة المحور السيني";
1435
- readonly optional: "(اختياري)";
1436
- };
1437
- readonly trendsAndAveragesSection: {
1438
- readonly title: "الاتجاهات والمتوسطات";
1439
- readonly trend: "الاتجاه";
1440
- readonly average: "المتوسط";
1441
- };
1442
- readonly trendType: {
1443
- readonly label: "نوع الاتجاه";
1444
- readonly placeholder: "نوع الاتجاه";
1445
- readonly options: {
1446
- readonly linear: "خطي";
1447
- readonly exponential: "أسي";
1448
- readonly quadratic: "تربيعي";
1449
- readonly polynomial: "متعدد الحدود";
1450
- readonly logarithmic: "لوغاريتمي";
1451
- readonly power: "قوة";
1452
- readonly loess: "لويس";
1453
- };
1454
- };
1455
- readonly averageLineSeries: {
1456
- readonly label: "سلسلة خط المتوسط";
1457
- readonly placeholder: "اختر السلسلة";
1458
- readonly ariaLabel: "قائمة منسدلة للسلسلة لخط المتوسط";
1459
- };
1460
- readonly highlightSection: {
1461
- readonly title: "التمييز";
1462
- readonly button: "تمييز";
1463
- readonly fadeColorLabel: "لون التلاشي";
1464
- };
1465
- readonly titleAndSubtitleSection: {
1466
- readonly title: "العنوان والعنوان الفرعي";
1467
- readonly toggleTitle: "العنوان";
1468
- readonly subtitle: "العنوان الفرعي";
1469
- };
1470
- readonly captionAndSourceSection: {
1471
- readonly title: "التسمية التوضيحية والمصدر";
1472
- readonly caption: "التسمية التوضيحية";
1473
- readonly source: "المصدر";
1474
- readonly url: "الرابط";
1475
- readonly name: "الاسم";
1476
- };
1477
- };
1478
- readonly elementsPanel: {
1479
- readonly contentVisible: "مرئي";
1480
- readonly contentValue: "القيمة";
1481
- readonly toolbarButton: "العناصر";
1482
- readonly headerSection: {
1483
- readonly title: "الرأس";
1484
- readonly toggleTitle: "العنوان";
1485
- readonly subtitle: "العنوان الفرعي";
1486
- };
1487
- readonly footerSection: {
1488
- readonly title: "التذييل";
1489
- readonly caption: "التسمية التوضيحية";
1490
- readonly source: "المصدر";
1491
- readonly url: "الرابط";
1492
- readonly name: "الاسم";
1493
- };
1494
- readonly textSizeSection: {
1495
- readonly title: "حجم النص";
1496
- readonly scaleFormat: (params: {
1497
- value: string;
1498
- }) => string;
1499
- };
1500
- readonly fontSection: {
1501
- readonly title: "الخط";
1502
- };
1503
- readonly sourceSection: {
1504
- readonly title: "المصدر";
1505
- readonly url: "الرابط";
1506
- readonly name: "الاسم";
1507
- };
1508
- };
1509
- readonly powerUpPanel: {
1510
- readonly toolbarButton: "التحسينات";
1511
- readonly goalSection: {
1512
- readonly title: "الهدف";
1513
- readonly toggle: "الهدف";
1514
- readonly labelControl: "التسمية";
1515
- readonly labelPlaceholder: "الهدف";
1516
- readonly labelAriaLabel: "تسمية الهدف المخصصة";
1517
- readonly valueControl: "قيمة الهدف";
1518
- readonly byDate: "حسب التاريخ";
1519
- readonly xAxisValue: "قيمة المحور السيني";
1520
- readonly optional: " (اختياري)";
1521
- readonly xAxisReferenceAriaLabel: "قيمة مرجعية للمحور السيني";
1522
- readonly anyXAxisValue: "أي قيمة للمحور السيني";
1523
- readonly selectValuePlaceholder: "اختر القيمة";
1524
- };
1525
- readonly trendSection: {
1526
- readonly title: "الاتجاه";
1527
- readonly toggle: "الاتجاه";
1528
- };
1529
- readonly averageSection: {
1530
- readonly title: "المتوسط";
1531
- readonly toggle: "المتوسط";
1532
- readonly seriesLabel: "سلسلة خط المتوسط";
1533
- readonly seriesPlaceholder: "اختر السلسلة";
1534
- readonly seriesAriaLabel: "قائمة منسدلة للسلسلة لخط المتوسط";
1535
- };
1536
- readonly trendType: {
1537
- readonly label: "نوع الاتجاه";
1538
- readonly placeholder: "نوع الاتجاه";
1539
- readonly options: {
1540
- readonly linear: "خطي";
1541
- readonly exponential: "أسي";
1542
- readonly quadratic: "تربيعي";
1543
- readonly polynomial: "متعدد الحدود";
1544
- readonly logarithmic: "لوغاريتمي";
1545
- readonly power: "قوة";
1546
- readonly loess: "لويس";
1547
- };
1548
- };
1549
- readonly valueInput: {
1550
- readonly percentagePlaceholder: "النسبة المئوية";
1551
- readonly numberPlaceholder: "الرقم";
1552
- readonly percentageSymbol: "٪";
1553
- };
1554
- };
1555
- readonly highlighting: {
1556
- readonly modeHelper: {
1557
- readonly title: "وضع التمييز";
1558
- readonly hover: "مرر";
1559
- readonly toHighlight: "للتمييز";
1560
- readonly anyElement: "أي عنصر";
1561
- readonly escToExit: "للخروج";
1562
- readonly esc: "ESC";
1563
- };
1564
- readonly emptyState: "لا تتوفر خيارات تمييز";
1565
- readonly deleteAriaLabel: "حذف التمييز";
1566
- readonly highlightStyle: {
1567
- readonly tint: "صبغة";
1568
- readonly grey: "رمادي";
1569
- };
1570
- };
1571
- readonly fineTunePanel: {
1572
- readonly toolbarButton: "الضبط الدقيق";
1573
- readonly detailSection: {
1574
- readonly title: "التفاصيل";
1575
- readonly missingValues: "القيم المفقودة";
1576
- };
1577
- readonly lineStyleSection: {
1578
- readonly title: "نمط الخط";
1579
- readonly lineCurve: "انحناء الخط";
1580
- readonly sharp: "حاد";
1581
- readonly smooth: "ناعم";
1582
- };
1583
- };
1584
- readonly customThemeEditor: {
1585
- readonly patternDropdownAriaLabel: "قائمة منسدلة للنمط للسلسلة";
1586
- readonly patterns: {
1587
- readonly solid: "صلب";
1588
- readonly pattern: "نمط";
1589
- readonly dotted: "منقط";
1590
- readonly dashed: "متقطع";
1591
- readonly hatched: "مظلل";
1592
- };
1593
- readonly heatmapColorLabel: "اللون";
1594
- };
1595
- readonly accessibility: {
1596
- readonly toggleSection: (params: {
1597
- title: string;
1598
- }) => string;
1599
- };
1600
- readonly graphyDefaults: {
1601
- readonly themeOptions: {
1602
- readonly light: "فاتح";
1603
- readonly dark: "داكن";
1604
- };
1605
- };
1606
- };
1607
320
  readonly graph: {
1608
321
  readonly loading: "جاري التحميل";
1609
322
  readonly error: "حدث خطأ ما";
@@ -1698,749 +411,13 @@ declare const dictionaries: {
1698
411
  value: string;
1699
412
  }) => string;
1700
413
  };
1701
- readonly titleEditor: {
1702
- readonly titlePlaceholder: "بدون عنوان";
1703
- readonly subtitlePlaceholder: "إضافة عنوان فرعي";
1704
- };
1705
- readonly toolbar: {
1706
- readonly formatting: {
1707
- readonly bold: "عريض";
1708
- readonly italic: "مائل";
1709
- readonly underline: "تحته خط";
1710
- readonly link: "رابط";
1711
- };
1712
- readonly link: {
1713
- readonly ariaLabel: "إنشاء رابط";
1714
- readonly placeholder: "اكتب أو الصق رابطاً...";
1715
- readonly submit: "إرسال";
1716
- readonly urlLabel: "عنوان الرابط";
1717
- readonly apply: "تطبيق الرابط";
1718
- };
1719
- readonly font: {
1720
- readonly label: "الخط";
1721
- readonly ariaLabel: "عائلة الخط";
1722
- };
1723
- readonly heading: {
1724
- readonly label: "مستوى العنوان";
1725
- readonly ariaLabel: "نمط النص";
1726
- readonly text: "نص";
1727
- readonly caption: "تسمية توضيحية";
1728
- readonly heading1: "عنوان 1";
1729
- readonly heading2: "عنوان 2";
1730
- readonly heading3: "عنوان 3";
1731
- };
1732
- readonly textAlign: {
1733
- readonly left: "محاذاة لليسار";
1734
- readonly center: "توسيط";
1735
- readonly right: "محاذاة لليمين";
1736
- };
1737
- readonly color: {
1738
- readonly label: "لون النص";
1739
- };
1740
- };
1741
- readonly colorDropdown: {
1742
- readonly colors: "الألوان";
1743
- readonly chartColors: "ألوان الرسم البياني";
1744
- readonly custom: "مخصص";
1745
- readonly opacity: "الشفافية";
1746
- readonly transparent: "شفاف";
1747
- readonly pickCustom: "اختيار لون مخصص";
1748
- readonly pickColor: "اختيار لون";
1749
- };
1750
414
  readonly legend: {
1751
415
  readonly hiddenItems: "عناصر وسيلة الإيضاح المخفية";
1752
416
  };
1753
- readonly annotations: {
1754
- readonly differenceArrowToolbar: {
1755
- readonly label: "خيارات سهم الفرق";
1756
- readonly labelKind: {
1757
- readonly ariaLabel: "التسمية";
1758
- readonly absoluteDifference: "التغير المطلق";
1759
- readonly relativeDifference: "التغير المئوي";
1760
- readonly proportion: "النسبة";
1761
- readonly suspectValue: "تقسم هذه القيمة على أساس يساوي صفرًا.";
1762
- readonly incomparableEnds: "يقيس الطرفان كميتين مختلفتين، لذا لا معنى للفرق بينهما.";
1763
- };
1764
- readonly color: "لون السهم";
1765
- readonly size: {
1766
- readonly ariaLabel: "الحجم";
1767
- readonly small: "صغير";
1768
- readonly medium: "متوسط";
1769
- readonly large: "كبير";
1770
- };
1771
- readonly swap: "عكس الاتجاه";
1772
- readonly remove: "إزالة السهم";
1773
- };
1774
- readonly baseMenu: {
1775
- readonly pinNumber: "تثبيت الرقم";
1776
- readonly unpinNumber: "إلغاء تثبيت الرقم";
1777
- readonly annotate: "تعليق";
1778
- readonly removeAnnotation: "إزالة التعليق";
1779
- readonly highlight: "تمييز";
1780
- readonly highlightWithLabel: (params: {
1781
- label: string;
1782
- }) => string;
1783
- readonly removeHighlight: "إزالة التمييز";
1784
- readonly differenceArrow: "سهم الفرق";
1785
- readonly addSticker: "إضافة ملصق";
1786
- readonly removeSticker: "إزالة الملصق";
1787
- };
1788
- readonly textMenu: {
1789
- readonly title: "تعليق";
1790
- readonly placeholder: "إضافة تعليق";
1791
- readonly addButton: "إضافة";
1792
- };
1793
- readonly highlights: {
1794
- readonly menuTitle: "تمييز";
1795
- readonly labels: {
1796
- readonly bar: "شريط";
1797
- readonly barGroup: "مجموعة";
1798
- readonly barStack: "مكدس";
1799
- readonly barSeries: "سلسلة";
1800
- readonly line: "خط";
1801
- readonly linePoint: "نقطة";
1802
- readonly lineSeries: "سلسلة";
1803
- readonly scatterPoint: "نقطة";
1804
- readonly scatterSeries: "سلسلة";
1805
- readonly pieSlice: "شريحة";
1806
- readonly pointOrBar: "نقطة / شريط";
1807
- readonly lineOrSeries: "خط / سلسلة";
1808
- };
1809
- };
1810
- readonly stickerMenu: {
1811
- readonly title: "إضافة ملصق";
1812
- };
1813
- readonly delete: "حذف";
1814
- readonly arrow: {
1815
- readonly thickness: {
1816
- readonly label: "السمك";
1817
- readonly thin: "رفيع";
1818
- readonly medium: "متوسط";
1819
- readonly thick: "سميك";
1820
- };
1821
- readonly arrowhead: {
1822
- readonly startPoint: "نقطة البداية";
1823
- readonly endPoint: "نقطة النهاية";
1824
- readonly lineArrow: "سهم الخط";
1825
- readonly none: "بدون";
1826
- };
1827
- readonly lineStyle: {
1828
- readonly label: "نمط الخط";
1829
- readonly solid: "صلب";
1830
- readonly dotted: "منقط";
1831
- };
1832
- readonly stickerEffect: "تأثير الملصق";
1833
- readonly toolbarAriaLabel: "شريط أدوات السهم الحر";
1834
- readonly editorAriaLabel: "محرر السهم";
1835
- };
1836
- readonly differenceArrow: {
1837
- readonly type: {
1838
- readonly proportion: "النسبة";
1839
- readonly difference: ({ absoluteDifference }: {
1840
- absoluteDifference: string;
1841
- }) => string;
1842
- readonly increase: ({ absoluteDifference }: {
1843
- absoluteDifference: string;
1844
- }) => string;
1845
- readonly decrease: ({ absoluteDifference }: {
1846
- absoluteDifference: string;
1847
- }) => string;
1848
- readonly percentageChange: ({ percentageChange }: {
1849
- percentageChange: string;
1850
- }) => string;
1851
- readonly percentIncrease: ({ percentageChange }: {
1852
- percentageChange: string;
1853
- }) => string;
1854
- readonly percentDecrease: ({ percentageChange }: {
1855
- percentageChange: string;
1856
- }) => string;
1857
- };
1858
- readonly size: {
1859
- readonly label: "الحجم";
1860
- readonly small: "صغير";
1861
- readonly medium: "متوسط";
1862
- readonly large: "كبير";
1863
- };
1864
- readonly flipArrow: "عكس السهم";
1865
- readonly color: "اللون";
1866
- readonly toolbarAriaLabel: "شريط أدوات سهم الفرق";
1867
- readonly editorAriaLabel: "محرر سهم الفرق";
1868
- };
1869
- readonly shape: {
1870
- readonly color: "اللون";
1871
- readonly border: {
1872
- readonly label: "الحدود";
1873
- readonly none: "بدون";
1874
- readonly thin: ({ value }: {
1875
- value: string;
1876
- }) => string;
1877
- readonly medium: ({ value }: {
1878
- value: string;
1879
- }) => string;
1880
- readonly thick: ({ value }: {
1881
- value: string;
1882
- }) => string;
1883
- };
1884
- };
1885
- };
1886
417
  };
1887
418
  readonly dir: "rtl";
1888
419
  };
1889
420
  readonly 'pt-PT': {
1890
- readonly common: {
1891
- readonly save: "Guardar";
1892
- readonly cancel: "Cancelar";
1893
- readonly confirm: "Confirmar";
1894
- readonly delete: "Eliminar";
1895
- readonly confirmDelete: (params: {
1896
- item: string;
1897
- }) => string;
1898
- readonly abbreviations: {
1899
- readonly thousands: "mil";
1900
- readonly millions: "M";
1901
- readonly billions: "MM";
1902
- };
1903
- };
1904
- readonly editor: {
1905
- readonly title: "Editor Graphy";
1906
- readonly description: "Edite o seu conteúdo aqui";
1907
- readonly graphTypes: {
1908
- readonly column: "Colunas";
1909
- readonly columnStacked: "Colunas sobrepostas";
1910
- readonly columnStackedFill: "100% Colunas sobrepostas";
1911
- readonly bar: "Barras";
1912
- readonly barStacked: "Barras sobrepostas";
1913
- readonly barStackedFill: "100% Barras sobrepostas";
1914
- readonly line: "Linha";
1915
- readonly areaStacked: "Área sobreposta";
1916
- readonly pie: "Circular";
1917
- readonly donut: "Donut";
1918
- readonly scatter: "Dispersão";
1919
- readonly bubble: "Bolhas";
1920
- readonly funnel: "Funil";
1921
- readonly combo: "Combinado";
1922
- readonly heatmap: "Mapa de Calor";
1923
- readonly waterfall: "Cascata";
1924
- readonly mekko: "Mekko";
1925
- readonly table: "Tabela";
1926
- };
1927
- readonly sizePanel: {
1928
- readonly toolbarButton: "Tamanho";
1929
- readonly presetsSection: {
1930
- readonly title: "Predefinições";
1931
- };
1932
- readonly customSizeSection: {
1933
- readonly title: "Tamanho personalizado";
1934
- };
1935
- readonly presets: {
1936
- readonly googleSlides: "Google Slides / PowerPoint";
1937
- readonly webEmail: "Web / email";
1938
- readonly linkedIn: "Publicação LinkedIn";
1939
- readonly instagram: "Publicação Instagram";
1940
- readonly tiktok: "TikTok / Instagram story";
1941
- readonly twitter: "X (Twitter)";
1942
- readonly mobile: "Móvel";
1943
- };
1944
- readonly inputs: {
1945
- readonly unitLabel: "px";
1946
- };
1947
- readonly validation: {
1948
- readonly maxSizeError: (params: {
1949
- max: number;
1950
- }) => string;
1951
- readonly minSizeError: (params: {
1952
- min: number;
1953
- }) => string;
1954
- };
1955
- };
1956
- readonly graphPanel: {
1957
- readonly toolbarButton: "Gráfico";
1958
- readonly graphTypeSection: {
1959
- readonly title: "Tipo de gráfico";
1960
- };
1961
- readonly polarSection: {
1962
- readonly title: "Polar";
1963
- readonly innerRadius: "Raio interno";
1964
- readonly startAngle: "Ângulo inicial";
1965
- };
1966
- readonly barSection: {
1967
- readonly title: "Barras";
1968
- readonly thickness: "Espessura da barra";
1969
- readonly rounding: "Arredondamento";
1970
- readonly roundingOptions: {
1971
- readonly none: "Nenhum";
1972
- readonly xs: "XS";
1973
- readonly sm: "S";
1974
- readonly md: "M";
1975
- readonly lg: "L";
1976
- readonly xl: "XL";
1977
- readonly full: "Total";
1978
- };
1979
- };
1980
- readonly graphOptionsSection: {
1981
- readonly title: "Opções do gráfico";
1982
- };
1983
- readonly gridSection: {
1984
- readonly title: "Grelha";
1985
- readonly horizontalGridLines: "Linhas horizontais";
1986
- readonly verticalGridLines: "Linhas verticais";
1987
- readonly rings: "Anéis";
1988
- readonly spokes: "Raios";
1989
- readonly gridStyle: "Estilo da grelha";
1990
- readonly gridThickness: "Espessura da grelha";
1991
- readonly lineStyles: {
1992
- readonly solid: "Sólida";
1993
- readonly dashed: "Tracejada";
1994
- readonly dotted: "Pontilhada";
1995
- };
1996
- };
1997
- readonly graphOptions: {
1998
- readonly sortBars: "Ordenar maior → menor";
1999
- readonly showPoints: "Mostrar pontos";
2000
- readonly lineFill: "Preencher sob a linha";
2001
- readonly smoothLines: "Linhas suaves";
2002
- readonly stackTotals: "Totais sobrepostos";
2003
- readonly dataLabels: "Etiquetas de dados";
2004
- readonly showPercentages: "Mostrar percentagens";
2005
- readonly categoryLabels: "Etiquetas de categorias";
2006
- };
2007
- readonly legendSection: {
2008
- readonly title: "Legenda";
2009
- readonly auto: "Automático";
2010
- readonly top: "Topo";
2011
- readonly bottom: "Fundo";
2012
- readonly left: "Esquerda";
2013
- readonly right: "Direita";
2014
- readonly none: "Nenhuma";
2015
- readonly alignLabel: "Alinhamento";
2016
- readonly align: {
2017
- readonly auto: "Automático";
2018
- readonly start: "Início";
2019
- readonly center: "Centro";
2020
- readonly end: "Fim";
2021
- };
2022
- readonly displayLabel: "Estilo";
2023
- readonly display: {
2024
- readonly auto: "Automático";
2025
- readonly pill: "Etiquetas";
2026
- readonly direct: "No gráfico";
2027
- };
2028
- };
2029
- readonly numberFormatSection: {
2030
- readonly title: "Formato numérico";
2031
- };
2032
- readonly numberFormat: {
2033
- readonly abbreviationLabel: "Abreviação";
2034
- readonly valueLabel: "Valor";
2035
- readonly decimalPlacesLabel: "Casas decimais";
2036
- readonly options: {
2037
- readonly auto: "Automático";
2038
- readonly custom: "Personalizado";
2039
- readonly none: "Nenhum";
2040
- };
2041
- };
2042
- readonly headlineNumberSize: {
2043
- readonly sizeLabel: "Tamanho";
2044
- readonly valueLabel: "Valor";
2045
- readonly sizes: {
2046
- readonly small: "P";
2047
- readonly medium: "M";
2048
- readonly large: "G";
2049
- };
2050
- };
2051
- readonly lineThickness: {
2052
- readonly label: "Espessura da linha";
2053
- };
2054
- readonly pointSize: {
2055
- readonly label: "Tamanho do ponto";
2056
- readonly options: {
2057
- readonly auto: "Automático";
2058
- readonly custom: "Personalizado";
2059
- };
2060
- };
2061
- readonly headlineNumberSection: {
2062
- readonly title: "Número destaque";
2063
- readonly toggle: "Visível";
2064
- readonly metricLabel: "Métrica";
2065
- readonly compareWithLabel: "Comparar com";
2066
- readonly metrics: {
2067
- readonly total: "Total";
2068
- readonly average: "Média";
2069
- readonly current: "Último";
2070
- readonly conversion: "Conversão";
2071
- readonly left: "Esquerda";
2072
- };
2073
- readonly comparison: {
2074
- readonly first: "Primeiro";
2075
- readonly previous: "Anterior";
2076
- };
2077
- readonly position: {
2078
- readonly above: "Acima";
2079
- readonly center: "Centro";
2080
- };
2081
- };
2082
- readonly treatEmptyValues: {
2083
- readonly leaveGap: {
2084
- readonly label: "Deixar espaço no gráfico";
2085
- readonly description: "Deixa uma quebra visível na linha onde faltam dados";
2086
- };
2087
- readonly fillZero: {
2088
- readonly label: "Preencher com zero";
2089
- readonly description: "Exibe pontos de dados em falta como zero";
2090
- };
2091
- readonly connectGaps: {
2092
- readonly label: "Ligar através dos espaços";
2093
- readonly description: "Une a linha entre pontos disponíveis, ignorando o espaço";
2094
- };
2095
- };
2096
- readonly comboChartAppearance: {
2097
- readonly title: "Aparência do gráfico combinado";
2098
- readonly groupedBars: "Barras agrupadas";
2099
- readonly stackedBars: "Barras sobrepostas";
2100
- readonly linesOnly: "Apenas linhas";
2101
- };
2102
- };
2103
- readonly columnMapping: {
2104
- readonly title: "Dados";
2105
- readonly xAxis: "Eixo X";
2106
- readonly yAxis: "Eixo Y";
2107
- readonly leftYAxis: "Eixo Y (esquerda)";
2108
- readonly rightYAxis: "Eixo Y (direita)";
2109
- readonly slices: "Valores (fatias)";
2110
- readonly labels: "Etiquetas";
2111
- readonly size: "Tamanho";
2112
- readonly shape: "Forma";
2113
- readonly reset: "Repor para automático";
2114
- readonly addSeries: "Adicionar série";
2115
- readonly removeSeries: "Remover série";
2116
- };
2117
- readonly axesPanel: {
2118
- readonly toolbarButton: "Eixos";
2119
- readonly mainAxisSection: {
2120
- readonly yAxis: "Eixo Y";
2121
- readonly xAxis: "Eixo X";
2122
- };
2123
- readonly crossAxisSection: {
2124
- readonly xAxis: "Eixo X";
2125
- readonly yAxis: "Eixo Y";
2126
- };
2127
- readonly controls: {
2128
- readonly title: "Título";
2129
- readonly visible: "Visível";
2130
- readonly ticks: "Marcas";
2131
- readonly labels: "Etiquetas";
2132
- readonly position: "Posição";
2133
- readonly scale: "Escala";
2134
- readonly startFrom: "Iniciar de";
2135
- readonly endAt: "Terminar em";
2136
- readonly value: "Valor";
2137
- readonly numberOfAxes: "Número de eixos";
2138
- readonly reverse: "Inverter";
2139
- };
2140
- readonly labelMode: {
2141
- readonly auto: "Automático";
2142
- readonly edges: "Extremos";
2143
- };
2144
- readonly scale: {
2145
- readonly auto: "Automático";
2146
- readonly log: "Logarítmico";
2147
- };
2148
- readonly startFrom: {
2149
- readonly auto: "Automático";
2150
- readonly zero: "Zero";
2151
- readonly custom: "Personalizado";
2152
- };
2153
- readonly endAt: {
2154
- readonly auto: "Automático";
2155
- readonly custom: "Personalizado";
2156
- };
2157
- readonly axisCount: {
2158
- readonly single: "Único";
2159
- readonly double: "Duplo";
2160
- };
2161
- readonly position: {
2162
- readonly left: "Esquerda";
2163
- readonly right: "Direita";
2164
- readonly top: "Topo";
2165
- readonly bottom: "Fundo";
2166
- };
2167
- readonly yesNo: {
2168
- readonly yes: "Sim";
2169
- readonly no: "Não";
2170
- };
2171
- };
2172
- readonly colorPanel: {
2173
- readonly toolbarButton: "Cor";
2174
- readonly themeSection: {
2175
- readonly title: "Tema";
2176
- };
2177
- readonly appearanceSection: {
2178
- readonly title: "Aparência";
2179
- readonly highlightStyle: "Destaque";
2180
- };
2181
- readonly paletteSection: {
2182
- readonly title: "Paleta";
2183
- readonly colorScheme: "Esquema de cores";
2184
- readonly colors: "Cores";
2185
- readonly colorPalettes: "Paletas de cores";
2186
- };
2187
- readonly paletteMode: {
2188
- readonly preset: "Predefinido";
2189
- readonly brand: "Marca";
2190
- readonly freestyle: "Livre";
2191
- };
2192
- readonly paletteThemes: {
2193
- readonly colorful: "Colorido";
2194
- readonly pastel: "Pastel";
2195
- readonly neon: "Néon";
2196
- };
2197
- readonly backgroundSection: {
2198
- readonly title: "Fundo";
2199
- readonly black: "Preto";
2200
- readonly white: "Branco";
2201
- readonly grey: "Cinzento";
2202
- readonly tint: "Tonalidade";
2203
- readonly custom: "Personalizado";
2204
- readonly none: "Nenhum";
2205
- };
2206
- readonly borderSection: {
2207
- readonly title: "Contorno";
2208
- readonly borderColor: "Cor do contorno";
2209
- readonly thickness: "Espessura";
2210
- readonly cornerRadius: "Raio dos cantos";
2211
- };
2212
- readonly borderType: {
2213
- readonly solid: "Sólido";
2214
- readonly gradient: "Gradiente";
2215
- readonly grey: "Cinzento";
2216
- readonly preset: "Predefinido";
2217
- readonly custom: "Personalizado";
2218
- readonly none: "Nenhum";
2219
- };
2220
- readonly presetGradients: {
2221
- readonly lilac: "Lilás";
2222
- readonly neonPink: "Rosa Néon";
2223
- readonly blackberry: "Amora";
2224
- readonly sun: "Sol";
2225
- readonly iceland: "Islândia";
2226
- readonly sunset: "Pôr do Sol";
2227
- readonly ultraviolet: "Ultravioleta";
2228
- readonly purple: "Roxo";
2229
- readonly iceCream: "Gelado";
2230
- readonly mint: "Menta";
2231
- readonly cool: "Frio";
2232
- readonly fresh: "Fresco";
2233
- };
2234
- };
2235
- readonly designPanel: {
2236
- readonly toolbarButton: "Design";
2237
- readonly defaultExpanded: "Paleta";
2238
- };
2239
- readonly annotatePanel: {
2240
- readonly toolbarButton: "Anotar";
2241
- readonly callOutSection: {
2242
- readonly title: "Destaques";
2243
- readonly text: "Texto";
2244
- readonly arrow: "Seta";
2245
- readonly box: "Caixa";
2246
- readonly difference: "Diferença";
2247
- };
2248
- readonly highlightSection: {
2249
- readonly title: "Realce";
2250
- readonly button: "Realçar";
2251
- readonly colorLabel: "Cor do realce";
2252
- };
2253
- };
2254
- readonly annotationsPanel: {
2255
- readonly toolbarButton: "Anotar";
2256
- readonly freeformSection: {
2257
- readonly title: "Forma livre";
2258
- readonly text: "Texto";
2259
- readonly arrow: "Seta";
2260
- readonly box: "Caixa";
2261
- readonly difference: "Diferença";
2262
- };
2263
- readonly goalSection: {
2264
- readonly title: "Objetivo";
2265
- readonly labelControl: "Etiqueta";
2266
- readonly labelPlaceholder: "Objetivo";
2267
- readonly labelAriaLabel: "Etiqueta de objetivo personalizada";
2268
- readonly valueControl: "Valor do objetivo";
2269
- readonly valueAriaLabel: "Valor do objetivo";
2270
- readonly byDate: "Por data";
2271
- readonly xAxisValue: "Valor do eixo X";
2272
- readonly optional: "(opcional)";
2273
- };
2274
- readonly trendsAndAveragesSection: {
2275
- readonly title: "Tendências e Médias";
2276
- readonly trend: "Tendência";
2277
- readonly average: "Média";
2278
- };
2279
- readonly trendType: {
2280
- readonly label: "Tipo de tendência";
2281
- readonly placeholder: "Tipo de tendência";
2282
- readonly options: {
2283
- readonly linear: "Linear";
2284
- readonly exponential: "Exponencial";
2285
- readonly quadratic: "Quadrática";
2286
- readonly polynomial: "Polinomial";
2287
- readonly logarithmic: "Logarítmica";
2288
- readonly power: "Potência";
2289
- readonly loess: "Loess";
2290
- };
2291
- };
2292
- readonly averageLineSeries: {
2293
- readonly label: "Série da linha de média";
2294
- readonly placeholder: "Selecionar série";
2295
- readonly ariaLabel: "Dropdown de séries para linha de média";
2296
- };
2297
- readonly highlightSection: {
2298
- readonly title: "Realce";
2299
- readonly button: "Realçar";
2300
- readonly fadeColorLabel: "Cor de esmaecimento";
2301
- };
2302
- readonly titleAndSubtitleSection: {
2303
- readonly title: "Título e Subtítulo";
2304
- readonly toggleTitle: "Título";
2305
- readonly subtitle: "Subtítulo";
2306
- };
2307
- readonly captionAndSourceSection: {
2308
- readonly title: "Legenda e Fonte";
2309
- readonly caption: "Legenda";
2310
- readonly source: "Fonte";
2311
- readonly url: "URL";
2312
- readonly name: "Nome";
2313
- };
2314
- };
2315
- readonly elementsPanel: {
2316
- readonly contentVisible: "Visível";
2317
- readonly contentValue: "Valor";
2318
- readonly toolbarButton: "Elementos";
2319
- readonly headerSection: {
2320
- readonly title: "Cabeçalho";
2321
- readonly toggleTitle: "Título";
2322
- readonly subtitle: "Subtítulo";
2323
- };
2324
- readonly footerSection: {
2325
- readonly title: "Rodapé";
2326
- readonly caption: "Legenda";
2327
- readonly source: "Fonte";
2328
- readonly url: "URL";
2329
- readonly name: "Nome";
2330
- };
2331
- readonly textSizeSection: {
2332
- readonly title: "Tamanho do texto";
2333
- readonly scaleFormat: (params: {
2334
- value: string;
2335
- }) => string;
2336
- };
2337
- readonly fontSection: {
2338
- readonly title: "Tipo de letra";
2339
- };
2340
- readonly sourceSection: {
2341
- readonly title: "Fonte";
2342
- readonly url: "URL";
2343
- readonly name: "Nome";
2344
- };
2345
- };
2346
- readonly powerUpPanel: {
2347
- readonly toolbarButton: "Extras";
2348
- readonly goalSection: {
2349
- readonly title: "Objetivo";
2350
- readonly toggle: "Objetivo";
2351
- readonly labelControl: "Etiqueta";
2352
- readonly labelPlaceholder: "Objetivo";
2353
- readonly labelAriaLabel: "Etiqueta de objetivo personalizada";
2354
- readonly valueControl: "Valor do objetivo";
2355
- readonly byDate: "Por data";
2356
- readonly xAxisValue: "Valor do eixo X";
2357
- readonly optional: " (opcional)";
2358
- readonly xAxisReferenceAriaLabel: "Valor de referência do eixo X";
2359
- readonly anyXAxisValue: "Qualquer valor do eixo X";
2360
- readonly selectValuePlaceholder: "Selecionar valor";
2361
- };
2362
- readonly trendSection: {
2363
- readonly title: "Tendência";
2364
- readonly toggle: "Tendência";
2365
- };
2366
- readonly averageSection: {
2367
- readonly title: "Média";
2368
- readonly toggle: "Média";
2369
- readonly seriesLabel: "Série da linha de média";
2370
- readonly seriesPlaceholder: "Selecionar série";
2371
- readonly seriesAriaLabel: "Dropdown de séries para linha de média";
2372
- };
2373
- readonly trendType: {
2374
- readonly label: "Tipo de tendência";
2375
- readonly placeholder: "Tipo de tendência";
2376
- readonly options: {
2377
- readonly linear: "Linear";
2378
- readonly exponential: "Exponencial";
2379
- readonly quadratic: "Quadrática";
2380
- readonly polynomial: "Polinomial";
2381
- readonly logarithmic: "Logarítmica";
2382
- readonly power: "Potência";
2383
- readonly loess: "Loess";
2384
- };
2385
- };
2386
- readonly valueInput: {
2387
- readonly percentagePlaceholder: "Percentagem";
2388
- readonly numberPlaceholder: "Número";
2389
- readonly percentageSymbol: "%";
2390
- };
2391
- };
2392
- readonly highlighting: {
2393
- readonly modeHelper: {
2394
- readonly title: "Modo de realce";
2395
- readonly hover: "Passe";
2396
- readonly toHighlight: "para realçar";
2397
- readonly anyElement: "qualquer elemento";
2398
- readonly escToExit: "para sair";
2399
- readonly esc: "ESC";
2400
- };
2401
- readonly emptyState: "Sem opções de realce disponíveis";
2402
- readonly deleteAriaLabel: "Eliminar realce";
2403
- readonly highlightStyle: {
2404
- readonly tint: "Tonalidade";
2405
- readonly grey: "Cinzento";
2406
- };
2407
- };
2408
- readonly fineTunePanel: {
2409
- readonly toolbarButton: "Ajuste fino";
2410
- readonly detailSection: {
2411
- readonly title: "Detalhe";
2412
- readonly missingValues: "Valores em falta";
2413
- };
2414
- readonly lineStyleSection: {
2415
- readonly title: "Estilo de linha";
2416
- readonly lineCurve: "Curva da linha";
2417
- readonly sharp: "Angulosa";
2418
- readonly smooth: "Suave";
2419
- };
2420
- };
2421
- readonly customThemeEditor: {
2422
- readonly patternDropdownAriaLabel: "Dropdown de padrões para série";
2423
- readonly patterns: {
2424
- readonly solid: "Sólido";
2425
- readonly pattern: "Padrão";
2426
- readonly dotted: "Pontilhado";
2427
- readonly dashed: "Tracejado";
2428
- readonly hatched: "Hachurado";
2429
- };
2430
- readonly heatmapColorLabel: "Cor";
2431
- };
2432
- readonly accessibility: {
2433
- readonly toggleSection: (params: {
2434
- title: string;
2435
- }) => string;
2436
- };
2437
- readonly graphyDefaults: {
2438
- readonly themeOptions: {
2439
- readonly light: "Claro";
2440
- readonly dark: "Escuro";
2441
- };
2442
- };
2443
- };
2444
421
  readonly graph: {
2445
422
  readonly loading: "A carregar";
2446
423
  readonly error: "Algo correu mal";
@@ -2535,191 +512,9 @@ declare const dictionaries: {
2535
512
  value: string;
2536
513
  }) => string;
2537
514
  };
2538
- readonly titleEditor: {
2539
- readonly titlePlaceholder: "Sem título";
2540
- readonly subtitlePlaceholder: "Adicionar subtítulo";
2541
- };
2542
- readonly toolbar: {
2543
- readonly formatting: {
2544
- readonly bold: "Negrito";
2545
- readonly italic: "Itálico";
2546
- readonly underline: "Sublinhado";
2547
- readonly link: "Ligação";
2548
- };
2549
- readonly link: {
2550
- readonly ariaLabel: "Criar ligação";
2551
- readonly placeholder: "Escreva ou cole uma ligação...";
2552
- readonly submit: "Submeter";
2553
- readonly urlLabel: "URL da ligação";
2554
- readonly apply: "Aplicar ligação";
2555
- };
2556
- readonly font: {
2557
- readonly label: "Tipo de letra";
2558
- readonly ariaLabel: "Família do tipo de letra";
2559
- };
2560
- readonly heading: {
2561
- readonly label: "Nível de título";
2562
- readonly ariaLabel: "Estilo de texto";
2563
- readonly text: "Texto";
2564
- readonly caption: "Legenda";
2565
- readonly heading1: "Título 1";
2566
- readonly heading2: "Título 2";
2567
- readonly heading3: "Título 3";
2568
- };
2569
- readonly textAlign: {
2570
- readonly left: "Alinhar à esquerda";
2571
- readonly center: "Alinhar ao centro";
2572
- readonly right: "Alinhar à direita";
2573
- };
2574
- readonly color: {
2575
- readonly label: "Cor do texto";
2576
- };
2577
- };
2578
- readonly colorDropdown: {
2579
- readonly colors: "Cores";
2580
- readonly chartColors: "Cores do gráfico";
2581
- readonly custom: "Personalizado";
2582
- readonly opacity: "Opacidade";
2583
- readonly transparent: "Transparente";
2584
- readonly pickCustom: "Escolher cor personalizada";
2585
- readonly pickColor: "Escolher cor";
2586
- };
2587
515
  readonly legend: {
2588
516
  readonly hiddenItems: "Itens de legenda ocultos";
2589
517
  };
2590
- readonly annotations: {
2591
- readonly differenceArrowToolbar: {
2592
- readonly label: "Opções da seta de diferença";
2593
- readonly labelKind: {
2594
- readonly ariaLabel: "Etiqueta";
2595
- readonly absoluteDifference: "Variação absoluta";
2596
- readonly relativeDifference: "Variação percentual";
2597
- readonly proportion: "Proporção";
2598
- readonly suspectValue: "Este valor divide por uma base igual a zero.";
2599
- readonly incomparableEnds: "As duas pontas medem quantidades diferentes, pelo que a diferença entre elas não tem significado.";
2600
- };
2601
- readonly color: "Cor da seta";
2602
- readonly size: {
2603
- readonly ariaLabel: "Tamanho";
2604
- readonly small: "Pequeno";
2605
- readonly medium: "Médio";
2606
- readonly large: "Grande";
2607
- };
2608
- readonly swap: "Inverter sentido";
2609
- readonly remove: "Remover seta";
2610
- };
2611
- readonly baseMenu: {
2612
- readonly pinNumber: "Fixar número";
2613
- readonly unpinNumber: "Desafixar número";
2614
- readonly annotate: "Anotar";
2615
- readonly removeAnnotation: "Remover anotação";
2616
- readonly highlight: "Realçar";
2617
- readonly highlightWithLabel: (params: {
2618
- label: string;
2619
- }) => string;
2620
- readonly removeHighlight: "Remover realce";
2621
- readonly differenceArrow: "Seta de diferença";
2622
- readonly addSticker: "Adicionar autocolante";
2623
- readonly removeSticker: "Remover autocolante";
2624
- };
2625
- readonly textMenu: {
2626
- readonly title: "Anotar";
2627
- readonly placeholder: "Adicionar comentário";
2628
- readonly addButton: "Adicionar";
2629
- };
2630
- readonly highlights: {
2631
- readonly menuTitle: "Realçar";
2632
- readonly labels: {
2633
- readonly bar: "Barra";
2634
- readonly barGroup: "Grupo";
2635
- readonly barStack: "Pilha";
2636
- readonly barSeries: "Série";
2637
- readonly line: "Linha";
2638
- readonly linePoint: "Ponto";
2639
- readonly lineSeries: "Série";
2640
- readonly scatterPoint: "Ponto";
2641
- readonly scatterSeries: "Série";
2642
- readonly pieSlice: "Fatia";
2643
- readonly pointOrBar: "Ponto / barra";
2644
- readonly lineOrSeries: "Linha / série";
2645
- };
2646
- };
2647
- readonly stickerMenu: {
2648
- readonly title: "Adicionar autocolante";
2649
- };
2650
- readonly delete: "Eliminar";
2651
- readonly arrow: {
2652
- readonly thickness: {
2653
- readonly label: "Espessura";
2654
- readonly thin: "Fina";
2655
- readonly medium: "Média";
2656
- readonly thick: "Grossa";
2657
- };
2658
- readonly arrowhead: {
2659
- readonly startPoint: "Ponto inicial";
2660
- readonly endPoint: "Ponto final";
2661
- readonly lineArrow: "Seta de linha";
2662
- readonly none: "Nenhuma";
2663
- };
2664
- readonly lineStyle: {
2665
- readonly label: "Estilo de linha";
2666
- readonly solid: "Sólida";
2667
- readonly dotted: "Pontilhada";
2668
- };
2669
- readonly stickerEffect: "Efeito de autocolante";
2670
- readonly toolbarAriaLabel: "Barra de ferramentas de seta livre";
2671
- readonly editorAriaLabel: "Editor de seta";
2672
- };
2673
- readonly differenceArrow: {
2674
- readonly type: {
2675
- readonly proportion: "Proporção";
2676
- readonly difference: ({ absoluteDifference }: {
2677
- absoluteDifference: string;
2678
- }) => string;
2679
- readonly increase: ({ absoluteDifference }: {
2680
- absoluteDifference: string;
2681
- }) => string;
2682
- readonly decrease: ({ absoluteDifference }: {
2683
- absoluteDifference: string;
2684
- }) => string;
2685
- readonly percentageChange: ({ percentageChange }: {
2686
- percentageChange: string;
2687
- }) => string;
2688
- readonly percentIncrease: ({ percentageChange }: {
2689
- percentageChange: string;
2690
- }) => string;
2691
- readonly percentDecrease: ({ percentageChange }: {
2692
- percentageChange: string;
2693
- }) => string;
2694
- };
2695
- readonly size: {
2696
- readonly label: "Tamanho";
2697
- readonly small: "Pequeno";
2698
- readonly medium: "Médio";
2699
- readonly large: "Grande";
2700
- };
2701
- readonly flipArrow: "Inverter seta";
2702
- readonly color: "Cor";
2703
- readonly toolbarAriaLabel: "Barra de ferramentas de seta de diferença";
2704
- readonly editorAriaLabel: "Editor de seta de diferença";
2705
- };
2706
- readonly shape: {
2707
- readonly color: "Cor";
2708
- readonly border: {
2709
- readonly label: "Contorno";
2710
- readonly none: "Nenhum";
2711
- readonly thin: ({ value }: {
2712
- value: string;
2713
- }) => string;
2714
- readonly medium: ({ value }: {
2715
- value: string;
2716
- }) => string;
2717
- readonly thick: ({ value }: {
2718
- value: string;
2719
- }) => string;
2720
- };
2721
- };
2722
- };
2723
518
  };
2724
519
  readonly dir: "ltr";
2725
520
  };
@@ -2781,560 +576,6 @@ declare interface EditorSurfaceSlotProps {
2781
576
  export declare const ElementsPanel: ({ children, ...rootProps }: PanelProps) => JSX.Element;
2782
577
 
2783
578
  declare const EN_GB: {
2784
- readonly common: {
2785
- readonly save: "Save";
2786
- readonly cancel: "Cancel";
2787
- readonly confirm: "Confirm";
2788
- readonly delete: "Delete";
2789
- readonly confirmDelete: (params: {
2790
- item: string;
2791
- }) => string;
2792
- readonly abbreviations: {
2793
- readonly thousands: "k";
2794
- readonly millions: "m";
2795
- readonly billions: "b";
2796
- };
2797
- };
2798
- readonly editor: {
2799
- readonly title: "Graphy Editor";
2800
- readonly description: "Edit your content here";
2801
- readonly graphTypes: {
2802
- readonly column: "Column";
2803
- readonly columnStacked: "Stacked column";
2804
- readonly columnStackedFill: "100% stacked column";
2805
- readonly bar: "Bar";
2806
- readonly barStacked: "Stacked bar";
2807
- readonly barStackedFill: "100% stacked bar";
2808
- readonly line: "Line";
2809
- readonly areaStacked: "Stacked area";
2810
- readonly pie: "Pie";
2811
- readonly donut: "Donut";
2812
- readonly scatter: "Scatter";
2813
- readonly bubble: "Bubble";
2814
- readonly funnel: "Funnel";
2815
- readonly combo: "Combo";
2816
- readonly heatmap: "Heatmap";
2817
- readonly waterfall: "Waterfall";
2818
- readonly mekko: "Mekko";
2819
- readonly table: "Table";
2820
- };
2821
- readonly sizePanel: {
2822
- readonly toolbarButton: "Size";
2823
- readonly presetsSection: {
2824
- readonly title: "Presets";
2825
- };
2826
- readonly customSizeSection: {
2827
- readonly title: "Custom size";
2828
- };
2829
- readonly presets: {
2830
- readonly googleSlides: "Google Slides / PowerPoint";
2831
- readonly webEmail: "Web / email";
2832
- readonly linkedIn: "LinkedIn post";
2833
- readonly instagram: "Instagram post";
2834
- readonly tiktok: "TikTok / Instagram story";
2835
- readonly twitter: "X (Twitter)";
2836
- readonly mobile: "Mobile";
2837
- };
2838
- readonly inputs: {
2839
- readonly unitLabel: "px";
2840
- };
2841
- readonly validation: {
2842
- readonly maxSizeError: (params: {
2843
- max: number;
2844
- }) => string;
2845
- readonly minSizeError: (params: {
2846
- min: number;
2847
- }) => string;
2848
- };
2849
- };
2850
- readonly graphPanel: {
2851
- readonly toolbarButton: "Graph";
2852
- readonly graphTypeSection: {
2853
- readonly title: "Graph type";
2854
- };
2855
- readonly polarSection: {
2856
- readonly title: "Polar";
2857
- readonly innerRadius: "Inner radius";
2858
- readonly startAngle: "Start angle";
2859
- };
2860
- readonly barSection: {
2861
- readonly title: "Bars";
2862
- readonly thickness: "Bar thickness";
2863
- readonly rounding: "Rounding";
2864
- readonly roundingOptions: {
2865
- readonly none: "None";
2866
- readonly xs: "XS";
2867
- readonly sm: "S";
2868
- readonly md: "M";
2869
- readonly lg: "L";
2870
- readonly xl: "XL";
2871
- readonly full: "Full";
2872
- };
2873
- };
2874
- readonly graphOptionsSection: {
2875
- readonly title: "Graph options";
2876
- };
2877
- readonly gridSection: {
2878
- readonly title: "Grid";
2879
- readonly horizontalGridLines: "Horizontal lines";
2880
- readonly verticalGridLines: "Vertical lines";
2881
- readonly rings: "Rings";
2882
- readonly spokes: "Spokes";
2883
- readonly gridStyle: "Grid style";
2884
- readonly gridThickness: "Grid thickness";
2885
- readonly lineStyles: {
2886
- readonly solid: "Solid";
2887
- readonly dashed: "Dashed";
2888
- readonly dotted: "Dotted";
2889
- };
2890
- };
2891
- readonly graphOptions: {
2892
- readonly sortBars: "Sort high → low";
2893
- readonly showPoints: "Show points";
2894
- readonly lineFill: "Fill under line";
2895
- readonly smoothLines: "Smooth lines";
2896
- readonly stackTotals: "Stack totals";
2897
- readonly dataLabels: "Data labels";
2898
- readonly showPercentages: "Show percentages";
2899
- readonly categoryLabels: "Category labels";
2900
- };
2901
- readonly legendSection: {
2902
- readonly title: "Legend";
2903
- readonly auto: "Auto";
2904
- readonly top: "Top";
2905
- readonly bottom: "Bottom";
2906
- readonly left: "Left";
2907
- readonly right: "Right";
2908
- readonly none: "None";
2909
- readonly alignLabel: "Alignment";
2910
- readonly align: {
2911
- readonly auto: "Auto";
2912
- readonly start: "Start";
2913
- readonly center: "Center";
2914
- readonly end: "End";
2915
- };
2916
- readonly displayLabel: "Style";
2917
- readonly display: {
2918
- readonly auto: "Auto";
2919
- readonly pill: "Pills";
2920
- readonly direct: "Direct";
2921
- };
2922
- };
2923
- readonly numberFormatSection: {
2924
- readonly title: "Number format";
2925
- };
2926
- readonly numberFormat: {
2927
- readonly abbreviationLabel: "Abbreviation";
2928
- readonly valueLabel: "Value";
2929
- readonly decimalPlacesLabel: "Decimal places";
2930
- readonly options: {
2931
- readonly auto: "Auto";
2932
- readonly custom: "Custom";
2933
- readonly none: "None";
2934
- };
2935
- };
2936
- readonly headlineNumberSize: {
2937
- readonly sizeLabel: "Size";
2938
- readonly valueLabel: "Value";
2939
- readonly sizes: {
2940
- readonly small: "S";
2941
- readonly medium: "M";
2942
- readonly large: "L";
2943
- };
2944
- };
2945
- readonly lineThickness: {
2946
- readonly label: "Line thickness";
2947
- };
2948
- readonly pointSize: {
2949
- readonly label: "Point size";
2950
- readonly options: {
2951
- readonly auto: "Auto";
2952
- readonly custom: "Custom";
2953
- };
2954
- };
2955
- readonly headlineNumberSection: {
2956
- readonly title: "Headline number";
2957
- readonly toggle: "Visible";
2958
- readonly metricLabel: "Metric";
2959
- readonly compareWithLabel: "Compare with";
2960
- readonly metrics: {
2961
- readonly total: "Total";
2962
- readonly average: "Avg.";
2963
- readonly current: "Last";
2964
- readonly conversion: "Conversion";
2965
- readonly left: "Left";
2966
- };
2967
- readonly comparison: {
2968
- readonly first: "First";
2969
- readonly previous: "Previous";
2970
- };
2971
- readonly position: {
2972
- readonly above: "Above";
2973
- readonly center: "Center";
2974
- };
2975
- };
2976
- readonly treatEmptyValues: {
2977
- readonly leaveGap: {
2978
- readonly label: "Leave gap in chart";
2979
- readonly description: "Leaves a visible break in the line where data is missing";
2980
- };
2981
- readonly fillZero: {
2982
- readonly label: "Fill with zero";
2983
- readonly description: "Displays missing data points as zero";
2984
- };
2985
- readonly connectGaps: {
2986
- readonly label: "Connect across gaps";
2987
- readonly description: "Joins the line between available points, skipping the gap";
2988
- };
2989
- };
2990
- readonly comboChartAppearance: {
2991
- readonly title: "Combo chart appearance";
2992
- readonly groupedBars: "Grouped bars";
2993
- readonly stackedBars: "Stacked bars";
2994
- readonly linesOnly: "Lines only";
2995
- };
2996
- };
2997
- readonly columnMapping: {
2998
- readonly title: "Data";
2999
- readonly xAxis: "X-axis";
3000
- readonly yAxis: "Y-axis";
3001
- readonly leftYAxis: "Y-axis (left)";
3002
- readonly rightYAxis: "Y-axis (right)";
3003
- readonly slices: "Values (slices)";
3004
- readonly labels: "Labels";
3005
- readonly size: "Size";
3006
- readonly shape: "Shape";
3007
- readonly reset: "Reset to auto";
3008
- readonly addSeries: "Add series";
3009
- readonly removeSeries: "Remove series";
3010
- };
3011
- readonly axesPanel: {
3012
- readonly toolbarButton: "Axes";
3013
- readonly mainAxisSection: {
3014
- readonly yAxis: "Y-axis";
3015
- readonly xAxis: "X-axis";
3016
- };
3017
- readonly crossAxisSection: {
3018
- readonly xAxis: "X-axis";
3019
- readonly yAxis: "Y-axis";
3020
- };
3021
- readonly controls: {
3022
- readonly title: "Title";
3023
- readonly visible: "Visible";
3024
- readonly ticks: "Ticks";
3025
- readonly labels: "Labels";
3026
- readonly position: "Position";
3027
- readonly scale: "Scale";
3028
- readonly startFrom: "Start from";
3029
- readonly endAt: "End at";
3030
- readonly value: "Value";
3031
- readonly numberOfAxes: "Number of axes";
3032
- readonly reverse: "Reverse";
3033
- };
3034
- readonly labelMode: {
3035
- readonly auto: "Auto";
3036
- readonly edges: "Edges";
3037
- };
3038
- readonly scale: {
3039
- readonly auto: "Auto";
3040
- readonly log: "Log";
3041
- };
3042
- readonly startFrom: {
3043
- readonly auto: "Auto";
3044
- readonly zero: "Zero";
3045
- readonly custom: "Custom";
3046
- };
3047
- readonly endAt: {
3048
- readonly auto: "Auto";
3049
- readonly custom: "Custom";
3050
- };
3051
- readonly axisCount: {
3052
- readonly single: "Single";
3053
- readonly double: "Double";
3054
- };
3055
- readonly position: {
3056
- readonly left: "Left";
3057
- readonly right: "Right";
3058
- readonly top: "Top";
3059
- readonly bottom: "Bottom";
3060
- };
3061
- readonly yesNo: {
3062
- readonly yes: "Yes";
3063
- readonly no: "No";
3064
- };
3065
- };
3066
- readonly colorPanel: {
3067
- readonly toolbarButton: "Color";
3068
- readonly themeSection: {
3069
- readonly title: "Theme";
3070
- };
3071
- readonly appearanceSection: {
3072
- readonly title: "Appearance";
3073
- readonly highlightStyle: "Highlight";
3074
- };
3075
- readonly paletteSection: {
3076
- readonly title: "Palette";
3077
- readonly colorScheme: "Color scheme";
3078
- readonly colors: "Colors";
3079
- readonly colorPalettes: "Color palettes";
3080
- };
3081
- readonly paletteMode: {
3082
- readonly preset: "Preset";
3083
- readonly brand: "Brand";
3084
- readonly freestyle: "Freestyle";
3085
- };
3086
- readonly paletteThemes: {
3087
- readonly colorful: "Colorful";
3088
- readonly pastel: "Pastel";
3089
- readonly neon: "Neon";
3090
- };
3091
- readonly backgroundSection: {
3092
- readonly title: "Background";
3093
- readonly black: "Black";
3094
- readonly white: "White";
3095
- readonly grey: "Grey";
3096
- readonly tint: "Tint";
3097
- readonly custom: "Custom";
3098
- readonly none: "None";
3099
- };
3100
- readonly borderSection: {
3101
- readonly title: "Border";
3102
- readonly borderColor: "Border color";
3103
- readonly thickness: "Thickness";
3104
- readonly cornerRadius: "Corner radius";
3105
- };
3106
- readonly borderType: {
3107
- readonly solid: "Solid";
3108
- readonly gradient: "Gradient";
3109
- readonly grey: "Grey";
3110
- readonly preset: "Preset";
3111
- readonly custom: "Custom";
3112
- readonly none: "None";
3113
- };
3114
- readonly presetGradients: {
3115
- readonly lilac: "Lilac";
3116
- readonly neonPink: "Neon Pink";
3117
- readonly blackberry: "Blackberry";
3118
- readonly sun: "Sun";
3119
- readonly iceland: "Iceland";
3120
- readonly sunset: "Sunset";
3121
- readonly ultraviolet: "Ultraviolet";
3122
- readonly purple: "Purple";
3123
- readonly iceCream: "Ice Cream";
3124
- readonly mint: "Mint";
3125
- readonly cool: "Cool";
3126
- readonly fresh: "Fresh";
3127
- };
3128
- };
3129
- readonly designPanel: {
3130
- readonly toolbarButton: "Design";
3131
- readonly defaultExpanded: "Palette";
3132
- };
3133
- readonly annotatePanel: {
3134
- readonly toolbarButton: "Annotate";
3135
- readonly callOutSection: {
3136
- readonly title: "Callouts";
3137
- readonly text: "Text";
3138
- readonly arrow: "Arrow";
3139
- readonly box: "Box";
3140
- readonly difference: "Difference";
3141
- };
3142
- readonly highlightSection: {
3143
- readonly title: "Highlight";
3144
- readonly button: "Highlight";
3145
- readonly colorLabel: "Highlight color";
3146
- };
3147
- };
3148
- readonly annotationsPanel: {
3149
- readonly toolbarButton: "Annotate";
3150
- readonly freeformSection: {
3151
- readonly title: "Freeform";
3152
- readonly text: "Text";
3153
- readonly arrow: "Arrow";
3154
- readonly box: "Box";
3155
- readonly difference: "Difference";
3156
- };
3157
- readonly goalSection: {
3158
- readonly title: "Goal";
3159
- readonly labelControl: "Label";
3160
- readonly labelPlaceholder: "Goal";
3161
- readonly labelAriaLabel: "Custom goal label";
3162
- readonly valueControl: "Goal value";
3163
- readonly valueAriaLabel: "Goal value";
3164
- readonly byDate: "By date";
3165
- readonly xAxisValue: "X-axis value";
3166
- readonly optional: "(optional)";
3167
- };
3168
- readonly trendsAndAveragesSection: {
3169
- readonly title: "Trends and Averages";
3170
- readonly trend: "Trend";
3171
- readonly average: "Average";
3172
- };
3173
- readonly trendType: {
3174
- readonly label: "Trend type";
3175
- readonly placeholder: "Trend type";
3176
- readonly options: {
3177
- readonly linear: "Linear";
3178
- readonly exponential: "Exponential";
3179
- readonly quadratic: "Quadratic";
3180
- readonly polynomial: "Polynomial";
3181
- readonly logarithmic: "Logarithmic";
3182
- readonly power: "Power";
3183
- readonly loess: "Loess";
3184
- };
3185
- };
3186
- readonly averageLineSeries: {
3187
- readonly label: "Average line series";
3188
- readonly placeholder: "Select series";
3189
- readonly ariaLabel: "Series dropdown for average line";
3190
- };
3191
- readonly highlightSection: {
3192
- readonly title: "Highlight";
3193
- readonly button: "Highlight";
3194
- readonly fadeColorLabel: "Fade color";
3195
- };
3196
- readonly titleAndSubtitleSection: {
3197
- readonly title: "Title & Subtitle";
3198
- readonly toggleTitle: "Title";
3199
- readonly subtitle: "Subtitle";
3200
- };
3201
- readonly captionAndSourceSection: {
3202
- readonly title: "Caption & Source";
3203
- readonly caption: "Caption";
3204
- readonly source: "Source";
3205
- readonly url: "URL";
3206
- readonly name: "Name";
3207
- };
3208
- };
3209
- readonly elementsPanel: {
3210
- readonly contentVisible: "Visible";
3211
- readonly contentValue: "Value";
3212
- readonly toolbarButton: "Elements";
3213
- readonly headerSection: {
3214
- readonly title: "Header";
3215
- readonly toggleTitle: "Title";
3216
- readonly subtitle: "Subtitle";
3217
- };
3218
- readonly footerSection: {
3219
- readonly title: "Footer";
3220
- readonly caption: "Caption";
3221
- readonly source: "Source";
3222
- readonly url: "URL";
3223
- readonly name: "Name";
3224
- };
3225
- readonly textSizeSection: {
3226
- readonly title: "Text size";
3227
- readonly scaleFormat: (params: {
3228
- value: string;
3229
- }) => string;
3230
- };
3231
- readonly fontSection: {
3232
- readonly title: "Font";
3233
- };
3234
- readonly sourceSection: {
3235
- readonly title: "Source";
3236
- readonly url: "URL";
3237
- readonly name: "Name";
3238
- };
3239
- };
3240
- readonly powerUpPanel: {
3241
- readonly toolbarButton: "Power-ups";
3242
- readonly goalSection: {
3243
- readonly title: "Goal";
3244
- readonly toggle: "Goal";
3245
- readonly labelControl: "Label";
3246
- readonly labelPlaceholder: "Goal";
3247
- readonly labelAriaLabel: "Custom goal label";
3248
- readonly valueControl: "Goal value";
3249
- readonly byDate: "By date";
3250
- readonly xAxisValue: "X-axis value";
3251
- readonly optional: " (optional)";
3252
- readonly xAxisReferenceAriaLabel: "X-axis reference value";
3253
- readonly anyXAxisValue: "Any x-axis value";
3254
- readonly selectValuePlaceholder: "Select value";
3255
- };
3256
- readonly trendSection: {
3257
- readonly title: "Trend";
3258
- readonly toggle: "Trend";
3259
- };
3260
- readonly averageSection: {
3261
- readonly title: "Average";
3262
- readonly toggle: "Average";
3263
- readonly seriesLabel: "Average line series";
3264
- readonly seriesPlaceholder: "Select series";
3265
- readonly seriesAriaLabel: "Series dropdown for average line";
3266
- };
3267
- readonly trendType: {
3268
- readonly label: "Trend type";
3269
- readonly placeholder: "Trend type";
3270
- readonly options: {
3271
- readonly linear: "Linear";
3272
- readonly exponential: "Exponential";
3273
- readonly quadratic: "Quadratic";
3274
- readonly polynomial: "Polynomial";
3275
- readonly logarithmic: "Logarithmic";
3276
- readonly power: "Power";
3277
- readonly loess: "Loess";
3278
- };
3279
- };
3280
- readonly valueInput: {
3281
- readonly percentagePlaceholder: "Percentage";
3282
- readonly numberPlaceholder: "Number";
3283
- readonly percentageSymbol: "%";
3284
- };
3285
- };
3286
- readonly highlighting: {
3287
- readonly modeHelper: {
3288
- readonly title: "Highlight mode";
3289
- readonly hover: "Hover";
3290
- readonly toHighlight: "to highlight";
3291
- readonly anyElement: "any element";
3292
- readonly escToExit: "to exit";
3293
- readonly esc: "ESC";
3294
- };
3295
- readonly emptyState: "No highlight options available";
3296
- readonly deleteAriaLabel: "Delete highlight";
3297
- readonly highlightStyle: {
3298
- readonly tint: "Tint";
3299
- readonly grey: "Grey";
3300
- };
3301
- };
3302
- readonly fineTunePanel: {
3303
- readonly toolbarButton: "Fine tune";
3304
- readonly detailSection: {
3305
- readonly title: "Detail";
3306
- readonly missingValues: "Missing values";
3307
- };
3308
- readonly lineStyleSection: {
3309
- readonly title: "Line style";
3310
- readonly lineCurve: "Line curve";
3311
- readonly sharp: "Sharp";
3312
- readonly smooth: "Smooth";
3313
- };
3314
- };
3315
- readonly customThemeEditor: {
3316
- readonly patternDropdownAriaLabel: "Pattern dropdown for series";
3317
- readonly patterns: {
3318
- readonly solid: "Solid";
3319
- readonly pattern: "Pattern";
3320
- readonly dotted: "Dotted";
3321
- readonly dashed: "Dashed";
3322
- readonly hatched: "Hatched";
3323
- };
3324
- readonly heatmapColorLabel: "Color";
3325
- };
3326
- readonly accessibility: {
3327
- readonly toggleSection: (params: {
3328
- title: string;
3329
- }) => string;
3330
- };
3331
- readonly graphyDefaults: {
3332
- readonly themeOptions: {
3333
- readonly light: "Light";
3334
- readonly dark: "Dark";
3335
- };
3336
- };
3337
- };
3338
579
  readonly graph: {
3339
580
  readonly loading: "Loading";
3340
581
  readonly error: "Something went wrong";
@@ -3429,198 +670,17 @@ declare const EN_GB: {
3429
670
  value: string;
3430
671
  }) => string;
3431
672
  };
3432
- readonly titleEditor: {
3433
- readonly titlePlaceholder: "Untitled";
3434
- readonly subtitlePlaceholder: "Add a subtitle";
3435
- };
3436
- readonly toolbar: {
3437
- readonly formatting: {
3438
- readonly bold: "Bold";
3439
- readonly italic: "Italic";
3440
- readonly underline: "Underline";
3441
- readonly link: "Link";
3442
- };
3443
- readonly link: {
3444
- readonly ariaLabel: "Create link";
3445
- readonly placeholder: "Type or paste a link...";
3446
- readonly submit: "Submit";
3447
- readonly urlLabel: "Link URL";
3448
- readonly apply: "Apply link";
3449
- };
3450
- readonly font: {
3451
- readonly label: "Font";
3452
- readonly ariaLabel: "Font family";
3453
- };
3454
- readonly heading: {
3455
- readonly label: "Heading level";
3456
- readonly ariaLabel: "Text style";
3457
- readonly text: "Text";
3458
- readonly caption: "Caption";
3459
- readonly heading1: "Heading 1";
3460
- readonly heading2: "Heading 2";
3461
- readonly heading3: "Heading 3";
3462
- };
3463
- readonly textAlign: {
3464
- readonly left: "Align left";
3465
- readonly center: "Align center";
3466
- readonly right: "Align right";
3467
- };
3468
- readonly color: {
3469
- readonly label: "Text color";
3470
- };
3471
- };
3472
- readonly colorDropdown: {
3473
- readonly colors: "Colors";
3474
- readonly chartColors: "Chart colors";
3475
- readonly custom: "Custom";
3476
- readonly opacity: "Opacity";
3477
- readonly transparent: "Transparent";
3478
- readonly pickCustom: "Pick custom color";
3479
- readonly pickColor: "Pick color";
3480
- };
3481
673
  readonly legend: {
3482
674
  readonly hiddenItems: "Hidden legend items";
3483
675
  };
3484
- readonly annotations: {
3485
- readonly differenceArrowToolbar: {
3486
- readonly label: "Difference arrow options";
3487
- readonly labelKind: {
3488
- readonly ariaLabel: "Label";
3489
- readonly absoluteDifference: "Absolute change";
3490
- readonly relativeDifference: "Percentage change";
3491
- readonly proportion: "Proportion";
3492
- readonly suspectValue: "This value divides by a baseline of zero.";
3493
- readonly incomparableEnds: "The two ends measure different quantities, so a difference between them has no meaning.";
3494
- };
3495
- readonly color: "Arrow colour";
3496
- readonly size: {
3497
- readonly ariaLabel: "Size";
3498
- readonly small: "Small";
3499
- readonly medium: "Medium";
3500
- readonly large: "Large";
3501
- };
3502
- readonly swap: "Swap direction";
3503
- readonly remove: "Remove arrow";
3504
- };
3505
- readonly baseMenu: {
3506
- readonly pinNumber: "Pin number";
3507
- readonly unpinNumber: "Unpin number";
3508
- readonly annotate: "Annotate";
3509
- readonly removeAnnotation: "Remove annotation";
3510
- readonly highlight: "Highlight";
3511
- readonly highlightWithLabel: (params: {
3512
- label: string;
3513
- }) => string;
3514
- readonly removeHighlight: "Remove highlight";
3515
- readonly differenceArrow: "Difference arrow";
3516
- readonly addSticker: "Add sticker";
3517
- readonly removeSticker: "Remove sticker";
3518
- };
3519
- readonly textMenu: {
3520
- readonly title: "Annotate";
3521
- readonly placeholder: "Add a comment";
3522
- readonly addButton: "Add";
3523
- };
3524
- readonly highlights: {
3525
- readonly menuTitle: "Highlight";
3526
- readonly labels: {
3527
- readonly bar: "bar";
3528
- readonly barGroup: "group";
3529
- readonly barStack: "stack";
3530
- readonly barSeries: "series";
3531
- readonly line: "line";
3532
- readonly linePoint: "point";
3533
- readonly lineSeries: "series";
3534
- readonly scatterPoint: "point";
3535
- readonly scatterSeries: "series";
3536
- readonly pieSlice: "slice";
3537
- readonly pointOrBar: "point / bar";
3538
- readonly lineOrSeries: "line / series";
3539
- };
3540
- };
3541
- readonly stickerMenu: {
3542
- readonly title: "Add sticker";
3543
- };
3544
- readonly delete: "Delete";
3545
- readonly arrow: {
3546
- readonly thickness: {
3547
- readonly label: "Thickness";
3548
- readonly thin: "Thin";
3549
- readonly medium: "Medium";
3550
- readonly thick: "Thick";
3551
- };
3552
- readonly arrowhead: {
3553
- readonly startPoint: "Start point";
3554
- readonly endPoint: "End point";
3555
- readonly lineArrow: "Line arrow";
3556
- readonly none: "None";
3557
- };
3558
- readonly lineStyle: {
3559
- readonly label: "Line style";
3560
- readonly solid: "Solid";
3561
- readonly dotted: "Dotted";
3562
- };
3563
- readonly stickerEffect: "Sticker effect";
3564
- readonly toolbarAriaLabel: "Free-form arrow toolbar";
3565
- readonly editorAriaLabel: "Arrow editor";
3566
- };
3567
- readonly differenceArrow: {
3568
- readonly type: {
3569
- readonly proportion: "Proportion";
3570
- readonly difference: ({ absoluteDifference }: {
3571
- absoluteDifference: string;
3572
- }) => string;
3573
- readonly increase: ({ absoluteDifference }: {
3574
- absoluteDifference: string;
3575
- }) => string;
3576
- readonly decrease: ({ absoluteDifference }: {
3577
- absoluteDifference: string;
3578
- }) => string;
3579
- readonly percentageChange: ({ percentageChange }: {
3580
- percentageChange: string;
3581
- }) => string;
3582
- readonly percentIncrease: ({ percentageChange }: {
3583
- percentageChange: string;
3584
- }) => string;
3585
- readonly percentDecrease: ({ percentageChange }: {
3586
- percentageChange: string;
3587
- }) => string;
3588
- };
3589
- readonly size: {
3590
- readonly label: "Size";
3591
- readonly small: "Small";
3592
- readonly medium: "Medium";
3593
- readonly large: "Large";
3594
- };
3595
- readonly flipArrow: "Flip arrow";
3596
- readonly color: "Color";
3597
- readonly toolbarAriaLabel: "Difference arrow toolbar";
3598
- readonly editorAriaLabel: "Difference arrow editor";
3599
- };
3600
- readonly shape: {
3601
- readonly color: "Color";
3602
- readonly border: {
3603
- readonly label: "Border";
3604
- readonly none: "None";
3605
- readonly thin: ({ value }: {
3606
- value: string;
3607
- }) => string;
3608
- readonly medium: ({ value }: {
3609
- value: string;
3610
- }) => string;
3611
- readonly thick: ({ value }: {
3612
- value: string;
3613
- }) => string;
3614
- };
3615
- };
3616
- };
3617
676
  };
3618
677
  readonly dir: "ltr";
3619
678
  };
3620
679
 
3621
680
  /**
3622
681
  * Props for the Footer slot, overridable via `slots.Footer` on `GraphRenderer`. Caption editing in
3623
- * `editable` mode is internal to this default; an override replacing the region opts out of it.
682
+ * `editable` mode is internal to this default — it hands off to the editor `/editable` supplies —
683
+ * and an override replacing the region opts out of it.
3624
684
  */
3625
685
  declare interface FooterSlotProps {
3626
686
  /** Forward this to the region's outer element — the layout measures the rendered DOM to reserve its space. */
@@ -3643,12 +703,21 @@ export declare const GoalSection: ({ title, preview }: GoalSectionProps) => JSX.
3643
703
  /** No `layout`: a toggled section is always collapsible. */
3644
704
  declare type GoalSectionProps = Omit<OverridableSectionProps, 'layout'>;
3645
705
 
706
+ /**
707
+ * Animation settings for a graph. `false` disables every animation. A viewer who prefers reduced
708
+ * motion gets no animation whatever this asks for.
709
+ */
710
+ declare type GraphAnimation = boolean | GraphAnimationProps;
711
+
712
+ /** Per-kind animation settings. Each kind is independent: turning one off leaves the other running. */
3646
713
  declare interface GraphAnimationProps {
3647
714
  /**
3648
- * Settings for the intro animation played on first mount. `false` disables it, `true` forces it on,
3649
- * an object overrides individual intro settings. Defaults on.
715
+ * Settings for the intro animation played when the chart first mounts or the chart type changes.
716
+ * `false` disables it, an object overrides individual intro settings. Defaults on.
3650
717
  */
3651
718
  intro?: boolean | Partial<IntroAnimationOptions>;
719
+ /** Whether geoms animate to their new position when the underlying data changes. Defaults on. */
720
+ transitions?: boolean;
3652
721
  }
3653
722
 
3654
723
  /** Write access to the graph's spec: applying {@link Command}s and closing the runs they form. */
@@ -3721,8 +790,11 @@ declare interface GraphRendererProps {
3721
790
  sizing?: GraphSizing;
3722
791
  /** Callback invoked when the graph's container is resized. Fires in every sizing mode. */
3723
792
  onResize?: ResizeObserverOnResize;
3724
- isAnimated?: boolean;
3725
- animation?: GraphAnimationProps;
793
+ /**
794
+ * Animation settings. A boolean disables/enables animations globally, an object tunes the intro
795
+ * and data transitions separately. A reduced-motion preference disables everything regardless.
796
+ */
797
+ animation?: GraphAnimation;
3726
798
  showTooltips?: boolean;
3727
799
  mode?: GraphMode;
3728
800
  /** Per-region component overrides. Unspecified regions render their default. */
@@ -3799,14 +871,15 @@ export declare const GridSection: ({ title, layout, preview }: OverridableSectio
3799
871
  */
3800
872
  declare interface GridSlotProps {
3801
873
  axes: FormattedAxis[];
3802
- panel: CompiledPanel;
874
+ panelBorderSizes: EdgeSizes;
3803
875
  panelFrameRect: GraphLayout['panelFrame'];
3804
876
  panelRect: GraphLayout['panel'];
3805
877
  }
3806
878
 
3807
879
  /**
3808
880
  * Props for the Header slot, overridable via `slots.Header` on `GraphRenderer`. Title editing in
3809
- * `editable` mode is internal to this default; an override replacing the region opts out of it.
881
+ * `editable` mode is internal to this default — it hands off to the editor `/editable` supplies —
882
+ * and an override replacing the region opts out of it.
3810
883
  */
3811
884
  declare interface HeaderSlotProps {
3812
885
  /** Forward this to the region's outer element — the layout measures the rendered DOM to reserve its space. */
@@ -3843,13 +916,23 @@ declare interface HeadlineSlotProps {
3843
916
 
3844
917
  declare type I18nLocale = keyof typeof dictionaries;
3845
918
 
3846
- declare type I18nRuntimeOverrides = {
3847
- dir?: TextDirection;
3848
- } & {
3849
- [K in TranslationKey]?: OverridePhrase<K>;
3850
- };
919
+ declare type I18nRuntimeOverrides = RuntimeOverrides<ChartPhrases>;
3851
920
 
3852
- export declare const IntlProvider: React.FC<CoreIntlProviderProps>;
921
+ /**
922
+ * The translation context editor UI needs, already carrying the editing surface's wording. Mount it
923
+ * around a panel a host places outside the chart; `EditableGraphRenderer` mounts its own.
924
+ *
925
+ * It owns the phrase sets, so a caller cannot name one and silently leave the editor untranslated.
926
+ */
927
+ export declare const IntlProvider: ({ children, ...rest }: Omit<IntlProviderProps, "dictionaries">) => JSX.Element;
928
+
929
+ declare interface IntlProviderProps {
930
+ locale?: I18nLocale;
931
+ children: ReactNode;
932
+ i18nOverrides?: I18nRuntimeOverrides;
933
+ /** The phrase sets this tree translates against, most specific first. Defaults to the chart's own. */
934
+ dictionaries?: readonly PhraseSource[];
935
+ }
3853
936
 
3854
937
  declare interface IntroAnimationOptions {
3855
938
  /** Whether the entrance plays at all */
@@ -3889,18 +972,21 @@ declare type LocaleShape = {
3889
972
  dir?: TextDirection;
3890
973
  } & Dictionary<typeof EN_GB>;
3891
974
 
3892
- declare type LooseLocaleShape = {
3893
- [K in keyof LocaleShape]?: LooseSection<LocaleShape[K]>;
3894
- };
3895
-
3896
975
  declare type LooseSection<T> = {
3897
976
  [K in keyof T]?: T[K] extends object ? LooseSection<T[K]> : LooseValue<T[K]>;
3898
977
  };
3899
978
 
979
+ declare type LooseShapeOf<T> = {
980
+ [K in keyof T]?: LooseSection<T[K]>;
981
+ };
982
+
3900
983
  declare type LooseString<T> = T extends string ? string : T;
3901
984
 
3902
985
  declare type LooseValue<T> = T extends (...args: infer A) => infer R ? (...args: A) => R : LooseString<T>;
3903
986
 
987
+ /** Which column of the data feeds each of the chart's aesthetics. */
988
+ export declare const MappingSection: ({ title, layout }: OverridableSectionProps) => JSX.Element | null;
989
+
3904
990
  /**
3905
991
  * A number typed, scrubbed or stepped into a field.
3906
992
  *
@@ -3943,7 +1029,7 @@ export declare const NumberFormatSection: ({ title, layout, preview }: Overridab
3943
1029
  */
3944
1030
  export declare type OverridableSectionProps = Partial<Pick<SectionProps, 'title' | 'layout' | 'preview'>>;
3945
1031
 
3946
- declare type OverridePhrase<K extends TranslationKey> = PhraseOf<K> extends PhraseFn<infer P> ? PhraseFn<P> | string : string;
1032
+ declare type OverridePhrase<Phrases, Key extends string> = DeepValue<Phrases, Key> extends PhraseFn<infer P> ? PhraseFn<P> | string : string;
3947
1033
 
3948
1034
  export { PANEL_ROOT_ATTRIBUTE }
3949
1035
 
@@ -3964,7 +1050,8 @@ export { PanelRootProps }
3964
1050
 
3965
1051
  declare type PhraseFn<P extends Record<string, unknown> = Record<string, unknown>> = (params: P) => string;
3966
1052
 
3967
- declare type PhraseOf<K extends TranslationKey> = DeepValue<typeof EN_GB, K>;
1053
+ /** One surface's phrases, per locale. */
1054
+ declare type PhraseSource = Partial<Record<I18nLocale, object>>;
3968
1055
 
3969
1056
  /**
3970
1057
  * How large a chart's authored points are drawn. Renders nothing unless a point layer is the host's
@@ -4029,6 +1116,12 @@ export declare const Row: ({ label, layout, icon, children }: SettingRowProps) =
4029
1116
 
4030
1117
  export declare type RowLayout = 'stack' | 'grid';
4031
1118
 
1119
+ declare type RuntimeOverrides<Phrases> = {
1120
+ dir?: TextDirection;
1121
+ } & {
1122
+ [Key in DotNotation<Phrases>]?: OverridePhrase<Phrases, Key>;
1123
+ };
1124
+
4032
1125
  /**
4033
1126
  * One block of a panel: a heading, and the settings under it. Defaults to `fixed`, so a section that
4034
1127
  * forgot to declare a layout shows its controls rather than hiding them.
@@ -4070,7 +1163,8 @@ export declare const Select: ({ options, value, onChange, placeholder, isDisable
4070
1163
  * The value is nullable so a section can render "nothing chosen yet"; `onChange` only ever fires
4071
1164
  * with a real option, since clearing a required setting is not a gesture the panel offers.
4072
1165
  */
4073
- export declare interface SelectControlProps extends DiscreteControlProps<string | null> {
1166
+ export declare interface SelectControlProps extends Omit<DiscreteControlProps<string | null>, 'onChange'> {
1167
+ onChange: (value: string) => void;
4074
1168
  options: readonly ControlOption[];
4075
1169
  placeholder?: string;
4076
1170
  hasError?: boolean;
@@ -4273,8 +1367,6 @@ declare interface TooltipSlotProps {
4273
1367
  content: TooltipContent;
4274
1368
  }
4275
1369
 
4276
- declare type TranslationKey = DotNotation<typeof EN_GB>;
4277
-
4278
1370
  export declare const TrendsAndAveragesSection: ({ title, layout, preview }: OverridableSectionProps) => JSX.Element | null;
4279
1371
 
4280
1372
  /** The resolved controls for the surrounding panel. */