@julseb-lib/react 1.0.11 → 1.0.13
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.cjs +9 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -5
- package/dist/index.d.ts +7 -5
- package/dist/index.js +35 -32
- package/dist/index.js.map +1 -1
- package/dist/types/components-props.d.cts +3 -0
- package/dist/types/components-props.d.ts +3 -0
- package/package.json +1 -1
|
@@ -496,6 +496,9 @@ type ILibRatingBase = Omit<LibComponentBase<HTMLDivElement>, "element"> & Omit<I
|
|
|
496
496
|
default?: ReactElement$2;
|
|
497
497
|
checked?: ReactElement$2;
|
|
498
498
|
};
|
|
499
|
+
iconsSize?: number;
|
|
500
|
+
accentColor?: LibColorsHover;
|
|
501
|
+
gap?: LibSpacers;
|
|
499
502
|
children?: never;
|
|
500
503
|
};
|
|
501
504
|
type RatingEditable = ILibRatingBase & {
|
|
@@ -496,6 +496,9 @@ type ILibRatingBase = Omit<LibComponentBase<HTMLDivElement>, "element"> & Omit<I
|
|
|
496
496
|
default?: ReactElement$2;
|
|
497
497
|
checked?: ReactElement$2;
|
|
498
498
|
};
|
|
499
|
+
iconsSize?: number;
|
|
500
|
+
accentColor?: LibColorsHover;
|
|
501
|
+
gap?: LibSpacers;
|
|
499
502
|
children?: never;
|
|
500
503
|
};
|
|
501
504
|
type RatingEditable = ILibRatingBase & {
|