courthive-components 4.0.1 → 4.1.1
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/pressureHorizon/drawOrderGame.d.ts +34 -0
- package/dist/components/pressureHorizon/drawOrderGameState.d.ts +35 -0
- package/dist/components/pressureHorizon/horizonBands.d.ts +38 -0
- package/dist/components/pressureHorizon/horizonLegend.d.ts +14 -0
- package/dist/components/pressureHorizon/horizonRibbon.d.ts +28 -0
- package/dist/components/pressureHorizon/horizonRow.d.ts +19 -0
- package/dist/components/pressureHorizon/index.d.ts +20 -0
- package/dist/components/pressureHorizon/opponentSpread.d.ts +31 -0
- package/dist/components/pressureHorizon/pressureHorizon.d.ts +57 -0
- package/dist/components/pressureHorizon/scoreDrawOrder.d.ts +72 -0
- package/dist/components/pressureHorizon/shuffleWithSeed.d.ts +32 -0
- package/dist/components/pressureHorizon/types.d.ts +124 -0
- package/dist/courthive-components.css +1 -1
- package/dist/courthive-components.es.js +3021 -2223
- package/dist/courthive-components.umd.js +15 -15
- package/dist/index.d.ts +2 -0
- package/package.json +10 -11
package/dist/index.d.ts
CHANGED
|
@@ -90,6 +90,8 @@ export type { LadderChartConfig, LadderChartDatum, LadderChartInstance, LadderCh
|
|
|
90
90
|
export type { RatingDistributionChartOptions, RatingDistributionChartMode } from './components/ratingDistributionChart';
|
|
91
91
|
export { buildPressureSmallMultiples, buildPathDifficultyBar, resolveParticipantRating, buildPressureSeries, getProjectedPressure, buildPressureChart, buildPressureTable, getActualPressure, byPathDifficulty, winProbability, sharedYDomain, ratingToElo, PRESSURE_UNSUPPORTED } from './components/pressureChart';
|
|
92
92
|
export type { ParticipantPressureProjection, PressureSmallMultiplesOptions, GetProjectedPressureParams, ParticipantActualPressure, PressureUnsupportedReason, ProjectedPressureResult, PathDifficultyBarOptions, ProjectedRoundPressure, PressureChartOptions, ActualRoundPressure, PressureSeriesPoint, PossibleOpponent, PressureSeries, ResolvedRating } from './components/pressureChart';
|
|
93
|
+
export { buildHorizonRibbonSvg, resolveHorizonDomain, buildPressureHorizon, INNER_QUANTILES, HORIZON_VARIANT, weightedQuantile, opponentSpread, createDrawOrderGame, maxDisplacementFor, reshuffleDrawOrder, buildDrawOrderGame, buildHorizonRowSvg, MIN_HORIZON_DOMAIN, HORIZON_DIRECTION, buildHorizonRows, shuffleDeranged, shuffleWithSeed, revealDrawOrder, scoreDrawOrder, HORIZON_SOURCE, HORIZON_ORDER, blockLevels, swapSlots, moveSlot } from './components/pressureHorizon';
|
|
94
|
+
export type { PressureHorizonInstance, BuildHorizonRowsParams, HorizonRibbonOptions, OpponentSpread, HorizonVariant, HorizonSpread, PressureHorizonOptions, DrawOrderGameInstance, DrawOrderGameOptions, DrawOrderGameState, HorizonRowsResult, HorizonRowOptions, HorizonDirection, BlockLevelScore, DrawOrderScore, HorizonSource, HorizonLayer, HorizonOrder, HorizonCell, SlotResult, HorizonRow } from './components/pressureHorizon';
|
|
93
95
|
export { controlBar } from './components/controlBar/controlBar';
|
|
94
96
|
export { toggleOverlay } from './components/controlBar/toggleOverlay';
|
|
95
97
|
export { dropDownButton } from './components/button/dropDownButton';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "courthive-components",
|
|
3
|
-
"packageManager": "pnpm@11.
|
|
4
|
-
"version": "4.
|
|
3
|
+
"packageManager": "pnpm@11.25.0",
|
|
4
|
+
"version": "4.1.1",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22"
|
|
7
7
|
},
|
|
@@ -80,12 +80,11 @@
|
|
|
80
80
|
"@types/d3": "^7.4.3",
|
|
81
81
|
"@types/leaflet": "^1.9.12",
|
|
82
82
|
"@types/vanillajs-datepicker": "^1.3.5",
|
|
83
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
84
|
-
"@typescript-eslint/parser": "8.
|
|
85
|
-
"@vitest/
|
|
86
|
-
"@vitest/
|
|
87
|
-
"
|
|
88
|
-
"eslint": "10.8.1",
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "8.68.0",
|
|
84
|
+
"@typescript-eslint/parser": "8.68.0",
|
|
85
|
+
"@vitest/coverage-v8": "^5.0.0",
|
|
86
|
+
"@vitest/ui": "^5.0.0",
|
|
87
|
+
"eslint": "10.9.1",
|
|
89
88
|
"eslint-plugin-sonarjs": "4.2.0",
|
|
90
89
|
"eslint-plugin-storybook": "^10.2.17",
|
|
91
90
|
"gh-pages": "6.3.0",
|
|
@@ -93,17 +92,17 @@
|
|
|
93
92
|
"happy-dom": "^20.8.3",
|
|
94
93
|
"husky": "9.1.7",
|
|
95
94
|
"leaflet": "1.9.4",
|
|
96
|
-
"lint-staged": "17.
|
|
95
|
+
"lint-staged": "17.4.1",
|
|
97
96
|
"playwright": "^1.57.0",
|
|
98
97
|
"prettier": "^3.8.1",
|
|
99
98
|
"semver": "7.8.5",
|
|
100
99
|
"storybook": "^10.2.17",
|
|
101
100
|
"tabulator-tables": "6.5.2",
|
|
102
|
-
"tods-competition-factory": "6.
|
|
101
|
+
"tods-competition-factory": "6.37.2",
|
|
103
102
|
"typescript": "^6.0.2",
|
|
104
103
|
"vite": "8.2.2",
|
|
105
104
|
"vite-plugin-dts": "^5.0.0",
|
|
106
|
-
"vitest": "^
|
|
105
|
+
"vitest": "^5.0.0"
|
|
107
106
|
},
|
|
108
107
|
"dependencies": {
|
|
109
108
|
"@tiptap/core": "^3.22.2",
|