@dynatrace/strato-components 3.5.2 → 3.6.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/buttons/button/Button.css +15 -15
- package/buttons/button/Button.sty.js +4 -4
- package/buttons/intent-button/IntentButton.css +1 -1
- package/buttons/intent-button/IntentButton.sty.js +1 -1
- package/buttons/notify-button/NotifyButton.css +2 -2
- package/buttons/notify-button/NotifyButton.sty.js +2 -2
- package/charts/annotations-chart/AnnotationsChart.js +9 -1
- package/charts/annotations-chart/components/AnnotationsDisplay.d.ts +1 -0
- package/charts/annotations-chart/constants.js +2 -1
- package/charts/annotations-chart/types/annotations-chart-config-props.d.ts +9 -0
- package/charts/annotations-chart/types/annotations-chart-props.d.ts +8 -0
- package/charts/annotations-chart/utils/annotations-chart-config.js +1 -0
- package/charts/annotations-chart/utils/populate-missing-tooltip-props.d.ts +5 -5
- package/charts/annotations-chart/utils/populate-missing-tooltip-props.js +8 -3
- package/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.css +2 -2
- package/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js +2 -2
- package/charts/core/components/annotations/AnnotationsAtom.css +1 -1
- package/charts/core/components/annotations/AnnotationsAtom.sty.js +1 -1
- package/charts/core/components/annotations/components/AnnotationsRenderer.d.ts +0 -2
- package/charts/core/components/annotations/components/AnnotationsRenderer.js +4 -3
- package/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.css +1 -1
- package/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js +1 -1
- package/charts/core/components/annotations/components/displays/AnnotationsContainer.d.ts +14 -0
- package/charts/core/components/annotations/components/displays/AnnotationsContainer.js +30 -0
- package/charts/core/components/annotations/components/displays/AnnotationsNumericalDisplay.d.ts +1 -0
- package/charts/core/components/annotations/components/displays/AnnotationsNumericalDisplay.js +13 -18
- package/charts/core/components/annotations/components/displays/AnnotationsTimeDisplay.d.ts +1 -0
- package/charts/core/components/annotations/components/displays/AnnotationsTimeDisplay.js +13 -18
- package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.css +1 -1
- package/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js +1 -1
- package/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.css +1 -1
- package/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js +1 -1
- package/charts/core/components/annotations/components/tooltip/AnnotationsCustomizedTooltip.js +2 -1
- package/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltipContent.d.ts +20 -0
- package/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltipContent.js +145 -0
- package/charts/core/components/annotations/components/tooltip/AnnotationsOverlayTooltip.d.ts +24 -0
- package/charts/core/components/annotations/components/tooltip/AnnotationsOverlayTooltip.js +136 -0
- package/charts/core/components/annotations/components/tooltip/types/annotations-tooltip-props.d.ts +1 -1
- package/charts/core/components/annotations/components/tooltip/utils/prepare-custom-tooltip-data.js +8 -11
- package/charts/core/components/annotations/constants.d.ts +1 -0
- package/charts/core/components/annotations/constants.js +2 -0
- package/charts/core/components/annotations/hooks/useOverlayEvents.js +15 -0
- package/charts/core/components/axes/Axis.css +1 -1
- package/charts/core/components/axes/Axis.sty.js +1 -1
- package/charts/core/components/axes/components/PanningControls/PanningControls.css +16 -16
- package/charts/core/components/axes/components/PanningControls/PanningControls.sty.js +2 -2
- package/charts/core/components/axes/utils/calculate-axis-size.d.ts +1 -1
- package/charts/core/components/axes/utils/calculate-axis-size.js +3 -1
- package/charts/core/components/axes/utils/get-tick-label-props.d.ts +34 -0
- package/charts/core/components/axes/utils/get-tick-label-props.js +47 -1
- package/charts/core/components/axes/utils/tick-formatters.js +9 -1
- package/charts/core/components/chart-grid/ChartGrid.css +3 -3
- package/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
- package/charts/core/components/chart-layout/components/styles.css +15 -15
- package/charts/core/components/chart-layout/components/styles.sty.js +4 -4
- package/charts/core/components/chart-states/ChartState.css +4 -4
- package/charts/core/components/chart-states/ChartState.sty.js +4 -4
- package/charts/core/components/crosshair/components/Magnifier.css +7 -7
- package/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
- package/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
- package/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
- package/charts/core/components/legend/categorical/ChartLegend.css +1 -1
- package/charts/core/components/legend/categorical/ChartLegend.sty.js +1 -1
- package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.css +3 -3
- package/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js +3 -3
- package/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.css +17 -17
- package/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js +6 -6
- package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.css +3 -3
- package/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js +1 -1
- package/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.css +8 -8
- package/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js +4 -4
- package/charts/core/components/legend/range/RangeLegend.css +3 -3
- package/charts/core/components/legend/range/RangeLegend.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.css +2 -2
- package/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.css +1 -1
- package/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.css +3 -3
- package/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.css +3 -3
- package/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js +1 -1
- package/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.css +5 -5
- package/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js +1 -1
- package/charts/core/components/loader-overlay/LoaderOverlay.css +2 -2
- package/charts/core/components/loader-overlay/LoaderOverlay.sty.js +2 -2
- package/charts/core/components/overlay-tooltip/OverlayTooltip.d.ts +3 -0
- package/charts/core/components/overlay-tooltip/OverlayTooltip.js +4 -0
- package/charts/core/components/overlay-tooltip/_to-be-removed/DummyInteractionsOverlay.js +8 -5
- package/charts/core/components/overlay-tooltip/_to-be-removed/_OverlayTooltipWIPStory.js +2 -2
- package/charts/core/components/overlay-tooltip/components/DynamicTooltipRenderer.js +7 -6
- package/charts/core/components/overlay-tooltip/components/Footer.d.ts +13 -0
- package/charts/core/components/overlay-tooltip/components/{TooltipFooter.js → Footer.js} +5 -8
- package/charts/core/components/overlay-tooltip/components/global-actions/Action.js +6 -0
- package/charts/core/components/overlay-tooltip/components/global-actions/GlobalActions.d.ts +2 -2
- package/charts/core/components/overlay-tooltip/components/global-actions/GlobalActions.js +4 -14
- package/charts/core/components/overlay-tooltip/components/global-actions/actions.css +4 -4
- package/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js +2 -2
- package/charts/core/components/overlay-tooltip/components/header/Header.css +6 -6
- package/charts/core/components/overlay-tooltip/components/header/Header.d.ts +1 -0
- package/charts/core/components/overlay-tooltip/components/header/Header.sty.js +6 -6
- package/charts/core/components/overlay-tooltip/components/header/types/header.d.ts +3 -3
- package/charts/core/components/overlay-tooltip/components/series/SeriesItem.js +31 -8
- package/charts/core/components/overlay-tooltip/components/series/SeriesItemContent.d.ts +5 -0
- package/charts/core/components/overlay-tooltip/components/series/SeriesItemContent.js +35 -3
- package/charts/core/components/overlay-tooltip/components/series/SeriesSymbol.js +1 -1
- package/charts/core/components/overlay-tooltip/components/series/hooks/use-series-item-display-state.d.ts +5 -0
- package/charts/core/components/overlay-tooltip/components/series/hooks/use-series-item-display-state.js +58 -6
- package/charts/core/components/overlay-tooltip/components/series/seriesSymbol.css +2 -2
- package/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js +2 -2
- package/charts/core/components/overlay-tooltip/components/series/utils/get-name-text-style.d.ts +1 -1
- package/charts/core/components/overlay-tooltip/components/series/utils/get-name-text-style.js +4 -3
- package/charts/core/components/overlay-tooltip/hooks/useTooltipImperativeHandle.js +3 -11
- package/charts/core/components/overlay-tooltip/overlay.js +8 -8
- package/charts/core/components/overlay-tooltip/tooltip.css +92 -44
- package/charts/core/components/overlay-tooltip/tooltip.sty.d.ts +22 -0
- package/charts/core/components/overlay-tooltip/tooltip.sty.js +46 -34
- package/charts/core/components/overlay-tooltip/types/series.d.ts +2 -0
- package/charts/core/components/overlay-tooltip/types.d.ts +11 -32
- package/charts/core/components/overlay-tooltip/useTooltipActions.d.ts +21 -0
- package/charts/core/components/overlay-tooltip/useTooltipActions.js +85 -0
- package/charts/core/components/overlay-tooltip/useTooltipReducer.d.ts +1 -4
- package/charts/core/components/overlay-tooltip/useTooltipReducer.js +9 -11
- package/charts/core/components/overlay-tooltip/utils/build-content.d.ts +1 -0
- package/charts/core/components/overlay-tooltip/utils/build-content.js +41 -36
- package/charts/core/components/overlay-tooltip/utils/estimate-series-item-size.js +19 -3
- package/charts/core/components/overlays/ChartOverlaysBorder.css +5 -5
- package/charts/core/components/overlays/ChartOverlaysBorder.sty.js +5 -5
- package/charts/core/components/selection-area/SelectionArea.css +9 -9
- package/charts/core/components/selection-area/SelectionArea.sty.js +4 -4
- package/charts/core/components/shape/BubbleShape/BubbleShape.css +5 -5
- package/charts/core/components/shape/BubbleShape/BubbleShape.sty.js +3 -3
- package/charts/core/components/shape/EmojiShape/EmojiShape.css +3 -3
- package/charts/core/components/shape/EmojiShape/EmojiShape.sty.js +1 -1
- package/charts/core/components/shape/IconShape/IconShape.css +3 -3
- package/charts/core/components/shape/IconShape/IconShape.sty.js +1 -1
- package/charts/core/components/shape/styles/DataPointShape.css +8 -8
- package/charts/core/components/shape/styles/DataPointShape.sty.js +4 -4
- package/charts/core/components/shared-chart-interactions/SharedChartInteractions.css +1 -1
- package/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js +1 -1
- package/charts/core/components/single-value-renderer/SingleValueRenderer.css +5 -5
- package/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js +5 -5
- package/charts/core/components/single-value-renderer/components/ContentGrid.css +1 -1
- package/charts/core/components/single-value-renderer/components/ContentGrid.sty.js +1 -1
- package/charts/core/components/single-value-renderer/components/Icon.css +3 -3
- package/charts/core/components/single-value-renderer/components/Icon.sty.js +2 -2
- package/charts/core/components/single-value-renderer/components/Label.css +1 -1
- package/charts/core/components/single-value-renderer/components/Label.sty.js +1 -1
- package/charts/core/components/single-value-renderer/components/SingleValueToolbar.css +1 -1
- package/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js +1 -1
- package/charts/core/components/single-value-renderer/components/Value.css +5 -5
- package/charts/core/components/single-value-renderer/components/Value.sty.js +3 -3
- package/charts/core/components/single-value-renderer/components/trend/Trend.css +3 -3
- package/charts/core/components/single-value-renderer/components/trend/Trend.sty.js +3 -3
- package/charts/core/components/single-value-renderer/components/trend/components/Icon.css +2 -2
- package/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js +1 -1
- package/charts/core/components/single-value-renderer/types/single-value-base-props.d.ts +4 -0
- package/charts/core/components/sparkline-display/Sparkline.css +6 -6
- package/charts/core/components/sparkline-display/Sparkline.sty.js +2 -2
- package/charts/core/components/text-ellipsis/ChartTextEllipsis.css +7 -7
- package/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js +3 -3
- package/charts/core/components/threshold-bar/styles.css +9 -9
- package/charts/core/components/threshold-bar/styles.sty.js +2 -2
- package/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
- package/charts/core/components/toolbar/ChartToolbarRenderer.sty.js +8 -8
- package/charts/core/components/toolbar/components/ChartDataMenu.css +2 -2
- package/charts/core/components/toolbar/components/ChartDataMenu.sty.js +1 -1
- package/charts/core/components/toolbar/components/Control.css +17 -17
- package/charts/core/components/toolbar/components/Control.sty.js +5 -5
- package/charts/core/components/toolbar/components/ToolbarMenu.css +4 -4
- package/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
- package/charts/core/components/tooltip/ChartTooltip/ChartTooltip.css +6 -6
- package/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js +2 -2
- package/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.css +8 -8
- package/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js +3 -3
- package/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.css +2 -2
- package/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js +1 -1
- package/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.css +1 -1
- package/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js +1 -1
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.css +6 -6
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js +2 -2
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.css +7 -7
- package/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js +6 -6
- package/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.css +1 -1
- package/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.css +1 -1
- package/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.css +2 -2
- package/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.css +1 -1
- package/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.css +3 -3
- package/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js +2 -2
- package/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.css +1 -1
- package/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js +1 -1
- package/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.css +2 -2
- package/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js +2 -2
- package/charts/core/components/tooltip/section-components/atoms/styles.css +3 -3
- package/charts/core/components/tooltip/section-components/atoms/styles.sty.js +3 -3
- package/charts/core/components/tooltip/shared/styles/SeriesBasedContent.css +12 -12
- package/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js +7 -7
- package/charts/core/components/tooltip/shared/styles/TooltipBody.css +1 -1
- package/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js +1 -1
- package/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.css +1 -1
- package/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js +1 -1
- package/charts/core/components/tooltip-atoms/components/styles.css +4 -4
- package/charts/core/components/tooltip-atoms/components/styles.sty.js +4 -4
- package/charts/core/components/zoom/ZoomCursors.css +2 -2
- package/charts/core/components/zoom/ZoomCursors.sty.js +3 -3
- package/charts/core/hooks/useOverlayEventHandlers.js +8 -25
- package/charts/core/typographyStyles.css +1 -1
- package/charts/core/typographyStyles.sty.js +1 -1
- package/charts/core/utils/adaptively-reduce-horizontal-ticks.d.ts +32 -0
- package/charts/core/utils/adaptively-reduce-horizontal-ticks.js +61 -0
- package/charts/core/utils/has-horizontal-label-collision.d.ts +29 -0
- package/charts/core/utils/has-horizontal-label-collision.js +75 -0
- package/charts/core/utils/is-feature-enabled.d.ts +1 -0
- package/charts/core/utils/is-feature-enabled.js +2 -1
- package/charts/gantt-chart/GanttChartLine.css +1 -1
- package/charts/gantt-chart/GanttChartLine.sty.js +1 -1
- package/charts/gantt-chart/components/GanttChartLineRenderer.css +1 -1
- package/charts/gantt-chart/components/GanttChartLineRenderer.sty.js +1 -1
- package/charts/gantt-chart/components/tooltip/GanttChartTooltip.css +1 -1
- package/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js +1 -1
- package/charts/gauge/GaugeChart.d.ts +1 -1
- package/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.css +1 -1
- package/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js +1 -1
- package/charts/gauge/components/GaugeChartTooltip/GaugeOverlayTooltip.js +12 -2
- package/charts/gauge/components/GaugeLabel/GaugeLabel.css +6 -6
- package/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js +3 -3
- package/charts/gauge/components/GaugeLabels.js +3 -4
- package/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.css +3 -3
- package/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js +1 -1
- package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.css +4 -4
- package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js +12 -11
- package/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js +3 -3
- package/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.css +2 -2
- package/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js +2 -2
- package/charts/gauge/constants.d.ts +1 -0
- package/charts/gauge/constants.js +2 -0
- package/charts/gauge/contexts/GaugeChartTooltipContext.d.ts +9 -0
- package/charts/gauge/contexts/GaugeChartTooltipContext.js +27 -0
- package/charts/gauge/hooks/useGaugeChartMinMaxLabelsPosition.d.ts +1 -0
- package/charts/gauge/hooks/useGaugeChartMinMaxLabelsPosition.js +12 -1
- package/charts/gauge/providers/GaugeChartProviders.js +11 -3
- package/charts/gauge/slots/Tooltip.d.ts +58 -1
- package/charts/gauge/slots/Tooltip.js +1 -1
- package/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.css +1 -1
- package/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js +1 -1
- package/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.css +1 -1
- package/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js +1 -1
- package/charts/histogram/components/overlays/HistogramOverlays.css +2 -2
- package/charts/histogram/components/overlays/HistogramOverlays.sty.js +2 -2
- package/charts/histogram/types/histogram-props.d.ts +5 -4
- package/charts/honeycomb/HoneycombChart.css +1 -1
- package/charts/honeycomb/HoneycombChart.d.ts +4 -0
- package/charts/honeycomb/HoneycombChart.js +3 -1
- package/charts/honeycomb/HoneycombChart.sty.js +1 -1
- package/charts/honeycomb/components/HiveOverlay.css +1 -1
- package/charts/honeycomb/components/HiveOverlay.sty.js +1 -1
- package/charts/honeycomb/components/canvas/HiveCanvasLayout.css +1 -1
- package/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js +1 -1
- package/charts/honeycomb/components/tooltip/HoneycombOverlayTooltip.js +16 -1
- package/charts/honeycomb/context/honeycomb-custom-tooltip.context.d.ts +2 -0
- package/charts/honeycomb/context/honeycomb-custom-tooltip.context.js +24 -0
- package/charts/honeycomb/hooks/use-honeycomb-custom-tooltip.d.ts +1 -0
- package/charts/{gauge/contexts/GaugeChartTooltipNameContext.js → honeycomb/hooks/use-honeycomb-custom-tooltip.js} +6 -9
- package/charts/honeycomb/providers/honeycomb-configuration.provider.js +2 -1
- package/charts/honeycomb/slots/Tooltip.d.ts +5 -0
- package/charts/{core/components/annotations/components/tooltip/AnnotationsTooltip.sty.js → honeycomb/slots/Tooltip.js} +6 -6
- package/charts/honeycomb/types/honeycomb-config-properties.d.ts +4 -1
- package/charts/honeycomb/types/honeycomb-internal.d.ts +36 -0
- package/charts/honeycomb/utils/build-honeycomb-config.js +2 -1
- package/charts/honeycomb/utils/build-overlay-tooltip-data.js +5 -1
- package/charts/honeycomb/utils/iterate-honeycomb-slots.js +11 -1
- package/charts/index.d.ts +10 -7
- package/charts/index.js +5 -3
- package/charts/meter-bar/multi-meter-bar/MultiMeterBarChart.js +1 -1
- package/charts/meter-bar/multi-meter-bar/components/MultiMeterBarChartOverlay/MultiMeterBarChartOverlay.js +1 -1
- package/charts/meter-bar/multi-meter-bar/components/MultiMeterBarChartOverlay/MultiMeterBarChartOverlayWithTooltip.js +34 -8
- package/charts/meter-bar/multi-meter-bar/default.d.ts +1 -1
- package/charts/meter-bar/multi-meter-bar/default.js +1 -1
- package/charts/meter-bar/multi-meter-bar/hooks/useMultiMeterBarChartTooltipHandlers.js +10 -37
- package/charts/meter-bar/multi-meter-bar/types/multi-meter-bar-chart-config.d.ts +2 -2
- package/charts/meter-bar/multi-meter-bar/types/multi-meter-bar-chart-internal.d.ts +5 -3
- package/charts/meter-bar/multi-meter-bar/types/multi-meter-bar-chart.d.ts +39 -0
- package/charts/meter-bar/multi-meter-bar/utils/build-multi-meter-bar-chart-config.js +10 -7
- package/charts/meter-bar/multi-meter-bar/utils/iterate-slots.js +5 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +15 -15
- package/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +10 -10
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css +2 -2
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js +1 -1
- package/charts/meter-bar/shared/components/meter-bar-toolbar/MeterBarToolbar.js +3 -3
- package/charts/meter-bar/shared/components/meter-bar-tooltip/MeterBarTooltipItem/MeterBarTooltipItem.css +1 -1
- package/charts/meter-bar/shared/components/meter-bar-tooltip/MeterBarTooltipItem/MeterBarTooltipItem.sty.js +1 -1
- package/charts/meter-bar/shared/styles/element-size.css +4 -4
- package/charts/meter-bar/shared/styles/element-size.sty.js +1 -1
- package/charts/meter-bar/shared/styles.css +1 -1
- package/charts/meter-bar/shared/styles.sty.js +1 -1
- package/charts/meter-bar/shared/utils/slot-handlers.d.ts +0 -2
- package/charts/meter-bar/shared/utils/slot-handlers.js +0 -10
- package/charts/meter-bar/single-meter-bar/MeterBarChart.js +1 -1
- package/charts/meter-bar/single-meter-bar/components/MeterBarChartOverlay/MeterBarChartOverlay.js +1 -1
- package/charts/meter-bar/single-meter-bar/components/MeterBarChartOverlay/MeterBarChartOverlayWithTooltip.js +61 -16
- package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.css +1 -1
- package/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js +1 -1
- package/charts/meter-bar/single-meter-bar/context/MeterBarChartInternalConfigContext.d.ts +1 -1
- package/charts/meter-bar/single-meter-bar/types/default.d.ts +3 -0
- package/charts/meter-bar/single-meter-bar/types/default.js +2 -1
- package/charts/meter-bar/single-meter-bar/types/meter-bar-chart-internal.d.ts +4 -2
- package/charts/meter-bar/single-meter-bar/types/meter-bar-chart.d.ts +37 -0
- package/charts/meter-bar/single-meter-bar/utils/build-meter-bar-chart-config.js +5 -1
- package/charts/meter-bar/single-meter-bar/utils/iterate-slots.js +5 -1
- package/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.css +1 -1
- package/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js +1 -1
- package/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.css +1 -1
- package/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js +1 -1
- package/charts/pie/components/PieChartOverlays/PieChartOverlays.css +1 -1
- package/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js +1 -1
- package/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
- package/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
- package/charts/pie/hooks/usePieHandlers.js +3 -3
- package/charts/pie/hooks/useSliceHandlers.js +7 -41
- package/charts/single-value/SingleValue.css +1 -1
- package/charts/single-value/SingleValue.js +4 -1
- package/charts/single-value/SingleValue.sty.js +1 -1
- package/charts/single-value-grid/SingleValueGrid.css +2 -2
- package/charts/single-value-grid/SingleValueGrid.js +4 -1
- package/charts/single-value-grid/SingleValueGrid.sty.js +1 -1
- package/charts/single-value-grid/components/GlobalFontSizeVariables.css +1 -1
- package/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js +1 -1
- package/charts/single-value-grid/types/single-value-grid.d.ts +5 -1
- package/charts/timeseries/TimeseriesChart.d.ts +99 -5
- package/charts/timeseries/TimeseriesChart.js +63 -126
- package/charts/timeseries/TimeseriesChartInternal.d.ts +8 -0
- package/charts/timeseries/TimeseriesChartInternal.js +151 -0
- package/charts/timeseries/TimeseriesChartRoot.d.ts +3 -92
- package/charts/timeseries/TimeseriesChartRoot.js +3 -55
- package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.css +2 -2
- package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.js +4 -2
- package/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js +1 -1
- package/charts/timeseries/components/overlays/TimeseriesOverlays.css +4 -4
- package/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js +4 -4
- package/charts/timeseries/components/thresholds/ThresholdIndicators.css +2 -2
- package/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js +2 -2
- package/charts/tree-map/TreeMap.d.ts +1 -1
- package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
- package/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
- package/charts/tree-map/components/TreeMapTooltip/TreeMapOverlayTooltip.js +12 -1
- package/charts/tree-map/components/canvas/TreeMapSquareRenderer.js +3 -2
- package/charts/tree-map/components/canvas/utils/canvas-label-utils.d.ts +3 -1
- package/charts/tree-map/components/canvas/utils/canvas-label-utils.js +7 -7
- package/charts/tree-map/constants.js +1 -0
- package/charts/tree-map/contexts/TreeMapCustomTooltipContext.d.ts +3 -0
- package/charts/tree-map/contexts/TreeMapCustomTooltipContext.js +28 -0
- package/charts/tree-map/hooks/useTreeMapCustomTooltip.d.ts +1 -0
- package/charts/tree-map/hooks/useTreeMapCustomTooltip.js +25 -0
- package/charts/tree-map/providers/TreeMapChartProviders.d.ts +2 -0
- package/charts/tree-map/providers/TreeMapChartProviders.js +10 -2
- package/charts/tree-map/slots/Tooltip.d.ts +2 -1
- package/charts/tree-map/slots/Tooltip.js +1 -1
- package/charts/tree-map/types/canvas.d.ts +1 -1
- package/charts/tree-map/types/treemap-chart.config.d.ts +34 -2
- package/charts/tree-map/utils/build-overlay-tooltip-data.js +3 -1
- package/charts/tree-map/utils/build-tree-map-chart-config.js +2 -1
- package/charts/tree-map/utils/iterate-slots.js +8 -2
- package/charts/xy-chart/XYChart.js +2 -0
- package/charts/xy-chart/XYChartRoot.d.ts +1 -4
- package/charts/xy-chart/XYChartRoot.js +55 -39
- package/charts/xy-chart/components/axes/AxisArea.css +1 -1
- package/charts/xy-chart/components/axes/AxisArea.sty.js +1 -1
- package/charts/xy-chart/components/axes/AxisTickWithTruncation.css +3 -3
- package/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js +3 -3
- package/charts/xy-chart/components/axes/XYChartBottomAxisArea.js +77 -59
- package/charts/xy-chart/components/axes/XYChartTopAxisArea.js +77 -59
- package/charts/xy-chart/components/axes/utils/compute-collision-aware-max-space.d.ts +14 -0
- package/charts/xy-chart/components/axes/utils/compute-collision-aware-max-space.js +50 -0
- package/charts/xy-chart/components/displays/{BarDisplay.d.ts → BarDisplay/BarDisplay.d.ts} +3 -3
- package/charts/xy-chart/components/displays/{BarDisplay.js → BarDisplay/BarDisplay.js} +10 -10
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelLayout.d.ts +10 -0
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelLayout.js +64 -0
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css +19 -0
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.d.ts +24 -0
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.js +170 -0
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.d.ts +3 -0
- package/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +28 -0
- package/charts/xy-chart/components/displays/BarDisplay/HorizontalBarLabel.d.ts +34 -0
- package/charts/xy-chart/components/displays/BarDisplay/HorizontalBarLabel.js +81 -0
- package/charts/xy-chart/components/displays/BarDisplay/VerticalBarLabel.d.ts +34 -0
- package/charts/xy-chart/components/displays/BarDisplay/VerticalBarLabel.js +82 -0
- package/charts/xy-chart/components/displays/BarDisplay/label-utils.d.ts +8 -0
- package/charts/xy-chart/components/displays/BarDisplay/label-utils.js +25 -0
- package/charts/xy-chart/components/displays/bar-accessors.js +7 -6
- package/charts/xy-chart/components/legend/XYLegend/xy-legend.css +1 -1
- package/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js +1 -1
- package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
- package/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js +1 -1
- package/charts/xy-chart/components/overlay/explore/XYChartExplore.css +2 -2
- package/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js +2 -2
- package/charts/xy-chart/components/overlay/hooks/useApplyPanDelta.js +3 -3
- package/charts/xy-chart/components/overlay/hooks/useApplyZoomDelta.js +3 -3
- package/charts/xy-chart/components/overlay/hooks/useOverlayEvents.d.ts +1 -1
- package/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +27 -39
- package/charts/xy-chart/components/overlay/hooks/useResetInteractions.js +3 -3
- package/charts/xy-chart/components/overlay/utils/get-selected-datapoints.js +1 -1
- package/charts/xy-chart/components/overlay/utils/serialize-rectangle-series-values.js +1 -1
- package/charts/xy-chart/components/selection/TooltipHeader.css +2 -2
- package/charts/xy-chart/components/selection/TooltipHeader.sty.js +2 -2
- package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
- package/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
- package/charts/xy-chart/components/tooltip/BarSeriesTooltip.js +11 -0
- package/charts/xy-chart/components/tooltip/TopListTooltip.d.ts +7 -0
- package/charts/xy-chart/components/tooltip/TopListTooltip.js +84 -0
- package/charts/xy-chart/components/tooltip/XYChartTooltipTemplate/XYChartTooltipTemplate.css +1 -1
- package/charts/xy-chart/components/tooltip/XYChartTooltipTemplate/XYChartTooltipTemplate.sty.js +1 -1
- package/charts/xy-chart/components/tooltip/utils/tooltip-styles.css +5 -5
- package/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js +4 -4
- package/charts/xy-chart/context/XYChartLegendHidden.context.d.ts +2 -0
- package/charts/xy-chart/context/XYChartLegendHidden.context.js +27 -0
- package/charts/xy-chart/layout/XYChartLayout.css +2 -2
- package/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
- package/charts/xy-chart/layout/XYChartShiftedDisplay.js +1 -1
- package/charts/xy-chart/processing-strategies/strategies/area-series.js +2 -1
- package/charts/xy-chart/processing-strategies/strategies/bar-series.d.ts +2 -0
- package/charts/xy-chart/processing-strategies/strategies/bar-series.js +9 -3
- package/charts/xy-chart/processing-strategies/strategies/groupable-series.d.ts +13 -3
- package/charts/xy-chart/processing-strategies/strategies/groupable-series.js +38 -4
- package/charts/xy-chart/processing-strategies/strategies/stackable-series.d.ts +14 -4
- package/charts/xy-chart/processing-strategies/strategies/stackable-series.js +38 -4
- package/charts/xy-chart/processing-strategies/utils/access-datapoint/get-bar-datapoints.d.ts +1 -0
- package/charts/xy-chart/processing-strategies/utils/access-datapoint/get-bar-datapoints.js +13 -1
- package/charts/xy-chart/providers/XYChartAxesTicksProvider.js +9 -2
- package/charts/xy-chart/slots/Tooltip.d.ts +2 -6
- package/charts/xy-chart/types/xy-chart-internals.d.ts +2 -0
- package/charts/xy-chart/types/xy-chart-props.d.ts +14 -0
- package/charts/xy-chart/types/xy-chart.d.ts +4 -0
- package/charts/xy-chart/utils/generate-nice-unit-ticks.d.ts +13 -1
- package/charts/xy-chart/utils/generate-nice-unit-ticks.js +39 -8
- package/charts/xy-chart/utils/get-ticks-formatted-by-config.d.ts +21 -1
- package/charts/xy-chart/utils/get-ticks-formatted-by-config.js +93 -11
- package/charts/xy-chart/utils/query-hovered.d.ts +1 -1
- package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.d.ts +6 -0
- package/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +79 -0
- package/charts/xy-chart-adoption/timeseries/iterate-slots.d.ts +11 -0
- package/charts/xy-chart-adoption/timeseries/iterate-slots.js +78 -0
- package/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.d.ts +16 -6
- package/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js +54 -18
- package/charts/xy-chart-adoption/timeseries/types/timeseries.d.ts +41 -0
- package/charts/xy-chart-adoption/timeseries/types/timeseries.js +25 -0
- package/charts/xy-chart-adoption/timeseries/utils/render-series.d.ts +8 -0
- package/charts/xy-chart-adoption/timeseries/utils/render-series.js +60 -0
- package/content/accordion/Accordion.css +14 -14
- package/content/accordion/Accordion.sty.js +8 -8
- package/content/ai-loading-indicator/AiLoadingIndicator.css +12 -12
- package/content/ai-loading-indicator/AiLoadingIndicator.sty.js +4 -4
- package/content/ai-response/AiResponse.css +5 -5
- package/content/ai-response/AiResponse.sty.js +2 -2
- package/content/avatar/Avatar.css +13 -13
- package/content/avatar/Avatar.sty.js +4 -4
- package/content/avatar-group/AvatarGroup.css +3 -3
- package/content/avatar-group/AvatarGroup.sty.js +2 -2
- package/content/chip/BaseChip.css +40 -40
- package/content/chip/BaseChip.sty.js +5 -5
- package/content/chip/ChipContent.css +11 -11
- package/content/chip/ChipContent.sty.js +2 -2
- package/content/chip/ChipDeleteButton.css +19 -19
- package/content/chip/ChipDeleteButton.sty.js +4 -4
- package/content/chip/ChipKey.css +6 -6
- package/content/chip/ChipKey.sty.js +1 -1
- package/content/chip/GroupedChip.css +3 -3
- package/content/chip/GroupedChip.sty.js +3 -3
- package/content/chip-group/ChipGroup.css +4 -4
- package/content/chip-group/ChipGroup.sty.js +1 -1
- package/content/chip-group/Control.css +4 -4
- package/content/chip-group/Control.sty.js +1 -1
- package/content/code-snippet/CodeHighlight.css +25 -25
- package/content/code-snippet/CodeHighlight.sty.js +5 -5
- package/content/code-snippet/CodeSnippet.css +5 -5
- package/content/code-snippet/CodeSnippet.sty.js +2 -2
- package/content/code-snippet/prism-dql-language.d.ts +4 -0
- package/content/code-snippet/prism-dql-language.js +8 -5
- package/content/empty-state/EmptyState.css +28 -28
- package/content/empty-state/EmptyState.sty.js +7 -7
- package/content/empty-state/slot-components/Footer.css +1 -1
- package/content/empty-state/slot-components/Footer.sty.js +1 -1
- package/content/empty-state/slot-components/Visual.css +3 -3
- package/content/empty-state/slot-components/Visual.sty.js +1 -1
- package/content/expandable-text/ExpandableText.css +7 -7
- package/content/expandable-text/ExpandableText.sty.js +2 -2
- package/content/feature-highlight/FeatureHighlight.css +12 -12
- package/content/feature-highlight/FeatureHighlight.sty.js +3 -3
- package/content/health-indicator/styles.css +23 -23
- package/content/health-indicator/styles.sty.js +1 -1
- package/content/information-overlay/InformationOverlay.css +25 -25
- package/content/information-overlay/InformationOverlay.sty.js +5 -5
- package/content/information-overlay/Trigger.d.ts +2 -3
- package/content/keyboard-shortcut/KeyboardShortcut.css +14 -14
- package/content/keyboard-shortcut/KeyboardShortcut.sty.js +2 -2
- package/content/markdown/Markdown.css +3 -3
- package/content/markdown/Markdown.sty.js +1 -1
- package/content/markdown/transformers/typography-mapping.css +9 -9
- package/content/markdown/transformers/typography-mapping.sty.js +6 -6
- package/content/microguide/Microguide.css +11 -11
- package/content/microguide/Microguide.sty.js +7 -7
- package/content/progress/ProgressBar.css +71 -71
- package/content/progress/ProgressBar.sty.js +5 -5
- package/content/progress/ProgressBarIcon.css +2 -2
- package/content/progress/ProgressBarIcon.sty.js +1 -1
- package/content/progress/ProgressBarLabel.css +3 -3
- package/content/progress/ProgressBarLabel.sty.js +1 -1
- package/content/progress/ProgressBarValue.css +5 -5
- package/content/progress/ProgressBarValue.sty.js +1 -1
- package/content/progress/ProgressCircle.css +40 -40
- package/content/progress/ProgressCircle.sty.js +5 -5
- package/content/shared-components/Visual.css +3 -3
- package/content/shared-components/Visual.sty.js +1 -1
- package/content/skeleton/Skeleton.css +7 -7
- package/content/skeleton/Skeleton.sty.js +5 -5
- package/content/terminology-overlay/TerminologyOverlay.css +4 -4
- package/content/terminology-overlay/TerminologyOverlay.js +16 -4
- package/content/terminology-overlay/TerminologyOverlay.sty.js +1 -1
- package/content/terminology-overlay/Trigger.d.ts +2 -1
- package/content/terminology-overlay/Trigger.js +5 -1
- package/core/components/app-root/AppRoot.css +2 -2
- package/core/components/app-root/AppRoot.sty.js +1 -1
- package/core/components/visually-hidden/VisuallyHidden.css +1 -1
- package/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
- package/core/contexts/PermissionsContext.d.ts +15 -0
- package/core/contexts/PermissionsContext.js +35 -0
- package/core/dql/dql-common.d.ts +6 -0
- package/core/dql/dql-common.js +2 -0
- package/core/external-links.d.ts +15 -0
- package/core/external-links.js +29 -0
- package/core/hooks/usePermissions.d.ts +24 -0
- package/core/hooks/usePermissions.js +55 -0
- package/core/index.d.ts +1 -0
- package/core/index.js +2 -0
- package/core/sdk/sdk-logger.js +2 -2
- package/core/styles/defaultChartValues.css +1 -1
- package/core/styles/defaultChartValues.sty.js +1 -1
- package/core/styles/focusRing.css +66 -66
- package/core/styles/focusRing.sty.js +2 -2
- package/core/styles/focusRingStatic.css +34 -34
- package/core/styles/focusRingStatic.sty.js +1 -1
- package/core/styles/virtualFocus.css +2 -2
- package/core/styles/virtualFocus.sty.js +1 -1
- package/core/time/timeframeStore/actions/dateTimePicker.js +4 -5
- package/core/time/timeframeStore/actions/dateTimeRangePicker.js +4 -6
- package/core/time/timeframeStore/actions/timeframeSelector.js +9 -9
- package/core/time/timeframeStore/timeframeSelector.types.d.ts +5 -1
- package/core/time/useDateTimeMessages.js +1 -1
- package/core/time/validation.js +2 -2
- package/core/utils/colorUtils.css +60 -60
- package/core/utils/colorUtils.sty.js +2 -2
- package/core/utils/permissionsQueryClient.d.ts +7 -0
- package/core/utils/permissionsQueryClient.js +33 -0
- package/editors/base-code-editor/BaseCodeEditor.css +133 -133
- package/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
- package/editors/dql-editor/DQLEditor.d.ts +55 -22
- package/editors/dql-editor/DQLEditor.js +122 -73
- package/editors/dql-editor/actions-menu/ActionsMenu.css +28 -0
- package/editors/dql-editor/actions-menu/ActionsMenu.d.ts +27 -0
- package/editors/dql-editor/actions-menu/ActionsMenu.js +100 -0
- package/editors/dql-editor/actions-menu/ActionsMenu.sty.d.ts +28 -0
- package/editors/dql-editor/actions-menu/ActionsMenu.sty.js +29 -0
- package/editors/dql-editor/actions-menu/actions-menu-messages.d.ts +17 -0
- package/editors/dql-editor/actions-menu/actions-menu-messages.js +40 -0
- package/editors/dql-editor/dql/DocumentationLink.d.ts +0 -1
- package/editors/dql-editor/dql/DocumentationLink.js +2 -3
- package/editors/dql-editor/dql/SuggestionPart.css +1 -1
- package/editors/dql-editor/dql/SuggestionPart.sty.js +1 -1
- package/editors/dql-editor/dql/dql-language.js +23 -5
- package/editors/dql-editor/dql/dql.js +7 -2
- package/esm/buttons/button/Button.css +15 -15
- package/esm/buttons/button/Button.sty.js +4 -4
- package/esm/buttons/button/Button.sty.js.map +1 -1
- package/esm/buttons/intent-button/IntentButton.css +1 -1
- package/esm/buttons/intent-button/IntentButton.sty.js +1 -1
- package/esm/buttons/intent-button/IntentButton.sty.js.map +1 -1
- package/esm/buttons/notify-button/NotifyButton.css +2 -2
- package/esm/buttons/notify-button/NotifyButton.sty.js +2 -2
- package/esm/buttons/notify-button/NotifyButton.sty.js.map +1 -1
- package/esm/charts/annotations-chart/AnnotationsChart.js +9 -1
- package/esm/charts/annotations-chart/AnnotationsChart.js.map +2 -2
- package/esm/charts/annotations-chart/components/AnnotationsDisplay.js.map +2 -2
- package/esm/charts/annotations-chart/constants.js +3 -1
- package/esm/charts/annotations-chart/constants.js.map +2 -2
- package/esm/charts/annotations-chart/utils/annotations-chart-config.js +2 -0
- package/esm/charts/annotations-chart/utils/annotations-chart-config.js.map +2 -2
- package/esm/charts/annotations-chart/utils/populate-missing-tooltip-props.js +8 -3
- package/esm/charts/annotations-chart/utils/populate-missing-tooltip-props.js.map +2 -2
- package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.css +2 -2
- package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js +2 -2
- package/esm/charts/categorical-bar/components/interactions/overlays/CategoricalBarChartInspectOverlay.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/AnnotationsAtom.css +1 -1
- package/esm/charts/core/components/annotations/AnnotationsAtom.sty.js +1 -1
- package/esm/charts/core/components/annotations/AnnotationsAtom.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/components/AnnotationsRenderer.js +4 -3
- package/esm/charts/core/components/annotations/components/AnnotationsRenderer.js.map +2 -2
- package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.css +1 -1
- package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js +1 -1
- package/esm/charts/core/components/annotations/components/canvas/AnnotationsCanvasLayout.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/components/displays/AnnotationsContainer.js +12 -0
- package/esm/charts/core/components/annotations/components/displays/AnnotationsContainer.js.map +7 -0
- package/esm/charts/core/components/annotations/components/displays/AnnotationsNumericalDisplay.js +13 -18
- package/esm/charts/core/components/annotations/components/displays/AnnotationsNumericalDisplay.js.map +2 -2
- package/esm/charts/core/components/annotations/components/displays/AnnotationsTimeDisplay.js +13 -18
- package/esm/charts/core/components/annotations/components/displays/AnnotationsTimeDisplay.js.map +2 -2
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.css +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsOverlays.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.css +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js +1 -1
- package/esm/charts/core/components/annotations/components/overlays/AnnotationsScrollWrapper.sty.js.map +1 -1
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsCustomizedTooltip.js +3 -2
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsCustomizedTooltip.js.map +2 -2
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltipContent.js +131 -0
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltipContent.js.map +7 -0
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsOverlayTooltip.js +121 -0
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsOverlayTooltip.js.map +7 -0
- package/esm/charts/core/components/annotations/components/tooltip/utils/prepare-custom-tooltip-data.js +8 -11
- package/esm/charts/core/components/annotations/components/tooltip/utils/prepare-custom-tooltip-data.js.map +2 -2
- package/esm/charts/core/components/annotations/constants.js +2 -0
- package/esm/charts/core/components/annotations/constants.js.map +2 -2
- package/esm/charts/core/components/annotations/hooks/useOverlayEvents.js +18 -0
- package/esm/charts/core/components/annotations/hooks/useOverlayEvents.js.map +2 -2
- package/esm/charts/core/components/axes/Axis.css +1 -1
- package/esm/charts/core/components/axes/Axis.sty.js +1 -1
- package/esm/charts/core/components/axes/Axis.sty.js.map +1 -1
- package/esm/charts/core/components/axes/components/PanningControls/PanningControls.css +16 -16
- package/esm/charts/core/components/axes/components/PanningControls/PanningControls.sty.js +2 -2
- package/esm/charts/core/components/axes/components/PanningControls/PanningControls.sty.js.map +1 -1
- package/esm/charts/core/components/axes/utils/calculate-axis-size.js +4 -2
- package/esm/charts/core/components/axes/utils/calculate-axis-size.js.map +2 -2
- package/esm/charts/core/components/axes/utils/get-tick-label-props.js +47 -1
- package/esm/charts/core/components/axes/utils/get-tick-label-props.js.map +2 -2
- package/esm/charts/core/components/axes/utils/tick-formatters.js +9 -1
- package/esm/charts/core/components/axes/utils/tick-formatters.js.map +2 -2
- package/esm/charts/core/components/chart-grid/ChartGrid.css +3 -3
- package/esm/charts/core/components/chart-grid/ChartGrid.sty.js +3 -3
- package/esm/charts/core/components/chart-grid/ChartGrid.sty.js.map +1 -1
- package/esm/charts/core/components/chart-layout/components/styles.css +15 -15
- package/esm/charts/core/components/chart-layout/components/styles.sty.js +4 -4
- package/esm/charts/core/components/chart-layout/components/styles.sty.js.map +1 -1
- package/esm/charts/core/components/chart-states/ChartState.css +4 -4
- package/esm/charts/core/components/chart-states/ChartState.sty.js +4 -4
- package/esm/charts/core/components/chart-states/ChartState.sty.js.map +1 -1
- package/esm/charts/core/components/crosshair/components/Magnifier.css +7 -7
- package/esm/charts/core/components/crosshair/components/Magnifier.sty.js +7 -7
- package/esm/charts/core/components/crosshair/components/Magnifier.sty.js.map +1 -1
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.css +5 -5
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js +2 -2
- package/esm/charts/core/components/interactions-overlay/InteractionsOverlay.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/ChartLegend.css +1 -1
- package/esm/charts/core/components/legend/categorical/ChartLegend.sty.js +1 -1
- package/esm/charts/core/components/legend/categorical/ChartLegend.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.css +3 -3
- package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js +3 -3
- package/esm/charts/core/components/legend/categorical/components/ChartLegendIcon/ChartLegendIcon.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.css +17 -17
- package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js +6 -6
- package/esm/charts/core/components/legend/categorical/components/ChartLegendItem/ChartLegendItem.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.css +3 -3
- package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartLegendSeriesActions/ChartLegendSeriesActions.sty.js.map +1 -1
- package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.css +8 -8
- package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js +4 -4
- package/esm/charts/core/components/legend/categorical/components/ChartVirtualizedLegendGrid.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/RangeLegend.css +3 -3
- package/esm/charts/core/components/legend/range/RangeLegend.sty.js +1 -1
- package/esm/charts/core/components/legend/range/RangeLegend.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.css +2 -2
- package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendBoundaryLabel/RangeLegendBoundaryLabel.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.css +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemLabel/RangeLegendItemLabel.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.css +3 -3
- package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendItemMarker/RangeLegendItemMarker.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.css +3 -3
- package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendMarkers/RangeLegendMarkers.sty.js.map +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.css +5 -5
- package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js +1 -1
- package/esm/charts/core/components/legend/range/components/RangeLegendSegments/RangeLegendSegments.sty.js.map +1 -1
- package/esm/charts/core/components/loader-overlay/LoaderOverlay.css +2 -2
- package/esm/charts/core/components/loader-overlay/LoaderOverlay.sty.js +2 -2
- package/esm/charts/core/components/loader-overlay/LoaderOverlay.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/OverlayTooltip.js +4 -0
- package/esm/charts/core/components/overlay-tooltip/OverlayTooltip.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/_to-be-removed/DummyInteractionsOverlay.js +8 -5
- package/esm/charts/core/components/overlay-tooltip/_to-be-removed/DummyInteractionsOverlay.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/_to-be-removed/_OverlayTooltipWIPStory.js +2 -2
- package/esm/charts/core/components/overlay-tooltip/_to-be-removed/_OverlayTooltipWIPStory.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltipRenderer.js +7 -6
- package/esm/charts/core/components/overlay-tooltip/components/DynamicTooltipRenderer.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/{TooltipFooter.js → Footer.js} +3 -6
- package/esm/charts/core/components/overlay-tooltip/components/Footer.js.map +7 -0
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/Action.js +6 -0
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/Action.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/GlobalActions.js +4 -14
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/GlobalActions.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.css +4 -4
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/global-actions/actions.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/header/Header.css +6 -6
- package/esm/charts/core/components/overlay-tooltip/components/header/Header.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/header/Header.sty.js +6 -6
- package/esm/charts/core/components/overlay-tooltip/components/header/Header.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/series/SeriesItem.js +31 -8
- package/esm/charts/core/components/overlay-tooltip/components/series/SeriesItem.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/series/SeriesItemContent.js +38 -3
- package/esm/charts/core/components/overlay-tooltip/components/series/SeriesItemContent.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/series/SeriesSymbol.js +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/series/SeriesSymbol.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/series/hooks/use-series-item-display-state.js +58 -6
- package/esm/charts/core/components/overlay-tooltip/components/series/hooks/use-series-item-display-state.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.css +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js +2 -2
- package/esm/charts/core/components/overlay-tooltip/components/series/seriesSymbol.sty.js.map +1 -1
- package/esm/charts/core/components/overlay-tooltip/components/series/utils/get-name-text-style.js +6 -4
- package/esm/charts/core/components/overlay-tooltip/components/series/utils/get-name-text-style.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/hooks/useTooltipImperativeHandle.js +3 -11
- package/esm/charts/core/components/overlay-tooltip/hooks/useTooltipImperativeHandle.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/overlay.js +8 -8
- package/esm/charts/core/components/overlay-tooltip/overlay.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/tooltip.css +92 -44
- package/esm/charts/core/components/overlay-tooltip/tooltip.sty.js +46 -34
- package/esm/charts/core/components/overlay-tooltip/tooltip.sty.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/types.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/useTooltipActions.js +67 -0
- package/esm/charts/core/components/overlay-tooltip/useTooltipActions.js.map +7 -0
- package/esm/charts/core/components/overlay-tooltip/useTooltipReducer.js +9 -11
- package/esm/charts/core/components/overlay-tooltip/useTooltipReducer.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/utils/build-content.js +41 -36
- package/esm/charts/core/components/overlay-tooltip/utils/build-content.js.map +2 -2
- package/esm/charts/core/components/overlay-tooltip/utils/estimate-series-item-size.js +19 -3
- package/esm/charts/core/components/overlay-tooltip/utils/estimate-series-item-size.js.map +2 -2
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.css +5 -5
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js +5 -5
- package/esm/charts/core/components/overlays/ChartOverlaysBorder.sty.js.map +1 -1
- package/esm/charts/core/components/selection-area/SelectionArea.css +9 -9
- package/esm/charts/core/components/selection-area/SelectionArea.sty.js +4 -4
- package/esm/charts/core/components/selection-area/SelectionArea.sty.js.map +1 -1
- package/esm/charts/core/components/shape/BubbleShape/BubbleShape.css +5 -5
- package/esm/charts/core/components/shape/BubbleShape/BubbleShape.sty.js +3 -3
- package/esm/charts/core/components/shape/BubbleShape/BubbleShape.sty.js.map +1 -1
- package/esm/charts/core/components/shape/EmojiShape/EmojiShape.css +3 -3
- package/esm/charts/core/components/shape/EmojiShape/EmojiShape.sty.js +1 -1
- package/esm/charts/core/components/shape/EmojiShape/EmojiShape.sty.js.map +1 -1
- package/esm/charts/core/components/shape/IconShape/IconShape.css +3 -3
- package/esm/charts/core/components/shape/IconShape/IconShape.sty.js +1 -1
- package/esm/charts/core/components/shape/IconShape/IconShape.sty.js.map +1 -1
- package/esm/charts/core/components/shape/styles/DataPointShape.css +8 -8
- package/esm/charts/core/components/shape/styles/DataPointShape.sty.js +4 -4
- package/esm/charts/core/components/shape/styles/DataPointShape.sty.js.map +1 -1
- package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.css +1 -1
- package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js +1 -1
- package/esm/charts/core/components/shared-chart-interactions/SharedChartInteractions.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.css +5 -5
- package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js +5 -5
- package/esm/charts/core/components/single-value-renderer/SingleValueRenderer.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/ContentGrid.css +1 -1
- package/esm/charts/core/components/single-value-renderer/components/ContentGrid.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/ContentGrid.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Icon.css +3 -3
- package/esm/charts/core/components/single-value-renderer/components/Icon.sty.js +2 -2
- package/esm/charts/core/components/single-value-renderer/components/Icon.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Label.css +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Label.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Label.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.css +1 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/SingleValueToolbar.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/Value.css +5 -5
- package/esm/charts/core/components/single-value-renderer/components/Value.sty.js +3 -3
- package/esm/charts/core/components/single-value-renderer/components/Value.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/trend/Trend.css +3 -3
- package/esm/charts/core/components/single-value-renderer/components/trend/Trend.sty.js +3 -3
- package/esm/charts/core/components/single-value-renderer/components/trend/Trend.sty.js.map +1 -1
- package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.css +2 -2
- package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js +1 -1
- package/esm/charts/core/components/single-value-renderer/components/trend/components/Icon.sty.js.map +1 -1
- package/esm/charts/core/components/sparkline-display/Sparkline.css +6 -6
- package/esm/charts/core/components/sparkline-display/Sparkline.sty.js +2 -2
- package/esm/charts/core/components/sparkline-display/Sparkline.sty.js.map +1 -1
- package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.css +7 -7
- package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js +3 -3
- package/esm/charts/core/components/text-ellipsis/ChartTextEllipsis.sty.js.map +1 -1
- package/esm/charts/core/components/threshold-bar/styles.css +9 -9
- package/esm/charts/core/components/threshold-bar/styles.sty.js +2 -2
- package/esm/charts/core/components/threshold-bar/styles.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.css +16 -16
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.sty.js +8 -8
- package/esm/charts/core/components/toolbar/ChartToolbarRenderer.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/components/ChartDataMenu.css +2 -2
- package/esm/charts/core/components/toolbar/components/ChartDataMenu.sty.js +1 -1
- package/esm/charts/core/components/toolbar/components/ChartDataMenu.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/components/Control.css +17 -17
- package/esm/charts/core/components/toolbar/components/Control.sty.js +5 -5
- package/esm/charts/core/components/toolbar/components/Control.sty.js.map +1 -1
- package/esm/charts/core/components/toolbar/components/ToolbarMenu.css +4 -4
- package/esm/charts/core/components/toolbar/components/ToolbarMenu.sty.js +2 -2
- package/esm/charts/core/components/toolbar/components/ToolbarMenu.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.css +6 -6
- package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js +2 -2
- package/esm/charts/core/components/tooltip/ChartTooltip/ChartTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.css +8 -8
- package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js +3 -3
- package/esm/charts/core/components/tooltip/ChartTooltip/components/ActionItem/ActionItem.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.css +2 -2
- package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/SeriesItem/SeriesItem.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.css +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js +1 -1
- package/esm/charts/core/components/tooltip/ChartTooltip/components/TimeFrameHeader/TimeFrameHeader.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.css +6 -6
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js +2 -2
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/BasicChartTooltip/BasicChartTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.css +7 -7
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js +6 -6
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/components/InteractiveChartTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.css +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js +1 -1
- package/esm/charts/core/components/tooltip/InteractiveChartTooltip/headers/HeaderTooltip.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.css +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipFooter/TooltipFooter.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.css +2 -2
- package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipHeader/TooltipHeader.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.css +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipInfoContent/TooltipInfoContent.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.css +3 -3
- package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js +2 -2
- package/esm/charts/core/components/tooltip/section-components/TooltipItem/TooltipItem.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.css +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js +1 -1
- package/esm/charts/core/components/tooltip/section-components/TooltipSymbolContent/TooltipSymbolContent.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.css +2 -2
- package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js +2 -2
- package/esm/charts/core/components/tooltip/section-components/VirtualizedTooltipBody/VirtualizedTooltipBody.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/section-components/atoms/styles.css +3 -3
- package/esm/charts/core/components/tooltip/section-components/atoms/styles.sty.js +3 -3
- package/esm/charts/core/components/tooltip/section-components/atoms/styles.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.css +12 -12
- package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js +7 -7
- package/esm/charts/core/components/tooltip/shared/styles/SeriesBasedContent.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.css +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js +1 -1
- package/esm/charts/core/components/tooltip/shared/styles/TooltipBody.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.css +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/HeaderChipAtom/HeaderChipAtom.sty.js.map +1 -1
- package/esm/charts/core/components/tooltip-atoms/components/styles.css +4 -4
- package/esm/charts/core/components/tooltip-atoms/components/styles.sty.js +4 -4
- package/esm/charts/core/components/tooltip-atoms/components/styles.sty.js.map +1 -1
- package/esm/charts/core/components/zoom/ZoomCursors.css +2 -2
- package/esm/charts/core/components/zoom/ZoomCursors.sty.js +3 -3
- package/esm/charts/core/components/zoom/ZoomCursors.sty.js.map +1 -1
- package/esm/charts/core/hooks/useOverlayEventHandlers.js +8 -25
- package/esm/charts/core/hooks/useOverlayEventHandlers.js.map +2 -2
- package/esm/charts/core/typographyStyles.css +1 -1
- package/esm/charts/core/typographyStyles.sty.js +1 -1
- package/esm/charts/core/typographyStyles.sty.js.map +1 -1
- package/esm/charts/core/utils/adaptively-reduce-horizontal-ticks.js +45 -0
- package/esm/charts/core/utils/adaptively-reduce-horizontal-ticks.js.map +7 -0
- package/esm/charts/core/utils/has-horizontal-label-collision.js +57 -0
- package/esm/charts/core/utils/has-horizontal-label-collision.js.map +7 -0
- package/esm/charts/core/utils/is-feature-enabled.js +2 -1
- package/esm/charts/core/utils/is-feature-enabled.js.map +2 -2
- package/esm/charts/gantt-chart/GanttChartLine.css +1 -1
- package/esm/charts/gantt-chart/GanttChartLine.sty.js +1 -1
- package/esm/charts/gantt-chart/GanttChartLine.sty.js.map +1 -1
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.css +1 -1
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.sty.js +1 -1
- package/esm/charts/gantt-chart/components/GanttChartLineRenderer.sty.js.map +1 -1
- package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.css +1 -1
- package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js +1 -1
- package/esm/charts/gantt-chart/components/tooltip/GanttChartTooltip.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.css +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js +1 -1
- package/esm/charts/gauge/components/GaugeChartLayout/GaugeChartLayout.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeChartTooltip/GaugeOverlayTooltip.js +12 -2
- package/esm/charts/gauge/components/GaugeChartTooltip/GaugeOverlayTooltip.js.map +2 -2
- package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.css +6 -6
- package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js +3 -3
- package/esm/charts/gauge/components/GaugeLabel/GaugeLabel.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeLabels.js +3 -4
- package/esm/charts/gauge/components/GaugeLabels.js.map +2 -2
- package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.css +3 -3
- package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js +1 -1
- package/esm/charts/gauge/components/GaugeLabelsWrapper/GaugeLabelsWrapper.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.css +4 -4
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js +12 -11
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.js.map +2 -2
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js +3 -3
- package/esm/charts/gauge/components/GaugeLayoutOverlay/GaugeLayoutOverlay.sty.js.map +1 -1
- package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.css +2 -2
- package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js +2 -2
- package/esm/charts/gauge/components/GaugeResponsiveLabel/GaugeResponsiveLabel.sty.js.map +1 -1
- package/esm/charts/gauge/constants.js +2 -0
- package/esm/charts/gauge/constants.js.map +2 -2
- package/esm/charts/gauge/contexts/GaugeChartTooltipContext.js +9 -0
- package/esm/charts/gauge/contexts/GaugeChartTooltipContext.js.map +7 -0
- package/esm/charts/gauge/hooks/useGaugeChartMinMaxLabelsPosition.js +20 -2
- package/esm/charts/gauge/hooks/useGaugeChartMinMaxLabelsPosition.js.map +2 -2
- package/esm/charts/gauge/providers/GaugeChartProviders.js +11 -3
- package/esm/charts/gauge/providers/GaugeChartProviders.js.map +2 -2
- package/esm/charts/gauge/slots/Tooltip.js +1 -1
- package/esm/charts/gauge/slots/Tooltip.js.map +2 -2
- package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.css +1 -1
- package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js +1 -1
- package/esm/charts/histogram/components/axes/HistogramValueBottomAxisArea/HistogramValueBottomAxisArea.sty.js.map +1 -1
- package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.css +1 -1
- package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js +1 -1
- package/esm/charts/histogram/components/overlays/HistogramExplore/HistogramTooltip.sty.js.map +1 -1
- package/esm/charts/histogram/components/overlays/HistogramOverlays.css +2 -2
- package/esm/charts/histogram/components/overlays/HistogramOverlays.sty.js +2 -2
- package/esm/charts/histogram/components/overlays/HistogramOverlays.sty.js.map +1 -1
- package/esm/charts/honeycomb/HoneycombChart.css +1 -1
- package/esm/charts/honeycomb/HoneycombChart.js +3 -1
- package/esm/charts/honeycomb/HoneycombChart.js.map +2 -2
- package/esm/charts/honeycomb/HoneycombChart.sty.js +1 -1
- package/esm/charts/honeycomb/HoneycombChart.sty.js.map +1 -1
- package/esm/charts/honeycomb/components/HiveOverlay.css +1 -1
- package/esm/charts/honeycomb/components/HiveOverlay.sty.js +1 -1
- package/esm/charts/honeycomb/components/HiveOverlay.sty.js.map +1 -1
- package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.css +1 -1
- package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js +1 -1
- package/esm/charts/honeycomb/components/canvas/HiveCanvasLayout.sty.js.map +1 -1
- package/esm/charts/honeycomb/components/tooltip/HoneycombOverlayTooltip.js +16 -1
- package/esm/charts/honeycomb/components/tooltip/HoneycombOverlayTooltip.js.map +2 -2
- package/esm/charts/honeycomb/context/honeycomb-custom-tooltip.context.js +6 -0
- package/esm/charts/honeycomb/context/honeycomb-custom-tooltip.context.js.map +7 -0
- package/esm/charts/honeycomb/hooks/use-honeycomb-custom-tooltip.js +7 -0
- package/esm/charts/honeycomb/hooks/use-honeycomb-custom-tooltip.js.map +7 -0
- package/esm/charts/honeycomb/providers/honeycomb-configuration.provider.js +2 -1
- package/esm/charts/honeycomb/providers/honeycomb-configuration.provider.js.map +2 -2
- package/esm/charts/honeycomb/slots/Tooltip.js +6 -0
- package/esm/charts/honeycomb/slots/Tooltip.js.map +7 -0
- package/esm/charts/honeycomb/utils/build-honeycomb-config.js +2 -1
- package/esm/charts/honeycomb/utils/build-honeycomb-config.js.map +2 -2
- package/esm/charts/honeycomb/utils/build-overlay-tooltip-data.js +5 -1
- package/esm/charts/honeycomb/utils/build-overlay-tooltip-data.js.map +2 -2
- package/esm/charts/honeycomb/utils/iterate-honeycomb-slots.js +11 -1
- package/esm/charts/honeycomb/utils/iterate-honeycomb-slots.js.map +2 -2
- package/esm/charts/index.js +5 -1
- package/esm/charts/index.js.map +2 -2
- package/esm/charts/meter-bar/multi-meter-bar/MultiMeterBarChart.js +1 -1
- package/esm/charts/meter-bar/multi-meter-bar/MultiMeterBarChart.js.map +2 -2
- package/esm/charts/meter-bar/multi-meter-bar/components/MultiMeterBarChartOverlay/MultiMeterBarChartOverlay.js +1 -1
- package/esm/charts/meter-bar/multi-meter-bar/components/MultiMeterBarChartOverlay/MultiMeterBarChartOverlay.js.map +2 -2
- package/esm/charts/meter-bar/multi-meter-bar/components/MultiMeterBarChartOverlay/MultiMeterBarChartOverlayWithTooltip.js +34 -8
- package/esm/charts/meter-bar/multi-meter-bar/components/MultiMeterBarChartOverlay/MultiMeterBarChartOverlayWithTooltip.js.map +2 -2
- package/esm/charts/meter-bar/multi-meter-bar/default.js +1 -1
- package/esm/charts/meter-bar/multi-meter-bar/default.js.map +2 -2
- package/esm/charts/meter-bar/multi-meter-bar/hooks/useMultiMeterBarChartTooltipHandlers.js +10 -37
- package/esm/charts/meter-bar/multi-meter-bar/hooks/useMultiMeterBarChartTooltipHandlers.js.map +2 -2
- package/esm/charts/meter-bar/multi-meter-bar/types/multi-meter-bar-chart.js.map +1 -1
- package/esm/charts/meter-bar/multi-meter-bar/utils/build-multi-meter-bar-chart-config.js +10 -7
- package/esm/charts/meter-bar/multi-meter-bar/utils/build-multi-meter-bar-chart-config.js.map +2 -2
- package/esm/charts/meter-bar/multi-meter-bar/utils/iterate-slots.js +4 -1
- package/esm/charts/meter-bar/multi-meter-bar/utils/iterate-slots.js.map +2 -2
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.css +15 -15
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js +10 -10
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/MeterBarLayout.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.css +2 -2
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Icon/Icon.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Label/Label.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Max/Max.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Min/Min.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-layout/slots/Value/Value.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-plot/MeterBarPlot.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-toolbar/MeterBarToolbar.js +3 -3
- package/esm/charts/meter-bar/shared/components/meter-bar-toolbar/MeterBarToolbar.js.map +2 -2
- package/esm/charts/meter-bar/shared/components/meter-bar-tooltip/MeterBarTooltipItem/MeterBarTooltipItem.css +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-tooltip/MeterBarTooltipItem/MeterBarTooltipItem.sty.js +1 -1
- package/esm/charts/meter-bar/shared/components/meter-bar-tooltip/MeterBarTooltipItem/MeterBarTooltipItem.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/styles/element-size.css +4 -4
- package/esm/charts/meter-bar/shared/styles/element-size.sty.js +1 -1
- package/esm/charts/meter-bar/shared/styles/element-size.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/styles.css +1 -1
- package/esm/charts/meter-bar/shared/styles.sty.js +1 -1
- package/esm/charts/meter-bar/shared/styles.sty.js.map +1 -1
- package/esm/charts/meter-bar/shared/utils/slot-handlers.js +0 -10
- package/esm/charts/meter-bar/shared/utils/slot-handlers.js.map +2 -2
- package/esm/charts/meter-bar/single-meter-bar/MeterBarChart.js +1 -1
- package/esm/charts/meter-bar/single-meter-bar/MeterBarChart.js.map +2 -2
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartOverlay/MeterBarChartOverlay.js +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartOverlay/MeterBarChartOverlay.js.map +2 -2
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartOverlay/MeterBarChartOverlayWithTooltip.js +61 -16
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartOverlay/MeterBarChartOverlayWithTooltip.js.map +2 -2
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.css +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js +1 -1
- package/esm/charts/meter-bar/single-meter-bar/components/MeterBarChartThresholds/MeterBarChartThresholds.sty.js.map +1 -1
- package/esm/charts/meter-bar/single-meter-bar/context/MeterBarChartInternalConfigContext.js.map +1 -1
- package/esm/charts/meter-bar/single-meter-bar/types/default.js +2 -1
- package/esm/charts/meter-bar/single-meter-bar/types/default.js.map +2 -2
- package/esm/charts/meter-bar/single-meter-bar/utils/build-meter-bar-chart-config.js +5 -1
- package/esm/charts/meter-bar/single-meter-bar/utils/build-meter-bar-chart-config.js.map +2 -2
- package/esm/charts/meter-bar/single-meter-bar/utils/iterate-slots.js +4 -1
- package/esm/charts/meter-bar/single-meter-bar/utils/iterate-slots.js.map +2 -2
- package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.css +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerContainer/InnerContainer.sty.js.map +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.css +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js +1 -1
- package/esm/charts/pie/components/InnerWrapper/components/InnerDonut/InnerDonut.sty.js.map +1 -1
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.css +1 -1
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js +1 -1
- package/esm/charts/pie/components/PieChartOverlays/PieChartOverlays.sty.js.map +1 -1
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.css +1 -1
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js +1 -1
- package/esm/charts/pie/components/PieChartPlot/PieChartPlot.sty.js.map +1 -1
- package/esm/charts/pie/hooks/usePieHandlers.js +3 -3
- package/esm/charts/pie/hooks/usePieHandlers.js.map +2 -2
- package/esm/charts/pie/hooks/useSliceHandlers.js +7 -41
- package/esm/charts/pie/hooks/useSliceHandlers.js.map +2 -2
- package/esm/charts/single-value/SingleValue.css +1 -1
- package/esm/charts/single-value/SingleValue.js +4 -1
- package/esm/charts/single-value/SingleValue.js.map +2 -2
- package/esm/charts/single-value/SingleValue.sty.js +1 -1
- package/esm/charts/single-value/SingleValue.sty.js.map +1 -1
- package/esm/charts/single-value-grid/SingleValueGrid.css +2 -2
- package/esm/charts/single-value-grid/SingleValueGrid.js +4 -1
- package/esm/charts/single-value-grid/SingleValueGrid.js.map +2 -2
- package/esm/charts/single-value-grid/SingleValueGrid.sty.js +1 -1
- package/esm/charts/single-value-grid/SingleValueGrid.sty.js.map +1 -1
- package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.css +1 -1
- package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js +1 -1
- package/esm/charts/single-value-grid/components/GlobalFontSizeVariables.sty.js.map +1 -1
- package/esm/charts/timeseries/TimeseriesChart.js +65 -131
- package/esm/charts/timeseries/TimeseriesChart.js.map +2 -2
- package/esm/charts/timeseries/TimeseriesChartInternal.js +136 -0
- package/esm/charts/timeseries/TimeseriesChartInternal.js.map +7 -0
- package/esm/charts/timeseries/TimeseriesChartRoot.js +2 -54
- package/esm/charts/timeseries/TimeseriesChartRoot.js.map +2 -2
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.css +2 -2
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.js +4 -2
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.js.map +2 -2
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js +1 -1
- package/esm/charts/timeseries/components/axes/TimeseriesTimeBottomAxisArea/TimeseriesTimeBottomAxisArea.sty.js.map +1 -1
- package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.css +4 -4
- package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js +4 -4
- package/esm/charts/timeseries/components/overlays/TimeseriesOverlays.sty.js.map +1 -1
- package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.css +2 -2
- package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js +2 -2
- package/esm/charts/timeseries/components/thresholds/ThresholdIndicators.sty.js.map +1 -1
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.css +1 -1
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js +1 -1
- package/esm/charts/tree-map/components/TreeMapOverlay/TreeMapOverlay.sty.js.map +1 -1
- package/esm/charts/tree-map/components/TreeMapTooltip/TreeMapOverlayTooltip.js +12 -1
- package/esm/charts/tree-map/components/TreeMapTooltip/TreeMapOverlayTooltip.js.map +2 -2
- package/esm/charts/tree-map/components/canvas/TreeMapSquareRenderer.js +3 -2
- package/esm/charts/tree-map/components/canvas/TreeMapSquareRenderer.js.map +2 -2
- package/esm/charts/tree-map/components/canvas/utils/canvas-label-utils.js +7 -7
- package/esm/charts/tree-map/components/canvas/utils/canvas-label-utils.js.map +2 -2
- package/esm/charts/tree-map/constants.js +1 -0
- package/esm/charts/tree-map/constants.js.map +2 -2
- package/esm/charts/tree-map/contexts/TreeMapCustomTooltipContext.js +10 -0
- package/esm/charts/tree-map/contexts/TreeMapCustomTooltipContext.js.map +7 -0
- package/esm/charts/tree-map/hooks/useTreeMapCustomTooltip.js +7 -0
- package/esm/charts/tree-map/hooks/useTreeMapCustomTooltip.js.map +7 -0
- package/esm/charts/tree-map/providers/TreeMapChartProviders.js +13 -2
- package/esm/charts/tree-map/providers/TreeMapChartProviders.js.map +2 -2
- package/esm/charts/tree-map/slots/Tooltip.js +1 -1
- package/esm/charts/tree-map/slots/Tooltip.js.map +2 -2
- package/esm/charts/tree-map/utils/build-overlay-tooltip-data.js +3 -1
- package/esm/charts/tree-map/utils/build-overlay-tooltip-data.js.map +2 -2
- package/esm/charts/tree-map/utils/build-tree-map-chart-config.js +2 -1
- package/esm/charts/tree-map/utils/build-tree-map-chart-config.js.map +2 -2
- package/esm/charts/tree-map/utils/iterate-slots.js +8 -2
- package/esm/charts/tree-map/utils/iterate-slots.js.map +2 -2
- package/esm/charts/xy-chart/XYChart.js +2 -0
- package/esm/charts/xy-chart/XYChart.js.map +2 -2
- package/esm/charts/xy-chart/XYChartRoot.js +55 -39
- package/esm/charts/xy-chart/XYChartRoot.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/AxisArea.css +1 -1
- package/esm/charts/xy-chart/components/axes/AxisArea.sty.js +1 -1
- package/esm/charts/xy-chart/components/axes/AxisArea.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.css +3 -3
- package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js +3 -3
- package/esm/charts/xy-chart/components/axes/AxisTickWithTruncation.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/axes/XYChartBottomAxisArea.js +78 -63
- package/esm/charts/xy-chart/components/axes/XYChartBottomAxisArea.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/XYChartTopAxisArea.js +78 -63
- package/esm/charts/xy-chart/components/axes/XYChartTopAxisArea.js.map +2 -2
- package/esm/charts/xy-chart/components/axes/utils/compute-collision-aware-max-space.js +35 -0
- package/esm/charts/xy-chart/components/axes/utils/compute-collision-aware-max-space.js.map +7 -0
- package/esm/charts/xy-chart/components/displays/{BarDisplay.js → BarDisplay/BarDisplay.js} +13 -10
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarDisplay.js.map +7 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelLayout.js +46 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelLayout.js.map +7 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.css +19 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.js +150 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.js.map +7 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js +10 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/BarLabelOverlay.sty.js.map +7 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/HorizontalBarLabel.js +63 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/HorizontalBarLabel.js.map +7 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/VerticalBarLabel.js +64 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/VerticalBarLabel.js.map +7 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/label-utils.js +7 -0
- package/esm/charts/xy-chart/components/displays/BarDisplay/label-utils.js.map +7 -0
- package/esm/charts/xy-chart/components/displays/bar-accessors.js +7 -6
- package/esm/charts/xy-chart/components/displays/bar-accessors.js.map +2 -2
- package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.css +1 -1
- package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js +1 -1
- package/esm/charts/xy-chart/components/legend/XYLegend/xy-legend.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.css +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartCrosshair.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.css +2 -2
- package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js +2 -2
- package/esm/charts/xy-chart/components/overlay/explore/XYChartExplore.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/overlay/hooks/useApplyPanDelta.js +3 -3
- package/esm/charts/xy-chart/components/overlay/hooks/useApplyPanDelta.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/hooks/useApplyZoomDelta.js +3 -3
- package/esm/charts/xy-chart/components/overlay/hooks/useApplyZoomDelta.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js +27 -39
- package/esm/charts/xy-chart/components/overlay/hooks/useOverlayEvents.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/hooks/useResetInteractions.js +3 -3
- package/esm/charts/xy-chart/components/overlay/hooks/useResetInteractions.js.map +2 -2
- package/esm/charts/xy-chart/components/overlay/utils/get-selected-datapoints.js +1 -1
- package/esm/charts/xy-chart/components/overlay/utils/get-selected-datapoints.js.map +1 -1
- package/esm/charts/xy-chart/components/overlay/utils/serialize-rectangle-series-values.js +1 -1
- package/esm/charts/xy-chart/components/overlay/utils/serialize-rectangle-series-values.js.map +1 -1
- package/esm/charts/xy-chart/components/selection/TooltipHeader.css +2 -2
- package/esm/charts/xy-chart/components/selection/TooltipHeader.sty.js +2 -2
- package/esm/charts/xy-chart/components/selection/TooltipHeader.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.css +1 -1
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js +1 -1
- package/esm/charts/xy-chart/components/thresholds/XYChartThresholdIndicators.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/tooltip/BarSeriesTooltip.js +11 -0
- package/esm/charts/xy-chart/components/tooltip/BarSeriesTooltip.js.map +2 -2
- package/esm/charts/xy-chart/components/tooltip/TopListTooltip.js +66 -0
- package/esm/charts/xy-chart/components/tooltip/TopListTooltip.js.map +7 -0
- package/esm/charts/xy-chart/components/tooltip/XYChartTooltipTemplate/XYChartTooltipTemplate.css +1 -1
- package/esm/charts/xy-chart/components/tooltip/XYChartTooltipTemplate/XYChartTooltipTemplate.sty.js +1 -1
- package/esm/charts/xy-chart/components/tooltip/XYChartTooltipTemplate/XYChartTooltipTemplate.sty.js.map +1 -1
- package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.css +5 -5
- package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js +4 -4
- package/esm/charts/xy-chart/components/tooltip/utils/tooltip-styles.sty.js.map +1 -1
- package/esm/charts/xy-chart/context/XYChartLegendHidden.context.js +9 -0
- package/esm/charts/xy-chart/context/XYChartLegendHidden.context.js.map +7 -0
- package/esm/charts/xy-chart/layout/XYChartLayout.css +2 -2
- package/esm/charts/xy-chart/layout/XYChartLayout.sty.js +2 -2
- package/esm/charts/xy-chart/layout/XYChartLayout.sty.js.map +1 -1
- package/esm/charts/xy-chart/layout/XYChartShiftedDisplay.js +1 -1
- package/esm/charts/xy-chart/layout/XYChartShiftedDisplay.js.map +1 -1
- package/esm/charts/xy-chart/processing-strategies/strategies/area-series.js +2 -1
- package/esm/charts/xy-chart/processing-strategies/strategies/area-series.js.map +2 -2
- package/esm/charts/xy-chart/processing-strategies/strategies/bar-series.js +9 -3
- package/esm/charts/xy-chart/processing-strategies/strategies/bar-series.js.map +2 -2
- package/esm/charts/xy-chart/processing-strategies/strategies/groupable-series.js +42 -5
- package/esm/charts/xy-chart/processing-strategies/strategies/groupable-series.js.map +2 -2
- package/esm/charts/xy-chart/processing-strategies/strategies/stackable-series.js +39 -4
- package/esm/charts/xy-chart/processing-strategies/strategies/stackable-series.js.map +2 -2
- package/esm/charts/xy-chart/processing-strategies/utils/access-datapoint/get-bar-datapoints.js +14 -2
- package/esm/charts/xy-chart/processing-strategies/utils/access-datapoint/get-bar-datapoints.js.map +2 -2
- package/esm/charts/xy-chart/providers/XYChartAxesTicksProvider.js +9 -2
- package/esm/charts/xy-chart/providers/XYChartAxesTicksProvider.js.map +2 -2
- package/esm/charts/xy-chart/slots/Tooltip.js.map +2 -2
- package/esm/charts/xy-chart/types/xy-chart-internals.js.map +2 -2
- package/esm/charts/xy-chart/types/xy-chart.js.map +1 -1
- package/esm/charts/xy-chart/utils/generate-nice-unit-ticks.js +39 -8
- package/esm/charts/xy-chart/utils/generate-nice-unit-ticks.js.map +2 -2
- package/esm/charts/xy-chart/utils/get-ticks-formatted-by-config.js +93 -11
- package/esm/charts/xy-chart/utils/get-ticks-formatted-by-config.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js +70 -0
- package/esm/charts/xy-chart-adoption/timeseries/TimeseriesToXY.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/iterate-slots.js +60 -0
- package/esm/charts/xy-chart-adoption/timeseries/iterate-slots.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js +54 -18
- package/esm/charts/xy-chart-adoption/timeseries/transformer-data-to-xy.js.map +2 -2
- package/esm/charts/xy-chart-adoption/timeseries/types/timeseries.js +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/types/timeseries.js.map +7 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/render-series.js +42 -0
- package/esm/charts/xy-chart-adoption/timeseries/utils/render-series.js.map +7 -0
- package/esm/content/accordion/Accordion.css +14 -14
- package/esm/content/accordion/Accordion.sty.js +8 -8
- package/esm/content/accordion/Accordion.sty.js.map +1 -1
- package/esm/content/ai-loading-indicator/AiLoadingIndicator.css +12 -12
- package/esm/content/ai-loading-indicator/AiLoadingIndicator.sty.js +4 -4
- package/esm/content/ai-loading-indicator/AiLoadingIndicator.sty.js.map +1 -1
- package/esm/content/ai-response/AiResponse.css +5 -5
- package/esm/content/ai-response/AiResponse.sty.js +2 -2
- package/esm/content/ai-response/AiResponse.sty.js.map +1 -1
- package/esm/content/avatar/Avatar.css +13 -13
- package/esm/content/avatar/Avatar.sty.js +4 -4
- package/esm/content/avatar/Avatar.sty.js.map +1 -1
- package/esm/content/avatar-group/AvatarGroup.css +3 -3
- package/esm/content/avatar-group/AvatarGroup.sty.js +2 -2
- package/esm/content/avatar-group/AvatarGroup.sty.js.map +1 -1
- package/esm/content/chip/BaseChip.css +40 -40
- package/esm/content/chip/BaseChip.sty.js +5 -5
- package/esm/content/chip/BaseChip.sty.js.map +1 -1
- package/esm/content/chip/ChipContent.css +11 -11
- package/esm/content/chip/ChipContent.sty.js +2 -2
- package/esm/content/chip/ChipContent.sty.js.map +1 -1
- package/esm/content/chip/ChipDeleteButton.css +19 -19
- package/esm/content/chip/ChipDeleteButton.sty.js +4 -4
- package/esm/content/chip/ChipDeleteButton.sty.js.map +1 -1
- package/esm/content/chip/ChipKey.css +6 -6
- package/esm/content/chip/ChipKey.sty.js +1 -1
- package/esm/content/chip/ChipKey.sty.js.map +1 -1
- package/esm/content/chip/GroupedChip.css +3 -3
- package/esm/content/chip/GroupedChip.sty.js +3 -3
- package/esm/content/chip/GroupedChip.sty.js.map +1 -1
- package/esm/content/chip-group/ChipGroup.css +4 -4
- package/esm/content/chip-group/ChipGroup.sty.js +1 -1
- package/esm/content/chip-group/ChipGroup.sty.js.map +1 -1
- package/esm/content/chip-group/Control.css +4 -4
- package/esm/content/chip-group/Control.sty.js +1 -1
- package/esm/content/chip-group/Control.sty.js.map +1 -1
- package/esm/content/code-snippet/CodeHighlight.css +25 -25
- package/esm/content/code-snippet/CodeHighlight.sty.js +5 -5
- package/esm/content/code-snippet/CodeHighlight.sty.js.map +1 -1
- package/esm/content/code-snippet/CodeSnippet.css +5 -5
- package/esm/content/code-snippet/CodeSnippet.sty.js +2 -2
- package/esm/content/code-snippet/CodeSnippet.sty.js.map +1 -1
- package/esm/content/code-snippet/prism-dql-language.js +9 -5
- package/esm/content/code-snippet/prism-dql-language.js.map +2 -2
- package/esm/content/empty-state/EmptyState.css +28 -28
- package/esm/content/empty-state/EmptyState.sty.js +7 -7
- package/esm/content/empty-state/EmptyState.sty.js.map +1 -1
- package/esm/content/empty-state/slot-components/Footer.css +1 -1
- package/esm/content/empty-state/slot-components/Footer.sty.js +1 -1
- package/esm/content/empty-state/slot-components/Footer.sty.js.map +1 -1
- package/esm/content/empty-state/slot-components/Visual.css +3 -3
- package/esm/content/empty-state/slot-components/Visual.sty.js +1 -1
- package/esm/content/empty-state/slot-components/Visual.sty.js.map +1 -1
- package/esm/content/expandable-text/ExpandableText.css +7 -7
- package/esm/content/expandable-text/ExpandableText.sty.js +2 -2
- package/esm/content/expandable-text/ExpandableText.sty.js.map +1 -1
- package/esm/content/feature-highlight/FeatureHighlight.css +12 -12
- package/esm/content/feature-highlight/FeatureHighlight.sty.js +3 -3
- package/esm/content/feature-highlight/FeatureHighlight.sty.js.map +1 -1
- package/esm/content/health-indicator/styles.css +23 -23
- package/esm/content/health-indicator/styles.sty.js +1 -1
- package/esm/content/health-indicator/styles.sty.js.map +1 -1
- package/esm/content/information-overlay/InformationOverlay.css +25 -25
- package/esm/content/information-overlay/InformationOverlay.sty.js +5 -5
- package/esm/content/information-overlay/InformationOverlay.sty.js.map +1 -1
- package/esm/content/information-overlay/Trigger.js +2 -2
- package/esm/content/information-overlay/Trigger.js.map +2 -2
- package/esm/content/keyboard-shortcut/KeyboardShortcut.css +14 -14
- package/esm/content/keyboard-shortcut/KeyboardShortcut.sty.js +2 -2
- package/esm/content/keyboard-shortcut/KeyboardShortcut.sty.js.map +1 -1
- package/esm/content/markdown/Markdown.css +3 -3
- package/esm/content/markdown/Markdown.sty.js +1 -1
- package/esm/content/markdown/Markdown.sty.js.map +1 -1
- package/esm/content/markdown/transformers/typography-mapping.css +9 -9
- package/esm/content/markdown/transformers/typography-mapping.sty.js +6 -6
- package/esm/content/markdown/transformers/typography-mapping.sty.js.map +1 -1
- package/esm/content/microguide/Microguide.css +11 -11
- package/esm/content/microguide/Microguide.sty.js +7 -7
- package/esm/content/microguide/Microguide.sty.js.map +1 -1
- package/esm/content/progress/ProgressBar.css +71 -71
- package/esm/content/progress/ProgressBar.sty.js +5 -5
- package/esm/content/progress/ProgressBar.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarIcon.css +2 -2
- package/esm/content/progress/ProgressBarIcon.sty.js +1 -1
- package/esm/content/progress/ProgressBarIcon.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarLabel.css +3 -3
- package/esm/content/progress/ProgressBarLabel.sty.js +1 -1
- package/esm/content/progress/ProgressBarLabel.sty.js.map +1 -1
- package/esm/content/progress/ProgressBarValue.css +5 -5
- package/esm/content/progress/ProgressBarValue.sty.js +1 -1
- package/esm/content/progress/ProgressBarValue.sty.js.map +1 -1
- package/esm/content/progress/ProgressCircle.css +40 -40
- package/esm/content/progress/ProgressCircle.sty.js +5 -5
- package/esm/content/progress/ProgressCircle.sty.js.map +1 -1
- package/esm/content/shared-components/Visual.css +3 -3
- package/esm/content/shared-components/Visual.sty.js +1 -1
- package/esm/content/shared-components/Visual.sty.js.map +1 -1
- package/esm/content/skeleton/Skeleton.css +7 -7
- package/esm/content/skeleton/Skeleton.sty.js +5 -5
- package/esm/content/skeleton/Skeleton.sty.js.map +1 -1
- package/esm/content/terminology-overlay/TerminologyOverlay.css +4 -4
- package/esm/content/terminology-overlay/TerminologyOverlay.js +16 -4
- package/esm/content/terminology-overlay/TerminologyOverlay.js.map +2 -2
- package/esm/content/terminology-overlay/TerminologyOverlay.sty.js +1 -1
- package/esm/content/terminology-overlay/TerminologyOverlay.sty.js.map +1 -1
- package/esm/content/terminology-overlay/Trigger.js +5 -1
- package/esm/content/terminology-overlay/Trigger.js.map +2 -2
- package/esm/core/components/app-root/AppRoot.css +2 -2
- package/esm/core/components/app-root/AppRoot.sty.js +1 -1
- package/esm/core/components/app-root/AppRoot.sty.js.map +1 -1
- package/esm/core/components/visually-hidden/VisuallyHidden.css +1 -1
- package/esm/core/components/visually-hidden/VisuallyHidden.sty.js +1 -1
- package/esm/core/components/visually-hidden/VisuallyHidden.sty.js.map +1 -1
- package/esm/core/contexts/PermissionsContext.js +17 -0
- package/esm/core/contexts/PermissionsContext.js.map +7 -0
- package/esm/core/dql/dql-common.js +2 -0
- package/esm/core/dql/dql-common.js.map +2 -2
- package/esm/core/external-links.js +11 -0
- package/esm/core/external-links.js.map +7 -0
- package/esm/core/hooks/usePermissions.js +37 -0
- package/esm/core/hooks/usePermissions.js.map +7 -0
- package/esm/core/index.js +4 -0
- package/esm/core/index.js.map +2 -2
- package/esm/core/sdk/sdk-logger.js +2 -2
- package/esm/core/styles/defaultChartValues.css +1 -1
- package/esm/core/styles/defaultChartValues.sty.js +1 -1
- package/esm/core/styles/defaultChartValues.sty.js.map +1 -1
- package/esm/core/styles/focusRing.css +66 -66
- package/esm/core/styles/focusRing.sty.js +2 -2
- package/esm/core/styles/focusRing.sty.js.map +1 -1
- package/esm/core/styles/focusRingStatic.css +34 -34
- package/esm/core/styles/focusRingStatic.sty.js +1 -1
- package/esm/core/styles/focusRingStatic.sty.js.map +1 -1
- package/esm/core/styles/virtualFocus.css +2 -2
- package/esm/core/styles/virtualFocus.sty.js +1 -1
- package/esm/core/styles/virtualFocus.sty.js.map +1 -1
- package/esm/core/time/timeframeStore/actions/dateTimePicker.js +5 -6
- package/esm/core/time/timeframeStore/actions/dateTimePicker.js.map +2 -2
- package/esm/core/time/timeframeStore/actions/dateTimeRangePicker.js +5 -7
- package/esm/core/time/timeframeStore/actions/dateTimeRangePicker.js.map +2 -2
- package/esm/core/time/timeframeStore/actions/timeframeSelector.js +10 -10
- package/esm/core/time/timeframeStore/actions/timeframeSelector.js.map +2 -2
- package/esm/core/time/useDateTimeMessages.js +6 -6
- package/esm/core/time/useDateTimeMessages.js.map +2 -2
- package/esm/core/time/validation.js +2 -2
- package/esm/core/time/validation.js.map +2 -2
- package/esm/core/utils/colorUtils.css +60 -60
- package/esm/core/utils/colorUtils.sty.js +2 -2
- package/esm/core/utils/colorUtils.sty.js.map +1 -1
- package/esm/core/utils/permissionsQueryClient.js +15 -0
- package/esm/core/utils/permissionsQueryClient.js.map +7 -0
- package/esm/editors/base-code-editor/BaseCodeEditor.css +133 -133
- package/esm/editors/base-code-editor/BaseCodeEditor.sty.js +2 -2
- package/esm/editors/base-code-editor/BaseCodeEditor.sty.js.map +1 -1
- package/esm/editors/dql-editor/DQLEditor.js +124 -75
- package/esm/editors/dql-editor/DQLEditor.js.map +2 -2
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.css +28 -0
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.js +76 -0
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.js.map +7 -0
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js +11 -0
- package/esm/editors/dql-editor/actions-menu/ActionsMenu.sty.js.map +7 -0
- package/esm/editors/dql-editor/actions-menu/actions-menu-messages.js +22 -0
- package/esm/editors/dql-editor/actions-menu/actions-menu-messages.js.map +7 -0
- package/esm/editors/dql-editor/dql/DocumentationLink.js +2 -3
- package/esm/editors/dql-editor/dql/DocumentationLink.js.map +2 -2
- package/esm/editors/dql-editor/dql/SuggestionPart.css +1 -1
- package/esm/editors/dql-editor/dql/SuggestionPart.sty.js +1 -1
- package/esm/editors/dql-editor/dql/SuggestionPart.sty.js.map +1 -1
- package/esm/editors/dql-editor/dql/dql-language.js +25 -7
- package/esm/editors/dql-editor/dql/dql-language.js.map +2 -2
- package/esm/editors/dql-editor/dql/dql.js +8 -2
- package/esm/editors/dql-editor/dql/dql.js.map +2 -2
- package/esm/filters/filter-field/FilterField.css +117 -117
- package/esm/filters/filter-field/FilterField.js +89 -68
- package/esm/filters/filter-field/FilterField.js.map +2 -2
- package/esm/filters/filter-field/FilterField.sty.js +28 -28
- package/esm/filters/filter-field/FilterField.sty.js.map +1 -1
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.js +1 -0
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.js.map +2 -2
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
- package/esm/filters/filter-field/components/FilterFieldSuffixButtons.sty.js.map +1 -1
- package/esm/filters/filter-field/components/FilterStatement.css +13 -13
- package/esm/filters/filter-field/components/FilterStatement.sty.js +6 -6
- package/esm/filters/filter-field/components/FilterStatement.sty.js.map +1 -1
- package/esm/filters/filter-field/hooks/useSuggestions.js +7 -1
- package/esm/filters/filter-field/hooks/useSuggestions.js.map +2 -2
- package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.css +9 -9
- package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js +2 -2
- package/esm/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/Suggestion.css +24 -24
- package/esm/filters/filter-field/suggestions/Suggestion.js +10 -1
- package/esm/filters/filter-field/suggestions/Suggestion.js.map +2 -2
- package/esm/filters/filter-field/suggestions/Suggestion.sty.js +17 -15
- package/esm/filters/filter-field/suggestions/Suggestion.sty.js.map +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionDetails.css +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionDetails.sty.js +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionDetails.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroup.css +6 -6
- package/esm/filters/filter-field/suggestions/SuggestionGroup.sty.js +3 -3
- package/esm/filters/filter-field/suggestions/SuggestionGroup.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.css +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/SuggestionTips.css +7 -7
- package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js +5 -5
- package/esm/filters/filter-field/suggestions/SuggestionTips.sty.js.map +1 -1
- package/esm/filters/filter-field/suggestions/Suggestions.js +1 -1
- package/esm/filters/filter-field/suggestions/Suggestions.js.map +2 -2
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
- package/esm/filters/filter-field/suggestions/SuggestionsOverlay.sty.js.map +1 -1
- package/esm/filters/filter-field/utils/get-suggestion-transaction.js +1 -1
- package/esm/filters/filter-field/utils/get-suggestion-transaction.js.map +2 -2
- package/esm/filters/filter-field/utils/suggestions-utils/get-suggestions.js +15 -18
- package/esm/filters/filter-field/utils/suggestions-utils/get-suggestions.js.map +2 -2
- package/esm/filters/filter-field/utils/suggestions-utils/operator-suggestions.js +4 -2
- package/esm/filters/filter-field/utils/suggestions-utils/operator-suggestions.js.map +2 -2
- package/esm/filters/filter-field/utils/suggestions-utils/suggestion-matching.js +46 -0
- package/esm/filters/filter-field/utils/suggestions-utils/suggestion-matching.js.map +7 -0
- package/esm/filters/segment-selector/SegmentSelector.css +4 -4
- package/esm/filters/segment-selector/SegmentSelector.js +4 -4
- package/esm/filters/segment-selector/SegmentSelector.js.map +2 -2
- package/esm/filters/segment-selector/SegmentSelector.sty.js +4 -4
- package/esm/filters/segment-selector/SegmentSelector.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/EmptySegments.css +1 -1
- package/esm/filters/segment-selector/parts/EmptySegments.js +7 -3
- package/esm/filters/segment-selector/parts/EmptySegments.js.map +2 -2
- package/esm/filters/segment-selector/parts/EmptySegments.sty.js +1 -1
- package/esm/filters/segment-selector/parts/EmptySegments.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/Overlay.css +8 -8
- package/esm/filters/segment-selector/parts/Overlay.js +8 -4
- package/esm/filters/segment-selector/parts/Overlay.js.map +2 -2
- package/esm/filters/segment-selector/parts/Overlay.sty.js +8 -8
- package/esm/filters/segment-selector/parts/Overlay.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/SegmentFooter.js +7 -3
- package/esm/filters/segment-selector/parts/SegmentFooter.js.map +2 -2
- package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.css +4 -4
- package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js +4 -4
- package/esm/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/noAccessRights/CopyPermissionsButton.js +3 -5
- package/esm/filters/segment-selector/parts/noAccessRights/CopyPermissionsButton.js.map +2 -2
- package/esm/filters/segment-selector/parts/noAccessRights/NoAccessWithoutSelection.js +2 -1
- package/esm/filters/segment-selector/parts/noAccessRights/NoAccessWithoutSelection.js.map +2 -2
- package/esm/filters/segment-selector/parts/segmentManagementHref.js +8 -0
- package/esm/filters/segment-selector/parts/segmentManagementHref.js.map +7 -0
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +32 -32
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js +10 -10
- package/esm/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.css +22 -22
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.js +8 -4
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.js.map +2 -2
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js +7 -7
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.css +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js.map +1 -1
- package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js +39 -14
- package/esm/filters/segment-selector/parts/selectionBar/ValueSelect.js.map +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.css +5 -1
- package/esm/filters/timeframe-selector/TimeframeSelector.js +3 -10
- package/esm/filters/timeframe-selector/TimeframeSelector.js.map +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.sty.js +4 -2
- package/esm/filters/timeframe-selector/TimeframeSelector.sty.js.map +2 -2
- package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js +5 -3
- package/esm/filters/timeframe-selector/TimeframeSelectorRoot.js.map +2 -2
- package/esm/filters/timeframe-selector/components/TimeframeSelectorTooltip.js +1 -1
- package/esm/filters/timeframe-selector/components/TimeframeSelectorTooltip.js.map +2 -2
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.css +4 -4
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.js +4 -0
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.js.map +2 -2
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js +3 -3
- package/esm/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.css +4 -4
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlayFooter.js +6 -7
- package/esm/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlayFooter.js.map +2 -2
- package/esm/filters/timeframe-selector/components/presets/Presets.css +27 -27
- package/esm/filters/timeframe-selector/components/presets/Presets.sty.js +11 -11
- package/esm/filters/timeframe-selector/components/presets/Presets.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/components/stepper/StepperButton.js +1 -1
- package/esm/filters/timeframe-selector/components/stepper/StepperButton.js.map +2 -2
- package/esm/filters/timeframe-selector/components/trigger/Trigger.css +11 -11
- package/esm/filters/timeframe-selector/components/trigger/Trigger.js +1 -0
- package/esm/filters/timeframe-selector/components/trigger/Trigger.js.map +2 -2
- package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js +4 -4
- package/esm/filters/timeframe-selector/components/trigger/Trigger.sty.js.map +1 -1
- package/esm/filters/timeframe-selector/utils/getTimeframeDisplayValueProps.js.map +2 -2
- package/esm/forms/_base-input/BaseInput.css +99 -99
- package/esm/forms/_base-input/BaseInput.js +35 -20
- package/esm/forms/_base-input/BaseInput.js.map +2 -2
- package/esm/forms/_base-input/BaseInput.sty.js +12 -12
- package/esm/forms/_base-input/BaseInput.sty.js.map +2 -2
- package/esm/forms/_base-input/BaseInputContent.css +7 -7
- package/esm/forms/_base-input/BaseInputContent.js +2 -0
- package/esm/forms/_base-input/BaseInputContent.js.map +2 -2
- package/esm/forms/_base-input/BaseInputContent.sty.js +1 -1
- package/esm/forms/_base-input/BaseInputContent.sty.js.map +1 -1
- package/esm/forms/_base-input/ClearButton.js +25 -0
- package/esm/forms/_base-input/ClearButton.js.map +7 -0
- package/esm/forms/calendar/Calendar.css +47 -47
- package/esm/forms/calendar/Calendar.sty.js +11 -11
- package/esm/forms/calendar/Calendar.sty.js.map +1 -1
- package/esm/forms/calendar/components/CalendarItem.css +7 -7
- package/esm/forms/calendar/components/CalendarItem.sty.js +4 -4
- package/esm/forms/calendar/components/CalendarItem.sty.js.map +1 -1
- package/esm/forms/calendar/components/CalendarOutlineIcon.css +8 -8
- package/esm/forms/calendar/components/CalendarOutlineIcon.sty.js +5 -5
- package/esm/forms/calendar/components/CalendarOutlineIcon.sty.js.map +1 -1
- package/esm/forms/calendar/variables.sty.js +2 -2
- package/esm/forms/calendar/variables.sty.js.map +1 -1
- package/esm/forms/checkbox/Checkbox.css +20 -20
- package/esm/forms/checkbox/Checkbox.sty.js +3 -3
- package/esm/forms/checkbox/Checkbox.sty.js.map +1 -1
- package/esm/forms/date-time-picker/DateTimePicker.css +75 -75
- package/esm/forms/date-time-picker/DateTimePicker.sty.js +6 -6
- package/esm/forms/date-time-picker/DateTimePicker.sty.js.map +1 -1
- package/esm/forms/date-time-picker/DateTimePickerRoot.js +4 -0
- package/esm/forms/date-time-picker/DateTimePickerRoot.js.map +2 -2
- package/esm/forms/date-time-picker/hooks/useDateTimePicker.js +4 -5
- package/esm/forms/date-time-picker/hooks/useDateTimePicker.js.map +2 -2
- package/esm/forms/date-time-picker/utils/focusDateTimeInput.js +23 -0
- package/esm/forms/date-time-picker/utils/focusDateTimeInput.js.map +2 -2
- package/esm/forms/date-time-range-picker/DateRangeSelector.css +1 -1
- package/esm/forms/date-time-range-picker/DateRangeSelector.sty.js +1 -1
- package/esm/forms/date-time-range-picker/DateRangeSelector.sty.js.map +1 -1
- package/esm/forms/date-time-range-picker/DateTimeInput.css +11 -11
- package/esm/forms/date-time-range-picker/DateTimeInput.js +4 -0
- package/esm/forms/date-time-range-picker/DateTimeInput.js.map +2 -2
- package/esm/forms/date-time-range-picker/DateTimeInput.sty.js +3 -3
- package/esm/forms/date-time-range-picker/DateTimeInput.sty.js.map +1 -1
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.css +27 -27
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.js +3 -7
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.js.map +2 -2
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.sty.js +4 -4
- package/esm/forms/date-time-range-picker/DateTimeRangePicker.sty.js.map +1 -1
- package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js +24 -8
- package/esm/forms/date-time-range-picker/DateTimeRangePickerRoot.js.map +2 -2
- package/esm/forms/date-time-range-picker/helpers.js +56 -17
- package/esm/forms/date-time-range-picker/helpers.js.map +2 -2
- package/esm/forms/date-time-range-picker/hooks/useDateTimeInput.js +95 -58
- package/esm/forms/date-time-range-picker/hooks/useDateTimeInput.js.map +3 -3
- package/esm/forms/date-time-range-picker/hooks/useDateTimeRangePicker.js +60 -19
- package/esm/forms/date-time-range-picker/hooks/useDateTimeRangePicker.js.map +2 -2
- package/esm/forms/date-time-range-picker/selection-copy-helpers.js +53 -24
- package/esm/forms/date-time-range-picker/selection-copy-helpers.js.map +2 -2
- package/esm/forms/date-time-range-picker/selection-helpers.js +146 -48
- package/esm/forms/date-time-range-picker/selection-helpers.js.map +2 -2
- package/esm/forms/date-time-range-picker/useSelectionInteractionHandlers.js +5 -47
- package/esm/forms/date-time-range-picker/useSelectionInteractionHandlers.js.map +2 -2
- package/esm/forms/forms-core/components/field-set/FieldSet.css +2 -2
- package/esm/forms/forms-core/components/field-set/FieldSet.sty.js +2 -2
- package/esm/forms/forms-core/components/field-set/FieldSet.sty.js.map +1 -1
- package/esm/forms/forms-core/components/form-field/FormField.sty.js +1 -1
- package/esm/forms/forms-core/components/form-field/FormField.sty.js.map +1 -1
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js.map +1 -1
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
- package/esm/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js.map +1 -1
- package/esm/forms/forms-core/components/label/Label.css +5 -5
- package/esm/forms/forms-core/components/label/Label.sty.js +2 -2
- package/esm/forms/forms-core/components/label/Label.sty.js.map +1 -1
- package/esm/forms/forms-core/time/helpers.js +1 -1
- package/esm/forms/forms-core/time/helpers.js.map +2 -2
- package/esm/forms/hooks/useAutofillEvent.css +8 -8
- package/esm/forms/hooks/useAutofillEvent.sty.js +4 -4
- package/esm/forms/hooks/useAutofillEvent.sty.js.map +1 -1
- package/esm/forms/index.js.map +2 -2
- package/esm/forms/number-input/NumberInputBase.js +2 -2
- package/esm/forms/number-input/NumberInputBase.js.map +2 -2
- package/esm/forms/number-input-v2/NumberInput.js +3 -3
- package/esm/forms/number-input-v2/NumberInput.js.map +2 -2
- package/esm/forms/radio/styles.css +18 -18
- package/esm/forms/radio/styles.sty.js +8 -8
- package/esm/forms/radio/styles.sty.js.map +1 -1
- package/esm/forms/search-input/SearchInput.css +4 -1
- package/esm/forms/search-input/SearchInput.js +35 -3
- package/esm/forms/search-input/SearchInput.js.map +2 -2
- package/esm/forms/search-input/SearchInput.sty.js +2 -1
- package/esm/forms/search-input/SearchInput.sty.js.map +2 -2
- package/esm/forms/search-input/Stepper.css +21 -0
- package/esm/forms/search-input/Stepper.js +92 -0
- package/esm/forms/search-input/Stepper.js.map +7 -0
- package/esm/forms/search-input/Stepper.sty.js +16 -0
- package/esm/forms/search-input/Stepper.sty.js.map +7 -0
- package/esm/forms/select/Select.js +6 -2
- package/esm/forms/select/Select.js.map +2 -2
- package/esm/forms/select/components/Control.js +1 -0
- package/esm/forms/select/components/Control.js.map +2 -2
- package/esm/forms/select/components/MenuList.js +1 -0
- package/esm/forms/select/components/MenuList.js.map +2 -2
- package/esm/forms/select/components/Option.js +2 -0
- package/esm/forms/select/components/Option.js.map +2 -2
- package/esm/forms/select/hooks/use-select-options.js +0 -3
- package/esm/forms/select/hooks/use-select-options.js.map +2 -2
- package/esm/forms/select/styles/Select.css +47 -47
- package/esm/forms/select/styles/Select.sty.js +24 -24
- package/esm/forms/select/styles/Select.sty.js.map +1 -1
- package/esm/forms/spin-buttons/SpinButton.css +8 -8
- package/esm/forms/spin-buttons/SpinButton.sty.js +2 -2
- package/esm/forms/spin-buttons/SpinButton.sty.js.map +1 -1
- package/esm/forms/spin-buttons/spin-button-group/hooks/useNavigateSpinButton.js +1 -1
- package/esm/forms/spin-buttons/spin-button-group/hooks/useNavigateSpinButton.js.map +2 -2
- package/esm/forms/switch/Switch.css +36 -36
- package/esm/forms/switch/Switch.sty.js +5 -5
- package/esm/forms/switch/Switch.sty.js.map +1 -1
- package/esm/forms/text-area/TextArea.css +59 -59
- package/esm/forms/text-area/TextArea.sty.js +3 -3
- package/esm/forms/text-area/TextArea.sty.js.map +1 -1
- package/esm/forms/toggle-button-group/styles.css +58 -58
- package/esm/forms/toggle-button-group/styles.sty.js +15 -15
- package/esm/forms/toggle-button-group/styles.sty.js.map +1 -1
- package/esm/layouts/app-header/AppHeader.css +1 -1
- package/esm/layouts/app-header/AppHeader.sty.js +1 -1
- package/esm/layouts/app-header/AppHeader.sty.js.map +1 -1
- package/esm/layouts/app-header/Navigation.css +9 -9
- package/esm/layouts/app-header/Navigation.sty.js +5 -5
- package/esm/layouts/app-header/Navigation.sty.js.map +1 -1
- package/esm/layouts/app-header/action-group/ActionButton.css +17 -17
- package/esm/layouts/app-header/action-group/ActionButton.sty.js +3 -3
- package/esm/layouts/app-header/action-group/ActionButton.sty.js.map +1 -1
- package/esm/layouts/app-header/action-group/ActionGroup.css +1 -1
- package/esm/layouts/app-header/action-group/ActionGroup.sty.js +1 -1
- package/esm/layouts/app-header/action-group/ActionGroup.sty.js.map +1 -1
- package/esm/layouts/app-header/action-group/NavItem.css +4 -4
- package/esm/layouts/app-header/action-group/NavItem.sty.js +3 -3
- package/esm/layouts/app-header/action-group/NavItem.sty.js.map +1 -1
- package/esm/layouts/app-header/app-icon/AppIcon.css +4 -4
- package/esm/layouts/app-header/app-icon/AppIcon.sty.js +1 -1
- package/esm/layouts/app-header/app-icon/AppIcon.sty.js.map +1 -1
- package/esm/layouts/container/Container.css +5 -5
- package/esm/layouts/container/Container.sty.js +1 -1
- package/esm/layouts/container/Container.sty.js.map +1 -1
- package/esm/layouts/divider/Divider.css +6 -6
- package/esm/layouts/divider/Divider.sty.js +1 -1
- package/esm/layouts/divider/Divider.sty.js.map +1 -1
- package/esm/layouts/input-group/InputGroup.css +23 -23
- package/esm/layouts/input-group/InputGroup.sty.js +1 -1
- package/esm/layouts/input-group/InputGroup.sty.js.map +1 -1
- package/esm/layouts/page/DetailView.css +3 -3
- package/esm/layouts/page/DetailView.sty.js +2 -2
- package/esm/layouts/page/DetailView.sty.js.map +1 -1
- package/esm/layouts/page/Header.css +2 -2
- package/esm/layouts/page/Header.sty.js +1 -1
- package/esm/layouts/page/Header.sty.js.map +1 -1
- package/esm/layouts/page/Main.css +6 -6
- package/esm/layouts/page/Main.sty.js +4 -4
- package/esm/layouts/page/Main.sty.js.map +1 -1
- package/esm/layouts/page/Page.css +2 -2
- package/esm/layouts/page/Page.sty.js +1 -1
- package/esm/layouts/page/Page.sty.js.map +1 -1
- package/esm/layouts/page/Sidebar.css +22 -22
- package/esm/layouts/page/Sidebar.sty.js +8 -8
- package/esm/layouts/page/Sidebar.sty.js.map +1 -1
- package/esm/layouts/page/panel.css +18 -18
- package/esm/layouts/page/panel.sty.js +10 -10
- package/esm/layouts/page/panel.sty.js.map +1 -1
- package/esm/layouts/page-layout/PageLayout.css +10 -10
- package/esm/layouts/page-layout/PageLayout.sty.js +6 -6
- package/esm/layouts/page-layout/PageLayout.sty.js.map +1 -1
- package/esm/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
- package/esm/layouts/page-layout/details-layout/DetailsControlBar.sty.js +3 -3
- package/esm/layouts/page-layout/details-layout/DetailsControlBar.sty.js.map +1 -1
- package/esm/layouts/page-layout/details-layout/DetailsLayout.css +6 -6
- package/esm/layouts/page-layout/details-layout/DetailsLayout.sty.js +5 -5
- package/esm/layouts/page-layout/details-layout/DetailsLayout.sty.js.map +1 -1
- package/esm/layouts/page-layout/details-layout/Overlay.css +21 -21
- package/esm/layouts/page-layout/details-layout/Overlay.sty.js +4 -4
- package/esm/layouts/page-layout/details-layout/Overlay.sty.js.map +1 -1
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.css +38 -38
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +15 -15
- package/esm/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js.map +1 -1
- package/esm/layouts/split-layout/SplitLayout.css +17 -17
- package/esm/layouts/split-layout/SplitLayout.sty.js +7 -7
- package/esm/layouts/split-layout/SplitLayout.sty.js.map +1 -1
- package/esm/layouts/surface/Surface.css +39 -39
- package/esm/layouts/surface/Surface.sty.js +2 -2
- package/esm/layouts/surface/Surface.sty.js.map +1 -1
- package/esm/layouts/surface/variables.sty.js +1 -1
- package/esm/layouts/surface/variables.sty.js.map +1 -1
- package/esm/layouts/title-bar/TitleBar.css +5 -5
- package/esm/layouts/title-bar/TitleBar.sty.js +4 -4
- package/esm/layouts/title-bar/TitleBar.sty.js.map +1 -1
- package/esm/navigation/breadcrumbs/Breadcrumbs.css +9 -9
- package/esm/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
- package/esm/navigation/breadcrumbs/Breadcrumbs.sty.js.map +1 -1
- package/esm/navigation/menu/Content.js +0 -2
- package/esm/navigation/menu/Content.js.map +2 -2
- package/esm/navigation/menu/ItemTooltip.js.map +2 -2
- package/esm/navigation/menu/Menu.css +15 -15
- package/esm/navigation/menu/Menu.js +2 -15
- package/esm/navigation/menu/Menu.js.map +2 -2
- package/esm/navigation/menu/Menu.sty.js +8 -8
- package/esm/navigation/menu/Menu.sty.js.map +1 -1
- package/esm/navigation/menu/Sub.js +2 -15
- package/esm/navigation/menu/Sub.js.map +2 -2
- package/esm/navigation/menu/hooks/useMenuAutoClose.js +33 -0
- package/esm/navigation/menu/hooks/useMenuAutoClose.js.map +7 -0
- package/esm/navigation/tabs/RenderTab.css +14 -14
- package/esm/navigation/tabs/RenderTab.sty.js +3 -3
- package/esm/navigation/tabs/RenderTab.sty.js.map +1 -1
- package/esm/navigation/tabs/TabPanel.css +3 -3
- package/esm/navigation/tabs/TabPanel.sty.js +2 -2
- package/esm/navigation/tabs/TabPanel.sty.js.map +1 -1
- package/esm/navigation/tabs/Tabs.css +9 -9
- package/esm/navigation/tabs/Tabs.sty.js +5 -5
- package/esm/navigation/tabs/Tabs.sty.js.map +1 -1
- package/esm/notifications/notification-settings/NotificationSettings.css +1 -1
- package/esm/notifications/notification-settings/NotificationSettings.sty.js +1 -1
- package/esm/notifications/notification-settings/NotificationSettings.sty.js.map +1 -1
- package/esm/notifications/toast/Toast.css +5 -5
- package/esm/notifications/toast/Toast.sty.js +4 -4
- package/esm/notifications/toast/Toast.sty.js.map +1 -1
- package/esm/notifications/toast/ToastContainer.css +17 -17
- package/esm/notifications/toast/ToastContainer.sty.js +1 -1
- package/esm/notifications/toast/ToastContainer.sty.js.map +1 -1
- package/esm/overlays/drawer/Drawer.css +9 -9
- package/esm/overlays/drawer/Drawer.sty.js +5 -5
- package/esm/overlays/drawer/Drawer.sty.js.map +1 -1
- package/esm/overlays/hooks/useOverlay.js +21 -0
- package/esm/overlays/hooks/useOverlay.js.map +2 -2
- package/esm/overlays/modal/Modal.css +7 -7
- package/esm/overlays/modal/Modal.sty.js +4 -4
- package/esm/overlays/modal/Modal.sty.js.map +1 -1
- package/esm/overlays/overlay/Overlay.css +1 -1
- package/esm/overlays/overlay/Overlay.sty.js +1 -1
- package/esm/overlays/overlay/Overlay.sty.js.map +1 -1
- package/esm/overlays/sheet/Sheet.css +6 -6
- package/esm/overlays/sheet/Sheet.sty.js +5 -5
- package/esm/overlays/sheet/Sheet.sty.js.map +1 -1
- package/esm/overlays/tooltip/tooltip.css +18 -18
- package/esm/overlays/tooltip/tooltip.sty.js +3 -3
- package/esm/overlays/tooltip/tooltip.sty.js.map +1 -1
- package/esm/styles/colorUtils.css +60 -60
- package/esm/styles/colorUtils.sty.js +2 -2
- package/esm/styles/colorUtils.sty.js.map +1 -1
- package/esm/styles/container.css +47 -47
- package/esm/styles/container.sty.js +2 -2
- package/esm/styles/container.sty.js.map +1 -1
- package/esm/styles/ellipsis.css +1 -1
- package/esm/styles/ellipsis.sty.js +1 -1
- package/esm/styles/ellipsis.sty.js.map +1 -1
- package/esm/styles/field.css +290 -290
- package/esm/styles/field.sty.js +2 -2
- package/esm/styles/field.sty.js.map +1 -1
- package/esm/styles/screen-reader-only.css +1 -1
- package/esm/styles/screen-reader-only.sty.js +1 -1
- package/esm/styles/screen-reader-only.sty.js.map +1 -1
- package/esm/styles/sprinkles.css +262 -262
- package/esm/styles/sprinkles.sty.js +1 -1
- package/esm/styles/sprinkles.sty.js.map +1 -1
- package/esm/styles/textStyle.css +8 -8
- package/esm/styles/textStyle.sty.js +1 -1
- package/esm/styles/textStyle.sty.js.map +1 -1
- package/esm/tables/DataTable/DataTable.css +2 -2
- package/esm/tables/DataTable/DataTable.sty.js +7 -7
- package/esm/tables/DataTable/DataTable.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Alignment.css +6 -6
- package/esm/tables/DataTable/components/Alignment.sty.js +2 -2
- package/esm/tables/DataTable/components/Alignment.sty.js.map +1 -1
- package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.css +6 -6
- package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js +3 -3
- package/esm/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableBody.css +2 -2
- package/esm/tables/DataTable/components/DataTableBody.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableBody.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableCell.css +99 -99
- package/esm/tables/DataTable/components/DataTableCell.sty.js +5 -5
- package/esm/tables/DataTable/components/DataTableCell.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableDefaultCell.css +21 -21
- package/esm/tables/DataTable/components/DataTableDefaultCell.sty.js +1 -1
- package/esm/tables/DataTable/components/DataTableDefaultCell.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableEmptyState.css +2 -2
- package/esm/tables/DataTable/components/DataTableEmptyState.sty.js +1 -1
- package/esm/tables/DataTable/components/DataTableEmptyState.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableHeader.css +2 -2
- package/esm/tables/DataTable/components/DataTableHeader.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableHeader.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableHeaderCell.css +64 -64
- package/esm/tables/DataTable/components/DataTableHeaderCell.js +4 -3
- package/esm/tables/DataTable/components/DataTableHeaderCell.js.map +2 -2
- package/esm/tables/DataTable/components/DataTableHeaderCell.sty.js +23 -23
- package/esm/tables/DataTable/components/DataTableHeaderCell.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableRow.css +13 -13
- package/esm/tables/DataTable/components/DataTableRow.sty.js +1 -1
- package/esm/tables/DataTable/components/DataTableRow.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableScrollShadow.css +10 -10
- package/esm/tables/DataTable/components/DataTableScrollShadow.sty.js +2 -2
- package/esm/tables/DataTable/components/DataTableScrollShadow.sty.js.map +1 -1
- package/esm/tables/DataTable/components/DataTableVirtualizationContainer.css +20 -20
- package/esm/tables/DataTable/components/DataTableVirtualizationContainer.sty.js +1 -1
- package/esm/tables/DataTable/components/DataTableVirtualizationContainer.sty.js.map +1 -1
- package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.css +5 -5
- package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js +2 -2
- package/esm/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.css +7 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnOrderSettings.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js +21 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +5 -5
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +7 -7
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +5 -5
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js.map +1 -1
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js +8 -0
- package/esm/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js.map +2 -2
- package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.css +3 -3
- package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js +2 -2
- package/esm/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.css +8 -8
- package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js +4 -4
- package/esm/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.css +3 -3
- package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js +1 -1
- package/esm/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js.map +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.css +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js +1 -1
- package/esm/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js.map +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.css +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js.map +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.css +3 -3
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js +2 -2
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js.map +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.css +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js.map +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.css +4 -4
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js +1 -1
- package/esm/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js.map +1 -1
- package/esm/tables/DataTable/features/LoadingState/LoadingState.css +2 -2
- package/esm/tables/DataTable/features/LoadingState/LoadingState.sty.js +2 -2
- package/esm/tables/DataTable/features/LoadingState/LoadingState.sty.js.map +1 -1
- package/esm/tables/DataTable/features/MeterBarChart/MeterBarChart.js +8 -2
- package/esm/tables/DataTable/features/MeterBarChart/MeterBarChart.js.map +2 -2
- package/esm/tables/DataTable/features/RowDetails/RowDetails.css +13 -13
- package/esm/tables/DataTable/features/RowDetails/RowDetails.sty.js +3 -3
- package/esm/tables/DataTable/features/RowDetails/RowDetails.sty.js.map +1 -1
- package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.css +14 -14
- package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
- package/esm/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js.map +1 -1
- package/esm/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
- package/esm/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
- package/esm/tables/DataTable/features/RowOrder/RowOrder.sty.js.map +1 -1
- package/esm/tables/DataTable/features/Sorting/Sorting.css +34 -34
- package/esm/tables/DataTable/features/Sorting/Sorting.sty.js +3 -3
- package/esm/tables/DataTable/features/Sorting/Sorting.sty.js.map +1 -1
- package/esm/tables/DataTable/features/SubRows/SubRows.css +19 -19
- package/esm/tables/DataTable/features/SubRows/SubRows.sty.js +5 -5
- package/esm/tables/DataTable/features/SubRows/SubRows.sty.js.map +1 -1
- package/esm/tables/DataTable/features/Thresholds/Thresholds.css +2 -2
- package/esm/tables/DataTable/features/Thresholds/Thresholds.sty.js +3 -3
- package/esm/tables/DataTable/features/Thresholds/Thresholds.sty.js.map +1 -1
- package/esm/tables/DataTable/features/UserActions/RowActions.css +4 -4
- package/esm/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
- package/esm/tables/DataTable/features/UserActions/RowActions.sty.js.map +1 -1
- package/esm/tables/DataTable/features/UserActions/UserActions.css +18 -18
- package/esm/tables/DataTable/features/UserActions/UserActions.sty.js +2 -2
- package/esm/tables/DataTable/features/UserActions/UserActions.sty.js.map +1 -1
- package/esm/tables/DataTable/hooks/useHeaderCellInteractions.js +38 -15
- package/esm/tables/DataTable/hooks/useHeaderCellInteractions.js.map +2 -2
- package/esm/tables/SimpleTable/SimpleTable.css +27 -27
- package/esm/tables/SimpleTable/SimpleTable.sty.js +1 -1
- package/esm/tables/SimpleTable/SimpleTable.sty.js.map +1 -1
- package/esm/tables/index.js.map +2 -2
- package/esm/typography/block-quote/Blockquote.css +2 -2
- package/esm/typography/block-quote/Blockquote.sty.js +1 -1
- package/esm/typography/block-quote/Blockquote.sty.js.map +1 -1
- package/esm/typography/code/Code.css +1 -1
- package/esm/typography/code/Code.sty.js +1 -1
- package/esm/typography/code/Code.sty.js.map +1 -1
- package/esm/typography/emphasis/Emphasis.css +1 -1
- package/esm/typography/emphasis/Emphasis.sty.js +1 -1
- package/esm/typography/emphasis/Emphasis.sty.js.map +1 -1
- package/esm/typography/external-link/ExternalLink.css +6 -6
- package/esm/typography/external-link/ExternalLink.sty.js +1 -1
- package/esm/typography/external-link/ExternalLink.sty.js.map +1 -1
- package/esm/typography/heading/Heading.css +7 -7
- package/esm/typography/heading/Heading.sty.js +1 -1
- package/esm/typography/heading/Heading.sty.js.map +1 -1
- package/esm/typography/highlight/Highlight.css +2 -2
- package/esm/typography/highlight/Highlight.sty.js +1 -1
- package/esm/typography/highlight/Highlight.sty.js.map +1 -1
- package/esm/typography/link/Link.css +4 -4
- package/esm/typography/link/Link.sty.js +1 -1
- package/esm/typography/link/Link.sty.js.map +1 -1
- package/esm/typography/list/List.css +4 -4
- package/esm/typography/list/List.sty.js +2 -2
- package/esm/typography/list/List.sty.js.map +1 -1
- package/esm/typography/paragraph/Paragraph.css +3 -3
- package/esm/typography/paragraph/Paragraph.sty.js +1 -1
- package/esm/typography/paragraph/Paragraph.sty.js.map +1 -1
- package/esm/typography/strikethrough/Strikethrough.css +1 -1
- package/esm/typography/strikethrough/Strikethrough.sty.js +1 -1
- package/esm/typography/strikethrough/Strikethrough.sty.js.map +1 -1
- package/esm/typography/strong/Strong.css +1 -1
- package/esm/typography/strong/Strong.sty.js +1 -1
- package/esm/typography/strong/Strong.sty.js.map +1 -1
- package/esm/typography/text/Text.css +3 -3
- package/esm/typography/text/Text.sty.js +1 -1
- package/esm/typography/text/Text.sty.js.map +1 -1
- package/esm/typography/text-ellipsis/TextEllipsis.css +6 -6
- package/esm/typography/text-ellipsis/TextEllipsis.js +2 -6
- package/esm/typography/text-ellipsis/TextEllipsis.js.map +2 -2
- package/esm/typography/text-ellipsis/TextEllipsis.sty.js +2 -2
- package/esm/typography/text-ellipsis/TextEllipsis.sty.js.map +1 -1
- package/filters/filter-field/FilterField.css +117 -117
- package/filters/filter-field/FilterField.js +89 -68
- package/filters/filter-field/FilterField.sty.js +28 -28
- package/filters/filter-field/components/FilterFieldSuffixButtons.css +3 -3
- package/filters/filter-field/components/FilterFieldSuffixButtons.js +1 -0
- package/filters/filter-field/components/FilterFieldSuffixButtons.sty.js +3 -3
- package/filters/filter-field/components/FilterStatement.css +13 -13
- package/filters/filter-field/components/FilterStatement.sty.js +6 -6
- package/filters/filter-field/hooks/useSuggestions.js +7 -1
- package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.css +9 -9
- package/filters/filter-field/suggestions/RecentPinnedSuggestionItem.sty.js +2 -2
- package/filters/filter-field/suggestions/Suggestion.css +24 -24
- package/filters/filter-field/suggestions/Suggestion.js +9 -1
- package/filters/filter-field/suggestions/Suggestion.sty.d.ts +7 -0
- package/filters/filter-field/suggestions/Suggestion.sty.js +17 -15
- package/filters/filter-field/suggestions/SuggestionDetails.css +2 -2
- package/filters/filter-field/suggestions/SuggestionDetails.sty.js +2 -2
- package/filters/filter-field/suggestions/SuggestionGroup.css +6 -6
- package/filters/filter-field/suggestions/SuggestionGroup.sty.js +3 -3
- package/filters/filter-field/suggestions/SuggestionGroupLabel.css +1 -1
- package/filters/filter-field/suggestions/SuggestionGroupLabel.sty.js +1 -1
- package/filters/filter-field/suggestions/SuggestionTips.css +7 -7
- package/filters/filter-field/suggestions/SuggestionTips.sty.js +5 -5
- package/filters/filter-field/suggestions/Suggestions.js +1 -1
- package/filters/filter-field/suggestions/SuggestionsOverlay.css +7 -7
- package/filters/filter-field/suggestions/SuggestionsOverlay.sty.js +5 -5
- package/filters/filter-field/utils/get-suggestion-transaction.js +1 -1
- package/filters/filter-field/utils/suggestions-utils/get-suggestions.d.ts +8 -1
- package/filters/filter-field/utils/suggestions-utils/get-suggestions.js +11 -18
- package/filters/filter-field/utils/suggestions-utils/operator-suggestions.js +4 -2
- package/filters/filter-field/utils/suggestions-utils/suggestion-matching.d.ts +43 -0
- package/filters/filter-field/utils/suggestions-utils/suggestion-matching.js +64 -0
- package/filters/segment-selector/SegmentSelector.css +4 -4
- package/filters/segment-selector/SegmentSelector.js +4 -4
- package/filters/segment-selector/SegmentSelector.sty.js +4 -4
- package/filters/segment-selector/parts/EmptySegments.css +1 -1
- package/filters/segment-selector/parts/EmptySegments.js +7 -3
- package/filters/segment-selector/parts/EmptySegments.sty.js +1 -1
- package/filters/segment-selector/parts/Overlay.css +8 -8
- package/filters/segment-selector/parts/Overlay.js +8 -4
- package/filters/segment-selector/parts/Overlay.sty.js +8 -8
- package/filters/segment-selector/parts/SegmentFooter.js +7 -3
- package/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.css +4 -4
- package/filters/segment-selector/parts/ShowMorePanel/ShowMorePanel.sty.js +4 -4
- package/filters/segment-selector/parts/noAccessRights/CopyPermissionsButton.js +3 -5
- package/filters/segment-selector/parts/noAccessRights/NoAccessWithoutSelection.js +2 -1
- package/filters/segment-selector/parts/segmentManagementHref.d.ts +2 -0
- package/filters/segment-selector/parts/segmentManagementHref.js +26 -0
- package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.css +32 -32
- package/filters/segment-selector/parts/segmentsPresets/SegmentsPresets.sty.js +10 -10
- package/filters/segment-selector/parts/selectionBar/SegmentSelect.css +22 -22
- package/filters/segment-selector/parts/selectionBar/SegmentSelect.js +8 -4
- package/filters/segment-selector/parts/selectionBar/SegmentSelect.sty.js +7 -7
- package/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.css +1 -1
- package/filters/segment-selector/parts/selectionBar/SegmentSelectorTrigger.sty.js +1 -1
- package/filters/segment-selector/parts/selectionBar/ValueSelect.js +39 -14
- package/filters/timeframe-selector/TimeframeSelector.css +5 -1
- package/filters/timeframe-selector/TimeframeSelector.js +6 -13
- package/filters/timeframe-selector/TimeframeSelector.sty.d.ts +1 -0
- package/filters/timeframe-selector/TimeframeSelector.sty.js +4 -2
- package/filters/timeframe-selector/TimeframeSelectorRoot.js +15 -3
- package/filters/timeframe-selector/components/TimeframeSelectorTooltip.d.ts +2 -2
- package/filters/timeframe-selector/components/TimeframeSelectorTooltip.js +1 -1
- package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.css +4 -4
- package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.js +4 -0
- package/filters/timeframe-selector/components/custom-timeframe-selector/CustomTimeframeSelector.sty.js +3 -3
- package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.css +4 -4
- package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlay.sty.js +4 -4
- package/filters/timeframe-selector/components/overlay/TimeframeSelectorOverlayFooter.js +5 -3
- package/filters/timeframe-selector/components/presets/Presets.css +27 -27
- package/filters/timeframe-selector/components/presets/Presets.sty.js +11 -11
- package/filters/timeframe-selector/components/stepper/StepperButton.js +1 -1
- package/filters/timeframe-selector/components/trigger/Trigger.css +11 -11
- package/filters/timeframe-selector/components/trigger/Trigger.js +1 -0
- package/filters/timeframe-selector/components/trigger/Trigger.sty.js +4 -4
- package/filters/timeframe-selector/utils/getTimeframeDisplayValueProps.d.ts +2 -2
- package/forms/_base-input/BaseInput.css +99 -99
- package/forms/_base-input/BaseInput.d.ts +1 -0
- package/forms/_base-input/BaseInput.js +30 -19
- package/forms/_base-input/BaseInput.sty.d.ts +1 -1
- package/forms/_base-input/BaseInput.sty.js +12 -12
- package/forms/_base-input/BaseInputContent.css +7 -7
- package/forms/_base-input/BaseInputContent.d.ts +5 -0
- package/forms/_base-input/BaseInputContent.js +2 -0
- package/forms/_base-input/BaseInputContent.sty.js +1 -1
- package/forms/_base-input/ClearButton.d.ts +3 -0
- package/forms/_base-input/ClearButton.js +53 -0
- package/forms/_base-input/base-input.types.d.ts +1 -0
- package/forms/calendar/Calendar.css +47 -47
- package/forms/calendar/Calendar.sty.js +11 -11
- package/forms/calendar/components/CalendarItem.css +7 -7
- package/forms/calendar/components/CalendarItem.sty.js +4 -4
- package/forms/calendar/components/CalendarOutlineIcon.css +8 -8
- package/forms/calendar/components/CalendarOutlineIcon.sty.js +5 -5
- package/forms/calendar/variables.sty.js +2 -2
- package/forms/checkbox/Checkbox.css +20 -20
- package/forms/checkbox/Checkbox.sty.js +3 -3
- package/forms/date-time-picker/DateTimePicker.css +75 -75
- package/forms/date-time-picker/DateTimePicker.sty.js +6 -6
- package/forms/date-time-picker/DateTimePickerRoot.js +4 -0
- package/forms/date-time-picker/hooks/useDateTimePicker.d.ts +1 -1
- package/forms/date-time-picker/hooks/useDateTimePicker.js +4 -5
- package/forms/date-time-picker/utils/focusDateTimeInput.d.ts +9 -0
- package/forms/date-time-picker/utils/focusDateTimeInput.js +23 -0
- package/forms/date-time-range-picker/DateRangeSelector.css +1 -1
- package/forms/date-time-range-picker/DateRangeSelector.sty.js +1 -1
- package/forms/date-time-range-picker/DateTimeInput.css +11 -11
- package/forms/date-time-range-picker/DateTimeInput.js +4 -0
- package/forms/date-time-range-picker/DateTimeInput.sty.js +3 -3
- package/forms/date-time-range-picker/DateTimeRangePicker.css +27 -27
- package/forms/date-time-range-picker/DateTimeRangePicker.js +6 -10
- package/forms/date-time-range-picker/DateTimeRangePicker.sty.js +4 -4
- package/forms/date-time-range-picker/DateTimeRangePickerRoot.js +22 -8
- package/forms/date-time-range-picker/helpers.d.ts +22 -4
- package/forms/date-time-range-picker/helpers.js +52 -13
- package/forms/date-time-range-picker/hooks/useDateTimeInput.d.ts +2 -0
- package/forms/date-time-range-picker/hooks/useDateTimeInput.js +91 -58
- package/forms/date-time-range-picker/hooks/useDateTimeRangePicker.js +56 -19
- package/forms/date-time-range-picker/selection-copy-helpers.js +53 -24
- package/forms/date-time-range-picker/selection-helpers.d.ts +19 -4
- package/forms/date-time-range-picker/selection-helpers.js +146 -48
- package/forms/date-time-range-picker/types.d.ts +17 -0
- package/forms/date-time-range-picker/useSelectionInteractionHandlers.js +4 -44
- package/forms/forms-core/components/field-set/FieldSet.css +2 -2
- package/forms/forms-core/components/field-set/FieldSet.sty.js +2 -2
- package/forms/forms-core/components/form-field/FormField.sty.js +1 -1
- package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.css +5 -5
- package/forms/forms-core/components/form-field-messages/FormFieldMessageItem.sty.js +2 -2
- package/forms/forms-core/components/form-field-messages/FormFieldMessages.sty.js +1 -1
- package/forms/forms-core/components/label/Label.css +5 -5
- package/forms/forms-core/components/label/Label.sty.js +2 -2
- package/forms/forms-core/time/helpers.js +1 -1
- package/forms/hooks/useAutofillEvent.css +8 -8
- package/forms/hooks/useAutofillEvent.sty.js +4 -4
- package/forms/index.d.ts +1 -0
- package/forms/number-input/NumberInputBase.js +2 -2
- package/forms/number-input-v2/NumberInput.js +3 -3
- package/forms/radio/styles.css +18 -18
- package/forms/radio/styles.sty.js +8 -8
- package/forms/search-input/SearchInput.css +4 -1
- package/forms/search-input/SearchInput.d.ts +1 -0
- package/forms/search-input/SearchInput.js +35 -3
- package/forms/search-input/SearchInput.sty.d.ts +7 -1
- package/forms/search-input/SearchInput.sty.js +2 -1
- package/forms/search-input/Stepper.css +21 -0
- package/forms/search-input/Stepper.d.ts +13 -0
- package/forms/search-input/Stepper.js +120 -0
- package/forms/search-input/Stepper.sty.d.ts +3 -0
- package/forms/search-input/Stepper.sty.js +34 -0
- package/forms/select/Select.js +6 -2
- package/forms/select/components/Control.js +1 -0
- package/forms/select/components/MenuList.js +1 -0
- package/forms/select/components/Option.js +2 -0
- package/forms/select/hooks/use-select-options.js +0 -3
- package/forms/select/styles/Select.css +47 -47
- package/forms/select/styles/Select.sty.js +24 -24
- package/forms/spin-buttons/SpinButton.css +8 -8
- package/forms/spin-buttons/SpinButton.sty.js +2 -2
- package/forms/spin-buttons/spin-button-group/hooks/useNavigateSpinButton.js +1 -1
- package/forms/switch/Switch.css +36 -36
- package/forms/switch/Switch.sty.js +5 -5
- package/forms/text-area/TextArea.css +59 -59
- package/forms/text-area/TextArea.sty.js +3 -3
- package/forms/toggle-button-group/styles.css +58 -58
- package/forms/toggle-button-group/styles.sty.js +15 -15
- package/lang/en.json +507 -485
- package/lang/ja.json +542 -560
- package/lang/uncompiled/en.json +24 -4
- package/lang/uncompiled/ja.json +68 -71
- package/layouts/app-header/AppHeader.css +1 -1
- package/layouts/app-header/AppHeader.sty.js +1 -1
- package/layouts/app-header/Navigation.css +9 -9
- package/layouts/app-header/Navigation.sty.js +5 -5
- package/layouts/app-header/action-group/ActionButton.css +17 -17
- package/layouts/app-header/action-group/ActionButton.sty.js +3 -3
- package/layouts/app-header/action-group/ActionGroup.css +1 -1
- package/layouts/app-header/action-group/ActionGroup.sty.js +1 -1
- package/layouts/app-header/action-group/NavItem.css +4 -4
- package/layouts/app-header/action-group/NavItem.sty.js +3 -3
- package/layouts/app-header/app-icon/AppIcon.css +4 -4
- package/layouts/app-header/app-icon/AppIcon.sty.js +1 -1
- package/layouts/container/Container.css +5 -5
- package/layouts/container/Container.sty.js +1 -1
- package/layouts/divider/Divider.css +6 -6
- package/layouts/divider/Divider.sty.js +1 -1
- package/layouts/input-group/InputGroup.css +23 -23
- package/layouts/input-group/InputGroup.sty.js +1 -1
- package/layouts/page/DetailView.css +3 -3
- package/layouts/page/DetailView.sty.js +2 -2
- package/layouts/page/Header.css +2 -2
- package/layouts/page/Header.sty.js +1 -1
- package/layouts/page/Main.css +6 -6
- package/layouts/page/Main.sty.js +4 -4
- package/layouts/page/Page.css +2 -2
- package/layouts/page/Page.sty.js +1 -1
- package/layouts/page/Sidebar.css +22 -22
- package/layouts/page/Sidebar.sty.js +8 -8
- package/layouts/page/panel.css +18 -18
- package/layouts/page/panel.sty.js +10 -10
- package/layouts/page-layout/PageLayout.css +10 -10
- package/layouts/page-layout/PageLayout.sty.js +6 -6
- package/layouts/page-layout/details-layout/DetailsControlBar.css +3 -3
- package/layouts/page-layout/details-layout/DetailsControlBar.sty.js +3 -3
- package/layouts/page-layout/details-layout/DetailsLayout.css +6 -6
- package/layouts/page-layout/details-layout/DetailsLayout.sty.js +5 -5
- package/layouts/page-layout/details-layout/Overlay.css +21 -21
- package/layouts/page-layout/details-layout/Overlay.sty.js +4 -4
- package/layouts/page-layout/sidebar-layout/SidebarLayout.css +38 -38
- package/layouts/page-layout/sidebar-layout/SidebarLayout.sty.js +15 -15
- package/layouts/split-layout/SplitLayout.css +17 -17
- package/layouts/split-layout/SplitLayout.sty.js +7 -7
- package/layouts/surface/Surface.css +39 -39
- package/layouts/surface/Surface.sty.js +2 -2
- package/layouts/surface/variables.sty.js +1 -1
- package/layouts/title-bar/TitleBar.css +5 -5
- package/layouts/title-bar/TitleBar.sty.js +4 -4
- package/navigation/breadcrumbs/Breadcrumbs.css +9 -9
- package/navigation/breadcrumbs/Breadcrumbs.sty.js +5 -5
- package/navigation/menu/Content.js +0 -2
- package/navigation/menu/Menu.css +15 -15
- package/navigation/menu/Menu.js +2 -13
- package/navigation/menu/Menu.sty.js +8 -8
- package/navigation/menu/Sub.js +2 -13
- package/navigation/menu/hooks/useMenuAutoClose.d.ts +16 -0
- package/navigation/menu/hooks/useMenuAutoClose.js +48 -0
- package/navigation/tabs/RenderTab.css +14 -14
- package/navigation/tabs/RenderTab.sty.js +3 -3
- package/navigation/tabs/TabPanel.css +3 -3
- package/navigation/tabs/TabPanel.sty.js +2 -2
- package/navigation/tabs/Tabs.css +9 -9
- package/navigation/tabs/Tabs.sty.js +5 -5
- package/notifications/notification-settings/NotificationSettings.css +1 -1
- package/notifications/notification-settings/NotificationSettings.sty.js +1 -1
- package/notifications/toast/Toast.css +5 -5
- package/notifications/toast/Toast.sty.js +4 -4
- package/notifications/toast/ToastContainer.css +17 -17
- package/notifications/toast/ToastContainer.sty.js +1 -1
- package/overlays/drawer/Drawer.css +9 -9
- package/overlays/drawer/Drawer.sty.js +5 -5
- package/overlays/hooks/useOverlay.d.ts +18 -0
- package/overlays/hooks/useOverlay.js +21 -0
- package/overlays/modal/Modal.css +7 -7
- package/overlays/modal/Modal.sty.js +4 -4
- package/overlays/overlay/Overlay.css +1 -1
- package/overlays/overlay/Overlay.sty.js +1 -1
- package/overlays/sheet/Sheet.css +6 -6
- package/overlays/sheet/Sheet.sty.js +5 -5
- package/overlays/tooltip/tooltip.css +18 -18
- package/overlays/tooltip/tooltip.sty.js +3 -3
- package/package.json +1 -1
- package/styles/colorUtils.css +60 -60
- package/styles/colorUtils.sty.js +2 -2
- package/styles/container.css +47 -47
- package/styles/container.sty.js +2 -2
- package/styles/ellipsis.css +1 -1
- package/styles/ellipsis.sty.js +1 -1
- package/styles/field.css +290 -290
- package/styles/field.sty.js +2 -2
- package/styles/screen-reader-only.css +1 -1
- package/styles/screen-reader-only.sty.js +1 -1
- package/styles/sprinkles.css +262 -262
- package/styles/sprinkles.sty.js +1 -1
- package/styles/textStyle.css +8 -8
- package/styles/textStyle.sty.js +1 -1
- package/tables/DataTable/DataTable.css +2 -2
- package/tables/DataTable/DataTable.sty.js +7 -7
- package/tables/DataTable/components/Alignment.css +6 -6
- package/tables/DataTable/components/Alignment.sty.js +2 -2
- package/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.css +6 -6
- package/tables/DataTable/components/ColumnPinning/DataTablePinningShadowCells.sty.js +3 -3
- package/tables/DataTable/components/DataTableBody.css +2 -2
- package/tables/DataTable/components/DataTableBody.sty.js +2 -2
- package/tables/DataTable/components/DataTableCell.css +99 -99
- package/tables/DataTable/components/DataTableCell.sty.js +5 -5
- package/tables/DataTable/components/DataTableDefaultCell.css +21 -21
- package/tables/DataTable/components/DataTableDefaultCell.sty.js +1 -1
- package/tables/DataTable/components/DataTableEmptyState.css +2 -2
- package/tables/DataTable/components/DataTableEmptyState.sty.js +1 -1
- package/tables/DataTable/components/DataTableHeader.css +2 -2
- package/tables/DataTable/components/DataTableHeader.sty.js +2 -2
- package/tables/DataTable/components/DataTableHeaderCell.css +64 -64
- package/tables/DataTable/components/DataTableHeaderCell.js +4 -3
- package/tables/DataTable/components/DataTableHeaderCell.sty.js +23 -23
- package/tables/DataTable/components/DataTableRow.css +13 -13
- package/tables/DataTable/components/DataTableRow.sty.js +1 -1
- package/tables/DataTable/components/DataTableScrollShadow.css +10 -10
- package/tables/DataTable/components/DataTableScrollShadow.sty.js +2 -2
- package/tables/DataTable/components/DataTableVirtualizationContainer.css +20 -20
- package/tables/DataTable/components/DataTableVirtualizationContainer.sty.js +1 -1
- package/tables/DataTable/components/TableActions/DataTableSelectionChip.css +5 -5
- package/tables/DataTable/components/TableActions/DataTableSelectionChip.sty.js +2 -2
- package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.css +7 -7
- package/tables/DataTable/components/Toolbar/ColumnSettings/ColumnOrderSettings/ColumnOrderSettingsDragAndDrop.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnOrderSettings.d.ts +1 -11
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnSettingsModal.js +18 -6
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.css +5 -5
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsList.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.css +7 -7
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableColumnsListItem.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.css +5 -5
- package/tables/DataTable/components/Toolbar/ColumnSettings/DataTableVisibilityFilterControls.sty.js +3 -3
- package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-types.d.ts +24 -13
- package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.d.ts +21 -0
- package/tables/DataTable/components/Toolbar/ColumnSettings/column-settings-utils.js +8 -0
- package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.css +3 -3
- package/tables/DataTable/components/Toolbar/Download/DataTableDownloadData.sty.js +2 -2
- package/tables/DataTable/features/ColumnOrder/ColumnOrder.css +8 -8
- package/tables/DataTable/features/ColumnOrder/ColumnOrder.sty.js +4 -4
- package/tables/DataTable/features/ColumnSizing/ColumnSizing.css +3 -3
- package/tables/DataTable/features/ColumnSizing/ColumnSizing.sty.js +1 -1
- package/tables/DataTable/features/ColumnTypes/ColumnTypes.css +1 -1
- package/tables/DataTable/features/ColumnTypes/ColumnTypes.sty.js +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.css +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttAnnotationsIndicators.sty.js +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttChartCell.css +3 -3
- package/tables/DataTable/features/GanttChart/DataTableGanttChartCell.sty.js +2 -2
- package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.css +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttChartGrid.sty.js +1 -1
- package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.css +4 -4
- package/tables/DataTable/features/GanttChart/DataTableGanttChartHeader.sty.js +1 -1
- package/tables/DataTable/features/LoadingState/LoadingState.css +2 -2
- package/tables/DataTable/features/LoadingState/LoadingState.sty.js +2 -2
- package/tables/DataTable/features/MeterBarChart/MeterBarChart.js +8 -2
- package/tables/DataTable/features/RowDetails/RowDetails.css +13 -13
- package/tables/DataTable/features/RowDetails/RowDetails.sty.js +3 -3
- package/tables/DataTable/features/RowInteractivity/RowInteractivity.css +14 -14
- package/tables/DataTable/features/RowInteractivity/RowInteractivity.sty.js +1 -1
- package/tables/DataTable/features/RowOrder/RowOrder.css +8 -8
- package/tables/DataTable/features/RowOrder/RowOrder.sty.js +3 -3
- package/tables/DataTable/features/Sorting/Sorting.css +34 -34
- package/tables/DataTable/features/Sorting/Sorting.sty.js +3 -3
- package/tables/DataTable/features/SubRows/SubRows.css +19 -19
- package/tables/DataTable/features/SubRows/SubRows.sty.js +5 -5
- package/tables/DataTable/features/Thresholds/Thresholds.css +2 -2
- package/tables/DataTable/features/Thresholds/Thresholds.sty.js +3 -3
- package/tables/DataTable/features/UserActions/RowActions.css +4 -4
- package/tables/DataTable/features/UserActions/RowActions.sty.js +1 -1
- package/tables/DataTable/features/UserActions/UserActions.css +18 -18
- package/tables/DataTable/features/UserActions/UserActions.sty.js +2 -2
- package/tables/DataTable/hooks/useHeaderCellInteractions.d.ts +3 -2
- package/tables/DataTable/hooks/useHeaderCellInteractions.js +33 -14
- package/tables/DataTable/public.api.d.ts +20 -5
- package/tables/SimpleTable/SimpleTable.css +27 -27
- package/tables/SimpleTable/SimpleTable.sty.js +1 -1
- package/tables/index.d.ts +2 -3
- package/typography/block-quote/Blockquote.css +2 -2
- package/typography/block-quote/Blockquote.sty.js +1 -1
- package/typography/code/Code.css +1 -1
- package/typography/code/Code.sty.js +1 -1
- package/typography/emphasis/Emphasis.css +1 -1
- package/typography/emphasis/Emphasis.sty.js +1 -1
- package/typography/external-link/ExternalLink.css +6 -6
- package/typography/external-link/ExternalLink.sty.js +1 -1
- package/typography/heading/Heading.css +7 -7
- package/typography/heading/Heading.sty.js +1 -1
- package/typography/highlight/Highlight.css +2 -2
- package/typography/highlight/Highlight.sty.js +1 -1
- package/typography/link/Link.css +4 -4
- package/typography/link/Link.sty.js +1 -1
- package/typography/list/List.css +4 -4
- package/typography/list/List.sty.js +2 -2
- package/typography/paragraph/Paragraph.css +3 -3
- package/typography/paragraph/Paragraph.sty.js +1 -1
- package/typography/strikethrough/Strikethrough.css +1 -1
- package/typography/strikethrough/Strikethrough.sty.js +1 -1
- package/typography/strong/Strong.css +1 -1
- package/typography/strong/Strong.sty.js +1 -1
- package/typography/text/Text.css +3 -3
- package/typography/text/Text.sty.js +1 -1
- package/typography/text-ellipsis/TextEllipsis.css +6 -6
- package/typography/text-ellipsis/TextEllipsis.js +2 -6
- package/typography/text-ellipsis/TextEllipsis.sty.js +2 -2
- package/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltip.d.ts +0 -7
- package/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltip.js +0 -61
- package/charts/core/components/annotations/components/tooltip/AnnotationsTooltip.css +0 -4
- package/charts/core/components/annotations/components/tooltip/AnnotationsTooltip.d.ts +0 -13
- package/charts/core/components/annotations/components/tooltip/AnnotationsTooltip.js +0 -113
- package/charts/core/components/annotations/components/tooltip/AnnotationsTooltip.sty.d.ts +0 -1
- package/charts/core/components/annotations/components/tooltip/AnnotationsTooltipHeaders.d.ts +0 -7
- package/charts/core/components/annotations/components/tooltip/AnnotationsTooltipHeaders.js +0 -43
- package/charts/core/components/annotations/components/tooltip/AnnotationsTooltipItem.d.ts +0 -9
- package/charts/core/components/annotations/components/tooltip/AnnotationsTooltipItem.js +0 -95
- package/charts/core/components/annotations/components/tooltip/hooks/useRegisterTooltipHandlerCallbacks.d.ts +0 -10
- package/charts/core/components/annotations/components/tooltip/hooks/useRegisterTooltipHandlerCallbacks.js +0 -49
- package/charts/core/components/overlay-tooltip/components/TooltipFooter.d.ts +0 -7
- package/charts/gauge/contexts/GaugeChartTooltipNameContext.d.ts +0 -8
- package/charts/gauge/hooks/useGaugeChartOverlayEvents.d.ts +0 -12
- package/charts/gauge/hooks/useGaugeChartOverlayEvents.js +0 -66
- package/charts/meter-bar/single-meter-bar/hooks/useMeterBarChartTooltipHandlers.d.ts +0 -7
- package/charts/meter-bar/single-meter-bar/hooks/useMeterBarChartTooltipHandlers.js +0 -61
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltip.js +0 -46
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsDefaultTooltip.js.map +0 -7
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsTooltip.css +0 -4
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsTooltip.js +0 -100
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsTooltip.js.map +0 -7
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsTooltip.sty.js +0 -6
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsTooltip.sty.js.map +0 -7
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsTooltipHeaders.js +0 -25
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsTooltipHeaders.js.map +0 -7
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsTooltipItem.js +0 -67
- package/esm/charts/core/components/annotations/components/tooltip/AnnotationsTooltipItem.js.map +0 -7
- package/esm/charts/core/components/annotations/components/tooltip/hooks/useRegisterTooltipHandlerCallbacks.js +0 -31
- package/esm/charts/core/components/annotations/components/tooltip/hooks/useRegisterTooltipHandlerCallbacks.js.map +0 -7
- package/esm/charts/core/components/overlay-tooltip/components/TooltipFooter.js.map +0 -7
- package/esm/charts/gauge/contexts/GaugeChartTooltipNameContext.js +0 -10
- package/esm/charts/gauge/contexts/GaugeChartTooltipNameContext.js.map +0 -7
- package/esm/charts/gauge/hooks/useGaugeChartOverlayEvents.js +0 -48
- package/esm/charts/gauge/hooks/useGaugeChartOverlayEvents.js.map +0 -7
- package/esm/charts/meter-bar/single-meter-bar/hooks/useMeterBarChartTooltipHandlers.js +0 -43
- package/esm/charts/meter-bar/single-meter-bar/hooks/useMeterBarChartTooltipHandlers.js.map +0 -7
- package/esm/charts/xy-chart/components/displays/BarDisplay.js.map +0 -7
- package/esm/filters/segment-selector/parts/sendSegmentManagementAddOnIntent.js +0 -27
- package/esm/filters/segment-selector/parts/sendSegmentManagementAddOnIntent.js.map +0 -7
- package/filters/segment-selector/parts/sendSegmentManagementAddOnIntent.d.ts +0 -2
- package/filters/segment-selector/parts/sendSegmentManagementAddOnIntent.js +0 -43
package/lang/ja.json
CHANGED
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"/dH1ZDxCvqGesp4H": [
|
|
109
109
|
{
|
|
110
110
|
"type": 0,
|
|
111
|
-
"value": "
|
|
111
|
+
"value": "フィルター値が無効です。このキーでサポートされる値は 'true' と 'false' です。"
|
|
112
112
|
}
|
|
113
113
|
],
|
|
114
114
|
"/gODMPYFdp49RodI": [
|
|
@@ -164,13 +164,13 @@
|
|
|
164
164
|
"0h7hXAauFUZKiVcD": [
|
|
165
165
|
{
|
|
166
166
|
"type": 0,
|
|
167
|
-
"value": "IP
|
|
167
|
+
"value": "IP アドレス"
|
|
168
168
|
}
|
|
169
169
|
],
|
|
170
170
|
"0mIAvvhLoJG6DVyY": [
|
|
171
171
|
{
|
|
172
172
|
"type": 0,
|
|
173
|
-
"value": "
|
|
173
|
+
"value": "YAML の追加"
|
|
174
174
|
}
|
|
175
175
|
],
|
|
176
176
|
"0ntbampPIxNnacS8": [
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
"0pTypH/J5FqapHUE": [
|
|
183
183
|
{
|
|
184
184
|
"type": 0,
|
|
185
|
-
"value": "
|
|
185
|
+
"value": "フィルター値が無効です。"
|
|
186
186
|
}
|
|
187
187
|
],
|
|
188
188
|
"0yl3EugW5oCHVbO1": [
|
|
@@ -245,49 +245,50 @@
|
|
|
245
245
|
],
|
|
246
246
|
"1ierRkr3xtpxyOXK": [
|
|
247
247
|
{
|
|
248
|
+
"type": 5,
|
|
249
|
+
"value": "prefix",
|
|
248
250
|
"options": {
|
|
249
|
-
"
|
|
251
|
+
"past": {
|
|
250
252
|
"value": [
|
|
251
253
|
{
|
|
252
254
|
"type": 0,
|
|
253
|
-
"value": "
|
|
255
|
+
"value": "過去"
|
|
254
256
|
}
|
|
255
257
|
]
|
|
256
258
|
},
|
|
257
|
-
"
|
|
259
|
+
"future": {
|
|
258
260
|
"value": [
|
|
259
261
|
{
|
|
260
262
|
"type": 0,
|
|
261
|
-
"value": "
|
|
263
|
+
"value": "次の"
|
|
262
264
|
}
|
|
263
265
|
]
|
|
264
266
|
},
|
|
265
|
-
"
|
|
267
|
+
"relativeFuture": {
|
|
266
268
|
"value": [
|
|
267
269
|
{
|
|
268
270
|
"type": 0,
|
|
269
|
-
"value": "
|
|
271
|
+
"value": "今後"
|
|
270
272
|
}
|
|
271
273
|
]
|
|
272
274
|
},
|
|
273
|
-
"
|
|
275
|
+
"other": {
|
|
274
276
|
"value": [
|
|
275
277
|
{
|
|
276
278
|
"type": 0,
|
|
277
|
-
"value": "
|
|
279
|
+
"value": " "
|
|
278
280
|
}
|
|
279
281
|
]
|
|
280
282
|
}
|
|
281
|
-
}
|
|
282
|
-
"type": 5,
|
|
283
|
-
"value": "prefix"
|
|
283
|
+
}
|
|
284
284
|
},
|
|
285
285
|
{
|
|
286
286
|
"type": 0,
|
|
287
287
|
"value": " "
|
|
288
288
|
},
|
|
289
289
|
{
|
|
290
|
-
"
|
|
290
|
+
"type": 6,
|
|
291
|
+
"value": "offset",
|
|
291
292
|
"options": {
|
|
292
293
|
"other": {
|
|
293
294
|
"value": [
|
|
@@ -301,9 +302,8 @@
|
|
|
301
302
|
]
|
|
302
303
|
}
|
|
303
304
|
},
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"value": "offset"
|
|
305
|
+
"offset": 0,
|
|
306
|
+
"pluralType": "cardinal"
|
|
307
307
|
},
|
|
308
308
|
{
|
|
309
309
|
"type": 1,
|
|
@@ -359,7 +359,7 @@
|
|
|
359
359
|
"2DJQNdEozwBZPASX": [
|
|
360
360
|
{
|
|
361
361
|
"type": 0,
|
|
362
|
-
"value": "
|
|
362
|
+
"value": "フィルター値が無効です。このキーではテキスト値のみがサポートされています。"
|
|
363
363
|
}
|
|
364
364
|
],
|
|
365
365
|
"2TgksAr68bjM6G9M": [
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
"2w4ytnIw5OSGcvDR": [
|
|
378
378
|
{
|
|
379
379
|
"type": 0,
|
|
380
|
-
"value": "
|
|
380
|
+
"value": "昇順にソート"
|
|
381
381
|
}
|
|
382
382
|
],
|
|
383
383
|
"2zjArS0xoR2Fy4/o": [
|
|
@@ -401,35 +401,35 @@
|
|
|
401
401
|
"3ZX0IG+5tekB89nr": [
|
|
402
402
|
{
|
|
403
403
|
"type": 0,
|
|
404
|
-
"value": "
|
|
404
|
+
"value": "オプションの選択"
|
|
405
405
|
}
|
|
406
406
|
],
|
|
407
407
|
"3jYmiQ54m6nCawn6": [
|
|
408
408
|
{
|
|
409
|
+
"type": 5,
|
|
410
|
+
"value": "value",
|
|
409
411
|
"options": {
|
|
410
412
|
"false": {
|
|
411
413
|
"value": [
|
|
412
414
|
{
|
|
413
415
|
"type": 0,
|
|
414
|
-
"value": "
|
|
416
|
+
"value": "フレーズの検索"
|
|
415
417
|
}
|
|
416
418
|
]
|
|
417
419
|
},
|
|
418
420
|
"other": {
|
|
419
421
|
"value": [
|
|
420
|
-
{
|
|
421
|
-
"type": 0,
|
|
422
|
-
"value": "Search"
|
|
423
|
-
},
|
|
424
422
|
{
|
|
425
423
|
"type": 1,
|
|
426
424
|
"value": "value"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"type": 0,
|
|
428
|
+
"value": " の検索"
|
|
427
429
|
}
|
|
428
430
|
]
|
|
429
431
|
}
|
|
430
|
-
}
|
|
431
|
-
"type": 5,
|
|
432
|
-
"value": "value"
|
|
432
|
+
}
|
|
433
433
|
}
|
|
434
434
|
],
|
|
435
435
|
"3oBNy/ExeWqmMWha": [
|
|
@@ -445,7 +445,7 @@
|
|
|
445
445
|
"3zpFLdLODjLHgabp": [
|
|
446
446
|
{
|
|
447
447
|
"type": 0,
|
|
448
|
-
"value": "
|
|
448
|
+
"value": "フィルター値が無効です。このキーでは uid64、uid128、および uuid 形式のみがサポートされています。"
|
|
449
449
|
}
|
|
450
450
|
],
|
|
451
451
|
"42g95tLLPXcqbFLl": [
|
|
@@ -493,15 +493,17 @@
|
|
|
493
493
|
"4NCInqG2qgKe0TSA": [
|
|
494
494
|
{
|
|
495
495
|
"type": 0,
|
|
496
|
-
"value": "
|
|
496
|
+
"value": "並べ替え: "
|
|
497
497
|
},
|
|
498
498
|
{
|
|
499
|
+
"type": 5,
|
|
500
|
+
"value": "direction",
|
|
499
501
|
"options": {
|
|
500
502
|
"asc": {
|
|
501
503
|
"value": [
|
|
502
504
|
{
|
|
503
505
|
"type": 0,
|
|
504
|
-
"value": "
|
|
506
|
+
"value": "昇順"
|
|
505
507
|
}
|
|
506
508
|
]
|
|
507
509
|
},
|
|
@@ -509,7 +511,7 @@
|
|
|
509
511
|
"value": [
|
|
510
512
|
{
|
|
511
513
|
"type": 0,
|
|
512
|
-
"value": "
|
|
514
|
+
"value": "降順"
|
|
513
515
|
}
|
|
514
516
|
]
|
|
515
517
|
},
|
|
@@ -517,17 +519,15 @@
|
|
|
517
519
|
"value": [
|
|
518
520
|
{
|
|
519
521
|
"type": 0,
|
|
520
|
-
"value": "
|
|
522
|
+
"value": "未並べ替え"
|
|
521
523
|
}
|
|
522
524
|
]
|
|
523
525
|
}
|
|
524
|
-
}
|
|
525
|
-
"type": 5,
|
|
526
|
-
"value": "direction"
|
|
526
|
+
}
|
|
527
527
|
},
|
|
528
528
|
{
|
|
529
529
|
"type": 0,
|
|
530
|
-
"value": "
|
|
530
|
+
"value": " (優先度: "
|
|
531
531
|
},
|
|
532
532
|
{
|
|
533
533
|
"type": 1,
|
|
@@ -535,7 +535,7 @@
|
|
|
535
535
|
},
|
|
536
536
|
{
|
|
537
537
|
"type": 0,
|
|
538
|
-
"value": "
|
|
538
|
+
"value": "/"
|
|
539
539
|
},
|
|
540
540
|
{
|
|
541
541
|
"type": 1,
|
|
@@ -543,7 +543,7 @@
|
|
|
543
543
|
},
|
|
544
544
|
{
|
|
545
545
|
"type": 0,
|
|
546
|
-
"value": "
|
|
546
|
+
"value": ")。"
|
|
547
547
|
}
|
|
548
548
|
],
|
|
549
549
|
"4PipZ2Z07Q9epib1": [
|
|
@@ -561,7 +561,7 @@
|
|
|
561
561
|
"4yANH5gdmW1efk0I": [
|
|
562
562
|
{
|
|
563
563
|
"type": 0,
|
|
564
|
-
"value": "
|
|
564
|
+
"value": "開始時間と終了時間を入力してください。"
|
|
565
565
|
}
|
|
566
566
|
],
|
|
567
567
|
"5+yhrNhI2AlQmDAo": [
|
|
@@ -619,13 +619,13 @@
|
|
|
619
619
|
"5eX0f5J5OWwoQNSw": [
|
|
620
620
|
{
|
|
621
621
|
"type": 0,
|
|
622
|
-
"value": "
|
|
622
|
+
"value": "並べ替え"
|
|
623
623
|
}
|
|
624
624
|
],
|
|
625
625
|
"5i26Rr1LLz0OIGNJ": [
|
|
626
626
|
{
|
|
627
627
|
"type": 0,
|
|
628
|
-
"value": "
|
|
628
|
+
"value": "日時をクリア"
|
|
629
629
|
}
|
|
630
630
|
],
|
|
631
631
|
"62QNu9Nw8T2nbJHu": [
|
|
@@ -643,15 +643,17 @@
|
|
|
643
643
|
"6Ut4st/DFcfYJorv": [
|
|
644
644
|
{
|
|
645
645
|
"type": 0,
|
|
646
|
-
"value": "
|
|
646
|
+
"value": "並べ替え: "
|
|
647
647
|
},
|
|
648
648
|
{
|
|
649
|
+
"type": 5,
|
|
650
|
+
"value": "direction",
|
|
649
651
|
"options": {
|
|
650
652
|
"asc": {
|
|
651
653
|
"value": [
|
|
652
654
|
{
|
|
653
655
|
"type": 0,
|
|
654
|
-
"value": "
|
|
656
|
+
"value": "昇順"
|
|
655
657
|
}
|
|
656
658
|
]
|
|
657
659
|
},
|
|
@@ -659,7 +661,7 @@
|
|
|
659
661
|
"value": [
|
|
660
662
|
{
|
|
661
663
|
"type": 0,
|
|
662
|
-
"value": "
|
|
664
|
+
"value": "降順"
|
|
663
665
|
}
|
|
664
666
|
]
|
|
665
667
|
},
|
|
@@ -667,17 +669,15 @@
|
|
|
667
669
|
"value": [
|
|
668
670
|
{
|
|
669
671
|
"type": 0,
|
|
670
|
-
"value": "
|
|
672
|
+
"value": "未並べ替え"
|
|
671
673
|
}
|
|
672
674
|
]
|
|
673
675
|
}
|
|
674
|
-
}
|
|
675
|
-
"type": 5,
|
|
676
|
-
"value": "direction"
|
|
676
|
+
}
|
|
677
677
|
},
|
|
678
678
|
{
|
|
679
679
|
"type": 0,
|
|
680
|
-
"value": "
|
|
680
|
+
"value": "。"
|
|
681
681
|
}
|
|
682
682
|
],
|
|
683
683
|
"6ZC5vGSgjnplvo7x": [
|
|
@@ -737,7 +737,7 @@
|
|
|
737
737
|
"7tnC6f9ag1/zG/vh": [
|
|
738
738
|
{
|
|
739
739
|
"type": 0,
|
|
740
|
-
"value": "
|
|
740
|
+
"value": "テキストの追加"
|
|
741
741
|
}
|
|
742
742
|
],
|
|
743
743
|
"7vkTbyAZNeY/qa9p": [
|
|
@@ -759,7 +759,7 @@
|
|
|
759
759
|
"83QccW/P4JcNgO6M": [
|
|
760
760
|
{
|
|
761
761
|
"type": 0,
|
|
762
|
-
"value": "
|
|
762
|
+
"value": "フィルター値が無効です。このキーでは "
|
|
763
763
|
},
|
|
764
764
|
{
|
|
765
765
|
"type": 1,
|
|
@@ -767,7 +767,7 @@
|
|
|
767
767
|
},
|
|
768
768
|
{
|
|
769
769
|
"type": 0,
|
|
770
|
-
"value": "
|
|
770
|
+
"value": " 型の値のみがサポートされています。"
|
|
771
771
|
}
|
|
772
772
|
],
|
|
773
773
|
"89sBAyzLbeW6GyPJ": [
|
|
@@ -796,26 +796,26 @@
|
|
|
796
796
|
"value": "行を"
|
|
797
797
|
},
|
|
798
798
|
{
|
|
799
|
+
"type": 5,
|
|
800
|
+
"value": "isDetailsOpen",
|
|
799
801
|
"options": {
|
|
800
|
-
"
|
|
802
|
+
"true": {
|
|
801
803
|
"value": [
|
|
802
804
|
{
|
|
803
805
|
"type": 0,
|
|
804
|
-
"value": "
|
|
806
|
+
"value": "折りたたむ"
|
|
805
807
|
}
|
|
806
808
|
]
|
|
807
809
|
},
|
|
808
|
-
"
|
|
810
|
+
"other": {
|
|
809
811
|
"value": [
|
|
810
812
|
{
|
|
811
813
|
"type": 0,
|
|
812
|
-
"value": "
|
|
814
|
+
"value": "展開する"
|
|
813
815
|
}
|
|
814
816
|
]
|
|
815
817
|
}
|
|
816
|
-
}
|
|
817
|
-
"type": 5,
|
|
818
|
-
"value": "isDetailsOpen"
|
|
818
|
+
}
|
|
819
819
|
},
|
|
820
820
|
{
|
|
821
821
|
"type": 0,
|
|
@@ -875,7 +875,7 @@
|
|
|
875
875
|
"9AzZAjitLsfniU2y": [
|
|
876
876
|
{
|
|
877
877
|
"type": 0,
|
|
878
|
-
"value": "
|
|
878
|
+
"value": "TSX の追加"
|
|
879
879
|
}
|
|
880
880
|
],
|
|
881
881
|
"9IaEBlhZa5HXmHA+": [
|
|
@@ -884,26 +884,26 @@
|
|
|
884
884
|
"value": "フィルターを"
|
|
885
885
|
},
|
|
886
886
|
{
|
|
887
|
+
"type": 5,
|
|
888
|
+
"value": "isPinned",
|
|
887
889
|
"options": {
|
|
888
|
-
"
|
|
890
|
+
"true": {
|
|
889
891
|
"value": [
|
|
890
892
|
{
|
|
891
893
|
"type": 0,
|
|
892
|
-
"value": "
|
|
894
|
+
"value": "ピン留め解除"
|
|
893
895
|
}
|
|
894
896
|
]
|
|
895
897
|
},
|
|
896
|
-
"
|
|
898
|
+
"other": {
|
|
897
899
|
"value": [
|
|
898
900
|
{
|
|
899
901
|
"type": 0,
|
|
900
|
-
"value": "
|
|
902
|
+
"value": "ピン留めする"
|
|
901
903
|
}
|
|
902
904
|
]
|
|
903
905
|
}
|
|
904
|
-
}
|
|
905
|
-
"type": 5,
|
|
906
|
-
"value": "isPinned"
|
|
906
|
+
}
|
|
907
907
|
},
|
|
908
908
|
{
|
|
909
909
|
"type": 0,
|
|
@@ -990,7 +990,8 @@
|
|
|
990
990
|
],
|
|
991
991
|
"ADLDZ8spJCrDx/6Q": [
|
|
992
992
|
{
|
|
993
|
-
"
|
|
993
|
+
"type": 6,
|
|
994
|
+
"value": "offset",
|
|
994
995
|
"options": {
|
|
995
996
|
"other": {
|
|
996
997
|
"value": [
|
|
@@ -1004,9 +1005,8 @@
|
|
|
1004
1005
|
]
|
|
1005
1006
|
}
|
|
1006
1007
|
},
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
1009
|
-
"value": "offset"
|
|
1008
|
+
"offset": 0,
|
|
1009
|
+
"pluralType": "cardinal"
|
|
1010
1010
|
}
|
|
1011
1011
|
],
|
|
1012
1012
|
"AHh4uuTMLAOichXS": [
|
|
@@ -1035,7 +1035,8 @@
|
|
|
1035
1035
|
],
|
|
1036
1036
|
"AYfNQEjfwenkbxsg": [
|
|
1037
1037
|
{
|
|
1038
|
-
"
|
|
1038
|
+
"type": 6,
|
|
1039
|
+
"value": "offset",
|
|
1039
1040
|
"options": {
|
|
1040
1041
|
"other": {
|
|
1041
1042
|
"value": [
|
|
@@ -1049,9 +1050,8 @@
|
|
|
1049
1050
|
]
|
|
1050
1051
|
}
|
|
1051
1052
|
},
|
|
1052
|
-
"
|
|
1053
|
-
"
|
|
1054
|
-
"value": "offset"
|
|
1053
|
+
"offset": 0,
|
|
1054
|
+
"pluralType": "cardinal"
|
|
1055
1055
|
}
|
|
1056
1056
|
],
|
|
1057
1057
|
"Ah9w1glbeyevy7N+": [
|
|
@@ -1081,7 +1081,7 @@
|
|
|
1081
1081
|
"B3Rj3sRBMMfDBuzK": [
|
|
1082
1082
|
{
|
|
1083
1083
|
"type": 0,
|
|
1084
|
-
"value": "
|
|
1084
|
+
"value": "パスワードの追加"
|
|
1085
1085
|
}
|
|
1086
1086
|
],
|
|
1087
1087
|
"BAfEyw7BhyJX3dfC": [
|
|
@@ -1105,7 +1105,7 @@
|
|
|
1105
1105
|
"BYUJpW8TBonAxnYd": [
|
|
1106
1106
|
{
|
|
1107
1107
|
"type": 0,
|
|
1108
|
-
"value": "
|
|
1108
|
+
"value": "サイドバー"
|
|
1109
1109
|
}
|
|
1110
1110
|
],
|
|
1111
1111
|
"BfMOguQOfnAxwOI6": [
|
|
@@ -1116,41 +1116,42 @@
|
|
|
1116
1116
|
],
|
|
1117
1117
|
"BfrmGp7APB2nlQRw": [
|
|
1118
1118
|
{
|
|
1119
|
+
"type": 5,
|
|
1120
|
+
"value": "prefix",
|
|
1119
1121
|
"options": {
|
|
1120
|
-
"
|
|
1122
|
+
"previous": {
|
|
1121
1123
|
"value": [
|
|
1122
1124
|
{
|
|
1123
1125
|
"type": 0,
|
|
1124
|
-
"value": "
|
|
1126
|
+
"value": "前の"
|
|
1125
1127
|
}
|
|
1126
1128
|
]
|
|
1127
1129
|
},
|
|
1128
|
-
"
|
|
1130
|
+
"next": {
|
|
1129
1131
|
"value": [
|
|
1130
1132
|
{
|
|
1131
1133
|
"type": 0,
|
|
1132
|
-
"value": "
|
|
1134
|
+
"value": "次の"
|
|
1133
1135
|
}
|
|
1134
1136
|
]
|
|
1135
1137
|
},
|
|
1136
|
-
"
|
|
1138
|
+
"other": {
|
|
1137
1139
|
"value": [
|
|
1138
1140
|
{
|
|
1139
1141
|
"type": 0,
|
|
1140
|
-
"value": "
|
|
1142
|
+
"value": "ここ"
|
|
1141
1143
|
}
|
|
1142
1144
|
]
|
|
1143
1145
|
}
|
|
1144
|
-
}
|
|
1145
|
-
"type": 5,
|
|
1146
|
-
"value": "prefix"
|
|
1146
|
+
}
|
|
1147
1147
|
},
|
|
1148
1148
|
{
|
|
1149
1149
|
"type": 0,
|
|
1150
1150
|
"value": " "
|
|
1151
1151
|
},
|
|
1152
1152
|
{
|
|
1153
|
-
"
|
|
1153
|
+
"type": 6,
|
|
1154
|
+
"value": "amount",
|
|
1154
1155
|
"options": {
|
|
1155
1156
|
"other": {
|
|
1156
1157
|
"value": [
|
|
@@ -1164,9 +1165,8 @@
|
|
|
1164
1165
|
]
|
|
1165
1166
|
}
|
|
1166
1167
|
},
|
|
1167
|
-
"
|
|
1168
|
-
"
|
|
1169
|
-
"value": "amount"
|
|
1168
|
+
"offset": 0,
|
|
1169
|
+
"pluralType": "cardinal"
|
|
1170
1170
|
}
|
|
1171
1171
|
],
|
|
1172
1172
|
"BlGZxVNh87aTe30G": [
|
|
@@ -1184,7 +1184,7 @@
|
|
|
1184
1184
|
"BxL/OHRXGQ4NxkRA": [
|
|
1185
1185
|
{
|
|
1186
1186
|
"type": 0,
|
|
1187
|
-
"value": "
|
|
1187
|
+
"value": "降順にソート"
|
|
1188
1188
|
}
|
|
1189
1189
|
],
|
|
1190
1190
|
"CQIPnzlUQ9+DqtjP": [
|
|
@@ -1213,41 +1213,42 @@
|
|
|
1213
1213
|
],
|
|
1214
1214
|
"CjpZq81r1HsdNxp0": [
|
|
1215
1215
|
{
|
|
1216
|
+
"type": 5,
|
|
1217
|
+
"value": "prefix",
|
|
1216
1218
|
"options": {
|
|
1217
|
-
"
|
|
1219
|
+
"previous": {
|
|
1218
1220
|
"value": [
|
|
1219
1221
|
{
|
|
1220
1222
|
"type": 0,
|
|
1221
|
-
"value": "
|
|
1223
|
+
"value": "前の"
|
|
1222
1224
|
}
|
|
1223
1225
|
]
|
|
1224
1226
|
},
|
|
1225
|
-
"
|
|
1227
|
+
"next": {
|
|
1226
1228
|
"value": [
|
|
1227
1229
|
{
|
|
1228
1230
|
"type": 0,
|
|
1229
|
-
"value": "
|
|
1231
|
+
"value": "次の"
|
|
1230
1232
|
}
|
|
1231
1233
|
]
|
|
1232
1234
|
},
|
|
1233
|
-
"
|
|
1235
|
+
"other": {
|
|
1234
1236
|
"value": [
|
|
1235
1237
|
{
|
|
1236
1238
|
"type": 0,
|
|
1237
|
-
"value": "
|
|
1239
|
+
"value": "ここ"
|
|
1238
1240
|
}
|
|
1239
1241
|
]
|
|
1240
1242
|
}
|
|
1241
|
-
}
|
|
1242
|
-
"type": 5,
|
|
1243
|
-
"value": "prefix"
|
|
1243
|
+
}
|
|
1244
1244
|
},
|
|
1245
1245
|
{
|
|
1246
1246
|
"type": 0,
|
|
1247
1247
|
"value": " "
|
|
1248
1248
|
},
|
|
1249
1249
|
{
|
|
1250
|
-
"
|
|
1250
|
+
"type": 6,
|
|
1251
|
+
"value": "amount",
|
|
1251
1252
|
"options": {
|
|
1252
1253
|
"other": {
|
|
1253
1254
|
"value": [
|
|
@@ -1261,9 +1262,8 @@
|
|
|
1261
1262
|
]
|
|
1262
1263
|
}
|
|
1263
1264
|
},
|
|
1264
|
-
"
|
|
1265
|
-
"
|
|
1266
|
-
"value": "amount"
|
|
1265
|
+
"offset": 0,
|
|
1266
|
+
"pluralType": "cardinal"
|
|
1267
1267
|
}
|
|
1268
1268
|
],
|
|
1269
1269
|
"CrdM30eeqaF3mlZr": [
|
|
@@ -1312,49 +1312,50 @@
|
|
|
1312
1312
|
],
|
|
1313
1313
|
"DMJP39IduNdB3wO3": [
|
|
1314
1314
|
{
|
|
1315
|
+
"type": 5,
|
|
1316
|
+
"value": "prefix",
|
|
1315
1317
|
"options": {
|
|
1316
|
-
"
|
|
1318
|
+
"past": {
|
|
1317
1319
|
"value": [
|
|
1318
1320
|
{
|
|
1319
1321
|
"type": 0,
|
|
1320
|
-
"value": "
|
|
1322
|
+
"value": "過去"
|
|
1321
1323
|
}
|
|
1322
1324
|
]
|
|
1323
1325
|
},
|
|
1324
|
-
"
|
|
1326
|
+
"future": {
|
|
1325
1327
|
"value": [
|
|
1326
1328
|
{
|
|
1327
1329
|
"type": 0,
|
|
1328
|
-
"value": "
|
|
1330
|
+
"value": "次の"
|
|
1329
1331
|
}
|
|
1330
1332
|
]
|
|
1331
1333
|
},
|
|
1332
|
-
"
|
|
1334
|
+
"relativeFuture": {
|
|
1333
1335
|
"value": [
|
|
1334
1336
|
{
|
|
1335
1337
|
"type": 0,
|
|
1336
|
-
"value": "
|
|
1338
|
+
"value": "今後"
|
|
1337
1339
|
}
|
|
1338
1340
|
]
|
|
1339
1341
|
},
|
|
1340
|
-
"
|
|
1342
|
+
"other": {
|
|
1341
1343
|
"value": [
|
|
1342
1344
|
{
|
|
1343
1345
|
"type": 0,
|
|
1344
|
-
"value": "
|
|
1346
|
+
"value": " "
|
|
1345
1347
|
}
|
|
1346
1348
|
]
|
|
1347
1349
|
}
|
|
1348
|
-
}
|
|
1349
|
-
"type": 5,
|
|
1350
|
-
"value": "prefix"
|
|
1350
|
+
}
|
|
1351
1351
|
},
|
|
1352
1352
|
{
|
|
1353
1353
|
"type": 0,
|
|
1354
1354
|
"value": " "
|
|
1355
1355
|
},
|
|
1356
1356
|
{
|
|
1357
|
-
"
|
|
1357
|
+
"type": 6,
|
|
1358
|
+
"value": "offset",
|
|
1358
1359
|
"options": {
|
|
1359
1360
|
"other": {
|
|
1360
1361
|
"value": [
|
|
@@ -1368,9 +1369,8 @@
|
|
|
1368
1369
|
]
|
|
1369
1370
|
}
|
|
1370
1371
|
},
|
|
1371
|
-
"
|
|
1372
|
-
"
|
|
1373
|
-
"value": "offset"
|
|
1372
|
+
"offset": 0,
|
|
1373
|
+
"pluralType": "cardinal"
|
|
1374
1374
|
},
|
|
1375
1375
|
{
|
|
1376
1376
|
"type": 1,
|
|
@@ -1424,7 +1424,7 @@
|
|
|
1424
1424
|
"E7kKT3Td1FKB37wr": [
|
|
1425
1425
|
{
|
|
1426
1426
|
"type": 0,
|
|
1427
|
-
"value": "
|
|
1427
|
+
"value": "テキストの追加"
|
|
1428
1428
|
}
|
|
1429
1429
|
],
|
|
1430
1430
|
"EBcYgbL0S1T6EpS2": [
|
|
@@ -1435,49 +1435,50 @@
|
|
|
1435
1435
|
],
|
|
1436
1436
|
"ECZzXUfKYwLWko5n": [
|
|
1437
1437
|
{
|
|
1438
|
+
"type": 5,
|
|
1439
|
+
"value": "prefix",
|
|
1438
1440
|
"options": {
|
|
1439
|
-
"
|
|
1441
|
+
"past": {
|
|
1440
1442
|
"value": [
|
|
1441
1443
|
{
|
|
1442
1444
|
"type": 0,
|
|
1443
|
-
"value": "
|
|
1445
|
+
"value": "過去"
|
|
1444
1446
|
}
|
|
1445
1447
|
]
|
|
1446
1448
|
},
|
|
1447
|
-
"
|
|
1449
|
+
"future": {
|
|
1448
1450
|
"value": [
|
|
1449
1451
|
{
|
|
1450
1452
|
"type": 0,
|
|
1451
|
-
"value": "
|
|
1453
|
+
"value": "次の"
|
|
1452
1454
|
}
|
|
1453
1455
|
]
|
|
1454
1456
|
},
|
|
1455
|
-
"
|
|
1457
|
+
"relativeFuture": {
|
|
1456
1458
|
"value": [
|
|
1457
1459
|
{
|
|
1458
1460
|
"type": 0,
|
|
1459
|
-
"value": "
|
|
1461
|
+
"value": "今後"
|
|
1460
1462
|
}
|
|
1461
1463
|
]
|
|
1462
1464
|
},
|
|
1463
|
-
"
|
|
1465
|
+
"other": {
|
|
1464
1466
|
"value": [
|
|
1465
1467
|
{
|
|
1466
1468
|
"type": 0,
|
|
1467
|
-
"value": "
|
|
1469
|
+
"value": " "
|
|
1468
1470
|
}
|
|
1469
1471
|
]
|
|
1470
1472
|
}
|
|
1471
|
-
}
|
|
1472
|
-
"type": 5,
|
|
1473
|
-
"value": "prefix"
|
|
1473
|
+
}
|
|
1474
1474
|
},
|
|
1475
1475
|
{
|
|
1476
1476
|
"type": 0,
|
|
1477
1477
|
"value": " "
|
|
1478
1478
|
},
|
|
1479
1479
|
{
|
|
1480
|
-
"
|
|
1480
|
+
"type": 6,
|
|
1481
|
+
"value": "offset",
|
|
1481
1482
|
"options": {
|
|
1482
1483
|
"other": {
|
|
1483
1484
|
"value": [
|
|
@@ -1491,9 +1492,8 @@
|
|
|
1491
1492
|
]
|
|
1492
1493
|
}
|
|
1493
1494
|
},
|
|
1494
|
-
"
|
|
1495
|
-
"
|
|
1496
|
-
"value": "offset"
|
|
1495
|
+
"offset": 0,
|
|
1496
|
+
"pluralType": "cardinal"
|
|
1497
1497
|
},
|
|
1498
1498
|
{
|
|
1499
1499
|
"type": 1,
|
|
@@ -1533,7 +1533,7 @@
|
|
|
1533
1533
|
"Ew2zazlMNmEr1jna": [
|
|
1534
1534
|
{
|
|
1535
1535
|
"type": 0,
|
|
1536
|
-
"value": "
|
|
1536
|
+
"value": "フィルター値が無効です。このキーでは IPv4 および IPv6 アドレスのみがサポートされています。"
|
|
1537
1537
|
}
|
|
1538
1538
|
],
|
|
1539
1539
|
"ExRdGipMUK2Tldxd": [
|
|
@@ -1557,7 +1557,7 @@
|
|
|
1557
1557
|
"F7t2bxwXuoFZkUcl": [
|
|
1558
1558
|
{
|
|
1559
1559
|
"type": 0,
|
|
1560
|
-
"value": "
|
|
1560
|
+
"value": "ソートのクリア"
|
|
1561
1561
|
}
|
|
1562
1562
|
],
|
|
1563
1563
|
"FJE1QgzcKO8lKmt4": [
|
|
@@ -1597,7 +1597,7 @@
|
|
|
1597
1597
|
"Fr3cNB5JDQGaGwae": [
|
|
1598
1598
|
{
|
|
1599
1599
|
"type": 0,
|
|
1600
|
-
"value": "
|
|
1600
|
+
"value": "検索"
|
|
1601
1601
|
}
|
|
1602
1602
|
],
|
|
1603
1603
|
"FxsZTOljj8LWcZO0": [
|
|
@@ -1724,41 +1724,42 @@
|
|
|
1724
1724
|
],
|
|
1725
1725
|
"HpRsCrp1SmD+zRFu": [
|
|
1726
1726
|
{
|
|
1727
|
+
"type": 5,
|
|
1728
|
+
"value": "prefix",
|
|
1727
1729
|
"options": {
|
|
1728
|
-
"
|
|
1730
|
+
"previous": {
|
|
1729
1731
|
"value": [
|
|
1730
1732
|
{
|
|
1731
1733
|
"type": 0,
|
|
1732
|
-
"value": "
|
|
1734
|
+
"value": "前の"
|
|
1733
1735
|
}
|
|
1734
1736
|
]
|
|
1735
1737
|
},
|
|
1736
|
-
"
|
|
1738
|
+
"next": {
|
|
1737
1739
|
"value": [
|
|
1738
1740
|
{
|
|
1739
1741
|
"type": 0,
|
|
1740
|
-
"value": "
|
|
1742
|
+
"value": "次の"
|
|
1741
1743
|
}
|
|
1742
1744
|
]
|
|
1743
1745
|
},
|
|
1744
|
-
"
|
|
1746
|
+
"other": {
|
|
1745
1747
|
"value": [
|
|
1746
1748
|
{
|
|
1747
1749
|
"type": 0,
|
|
1748
|
-
"value": "
|
|
1750
|
+
"value": "ここ"
|
|
1749
1751
|
}
|
|
1750
1752
|
]
|
|
1751
1753
|
}
|
|
1752
|
-
}
|
|
1753
|
-
"type": 5,
|
|
1754
|
-
"value": "prefix"
|
|
1754
|
+
}
|
|
1755
1755
|
},
|
|
1756
1756
|
{
|
|
1757
1757
|
"type": 0,
|
|
1758
1758
|
"value": " "
|
|
1759
1759
|
},
|
|
1760
1760
|
{
|
|
1761
|
-
"
|
|
1761
|
+
"type": 6,
|
|
1762
|
+
"value": "amount",
|
|
1762
1763
|
"options": {
|
|
1763
1764
|
"other": {
|
|
1764
1765
|
"value": [
|
|
@@ -1772,9 +1773,8 @@
|
|
|
1772
1773
|
]
|
|
1773
1774
|
}
|
|
1774
1775
|
},
|
|
1775
|
-
"
|
|
1776
|
-
"
|
|
1777
|
-
"value": "amount"
|
|
1776
|
+
"offset": 0,
|
|
1777
|
+
"pluralType": "cardinal"
|
|
1778
1778
|
}
|
|
1779
1779
|
],
|
|
1780
1780
|
"HzfsDA+42BHW9xeE": [
|
|
@@ -1800,7 +1800,7 @@
|
|
|
1800
1800
|
"IK8qCfDGg9HgIHQC": [
|
|
1801
1801
|
{
|
|
1802
1802
|
"type": 0,
|
|
1803
|
-
"value": "
|
|
1803
|
+
"value": "URL の追加"
|
|
1804
1804
|
}
|
|
1805
1805
|
],
|
|
1806
1806
|
"IOULVwhMHJJA+fW7": [
|
|
@@ -1836,12 +1836,13 @@
|
|
|
1836
1836
|
"Ir0YCuBX6vOM4t0J": [
|
|
1837
1837
|
{
|
|
1838
1838
|
"type": 0,
|
|
1839
|
-
"value": "
|
|
1839
|
+
"value": "DQL の追加"
|
|
1840
1840
|
}
|
|
1841
1841
|
],
|
|
1842
1842
|
"ItflQisz88wfEcF+": [
|
|
1843
1843
|
{
|
|
1844
|
-
"
|
|
1844
|
+
"type": 6,
|
|
1845
|
+
"value": "offset",
|
|
1845
1846
|
"options": {
|
|
1846
1847
|
"other": {
|
|
1847
1848
|
"value": [
|
|
@@ -1855,15 +1856,14 @@
|
|
|
1855
1856
|
]
|
|
1856
1857
|
}
|
|
1857
1858
|
},
|
|
1858
|
-
"
|
|
1859
|
-
"
|
|
1860
|
-
"value": "offset"
|
|
1859
|
+
"offset": 0,
|
|
1860
|
+
"pluralType": "cardinal"
|
|
1861
1861
|
}
|
|
1862
1862
|
],
|
|
1863
1863
|
"J2NKmHJhslvMRQcz": [
|
|
1864
1864
|
{
|
|
1865
1865
|
"type": 0,
|
|
1866
|
-
"value": "
|
|
1866
|
+
"value": "フィルター値が無効です。このキーでは数値のみがサポートされています。"
|
|
1867
1867
|
}
|
|
1868
1868
|
],
|
|
1869
1869
|
"J9M12SSZNn2dKokI": [
|
|
@@ -1912,7 +1912,8 @@
|
|
|
1912
1912
|
],
|
|
1913
1913
|
"JlWcGe/hRo/kyTD+": [
|
|
1914
1914
|
{
|
|
1915
|
-
"
|
|
1915
|
+
"type": 6,
|
|
1916
|
+
"value": "offset",
|
|
1916
1917
|
"options": {
|
|
1917
1918
|
"other": {
|
|
1918
1919
|
"value": [
|
|
@@ -1926,9 +1927,8 @@
|
|
|
1926
1927
|
]
|
|
1927
1928
|
}
|
|
1928
1929
|
},
|
|
1929
|
-
"
|
|
1930
|
-
"
|
|
1931
|
-
"value": "offset"
|
|
1930
|
+
"offset": 0,
|
|
1931
|
+
"pluralType": "cardinal"
|
|
1932
1932
|
}
|
|
1933
1933
|
],
|
|
1934
1934
|
"JmaVR5qUnuxE3qnb": [
|
|
@@ -1972,17 +1972,13 @@
|
|
|
1972
1972
|
}
|
|
1973
1973
|
],
|
|
1974
1974
|
"KETnWaCwo9qLRQrI": [
|
|
1975
|
-
{
|
|
1976
|
-
"type": 0,
|
|
1977
|
-
"value": "Only dates after "
|
|
1978
|
-
},
|
|
1979
1975
|
{
|
|
1980
1976
|
"type": 1,
|
|
1981
1977
|
"value": "min"
|
|
1982
1978
|
},
|
|
1983
1979
|
{
|
|
1984
1980
|
"type": 0,
|
|
1985
|
-
"value": "
|
|
1981
|
+
"value": " より後の日付のみを使用できます。"
|
|
1986
1982
|
}
|
|
1987
1983
|
],
|
|
1988
1984
|
"KgAwef2nXv2+/xgE": [
|
|
@@ -2003,68 +1999,68 @@
|
|
|
2003
1999
|
"value": "以下にあるすべての行を"
|
|
2004
2000
|
},
|
|
2005
2001
|
{
|
|
2002
|
+
"type": 5,
|
|
2003
|
+
"value": "nextSelection",
|
|
2006
2004
|
"options": {
|
|
2007
|
-
"
|
|
2005
|
+
"select": {
|
|
2008
2006
|
"value": [
|
|
2009
2007
|
{
|
|
2010
2008
|
"type": 0,
|
|
2011
|
-
"value": "
|
|
2009
|
+
"value": "選択"
|
|
2012
2010
|
}
|
|
2013
2011
|
]
|
|
2014
2012
|
},
|
|
2015
|
-
"
|
|
2013
|
+
"deselect": {
|
|
2016
2014
|
"value": [
|
|
2017
2015
|
{
|
|
2018
2016
|
"type": 0,
|
|
2019
|
-
"value": "
|
|
2017
|
+
"value": "選択解除"
|
|
2020
2018
|
}
|
|
2021
2019
|
]
|
|
2022
2020
|
},
|
|
2023
|
-
"
|
|
2021
|
+
"other": {
|
|
2024
2022
|
"value": [
|
|
2025
2023
|
{
|
|
2026
2024
|
"type": 0,
|
|
2027
|
-
"value": "
|
|
2025
|
+
"value": " "
|
|
2028
2026
|
}
|
|
2029
2027
|
]
|
|
2030
2028
|
}
|
|
2031
|
-
}
|
|
2032
|
-
"type": 5,
|
|
2033
|
-
"value": "nextSelection"
|
|
2029
|
+
}
|
|
2034
2030
|
},
|
|
2035
2031
|
{
|
|
2036
2032
|
"type": 0,
|
|
2037
2033
|
"value": ": "
|
|
2038
2034
|
},
|
|
2039
2035
|
{
|
|
2036
|
+
"type": 5,
|
|
2037
|
+
"value": "scope",
|
|
2040
2038
|
"options": {
|
|
2041
|
-
"
|
|
2039
|
+
"page": {
|
|
2042
2040
|
"value": [
|
|
2043
2041
|
{
|
|
2044
2042
|
"type": 0,
|
|
2045
|
-
"value": "
|
|
2043
|
+
"value": "現在のページ"
|
|
2046
2044
|
}
|
|
2047
2045
|
]
|
|
2048
2046
|
},
|
|
2049
|
-
"
|
|
2047
|
+
"all": {
|
|
2050
2048
|
"value": [
|
|
2051
2049
|
{
|
|
2052
2050
|
"type": 0,
|
|
2053
|
-
"value": "
|
|
2051
|
+
"value": "テーブル"
|
|
2054
2052
|
}
|
|
2055
2053
|
]
|
|
2056
2054
|
},
|
|
2057
|
-
"
|
|
2055
|
+
"other": {
|
|
2058
2056
|
"value": [
|
|
2059
2057
|
{
|
|
2060
2058
|
"type": 0,
|
|
2061
|
-
"value": "
|
|
2059
|
+
"value": " "
|
|
2062
2060
|
}
|
|
2063
2061
|
]
|
|
2064
2062
|
}
|
|
2065
|
-
}
|
|
2066
|
-
"type": 5,
|
|
2067
|
-
"value": "scope"
|
|
2063
|
+
}
|
|
2068
2064
|
}
|
|
2069
2065
|
],
|
|
2070
2066
|
"KzBG7IQ4sG79Dlpy": [
|
|
@@ -2087,7 +2083,8 @@
|
|
|
2087
2083
|
],
|
|
2088
2084
|
"L6ZeI3XBOuh0L/CT": [
|
|
2089
2085
|
{
|
|
2090
|
-
"
|
|
2086
|
+
"type": 6,
|
|
2087
|
+
"value": "offset",
|
|
2091
2088
|
"options": {
|
|
2092
2089
|
"other": {
|
|
2093
2090
|
"value": [
|
|
@@ -2101,9 +2098,8 @@
|
|
|
2101
2098
|
]
|
|
2102
2099
|
}
|
|
2103
2100
|
},
|
|
2104
|
-
"
|
|
2105
|
-
"
|
|
2106
|
-
"value": "offset"
|
|
2101
|
+
"offset": 0,
|
|
2102
|
+
"pluralType": "cardinal"
|
|
2107
2103
|
}
|
|
2108
2104
|
],
|
|
2109
2105
|
"LAcIIvdezwZIzQG+": [
|
|
@@ -2231,13 +2227,13 @@
|
|
|
2231
2227
|
"Mh5VCfdpjmGhMnOB": [
|
|
2232
2228
|
{
|
|
2233
2229
|
"type": 0,
|
|
2234
|
-
"value": "
|
|
2230
|
+
"value": "複数列の並び替え"
|
|
2235
2231
|
}
|
|
2236
2232
|
],
|
|
2237
2233
|
"MlwM+/jonCtjJ+L7": [
|
|
2238
2234
|
{
|
|
2239
2235
|
"type": 0,
|
|
2240
|
-
"value": "
|
|
2236
|
+
"value": "時間の追加"
|
|
2241
2237
|
}
|
|
2242
2238
|
],
|
|
2243
2239
|
"MsfOpUQyZ0eEZ/5T": [
|
|
@@ -2315,21 +2311,17 @@
|
|
|
2315
2311
|
"OLs+1KIFFvyM4iJv": [
|
|
2316
2312
|
{
|
|
2317
2313
|
"type": 0,
|
|
2318
|
-
"value": "
|
|
2314
|
+
"value": "ブール値"
|
|
2319
2315
|
}
|
|
2320
2316
|
],
|
|
2321
2317
|
"ONYnUtFidz4+6NmE": [
|
|
2322
|
-
{
|
|
2323
|
-
"type": 0,
|
|
2324
|
-
"value": "Only dates before "
|
|
2325
|
-
},
|
|
2326
2318
|
{
|
|
2327
2319
|
"type": 1,
|
|
2328
2320
|
"value": "max"
|
|
2329
2321
|
},
|
|
2330
2322
|
{
|
|
2331
2323
|
"type": 0,
|
|
2332
|
-
"value": "
|
|
2324
|
+
"value": " より前の日付のみを使用できます。"
|
|
2333
2325
|
}
|
|
2334
2326
|
],
|
|
2335
2327
|
"OVHWs31OggLCgWSq": [
|
|
@@ -2347,7 +2339,7 @@
|
|
|
2347
2339
|
"PCUD8a2q2mhgGcgg": [
|
|
2348
2340
|
{
|
|
2349
2341
|
"type": 0,
|
|
2350
|
-
"value": "
|
|
2342
|
+
"value": "JSX の追加"
|
|
2351
2343
|
}
|
|
2352
2344
|
],
|
|
2353
2345
|
"PjDGLO7+f1/CNRR0": [
|
|
@@ -2427,17 +2419,13 @@
|
|
|
2427
2419
|
}
|
|
2428
2420
|
],
|
|
2429
2421
|
"Qm0/7EQKVXjS9tDM": [
|
|
2430
|
-
{
|
|
2431
|
-
"type": 0,
|
|
2432
|
-
"value": "Only dates between "
|
|
2433
|
-
},
|
|
2434
2422
|
{
|
|
2435
2423
|
"type": 1,
|
|
2436
2424
|
"value": "min"
|
|
2437
2425
|
},
|
|
2438
2426
|
{
|
|
2439
2427
|
"type": 0,
|
|
2440
|
-
"value": "
|
|
2428
|
+
"value": " から "
|
|
2441
2429
|
},
|
|
2442
2430
|
{
|
|
2443
2431
|
"type": 1,
|
|
@@ -2445,7 +2433,7 @@
|
|
|
2445
2433
|
},
|
|
2446
2434
|
{
|
|
2447
2435
|
"type": 0,
|
|
2448
|
-
"value": "
|
|
2436
|
+
"value": " までの日付のみを使用できます。"
|
|
2449
2437
|
}
|
|
2450
2438
|
],
|
|
2451
2439
|
"QsKlSIxE+Yp58CUG": [
|
|
@@ -2520,41 +2508,42 @@
|
|
|
2520
2508
|
],
|
|
2521
2509
|
"Ro/9HWdwiItr3Ter": [
|
|
2522
2510
|
{
|
|
2511
|
+
"type": 5,
|
|
2512
|
+
"value": "prefix",
|
|
2523
2513
|
"options": {
|
|
2524
|
-
"
|
|
2514
|
+
"previous": {
|
|
2525
2515
|
"value": [
|
|
2526
2516
|
{
|
|
2527
2517
|
"type": 0,
|
|
2528
|
-
"value": "
|
|
2518
|
+
"value": "前の"
|
|
2529
2519
|
}
|
|
2530
2520
|
]
|
|
2531
2521
|
},
|
|
2532
|
-
"
|
|
2522
|
+
"next": {
|
|
2533
2523
|
"value": [
|
|
2534
2524
|
{
|
|
2535
2525
|
"type": 0,
|
|
2536
|
-
"value": "
|
|
2526
|
+
"value": "次の"
|
|
2537
2527
|
}
|
|
2538
2528
|
]
|
|
2539
2529
|
},
|
|
2540
|
-
"
|
|
2530
|
+
"other": {
|
|
2541
2531
|
"value": [
|
|
2542
2532
|
{
|
|
2543
2533
|
"type": 0,
|
|
2544
|
-
"value": "
|
|
2534
|
+
"value": "ここ"
|
|
2545
2535
|
}
|
|
2546
2536
|
]
|
|
2547
2537
|
}
|
|
2548
|
-
}
|
|
2549
|
-
"type": 5,
|
|
2550
|
-
"value": "prefix"
|
|
2538
|
+
}
|
|
2551
2539
|
},
|
|
2552
2540
|
{
|
|
2553
2541
|
"type": 0,
|
|
2554
2542
|
"value": " "
|
|
2555
2543
|
},
|
|
2556
2544
|
{
|
|
2557
|
-
"
|
|
2545
|
+
"type": 6,
|
|
2546
|
+
"value": "amount",
|
|
2558
2547
|
"options": {
|
|
2559
2548
|
"other": {
|
|
2560
2549
|
"value": [
|
|
@@ -2568,9 +2557,8 @@
|
|
|
2568
2557
|
]
|
|
2569
2558
|
}
|
|
2570
2559
|
},
|
|
2571
|
-
"
|
|
2572
|
-
"
|
|
2573
|
-
"value": "amount"
|
|
2560
|
+
"offset": 0,
|
|
2561
|
+
"pluralType": "cardinal"
|
|
2574
2562
|
}
|
|
2575
2563
|
],
|
|
2576
2564
|
"RoNWrUBQf8gR7lxZ": [
|
|
@@ -2582,7 +2570,7 @@
|
|
|
2582
2570
|
"Rrlag1wRQFMpYHX7": [
|
|
2583
2571
|
{
|
|
2584
2572
|
"type": 0,
|
|
2585
|
-
"value": "
|
|
2573
|
+
"value": "座標をコピー"
|
|
2586
2574
|
}
|
|
2587
2575
|
],
|
|
2588
2576
|
"RuGHpilISAqb1dDM": [
|
|
@@ -2617,49 +2605,50 @@
|
|
|
2617
2605
|
],
|
|
2618
2606
|
"SPSPRmp+gABk1LGQ": [
|
|
2619
2607
|
{
|
|
2608
|
+
"type": 5,
|
|
2609
|
+
"value": "prefix",
|
|
2620
2610
|
"options": {
|
|
2621
|
-
"
|
|
2611
|
+
"past": {
|
|
2622
2612
|
"value": [
|
|
2623
2613
|
{
|
|
2624
2614
|
"type": 0,
|
|
2625
|
-
"value": "
|
|
2615
|
+
"value": "過去"
|
|
2626
2616
|
}
|
|
2627
2617
|
]
|
|
2628
2618
|
},
|
|
2629
|
-
"
|
|
2619
|
+
"future": {
|
|
2630
2620
|
"value": [
|
|
2631
2621
|
{
|
|
2632
2622
|
"type": 0,
|
|
2633
|
-
"value": "
|
|
2623
|
+
"value": "次の"
|
|
2634
2624
|
}
|
|
2635
2625
|
]
|
|
2636
2626
|
},
|
|
2637
|
-
"
|
|
2627
|
+
"relativeFuture": {
|
|
2638
2628
|
"value": [
|
|
2639
2629
|
{
|
|
2640
2630
|
"type": 0,
|
|
2641
|
-
"value": "
|
|
2631
|
+
"value": "今後"
|
|
2642
2632
|
}
|
|
2643
2633
|
]
|
|
2644
2634
|
},
|
|
2645
|
-
"
|
|
2635
|
+
"other": {
|
|
2646
2636
|
"value": [
|
|
2647
2637
|
{
|
|
2648
2638
|
"type": 0,
|
|
2649
|
-
"value": "
|
|
2639
|
+
"value": " "
|
|
2650
2640
|
}
|
|
2651
2641
|
]
|
|
2652
2642
|
}
|
|
2653
|
-
}
|
|
2654
|
-
"type": 5,
|
|
2655
|
-
"value": "prefix"
|
|
2643
|
+
}
|
|
2656
2644
|
},
|
|
2657
2645
|
{
|
|
2658
2646
|
"type": 0,
|
|
2659
2647
|
"value": " "
|
|
2660
2648
|
},
|
|
2661
2649
|
{
|
|
2662
|
-
"
|
|
2650
|
+
"type": 6,
|
|
2651
|
+
"value": "offset",
|
|
2663
2652
|
"options": {
|
|
2664
2653
|
"other": {
|
|
2665
2654
|
"value": [
|
|
@@ -2673,9 +2662,8 @@
|
|
|
2673
2662
|
]
|
|
2674
2663
|
}
|
|
2675
2664
|
},
|
|
2676
|
-
"
|
|
2677
|
-
"
|
|
2678
|
-
"value": "offset"
|
|
2665
|
+
"offset": 0,
|
|
2666
|
+
"pluralType": "cardinal"
|
|
2679
2667
|
},
|
|
2680
2668
|
{
|
|
2681
2669
|
"type": 1,
|
|
@@ -2750,7 +2738,8 @@
|
|
|
2750
2738
|
],
|
|
2751
2739
|
"TuHiu5OflYhkrvKy": [
|
|
2752
2740
|
{
|
|
2753
|
-
"
|
|
2741
|
+
"type": 6,
|
|
2742
|
+
"value": "offset",
|
|
2754
2743
|
"options": {
|
|
2755
2744
|
"other": {
|
|
2756
2745
|
"value": [
|
|
@@ -2764,15 +2753,14 @@
|
|
|
2764
2753
|
]
|
|
2765
2754
|
}
|
|
2766
2755
|
},
|
|
2767
|
-
"
|
|
2768
|
-
"
|
|
2769
|
-
"value": "offset"
|
|
2756
|
+
"offset": 0,
|
|
2757
|
+
"pluralType": "cardinal"
|
|
2770
2758
|
}
|
|
2771
2759
|
],
|
|
2772
2760
|
"U09aNQxYT1yrJ4eJ": [
|
|
2773
2761
|
{
|
|
2774
2762
|
"type": 0,
|
|
2775
|
-
"value": "
|
|
2763
|
+
"value": "結果が見つかりませんでした"
|
|
2776
2764
|
}
|
|
2777
2765
|
],
|
|
2778
2766
|
"U4LTHt7BSgC51Yri": [
|
|
@@ -2825,41 +2813,42 @@
|
|
|
2825
2813
|
],
|
|
2826
2814
|
"V09xUXtpHEVFRBsh": [
|
|
2827
2815
|
{
|
|
2816
|
+
"type": 5,
|
|
2817
|
+
"value": "prefix",
|
|
2828
2818
|
"options": {
|
|
2829
|
-
"
|
|
2819
|
+
"previous": {
|
|
2830
2820
|
"value": [
|
|
2831
2821
|
{
|
|
2832
2822
|
"type": 0,
|
|
2833
|
-
"value": "
|
|
2823
|
+
"value": "前の"
|
|
2834
2824
|
}
|
|
2835
2825
|
]
|
|
2836
2826
|
},
|
|
2837
|
-
"
|
|
2827
|
+
"next": {
|
|
2838
2828
|
"value": [
|
|
2839
2829
|
{
|
|
2840
2830
|
"type": 0,
|
|
2841
|
-
"value": "
|
|
2831
|
+
"value": "次の"
|
|
2842
2832
|
}
|
|
2843
2833
|
]
|
|
2844
2834
|
},
|
|
2845
|
-
"
|
|
2835
|
+
"other": {
|
|
2846
2836
|
"value": [
|
|
2847
2837
|
{
|
|
2848
2838
|
"type": 0,
|
|
2849
|
-
"value": "
|
|
2839
|
+
"value": "ここ"
|
|
2850
2840
|
}
|
|
2851
2841
|
]
|
|
2852
2842
|
}
|
|
2853
|
-
}
|
|
2854
|
-
"type": 5,
|
|
2855
|
-
"value": "prefix"
|
|
2843
|
+
}
|
|
2856
2844
|
},
|
|
2857
2845
|
{
|
|
2858
2846
|
"type": 0,
|
|
2859
2847
|
"value": " "
|
|
2860
2848
|
},
|
|
2861
2849
|
{
|
|
2862
|
-
"
|
|
2850
|
+
"type": 6,
|
|
2851
|
+
"value": "amount",
|
|
2863
2852
|
"options": {
|
|
2864
2853
|
"other": {
|
|
2865
2854
|
"value": [
|
|
@@ -2873,48 +2862,48 @@
|
|
|
2873
2862
|
]
|
|
2874
2863
|
}
|
|
2875
2864
|
},
|
|
2876
|
-
"
|
|
2877
|
-
"
|
|
2878
|
-
"value": "amount"
|
|
2865
|
+
"offset": 0,
|
|
2866
|
+
"pluralType": "cardinal"
|
|
2879
2867
|
}
|
|
2880
2868
|
],
|
|
2881
2869
|
"V4fGRjKxu0XkK3nm": [
|
|
2882
2870
|
{
|
|
2871
|
+
"type": 5,
|
|
2872
|
+
"value": "prefix",
|
|
2883
2873
|
"options": {
|
|
2884
|
-
"
|
|
2874
|
+
"previous": {
|
|
2885
2875
|
"value": [
|
|
2886
2876
|
{
|
|
2887
2877
|
"type": 0,
|
|
2888
|
-
"value": "
|
|
2878
|
+
"value": "前の"
|
|
2889
2879
|
}
|
|
2890
2880
|
]
|
|
2891
2881
|
},
|
|
2892
|
-
"
|
|
2882
|
+
"next": {
|
|
2893
2883
|
"value": [
|
|
2894
2884
|
{
|
|
2895
2885
|
"type": 0,
|
|
2896
|
-
"value": "
|
|
2886
|
+
"value": "次の"
|
|
2897
2887
|
}
|
|
2898
2888
|
]
|
|
2899
2889
|
},
|
|
2900
|
-
"
|
|
2890
|
+
"other": {
|
|
2901
2891
|
"value": [
|
|
2902
2892
|
{
|
|
2903
2893
|
"type": 0,
|
|
2904
|
-
"value": "
|
|
2894
|
+
"value": "ここ"
|
|
2905
2895
|
}
|
|
2906
2896
|
]
|
|
2907
2897
|
}
|
|
2908
|
-
}
|
|
2909
|
-
"type": 5,
|
|
2910
|
-
"value": "prefix"
|
|
2898
|
+
}
|
|
2911
2899
|
},
|
|
2912
2900
|
{
|
|
2913
2901
|
"type": 0,
|
|
2914
2902
|
"value": " "
|
|
2915
2903
|
},
|
|
2916
2904
|
{
|
|
2917
|
-
"
|
|
2905
|
+
"type": 6,
|
|
2906
|
+
"value": "amount",
|
|
2918
2907
|
"options": {
|
|
2919
2908
|
"other": {
|
|
2920
2909
|
"value": [
|
|
@@ -2928,9 +2917,8 @@
|
|
|
2928
2917
|
]
|
|
2929
2918
|
}
|
|
2930
2919
|
},
|
|
2931
|
-
"
|
|
2932
|
-
"
|
|
2933
|
-
"value": "amount"
|
|
2920
|
+
"offset": 0,
|
|
2921
|
+
"pluralType": "cardinal"
|
|
2934
2922
|
}
|
|
2935
2923
|
],
|
|
2936
2924
|
"V6W9BJ4sF8Y+2/Si": [
|
|
@@ -3072,13 +3060,13 @@
|
|
|
3072
3060
|
"X9SZ3eLw4rz/ODZQ": [
|
|
3073
3061
|
{
|
|
3074
3062
|
"type": 0,
|
|
3075
|
-
"value": "
|
|
3063
|
+
"value": "日時の追加"
|
|
3076
3064
|
}
|
|
3077
3065
|
],
|
|
3078
3066
|
"XC7nO0JIPg0R0kBw": [
|
|
3079
3067
|
{
|
|
3080
3068
|
"type": 0,
|
|
3081
|
-
"value": "
|
|
3069
|
+
"value": "日付の追加"
|
|
3082
3070
|
}
|
|
3083
3071
|
],
|
|
3084
3072
|
"XOE5zKTRmqYLBnRf": [
|
|
@@ -3112,7 +3100,7 @@
|
|
|
3112
3100
|
"XXsHBFWgU7wZSd8V": [
|
|
3113
3101
|
{
|
|
3114
3102
|
"type": 0,
|
|
3115
|
-
"value": "
|
|
3103
|
+
"value": "JSON の追加"
|
|
3116
3104
|
}
|
|
3117
3105
|
],
|
|
3118
3106
|
"Xug47ebOKpTzuLj1": [
|
|
@@ -3157,26 +3145,26 @@
|
|
|
3157
3145
|
"value": "通知を "
|
|
3158
3146
|
},
|
|
3159
3147
|
{
|
|
3148
|
+
"type": 5,
|
|
3149
|
+
"value": "notificationEnabled",
|
|
3160
3150
|
"options": {
|
|
3161
|
-
"
|
|
3151
|
+
"true": {
|
|
3162
3152
|
"value": [
|
|
3163
3153
|
{
|
|
3164
3154
|
"type": 0,
|
|
3165
|
-
"value": "
|
|
3155
|
+
"value": "オフ"
|
|
3166
3156
|
}
|
|
3167
3157
|
]
|
|
3168
3158
|
},
|
|
3169
|
-
"
|
|
3159
|
+
"other": {
|
|
3170
3160
|
"value": [
|
|
3171
3161
|
{
|
|
3172
3162
|
"type": 0,
|
|
3173
|
-
"value": "
|
|
3163
|
+
"value": "オン"
|
|
3174
3164
|
}
|
|
3175
3165
|
]
|
|
3176
3166
|
}
|
|
3177
|
-
}
|
|
3178
|
-
"type": 5,
|
|
3179
|
-
"value": "notificationEnabled"
|
|
3167
|
+
}
|
|
3180
3168
|
},
|
|
3181
3169
|
{
|
|
3182
3170
|
"type": 0,
|
|
@@ -3195,6 +3183,8 @@
|
|
|
3195
3183
|
"value": "サブ行すべてを"
|
|
3196
3184
|
},
|
|
3197
3185
|
{
|
|
3186
|
+
"type": 5,
|
|
3187
|
+
"value": "expandState",
|
|
3198
3188
|
"options": {
|
|
3199
3189
|
"expand": {
|
|
3200
3190
|
"value": [
|
|
@@ -3212,9 +3202,7 @@
|
|
|
3212
3202
|
}
|
|
3213
3203
|
]
|
|
3214
3204
|
}
|
|
3215
|
-
}
|
|
3216
|
-
"type": 5,
|
|
3217
|
-
"value": "expandState"
|
|
3205
|
+
}
|
|
3218
3206
|
}
|
|
3219
3207
|
],
|
|
3220
3208
|
"Ym3RUHtaLVFsGlaM": [
|
|
@@ -3230,7 +3218,7 @@
|
|
|
3230
3218
|
"YqEOqKR9iZt3qY0t": [
|
|
3231
3219
|
{
|
|
3232
3220
|
"type": 0,
|
|
3233
|
-
"value": "
|
|
3221
|
+
"value": "テーブル データをダウンロード中"
|
|
3234
3222
|
}
|
|
3235
3223
|
],
|
|
3236
3224
|
"ZFLXYT4zoCbKvGNP": [
|
|
@@ -3280,31 +3268,31 @@
|
|
|
3280
3268
|
"ZrxrsiqabWfxne/q": [
|
|
3281
3269
|
{
|
|
3282
3270
|
"type": 0,
|
|
3283
|
-
"value": "
|
|
3271
|
+
"value": "Markdown の追加"
|
|
3284
3272
|
}
|
|
3285
3273
|
],
|
|
3286
3274
|
"ZsZq59BFxrIW5JzO": [
|
|
3287
3275
|
{
|
|
3276
|
+
"type": 5,
|
|
3277
|
+
"value": "isUnpinned",
|
|
3288
3278
|
"options": {
|
|
3289
|
-
"
|
|
3279
|
+
"true": {
|
|
3290
3280
|
"value": [
|
|
3291
3281
|
{
|
|
3292
3282
|
"type": 0,
|
|
3293
|
-
"value": "
|
|
3283
|
+
"value": "列のピン留め"
|
|
3294
3284
|
}
|
|
3295
3285
|
]
|
|
3296
3286
|
},
|
|
3297
|
-
"
|
|
3287
|
+
"other": {
|
|
3298
3288
|
"value": [
|
|
3299
3289
|
{
|
|
3300
3290
|
"type": 0,
|
|
3301
|
-
"value": "
|
|
3291
|
+
"value": "列のピン留め/ピン留め解除"
|
|
3302
3292
|
}
|
|
3303
3293
|
]
|
|
3304
3294
|
}
|
|
3305
|
-
}
|
|
3306
|
-
"type": 5,
|
|
3307
|
-
"value": "isUnpinned"
|
|
3295
|
+
}
|
|
3308
3296
|
}
|
|
3309
3297
|
],
|
|
3310
3298
|
"ZvsC1dVcKeywqOWW": [
|
|
@@ -3337,49 +3325,50 @@
|
|
|
3337
3325
|
],
|
|
3338
3326
|
"aNWYfuuoyg/TEftI": [
|
|
3339
3327
|
{
|
|
3328
|
+
"type": 5,
|
|
3329
|
+
"value": "prefix",
|
|
3340
3330
|
"options": {
|
|
3341
|
-
"
|
|
3331
|
+
"past": {
|
|
3342
3332
|
"value": [
|
|
3343
3333
|
{
|
|
3344
3334
|
"type": 0,
|
|
3345
|
-
"value": "
|
|
3335
|
+
"value": "過去"
|
|
3346
3336
|
}
|
|
3347
3337
|
]
|
|
3348
3338
|
},
|
|
3349
|
-
"
|
|
3339
|
+
"future": {
|
|
3350
3340
|
"value": [
|
|
3351
3341
|
{
|
|
3352
3342
|
"type": 0,
|
|
3353
|
-
"value": "
|
|
3343
|
+
"value": "次の"
|
|
3354
3344
|
}
|
|
3355
3345
|
]
|
|
3356
3346
|
},
|
|
3357
|
-
"
|
|
3347
|
+
"relativeFuture": {
|
|
3358
3348
|
"value": [
|
|
3359
3349
|
{
|
|
3360
3350
|
"type": 0,
|
|
3361
|
-
"value": "
|
|
3351
|
+
"value": "今後"
|
|
3362
3352
|
}
|
|
3363
3353
|
]
|
|
3364
3354
|
},
|
|
3365
|
-
"
|
|
3355
|
+
"other": {
|
|
3366
3356
|
"value": [
|
|
3367
3357
|
{
|
|
3368
3358
|
"type": 0,
|
|
3369
|
-
"value": "
|
|
3359
|
+
"value": " "
|
|
3370
3360
|
}
|
|
3371
3361
|
]
|
|
3372
3362
|
}
|
|
3373
|
-
}
|
|
3374
|
-
"type": 5,
|
|
3375
|
-
"value": "prefix"
|
|
3363
|
+
}
|
|
3376
3364
|
},
|
|
3377
3365
|
{
|
|
3378
3366
|
"type": 0,
|
|
3379
3367
|
"value": " "
|
|
3380
3368
|
},
|
|
3381
3369
|
{
|
|
3382
|
-
"
|
|
3370
|
+
"type": 6,
|
|
3371
|
+
"value": "offset",
|
|
3383
3372
|
"options": {
|
|
3384
3373
|
"other": {
|
|
3385
3374
|
"value": [
|
|
@@ -3393,9 +3382,8 @@
|
|
|
3393
3382
|
]
|
|
3394
3383
|
}
|
|
3395
3384
|
},
|
|
3396
|
-
"
|
|
3397
|
-
"
|
|
3398
|
-
"value": "offset"
|
|
3385
|
+
"offset": 0,
|
|
3386
|
+
"pluralType": "cardinal"
|
|
3399
3387
|
},
|
|
3400
3388
|
{
|
|
3401
3389
|
"type": 1,
|
|
@@ -3405,7 +3393,7 @@
|
|
|
3405
3393
|
"aNafGo8pDA0dJBLo": [
|
|
3406
3394
|
{
|
|
3407
3395
|
"type": 0,
|
|
3408
|
-
"value": "
|
|
3396
|
+
"value": "テキスト"
|
|
3409
3397
|
}
|
|
3410
3398
|
],
|
|
3411
3399
|
"aRc3KoQgfpti2E9M": [
|
|
@@ -3435,7 +3423,7 @@
|
|
|
3435
3423
|
"ait1f+4Ly9rcloeq": [
|
|
3436
3424
|
{
|
|
3437
3425
|
"type": 0,
|
|
3438
|
-
"value": "
|
|
3426
|
+
"value": "実行時間"
|
|
3439
3427
|
}
|
|
3440
3428
|
],
|
|
3441
3429
|
"aj7w8W3lv+e41SJB": [
|
|
@@ -3444,32 +3432,32 @@
|
|
|
3444
3432
|
"value": "フィルターを"
|
|
3445
3433
|
},
|
|
3446
3434
|
{
|
|
3435
|
+
"type": 5,
|
|
3436
|
+
"value": "isPinned",
|
|
3447
3437
|
"options": {
|
|
3448
|
-
"
|
|
3438
|
+
"true": {
|
|
3449
3439
|
"value": [
|
|
3450
3440
|
{
|
|
3451
3441
|
"type": 0,
|
|
3452
|
-
"value": "
|
|
3442
|
+
"value": "ピン留め解除"
|
|
3453
3443
|
}
|
|
3454
3444
|
]
|
|
3455
3445
|
},
|
|
3456
|
-
"
|
|
3446
|
+
"other": {
|
|
3457
3447
|
"value": [
|
|
3458
3448
|
{
|
|
3459
3449
|
"type": 0,
|
|
3460
|
-
"value": "
|
|
3450
|
+
"value": "ピン留めする"
|
|
3461
3451
|
}
|
|
3462
3452
|
]
|
|
3463
3453
|
}
|
|
3464
|
-
}
|
|
3465
|
-
"type": 5,
|
|
3466
|
-
"value": "isPinned"
|
|
3454
|
+
}
|
|
3467
3455
|
}
|
|
3468
3456
|
],
|
|
3469
3457
|
"ajJBzmvnE0ruvyfn": [
|
|
3470
3458
|
{
|
|
3471
3459
|
"type": 0,
|
|
3472
|
-
"value": "
|
|
3460
|
+
"value": "フィルター値が無効です。このキーでは SmartscapeId のみがサポートされています。"
|
|
3473
3461
|
}
|
|
3474
3462
|
],
|
|
3475
3463
|
"an4qwOaAQd8t60m5": [
|
|
@@ -3478,26 +3466,26 @@
|
|
|
3478
3466
|
"value": "行を"
|
|
3479
3467
|
},
|
|
3480
3468
|
{
|
|
3469
|
+
"type": 5,
|
|
3470
|
+
"value": "isActivated",
|
|
3481
3471
|
"options": {
|
|
3482
|
-
"
|
|
3472
|
+
"true": {
|
|
3483
3473
|
"value": [
|
|
3484
3474
|
{
|
|
3485
3475
|
"type": 0,
|
|
3486
|
-
"value": "
|
|
3476
|
+
"value": "非アクティブ化"
|
|
3487
3477
|
}
|
|
3488
3478
|
]
|
|
3489
3479
|
},
|
|
3490
|
-
"
|
|
3480
|
+
"other": {
|
|
3491
3481
|
"value": [
|
|
3492
3482
|
{
|
|
3493
3483
|
"type": 0,
|
|
3494
|
-
"value": "
|
|
3484
|
+
"value": "アクティブ化"
|
|
3495
3485
|
}
|
|
3496
3486
|
]
|
|
3497
3487
|
}
|
|
3498
|
-
}
|
|
3499
|
-
"type": 5,
|
|
3500
|
-
"value": "isActivated"
|
|
3488
|
+
}
|
|
3501
3489
|
},
|
|
3502
3490
|
{
|
|
3503
3491
|
"type": 0,
|
|
@@ -3522,7 +3510,8 @@
|
|
|
3522
3510
|
"value": " "
|
|
3523
3511
|
},
|
|
3524
3512
|
{
|
|
3525
|
-
"
|
|
3513
|
+
"type": 6,
|
|
3514
|
+
"value": "hiddenColumnCount",
|
|
3526
3515
|
"options": {
|
|
3527
3516
|
"other": {
|
|
3528
3517
|
"value": [
|
|
@@ -3533,9 +3522,8 @@
|
|
|
3533
3522
|
]
|
|
3534
3523
|
}
|
|
3535
3524
|
},
|
|
3536
|
-
"
|
|
3537
|
-
"
|
|
3538
|
-
"value": "hiddenColumnCount"
|
|
3525
|
+
"offset": 0,
|
|
3526
|
+
"pluralType": "cardinal"
|
|
3539
3527
|
},
|
|
3540
3528
|
{
|
|
3541
3529
|
"type": 0,
|
|
@@ -3551,39 +3539,39 @@
|
|
|
3551
3539
|
"b5WOrn1oLsbJsvD8": [
|
|
3552
3540
|
{
|
|
3553
3541
|
"type": 0,
|
|
3554
|
-
"value": "
|
|
3542
|
+
"value": "降順に変更"
|
|
3555
3543
|
}
|
|
3556
3544
|
],
|
|
3557
3545
|
"b8jNkkwzLHYDkasb": [
|
|
3558
3546
|
{
|
|
3547
|
+
"type": 5,
|
|
3548
|
+
"value": "isExpanded",
|
|
3559
3549
|
"options": {
|
|
3560
|
-
"
|
|
3550
|
+
"true": {
|
|
3561
3551
|
"value": [
|
|
3562
3552
|
{
|
|
3563
3553
|
"type": 0,
|
|
3564
|
-
"value": "
|
|
3554
|
+
"value": "少なく"
|
|
3565
3555
|
}
|
|
3566
3556
|
]
|
|
3567
3557
|
},
|
|
3568
|
-
"
|
|
3558
|
+
"false": {
|
|
3569
3559
|
"value": [
|
|
3570
3560
|
{
|
|
3571
3561
|
"type": 0,
|
|
3572
|
-
"value": "
|
|
3562
|
+
"value": "さらに"
|
|
3573
3563
|
}
|
|
3574
3564
|
]
|
|
3575
3565
|
},
|
|
3576
|
-
"
|
|
3566
|
+
"other": {
|
|
3577
3567
|
"value": [
|
|
3578
3568
|
{
|
|
3579
3569
|
"type": 0,
|
|
3580
|
-
"value": "
|
|
3570
|
+
"value": " "
|
|
3581
3571
|
}
|
|
3582
3572
|
]
|
|
3583
3573
|
}
|
|
3584
|
-
}
|
|
3585
|
-
"type": 5,
|
|
3586
|
-
"value": "isExpanded"
|
|
3574
|
+
}
|
|
3587
3575
|
},
|
|
3588
3576
|
{
|
|
3589
3577
|
"type": 0,
|
|
@@ -3642,12 +3630,6 @@
|
|
|
3642
3630
|
"value": "ロードしています"
|
|
3643
3631
|
}
|
|
3644
3632
|
],
|
|
3645
|
-
"czzQ2HD9zu/eqPFy": [
|
|
3646
|
-
{
|
|
3647
|
-
"type": 0,
|
|
3648
|
-
"value": "Loading options"
|
|
3649
|
-
}
|
|
3650
|
-
],
|
|
3651
3633
|
"d4ODG2WkdaedSe5s": [
|
|
3652
3634
|
{
|
|
3653
3635
|
"type": 0,
|
|
@@ -3763,7 +3745,7 @@
|
|
|
3763
3745
|
"fIr5C8WQPnYfAMr5": [
|
|
3764
3746
|
{
|
|
3765
3747
|
"type": 0,
|
|
3766
|
-
"value": "
|
|
3748
|
+
"value": "コードの追加"
|
|
3767
3749
|
}
|
|
3768
3750
|
],
|
|
3769
3751
|
"fJPc1Tw4jSAEp5KQ": [
|
|
@@ -3799,7 +3781,7 @@
|
|
|
3799
3781
|
"fg8x33u8t5tYtlE9": [
|
|
3800
3782
|
{
|
|
3801
3783
|
"type": 0,
|
|
3802
|
-
"value": "
|
|
3784
|
+
"value": "JavaScript の追加"
|
|
3803
3785
|
}
|
|
3804
3786
|
],
|
|
3805
3787
|
"fzkORq3AsvX/NtMB": [
|
|
@@ -3828,7 +3810,8 @@
|
|
|
3828
3810
|
],
|
|
3829
3811
|
"g2fLjUNdQ/qPFLMn": [
|
|
3830
3812
|
{
|
|
3831
|
-
"
|
|
3813
|
+
"type": 6,
|
|
3814
|
+
"value": "noOfRows",
|
|
3832
3815
|
"options": {
|
|
3833
3816
|
"one": {
|
|
3834
3817
|
"value": [
|
|
@@ -3853,9 +3836,8 @@
|
|
|
3853
3836
|
]
|
|
3854
3837
|
}
|
|
3855
3838
|
},
|
|
3856
|
-
"
|
|
3857
|
-
"
|
|
3858
|
-
"value": "noOfRows"
|
|
3839
|
+
"offset": 0,
|
|
3840
|
+
"pluralType": "cardinal"
|
|
3859
3841
|
}
|
|
3860
3842
|
],
|
|
3861
3843
|
"g5VGRS4KVxg346o4": [
|
|
@@ -3872,7 +3854,8 @@
|
|
|
3872
3854
|
],
|
|
3873
3855
|
"gIQd1giAq7WNDZp6": [
|
|
3874
3856
|
{
|
|
3875
|
-
"
|
|
3857
|
+
"type": 6,
|
|
3858
|
+
"value": "offset",
|
|
3876
3859
|
"options": {
|
|
3877
3860
|
"other": {
|
|
3878
3861
|
"value": [
|
|
@@ -3886,9 +3869,8 @@
|
|
|
3886
3869
|
]
|
|
3887
3870
|
}
|
|
3888
3871
|
},
|
|
3889
|
-
"
|
|
3890
|
-
"
|
|
3891
|
-
"value": "offset"
|
|
3872
|
+
"offset": 0,
|
|
3873
|
+
"pluralType": "cardinal"
|
|
3892
3874
|
}
|
|
3893
3875
|
],
|
|
3894
3876
|
"gbREY3JeG/Gnn5VH": [
|
|
@@ -3914,7 +3896,7 @@
|
|
|
3914
3896
|
"ggfg/kIzwBCNyGCm": [
|
|
3915
3897
|
{
|
|
3916
3898
|
"type": 0,
|
|
3917
|
-
"value": "
|
|
3899
|
+
"value": "オプションの選択"
|
|
3918
3900
|
}
|
|
3919
3901
|
],
|
|
3920
3902
|
"gllJsm/rrRr/LIng": [
|
|
@@ -3945,7 +3927,8 @@
|
|
|
3945
3927
|
],
|
|
3946
3928
|
"gzgHXY7+xENWvOfC": [
|
|
3947
3929
|
{
|
|
3948
|
-
"
|
|
3930
|
+
"type": 6,
|
|
3931
|
+
"value": "offset",
|
|
3949
3932
|
"options": {
|
|
3950
3933
|
"other": {
|
|
3951
3934
|
"value": [
|
|
@@ -3959,21 +3942,20 @@
|
|
|
3959
3942
|
]
|
|
3960
3943
|
}
|
|
3961
3944
|
},
|
|
3962
|
-
"
|
|
3963
|
-
"
|
|
3964
|
-
"value": "offset"
|
|
3945
|
+
"offset": 0,
|
|
3946
|
+
"pluralType": "cardinal"
|
|
3965
3947
|
}
|
|
3966
3948
|
],
|
|
3967
3949
|
"hIBEZw/eT6Nb+dz3": [
|
|
3968
3950
|
{
|
|
3969
3951
|
"type": 0,
|
|
3970
|
-
"value": "(
|
|
3952
|
+
"value": "(読み取り専用)"
|
|
3971
3953
|
}
|
|
3972
3954
|
],
|
|
3973
3955
|
"hIK5810KwQytwP1q": [
|
|
3974
3956
|
{
|
|
3975
3957
|
"type": 0,
|
|
3976
|
-
"value": "
|
|
3958
|
+
"value": "このフィールドに入力してください。"
|
|
3977
3959
|
}
|
|
3978
3960
|
],
|
|
3979
3961
|
"hi3IodOo0ygpihhY": [
|
|
@@ -3997,7 +3979,7 @@
|
|
|
3997
3979
|
"iO0lZy6i8mjT0jzt": [
|
|
3998
3980
|
{
|
|
3999
3981
|
"type": 0,
|
|
4000
|
-
"value": "
|
|
3982
|
+
"value": "昇順に変更"
|
|
4001
3983
|
}
|
|
4002
3984
|
],
|
|
4003
3985
|
"iQMNfVmL/0auzXXf": [
|
|
@@ -4046,49 +4028,50 @@
|
|
|
4046
4028
|
],
|
|
4047
4029
|
"jZte4Ia6a1UkBwpv": [
|
|
4048
4030
|
{
|
|
4031
|
+
"type": 5,
|
|
4032
|
+
"value": "prefix",
|
|
4049
4033
|
"options": {
|
|
4050
|
-
"
|
|
4034
|
+
"past": {
|
|
4051
4035
|
"value": [
|
|
4052
4036
|
{
|
|
4053
4037
|
"type": 0,
|
|
4054
|
-
"value": "
|
|
4038
|
+
"value": "過去"
|
|
4055
4039
|
}
|
|
4056
4040
|
]
|
|
4057
4041
|
},
|
|
4058
|
-
"
|
|
4042
|
+
"future": {
|
|
4059
4043
|
"value": [
|
|
4060
4044
|
{
|
|
4061
4045
|
"type": 0,
|
|
4062
|
-
"value": "
|
|
4046
|
+
"value": "次の"
|
|
4063
4047
|
}
|
|
4064
4048
|
]
|
|
4065
4049
|
},
|
|
4066
|
-
"
|
|
4050
|
+
"relativeFuture": {
|
|
4067
4051
|
"value": [
|
|
4068
4052
|
{
|
|
4069
4053
|
"type": 0,
|
|
4070
|
-
"value": "
|
|
4054
|
+
"value": "今後"
|
|
4071
4055
|
}
|
|
4072
4056
|
]
|
|
4073
4057
|
},
|
|
4074
|
-
"
|
|
4058
|
+
"other": {
|
|
4075
4059
|
"value": [
|
|
4076
4060
|
{
|
|
4077
4061
|
"type": 0,
|
|
4078
|
-
"value": "
|
|
4062
|
+
"value": " "
|
|
4079
4063
|
}
|
|
4080
4064
|
]
|
|
4081
4065
|
}
|
|
4082
|
-
}
|
|
4083
|
-
"type": 5,
|
|
4084
|
-
"value": "prefix"
|
|
4066
|
+
}
|
|
4085
4067
|
},
|
|
4086
4068
|
{
|
|
4087
4069
|
"type": 0,
|
|
4088
4070
|
"value": " "
|
|
4089
4071
|
},
|
|
4090
4072
|
{
|
|
4091
|
-
"
|
|
4073
|
+
"type": 6,
|
|
4074
|
+
"value": "offset",
|
|
4092
4075
|
"options": {
|
|
4093
4076
|
"other": {
|
|
4094
4077
|
"value": [
|
|
@@ -4102,9 +4085,8 @@
|
|
|
4102
4085
|
]
|
|
4103
4086
|
}
|
|
4104
4087
|
},
|
|
4105
|
-
"
|
|
4106
|
-
"
|
|
4107
|
-
"value": "offset"
|
|
4088
|
+
"offset": 0,
|
|
4089
|
+
"pluralType": "cardinal"
|
|
4108
4090
|
},
|
|
4109
4091
|
{
|
|
4110
4092
|
"type": 1,
|
|
@@ -4114,7 +4096,7 @@
|
|
|
4114
4096
|
"jc4XDeI4sf7aLs2W": [
|
|
4115
4097
|
{
|
|
4116
4098
|
"type": 0,
|
|
4117
|
-
"value": "
|
|
4099
|
+
"value": "値"
|
|
4118
4100
|
}
|
|
4119
4101
|
],
|
|
4120
4102
|
"jishWwgadkdK/YkI": [
|
|
@@ -4138,7 +4120,7 @@
|
|
|
4138
4120
|
"k3/OeMKig2l4gCEJ": [
|
|
4139
4121
|
{
|
|
4140
4122
|
"type": 0,
|
|
4141
|
-
"value": "
|
|
4123
|
+
"value": "数値"
|
|
4142
4124
|
}
|
|
4143
4125
|
],
|
|
4144
4126
|
"kCk8ZqQbTzdkw3WN": [
|
|
@@ -4147,6 +4129,8 @@
|
|
|
4147
4129
|
"value": "サブ行を"
|
|
4148
4130
|
},
|
|
4149
4131
|
{
|
|
4132
|
+
"type": 5,
|
|
4133
|
+
"value": "expandState",
|
|
4150
4134
|
"options": {
|
|
4151
4135
|
"expand": {
|
|
4152
4136
|
"value": [
|
|
@@ -4164,9 +4148,7 @@
|
|
|
4164
4148
|
}
|
|
4165
4149
|
]
|
|
4166
4150
|
}
|
|
4167
|
-
}
|
|
4168
|
-
"type": 5,
|
|
4169
|
-
"value": "expandState"
|
|
4151
|
+
}
|
|
4170
4152
|
},
|
|
4171
4153
|
{
|
|
4172
4154
|
"type": 0,
|
|
@@ -4213,6 +4195,8 @@
|
|
|
4213
4195
|
"value": "\" 列のソートを"
|
|
4214
4196
|
},
|
|
4215
4197
|
{
|
|
4198
|
+
"type": 5,
|
|
4199
|
+
"value": "direction",
|
|
4216
4200
|
"options": {
|
|
4217
4201
|
"asc": {
|
|
4218
4202
|
"value": [
|
|
@@ -4238,9 +4222,7 @@
|
|
|
4238
4222
|
}
|
|
4239
4223
|
]
|
|
4240
4224
|
}
|
|
4241
|
-
}
|
|
4242
|
-
"type": 5,
|
|
4243
|
-
"value": "direction"
|
|
4225
|
+
}
|
|
4244
4226
|
},
|
|
4245
4227
|
{
|
|
4246
4228
|
"type": 0,
|
|
@@ -4307,49 +4289,50 @@
|
|
|
4307
4289
|
],
|
|
4308
4290
|
"ly03uOR7VGcWb+pG": [
|
|
4309
4291
|
{
|
|
4292
|
+
"type": 5,
|
|
4293
|
+
"value": "prefix",
|
|
4310
4294
|
"options": {
|
|
4311
|
-
"
|
|
4295
|
+
"past": {
|
|
4312
4296
|
"value": [
|
|
4313
4297
|
{
|
|
4314
4298
|
"type": 0,
|
|
4315
|
-
"value": "
|
|
4299
|
+
"value": "過去"
|
|
4316
4300
|
}
|
|
4317
4301
|
]
|
|
4318
4302
|
},
|
|
4319
|
-
"
|
|
4303
|
+
"future": {
|
|
4320
4304
|
"value": [
|
|
4321
4305
|
{
|
|
4322
4306
|
"type": 0,
|
|
4323
|
-
"value": "
|
|
4307
|
+
"value": "次の"
|
|
4324
4308
|
}
|
|
4325
4309
|
]
|
|
4326
4310
|
},
|
|
4327
|
-
"
|
|
4311
|
+
"relativeFuture": {
|
|
4328
4312
|
"value": [
|
|
4329
4313
|
{
|
|
4330
4314
|
"type": 0,
|
|
4331
|
-
"value": "
|
|
4315
|
+
"value": "今後"
|
|
4332
4316
|
}
|
|
4333
4317
|
]
|
|
4334
4318
|
},
|
|
4335
|
-
"
|
|
4319
|
+
"other": {
|
|
4336
4320
|
"value": [
|
|
4337
4321
|
{
|
|
4338
4322
|
"type": 0,
|
|
4339
|
-
"value": "
|
|
4323
|
+
"value": " "
|
|
4340
4324
|
}
|
|
4341
4325
|
]
|
|
4342
4326
|
}
|
|
4343
|
-
}
|
|
4344
|
-
"type": 5,
|
|
4345
|
-
"value": "prefix"
|
|
4327
|
+
}
|
|
4346
4328
|
},
|
|
4347
4329
|
{
|
|
4348
4330
|
"type": 0,
|
|
4349
4331
|
"value": " "
|
|
4350
4332
|
},
|
|
4351
4333
|
{
|
|
4352
|
-
"
|
|
4334
|
+
"type": 6,
|
|
4335
|
+
"value": "offset",
|
|
4353
4336
|
"options": {
|
|
4354
4337
|
"other": {
|
|
4355
4338
|
"value": [
|
|
@@ -4363,9 +4346,8 @@
|
|
|
4363
4346
|
]
|
|
4364
4347
|
}
|
|
4365
4348
|
},
|
|
4366
|
-
"
|
|
4367
|
-
"
|
|
4368
|
-
"value": "offset"
|
|
4349
|
+
"offset": 0,
|
|
4350
|
+
"pluralType": "cardinal"
|
|
4369
4351
|
},
|
|
4370
4352
|
{
|
|
4371
4353
|
"type": 1,
|
|
@@ -4374,49 +4356,50 @@
|
|
|
4374
4356
|
],
|
|
4375
4357
|
"m5z+3UJ4Q3absAi5": [
|
|
4376
4358
|
{
|
|
4359
|
+
"type": 5,
|
|
4360
|
+
"value": "prefix",
|
|
4377
4361
|
"options": {
|
|
4378
|
-
"
|
|
4362
|
+
"past": {
|
|
4379
4363
|
"value": [
|
|
4380
4364
|
{
|
|
4381
4365
|
"type": 0,
|
|
4382
|
-
"value": "
|
|
4366
|
+
"value": "過去"
|
|
4383
4367
|
}
|
|
4384
4368
|
]
|
|
4385
4369
|
},
|
|
4386
|
-
"
|
|
4370
|
+
"future": {
|
|
4387
4371
|
"value": [
|
|
4388
4372
|
{
|
|
4389
4373
|
"type": 0,
|
|
4390
|
-
"value": "
|
|
4374
|
+
"value": "次の"
|
|
4391
4375
|
}
|
|
4392
4376
|
]
|
|
4393
4377
|
},
|
|
4394
|
-
"
|
|
4378
|
+
"relativeFuture": {
|
|
4395
4379
|
"value": [
|
|
4396
4380
|
{
|
|
4397
4381
|
"type": 0,
|
|
4398
|
-
"value": "
|
|
4382
|
+
"value": "今後"
|
|
4399
4383
|
}
|
|
4400
4384
|
]
|
|
4401
4385
|
},
|
|
4402
|
-
"
|
|
4386
|
+
"other": {
|
|
4403
4387
|
"value": [
|
|
4404
4388
|
{
|
|
4405
4389
|
"type": 0,
|
|
4406
|
-
"value": "
|
|
4390
|
+
"value": " "
|
|
4407
4391
|
}
|
|
4408
4392
|
]
|
|
4409
4393
|
}
|
|
4410
|
-
}
|
|
4411
|
-
"type": 5,
|
|
4412
|
-
"value": "prefix"
|
|
4394
|
+
}
|
|
4413
4395
|
},
|
|
4414
4396
|
{
|
|
4415
4397
|
"type": 0,
|
|
4416
4398
|
"value": " "
|
|
4417
4399
|
},
|
|
4418
4400
|
{
|
|
4419
|
-
"
|
|
4401
|
+
"type": 6,
|
|
4402
|
+
"value": "offset",
|
|
4420
4403
|
"options": {
|
|
4421
4404
|
"other": {
|
|
4422
4405
|
"value": [
|
|
@@ -4430,9 +4413,8 @@
|
|
|
4430
4413
|
]
|
|
4431
4414
|
}
|
|
4432
4415
|
},
|
|
4433
|
-
"
|
|
4434
|
-
"
|
|
4435
|
-
"value": "offset"
|
|
4416
|
+
"offset": 0,
|
|
4417
|
+
"pluralType": "cardinal"
|
|
4436
4418
|
},
|
|
4437
4419
|
{
|
|
4438
4420
|
"type": 1,
|
|
@@ -4441,7 +4423,8 @@
|
|
|
4441
4423
|
],
|
|
4442
4424
|
"mG+nMDkU8bB8zLlO": [
|
|
4443
4425
|
{
|
|
4444
|
-
"
|
|
4426
|
+
"type": 6,
|
|
4427
|
+
"value": "offset",
|
|
4445
4428
|
"options": {
|
|
4446
4429
|
"other": {
|
|
4447
4430
|
"value": [
|
|
@@ -4455,9 +4438,8 @@
|
|
|
4455
4438
|
]
|
|
4456
4439
|
}
|
|
4457
4440
|
},
|
|
4458
|
-
"
|
|
4459
|
-
"
|
|
4460
|
-
"value": "offset"
|
|
4441
|
+
"offset": 0,
|
|
4442
|
+
"pluralType": "cardinal"
|
|
4461
4443
|
}
|
|
4462
4444
|
],
|
|
4463
4445
|
"mS6CPzO+pMJLetSA": [
|
|
@@ -4486,6 +4468,8 @@
|
|
|
4486
4468
|
"value": "\" 列のソートを"
|
|
4487
4469
|
},
|
|
4488
4470
|
{
|
|
4471
|
+
"type": 5,
|
|
4472
|
+
"value": "direction",
|
|
4489
4473
|
"options": {
|
|
4490
4474
|
"asc": {
|
|
4491
4475
|
"value": [
|
|
@@ -4511,9 +4495,7 @@
|
|
|
4511
4495
|
}
|
|
4512
4496
|
]
|
|
4513
4497
|
}
|
|
4514
|
-
}
|
|
4515
|
-
"type": 5,
|
|
4516
|
-
"value": "direction"
|
|
4498
|
+
}
|
|
4517
4499
|
},
|
|
4518
4500
|
{
|
|
4519
4501
|
"type": 0,
|
|
@@ -4532,34 +4514,34 @@
|
|
|
4532
4514
|
],
|
|
4533
4515
|
"mYmd/xMZulbADHsY": [
|
|
4534
4516
|
{
|
|
4517
|
+
"type": 5,
|
|
4518
|
+
"value": "isExpanded",
|
|
4535
4519
|
"options": {
|
|
4536
|
-
"
|
|
4520
|
+
"true": {
|
|
4537
4521
|
"value": [
|
|
4538
4522
|
{
|
|
4539
4523
|
"type": 0,
|
|
4540
|
-
"value": "
|
|
4524
|
+
"value": "未満"
|
|
4541
4525
|
}
|
|
4542
4526
|
]
|
|
4543
4527
|
},
|
|
4544
|
-
"
|
|
4528
|
+
"false": {
|
|
4545
4529
|
"value": [
|
|
4546
4530
|
{
|
|
4547
4531
|
"type": 0,
|
|
4548
|
-
"value": "
|
|
4532
|
+
"value": "超過"
|
|
4549
4533
|
}
|
|
4550
4534
|
]
|
|
4551
4535
|
},
|
|
4552
|
-
"
|
|
4536
|
+
"other": {
|
|
4553
4537
|
"value": [
|
|
4554
4538
|
{
|
|
4555
4539
|
"type": 0,
|
|
4556
|
-
"value": "
|
|
4540
|
+
"value": " "
|
|
4557
4541
|
}
|
|
4558
4542
|
]
|
|
4559
4543
|
}
|
|
4560
|
-
}
|
|
4561
|
-
"type": 5,
|
|
4562
|
-
"value": "isExpanded"
|
|
4544
|
+
}
|
|
4563
4545
|
},
|
|
4564
4546
|
{
|
|
4565
4547
|
"type": 0,
|
|
@@ -4581,7 +4563,7 @@
|
|
|
4581
4563
|
"n17DpsKydU3rdqK9": [
|
|
4582
4564
|
{
|
|
4583
4565
|
"type": 0,
|
|
4584
|
-
"value": "
|
|
4566
|
+
"value": "テーブル データのダウンロード"
|
|
4585
4567
|
}
|
|
4586
4568
|
],
|
|
4587
4569
|
"n3kHNMq0wIDbAVfm": [
|
|
@@ -4592,7 +4574,8 @@
|
|
|
4592
4574
|
],
|
|
4593
4575
|
"nDzGVBRq+V8ulNuu": [
|
|
4594
4576
|
{
|
|
4595
|
-
"
|
|
4577
|
+
"type": 6,
|
|
4578
|
+
"value": "count",
|
|
4596
4579
|
"options": {
|
|
4597
4580
|
"other": {
|
|
4598
4581
|
"value": [
|
|
@@ -4606,9 +4589,8 @@
|
|
|
4606
4589
|
]
|
|
4607
4590
|
}
|
|
4608
4591
|
},
|
|
4609
|
-
"
|
|
4610
|
-
"
|
|
4611
|
-
"value": "count"
|
|
4592
|
+
"offset": 0,
|
|
4593
|
+
"pluralType": "cardinal"
|
|
4612
4594
|
},
|
|
4613
4595
|
{
|
|
4614
4596
|
"type": 0,
|
|
@@ -4678,7 +4660,7 @@
|
|
|
4678
4660
|
"oDh+EhNRRqQQkNAS": [
|
|
4679
4661
|
{
|
|
4680
4662
|
"type": 0,
|
|
4681
|
-
"value": "
|
|
4663
|
+
"value": "昇順として追加"
|
|
4682
4664
|
}
|
|
4683
4665
|
],
|
|
4684
4666
|
"oSKhN7fSy19ei878": [
|
|
@@ -4707,49 +4689,50 @@
|
|
|
4707
4689
|
],
|
|
4708
4690
|
"p5Aa2CtWutuGwudB": [
|
|
4709
4691
|
{
|
|
4692
|
+
"type": 5,
|
|
4693
|
+
"value": "prefix",
|
|
4710
4694
|
"options": {
|
|
4711
|
-
"
|
|
4695
|
+
"past": {
|
|
4712
4696
|
"value": [
|
|
4713
4697
|
{
|
|
4714
4698
|
"type": 0,
|
|
4715
|
-
"value": "
|
|
4699
|
+
"value": "過去"
|
|
4716
4700
|
}
|
|
4717
4701
|
]
|
|
4718
4702
|
},
|
|
4719
|
-
"
|
|
4703
|
+
"future": {
|
|
4720
4704
|
"value": [
|
|
4721
4705
|
{
|
|
4722
4706
|
"type": 0,
|
|
4723
|
-
"value": "
|
|
4707
|
+
"value": "次の"
|
|
4724
4708
|
}
|
|
4725
4709
|
]
|
|
4726
4710
|
},
|
|
4727
|
-
"
|
|
4711
|
+
"relativeFuture": {
|
|
4728
4712
|
"value": [
|
|
4729
4713
|
{
|
|
4730
4714
|
"type": 0,
|
|
4731
|
-
"value": "
|
|
4715
|
+
"value": "今後"
|
|
4732
4716
|
}
|
|
4733
4717
|
]
|
|
4734
4718
|
},
|
|
4735
|
-
"
|
|
4719
|
+
"other": {
|
|
4736
4720
|
"value": [
|
|
4737
4721
|
{
|
|
4738
4722
|
"type": 0,
|
|
4739
|
-
"value": "
|
|
4723
|
+
"value": " "
|
|
4740
4724
|
}
|
|
4741
4725
|
]
|
|
4742
4726
|
}
|
|
4743
|
-
}
|
|
4744
|
-
"type": 5,
|
|
4745
|
-
"value": "prefix"
|
|
4727
|
+
}
|
|
4746
4728
|
},
|
|
4747
4729
|
{
|
|
4748
4730
|
"type": 0,
|
|
4749
4731
|
"value": " "
|
|
4750
4732
|
},
|
|
4751
4733
|
{
|
|
4752
|
-
"
|
|
4734
|
+
"type": 6,
|
|
4735
|
+
"value": "offset",
|
|
4753
4736
|
"options": {
|
|
4754
4737
|
"other": {
|
|
4755
4738
|
"value": [
|
|
@@ -4763,9 +4746,8 @@
|
|
|
4763
4746
|
]
|
|
4764
4747
|
}
|
|
4765
4748
|
},
|
|
4766
|
-
"
|
|
4767
|
-
"
|
|
4768
|
-
"value": "offset"
|
|
4749
|
+
"offset": 0,
|
|
4750
|
+
"pluralType": "cardinal"
|
|
4769
4751
|
},
|
|
4770
4752
|
{
|
|
4771
4753
|
"type": 1,
|
|
@@ -4800,7 +4782,8 @@
|
|
|
4800
4782
|
],
|
|
4801
4783
|
"psQtWNyQryNFymrs": [
|
|
4802
4784
|
{
|
|
4803
|
-
"
|
|
4785
|
+
"type": 6,
|
|
4786
|
+
"value": "count",
|
|
4804
4787
|
"options": {
|
|
4805
4788
|
"other": {
|
|
4806
4789
|
"value": [
|
|
@@ -4814,16 +4797,16 @@
|
|
|
4814
4797
|
]
|
|
4815
4798
|
}
|
|
4816
4799
|
},
|
|
4817
|
-
"
|
|
4818
|
-
"
|
|
4819
|
-
"value": "count"
|
|
4800
|
+
"offset": 0,
|
|
4801
|
+
"pluralType": "cardinal"
|
|
4820
4802
|
},
|
|
4821
4803
|
{
|
|
4822
4804
|
"type": 0,
|
|
4823
4805
|
"value": " ("
|
|
4824
4806
|
},
|
|
4825
4807
|
{
|
|
4826
|
-
"
|
|
4808
|
+
"type": 6,
|
|
4809
|
+
"value": "seriesCount",
|
|
4827
4810
|
"options": {
|
|
4828
4811
|
"other": {
|
|
4829
4812
|
"value": [
|
|
@@ -4837,9 +4820,8 @@
|
|
|
4837
4820
|
]
|
|
4838
4821
|
}
|
|
4839
4822
|
},
|
|
4840
|
-
"
|
|
4841
|
-
"
|
|
4842
|
-
"value": "seriesCount"
|
|
4823
|
+
"offset": 0,
|
|
4824
|
+
"pluralType": "cardinal"
|
|
4843
4825
|
},
|
|
4844
4826
|
{
|
|
4845
4827
|
"type": 0,
|
|
@@ -4885,13 +4867,13 @@
|
|
|
4885
4867
|
"qpf+aqg3hXoviypu": [
|
|
4886
4868
|
{
|
|
4887
4869
|
"type": 0,
|
|
4888
|
-
"value": "
|
|
4870
|
+
"value": "日付を選択するためのカレンダー"
|
|
4889
4871
|
}
|
|
4890
4872
|
],
|
|
4891
4873
|
"r/XpT4mat98jCrup": [
|
|
4892
4874
|
{
|
|
4893
4875
|
"type": 0,
|
|
4894
|
-
"value": "
|
|
4876
|
+
"value": "無効な時間です。想定される形式: "
|
|
4895
4877
|
},
|
|
4896
4878
|
{
|
|
4897
4879
|
"type": 1,
|
|
@@ -4899,7 +4881,7 @@
|
|
|
4899
4881
|
},
|
|
4900
4882
|
{
|
|
4901
4883
|
"type": 0,
|
|
4902
|
-
"value": "
|
|
4884
|
+
"value": "、-2h、または -2d@d"
|
|
4903
4885
|
}
|
|
4904
4886
|
],
|
|
4905
4887
|
"r2DiyNP5gUAg0s5f": [
|
|
@@ -4953,7 +4935,7 @@
|
|
|
4953
4935
|
"rrkUQoVNb46Jbd/8": [
|
|
4954
4936
|
{
|
|
4955
4937
|
"type": 0,
|
|
4956
|
-
"value": "
|
|
4938
|
+
"value": "数値の追加"
|
|
4957
4939
|
}
|
|
4958
4940
|
],
|
|
4959
4941
|
"s/C94DAW5sfrWYkU": [
|
|
@@ -4986,6 +4968,8 @@
|
|
|
4986
4968
|
],
|
|
4987
4969
|
"sITxaoPwIvMbTOY3": [
|
|
4988
4970
|
{
|
|
4971
|
+
"type": 5,
|
|
4972
|
+
"value": "years",
|
|
4989
4973
|
"options": {
|
|
4990
4974
|
"0": {
|
|
4991
4975
|
"value": [
|
|
@@ -4998,7 +4982,8 @@
|
|
|
4998
4982
|
"other": {
|
|
4999
4983
|
"value": [
|
|
5000
4984
|
{
|
|
5001
|
-
"
|
|
4985
|
+
"type": 6,
|
|
4986
|
+
"value": "years",
|
|
5002
4987
|
"options": {
|
|
5003
4988
|
"other": {
|
|
5004
4989
|
"value": [
|
|
@@ -5012,17 +4997,16 @@
|
|
|
5012
4997
|
]
|
|
5013
4998
|
}
|
|
5014
4999
|
},
|
|
5015
|
-
"
|
|
5016
|
-
"
|
|
5017
|
-
"value": "years"
|
|
5000
|
+
"offset": 0,
|
|
5001
|
+
"pluralType": "cardinal"
|
|
5018
5002
|
}
|
|
5019
5003
|
]
|
|
5020
5004
|
}
|
|
5021
|
-
}
|
|
5022
|
-
"type": 5,
|
|
5023
|
-
"value": "years"
|
|
5005
|
+
}
|
|
5024
5006
|
},
|
|
5025
5007
|
{
|
|
5008
|
+
"type": 5,
|
|
5009
|
+
"value": "months",
|
|
5026
5010
|
"options": {
|
|
5027
5011
|
"0": {
|
|
5028
5012
|
"value": [
|
|
@@ -5035,7 +5019,8 @@
|
|
|
5035
5019
|
"other": {
|
|
5036
5020
|
"value": [
|
|
5037
5021
|
{
|
|
5038
|
-
"
|
|
5022
|
+
"type": 6,
|
|
5023
|
+
"value": "months",
|
|
5039
5024
|
"options": {
|
|
5040
5025
|
"other": {
|
|
5041
5026
|
"value": [
|
|
@@ -5049,17 +5034,16 @@
|
|
|
5049
5034
|
]
|
|
5050
5035
|
}
|
|
5051
5036
|
},
|
|
5052
|
-
"
|
|
5053
|
-
"
|
|
5054
|
-
"value": "months"
|
|
5037
|
+
"offset": 0,
|
|
5038
|
+
"pluralType": "cardinal"
|
|
5055
5039
|
}
|
|
5056
5040
|
]
|
|
5057
5041
|
}
|
|
5058
|
-
}
|
|
5059
|
-
"type": 5,
|
|
5060
|
-
"value": "months"
|
|
5042
|
+
}
|
|
5061
5043
|
},
|
|
5062
5044
|
{
|
|
5045
|
+
"type": 5,
|
|
5046
|
+
"value": "days",
|
|
5063
5047
|
"options": {
|
|
5064
5048
|
"0": {
|
|
5065
5049
|
"value": [
|
|
@@ -5072,7 +5056,8 @@
|
|
|
5072
5056
|
"other": {
|
|
5073
5057
|
"value": [
|
|
5074
5058
|
{
|
|
5075
|
-
"
|
|
5059
|
+
"type": 6,
|
|
5060
|
+
"value": "days",
|
|
5076
5061
|
"options": {
|
|
5077
5062
|
"other": {
|
|
5078
5063
|
"value": [
|
|
@@ -5086,17 +5071,16 @@
|
|
|
5086
5071
|
]
|
|
5087
5072
|
}
|
|
5088
5073
|
},
|
|
5089
|
-
"
|
|
5090
|
-
"
|
|
5091
|
-
"value": "days"
|
|
5074
|
+
"offset": 0,
|
|
5075
|
+
"pluralType": "cardinal"
|
|
5092
5076
|
}
|
|
5093
5077
|
]
|
|
5094
5078
|
}
|
|
5095
|
-
}
|
|
5096
|
-
"type": 5,
|
|
5097
|
-
"value": "days"
|
|
5079
|
+
}
|
|
5098
5080
|
},
|
|
5099
5081
|
{
|
|
5082
|
+
"type": 5,
|
|
5083
|
+
"value": "hours",
|
|
5100
5084
|
"options": {
|
|
5101
5085
|
"0": {
|
|
5102
5086
|
"value": [
|
|
@@ -5109,7 +5093,8 @@
|
|
|
5109
5093
|
"other": {
|
|
5110
5094
|
"value": [
|
|
5111
5095
|
{
|
|
5112
|
-
"
|
|
5096
|
+
"type": 6,
|
|
5097
|
+
"value": "hours",
|
|
5113
5098
|
"options": {
|
|
5114
5099
|
"other": {
|
|
5115
5100
|
"value": [
|
|
@@ -5123,17 +5108,16 @@
|
|
|
5123
5108
|
]
|
|
5124
5109
|
}
|
|
5125
5110
|
},
|
|
5126
|
-
"
|
|
5127
|
-
"
|
|
5128
|
-
"value": "hours"
|
|
5111
|
+
"offset": 0,
|
|
5112
|
+
"pluralType": "cardinal"
|
|
5129
5113
|
}
|
|
5130
5114
|
]
|
|
5131
5115
|
}
|
|
5132
|
-
}
|
|
5133
|
-
"type": 5,
|
|
5134
|
-
"value": "hours"
|
|
5116
|
+
}
|
|
5135
5117
|
},
|
|
5136
5118
|
{
|
|
5119
|
+
"type": 5,
|
|
5120
|
+
"value": "minutes",
|
|
5137
5121
|
"options": {
|
|
5138
5122
|
"0": {
|
|
5139
5123
|
"value": [
|
|
@@ -5146,7 +5130,8 @@
|
|
|
5146
5130
|
"other": {
|
|
5147
5131
|
"value": [
|
|
5148
5132
|
{
|
|
5149
|
-
"
|
|
5133
|
+
"type": 6,
|
|
5134
|
+
"value": "minutes",
|
|
5150
5135
|
"options": {
|
|
5151
5136
|
"other": {
|
|
5152
5137
|
"value": [
|
|
@@ -5160,17 +5145,16 @@
|
|
|
5160
5145
|
]
|
|
5161
5146
|
}
|
|
5162
5147
|
},
|
|
5163
|
-
"
|
|
5164
|
-
"
|
|
5165
|
-
"value": "minutes"
|
|
5148
|
+
"offset": 0,
|
|
5149
|
+
"pluralType": "cardinal"
|
|
5166
5150
|
}
|
|
5167
5151
|
]
|
|
5168
5152
|
}
|
|
5169
|
-
}
|
|
5170
|
-
"type": 5,
|
|
5171
|
-
"value": "minutes"
|
|
5153
|
+
}
|
|
5172
5154
|
},
|
|
5173
5155
|
{
|
|
5156
|
+
"type": 5,
|
|
5157
|
+
"value": "seconds",
|
|
5174
5158
|
"options": {
|
|
5175
5159
|
"0": {
|
|
5176
5160
|
"value": [
|
|
@@ -5183,7 +5167,8 @@
|
|
|
5183
5167
|
"other": {
|
|
5184
5168
|
"value": [
|
|
5185
5169
|
{
|
|
5186
|
-
"
|
|
5170
|
+
"type": 6,
|
|
5171
|
+
"value": "seconds",
|
|
5187
5172
|
"options": {
|
|
5188
5173
|
"other": {
|
|
5189
5174
|
"value": [
|
|
@@ -5197,17 +5182,16 @@
|
|
|
5197
5182
|
]
|
|
5198
5183
|
}
|
|
5199
5184
|
},
|
|
5200
|
-
"
|
|
5201
|
-
"
|
|
5202
|
-
"value": "seconds"
|
|
5185
|
+
"offset": 0,
|
|
5186
|
+
"pluralType": "cardinal"
|
|
5203
5187
|
}
|
|
5204
5188
|
]
|
|
5205
5189
|
}
|
|
5206
|
-
}
|
|
5207
|
-
"type": 5,
|
|
5208
|
-
"value": "seconds"
|
|
5190
|
+
}
|
|
5209
5191
|
},
|
|
5210
5192
|
{
|
|
5193
|
+
"type": 5,
|
|
5194
|
+
"value": "milliseconds",
|
|
5211
5195
|
"options": {
|
|
5212
5196
|
"0": {
|
|
5213
5197
|
"value": [
|
|
@@ -5220,7 +5204,8 @@
|
|
|
5220
5204
|
"other": {
|
|
5221
5205
|
"value": [
|
|
5222
5206
|
{
|
|
5223
|
-
"
|
|
5207
|
+
"type": 6,
|
|
5208
|
+
"value": "milliseconds",
|
|
5224
5209
|
"options": {
|
|
5225
5210
|
"other": {
|
|
5226
5211
|
"value": [
|
|
@@ -5234,15 +5219,12 @@
|
|
|
5234
5219
|
]
|
|
5235
5220
|
}
|
|
5236
5221
|
},
|
|
5237
|
-
"
|
|
5238
|
-
"
|
|
5239
|
-
"value": "milliseconds"
|
|
5222
|
+
"offset": 0,
|
|
5223
|
+
"pluralType": "cardinal"
|
|
5240
5224
|
}
|
|
5241
5225
|
]
|
|
5242
5226
|
}
|
|
5243
|
-
}
|
|
5244
|
-
"type": 5,
|
|
5245
|
-
"value": "milliseconds"
|
|
5227
|
+
}
|
|
5246
5228
|
}
|
|
5247
5229
|
],
|
|
5248
5230
|
"sJeuQTGrzcMvd6fY": [
|
|
@@ -5262,13 +5244,13 @@
|
|
|
5262
5244
|
"sml/MjQVnkAeawyF": [
|
|
5263
5245
|
{
|
|
5264
5246
|
"type": 0,
|
|
5265
|
-
"value": "
|
|
5247
|
+
"value": "座標"
|
|
5266
5248
|
}
|
|
5267
5249
|
],
|
|
5268
5250
|
"stPGS1LgPweLqQcm": [
|
|
5269
5251
|
{
|
|
5270
5252
|
"type": 0,
|
|
5271
|
-
"value": "
|
|
5253
|
+
"value": "フィルター値が無効です。このキーでは ISO8601 形式のタイムスタンプのみがサポートされています。"
|
|
5272
5254
|
}
|
|
5273
5255
|
],
|
|
5274
5256
|
"supuOfI2cSrNKOZ/": [
|
|
@@ -5333,26 +5315,26 @@
|
|
|
5333
5315
|
"value": "通知を "
|
|
5334
5316
|
},
|
|
5335
5317
|
{
|
|
5318
|
+
"type": 5,
|
|
5319
|
+
"value": "notificationEnabled",
|
|
5336
5320
|
"options": {
|
|
5337
|
-
"
|
|
5321
|
+
"true": {
|
|
5338
5322
|
"value": [
|
|
5339
5323
|
{
|
|
5340
5324
|
"type": 0,
|
|
5341
|
-
"value": "
|
|
5325
|
+
"value": "オフ"
|
|
5342
5326
|
}
|
|
5343
5327
|
]
|
|
5344
5328
|
},
|
|
5345
|
-
"
|
|
5329
|
+
"other": {
|
|
5346
5330
|
"value": [
|
|
5347
5331
|
{
|
|
5348
5332
|
"type": 0,
|
|
5349
|
-
"value": "
|
|
5333
|
+
"value": "オン"
|
|
5350
5334
|
}
|
|
5351
5335
|
]
|
|
5352
5336
|
}
|
|
5353
|
-
}
|
|
5354
|
-
"type": 5,
|
|
5355
|
-
"value": "notificationEnabled"
|
|
5337
|
+
}
|
|
5356
5338
|
},
|
|
5357
5339
|
{
|
|
5358
5340
|
"type": 0,
|
|
@@ -5403,41 +5385,42 @@
|
|
|
5403
5385
|
],
|
|
5404
5386
|
"vEoSirMyZ5RMVdsR": [
|
|
5405
5387
|
{
|
|
5388
|
+
"type": 5,
|
|
5389
|
+
"value": "prefix",
|
|
5406
5390
|
"options": {
|
|
5407
|
-
"
|
|
5391
|
+
"previous": {
|
|
5408
5392
|
"value": [
|
|
5409
5393
|
{
|
|
5410
5394
|
"type": 0,
|
|
5411
|
-
"value": "
|
|
5395
|
+
"value": "前の"
|
|
5412
5396
|
}
|
|
5413
5397
|
]
|
|
5414
5398
|
},
|
|
5415
|
-
"
|
|
5399
|
+
"next": {
|
|
5416
5400
|
"value": [
|
|
5417
5401
|
{
|
|
5418
5402
|
"type": 0,
|
|
5419
|
-
"value": "
|
|
5403
|
+
"value": "次の"
|
|
5420
5404
|
}
|
|
5421
5405
|
]
|
|
5422
5406
|
},
|
|
5423
|
-
"
|
|
5407
|
+
"other": {
|
|
5424
5408
|
"value": [
|
|
5425
5409
|
{
|
|
5426
5410
|
"type": 0,
|
|
5427
|
-
"value": "
|
|
5411
|
+
"value": "ここ"
|
|
5428
5412
|
}
|
|
5429
5413
|
]
|
|
5430
5414
|
}
|
|
5431
|
-
}
|
|
5432
|
-
"type": 5,
|
|
5433
|
-
"value": "prefix"
|
|
5415
|
+
}
|
|
5434
5416
|
},
|
|
5435
5417
|
{
|
|
5436
5418
|
"type": 0,
|
|
5437
5419
|
"value": " "
|
|
5438
5420
|
},
|
|
5439
5421
|
{
|
|
5440
|
-
"
|
|
5422
|
+
"type": 6,
|
|
5423
|
+
"value": "amount",
|
|
5441
5424
|
"options": {
|
|
5442
5425
|
"other": {
|
|
5443
5426
|
"value": [
|
|
@@ -5451,9 +5434,8 @@
|
|
|
5451
5434
|
]
|
|
5452
5435
|
}
|
|
5453
5436
|
},
|
|
5454
|
-
"
|
|
5455
|
-
"
|
|
5456
|
-
"value": "amount"
|
|
5437
|
+
"offset": 0,
|
|
5438
|
+
"pluralType": "cardinal"
|
|
5457
5439
|
}
|
|
5458
5440
|
],
|
|
5459
5441
|
"vJ/eXvQ9OL/qVOcs": [
|
|
@@ -5477,7 +5459,7 @@
|
|
|
5477
5459
|
"vwffeGCYNgFdxEUq": [
|
|
5478
5460
|
{
|
|
5479
5461
|
"type": 0,
|
|
5480
|
-
"value": "
|
|
5462
|
+
"value": "タイムスタンプ"
|
|
5481
5463
|
}
|
|
5482
5464
|
],
|
|
5483
5465
|
"wJb5aQ8q06TidoIt": [
|
|
@@ -5535,7 +5517,7 @@
|
|
|
5535
5517
|
"xT9m8P49DpYVR1pg": [
|
|
5536
5518
|
{
|
|
5537
5519
|
"type": 0,
|
|
5538
|
-
"value": "
|
|
5520
|
+
"value": "TypeScript の追加"
|
|
5539
5521
|
}
|
|
5540
5522
|
],
|
|
5541
5523
|
"xYagPfCP0AY72G3+": [
|
|
@@ -5547,7 +5529,7 @@
|
|
|
5547
5529
|
"xcSpnebtYoA/jEJY": [
|
|
5548
5530
|
{
|
|
5549
5531
|
"type": 0,
|
|
5550
|
-
"value": "
|
|
5532
|
+
"value": "メールの追加"
|
|
5551
5533
|
}
|
|
5552
5534
|
],
|
|
5553
5535
|
"xdkxTaZ7SAkarRJX": [
|
|
@@ -5559,19 +5541,19 @@
|
|
|
5559
5541
|
"xjwKUTJHlmtA/V/n": [
|
|
5560
5542
|
{
|
|
5561
5543
|
"type": 0,
|
|
5562
|
-
"value": "
|
|
5544
|
+
"value": "電話番号の追加"
|
|
5563
5545
|
}
|
|
5564
5546
|
],
|
|
5565
5547
|
"y6H3/FIKpIl6XBRA": [
|
|
5566
5548
|
{
|
|
5567
5549
|
"type": 0,
|
|
5568
|
-
"value": "
|
|
5550
|
+
"value": "ロケーション"
|
|
5569
5551
|
}
|
|
5570
5552
|
],
|
|
5571
5553
|
"yBhOkj2PXbKg2Tjc": [
|
|
5572
5554
|
{
|
|
5573
5555
|
"type": 0,
|
|
5574
|
-
"value": "
|
|
5556
|
+
"value": "フィルター値が無効です。このキーでは値として実行時間のみがサポートされています。例: '200ms'"
|
|
5575
5557
|
}
|
|
5576
5558
|
],
|
|
5577
5559
|
"yJBeHrP0dl2h/JIx": [
|
|
@@ -5598,26 +5580,26 @@
|
|
|
5598
5580
|
"value": "通知が "
|
|
5599
5581
|
},
|
|
5600
5582
|
{
|
|
5583
|
+
"type": 5,
|
|
5584
|
+
"value": "notificationEnabled",
|
|
5601
5585
|
"options": {
|
|
5602
|
-
"
|
|
5586
|
+
"true": {
|
|
5603
5587
|
"value": [
|
|
5604
5588
|
{
|
|
5605
5589
|
"type": 0,
|
|
5606
|
-
"value": "
|
|
5590
|
+
"value": "オン"
|
|
5607
5591
|
}
|
|
5608
5592
|
]
|
|
5609
5593
|
},
|
|
5610
|
-
"
|
|
5594
|
+
"other": {
|
|
5611
5595
|
"value": [
|
|
5612
5596
|
{
|
|
5613
5597
|
"type": 0,
|
|
5614
|
-
"value": "
|
|
5598
|
+
"value": "オフ"
|
|
5615
5599
|
}
|
|
5616
5600
|
]
|
|
5617
5601
|
}
|
|
5618
|
-
}
|
|
5619
|
-
"type": 5,
|
|
5620
|
-
"value": "notificationEnabled"
|
|
5602
|
+
}
|
|
5621
5603
|
},
|
|
5622
5604
|
{
|
|
5623
5605
|
"type": 0,
|
|
@@ -5657,7 +5639,7 @@
|
|
|
5657
5639
|
"zX4r/Y8gJL1C8+5e": [
|
|
5658
5640
|
{
|
|
5659
5641
|
"type": 0,
|
|
5660
|
-
"value": "
|
|
5642
|
+
"value": "日時範囲をクリア"
|
|
5661
5643
|
}
|
|
5662
5644
|
],
|
|
5663
5645
|
"zfKEZtJ/4td7IY+1": [
|
|
@@ -5669,46 +5651,47 @@
|
|
|
5669
5651
|
"zgKXUXme0dmc9SsD": [
|
|
5670
5652
|
{
|
|
5671
5653
|
"type": 0,
|
|
5672
|
-
"value": "
|
|
5654
|
+
"value": "降順として追加"
|
|
5673
5655
|
}
|
|
5674
5656
|
],
|
|
5675
5657
|
"znJQdrgHo0UbGJLV": [
|
|
5676
5658
|
{
|
|
5659
|
+
"type": 5,
|
|
5660
|
+
"value": "prefix",
|
|
5677
5661
|
"options": {
|
|
5678
|
-
"
|
|
5662
|
+
"previous": {
|
|
5679
5663
|
"value": [
|
|
5680
5664
|
{
|
|
5681
5665
|
"type": 0,
|
|
5682
|
-
"value": "
|
|
5666
|
+
"value": "前の"
|
|
5683
5667
|
}
|
|
5684
5668
|
]
|
|
5685
5669
|
},
|
|
5686
|
-
"
|
|
5670
|
+
"next": {
|
|
5687
5671
|
"value": [
|
|
5688
5672
|
{
|
|
5689
5673
|
"type": 0,
|
|
5690
|
-
"value": "
|
|
5674
|
+
"value": "次の"
|
|
5691
5675
|
}
|
|
5692
5676
|
]
|
|
5693
5677
|
},
|
|
5694
|
-
"
|
|
5678
|
+
"other": {
|
|
5695
5679
|
"value": [
|
|
5696
5680
|
{
|
|
5697
5681
|
"type": 0,
|
|
5698
|
-
"value": "
|
|
5682
|
+
"value": "ここ"
|
|
5699
5683
|
}
|
|
5700
5684
|
]
|
|
5701
5685
|
}
|
|
5702
|
-
}
|
|
5703
|
-
"type": 5,
|
|
5704
|
-
"value": "prefix"
|
|
5686
|
+
}
|
|
5705
5687
|
},
|
|
5706
5688
|
{
|
|
5707
5689
|
"type": 0,
|
|
5708
5690
|
"value": " "
|
|
5709
5691
|
},
|
|
5710
5692
|
{
|
|
5711
|
-
"
|
|
5693
|
+
"type": 6,
|
|
5694
|
+
"value": "amount",
|
|
5712
5695
|
"options": {
|
|
5713
5696
|
"other": {
|
|
5714
5697
|
"value": [
|
|
@@ -5722,9 +5705,8 @@
|
|
|
5722
5705
|
]
|
|
5723
5706
|
}
|
|
5724
5707
|
},
|
|
5725
|
-
"
|
|
5726
|
-
"
|
|
5727
|
-
"value": "amount"
|
|
5708
|
+
"offset": 0,
|
|
5709
|
+
"pluralType": "cardinal"
|
|
5728
5710
|
}
|
|
5729
5711
|
]
|
|
5730
5712
|
}
|