@aceshooting/lyra-ui 10.0.1 → 11.1.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/CHANGELOG.md +271 -0
- package/custom-elements.json +1 -1
- package/design-tokens.json +13 -0
- package/dist/cli/migrate-wa.mjs +164 -1
- package/dist/cli/migration-contract.json +1 -1
- package/dist/components/charts/chart/box-plot.class.d.ts +27 -0
- package/dist/components/charts/chart/box-plot.class.js +14 -4
- package/dist/components/charts/chart/box-plot.styles.js +28 -0
- package/dist/components/charts/chart/chart.class.d.ts +27 -0
- package/dist/components/charts/chart/chart.class.js +15 -5
- package/dist/components/charts/chart/chart.styles.js +28 -0
- package/dist/components/charts/chart/lite-chart.class.d.ts +32 -0
- package/dist/components/charts/chart/lite-chart.class.js +17 -4
- package/dist/components/charts/chart/lite-chart.styles.js +29 -0
- package/dist/components/data/heatmap/heatmap.class.d.ts +35 -2
- package/dist/components/data/heatmap/heatmap.class.js +2 -2
- package/dist/components/data/table/table.class.d.ts +19 -0
- package/dist/components/data/table/table.class.js +3 -3
- package/dist/components/forms/combobox/combobox.class.d.ts +71 -3
- package/dist/components/forms/combobox/combobox.class.js +4 -2
- package/dist/components/forms/combobox/combobox.styles.js +9 -0
- package/dist/components/forms/date-picker/date-input.class.d.ts +12 -1
- package/dist/components/forms/date-picker/date-input.class.js +4 -2
- package/dist/components/forms/date-picker/date-picker.class.d.ts +72 -0
- package/dist/components/forms/date-picker/date-picker.class.js +15 -3
- package/dist/components/forms/date-picker/date-picker.styles.js +46 -0
- package/dist/components/media/flag/flag.class.d.ts +3 -1
- package/dist/components/media/flag/flag.class.js +1 -1
- package/dist/components/media/map/map.class.d.ts +39 -2
- package/dist/components/media/map/map.class.js +1 -1
- package/dist/components/overlays/dialog/dialog.class.d.ts +20 -0
- package/dist/components/overlays/overlay/popover.class.d.ts +19 -3
- package/dist/components/overlays/overlay/popover.class.js +1 -1
- package/dist/components/viewers/pdf-viewer/pdf-viewer.class.js +1 -1
- package/dist/custom-elements-jsx.d.ts +31 -16
- package/dist/internal/canvas.js +1 -1
- package/dist/internal/package-metadata.d.ts +1 -1
- package/dist/internal/package-metadata.js +1 -1
- package/dist/internal/tokens.styles.js +1 -0
- package/dist/lyra.d.ts +1 -1
- package/dist/svelte.d.ts +31 -16
- package/dist/theme.css +32 -0
- package/dist/vue.d.ts +31 -16
- package/llms/components/lr-agent-eval-dashboard.md +1 -1
- package/llms/components/lr-agent-workspace.md +1 -1
- package/llms/components/lr-bar-chart.md +4 -3
- package/llms/components/lr-box-plot.md +15 -4
- package/llms/components/lr-bubble-chart.md +4 -3
- package/llms/components/lr-chart.md +13 -3
- package/llms/components/lr-chunk-inspector.md +1 -1
- package/llms/components/lr-combobox.md +42 -6
- package/llms/components/lr-date-input.md +40 -4
- package/llms/components/lr-date-picker.md +40 -4
- package/llms/components/lr-dialog.md +2 -1
- package/llms/components/lr-doughnut-chart.md +4 -3
- package/llms/components/lr-entity-dossier.md +1 -1
- package/llms/components/lr-eval-run.md +1 -1
- package/llms/components/lr-flag.md +10 -3
- package/llms/components/lr-grounding-summary.md +1 -1
- package/llms/components/lr-heatmap.md +20 -2
- package/llms/components/lr-histogram.md +4 -3
- package/llms/components/lr-line-chart.md +4 -3
- package/llms/components/lr-lite-chart.md +19 -3
- package/llms/components/lr-map.md +21 -4
- package/llms/components/lr-memory-panel.md +1 -1
- package/llms/components/lr-option.md +41 -5
- package/llms/components/lr-pie-chart.md +4 -3
- package/llms/components/lr-polar-area-chart.md +4 -3
- package/llms/components/lr-popover.md +20 -1
- package/llms/components/lr-provenance-panel.md +1 -1
- package/llms/components/lr-radar-chart.md +4 -3
- package/llms/components/lr-rag-answer.md +1 -1
- package/llms/components/lr-rag-eval-dashboard.md +1 -1
- package/llms/components/lr-retrieval-results.md +1 -1
- package/llms/components/lr-retrieval-trace.md +1 -1
- package/llms/components/lr-scatter-chart.md +4 -3
- package/llms/peers.md +8 -8
- package/llms/tokens.md +27 -1
- package/llms-full.txt +231 -28
- package/package.json +1 -1
- package/vscode-css-data.json +70 -0
- package/vscode-html-data.json +131 -20
- package/web-types.json +190 -23
|
@@ -415,9 +415,10 @@ export type LyraAvPlayerReactProps = LyraReactElementProps<LyraAvPlayer, 'active
|
|
|
415
415
|
export type LyraAvatarReactProps = LyraReactElementProps<LyraAvatar, 'image' | 'initials' | 'label' | 'loading' | 'locale' | 'shape' | 'size' | 'strings' | 'variant', {}, LyraAvatarEventMap, 'lr-error', '--lr-avatar-bg' | '--lr-avatar-color' | '--lr-avatar-font-size' | '--lr-avatar-size' | '--size', {}>;
|
|
416
416
|
export type LyraAvatarGroupReactProps = LyraReactElementProps<LyraAvatarGroup, 'label' | 'locale' | 'max' | 'shape' | 'size' | 'strings' | 'variant', {}, LyraAvatarGroupEventMap, 'lr-overflow-click', '--lr-avatar-group-avatar-size' | '--lr-avatar-group-badge-bg' | '--lr-avatar-group-badge-color' | '--lr-avatar-group-badge-font-size' | '--lr-avatar-group-overlap' | '--lr-avatar-group-ring-color' | '--lr-avatar-group-ring-width', {}>;
|
|
417
417
|
export type LyraBadgeReactProps = LyraReactElementProps<LyraBadge, 'appearance' | 'attention' | 'locale' | 'pill' | 'pulse' | 'size' | 'strings' | 'variant', {}, {}, never, '--lr-badge-attention-duration' | '--lr-badge-attention-easing' | '--lr-badge-background' | '--lr-badge-border' | '--lr-badge-bounce-distance' | '--lr-badge-color' | '--lr-badge-edge' | '--lr-badge-fill' | '--lr-badge-font-size' | '--lr-badge-gap' | '--lr-badge-ink' | '--lr-badge-min-height' | '--lr-badge-on-solid' | '--lr-badge-padding-inline' | '--lr-badge-pulse-color' | '--lr-badge-pulse-spread' | '--lr-badge-radius' | '--lr-badge-solid' | '--lr-badge-stroke' | '--lr-badge-text' | '--lr-badge-tint' | '--pulse-color', {}>;
|
|
418
|
-
export type LyraBarChartReactProps = LyraReactElementProps<LyraBarChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
418
|
+
export type LyraBarChartReactProps = LyraReactElementProps<LyraBarChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-data-table-toggle-active-bg' | '--lr-chart-data-table-toggle-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
419
419
|
'begin-at-zero'?: LyraBarChart['beginAtZero'];
|
|
420
420
|
'data-labels'?: LyraBarChart['dataLabels'];
|
|
421
|
+
'data-table-toggle'?: LyraBarChart['dataTableToggle'];
|
|
421
422
|
'index-axis'?: LyraBarChart['indexAxis'];
|
|
422
423
|
'legend-position'?: LyraBarChart['legendPosition'];
|
|
423
424
|
'scale-type'?: LyraBarChart['scaleType'];
|
|
@@ -430,8 +431,9 @@ export type LyraBarChartReactProps = LyraReactElementProps<LyraBarChart, 'annota
|
|
|
430
431
|
'y-label'?: LyraBarChart['yLabel'];
|
|
431
432
|
'y2-label'?: LyraBarChart['y2Label'];
|
|
432
433
|
}>;
|
|
433
|
-
export type LyraBoxPlotReactProps = LyraReactElementProps<LyraBoxPlot, 'beginAtZero' | 'datasets' | 'description' | 'formatter' | 'height' | 'hiddenDatasets' | 'label' | 'labels' | 'legend' | 'legendPosition' | 'locale' | 'showDataTable' | 'strings' | 'valueFormatter' | 'yLabel', {}, LyraBoxPlotEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click', '--lr-chart-canvas-hover-outline-width' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text', {
|
|
434
|
+
export type LyraBoxPlotReactProps = LyraReactElementProps<LyraBoxPlot, 'beginAtZero' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'height' | 'hiddenDatasets' | 'label' | 'labels' | 'legend' | 'legendPosition' | 'locale' | 'showDataTable' | 'strings' | 'valueFormatter' | 'yLabel', {}, LyraBoxPlotEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click', '--lr-box-plot-data-table-toggle-active-bg' | '--lr-box-plot-data-table-toggle-hover-bg' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text', {
|
|
434
435
|
'begin-at-zero'?: LyraBoxPlot['beginAtZero'];
|
|
436
|
+
'data-table-toggle'?: LyraBoxPlot['dataTableToggle'];
|
|
435
437
|
'legend-position'?: LyraBoxPlot['legendPosition'];
|
|
436
438
|
'show-data-table'?: LyraBoxPlot['showDataTable'];
|
|
437
439
|
'y-label'?: LyraBoxPlot['yLabel'];
|
|
@@ -446,9 +448,10 @@ export type LyraBreadcrumbItemReactProps = LyraReactElementProps<LyraBreadcrumbI
|
|
|
446
448
|
export type LyraBrowserFrameReactProps = LyraReactElementProps<LyraBrowserFrame, 'controller' | 'controls' | 'frameSrc' | 'locale' | 'phase' | 'pings' | 'strings' | 'url', {}, LyraBrowserFrameEventMap, 'lr-stop' | 'lr-take-over', '--lr-browser-frame-aspect-ratio' | '--lr-browser-frame-controller-background' | '--lr-browser-frame-controller-color' | '--lr-browser-frame-ping-click-color' | '--lr-browser-frame-ping-move-color' | '--lr-browser-frame-ping-scroll-color' | '--lr-browser-frame-ping-type-color', {
|
|
447
449
|
'frame-src'?: LyraBrowserFrame['frameSrc'];
|
|
448
450
|
}>;
|
|
449
|
-
export type LyraBubbleChartReactProps = LyraReactElementProps<LyraBubbleChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
451
|
+
export type LyraBubbleChartReactProps = LyraReactElementProps<LyraBubbleChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-data-table-toggle-active-bg' | '--lr-chart-data-table-toggle-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
450
452
|
'begin-at-zero'?: LyraBubbleChart['beginAtZero'];
|
|
451
453
|
'data-labels'?: LyraBubbleChart['dataLabels'];
|
|
454
|
+
'data-table-toggle'?: LyraBubbleChart['dataTableToggle'];
|
|
452
455
|
'index-axis'?: LyraBubbleChart['indexAxis'];
|
|
453
456
|
'legend-position'?: LyraBubbleChart['legendPosition'];
|
|
454
457
|
'scale-type'?: LyraBubbleChart['scaleType'];
|
|
@@ -511,9 +514,10 @@ export type LyraCarouselReactProps = LyraReactElementProps<LyraCarousel, 'access
|
|
|
511
514
|
'slides-per-page'?: LyraCarousel['slidesPerPage'];
|
|
512
515
|
}>;
|
|
513
516
|
export type LyraCarouselItemReactProps = LyraReactElementProps<LyraCarouselItem, 'locale' | 'strings', {}, {}, never, '--aspect-ratio', {}>;
|
|
514
|
-
export type LyraChartReactProps = LyraReactElementProps<LyraChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
517
|
+
export type LyraChartReactProps = LyraReactElementProps<LyraChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-data-table-toggle-active-bg' | '--lr-chart-data-table-toggle-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
515
518
|
'begin-at-zero'?: LyraChart['beginAtZero'];
|
|
516
519
|
'data-labels'?: LyraChart['dataLabels'];
|
|
520
|
+
'data-table-toggle'?: LyraChart['dataTableToggle'];
|
|
517
521
|
'index-axis'?: LyraChart['indexAxis'];
|
|
518
522
|
'legend-position'?: LyraChart['legendPosition'];
|
|
519
523
|
'scale-type'?: LyraChart['scaleType'];
|
|
@@ -628,7 +632,7 @@ export type LyraColorPickerReactProps = LyraReactElementProps<LyraColorPicker, '
|
|
|
628
632
|
'with-label'?: LyraColorPicker['withLabel'];
|
|
629
633
|
'without-format-toggle'?: LyraColorPicker['withoutFormatToggle'];
|
|
630
634
|
}>;
|
|
631
|
-
export type LyraComboboxReactProps = LyraReactElementProps<LyraCombobox, 'allowCreate' | 'allowCustomValue' | 'appearance' | 'autocapitalize' | 'autocomplete' | 'autocorrect' | 'clearable' | 'customError' | 'disabled' | 'emptyText' | 'enterkeyhint' | 'enterKeyHint' | 'errorText' | 'filter' | 'form' | 'getTag' | 'hint' | 'inputmode' | 'inputMode' | 'inputValue' | 'label' | 'loadingText' | 'locale' | 'maxOptionsVisible' | 'maxRender' | 'multiple' | 'name' | 'open' | 'overflowText' | 'pill' | 'placeholder' | 'placement' | 'required' | 'selectionDirection' | 'selectionEnd' | 'selectionStart' | 'size' | 'source' | 'sourceDelay' | 'spellcheck' | 'strings' | 'validationTarget' | 'validators' | 'value' | 'withClear' | 'withHint' | 'withLabel', {
|
|
635
|
+
export type LyraComboboxReactProps = LyraReactElementProps<LyraCombobox, 'allowCreate' | 'allowCustomValue' | 'appearance' | 'autocapitalize' | 'autocomplete' | 'autocorrect' | 'clearable' | 'customError' | 'disabled' | 'emptyText' | 'enterkeyhint' | 'enterKeyHint' | 'errorText' | 'filter' | 'form' | 'getTag' | 'hint' | 'inputmode' | 'inputMode' | 'inputValue' | 'label' | 'loadingText' | 'locale' | 'maxOptionsVisible' | 'maxRender' | 'multiple' | 'name' | 'open' | 'overflowText' | 'pill' | 'placeholder' | 'placement' | 'required' | 'selectionDirection' | 'selectionEnd' | 'selectionStart' | 'size' | 'source' | 'sourceDelay' | 'spellcheck' | 'strings' | 'validationTarget' | 'validators' | 'value' | 'visibleOptions' | 'withClear' | 'withHint' | 'withLabel', {
|
|
632
636
|
form: HTMLFormElement | string | null;
|
|
633
637
|
}, LyraComboboxEventMap, 'blur' | 'change' | 'focus' | 'input' | 'lr-after-hide' | 'lr-after-show' | 'lr-change' | 'lr-clear' | 'lr-create' | 'lr-filter' | 'lr-hide' | 'lr-invalid' | 'lr-show', '--hide-duration' | '--lr-combobox-expand-size' | '--lr-combobox-font-size' | '--lr-combobox-gap' | '--lr-combobox-option-active-bg' | '--lr-combobox-option-selected-bg' | '--lr-combobox-option-selected-border' | '--lr-combobox-option-selected-color' | '--lr-combobox-option-selected-font-weight' | '--lr-combobox-radius' | '--lr-combobox-tag-font-size' | '--lr-combobox-tag-padding' | '--lr-combobox-trigger-height' | '--lr-combobox-trigger-min-height' | '--lr-combobox-trigger-padding' | '--lr-form-control-required-color' | '--lr-form-control-required-content' | '--lr-form-control-required-offset' | '--show-duration' | '--tag-max-size', {
|
|
634
638
|
'allow-create'?: LyraCombobox['allowCreate'];
|
|
@@ -643,6 +647,7 @@ export type LyraComboboxReactProps = LyraReactElementProps<LyraCombobox, 'allowC
|
|
|
643
647
|
'max-render'?: LyraCombobox['maxRender'];
|
|
644
648
|
'overflow-text'?: LyraCombobox['overflowText'];
|
|
645
649
|
'source-delay'?: LyraCombobox['sourceDelay'];
|
|
650
|
+
'visible-options'?: LyraCombobox['visibleOptions'];
|
|
646
651
|
'with-clear'?: LyraCombobox['withClear'];
|
|
647
652
|
'with-hint'?: LyraCombobox['withHint'];
|
|
648
653
|
'with-label'?: LyraCombobox['withLabel'];
|
|
@@ -718,7 +723,7 @@ export type LyraDatasetViewerReactProps = LyraReactElementProps<LyraDatasetViewe
|
|
|
718
723
|
'active-highlight-id'?: LyraDatasetViewer['activeHighlightId'];
|
|
719
724
|
'max-height'?: LyraDatasetViewer['maxHeight'];
|
|
720
725
|
}>;
|
|
721
|
-
export type LyraDateInputReactProps = LyraReactElementProps<LyraDateInput, 'accessibleLabel' | 'appearance' | 'assumeInteractionOn' | 'autocapitalize' | 'autocomplete' | 'autoCorrect' | 'clearLabel' | 'customError' | 'dayContent' | 'defaultValue' | 'dialogLabel' | 'disabled' | 'disabledDates' | 'disabledDaysOfWeek' | 'disableFuture' | 'disablePast' | 'distance' | 'enterKeyHint' | 'errorText' | 'firstDayOfWeek' | 'form' | 'hint' | 'inputMode' | 'isDateDisabled' | 'label' | 'locale' | 'max' | 'maxRange' | 'min' | 'minRange' | 'mode' | 'months' | 'name' | 'open' | 'openLabel' | 'pageBy' | 'pill' | 'placeholder' | 'placement' | 'readonly' | 'required' | 'selectionDirection' | 'selectionEnd' | 'selectionStart' | 'size' | 'spellcheck' | 'strings' | 'today' | 'validationTarget' | 'validators' | 'value' | 'valueAsDate' | 'valueAsRange' | 'weekdayFormat' | 'withClear' | 'withHint' | 'withLabel' | 'withOutsideDays' | 'withWeekNumbers', {
|
|
726
|
+
export type LyraDateInputReactProps = LyraReactElementProps<LyraDateInput, 'accessibleLabel' | 'appearance' | 'assumeInteractionOn' | 'autocapitalize' | 'autocomplete' | 'autoCorrect' | 'clearLabel' | 'customError' | 'dayContent' | 'defaultValue' | 'dialogLabel' | 'disabled' | 'disabledDates' | 'disabledDaysOfWeek' | 'disableFuture' | 'disablePast' | 'distance' | 'enterKeyHint' | 'errorText' | 'firstDayOfWeek' | 'form' | 'hint' | 'inputMode' | 'isDateDisabled' | 'label' | 'locale' | 'max' | 'maxRange' | 'min' | 'minRange' | 'mode' | 'months' | 'name' | 'open' | 'openLabel' | 'pageBy' | 'pill' | 'placeholder' | 'placement' | 'presets' | 'readonly' | 'required' | 'selectionDirection' | 'selectionEnd' | 'selectionStart' | 'size' | 'spellcheck' | 'strings' | 'today' | 'validationTarget' | 'validators' | 'value' | 'valueAsDate' | 'valueAsRange' | 'weekdayFormat' | 'withClear' | 'withHint' | 'withLabel' | 'withOutsideDays' | 'withWeekNumbers', {
|
|
722
727
|
form: HTMLFormElement | string | null;
|
|
723
728
|
}, LyraDateInputEventMap, 'blur' | 'change' | 'focus' | 'input' | 'lr-after-hide' | 'lr-after-show' | 'lr-clear' | 'lr-hide' | 'lr-invalid' | 'lr-show', '--hide-duration' | '--lr-date-input-action-active-bg' | '--lr-date-input-action-active-color' | '--lr-date-input-action-active-radius' | '--lr-date-input-action-hover-bg' | '--lr-date-input-action-hover-color' | '--lr-date-input-action-hover-radius' | '--lr-date-input-control-height' | '--lr-date-input-control-min-height' | '--lr-date-input-focus-border-color' | '--lr-date-input-font-size' | '--lr-date-input-gap' | '--lr-date-input-padding-block' | '--lr-date-input-padding-inline' | '--lr-date-input-placeholder-color' | '--lr-date-input-radius' | '--lr-form-control-required-color' | '--lr-form-control-required-content' | '--lr-form-control-required-offset' | '--show-duration', {
|
|
724
729
|
'aria-label'?: LyraDateInput['accessibleLabel'];
|
|
@@ -746,7 +751,7 @@ export type LyraDateInputReactProps = LyraReactElementProps<LyraDateInput, 'acce
|
|
|
746
751
|
'with-outside-days'?: LyraDateInput['withOutsideDays'];
|
|
747
752
|
'with-week-numbers'?: LyraDateInput['withWeekNumbers'];
|
|
748
753
|
}>;
|
|
749
|
-
export type LyraDatePickerReactProps = LyraReactElementProps<LyraDatePicker, 'dayContent' | 'disabled' | 'disabledDates' | 'disabledDaysOfWeek' | 'disableFuture' | 'disablePast' | 'firstDayOfWeek' | 'focusedDate' | 'isDateDisabled' | 'locale' | 'max' | 'maxRange' | 'min' | 'minRange' | 'mode' | 'months' | 'nextLabel' | 'pageBy' | 'previousLabel' | 'readonly' | 'size' | 'strings' | 'today' | 'value' | 'valueAsDate' | 'valueAsRange' | 'view' | 'weekdayFormat' | 'withOutsideDays' | 'withWeekNumbers', {}, LyraDatePickerEventMap, 'change' | 'input' | 'lr-focus-day' | 'lr-view-change', '--lr-cell-size' | '--lr-date-picker-day-active-bg' | '--lr-date-picker-day-hover-bg' | '--lr-date-picker-day-outside-color' | '--lr-date-picker-disabled-color' | '--lr-date-picker-disabled-opacity' | '--lr-date-picker-header-gap' | '--lr-date-picker-month-gap' | '--lr-date-picker-nav-active-bg' | '--lr-date-picker-nav-hover-bg' | '--lr-date-picker-radius' | '--lr-date-picker-range-bg' | '--lr-date-picker-range-color' | '--lr-date-picker-range-preview-bg' | '--lr-date-picker-selected-bg' | '--lr-date-picker-selected-color' | '--lr-date-picker-title-active-bg' | '--lr-date-picker-title-active-color' | '--lr-date-picker-title-active-radius' | '--lr-date-picker-title-hover-color' | '--lr-date-picker-today-outline' | '--lr-date-picker-view-active-bg' | '--lr-date-picker-view-disabled-opacity' | '--lr-date-picker-view-hover-bg' | '--lr-date-picker-view-selected-bg' | '--lr-date-picker-view-selected-color' | '--lr-date-picker-view-today-outline', {
|
|
754
|
+
export type LyraDatePickerReactProps = LyraReactElementProps<LyraDatePicker, 'dayContent' | 'disabled' | 'disabledDates' | 'disabledDaysOfWeek' | 'disableFuture' | 'disablePast' | 'firstDayOfWeek' | 'focusedDate' | 'isDateDisabled' | 'locale' | 'max' | 'maxRange' | 'min' | 'minRange' | 'mode' | 'months' | 'nextLabel' | 'pageBy' | 'presets' | 'previousLabel' | 'readonly' | 'size' | 'strings' | 'today' | 'value' | 'valueAsDate' | 'valueAsRange' | 'view' | 'weekdayFormat' | 'withOutsideDays' | 'withWeekNumbers', {}, LyraDatePickerEventMap, 'change' | 'input' | 'lr-focus-day' | 'lr-view-change', '--lr-cell-size' | '--lr-date-picker-day-active-bg' | '--lr-date-picker-day-hover-bg' | '--lr-date-picker-day-outside-color' | '--lr-date-picker-disabled-color' | '--lr-date-picker-disabled-opacity' | '--lr-date-picker-header-gap' | '--lr-date-picker-month-gap' | '--lr-date-picker-nav-active-bg' | '--lr-date-picker-nav-hover-bg' | '--lr-date-picker-preset-active-bg' | '--lr-date-picker-preset-hover-bg' | '--lr-date-picker-preset-selected-bg' | '--lr-date-picker-radius' | '--lr-date-picker-range-bg' | '--lr-date-picker-range-color' | '--lr-date-picker-range-preview-bg' | '--lr-date-picker-selected-bg' | '--lr-date-picker-selected-color' | '--lr-date-picker-title-active-bg' | '--lr-date-picker-title-active-color' | '--lr-date-picker-title-active-radius' | '--lr-date-picker-title-hover-color' | '--lr-date-picker-today-outline' | '--lr-date-picker-view-active-bg' | '--lr-date-picker-view-disabled-opacity' | '--lr-date-picker-view-hover-bg' | '--lr-date-picker-view-selected-bg' | '--lr-date-picker-view-selected-color' | '--lr-date-picker-view-today-outline', {
|
|
750
755
|
'disable-future'?: LyraDatePicker['disableFuture'];
|
|
751
756
|
'disable-past'?: LyraDatePicker['disablePast'];
|
|
752
757
|
'disabled-dates'?: LyraDatePicker['disabledDates'];
|
|
@@ -805,9 +810,10 @@ export type LyraDocxViewerReactProps = LyraReactElementProps<LyraDocxViewer, 'ac
|
|
|
805
810
|
'active-highlight-id'?: LyraDocxViewer['activeHighlightId'];
|
|
806
811
|
'max-height'?: LyraDocxViewer['maxHeight'];
|
|
807
812
|
}>;
|
|
808
|
-
export type LyraDoughnutChartReactProps = LyraReactElementProps<LyraDoughnutChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
813
|
+
export type LyraDoughnutChartReactProps = LyraReactElementProps<LyraDoughnutChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-data-table-toggle-active-bg' | '--lr-chart-data-table-toggle-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
809
814
|
'begin-at-zero'?: LyraDoughnutChart['beginAtZero'];
|
|
810
815
|
'data-labels'?: LyraDoughnutChart['dataLabels'];
|
|
816
|
+
'data-table-toggle'?: LyraDoughnutChart['dataTableToggle'];
|
|
811
817
|
'index-axis'?: LyraDoughnutChart['indexAxis'];
|
|
812
818
|
'legend-position'?: LyraDoughnutChart['legendPosition'];
|
|
813
819
|
'scale-type'?: LyraDoughnutChart['scaleType'];
|
|
@@ -1008,11 +1014,12 @@ export type LyraHandoffDividerReactProps = LyraReactElementProps<LyraHandoffDivi
|
|
|
1008
1014
|
'from-agent'?: LyraHandoffDivider['fromAgent'];
|
|
1009
1015
|
'to-agent'?: LyraHandoffDivider['toAgent'];
|
|
1010
1016
|
}>;
|
|
1011
|
-
export type LyraHeatmapReactProps = LyraReactElementProps<LyraHeatmap, 'accessibleCells' | 'annotations' | 'bucketCount' | 'cellColor' | 'cellInteractive' | 'cellSize' | 'cellText' | 'colLabelHeight' | 'colorSteps' | 'data' | 'domain' | 'fitToWidth' | 'legendStops' | 'locale' | 'maxCellSize' | 'midpoint' | 'minCellSize' | 'rowLabelWidth' | 'scale' | 'selectedCell' | 'strings' | 'valueLabel', {}, LyraHeatmapEventMap, 'lr-cell-click', '--lr-heatmap-annotation-color' | '--lr-heatmap-color-steps-gradient' | '--lr-heatmap-focus-ring-color' | '--lr-heatmap-label-font' | '--lr-heatmap-no-data-fill' | '--lr-heatmap-scale-hi' | '--lr-heatmap-scale-lo' | '--lr-heatmap-selected-color' | '--lr-heatmap-tooltip-bg' | '--lr-heatmap-tooltip-text', {
|
|
1017
|
+
export type LyraHeatmapReactProps = LyraReactElementProps<LyraHeatmap, 'accessibleCells' | 'annotations' | 'bucketCount' | 'cellColor' | 'cellInteractive' | 'cellSize' | 'cellText' | 'colLabelHeight' | 'colLabelRotation' | 'colorSteps' | 'data' | 'domain' | 'fitToWidth' | 'legendStops' | 'locale' | 'maxCellSize' | 'midpoint' | 'minCellSize' | 'rowLabelWidth' | 'scale' | 'selectedCell' | 'strings' | 'valueLabel', {}, LyraHeatmapEventMap, 'lr-cell-click', '--lr-heatmap-annotation-color' | '--lr-heatmap-color-steps-gradient' | '--lr-heatmap-focus-ring-color' | '--lr-heatmap-label-font' | '--lr-heatmap-no-data-fill' | '--lr-heatmap-scale-hi' | '--lr-heatmap-scale-lo' | '--lr-heatmap-selected-color' | '--lr-heatmap-tooltip-bg' | '--lr-heatmap-tooltip-text', {
|
|
1012
1018
|
'accessible-cells'?: LyraHeatmap['accessibleCells'];
|
|
1013
1019
|
'bucket-count'?: LyraHeatmap['bucketCount'];
|
|
1014
1020
|
'cell-size'?: LyraHeatmap['cellSize'];
|
|
1015
1021
|
'col-label-height'?: LyraHeatmap['colLabelHeight'];
|
|
1022
|
+
'col-label-rotation'?: LyraHeatmap['colLabelRotation'];
|
|
1016
1023
|
'fit-to-width'?: LyraHeatmap['fitToWidth'];
|
|
1017
1024
|
'max-cell-size'?: LyraHeatmap['maxCellSize'];
|
|
1018
1025
|
'min-cell-size'?: LyraHeatmap['minCellSize'];
|
|
@@ -1022,9 +1029,10 @@ export type LyraHeatmapReactProps = LyraReactElementProps<LyraHeatmap, 'accessib
|
|
|
1022
1029
|
export type LyraHighlightLayerReactProps = LyraReactElementProps<LyraHighlightLayer, 'activeHighlightId' | 'interactive' | 'items' | 'locale' | 'strings', {}, LyraHighlightLayerEventMap, 'lr-highlight-activate', '--lr-highlight-layer-accent-background' | '--lr-highlight-layer-accent-outline' | '--lr-highlight-layer-danger-background' | '--lr-highlight-layer-danger-outline' | '--lr-highlight-layer-flash-background' | '--lr-highlight-layer-neutral-background' | '--lr-highlight-layer-neutral-outline' | '--lr-highlight-layer-success-background' | '--lr-highlight-layer-success-outline' | '--lr-highlight-layer-warning-background' | '--lr-highlight-layer-warning-outline', {
|
|
1023
1030
|
'active-highlight-id'?: LyraHighlightLayer['activeHighlightId'];
|
|
1024
1031
|
}>;
|
|
1025
|
-
export type LyraHistogramReactProps = LyraReactElementProps<LyraHistogram, 'annotations' | 'area' | 'beginAtZero' | 'bins' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'seriesLabel' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'values' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1032
|
+
export type LyraHistogramReactProps = LyraReactElementProps<LyraHistogram, 'annotations' | 'area' | 'beginAtZero' | 'bins' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'seriesLabel' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'values' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-data-table-toggle-active-bg' | '--lr-chart-data-table-toggle-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1026
1033
|
'begin-at-zero'?: LyraHistogram['beginAtZero'];
|
|
1027
1034
|
'data-labels'?: LyraHistogram['dataLabels'];
|
|
1035
|
+
'data-table-toggle'?: LyraHistogram['dataTableToggle'];
|
|
1028
1036
|
'index-axis'?: LyraHistogram['indexAxis'];
|
|
1029
1037
|
'legend-position'?: LyraHistogram['legendPosition'];
|
|
1030
1038
|
'scale-type'?: LyraHistogram['scaleType'];
|
|
@@ -1142,9 +1150,10 @@ export type LyraLightboxReactProps = LyraReactElementProps<LyraLightbox, 'access
|
|
|
1142
1150
|
'show-counter'?: LyraLightbox['showCounter'];
|
|
1143
1151
|
'zoom-step'?: LyraLightbox['zoomStep'];
|
|
1144
1152
|
}>;
|
|
1145
|
-
export type LyraLineChartReactProps = LyraReactElementProps<LyraLineChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1153
|
+
export type LyraLineChartReactProps = LyraReactElementProps<LyraLineChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-data-table-toggle-active-bg' | '--lr-chart-data-table-toggle-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1146
1154
|
'begin-at-zero'?: LyraLineChart['beginAtZero'];
|
|
1147
1155
|
'data-labels'?: LyraLineChart['dataLabels'];
|
|
1156
|
+
'data-table-toggle'?: LyraLineChart['dataTableToggle'];
|
|
1148
1157
|
'index-axis'?: LyraLineChart['indexAxis'];
|
|
1149
1158
|
'legend-position'?: LyraLineChart['legendPosition'];
|
|
1150
1159
|
'scale-type'?: LyraLineChart['scaleType'];
|
|
@@ -1157,15 +1166,17 @@ export type LyraLineChartReactProps = LyraReactElementProps<LyraLineChart, 'anno
|
|
|
1157
1166
|
'y-label'?: LyraLineChart['yLabel'];
|
|
1158
1167
|
'y2-label'?: LyraLineChart['y2Label'];
|
|
1159
1168
|
}>;
|
|
1160
|
-
export type LyraLiteChartReactProps = LyraReactElementProps<LyraLiteChart, 'accessibleLabel' | 'barGapRatio' | 'barWidth' | 'barX' | 'beginAtZero' | 'datasets' | 'description' | 'formatter' | 'height' | 'label' | 'labels' | 'layout' | 'legend' | 'legendPosition' | 'legendText' | 'locale' | 'maxLabels' | 'minBarHeight' | 'pointText' | 'roundedBars' | 'scale' | 'selectedIndices' | 'skipZero' | 'stacked' | 'strings' | 'tableCellFormatter' | 'tableTotals' | 'tickFormat' | 'type' | 'valueAxisGutter' | 'withoutValueAxis' | 'xLabel' | 'yLabel', {}, LyraLiteChartEventMap, 'lr-datum-activate' | 'lr-point-click', '--lr-chart-color-1' | '--lr-chart-color-2' | '--lr-chart-color-3' | '--lr-chart-color-4' | '--lr-chart-color-5' | '--lr-chart-color-6' | '--lr-chart-color-7' | '--lr-chart-color-8' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-tick-color' | '--lr-lite-chart-selected-outline-color' | '--lr-lite-chart-selected-outline-width', {
|
|
1169
|
+
export type LyraLiteChartReactProps = LyraReactElementProps<LyraLiteChart, 'accessibleLabel' | 'barGapRatio' | 'barWidth' | 'barX' | 'beginAtZero' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'height' | 'label' | 'labels' | 'layout' | 'legend' | 'legendPosition' | 'legendText' | 'locale' | 'maxLabels' | 'minBarHeight' | 'pointText' | 'roundedBars' | 'scale' | 'selectedIndices' | 'showDataTable' | 'skipZero' | 'stacked' | 'strings' | 'tableCellFormatter' | 'tableTotals' | 'tickFormat' | 'type' | 'valueAxisGutter' | 'withoutValueAxis' | 'xLabel' | 'yLabel', {}, LyraLiteChartEventMap, 'lr-datum-activate' | 'lr-point-click', '--lr-chart-color-1' | '--lr-chart-color-2' | '--lr-chart-color-3' | '--lr-chart-color-4' | '--lr-chart-color-5' | '--lr-chart-color-6' | '--lr-chart-color-7' | '--lr-chart-color-8' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-tick-color' | '--lr-lite-chart-data-table-toggle-active-bg' | '--lr-lite-chart-data-table-toggle-hover-bg' | '--lr-lite-chart-selected-outline-color' | '--lr-lite-chart-selected-outline-width', {
|
|
1161
1170
|
'accessible-label'?: LyraLiteChart['accessibleLabel'];
|
|
1162
1171
|
'bar-gap-ratio'?: LyraLiteChart['barGapRatio'];
|
|
1163
1172
|
'bar-width'?: LyraLiteChart['barWidth'];
|
|
1164
1173
|
'begin-at-zero'?: LyraLiteChart['beginAtZero'];
|
|
1174
|
+
'data-table-toggle'?: LyraLiteChart['dataTableToggle'];
|
|
1165
1175
|
'legend-position'?: LyraLiteChart['legendPosition'];
|
|
1166
1176
|
'max-labels'?: LyraLiteChart['maxLabels'];
|
|
1167
1177
|
'min-bar-height'?: LyraLiteChart['minBarHeight'];
|
|
1168
1178
|
'rounded-bars'?: LyraLiteChart['roundedBars'];
|
|
1179
|
+
'show-data-table'?: LyraLiteChart['showDataTable'];
|
|
1169
1180
|
'skip-zero'?: LyraLiteChart['skipZero'];
|
|
1170
1181
|
'table-totals'?: LyraLiteChart['tableTotals'];
|
|
1171
1182
|
'value-axis-gutter'?: LyraLiteChart['valueAxisGutter'];
|
|
@@ -1400,9 +1411,10 @@ export type LyraPhoneInputReactProps = LyraReactElementProps<LyraPhoneInput, 'ac
|
|
|
1400
1411
|
'phone-label'?: LyraPhoneInput['phoneLabel'];
|
|
1401
1412
|
'value'?: LyraPhoneInput['defaultValue'];
|
|
1402
1413
|
}>;
|
|
1403
|
-
export type LyraPieChartReactProps = LyraReactElementProps<LyraPieChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1414
|
+
export type LyraPieChartReactProps = LyraReactElementProps<LyraPieChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-data-table-toggle-active-bg' | '--lr-chart-data-table-toggle-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1404
1415
|
'begin-at-zero'?: LyraPieChart['beginAtZero'];
|
|
1405
1416
|
'data-labels'?: LyraPieChart['dataLabels'];
|
|
1417
|
+
'data-table-toggle'?: LyraPieChart['dataTableToggle'];
|
|
1406
1418
|
'index-axis'?: LyraPieChart['indexAxis'];
|
|
1407
1419
|
'legend-position'?: LyraPieChart['legendPosition'];
|
|
1408
1420
|
'scale-type'?: LyraPieChart['scaleType'];
|
|
@@ -1415,9 +1427,10 @@ export type LyraPieChartReactProps = LyraReactElementProps<LyraPieChart, 'annota
|
|
|
1415
1427
|
'y-label'?: LyraPieChart['yLabel'];
|
|
1416
1428
|
'y2-label'?: LyraPieChart['y2Label'];
|
|
1417
1429
|
}>;
|
|
1418
|
-
export type LyraPolarAreaChartReactProps = LyraReactElementProps<LyraPolarAreaChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1430
|
+
export type LyraPolarAreaChartReactProps = LyraReactElementProps<LyraPolarAreaChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-data-table-toggle-active-bg' | '--lr-chart-data-table-toggle-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1419
1431
|
'begin-at-zero'?: LyraPolarAreaChart['beginAtZero'];
|
|
1420
1432
|
'data-labels'?: LyraPolarAreaChart['dataLabels'];
|
|
1433
|
+
'data-table-toggle'?: LyraPolarAreaChart['dataTableToggle'];
|
|
1421
1434
|
'index-axis'?: LyraPolarAreaChart['indexAxis'];
|
|
1422
1435
|
'legend-position'?: LyraPolarAreaChart['legendPosition'];
|
|
1423
1436
|
'scale-type'?: LyraPolarAreaChart['scaleType'];
|
|
@@ -1495,9 +1508,10 @@ export type LyraQrCodeReactProps = LyraReactElementProps<LyraQrCode, 'background
|
|
|
1495
1508
|
'image-coverage'?: LyraQrCode['imageCoverage'];
|
|
1496
1509
|
'image-padding'?: LyraQrCode['imagePadding'];
|
|
1497
1510
|
}>;
|
|
1498
|
-
export type LyraRadarChartReactProps = LyraReactElementProps<LyraRadarChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1511
|
+
export type LyraRadarChartReactProps = LyraReactElementProps<LyraRadarChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-data-table-toggle-active-bg' | '--lr-chart-data-table-toggle-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1499
1512
|
'begin-at-zero'?: LyraRadarChart['beginAtZero'];
|
|
1500
1513
|
'data-labels'?: LyraRadarChart['dataLabels'];
|
|
1514
|
+
'data-table-toggle'?: LyraRadarChart['dataTableToggle'];
|
|
1501
1515
|
'index-axis'?: LyraRadarChart['indexAxis'];
|
|
1502
1516
|
'legend-position'?: LyraRadarChart['legendPosition'];
|
|
1503
1517
|
'scale-type'?: LyraRadarChart['scaleType'];
|
|
@@ -1600,9 +1614,10 @@ export type LyraRubricFormReactProps = LyraReactElementProps<LyraRubricForm, 'cu
|
|
|
1600
1614
|
'with-hint'?: LyraRubricForm['withHint'];
|
|
1601
1615
|
'with-label'?: LyraRubricForm['withLabel'];
|
|
1602
1616
|
}>;
|
|
1603
|
-
export type LyraScatterChartReactProps = LyraReactElementProps<LyraScatterChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1617
|
+
export type LyraScatterChartReactProps = LyraReactElementProps<LyraScatterChart, 'annotations' | 'area' | 'beginAtZero' | 'chart' | 'config' | 'dataLabels' | 'datasets' | 'dataTableToggle' | 'description' | 'formatter' | 'grid' | 'height' | 'hiddenDatasets' | 'indexAxis' | 'label' | 'labels' | 'legendPosition' | 'locale' | 'max' | 'min' | 'plugins' | 'scaleType' | 'showDataTable' | 'stacked' | 'stackTotals' | 'strings' | 'type' | 'valueFormatter' | 'withoutAnimation' | 'withoutLegend' | 'withoutTooltip' | 'xLabel' | 'y2Label' | 'yLabel' | 'zoom', {}, LyraChartEventMap, 'lr-before-legend-visibility-change' | 'lr-datum-activate' | 'lr-legend-visibility-change' | 'lr-point-click' | 'lr-zoom', '--border-color-1' | '--border-color-2' | '--border-color-3' | '--border-color-4' | '--border-color-5' | '--border-color-6' | '--border-radius' | '--border-width' | '--fill-color-1' | '--fill-color-2' | '--fill-color-3' | '--fill-color-4' | '--fill-color-5' | '--fill-color-6' | '--grid-border-width' | '--grid-color' | '--line-border-width' | '--lr-chart-canvas-hover-outline-width' | '--lr-chart-data-table-button-active-bg' | '--lr-chart-data-table-button-hover-bg' | '--lr-chart-data-table-toggle-active-bg' | '--lr-chart-data-table-toggle-hover-bg' | '--lr-chart-grid-color' | '--lr-chart-height' | '--lr-chart-legend-color' | '--lr-chart-legend-item-active-bg' | '--lr-chart-legend-item-hover-bg' | '--lr-chart-legend-side-max' | '--lr-chart-pattern-step' | '--lr-chart-reset-zoom-button-active-bg' | '--lr-chart-reset-zoom-button-hover-bg' | '--lr-chart-tick-color' | '--lr-chart-tooltip-bg' | '--lr-chart-tooltip-text' | '--point-radius', {
|
|
1604
1618
|
'begin-at-zero'?: LyraScatterChart['beginAtZero'];
|
|
1605
1619
|
'data-labels'?: LyraScatterChart['dataLabels'];
|
|
1620
|
+
'data-table-toggle'?: LyraScatterChart['dataTableToggle'];
|
|
1606
1621
|
'index-axis'?: LyraScatterChart['indexAxis'];
|
|
1607
1622
|
'legend-position'?: LyraScatterChart['legendPosition'];
|
|
1608
1623
|
'scale-type'?: LyraScatterChart['scaleType'];
|
package/dist/internal/canvas.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const scratchContexts=new WeakMap;function positiveFinite(value){return typeof value=="number"&&Number.isFinite(value)&&value>0?value:1}function resolveBoundedCanvasAllocation(input){const cssWidth=positiveFinite(input.cssWidth),cssHeight=positiveFinite(input.cssHeight),desiredScale=positiveFinite(input.desiredScale),maxDimension=Math.max(1,Math.floor(positiveFinite(input.maxDimension))),maxPixels=Math.max(1,positiveFinite(input.maxPixels)),areaScale=Math.sqrt(maxPixels)/Math.sqrt(cssWidth)/Math.sqrt(cssHeight),scale=Math.max(Number.MIN_VALUE,Math.min(desiredScale,maxDimension/cssWidth,maxDimension/cssHeight,areaScale)),pixelWidth=Math.max(1,Math.min(maxDimension,Math.floor(cssWidth*scale))),pixelHeight=Math.max(1,Math.min(maxDimension,Math.floor(cssHeight*scale)));return Object.freeze({cssWidth,cssHeight,pixelWidth,pixelHeight,scale,scaleX:pixelWidth/cssWidth,scaleY:pixelHeight/cssHeight})}function getScratchCtx(ownerDocument=typeof document>"u"?null:document){return ownerDocument?(scratchContexts.has(ownerDocument)||scratchContexts.set(ownerDocument,ownerDocument.createElement("canvas").getContext("2d")),scratchContexts.get(ownerDocument)??null):null}export{getScratchCtx,resolveBoundedCanvasAllocation};
|
|
1
|
+
const scratchContexts=new WeakMap;function positiveFinite(value){return typeof value=="number"&&Number.isFinite(value)&&value>0?value:1}function resolveBoundedCanvasAllocation(input){const cssWidth=positiveFinite(input.cssWidth),cssHeight=positiveFinite(input.cssHeight),desiredScale=positiveFinite(input.desiredScale),maxDimension=Math.max(1,Math.floor(positiveFinite(input.maxDimension))),maxPixels=Math.max(1,positiveFinite(input.maxPixels)),areaScale=Math.sqrt(maxPixels)/Math.sqrt(cssWidth)/Math.sqrt(cssHeight),scale=Math.max(Number.MIN_VALUE,Math.min(desiredScale,maxDimension/cssWidth,maxDimension/cssHeight,areaScale)),pixelWidth=Math.max(1,Math.min(maxDimension,Math.floor(cssWidth*scale))),pixelHeight=Math.max(1,Math.min(maxDimension,Math.floor(cssHeight*scale)));return Object.freeze({cssWidth,cssHeight,pixelWidth,pixelHeight,scale,scaleX:pixelWidth/cssWidth,scaleY:pixelHeight/cssHeight})}function getScratchCtx(ownerDocument=typeof document>"u"?null:document){return ownerDocument?(scratchContexts.has(ownerDocument)||scratchContexts.set(ownerDocument,ownerDocument.createElement("canvas").getContext("2d",{willReadFrequently:!0})),scratchContexts.get(ownerDocument)??null):null}export{getScratchCtx,resolveBoundedCanvasAllocation};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const LYRA_PACKAGE_NAME="@aceshooting/lyra-ui",LYRA_PACKAGE_VERSION="
|
|
1
|
+
const LYRA_PACKAGE_NAME="@aceshooting/lyra-ui",LYRA_PACKAGE_VERSION="11.1.0";export{LYRA_PACKAGE_NAME,LYRA_PACKAGE_VERSION};
|
|
@@ -197,6 +197,7 @@ import{css}from"lit";const baseTokens=css`
|
|
|
197
197
|
--lr-focus-ring-width: var(--lr-theme-focus-ring-width, 2px);
|
|
198
198
|
--lr-focus-ring-color: var(--lr-theme-color-focus, var(--lr-color-brand));
|
|
199
199
|
--lr-focus-ring-offset: var(--lr-theme-focus-ring-offset, 2px);
|
|
200
|
+
--lr-focus-ring: var(--lr-focus-ring-width) solid var(--lr-focus-ring-color);
|
|
200
201
|
|
|
201
202
|
--lr-icon-button-size: var(--lr-theme-icon-button-size, 2.5rem);
|
|
202
203
|
|
package/dist/lyra.d.ts
CHANGED
|
@@ -66,7 +66,7 @@ export { LyraOption } from './components/forms/combobox/option.class.js';
|
|
|
66
66
|
export { LyraSelect } from './components/forms/select/select.class.js';
|
|
67
67
|
export type { LyraSelectTagRenderer } from './components/forms/select/select.class.js';
|
|
68
68
|
export { LyraDatePicker } from './components/forms/date-picker/date-picker.class.js';
|
|
69
|
-
export type { DateRange, LyraDatePickerDayContent, LyraDatePickerDisabledDates, LyraDatePickerFirstDayOfWeek, LyraDatePickerPageBy, LyraDatePickerView, } from './components/forms/date-picker/date-picker.class.js';
|
|
69
|
+
export type { DateRange, LyraDateRangePreset, LyraDatePickerDayContent, LyraDatePickerDisabledDates, LyraDatePickerFirstDayOfWeek, LyraDatePickerPageBy, LyraDatePickerView, } from './components/forms/date-picker/date-picker.class.js';
|
|
70
70
|
export { LyraDateInput } from './components/forms/date-picker/date-input.class.js';
|
|
71
71
|
export type { LyraDateInputFirstDayOfWeek, LyraDateInputObjectValidator, LyraDateInputObjectValidatorResult, LyraDateInputPlacement, LyraDateInputSelectionDirection, LyraDateInputValidator, LyraDateInputValidatorResult, } from './components/forms/date-picker/date-input.class.js';
|
|
72
72
|
export { LyraAnimatedImage } from './components/media/animated-image/animated-image.class.js';
|