@mindtris/ui 0.1.9 → 0.1.11
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.mts +4 -2
- package/dist/index.mjs +302 -305
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -4
package/dist/index.d.mts
CHANGED
|
@@ -2920,12 +2920,14 @@ interface DatePickerRangeProps {
|
|
|
2920
2920
|
*/
|
|
2921
2921
|
declare function DatePickerRange({ value, onSelect, placeholder, disabled, className, calendarProps, }: DatePickerRangeProps): React$1.JSX.Element;
|
|
2922
2922
|
|
|
2923
|
-
declare function Header({ variant, leftSlot, rightSlot, }: {
|
|
2923
|
+
declare function Header({ variant, leftSlot, rightSlot, hideMobileMenuButton, }: {
|
|
2924
2924
|
variant?: 'default' | 'v2' | 'v3';
|
|
2925
2925
|
/** App-specific header content for the left side (logo, menu, etc.). */
|
|
2926
2926
|
leftSlot?: ReactNode;
|
|
2927
2927
|
/** App-specific header actions (search, notifications, theme toggle, profile). Pass from app. */
|
|
2928
2928
|
rightSlot?: ReactNode;
|
|
2929
|
+
/** When true, hides the hamburger menu button (e.g. for auth layout with full nav). */
|
|
2930
|
+
hideMobileMenuButton?: boolean;
|
|
2929
2931
|
}): React$1.JSX.Element;
|
|
2930
2932
|
|
|
2931
2933
|
interface NavbarLink {
|
|
@@ -3683,7 +3685,7 @@ type SelectItemProps = React$1.ComponentProps<typeof SelectPrimitive.Item>;
|
|
|
3683
3685
|
type SelectLabelProps = React$1.ComponentProps<typeof SelectPrimitive.Label>;
|
|
3684
3686
|
type SelectSeparatorProps = React$1.ComponentProps<typeof SelectPrimitive.Separator>;
|
|
3685
3687
|
declare function SelectTrigger({ className, size, children, ...props }: SelectTriggerProps): React$1.JSX.Element;
|
|
3686
|
-
declare function SelectContent({ className, children, position, ...props }: SelectContentProps): React$1.JSX.Element;
|
|
3688
|
+
declare function SelectContent({ className, children, position, sideOffset, ...props }: SelectContentProps): React$1.JSX.Element;
|
|
3687
3689
|
declare function SelectLabel({ className, ...props }: SelectLabelProps): React$1.JSX.Element;
|
|
3688
3690
|
declare function SelectItem({ className, children, ...props }: SelectItemProps): React$1.JSX.Element;
|
|
3689
3691
|
declare function SelectSeparator({ className, ...props }: SelectSeparatorProps): React$1.JSX.Element;
|