dash_mantine_components 2.7.0 → 2.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dash_mantine_components/async-AreaChart.js +1 -1
- package/dash_mantine_components/async-BarChart.js +1 -1
- package/dash_mantine_components/async-BubbleChart.js +1 -1
- package/dash_mantine_components/async-CodeHighlight.js +1 -1
- package/dash_mantine_components/async-CodeHighlightTabs.js +1 -1
- package/dash_mantine_components/async-CompositeChart.js +1 -1
- package/dash_mantine_components/async-DonutChart.js +1 -1
- package/dash_mantine_components/async-FunnelChart.js +1 -0
- package/dash_mantine_components/async-Heatmap.js +1 -0
- package/dash_mantine_components/async-InlineCodeHighlight.js +1 -1
- package/dash_mantine_components/async-LineChart.js +1 -1
- package/dash_mantine_components/async-PieChart.js +1 -1
- package/dash_mantine_components/async-RadarChart.js +1 -1
- package/dash_mantine_components/async-RichTextEditor.js +1 -1
- package/dash_mantine_components/async-ScatterChart.js +1 -1
- package/dash_mantine_components/async-Sparkline.js +1 -1
- package/dash_mantine_components/dash_mantine_components-charts-shared.js +1 -1
- package/dash_mantine_components/dash_mantine_components.js +1 -1
- package/dash_mantine_components/proptypes.js +371 -3
- package/package.json +1 -1
|
@@ -519,6 +519,184 @@ pk.DonutChart.propTypes = {data:pt.arrayOf(pt.shape({name:pt.string,value:pt.num
|
|
|
519
519
|
aria-*:pt.string,
|
|
520
520
|
tabIndex:pt.number,
|
|
521
521
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
522
|
+
pk.FunnelChart.propTypes = {data:pt.arrayOf(pt.shape({key:pt.oneOfType([pt.string,pt.number]),name:pt.string,value:pt.number,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])])})),
|
|
523
|
+
withTooltip:pt.bool,
|
|
524
|
+
tooltipAnimationDuration:pt.number,
|
|
525
|
+
tooltipProps:pt.object,
|
|
526
|
+
funnelProps:pt.object,
|
|
527
|
+
strokeColor:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),
|
|
528
|
+
labelColor:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),
|
|
529
|
+
size:pt.number,
|
|
530
|
+
strokeWidth:pt.number,
|
|
531
|
+
withLabels:pt.bool,
|
|
532
|
+
labelsPosition:pt.oneOf(['left','right','inside']),
|
|
533
|
+
valueFormatter:pt.any,
|
|
534
|
+
tooltipDataSource:pt.oneOf(['segment','all']),
|
|
535
|
+
children:pt.node,
|
|
536
|
+
funnelChartProps:pt.object,
|
|
537
|
+
clickData:pt.objectOf(pt.any),
|
|
538
|
+
hoverData:pt.objectOf(pt.any),
|
|
539
|
+
clickSeriesName:pt.objectOf(pt.any),
|
|
540
|
+
hoverSeriesName:pt.objectOf(pt.any),
|
|
541
|
+
hiddenFrom:pt.string,
|
|
542
|
+
visibleFrom:pt.string,
|
|
543
|
+
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
544
|
+
m:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
545
|
+
my:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
546
|
+
mx:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
547
|
+
mt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
548
|
+
mb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
549
|
+
ms:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
550
|
+
me:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
551
|
+
ml:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
552
|
+
mr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
553
|
+
p:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
554
|
+
py:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
555
|
+
px:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
556
|
+
pt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
557
|
+
pb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
558
|
+
ps:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
559
|
+
pe:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
560
|
+
pl:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
561
|
+
pr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
562
|
+
bd:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
563
|
+
bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
564
|
+
bg:pt.oneOfType([pt.string,pt.object]),
|
|
565
|
+
c:pt.oneOfType([pt.string,pt.object]),
|
|
566
|
+
opacity:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
567
|
+
ff:pt.oneOfType([pt.string,pt.object]),
|
|
568
|
+
fz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
569
|
+
fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),
|
|
570
|
+
lts:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
571
|
+
ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),
|
|
572
|
+
lh:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
573
|
+
fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),
|
|
574
|
+
tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),
|
|
575
|
+
td:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
576
|
+
w:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
577
|
+
miw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
578
|
+
maw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
579
|
+
h:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
580
|
+
mih:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
581
|
+
mah:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
582
|
+
bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
583
|
+
bgp:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
584
|
+
bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
585
|
+
bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),
|
|
586
|
+
pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
587
|
+
top:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
588
|
+
left:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
589
|
+
bottom:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
590
|
+
right:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
591
|
+
inset:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
592
|
+
display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),
|
|
593
|
+
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
594
|
+
className:pt.string,
|
|
595
|
+
style:pt.any,
|
|
596
|
+
lightHidden:pt.bool,
|
|
597
|
+
darkHidden:pt.bool,
|
|
598
|
+
classNames:pt.object,
|
|
599
|
+
styles:pt.any,
|
|
600
|
+
unstyled:pt.bool,
|
|
601
|
+
variant:pt.string,
|
|
602
|
+
attributes:pt.any,
|
|
603
|
+
id:pt.string,
|
|
604
|
+
setProps:pt.any,
|
|
605
|
+
data-*:pt.string,
|
|
606
|
+
aria-*:pt.string,
|
|
607
|
+
tabIndex:pt.number,
|
|
608
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
609
|
+
pk.Heatmap.propTypes = {data:pt.objectOf(pt.number),
|
|
610
|
+
domain:pt.array,
|
|
611
|
+
startDate:pt.oneOfType([pt.string]),
|
|
612
|
+
endDate:pt.oneOfType([pt.string]),
|
|
613
|
+
withMonthLabels:pt.bool,
|
|
614
|
+
monthLabels:pt.arrayOf(pt.string),
|
|
615
|
+
withWeekdayLabels:pt.bool,
|
|
616
|
+
weekdayLabels:pt.arrayOf(pt.string),
|
|
617
|
+
withOutsideDates:pt.bool,
|
|
618
|
+
firstDayOfWeek:pt.oneOf([0,2,1,3,4,5,6]),
|
|
619
|
+
rectSize:pt.number,
|
|
620
|
+
gap:pt.number,
|
|
621
|
+
rectRadius:pt.number,
|
|
622
|
+
colors:pt.arrayOf(pt.string),
|
|
623
|
+
weekdaysLabelsWidth:pt.number,
|
|
624
|
+
monthsLabelsHeight:pt.number,
|
|
625
|
+
fontSize:pt.number,
|
|
626
|
+
getTooltipLabel:pt.any,
|
|
627
|
+
withTooltip:pt.bool,
|
|
628
|
+
tooltipProps:pt.any,
|
|
629
|
+
splitMonths:pt.bool,
|
|
630
|
+
clickData:pt.shape({}),
|
|
631
|
+
hoverData:pt.objectOf(pt.number),
|
|
632
|
+
hiddenFrom:pt.string,
|
|
633
|
+
visibleFrom:pt.string,
|
|
634
|
+
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
635
|
+
m:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
636
|
+
my:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
637
|
+
mx:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
638
|
+
mt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
639
|
+
mb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
640
|
+
ms:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
641
|
+
me:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
642
|
+
ml:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
643
|
+
mr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
644
|
+
p:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
645
|
+
py:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
646
|
+
px:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
647
|
+
pt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
648
|
+
pb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
649
|
+
ps:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
650
|
+
pe:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
651
|
+
pl:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
652
|
+
pr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
653
|
+
bd:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
654
|
+
bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
655
|
+
bg:pt.oneOfType([pt.string,pt.object]),
|
|
656
|
+
c:pt.oneOfType([pt.string,pt.object]),
|
|
657
|
+
opacity:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
658
|
+
ff:pt.oneOfType([pt.string,pt.object]),
|
|
659
|
+
fz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
660
|
+
fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),
|
|
661
|
+
lts:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
662
|
+
ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),
|
|
663
|
+
lh:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
664
|
+
fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),
|
|
665
|
+
tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),
|
|
666
|
+
td:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
667
|
+
w:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
668
|
+
miw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
669
|
+
maw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
670
|
+
h:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
671
|
+
mih:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
672
|
+
mah:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
673
|
+
bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
674
|
+
bgp:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
675
|
+
bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
676
|
+
bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),
|
|
677
|
+
pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
678
|
+
top:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
679
|
+
left:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
680
|
+
bottom:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
681
|
+
right:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
682
|
+
inset:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
683
|
+
display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),
|
|
684
|
+
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
685
|
+
className:pt.string,
|
|
686
|
+
style:pt.any,
|
|
687
|
+
lightHidden:pt.bool,
|
|
688
|
+
darkHidden:pt.bool,
|
|
689
|
+
classNames:pt.object,
|
|
690
|
+
styles:pt.any,
|
|
691
|
+
unstyled:pt.bool,
|
|
692
|
+
variant:pt.string,
|
|
693
|
+
attributes:pt.any,
|
|
694
|
+
id:pt.string,
|
|
695
|
+
setProps:pt.any,
|
|
696
|
+
data-*:pt.string,
|
|
697
|
+
aria-*:pt.string,
|
|
698
|
+
tabIndex:pt.number,
|
|
699
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
522
700
|
pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
523
701
|
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),curveType:pt.oneOf(['bump','linear','natural','monotone','step','stepBefore','stepAfter']),name:pt.string,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),label:pt.string,yAxisId:pt.string})),
|
|
524
702
|
curveType:pt.oneOf(['bump','linear','natural','monotone','step','stepBefore','stepAfter']),
|
|
@@ -740,6 +918,12 @@ pk.RadarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
740
918
|
polarRadiusAxisProps:pt.object,
|
|
741
919
|
children:pt.node,
|
|
742
920
|
clickData:pt.objectOf(pt.any),
|
|
921
|
+
withTooltip:pt.bool,
|
|
922
|
+
tooltipProps:pt.object,
|
|
923
|
+
tooltipAnimationDuration:pt.number,
|
|
924
|
+
withDots:pt.bool,
|
|
925
|
+
dotProps:pt.object,
|
|
926
|
+
activeDotProps:pt.object,
|
|
743
927
|
hiddenFrom:pt.string,
|
|
744
928
|
visibleFrom:pt.string,
|
|
745
929
|
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
@@ -809,7 +993,7 @@ pk.RadarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
809
993
|
tabIndex:pt.number,
|
|
810
994
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
811
995
|
pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
812
|
-
data:pt.arrayOf(pt.shape({color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),name:pt.string,data:pt.arrayOf(pt.
|
|
996
|
+
data:pt.arrayOf(pt.shape({color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),name:pt.string,data:pt.arrayOf(pt.objectOf(pt.number))})),
|
|
813
997
|
unit:pt.shape({x:pt.string,y:pt.string}),
|
|
814
998
|
labels:pt.shape({x:pt.string,y:pt.string}),
|
|
815
999
|
scatterChartProps:pt.object,
|
|
@@ -1503,6 +1687,184 @@ pk.DonutChart.propTypes = {data:pt.arrayOf(pt.shape({name:pt.string,value:pt.num
|
|
|
1503
1687
|
aria-*:pt.string,
|
|
1504
1688
|
tabIndex:pt.number,
|
|
1505
1689
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
1690
|
+
pk.FunnelChart.propTypes = {data:pt.arrayOf(pt.shape({key:pt.oneOfType([pt.string,pt.number]),name:pt.string,value:pt.number,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])])})),
|
|
1691
|
+
withTooltip:pt.bool,
|
|
1692
|
+
tooltipAnimationDuration:pt.number,
|
|
1693
|
+
tooltipProps:pt.object,
|
|
1694
|
+
funnelProps:pt.object,
|
|
1695
|
+
strokeColor:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),
|
|
1696
|
+
labelColor:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),
|
|
1697
|
+
size:pt.number,
|
|
1698
|
+
strokeWidth:pt.number,
|
|
1699
|
+
withLabels:pt.bool,
|
|
1700
|
+
labelsPosition:pt.oneOf(['left','right','inside']),
|
|
1701
|
+
valueFormatter:pt.any,
|
|
1702
|
+
tooltipDataSource:pt.oneOf(['segment','all']),
|
|
1703
|
+
children:pt.node,
|
|
1704
|
+
funnelChartProps:pt.object,
|
|
1705
|
+
clickData:pt.objectOf(pt.any),
|
|
1706
|
+
hoverData:pt.objectOf(pt.any),
|
|
1707
|
+
clickSeriesName:pt.objectOf(pt.any),
|
|
1708
|
+
hoverSeriesName:pt.objectOf(pt.any),
|
|
1709
|
+
hiddenFrom:pt.string,
|
|
1710
|
+
visibleFrom:pt.string,
|
|
1711
|
+
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
1712
|
+
m:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1713
|
+
my:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1714
|
+
mx:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1715
|
+
mt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1716
|
+
mb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1717
|
+
ms:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1718
|
+
me:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1719
|
+
ml:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1720
|
+
mr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1721
|
+
p:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1722
|
+
py:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1723
|
+
px:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1724
|
+
pt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1725
|
+
pb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1726
|
+
ps:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1727
|
+
pe:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1728
|
+
pl:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1729
|
+
pr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1730
|
+
bd:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1731
|
+
bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1732
|
+
bg:pt.oneOfType([pt.string,pt.object]),
|
|
1733
|
+
c:pt.oneOfType([pt.string,pt.object]),
|
|
1734
|
+
opacity:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1735
|
+
ff:pt.oneOfType([pt.string,pt.object]),
|
|
1736
|
+
fz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1737
|
+
fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),
|
|
1738
|
+
lts:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1739
|
+
ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),
|
|
1740
|
+
lh:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1741
|
+
fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),
|
|
1742
|
+
tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),
|
|
1743
|
+
td:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1744
|
+
w:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1745
|
+
miw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1746
|
+
maw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1747
|
+
h:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1748
|
+
mih:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1749
|
+
mah:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1750
|
+
bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1751
|
+
bgp:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1752
|
+
bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
1753
|
+
bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),
|
|
1754
|
+
pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
1755
|
+
top:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1756
|
+
left:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1757
|
+
bottom:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1758
|
+
right:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1759
|
+
inset:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1760
|
+
display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),
|
|
1761
|
+
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1762
|
+
className:pt.string,
|
|
1763
|
+
style:pt.any,
|
|
1764
|
+
lightHidden:pt.bool,
|
|
1765
|
+
darkHidden:pt.bool,
|
|
1766
|
+
classNames:pt.object,
|
|
1767
|
+
styles:pt.any,
|
|
1768
|
+
unstyled:pt.bool,
|
|
1769
|
+
variant:pt.string,
|
|
1770
|
+
attributes:pt.any,
|
|
1771
|
+
id:pt.string,
|
|
1772
|
+
setProps:pt.any,
|
|
1773
|
+
data-*:pt.string,
|
|
1774
|
+
aria-*:pt.string,
|
|
1775
|
+
tabIndex:pt.number,
|
|
1776
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
1777
|
+
pk.Heatmap.propTypes = {data:pt.objectOf(pt.number),
|
|
1778
|
+
domain:pt.array,
|
|
1779
|
+
startDate:pt.oneOfType([pt.string]),
|
|
1780
|
+
endDate:pt.oneOfType([pt.string]),
|
|
1781
|
+
withMonthLabels:pt.bool,
|
|
1782
|
+
monthLabels:pt.arrayOf(pt.string),
|
|
1783
|
+
withWeekdayLabels:pt.bool,
|
|
1784
|
+
weekdayLabels:pt.arrayOf(pt.string),
|
|
1785
|
+
withOutsideDates:pt.bool,
|
|
1786
|
+
firstDayOfWeek:pt.oneOf([0,2,1,3,4,5,6]),
|
|
1787
|
+
rectSize:pt.number,
|
|
1788
|
+
gap:pt.number,
|
|
1789
|
+
rectRadius:pt.number,
|
|
1790
|
+
colors:pt.arrayOf(pt.string),
|
|
1791
|
+
weekdaysLabelsWidth:pt.number,
|
|
1792
|
+
monthsLabelsHeight:pt.number,
|
|
1793
|
+
fontSize:pt.number,
|
|
1794
|
+
getTooltipLabel:pt.any,
|
|
1795
|
+
withTooltip:pt.bool,
|
|
1796
|
+
tooltipProps:pt.any,
|
|
1797
|
+
splitMonths:pt.bool,
|
|
1798
|
+
clickData:pt.shape({}),
|
|
1799
|
+
hoverData:pt.objectOf(pt.number),
|
|
1800
|
+
hiddenFrom:pt.string,
|
|
1801
|
+
visibleFrom:pt.string,
|
|
1802
|
+
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
1803
|
+
m:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1804
|
+
my:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1805
|
+
mx:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1806
|
+
mt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1807
|
+
mb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1808
|
+
ms:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1809
|
+
me:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1810
|
+
ml:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1811
|
+
mr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1812
|
+
p:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1813
|
+
py:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1814
|
+
px:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1815
|
+
pt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1816
|
+
pb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1817
|
+
ps:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1818
|
+
pe:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1819
|
+
pl:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1820
|
+
pr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1821
|
+
bd:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1822
|
+
bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1823
|
+
bg:pt.oneOfType([pt.string,pt.object]),
|
|
1824
|
+
c:pt.oneOfType([pt.string,pt.object]),
|
|
1825
|
+
opacity:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1826
|
+
ff:pt.oneOfType([pt.string,pt.object]),
|
|
1827
|
+
fz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1828
|
+
fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),
|
|
1829
|
+
lts:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1830
|
+
ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),
|
|
1831
|
+
lh:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1832
|
+
fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),
|
|
1833
|
+
tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),
|
|
1834
|
+
td:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1835
|
+
w:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1836
|
+
miw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1837
|
+
maw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1838
|
+
h:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1839
|
+
mih:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1840
|
+
mah:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1841
|
+
bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1842
|
+
bgp:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1843
|
+
bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
1844
|
+
bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),
|
|
1845
|
+
pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
1846
|
+
top:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1847
|
+
left:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1848
|
+
bottom:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1849
|
+
right:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1850
|
+
inset:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1851
|
+
display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),
|
|
1852
|
+
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1853
|
+
className:pt.string,
|
|
1854
|
+
style:pt.any,
|
|
1855
|
+
lightHidden:pt.bool,
|
|
1856
|
+
darkHidden:pt.bool,
|
|
1857
|
+
classNames:pt.object,
|
|
1858
|
+
styles:pt.any,
|
|
1859
|
+
unstyled:pt.bool,
|
|
1860
|
+
variant:pt.string,
|
|
1861
|
+
attributes:pt.any,
|
|
1862
|
+
id:pt.string,
|
|
1863
|
+
setProps:pt.any,
|
|
1864
|
+
data-*:pt.string,
|
|
1865
|
+
aria-*:pt.string,
|
|
1866
|
+
tabIndex:pt.number,
|
|
1867
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
1506
1868
|
pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
1507
1869
|
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),curveType:pt.oneOf(['bump','linear','natural','monotone','step','stepBefore','stepAfter']),name:pt.string,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),label:pt.string,yAxisId:pt.string})),
|
|
1508
1870
|
curveType:pt.oneOf(['bump','linear','natural','monotone','step','stepBefore','stepAfter']),
|
|
@@ -1724,6 +2086,12 @@ pk.RadarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1724
2086
|
polarRadiusAxisProps:pt.object,
|
|
1725
2087
|
children:pt.node,
|
|
1726
2088
|
clickData:pt.objectOf(pt.any),
|
|
2089
|
+
withTooltip:pt.bool,
|
|
2090
|
+
tooltipProps:pt.object,
|
|
2091
|
+
tooltipAnimationDuration:pt.number,
|
|
2092
|
+
withDots:pt.bool,
|
|
2093
|
+
dotProps:pt.object,
|
|
2094
|
+
activeDotProps:pt.object,
|
|
1727
2095
|
hiddenFrom:pt.string,
|
|
1728
2096
|
visibleFrom:pt.string,
|
|
1729
2097
|
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
@@ -1793,7 +2161,7 @@ pk.RadarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1793
2161
|
tabIndex:pt.number,
|
|
1794
2162
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
1795
2163
|
pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
1796
|
-
data:pt.arrayOf(pt.shape({color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),name:pt.string,data:pt.arrayOf(pt.
|
|
2164
|
+
data:pt.arrayOf(pt.shape({color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),name:pt.string,data:pt.arrayOf(pt.objectOf(pt.number))})),
|
|
1797
2165
|
unit:pt.shape({x:pt.string,y:pt.string}),
|
|
1798
2166
|
labels:pt.shape({x:pt.string,y:pt.string}),
|
|
1799
2167
|
scatterChartProps:pt.object,
|
|
@@ -14904,6 +15272,7 @@ pk.DirectionProvider.propTypes = {children:pt.node,
|
|
|
14904
15272
|
persisted_props:pt.arrayOf(pt.string),
|
|
14905
15273
|
persistence_type:pt.oneOf(['local','session','memory'])};
|
|
14906
15274
|
pk.MantineProvider.propTypes = {id:pt.string,
|
|
15275
|
+
getStyleNonce:pt.any,
|
|
14907
15276
|
theme:pt.shape({focusRing:pt.oneOf(['auto','always','never']),scale:pt.number,fontSmoothing:pt.bool,white:pt.string,black:pt.string,colors:pt.objectOf(pt.objectOf(pt.string)),primaryShade:pt.oneOfType([pt.oneOf([1]),pt.oneOf([2]),pt.oneOf([3]),pt.oneOf([4]),pt.oneOf([5]),pt.oneOf([6]),pt.oneOf([7]),pt.oneOf([8]),pt.oneOf([9]),pt.shape({light:pt.oneOf([0,1,2,3,4,5,6,7,8,9]),dark:pt.oneOf([0,1,2,3,4,5,6,7,8,9])})]),primaryColor:pt.string,variantColorResolver:pt.shape({}),autoContrast:pt.bool,luminanceThreshold:pt.number,fontFamily:pt.string,fontFamilyMonospace:pt.string,headings:pt.shape({fontFamily:pt.string,fontWeight:pt.string,textWrap:pt.oneOf(['wrap','nowrap','balance','pretty','stable']),sizes:pt.shape({h1:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h2:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h3:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h4:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h5:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h6:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string})})}),radius:pt.objectOf(pt.string),defaultRadius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),spacing:pt.objectOf(pt.string),fontSizes:pt.objectOf(pt.string),lineHeights:pt.objectOf(pt.string),breakpoints:pt.objectOf(pt.string),shadows:pt.objectOf(pt.string),respectReducedMotion:pt.bool,cursorType:pt.oneOf(['default','pointer']),defaultGradient:pt.shape({from:pt.string,to:pt.string,deg:pt.number}),activeClassName:pt.string,focusClassName:pt.string,components:pt.objectOf(pt.shape({classNames:pt.any,styles:pt.any,vars:pt.any,defaultProps:pt.any})),other:pt.objectOf(pt.any)}),
|
|
14908
15277
|
colorSchemeManager:pt.shape({get:pt.any,set:pt.any,subscribe:pt.any,unsubscribe:pt.any,clear:pt.any}),
|
|
14909
15278
|
defaultColorScheme:pt.oneOf(['auto','dark','light']),
|
|
@@ -14913,7 +15282,6 @@ pk.MantineProvider.propTypes = {id:pt.string,
|
|
|
14913
15282
|
deduplicateCssVariables:pt.bool,
|
|
14914
15283
|
getRootElement:pt.any,
|
|
14915
15284
|
classNamesPrefix:pt.string,
|
|
14916
|
-
getStyleNonce:pt.any,
|
|
14917
15285
|
cssVariablesResolver:pt.shape({}),
|
|
14918
15286
|
withStaticClasses:pt.bool,
|
|
14919
15287
|
withGlobalClasses:pt.bool,
|