@underverse-ui/underverse 1.0.197 → 1.0.199
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 +228 -168
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +285 -225
- 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. */
|
|
@@ -1784,6 +1787,8 @@ interface ComboboxProps {
|
|
|
1784
1787
|
maxInitialOptions?: number;
|
|
1785
1788
|
/** Show a prompt instead of options while the query is shorter than minSearchLength. Default: false */
|
|
1786
1789
|
showSearchPromptWhenEmptyQuery?: boolean;
|
|
1790
|
+
/** Match dropdown background to the computed background of the combobox trigger. Default: false */
|
|
1791
|
+
matchTriggerBackground?: boolean;
|
|
1787
1792
|
}
|
|
1788
1793
|
declare const Combobox: React$1.FC<ComboboxProps>;
|
|
1789
1794
|
|
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. */
|
|
@@ -1784,6 +1787,8 @@ interface ComboboxProps {
|
|
|
1784
1787
|
maxInitialOptions?: number;
|
|
1785
1788
|
/** Show a prompt instead of options while the query is shorter than minSearchLength. Default: false */
|
|
1786
1789
|
showSearchPromptWhenEmptyQuery?: boolean;
|
|
1790
|
+
/** Match dropdown background to the computed background of the combobox trigger. Default: false */
|
|
1791
|
+
matchTriggerBackground?: boolean;
|
|
1787
1792
|
}
|
|
1788
1793
|
declare const Combobox: React$1.FC<ComboboxProps>;
|
|
1789
1794
|
|