courthive-components 3.15.2 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/inline-scoring/index.d.ts +1 -0
- package/dist/components/inline-scoring/isScorable.d.ts +37 -0
- package/dist/components/inline-scoring/renderInlineMatchUp.d.ts +4 -2
- package/dist/components/pressureChart/buildPressureSeries.d.ts +21 -0
- package/dist/components/pressureChart/drawGraph.d.ts +41 -0
- package/dist/components/pressureChart/getActualPressure.d.ts +14 -0
- package/dist/components/pressureChart/getProjectedPressure.d.ts +23 -0
- package/dist/components/pressureChart/index.d.ts +18 -0
- package/dist/components/pressureChart/pathDifficultyBar.d.ts +17 -0
- package/dist/components/pressureChart/pressureChart.d.ts +40 -0
- package/dist/components/pressureChart/pressureSmallMultiples.d.ts +17 -0
- package/dist/components/pressureChart/pressureTable.d.ts +2 -0
- package/dist/components/pressureChart/ratingScale.d.ts +44 -0
- package/dist/components/pressureChart/types.d.ts +153 -0
- package/dist/components/pressureChart/winProbability.d.ts +30 -0
- package/dist/components/tournament-card/types.d.ts +8 -0
- package/dist/courthive-components.css +1 -1
- package/dist/courthive-components.es.js +7499 -6612
- package/dist/courthive-components.umd.js +44 -44
- package/dist/index.d.ts +3 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -88,6 +88,8 @@ export { buildRatingDistributionChart } from './components/ratingDistributionCha
|
|
|
88
88
|
export { buildLadderChart } from './components/ladderChart';
|
|
89
89
|
export type { LadderChartConfig, LadderChartDatum, LadderChartInstance, LadderChartMargins, } from './components/ladderChart';
|
|
90
90
|
export type { RatingDistributionChartOptions, RatingDistributionChartMode } from './components/ratingDistributionChart';
|
|
91
|
+
export { buildPressureSmallMultiples, buildPathDifficultyBar, resolveParticipantRating, buildPressureSeries, getProjectedPressure, buildPressureChart, buildPressureTable, getActualPressure, byPathDifficulty, winProbability, sharedYDomain, ratingToElo, PRESSURE_UNSUPPORTED } from './components/pressureChart';
|
|
92
|
+
export type { ParticipantPressureProjection, PressureSmallMultiplesOptions, GetProjectedPressureParams, ParticipantActualPressure, PressureUnsupportedReason, ProjectedPressureResult, PathDifficultyBarOptions, ProjectedRoundPressure, PressureChartOptions, ActualRoundPressure, PressureSeriesPoint, PossibleOpponent, PressureSeries, ResolvedRating } from './components/pressureChart';
|
|
91
93
|
export { controlBar } from './components/controlBar/controlBar';
|
|
92
94
|
export { toggleOverlay } from './components/controlBar/toggleOverlay';
|
|
93
95
|
export { dropDownButton } from './components/button/dropDownButton';
|
|
@@ -109,7 +111,7 @@ export { createPrintCompositionEditor } from './components/print-composition-edi
|
|
|
109
111
|
export type { PrintCompositionConfig, PrintCompositionEditorConfig, PrintCompositionEditorHandle, PrintType, HeaderLayout as PrintHeaderLayout, FooterLayout as PrintFooterLayout, PageSize as PrintPageSize, PageOrientation as PrintPageOrientation } from './components/print-composition-editor/printCompositionEditorTypes';
|
|
110
112
|
export { renderScorecard, renderTeamVsHeader, updateTieScore } from './components/scorecard';
|
|
111
113
|
export type { ScorecardOptions, TeamVsOptions } from './components/scorecard';
|
|
112
|
-
export { InlineScoringManager, renderInlineMatchUp, engineToMatchUp, createInlineScoringFooter } from './components/inline-scoring';
|
|
114
|
+
export { InlineScoringManager, renderInlineMatchUp, sideParticipantName, isScorable, engineToMatchUp, createInlineScoringFooter } from './components/inline-scoring';
|
|
113
115
|
export type { InlineScoringMode, InlineScoringConfig, InlineScoringCallbacks, InlineScoringEngineState } from './components/inline-scoring';
|
|
114
116
|
export { buildInteractiveScoringShell } from './components/interactive-scoring';
|
|
115
117
|
export type { InteractiveScoringShell, InteractiveScoringShellConfig, StateChangedDetail } from './components/interactive-scoring';
|