chore: version packages - #95
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@jeyabbalas/data-table@0.8.0
Minor Changes
c94803d: Column-header stats now measure every count against the full dataset total, fixing the confusing filter-dependent denominators on filter-participant columns.
Display changes
F / N rows— rows passing all active filters out of the dataset total. It shows whenever any filter is active, including whenF == N.Bin: 30 – 40,Category: US,Selected: a, b) plusX rows (p%), whereXis what that filter alone matches in the unfiltered data andp% = X/N. The oldCount: fg / bg (ratio)form — whose denominator was the selection's own post-filter count — is gone.actions.addFilter, preset load, session restore, or undo/redo (previously panel/API-created filters displayed differently until first hover).800 rows (8.0%)— the bin's share of the dataset — plus· 300 matchfor its rows passing all filters when filters are active.Othersegment: the chart knows Other's total but not its membership, soIN/=on a folded value would undercount andNOT INwould overcount by that value's rows. Filters produced by the chart's own gestures are always countable, including theNOT INemitted by clicking Other.API surface
Strings.statisticsgainsbinLabel,categoryLabel,selectedLabel,nullBinLabel,otherCategory,allUniqueCategory,selectionRowCount,matchCount,valueListSuffix. Runtime-compatible for all consumers (deep-merge defaults); consumers hand-authoring a completeStringsliteral must add the new keys to satisfy the type.VisualizationOptionsgains optionalmessages?: Strings— custom visualizations can localize their stats text; omitted, English defaults apply.src/statistics/StatsFormatters:formatStatsLine1,formatStatsLine2(internal module path; the publicformatDefaultStatsoutput is unchanged apart from theF == Nrule).BaseStatsPanel.setHoverStatscontract is unchanged, but the pre-formatted HTML strings it receives use the new format, and committed selections now also arrive through it (persisting until the filter clears).