courthive-components 4.1.1 → 4.2.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/renderSchematicStructure/renderSchematicMatchUp.d.ts +6 -1
- package/dist/components/renderStructure/renderMatchUp.d.ts +6 -0
- package/dist/components/schedule-page/index.d.ts +2 -0
- package/dist/components/schedule-page/types.d.ts +6 -0
- package/dist/components/schedule-page/ui/matchUpCard.d.ts +19 -0
- package/dist/components/schedule-page/ui/matchUpCatalog.d.ts +2 -0
- package/dist/components/schedule-page/ui/matchUpHighlight.d.ts +46 -0
- package/dist/courthive-components.css +1 -1
- package/dist/courthive-components.es.js +1064 -1039
- package/dist/courthive-components.umd.js +3 -3
- package/dist/index.d.ts +2 -2
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -104,8 +104,8 @@ export type { AvailabilityGridConfig, AvailabilityGridLabels } from './component
|
|
|
104
104
|
export { TopologyBuilderControl, TopologyStore, topologyToDrawOptions, validateTopology, generatePreviewMatchUps, standardTemplates, buildTopologyCanvas, buildStructureCard, getPortPosition, buildNodeEditor, buildEdgeEditor, buildToolbar, buildTopologyBuilderLayout } from './components/topology-builder';
|
|
105
105
|
export type { TopologyNode, TopologyEdge, TopologyState, TopologyChangeListener, TopologyBuilderConfig, TopologyTemplate, DrawOptionsResult, ValidationError } from './components/topology-builder';
|
|
106
106
|
export type { SchedulingProfile, ScheduleDay, VenueSchedule, RoundProfile, RoundSegment, VenueInfo, CatalogRoundItem, CatalogGroupBy, RoundKey, RoundLocator, DragPayload, DropTarget, DropResult, Severity, ValidationCode, FixAction, ValidationResult, IssueIndex, ProfileStoreState, SchedulingProfileConfig, AvailabilityAdapter, DemandAdapter, DependencyAdapter, UIPanel } from './components/scheduling-profile';
|
|
107
|
-
export { SchedulePageControl, SchedulePageStore, createSchedulePage, filterMatchUpCatalog, groupMatchUpCatalog, computeBaseRoundByEvent, isCompletedStatus, buildScheduleIssueIndex, matchUpLabel, participantLabel, matchUpSearchKey, buildScheduleDateStrip, buildScheduleIssuesPanel, buildMatchUpCatalog, buildMatchUpCard, buildScheduleInspectorPanel, buildCourtGridSlot, buildSchedulePageLayout, buildScheduleGridCell, mapMatchUpToCellData, DEFAULT_SCHEDULE_CELL_CONFIG, activateScheduleCellTypeAhead, buildActiveStripPanel, computeActiveStrip, computeActiveStripCell, computeReschedulePlacements } from './components/schedule-page';
|
|
108
|
-
export type { CatalogMatchUpItem, CatalogFilters, MatchUpSide, ScheduleDate, ScheduleIssue, ScheduleIssueSeverity, ScheduleIssueIndex, ScheduleIssueCounts, MatchUpCatalogGroupBy, ScheduledBehavior, SchedulingMode, PendingScheduleAction, CatalogMatchUpDragPayload, GridMatchUpDragPayload, SchedulePageDragPayload, SchedulePageConfig, SchedulePageCatalogState, SchedulePageState, SchedulePageChangeListener, ScheduleCellConfig, ScheduleCellField, ParticipantDisplayConfig, ScheduleCellData, ScheduleCellSide, ScheduleCellTypeAheadOptions, ScheduleInspectorPanelOptions, ActiveStripPanel, ActiveStripPanelCallbacks, ActiveStripPanelData, ActiveStripPanelOptions, ActiveStripCourtMeta, ActiveStripCourtBlock, ActiveStripCell, ActiveStripCellState, ActiveStripGrid, ActiveStripGridMatchUp, RescheduleCandidate, ReschedulePlacement } from './components/schedule-page';
|
|
107
|
+
export { SchedulePageControl, SchedulePageStore, createSchedulePage, filterMatchUpCatalog, groupMatchUpCatalog, computeBaseRoundByEvent, isCompletedStatus, buildScheduleIssueIndex, matchUpLabel, participantLabel, matchUpSearchKey, buildScheduleDateStrip, buildScheduleIssuesPanel, buildMatchUpCatalog, buildMatchUpCard, applyRelatedHighlight, clearRelatedHighlight, RELATED_HIGHLIGHT, buildScheduleInspectorPanel, buildCourtGridSlot, buildSchedulePageLayout, buildScheduleGridCell, mapMatchUpToCellData, DEFAULT_SCHEDULE_CELL_CONFIG, activateScheduleCellTypeAhead, buildActiveStripPanel, computeActiveStrip, computeActiveStripCell, computeReschedulePlacements } from './components/schedule-page';
|
|
108
|
+
export type { CatalogMatchUpItem, CatalogFilters, MatchUpSide, ScheduleDate, ScheduleIssue, ScheduleIssueSeverity, ScheduleIssueIndex, ScheduleIssueCounts, MatchUpCatalogGroupBy, ScheduledBehavior, SchedulingMode, PendingScheduleAction, CatalogMatchUpDragPayload, GridMatchUpDragPayload, SchedulePageDragPayload, SchedulePageConfig, SchedulePageCatalogState, SchedulePageState, SchedulePageChangeListener, ScheduleCellConfig, ScheduleCellField, ParticipantDisplayConfig, ScheduleCellData, ScheduleCellSide, ScheduleCellTypeAheadOptions, ScheduleInspectorPanelOptions, CardTimeStatus, MatchUpCardCallbacks, MatchUpCardOptions, ActiveStripPanel, ActiveStripPanelCallbacks, ActiveStripPanelData, ActiveStripPanelOptions, ActiveStripCourtMeta, ActiveStripCourtBlock, ActiveStripCell, ActiveStripCellState, ActiveStripGrid, ActiveStripGridMatchUp, RescheduleCandidate, ReschedulePlacement } from './components/schedule-page';
|
|
109
109
|
export { createCompositionEditor } from './components/composition-editor/compositionEditor';
|
|
110
110
|
export { CompositionEditorStore } from './components/composition-editor/compositionEditorStore';
|
|
111
111
|
export type { CompositionEditorConfig, SavedComposition, CompositionEditorState, CompositionEditorListener, SectionId as CompositionEditorSectionId, EditorPanel as CompositionEditorPanel } from './components/composition-editor/compositionEditorTypes';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "courthive-components",
|
|
3
|
-
"packageManager": "pnpm@
|
|
4
|
-
"version": "4.
|
|
3
|
+
"packageManager": "pnpm@12.3.4",
|
|
4
|
+
"version": "4.2.0",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22"
|
|
7
7
|
},
|
|
@@ -80,11 +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.
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "8.69.0",
|
|
84
|
+
"@typescript-eslint/parser": "8.69.0",
|
|
85
85
|
"@vitest/coverage-v8": "^5.0.0",
|
|
86
86
|
"@vitest/ui": "^5.0.0",
|
|
87
|
-
"eslint": "10.
|
|
87
|
+
"eslint": "10.10.0",
|
|
88
88
|
"eslint-plugin-sonarjs": "4.2.0",
|
|
89
89
|
"eslint-plugin-storybook": "^10.2.17",
|
|
90
90
|
"gh-pages": "6.3.0",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"semver": "7.8.5",
|
|
99
99
|
"storybook": "^10.2.17",
|
|
100
100
|
"tabulator-tables": "6.5.2",
|
|
101
|
-
"tods-competition-factory": "6.
|
|
101
|
+
"tods-competition-factory": "6.38.0",
|
|
102
102
|
"typescript": "^6.0.2",
|
|
103
103
|
"vite": "8.2.2",
|
|
104
104
|
"vite-plugin-dts": "^5.0.0",
|