wafields 0.26.1 → 0.28.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.
@@ -1,6 +1,6 @@
1
1
  import { Gender } from 'wenum';
2
2
  export declare const GenderLabel: Record<Gender, string>;
3
3
  export declare const genderOptions: {
4
- value: Gender;
4
+ value: string;
5
5
  label: string;
6
6
  }[];
@@ -1,10 +1,6 @@
1
1
  import { Handedness } from 'wenum';
2
- export declare const HandednessLabel: {
3
- 0: string;
4
- 1: string;
5
- 2: string;
6
- };
2
+ export declare const HandednessLabel: Record<Handedness, string>;
7
3
  export declare const handednessOptions: {
8
- value: Handedness;
4
+ value: string;
9
5
  label: string;
10
6
  }[];
@@ -1,11 +1,10 @@
1
- import { TennisBackhand } from 'wenum';
2
1
  export declare const TennisBackhandLabel: {
3
- 1: string;
4
- 2: string;
5
- 3: string;
6
- 0: string;
2
+ single: string;
3
+ double: string;
4
+ both: string;
5
+ none: string;
7
6
  };
8
7
  export declare const tennisBackhandOptions: {
9
- value: TennisBackhand;
8
+ value: string;
10
9
  label: string;
11
10
  }[];
@@ -1,17 +1,16 @@
1
- import { TennisLevel } from 'wenum';
2
1
  export declare const TennisLevelLabels: {
3
- 0: string;
4
- 1: string;
5
- 2: string;
6
- 3: string;
7
- 4: string;
8
- 5: string;
9
- 6: string;
10
- 7: string;
11
- 8: string;
12
- 9: string;
2
+ none: string;
3
+ twoBelow: string;
4
+ twoFive: string;
5
+ three: string;
6
+ threeFive: string;
7
+ four: string;
8
+ fourFive: string;
9
+ five: string;
10
+ fiveFive: string;
11
+ sixAbove: string;
13
12
  };
14
13
  export declare const tennisLevelOptions: {
15
- value: TennisLevel;
14
+ value: string;
16
15
  label: string;
17
16
  }[];