manolis-ui 0.6.8 → 0.6.10
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.d.ts +4 -0
- package/dist/manolis-ui.js +435 -423
- package/dist/manolis-ui.umd.cjs +1 -1
- package/dist/style.css +33 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -617,6 +617,8 @@ declare interface Props_11 {
|
|
|
617
617
|
halfStars?: boolean;
|
|
618
618
|
isInteractive?: boolean;
|
|
619
619
|
size?: "xs" | "sm" | "md" | "lg";
|
|
620
|
+
shape: "star" | "star-bold" | "heart" | "squircle" | "hexagon-vertical" | "hexagon-horizontal" | "decagon" | "pentagon" | "diamond" | "square" | "triangle-top" | "triangle-bottom" | "triangle-left" | "triangle-right";
|
|
621
|
+
color?: string;
|
|
620
622
|
}
|
|
621
623
|
|
|
622
624
|
declare interface Props_12 {
|
|
@@ -724,6 +726,8 @@ declare interface Props_9 {
|
|
|
724
726
|
|
|
725
727
|
export declare const Rating: DefineComponent<Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_11> & Readonly<{}>, {
|
|
726
728
|
size: "xs" | "sm" | "md" | "lg";
|
|
729
|
+
shape: "star" | "star-bold" | "heart" | "squircle" | "hexagon-vertical" | "hexagon-horizontal" | "decagon" | "pentagon" | "diamond" | "square" | "triangle-top" | "triangle-bottom" | "triangle-left" | "triangle-right";
|
|
730
|
+
color: string;
|
|
727
731
|
initialRating: number;
|
|
728
732
|
numberOfStars: number;
|
|
729
733
|
halfStars: boolean;
|