@underverse-ui/underverse 1.0.198 → 1.0.200
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/api-reference.json +1 -1
- package/dist/index.cjs +206 -175
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +263 -232
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -777,6 +777,8 @@ interface VerticalTabsProps extends TabsProps {
|
|
|
777
777
|
}
|
|
778
778
|
declare const VerticalTabs: React$1.FC<VerticalTabsProps>;
|
|
779
779
|
|
|
780
|
+
type FormControlSize = "sm" | "md" | "lg";
|
|
781
|
+
|
|
780
782
|
/** Public props for the `DropdownMenu` component. */
|
|
781
783
|
interface DropdownMenuProps {
|
|
782
784
|
trigger: React__default.ReactElement;
|
|
@@ -826,6 +828,7 @@ declare const SelectDropdown: React__default.FC<{
|
|
|
826
828
|
placeholder?: string;
|
|
827
829
|
className?: string;
|
|
828
830
|
borderMode?: BorderMode;
|
|
831
|
+
size?: FormControlSize;
|
|
829
832
|
}>;
|
|
830
833
|
|
|
831
834
|
/** Public props for the `Pagination` component. */
|
package/dist/index.d.ts
CHANGED
|
@@ -777,6 +777,8 @@ interface VerticalTabsProps extends TabsProps {
|
|
|
777
777
|
}
|
|
778
778
|
declare const VerticalTabs: React$1.FC<VerticalTabsProps>;
|
|
779
779
|
|
|
780
|
+
type FormControlSize = "sm" | "md" | "lg";
|
|
781
|
+
|
|
780
782
|
/** Public props for the `DropdownMenu` component. */
|
|
781
783
|
interface DropdownMenuProps {
|
|
782
784
|
trigger: React__default.ReactElement;
|
|
@@ -826,6 +828,7 @@ declare const SelectDropdown: React__default.FC<{
|
|
|
826
828
|
placeholder?: string;
|
|
827
829
|
className?: string;
|
|
828
830
|
borderMode?: BorderMode;
|
|
831
|
+
size?: FormControlSize;
|
|
829
832
|
}>;
|
|
830
833
|
|
|
831
834
|
/** Public props for the `Pagination` component. */
|