dash_mantine_components 2.3.0 → 2.4.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-InlineCodeHighlight.js +1 -1
- package/dash_mantine_components/async-LineChart.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/dash_mantine_components.js +1 -1
- package/dash_mantine_components/proptypes.js +104 -12
- package/package.json +13 -11
|
@@ -4,7 +4,7 @@ var pt = window.PropTypes;
|
|
|
4
4
|
var pk = window['dash_mantine_components'];
|
|
5
5
|
|
|
6
6
|
pk.AreaChart.propTypes = {data:pt.arrayOf(pt.shape({})),
|
|
7
|
-
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,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"])]),name:pt.string,label:pt.string,yAxisId:pt.string})),
|
|
7
|
+
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,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"])]),curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),name:pt.string,label:pt.string,yAxisId:pt.string})),
|
|
8
8
|
type:pt.oneOf(["'default'", "'stacked'", "'percent'", "'split'"]),
|
|
9
9
|
withGradient:pt.bool,
|
|
10
10
|
curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),
|
|
@@ -393,8 +393,6 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
393
393
|
inset:pt.oneOfType([pt.string,pt.number]),
|
|
394
394
|
display:pt.oneOfType([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"])]),
|
|
395
395
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
396
|
-
valueFormatter:pt.any,
|
|
397
|
-
tooltipProps:pt.object,
|
|
398
396
|
dataKey:pt.string,
|
|
399
397
|
referenceLines:pt.arrayOf(pt.object),
|
|
400
398
|
withXAxis:pt.bool,
|
|
@@ -408,6 +406,7 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
408
406
|
unit:pt.string,
|
|
409
407
|
tooltipAnimationDuration:pt.number,
|
|
410
408
|
legendProps:pt.object,
|
|
409
|
+
tooltipProps:pt.object,
|
|
411
410
|
withLegend:pt.bool,
|
|
412
411
|
withTooltip:pt.bool,
|
|
413
412
|
textColor: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"])]),
|
|
@@ -417,6 +416,7 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
417
416
|
withRightYAxis:pt.bool,
|
|
418
417
|
rightYAxisProps:pt.any,
|
|
419
418
|
rightYAxisLabel:pt.any,
|
|
419
|
+
valueFormatter:pt.any,
|
|
420
420
|
classNames:pt.object,
|
|
421
421
|
styles:pt.any,
|
|
422
422
|
unstyled:pt.bool,
|
|
@@ -520,7 +520,7 @@ pk.DonutChart.propTypes = {data:pt.arrayOf(pt.shape({name:pt.string,value:pt.num
|
|
|
520
520
|
tabIndex:pt.number,
|
|
521
521
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
522
522
|
pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
523
|
-
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),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})),
|
|
523
|
+
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
524
|
curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),
|
|
525
525
|
fillOpacity:pt.number,
|
|
526
526
|
withDots:pt.bool,
|
|
@@ -876,8 +876,6 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
876
876
|
inset:pt.oneOfType([pt.string,pt.number]),
|
|
877
877
|
display:pt.oneOfType([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"])]),
|
|
878
878
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
879
|
-
valueFormatter:pt.any,
|
|
880
|
-
tooltipProps:pt.object,
|
|
881
879
|
referenceLines:pt.arrayOf(pt.object),
|
|
882
880
|
withXAxis:pt.bool,
|
|
883
881
|
withYAxis:pt.bool,
|
|
@@ -889,6 +887,7 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
889
887
|
gridAxis:pt.oneOf(["'none'", "'x'", "'y'", "'xy'"]),
|
|
890
888
|
tooltipAnimationDuration:pt.number,
|
|
891
889
|
legendProps:pt.object,
|
|
890
|
+
tooltipProps:pt.object,
|
|
892
891
|
withLegend:pt.bool,
|
|
893
892
|
withTooltip:pt.bool,
|
|
894
893
|
textColor: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"])]),
|
|
@@ -899,6 +898,7 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
899
898
|
withRightYAxis:pt.bool,
|
|
900
899
|
rightYAxisProps:pt.any,
|
|
901
900
|
rightYAxisLabel:pt.any,
|
|
901
|
+
valueFormatter:pt.any,
|
|
902
902
|
classNames:pt.object,
|
|
903
903
|
styles:pt.any,
|
|
904
904
|
unstyled:pt.bool,
|
|
@@ -988,7 +988,7 @@ pk.Sparkline.propTypes = {data:pt.arrayOf(pt.number),
|
|
|
988
988
|
tabIndex:pt.number,
|
|
989
989
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
990
990
|
pk.AreaChart.propTypes = {data:pt.arrayOf(pt.shape({})),
|
|
991
|
-
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,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"])]),name:pt.string,label:pt.string,yAxisId:pt.string})),
|
|
991
|
+
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,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"])]),curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),name:pt.string,label:pt.string,yAxisId:pt.string})),
|
|
992
992
|
type:pt.oneOf(["'default'", "'stacked'", "'percent'", "'split'"]),
|
|
993
993
|
withGradient:pt.bool,
|
|
994
994
|
curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),
|
|
@@ -1504,7 +1504,7 @@ pk.DonutChart.propTypes = {data:pt.arrayOf(pt.shape({name:pt.string,value:pt.num
|
|
|
1504
1504
|
tabIndex:pt.number,
|
|
1505
1505
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
1506
1506
|
pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
1507
|
-
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),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})),
|
|
1507
|
+
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
1508
|
curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),
|
|
1509
1509
|
fillOpacity:pt.number,
|
|
1510
1510
|
withDots:pt.bool,
|
|
@@ -3220,6 +3220,94 @@ pk.ButtonGroup.propTypes = {children:pt.node,
|
|
|
3220
3220
|
unstyled:pt.bool,
|
|
3221
3221
|
variant:pt.string,
|
|
3222
3222
|
attributes:pt.any};
|
|
3223
|
+
pk.CopyButton.propTypes = {value:pt.string,
|
|
3224
|
+
timeout:pt.number,
|
|
3225
|
+
size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["compact-xs"]),pt.oneOf(["compact-sm"]),pt.oneOf(["compact-md"]),pt.oneOf(["compact-lg"]),pt.oneOf(["compact-xl"])]),
|
|
3226
|
+
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"])]),
|
|
3227
|
+
copiedColor: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"])]),
|
|
3228
|
+
fullWidth:pt.bool,
|
|
3229
|
+
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3230
|
+
gradient:pt.shape({from:pt.string,to:pt.string,deg:pt.number}),
|
|
3231
|
+
disabled:pt.bool,
|
|
3232
|
+
children:pt.node,
|
|
3233
|
+
copiedChildren:pt.node,
|
|
3234
|
+
autoContrast:pt.bool,
|
|
3235
|
+
n_clicks:pt.number,
|
|
3236
|
+
triggerCopy:pt.bool,
|
|
3237
|
+
target_id:pt.string,
|
|
3238
|
+
id:pt.string,
|
|
3239
|
+
setProps:pt.any,
|
|
3240
|
+
data-*:pt.string,
|
|
3241
|
+
aria-*:pt.string,
|
|
3242
|
+
tabIndex:pt.number,
|
|
3243
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
3244
|
+
className:pt.string,
|
|
3245
|
+
style:pt.any,
|
|
3246
|
+
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3247
|
+
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3248
|
+
lightHidden:pt.bool,
|
|
3249
|
+
darkHidden:pt.bool,
|
|
3250
|
+
mod:pt.oneOfType([pt.string]),
|
|
3251
|
+
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3252
|
+
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3253
|
+
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3254
|
+
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3255
|
+
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3256
|
+
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3257
|
+
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3258
|
+
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3259
|
+
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3260
|
+
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3261
|
+
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3262
|
+
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3263
|
+
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3264
|
+
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3265
|
+
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3266
|
+
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3267
|
+
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3268
|
+
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3269
|
+
bd:pt.oneOfType([pt.string,pt.number]),
|
|
3270
|
+
bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3271
|
+
bg: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"])]),
|
|
3272
|
+
c: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"])]),
|
|
3273
|
+
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
3274
|
+
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
3275
|
+
fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
3276
|
+
fw:pt.oneOfType([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"])]),
|
|
3277
|
+
lts:pt.oneOfType([pt.string,pt.number]),
|
|
3278
|
+
ta:pt.oneOfType([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"])]),
|
|
3279
|
+
lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
3280
|
+
fs:pt.oneOfType([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"])]),
|
|
3281
|
+
tt:pt.oneOfType([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"])]),
|
|
3282
|
+
td:pt.oneOfType([pt.string,pt.number]),
|
|
3283
|
+
w:pt.oneOfType([pt.string,pt.number]),
|
|
3284
|
+
miw:pt.oneOfType([pt.string,pt.number]),
|
|
3285
|
+
maw:pt.oneOfType([pt.string,pt.number]),
|
|
3286
|
+
h:pt.oneOfType([pt.string,pt.number]),
|
|
3287
|
+
mih:pt.oneOfType([pt.string,pt.number]),
|
|
3288
|
+
mah:pt.oneOfType([pt.string,pt.number]),
|
|
3289
|
+
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
3290
|
+
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
3291
|
+
bgr:pt.oneOfType([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"])]),
|
|
3292
|
+
bga:pt.oneOfType([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"])]),
|
|
3293
|
+
pos:pt.oneOfType([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"])]),
|
|
3294
|
+
top:pt.oneOfType([pt.string,pt.number]),
|
|
3295
|
+
left:pt.oneOfType([pt.string,pt.number]),
|
|
3296
|
+
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
3297
|
+
right:pt.oneOfType([pt.string,pt.number]),
|
|
3298
|
+
inset:pt.oneOfType([pt.string,pt.number]),
|
|
3299
|
+
display:pt.oneOfType([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"])]),
|
|
3300
|
+
flex:pt.oneOfType([pt.string,pt.number]),
|
|
3301
|
+
classNames:pt.object,
|
|
3302
|
+
styles:pt.any,
|
|
3303
|
+
unstyled:pt.bool,
|
|
3304
|
+
variant:pt.string,
|
|
3305
|
+
attributes:pt.any};
|
|
3306
|
+
pk.CustomCopyButton.propTypes = {value:pt.string,
|
|
3307
|
+
timeout:pt.number,
|
|
3308
|
+
children:pt.any,
|
|
3309
|
+
id:pt.string,
|
|
3310
|
+
setProps:pt.any};
|
|
3223
3311
|
pk.UnstyledButton.propTypes = {children:pt.node,
|
|
3224
3312
|
n_clicks:pt.number,
|
|
3225
3313
|
disabled:pt.bool,
|
|
@@ -14474,8 +14562,10 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14474
14562
|
selected:pt.string,
|
|
14475
14563
|
debounce:pt.oneOfType([pt.number]),
|
|
14476
14564
|
n_blur:pt.number,
|
|
14565
|
+
focus:pt.oneOfType([pt.number,pt.oneOf(["start"]),pt.oneOf(["end"]),pt.oneOf(["all"])]),
|
|
14566
|
+
editable:pt.bool,
|
|
14477
14567
|
variant:pt.oneOf(["'default'", "'subtle'"]),
|
|
14478
|
-
extensions:pt.arrayOf(pt.oneOfType([pt.oneOf(["StarterKit"]),pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["TextAlign"]),pt.oneOf(["TextStyle"]),pt.oneOf(["Table"]),pt.oneOf(["TableCell"]),pt.oneOf(["TableRow"]),pt.oneOf(["TableHeader"]),pt.oneOf(["Placeholder"]),pt.oneOf(["Image"]),pt.oneOf(["BackgroundColor"]),pt.oneOf(["FontFamily"]),pt.oneOf(["FontSize"]),pt.oneOf(["LineHeight"]),pt.oneOf(["Color"]),pt.shape({StarterKit:pt.objectOf(pt.shape({})),Underline:pt.objectOf(pt.shape({})),Link:pt.objectOf(pt.shape({})),Superscript:pt.objectOf(pt.shape({})),Subscript:pt.objectOf(pt.shape({})),Highlight:pt.objectOf(pt.shape({})),TextAlign:pt.objectOf(pt.shape({})),TextStyle:pt.objectOf(pt.shape({})),Table:pt.objectOf(pt.shape({})),TableCell:pt.objectOf(pt.shape({})),TableRow:pt.objectOf(pt.shape({})),TableHeader:pt.objectOf(pt.shape({})),Placeholder:pt.objectOf(pt.shape({})),Image:pt.objectOf(pt.shape({})),BackgroundColor:pt.objectOf(pt.shape({})),FontFamily:pt.objectOf(pt.shape({})),FontSize:pt.objectOf(pt.shape({})),LineHeight:pt.objectOf(pt.shape({})),Color:pt.objectOf(pt.shape({}))})])),
|
|
14568
|
+
extensions:pt.arrayOf(pt.oneOfType([pt.oneOf(["StarterKit"]),pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["TextAlign"]),pt.oneOf(["TextStyle"]),pt.oneOf(["Table"]),pt.oneOf(["TableCell"]),pt.oneOf(["TableRow"]),pt.oneOf(["TableHeader"]),pt.oneOf(["Placeholder"]),pt.oneOf(["Image"]),pt.oneOf(["BackgroundColor"]),pt.oneOf(["FontFamily"]),pt.oneOf(["FontSize"]),pt.oneOf(["LineHeight"]),pt.oneOf(["Color"]),pt.oneOf(["CodeBlockLowlight"]),pt.shape({StarterKit:pt.objectOf(pt.shape({})),Underline:pt.objectOf(pt.shape({})),Link:pt.objectOf(pt.shape({})),Superscript:pt.objectOf(pt.shape({})),Subscript:pt.objectOf(pt.shape({})),Highlight:pt.objectOf(pt.shape({})),TextAlign:pt.objectOf(pt.shape({})),TextStyle:pt.objectOf(pt.shape({})),Table:pt.objectOf(pt.shape({})),TableCell:pt.objectOf(pt.shape({})),TableRow:pt.objectOf(pt.shape({})),TableHeader:pt.objectOf(pt.shape({})),Placeholder:pt.objectOf(pt.shape({})),Image:pt.objectOf(pt.shape({})),BackgroundColor:pt.objectOf(pt.shape({})),FontFamily:pt.objectOf(pt.shape({})),FontSize:pt.objectOf(pt.shape({})),LineHeight:pt.objectOf(pt.shape({})),Color:pt.objectOf(pt.shape({})),CodeBlockLowlight:pt.objectOf(pt.shape({}))})])),
|
|
14479
14569
|
toolbar:pt.shape({sticky:pt.bool,stickyOffset:pt.oneOfType([pt.string,pt.number]),controlsGroups:pt.arrayOf(pt.arrayOf(pt.oneOfType([pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["Color"]),pt.oneOf(["Bold"]),pt.oneOf(["Italic"]),pt.oneOf(["Strikethrough"]),pt.oneOf(["ClearFormatting"]),pt.oneOf(["Code"]),pt.oneOf(["H1"]),pt.oneOf(["H2"]),pt.oneOf(["H3"]),pt.oneOf(["H4"]),pt.oneOf(["H5"]),pt.oneOf(["H6"]),pt.oneOf(["CodeBlock"]),pt.oneOf(["Blockquote"]),pt.oneOf(["Hr"]),pt.oneOf(["BulletList"]),pt.oneOf(["OrderedList"]),pt.oneOf(["Unlink"]),pt.oneOf(["AlignLeft"]),pt.oneOf(["AlignCenter"]),pt.oneOf(["AlignJustify"]),pt.oneOf(["AlignRight"]),pt.oneOf(["Undo"]),pt.oneOf(["Redo"]),pt.oneOf(["ColorPicker"]),pt.oneOf(["UnsetColor"])])))}),
|
|
14480
14570
|
withCodeHighlightStyles:pt.bool,
|
|
14481
14571
|
withTypographyStyles:pt.bool,
|
|
@@ -14514,7 +14604,7 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14514
14604
|
fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
14515
14605
|
fw:pt.oneOfType([pt.oneOf(["bold"]),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(["bolder"]),pt.oneOf(["lighter"])]),
|
|
14516
14606
|
lts:pt.oneOfType([pt.string,pt.number]),
|
|
14517
|
-
ta:pt.oneOfType([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(["
|
|
14607
|
+
ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["start"]),pt.oneOf(["end"]),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(["justify"]),pt.oneOf(["match-parent"])]),
|
|
14518
14608
|
lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
14519
14609
|
fs:pt.oneOfType([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"])]),
|
|
14520
14610
|
tt:pt.oneOfType([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"])]),
|
|
@@ -14555,8 +14645,10 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14555
14645
|
selected:pt.string,
|
|
14556
14646
|
debounce:pt.oneOfType([pt.number]),
|
|
14557
14647
|
n_blur:pt.number,
|
|
14648
|
+
focus:pt.oneOfType([pt.number,pt.oneOf(["start"]),pt.oneOf(["end"]),pt.oneOf(["all"])]),
|
|
14649
|
+
editable:pt.bool,
|
|
14558
14650
|
variant:pt.oneOf(["'default'", "'subtle'"]),
|
|
14559
|
-
extensions:pt.arrayOf(pt.oneOfType([pt.oneOf(["StarterKit"]),pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["TextAlign"]),pt.oneOf(["TextStyle"]),pt.oneOf(["Table"]),pt.oneOf(["TableCell"]),pt.oneOf(["TableRow"]),pt.oneOf(["TableHeader"]),pt.oneOf(["Placeholder"]),pt.oneOf(["Image"]),pt.oneOf(["BackgroundColor"]),pt.oneOf(["FontFamily"]),pt.oneOf(["FontSize"]),pt.oneOf(["LineHeight"]),pt.oneOf(["Color"])])),
|
|
14651
|
+
extensions:pt.arrayOf(pt.oneOfType([pt.oneOf(["StarterKit"]),pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["TextAlign"]),pt.oneOf(["TextStyle"]),pt.oneOf(["Table"]),pt.oneOf(["TableCell"]),pt.oneOf(["TableRow"]),pt.oneOf(["TableHeader"]),pt.oneOf(["Placeholder"]),pt.oneOf(["Image"]),pt.oneOf(["BackgroundColor"]),pt.oneOf(["FontFamily"]),pt.oneOf(["FontSize"]),pt.oneOf(["LineHeight"]),pt.oneOf(["Color"]),pt.oneOf(["CodeBlockLowlight"])])),
|
|
14560
14652
|
toolbar:pt.shape({sticky:pt.bool,stickyOffset:pt.oneOfType([pt.string,pt.number]),controlsGroups:pt.arrayOf(pt.arrayOf(pt.oneOfType([pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["Color"]),pt.oneOf(["Bold"]),pt.oneOf(["Italic"]),pt.oneOf(["Strikethrough"]),pt.oneOf(["ClearFormatting"]),pt.oneOf(["Code"]),pt.oneOf(["H1"]),pt.oneOf(["H2"]),pt.oneOf(["H3"]),pt.oneOf(["H4"]),pt.oneOf(["H5"]),pt.oneOf(["H6"]),pt.oneOf(["CodeBlock"]),pt.oneOf(["Blockquote"]),pt.oneOf(["Hr"]),pt.oneOf(["BulletList"]),pt.oneOf(["OrderedList"]),pt.oneOf(["Unlink"]),pt.oneOf(["AlignLeft"]),pt.oneOf(["AlignCenter"]),pt.oneOf(["AlignJustify"]),pt.oneOf(["AlignRight"]),pt.oneOf(["Undo"]),pt.oneOf(["Redo"]),pt.oneOf(["ColorPicker"]),pt.oneOf(["UnsetColor"])])))}),
|
|
14561
14653
|
withCodeHighlightStyles:pt.bool,
|
|
14562
14654
|
withTypographyStyles:pt.bool,
|
|
@@ -14595,7 +14687,7 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14595
14687
|
fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
14596
14688
|
fw:pt.oneOfType([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"])]),
|
|
14597
14689
|
lts:pt.oneOfType([pt.string,pt.number]),
|
|
14598
|
-
ta:pt.oneOfType([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(["
|
|
14690
|
+
ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["start"]),pt.oneOf(["end"]),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(["justify"]),pt.oneOf(["match-parent"])]),
|
|
14599
14691
|
lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
14600
14692
|
fs:pt.oneOfType([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"])]),
|
|
14601
14693
|
tt:pt.oneOfType([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"])]),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dash_mantine_components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "Plotly Dash Components based on Mantine",
|
|
5
5
|
"main": "index.ts",
|
|
6
6
|
"repository": {
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
"author": "Snehil Vijay <snehilvj@outlook.com>",
|
|
48
48
|
"license": "MIT",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@mantine/carousel": "8.3.
|
|
51
|
-
"@mantine/charts": "8.3.
|
|
52
|
-
"@mantine/code-highlight": "8.3.
|
|
53
|
-
"@mantine/core": "8.3.
|
|
54
|
-
"@mantine/dates": "8.3.
|
|
55
|
-
"@mantine/hooks": "8.3.
|
|
56
|
-
"@mantine/notifications": "8.3.
|
|
57
|
-
"@mantine/nprogress": "8.3.
|
|
58
|
-
"@mantine/spotlight": "8.3.
|
|
59
|
-
"@mantine/tiptap": "8.3.
|
|
50
|
+
"@mantine/carousel": "8.3.6",
|
|
51
|
+
"@mantine/charts": "8.3.6",
|
|
52
|
+
"@mantine/code-highlight": "8.3.6",
|
|
53
|
+
"@mantine/core": "8.3.6",
|
|
54
|
+
"@mantine/dates": "8.3.6",
|
|
55
|
+
"@mantine/hooks": "8.3.6",
|
|
56
|
+
"@mantine/notifications": "8.3.6",
|
|
57
|
+
"@mantine/nprogress": "8.3.6",
|
|
58
|
+
"@mantine/spotlight": "8.3.6",
|
|
59
|
+
"@mantine/tiptap": "8.3.6",
|
|
60
60
|
"@plotly/dash-component-plugins": "^1.2.0",
|
|
61
61
|
"@tiptap/extension-table": "3.3.1",
|
|
62
62
|
"@tiptap/extension-image": "3.3.1",
|
|
@@ -69,9 +69,11 @@
|
|
|
69
69
|
"@tiptap/extension-list": "^3.3.1",
|
|
70
70
|
"@tiptap/extension-text-align": "^3.3.1",
|
|
71
71
|
"@tiptap/extension-text-style": "^3.3.1",
|
|
72
|
+
"@tiptap/extension-code-block-lowlight": "^3.3.1" ,
|
|
72
73
|
"@tiptap/pm": "^3.3.1",
|
|
73
74
|
"@tiptap/react": "^3.3.1",
|
|
74
75
|
"@tiptap/starter-kit": "^3.3.1",
|
|
76
|
+
"lowlight": "^3.3.0",
|
|
75
77
|
"dayjs": "^1.11.13",
|
|
76
78
|
"embla-carousel-auto-scroll": "^8.5.2",
|
|
77
79
|
"embla-carousel-autoplay": "^8.5.2",
|