@instructure/ui-rating 9.0.2-snapshot-3 → 9.0.2-snapshot-4
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/CHANGELOG.md +1 -1
- package/package.json +14 -14
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Rating/index.d.ts +3 -3
- package/types/RatingIcon/index.d.ts +1 -1
package/types/Rating/index.d.ts
CHANGED
|
@@ -18,9 +18,9 @@ declare class Rating extends Component<RatingProps> {
|
|
|
18
18
|
valueMax?: number | undefined;
|
|
19
19
|
valueNow?: number | undefined;
|
|
20
20
|
animateFill?: boolean | undefined;
|
|
21
|
-
margin?: import("@instructure/emotion
|
|
21
|
+
margin?: import("@instructure/emotion").Spacing | undefined;
|
|
22
22
|
})[];
|
|
23
|
-
static propTypes: import("@instructure/shared-types
|
|
23
|
+
static propTypes: import("@instructure/shared-types").PropValidators<keyof {
|
|
24
24
|
label: string;
|
|
25
25
|
formatValueText?: ((filled: number, iconCount: number) => string) | undefined;
|
|
26
26
|
iconCount?: 3 | 5 | undefined;
|
|
@@ -28,7 +28,7 @@ declare class Rating extends Component<RatingProps> {
|
|
|
28
28
|
valueMax?: number | undefined;
|
|
29
29
|
valueNow?: number | undefined;
|
|
30
30
|
animateFill?: boolean | undefined;
|
|
31
|
-
margin?: import("@instructure/emotion
|
|
31
|
+
margin?: import("@instructure/emotion").Spacing | undefined;
|
|
32
32
|
}>;
|
|
33
33
|
static defaultProps: {
|
|
34
34
|
animateFill: boolean;
|
|
@@ -17,7 +17,7 @@ declare class RatingIcon extends Component<RatingIconProps, RatingIconState> {
|
|
|
17
17
|
filled?: boolean | undefined;
|
|
18
18
|
size?: "small" | "medium" | "large" | undefined;
|
|
19
19
|
})[];
|
|
20
|
-
static propTypes: import("@instructure/shared-types
|
|
20
|
+
static propTypes: import("@instructure/shared-types").PropValidators<keyof {
|
|
21
21
|
animationDelay?: number | undefined;
|
|
22
22
|
animateFill?: boolean | undefined;
|
|
23
23
|
filled?: boolean | undefined;
|