@danxbot/ui 6.3.6 → 6.3.7
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/index.js +1063 -1059
- package/dist/index.js.map +1 -1
- package/dist/types/components/provenance/RatingPips.d.ts +4 -2
- package/package.json +1 -1
|
@@ -79,8 +79,10 @@ declare const pips: import("tailwind-variants").TVReturnType<{
|
|
|
79
79
|
export type RatingPipsSize = NonNullable<VariantProps<typeof pips>["size"]>;
|
|
80
80
|
export interface RatingPipsProps {
|
|
81
81
|
/**
|
|
82
|
-
* The rating itself, on `scale`. Null when nothing rated it — which draws
|
|
83
|
-
*
|
|
82
|
+
* The rating itself, on `scale`. Null when nothing rated it — which draws ONE hollow,
|
|
83
|
+
* dashed-outline pip per point on `scale` (SG-724), never the invisible box full marks draw:
|
|
84
|
+
* "nobody rated this" and "this hit the top of the scale" must not read as the same nothing.
|
|
85
|
+
* See the file header's "UNRATED IS ITS OWN VISIBLE STATE" for why.
|
|
84
86
|
*/
|
|
85
87
|
rating: number | null;
|
|
86
88
|
/** The top of the scale — the "5" in "4 out of 5". */
|