@aceshooting/lyra-ui 10.0.1 → 11.0.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 +188 -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/data/heatmap/heatmap.class.d.ts +35 -2
- package/dist/components/data/heatmap/heatmap.class.js +2 -2
- 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-picker.class.d.ts +46 -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/custom-elements-jsx.d.ts +27 -14
- 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 +27 -14
- package/dist/vue.d.ts +27 -14
- package/llms/components/lr-bar-chart.md +4 -3
- package/llms/components/lr-box-plot.md +14 -3
- package/llms/components/lr-bubble-chart.md +4 -3
- package/llms/components/lr-chart.md +13 -3
- package/llms/components/lr-combobox.md +42 -6
- package/llms/components/lr-date-input.md +22 -2
- package/llms/components/lr-date-picker.md +23 -3
- package/llms/components/lr-dialog.md +2 -1
- package/llms/components/lr-doughnut-chart.md +4 -3
- package/llms/components/lr-flag.md +10 -3
- 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-map.md +21 -4
- 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-radar-chart.md +4 -3
- package/llms/components/lr-scatter-chart.md +4 -3
- package/llms/tokens.md +15 -1
- package/llms-full.txt +197 -26
- package/package.json +1 -1
- package/vscode-css-data.json +56 -0
- package/vscode-html-data.json +115 -18
- package/web-types.json +162 -21
|
@@ -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'];
|
|
@@ -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'];
|
|
@@ -1400,9 +1409,10 @@ export type LyraPhoneInputReactProps = LyraReactElementProps<LyraPhoneInput, 'ac
|
|
|
1400
1409
|
'phone-label'?: LyraPhoneInput['phoneLabel'];
|
|
1401
1410
|
'value'?: LyraPhoneInput['defaultValue'];
|
|
1402
1411
|
}>;
|
|
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', {
|
|
1412
|
+
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
1413
|
'begin-at-zero'?: LyraPieChart['beginAtZero'];
|
|
1405
1414
|
'data-labels'?: LyraPieChart['dataLabels'];
|
|
1415
|
+
'data-table-toggle'?: LyraPieChart['dataTableToggle'];
|
|
1406
1416
|
'index-axis'?: LyraPieChart['indexAxis'];
|
|
1407
1417
|
'legend-position'?: LyraPieChart['legendPosition'];
|
|
1408
1418
|
'scale-type'?: LyraPieChart['scaleType'];
|
|
@@ -1415,9 +1425,10 @@ export type LyraPieChartReactProps = LyraReactElementProps<LyraPieChart, 'annota
|
|
|
1415
1425
|
'y-label'?: LyraPieChart['yLabel'];
|
|
1416
1426
|
'y2-label'?: LyraPieChart['y2Label'];
|
|
1417
1427
|
}>;
|
|
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', {
|
|
1428
|
+
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
1429
|
'begin-at-zero'?: LyraPolarAreaChart['beginAtZero'];
|
|
1420
1430
|
'data-labels'?: LyraPolarAreaChart['dataLabels'];
|
|
1431
|
+
'data-table-toggle'?: LyraPolarAreaChart['dataTableToggle'];
|
|
1421
1432
|
'index-axis'?: LyraPolarAreaChart['indexAxis'];
|
|
1422
1433
|
'legend-position'?: LyraPolarAreaChart['legendPosition'];
|
|
1423
1434
|
'scale-type'?: LyraPolarAreaChart['scaleType'];
|
|
@@ -1495,9 +1506,10 @@ export type LyraQrCodeReactProps = LyraReactElementProps<LyraQrCode, 'background
|
|
|
1495
1506
|
'image-coverage'?: LyraQrCode['imageCoverage'];
|
|
1496
1507
|
'image-padding'?: LyraQrCode['imagePadding'];
|
|
1497
1508
|
}>;
|
|
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', {
|
|
1509
|
+
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
1510
|
'begin-at-zero'?: LyraRadarChart['beginAtZero'];
|
|
1500
1511
|
'data-labels'?: LyraRadarChart['dataLabels'];
|
|
1512
|
+
'data-table-toggle'?: LyraRadarChart['dataTableToggle'];
|
|
1501
1513
|
'index-axis'?: LyraRadarChart['indexAxis'];
|
|
1502
1514
|
'legend-position'?: LyraRadarChart['legendPosition'];
|
|
1503
1515
|
'scale-type'?: LyraRadarChart['scaleType'];
|
|
@@ -1600,9 +1612,10 @@ export type LyraRubricFormReactProps = LyraReactElementProps<LyraRubricForm, 'cu
|
|
|
1600
1612
|
'with-hint'?: LyraRubricForm['withHint'];
|
|
1601
1613
|
'with-label'?: LyraRubricForm['withLabel'];
|
|
1602
1614
|
}>;
|
|
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', {
|
|
1615
|
+
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
1616
|
'begin-at-zero'?: LyraScatterChart['beginAtZero'];
|
|
1605
1617
|
'data-labels'?: LyraScatterChart['dataLabels'];
|
|
1618
|
+
'data-table-toggle'?: LyraScatterChart['dataTableToggle'];
|
|
1606
1619
|
'index-axis'?: LyraScatterChart['indexAxis'];
|
|
1607
1620
|
'legend-position'?: LyraScatterChart['legendPosition'];
|
|
1608
1621
|
'scale-type'?: LyraScatterChart['scaleType'];
|
|
@@ -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.0.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';
|