@vellira-ui/react-native 2.62.3 → 2.62.4
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 +3 -3
- package/dist/index.js +1 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { Dropdown } from './components/Dropdown';
|
|
2
2
|
export type { DropdownContentProps, DropdownEmptyProps, DropdownGroupProps, DropdownItemProps, DropdownLabelProps, DropdownPresentation, DropdownProps, DropdownSelectEvent, DropdownSeparatorProps, DropdownTriggerProps, } from './components/Dropdown/types';
|
|
3
|
-
export type { ModalProps } from './components/Modal';
|
|
3
|
+
export type { ModalBodyProps, ModalCloseProps, ModalContentProps, ModalDescriptionProps, ModalFooterProps, ModalHeaderProps, ModalOverlayProps, ModalProps, ModalTitleProps, ModalTriggerProps, } from './components/Modal';
|
|
4
4
|
export { Modal } from './components/Modal';
|
|
5
5
|
export type { PopoverAnchorProps, PopoverArrowProps, PopoverCloseProps, PopoverContentProps, PopoverDescriptionProps, PopoverProps, PopoverTitleProps, PopoverTriggerProps, } from './components/Popover';
|
|
6
6
|
export { Popover } from './components/Popover';
|
|
7
|
-
export type { RadioGroupProps } from './components/RadioGroup';
|
|
7
|
+
export type { RadioGroupItemProps, RadioGroupProps, } from './components/RadioGroup';
|
|
8
8
|
export { RadioGroup } from './components/RadioGroup';
|
|
9
|
-
export type { SelectOption, SelectProps, SelectRenderOptionContext, SelectRenderValueContext, } from './components/Select';
|
|
9
|
+
export type { SelectContentProps, SelectEmptyProps, SelectGroupProps, SelectIconSlotProps, SelectItemBadgeProps, SelectItemDescriptionProps, SelectItemIconProps, SelectItemProps, SelectLabelProps, SelectLoadingProps, SelectOption, SelectPresentation, SelectProps, SelectRenderOption, SelectRenderOptionContext, SelectRenderValue, SelectRenderValueContext, SelectSearchProps, SelectSeparatorProps, SelectTriggerSlotProps, SelectValueSlotProps, SelectVirtualConfig, } from './components/Select';
|
|
10
10
|
export { Select } from './components/Select';
|
|
11
11
|
export type { TabsContentProps, TabsListProps, TabsProps, TabsTriggerProps, } from './components/Tabs';
|
|
12
12
|
export { Tabs } from './components/Tabs';
|
package/dist/index.js
CHANGED
|
@@ -5757,7 +5757,7 @@ const createStyles$4 = (theme) => StyleSheet.create({
|
|
|
5757
5757
|
});
|
|
5758
5758
|
//#endregion
|
|
5759
5759
|
//#region src/components/Tabs/Root/TabsRoot.tsx
|
|
5760
|
-
const TabsRoot = ({ children, value: controlledValue, defaultValue, onValueChange, orientation = "horizontal",
|
|
5760
|
+
const TabsRoot = ({ children, value: controlledValue, defaultValue, onValueChange, orientation = "horizontal", mode = "tabs", variant = "line", color = "primary", size = "md", keepMounted = false, lazyMount = false, disabled = false, style }) => {
|
|
5761
5761
|
const styles = useThemeStyles(createStyles$4);
|
|
5762
5762
|
const isControlled = controlledValue !== void 0;
|
|
5763
5763
|
const [version, setVersion] = useState(0);
|
|
@@ -5823,7 +5823,6 @@ const TabsRoot = ({ children, value: controlledValue, defaultValue, onValueChang
|
|
|
5823
5823
|
setValue,
|
|
5824
5824
|
mode,
|
|
5825
5825
|
orientation,
|
|
5826
|
-
activationMode,
|
|
5827
5826
|
variant,
|
|
5828
5827
|
color,
|
|
5829
5828
|
size,
|
|
@@ -5835,7 +5834,6 @@ const TabsRoot = ({ children, value: controlledValue, defaultValue, onValueChang
|
|
|
5835
5834
|
getTriggerLayout,
|
|
5836
5835
|
registerTriggerLayout
|
|
5837
5836
|
}), [
|
|
5838
|
-
activationMode,
|
|
5839
5837
|
color,
|
|
5840
5838
|
disabled,
|
|
5841
5839
|
keepMounted,
|