courthive-components 0.9.28-beta.21 → 0.9.28-beta.22
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/courthive-components.css +1 -1
- package/dist/courthive-components.es.js +19502 -19254
- package/dist/courthive-components.umd.js +86 -60
- package/dist/index.d.ts +10 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -448,6 +448,7 @@ declare interface Configuration {
|
|
|
448
448
|
canUndo?: boolean;
|
|
449
449
|
canRedo?: boolean;
|
|
450
450
|
isComplete?: boolean;
|
|
451
|
+
isDirty?: boolean;
|
|
451
452
|
situationText?: string;
|
|
452
453
|
};
|
|
453
454
|
genderColor?: boolean | string;
|
|
@@ -1998,6 +1999,11 @@ declare interface RenderInlineMatchUpParams {
|
|
|
1998
1999
|
isLucky?: boolean;
|
|
1999
2000
|
isAdHoc?: boolean;
|
|
2000
2001
|
className?: string;
|
|
2002
|
+
moiety?: boolean;
|
|
2003
|
+
initialRoundNumber?: number;
|
|
2004
|
+
isFinalRound?: boolean;
|
|
2005
|
+
searchActive?: boolean;
|
|
2006
|
+
selectedMatchUpId?: string;
|
|
2001
2007
|
}
|
|
2002
2008
|
|
|
2003
2009
|
export declare function renderMatchUp(params: {
|
|
@@ -2637,7 +2643,7 @@ export declare type ScoreOutcome = {
|
|
|
2637
2643
|
* This provides a simple configuration object that can be modified by consumers
|
|
2638
2644
|
*/
|
|
2639
2645
|
declare interface ScoringConfig {
|
|
2640
|
-
scoringApproach?: 'freeScore' | 'dynamicSets' | 'dialPad';
|
|
2646
|
+
scoringApproach?: 'freeScore' | 'dynamicSets' | 'dialPad' | 'inlineScoring';
|
|
2641
2647
|
smartComplements?: boolean;
|
|
2642
2648
|
composition?: string;
|
|
2643
2649
|
idiom?: string;
|
|
@@ -2667,6 +2673,9 @@ export declare type ScoringModalLabels = {
|
|
|
2667
2673
|
tiebreaks?: string;
|
|
2668
2674
|
matchTiebreaks?: string;
|
|
2669
2675
|
irregularEndings?: string;
|
|
2676
|
+
addSet?: boolean;
|
|
2677
|
+
dynamicSetsTips?: string;
|
|
2678
|
+
dialPadTips?: string;
|
|
2670
2679
|
};
|
|
2671
2680
|
|
|
2672
2681
|
export declare type ScoringModalParams = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "courthive-components",
|
|
3
|
-
"version": "0.9.28-beta.
|
|
3
|
+
"version": "0.9.28-beta.22",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.19.0 < 25"
|
|
6
6
|
},
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
"@storybook/test-runner": "^0.24.0",
|
|
79
79
|
"@types/d3": "^7.4.3",
|
|
80
80
|
"@types/vanillajs-datepicker": "^1.3.5",
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "8.57.
|
|
82
|
-
"@typescript-eslint/parser": "8.57.
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "8.57.1",
|
|
82
|
+
"@typescript-eslint/parser": "8.57.1",
|
|
83
83
|
"@vitest/browser-playwright": "^4.0.16",
|
|
84
84
|
"@vitest/coverage-v8": "^4.0.16",
|
|
85
85
|
"eslint": "10.0.3",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"focus-trap": "^8.0.0",
|
|
109
109
|
"timepicker-ui": "^4.1.2",
|
|
110
110
|
"tippy.js": "6.3.7",
|
|
111
|
-
"tods-competition-factory": "2.4.6-beta.
|
|
111
|
+
"tods-competition-factory": "2.4.6-beta.28",
|
|
112
112
|
"vanillajs-datepicker": "1.3.4"
|
|
113
113
|
}
|
|
114
114
|
}
|