@campxdev/react-native-blueprint 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/README.md +156 -25
- package/lib/commonjs/app/_layout.js +34 -0
- package/lib/commonjs/app/_layout.js.map +1 -0
- package/lib/commonjs/assets/icons/weather_icons/drizzle.png +0 -0
- package/lib/commonjs/assets/icons/weather_icons/foggy.png +0 -0
- package/lib/commonjs/assets/icons/weather_icons/freezing_rain.png +0 -0
- package/lib/commonjs/assets/icons/weather_icons/partly_cloudy.png +0 -0
- package/lib/commonjs/assets/icons/weather_icons/rainy.png +0 -0
- package/lib/commonjs/assets/icons/weather_icons/showers.png +0 -0
- package/lib/commonjs/assets/icons/weather_icons/sunny_weather.png +0 -0
- package/lib/commonjs/assets/icons/weather_icons/thunderstorm.png +0 -0
- package/lib/commonjs/assets/icons/weather_icons/thunderstorm_hail.png +0 -0
- package/lib/commonjs/components/theme-config.js +274 -0
- package/lib/commonjs/components/theme-config.js.map +1 -0
- package/lib/commonjs/components/ui/Accordion.js +235 -0
- package/lib/commonjs/components/ui/Accordion.js.map +1 -0
- package/lib/commonjs/components/ui/Alert-Dialog.js +280 -0
- package/lib/commonjs/components/ui/Alert-Dialog.js.map +1 -0
- package/lib/commonjs/components/ui/Alert.js +113 -0
- package/lib/commonjs/components/ui/Alert.js.map +1 -0
- package/lib/commonjs/components/ui/AppBar.js +407 -0
- package/lib/commonjs/components/ui/AppBar.js.map +1 -0
- package/lib/commonjs/components/ui/Aspect-Ratio.js +30 -0
- package/lib/commonjs/components/ui/Aspect-Ratio.js.map +1 -0
- package/lib/commonjs/components/ui/Avatar.js +101 -0
- package/lib/commonjs/components/ui/Avatar.js.map +1 -0
- package/lib/commonjs/components/ui/Badge.js +131 -0
- package/lib/commonjs/components/ui/Badge.js.map +1 -0
- package/lib/commonjs/components/ui/Bottom-Sheet.js +156 -0
- package/lib/commonjs/components/ui/Bottom-Sheet.js.map +1 -0
- package/lib/commonjs/components/ui/Button.js +92 -0
- package/lib/commonjs/components/ui/Button.js.map +1 -0
- package/lib/commonjs/components/ui/Card.js +180 -0
- package/lib/commonjs/components/ui/Card.js.map +1 -0
- package/lib/commonjs/components/ui/Checkbox.js +69 -0
- package/lib/commonjs/components/ui/Checkbox.js.map +1 -0
- package/lib/commonjs/components/ui/Collapsible.js +45 -0
- package/lib/commonjs/components/ui/Collapsible.js.map +1 -0
- package/lib/commonjs/components/ui/Context-Menu.js +304 -0
- package/lib/commonjs/components/ui/Context-Menu.js.map +1 -0
- package/lib/commonjs/components/ui/Custom-Card.js +210 -0
- package/lib/commonjs/components/ui/Custom-Card.js.map +1 -0
- package/lib/commonjs/components/ui/Dialog.js +214 -0
- package/lib/commonjs/components/ui/Dialog.js.map +1 -0
- package/lib/commonjs/components/ui/Dropdown-Menu.js +438 -0
- package/lib/commonjs/components/ui/Dropdown-Menu.js.map +1 -0
- package/lib/commonjs/components/ui/Floating-Action.js +55 -0
- package/lib/commonjs/components/ui/Floating-Action.js.map +1 -0
- package/lib/commonjs/components/ui/Greeting-Card.js +401 -0
- package/lib/commonjs/components/ui/Greeting-Card.js.map +1 -0
- package/lib/commonjs/components/ui/Hover-Card.js +100 -0
- package/lib/commonjs/components/ui/Hover-Card.js.map +1 -0
- package/lib/commonjs/components/ui/Icon.js +76 -0
- package/lib/commonjs/components/ui/Icon.js.map +1 -0
- package/lib/commonjs/components/ui/Input.js +79 -0
- package/lib/commonjs/components/ui/Input.js.map +1 -0
- package/lib/commonjs/components/ui/Label.js +48 -0
- package/lib/commonjs/components/ui/Label.js.map +1 -0
- package/lib/commonjs/components/ui/Menubar.js +392 -0
- package/lib/commonjs/components/ui/Menubar.js.map +1 -0
- package/lib/commonjs/components/ui/Native-Only-Animated-View.js +43 -0
- package/lib/commonjs/components/ui/Native-Only-Animated-View.js.map +1 -0
- package/lib/commonjs/components/ui/NavBar.js +356 -0
- package/lib/commonjs/components/ui/NavBar.js.map +1 -0
- package/lib/commonjs/components/ui/Popover.js +105 -0
- package/lib/commonjs/components/ui/Popover.js.map +1 -0
- package/lib/commonjs/components/ui/Progress.js +127 -0
- package/lib/commonjs/components/ui/Progress.js.map +1 -0
- package/lib/commonjs/components/ui/Radio-Group.js +78 -0
- package/lib/commonjs/components/ui/Radio-Group.js.map +1 -0
- package/lib/commonjs/components/ui/Select.js +283 -0
- package/lib/commonjs/components/ui/Select.js.map +1 -0
- package/lib/commonjs/components/ui/Separator.js +62 -0
- package/lib/commonjs/components/ui/Separator.js.map +1 -0
- package/lib/commonjs/components/ui/SizedBox.js +106 -0
- package/lib/commonjs/components/ui/SizedBox.js.map +1 -0
- package/lib/commonjs/components/ui/Skeleton.js +60 -0
- package/lib/commonjs/components/ui/Skeleton.js.map +1 -0
- package/lib/commonjs/components/ui/Slider.js +178 -0
- package/lib/commonjs/components/ui/Slider.js.map +1 -0
- package/lib/commonjs/components/ui/Switch.js +57 -0
- package/lib/commonjs/components/ui/Switch.js.map +1 -0
- package/lib/commonjs/components/ui/Table.js +161 -0
- package/lib/commonjs/components/ui/Table.js.map +1 -0
- package/lib/commonjs/components/ui/Tabs.js +111 -0
- package/lib/commonjs/components/ui/Tabs.js.map +1 -0
- package/lib/commonjs/components/ui/Text.js +73 -0
- package/lib/commonjs/components/ui/Text.js.map +1 -0
- package/lib/commonjs/components/ui/Textarea.js +93 -0
- package/lib/commonjs/components/ui/Textarea.js.map +1 -0
- package/lib/commonjs/components/ui/Theme-Toggle.js +160 -0
- package/lib/commonjs/components/ui/Theme-Toggle.js.map +1 -0
- package/lib/commonjs/components/ui/Toast.js +107 -0
- package/lib/commonjs/components/ui/Toast.js.map +1 -0
- package/lib/commonjs/components/ui/Toggle-Group.js +133 -0
- package/lib/commonjs/components/ui/Toggle-Group.js.map +1 -0
- package/lib/commonjs/components/ui/Toggle.js +110 -0
- package/lib/commonjs/components/ui/Toggle.js.map +1 -0
- package/lib/commonjs/components/ui/Tooltip.js +110 -0
- package/lib/commonjs/components/ui/Tooltip.js.map +1 -0
- package/lib/commonjs/components/ui/index.js +479 -0
- package/lib/commonjs/components/ui/index.js.map +1 -0
- package/lib/commonjs/global.css +417 -0
- package/lib/commonjs/index.js +118 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/lib/ThemeProvider.js +180 -0
- package/lib/commonjs/lib/ThemeProvider.js.map +1 -0
- package/lib/commonjs/lib/cornerRadius.js +171 -0
- package/lib/commonjs/lib/cornerRadius.js.map +1 -0
- package/lib/commonjs/lib/fonts.js +101 -0
- package/lib/commonjs/lib/fonts.js.map +1 -0
- package/lib/commonjs/lib/slot-helpers.js +24 -0
- package/lib/commonjs/lib/slot-helpers.js.map +1 -0
- package/lib/commonjs/lib/theme.js +215 -0
- package/lib/commonjs/lib/theme.js.map +1 -0
- package/lib/commonjs/lib/utils.js +142 -0
- package/lib/commonjs/lib/utils.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/types/components.d.js +6 -0
- package/lib/commonjs/types/components.d.js.map +1 -0
- package/lib/commonjs/types/global.d.js +8 -0
- package/lib/commonjs/types/global.d.js.map +1 -0
- package/lib/commonjs/types/rn-primitives.d.js +6 -0
- package/lib/commonjs/types/rn-primitives.d.js.map +1 -0
- package/lib/module/components/ui/Alert-Dialog.js.map +1 -1
- package/lib/module/components/ui/Context-Menu.js.map +1 -1
- package/lib/module/components/ui/Dropdown-Menu.js.map +1 -1
- package/lib/module/components/ui/Menubar.js.map +1 -1
- package/lib/module/components/ui/Tabs.js.map +1 -1
- package/lib/module/components/ui/Toggle-Group.js.map +1 -1
- package/lib/module/lib/fonts.js +81 -8
- package/lib/module/lib/fonts.js.map +1 -1
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/src/app/_layout.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/theme-config.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Accordion.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Alert-Dialog.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Alert.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/AppBar.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Aspect-Ratio.d.ts.map +1 -0
- package/lib/typescript/{src → commonjs/src}/components/ui/Avatar.d.ts +59 -59
- package/lib/typescript/{src → commonjs/src}/components/ui/Avatar.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/components/ui/Badge.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Bottom-Sheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Checkbox.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Collapsible.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Context-Menu.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Custom-Card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Dialog.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Dropdown-Menu.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Floating-Action.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Greeting-Card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Hover-Card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Input.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Label.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Menubar.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Native-Only-Animated-View.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/NavBar.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Popover.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Progress.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Radio-Group.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Select.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Separator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/SizedBox.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Skeleton.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Slider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Switch.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Table.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Tabs.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Text.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Textarea.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Theme-Toggle.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Toast.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Toggle-Group.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Toggle.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/Tooltip.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/components/ui/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/lib/ThemeProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/lib/cornerRadius.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/lib/fonts.d.ts +16 -0
- package/lib/typescript/commonjs/src/lib/fonts.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/lib/slot-helpers.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/lib/theme.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/lib/utils.d.ts.map +1 -0
- package/lib/typescript/module/src/app/_layout.d.ts +7 -0
- package/lib/typescript/module/src/app/_layout.d.ts.map +1 -0
- package/lib/typescript/module/src/components/theme-config.d.ts +174 -0
- package/lib/typescript/module/src/components/theme-config.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Accordion.d.ts +103 -0
- package/lib/typescript/module/src/components/ui/Accordion.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Alert-Dialog.d.ts +145 -0
- package/lib/typescript/module/src/components/ui/Alert-Dialog.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Alert.d.ts +61 -0
- package/lib/typescript/module/src/components/ui/Alert.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/AppBar.d.ts +227 -0
- package/lib/typescript/module/src/components/ui/AppBar.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Aspect-Ratio.d.ts +24 -0
- package/lib/typescript/module/src/components/ui/Aspect-Ratio.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Avatar.d.ts +1486 -0
- package/lib/typescript/module/src/components/ui/Avatar.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Badge.d.ts +77 -0
- package/lib/typescript/module/src/components/ui/Badge.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Bottom-Sheet.d.ts +43 -0
- package/lib/typescript/module/src/components/ui/Bottom-Sheet.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Button.d.ts +23 -0
- package/lib/typescript/module/src/components/ui/Button.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Card.d.ts +93 -0
- package/lib/typescript/module/src/components/ui/Card.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Checkbox.d.ts +36 -0
- package/lib/typescript/module/src/components/ui/Checkbox.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Collapsible.d.ts +37 -0
- package/lib/typescript/module/src/components/ui/Collapsible.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Context-Menu.d.ts +107 -0
- package/lib/typescript/module/src/components/ui/Context-Menu.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Custom-Card.d.ts +103 -0
- package/lib/typescript/module/src/components/ui/Custom-Card.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Dialog.d.ts +90 -0
- package/lib/typescript/module/src/components/ui/Dialog.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Dropdown-Menu.d.ts +242 -0
- package/lib/typescript/module/src/components/ui/Dropdown-Menu.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Floating-Action.d.ts +44 -0
- package/lib/typescript/module/src/components/ui/Floating-Action.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Greeting-Card.d.ts +153 -0
- package/lib/typescript/module/src/components/ui/Greeting-Card.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Hover-Card.d.ts +49 -0
- package/lib/typescript/module/src/components/ui/Hover-Card.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Icon.d.ts +43 -0
- package/lib/typescript/module/src/components/ui/Icon.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Input.d.ts +54 -0
- package/lib/typescript/module/src/components/ui/Input.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Label.d.ts +34 -0
- package/lib/typescript/module/src/components/ui/Label.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Menubar.d.ts +142 -0
- package/lib/typescript/module/src/components/ui/Menubar.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Native-Only-Animated-View.d.ts +26 -0
- package/lib/typescript/module/src/components/ui/Native-Only-Animated-View.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/NavBar.d.ts +273 -0
- package/lib/typescript/module/src/components/ui/NavBar.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Popover.d.ts +54 -0
- package/lib/typescript/module/src/components/ui/Popover.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Progress.d.ts +27 -0
- package/lib/typescript/module/src/components/ui/Progress.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Radio-Group.d.ts +47 -0
- package/lib/typescript/module/src/components/ui/Radio-Group.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Select.d.ts +86 -0
- package/lib/typescript/module/src/components/ui/Select.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Separator.d.ts +40 -0
- package/lib/typescript/module/src/components/ui/Separator.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/SizedBox.d.ts +79 -0
- package/lib/typescript/module/src/components/ui/SizedBox.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Skeleton.d.ts +42 -0
- package/lib/typescript/module/src/components/ui/Skeleton.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Slider.d.ts +56 -0
- package/lib/typescript/module/src/components/ui/Slider.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Switch.d.ts +34 -0
- package/lib/typescript/module/src/components/ui/Switch.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Table.d.ts +80 -0
- package/lib/typescript/module/src/components/ui/Table.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Tabs.d.ts +51 -0
- package/lib/typescript/module/src/components/ui/Tabs.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Text.d.ts +45 -0
- package/lib/typescript/module/src/components/ui/Text.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Textarea.d.ts +65 -0
- package/lib/typescript/module/src/components/ui/Textarea.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Theme-Toggle.d.ts +67 -0
- package/lib/typescript/module/src/components/ui/Theme-Toggle.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Toast.d.ts +56 -0
- package/lib/typescript/module/src/components/ui/Toast.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Toggle-Group.d.ts +49 -0
- package/lib/typescript/module/src/components/ui/Toggle-Group.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Toggle.d.ts +53 -0
- package/lib/typescript/module/src/components/ui/Toggle.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/Tooltip.d.ts +51 -0
- package/lib/typescript/module/src/components/ui/Tooltip.d.ts.map +1 -0
- package/lib/typescript/module/src/components/ui/index.d.ts +44 -0
- package/lib/typescript/module/src/components/ui/index.d.ts.map +1 -0
- package/lib/typescript/module/src/index.d.ts +9 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -0
- package/lib/typescript/module/src/lib/ThemeProvider.d.ts +137 -0
- package/lib/typescript/module/src/lib/ThemeProvider.d.ts.map +1 -0
- package/lib/typescript/module/src/lib/cornerRadius.d.ts +112 -0
- package/lib/typescript/module/src/lib/cornerRadius.d.ts.map +1 -0
- package/lib/typescript/module/src/lib/fonts.d.ts +16 -0
- package/lib/typescript/module/src/lib/fonts.d.ts.map +1 -0
- package/lib/typescript/module/src/lib/slot-helpers.d.ts +32 -0
- package/lib/typescript/module/src/lib/slot-helpers.d.ts.map +1 -0
- package/lib/typescript/module/src/lib/theme.d.ts +87 -0
- package/lib/typescript/module/src/lib/theme.d.ts.map +1 -0
- package/lib/typescript/module/src/lib/utils.d.ts +111 -0
- package/lib/typescript/module/src/lib/utils.d.ts.map +1 -0
- package/package.json +180 -50
- package/src/components/ui/Alert-Dialog.tsx +2 -2
- package/src/components/ui/Context-Menu.tsx +1 -1
- package/src/components/ui/Dropdown-Menu.tsx +1 -1
- package/src/components/ui/Menubar.tsx +2 -2
- package/src/components/ui/Tabs.tsx +1 -1
- package/src/components/ui/Toggle-Group.tsx +2 -2
- package/src/lib/fonts.ts +83 -12
- package/lib/typescript/src/app/_layout.d.ts.map +0 -1
- package/lib/typescript/src/components/theme-config.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Accordion.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Alert-Dialog.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Alert.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/AppBar.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Aspect-Ratio.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Badge.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Bottom-Sheet.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Button.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Card.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Checkbox.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Collapsible.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Context-Menu.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Custom-Card.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Dialog.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Dropdown-Menu.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Floating-Action.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Greeting-Card.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Hover-Card.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Icon.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Input.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Label.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Menubar.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Native-Only-Animated-View.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/NavBar.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Popover.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Progress.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Radio-Group.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Select.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Separator.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/SizedBox.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Skeleton.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Slider.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Switch.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Table.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Tabs.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Text.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Textarea.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Theme-Toggle.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Toast.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Toggle-Group.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Toggle.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/Tooltip.d.ts.map +0 -1
- package/lib/typescript/src/components/ui/index.d.ts.map +0 -1
- package/lib/typescript/src/index.d.ts.map +0 -1
- package/lib/typescript/src/lib/ThemeProvider.d.ts.map +0 -1
- package/lib/typescript/src/lib/cornerRadius.d.ts.map +0 -1
- package/lib/typescript/src/lib/fonts.d.ts +0 -21
- package/lib/typescript/src/lib/fonts.d.ts.map +0 -1
- package/lib/typescript/src/lib/slot-helpers.d.ts.map +0 -1
- package/lib/typescript/src/lib/theme.d.ts.map +0 -1
- package/lib/typescript/src/lib/utils.d.ts.map +0 -1
- /package/lib/typescript/{src → commonjs/src}/app/_layout.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/theme-config.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Accordion.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Alert-Dialog.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Alert.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/AppBar.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Aspect-Ratio.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Badge.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Bottom-Sheet.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Button.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Card.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Checkbox.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Collapsible.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Context-Menu.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Custom-Card.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Dialog.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Dropdown-Menu.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Floating-Action.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Greeting-Card.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Hover-Card.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Icon.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Input.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Label.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Menubar.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Native-Only-Animated-View.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/NavBar.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Popover.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Progress.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Radio-Group.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Select.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Separator.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/SizedBox.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Skeleton.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Slider.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Switch.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Table.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Tabs.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Text.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Textarea.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Theme-Toggle.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Toast.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Toggle-Group.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Toggle.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/Tooltip.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/components/ui/index.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/index.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/lib/ThemeProvider.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/lib/cornerRadius.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/lib/slot-helpers.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/lib/theme.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/lib/utils.d.ts +0 -0
- /package/lib/typescript/{package.json → module/package.json} +0 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.Icon = Icon;
|
|
7
|
+
var _utils = require("../../lib/utils");
|
|
8
|
+
var _nativewind = require("nativewind");
|
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
+
/**
|
|
11
|
+
* Props for Icon component
|
|
12
|
+
*
|
|
13
|
+
* @extends LucideProps - All Lucide icon properties (size, color, strokeWidth, etc.)
|
|
14
|
+
* @property {LucideIcon} as - The Lucide icon component to render
|
|
15
|
+
* @property {string} [className] - Tailwind classes for styling (supports NativeWind)
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* ```tsx
|
|
19
|
+
* import { Home } from 'lucide-react-native';
|
|
20
|
+
* <Icon as={Home} size={24} className="text-primary" />
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
function IconImpl({
|
|
25
|
+
as: IconComponent,
|
|
26
|
+
...props
|
|
27
|
+
}) {
|
|
28
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(IconComponent, {
|
|
29
|
+
...props
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
(0, _nativewind.cssInterop)(IconImpl, {
|
|
33
|
+
className: {
|
|
34
|
+
target: 'style',
|
|
35
|
+
nativeStyleToProp: {
|
|
36
|
+
height: 'size',
|
|
37
|
+
width: 'size'
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Universal icon wrapper for Lucide icons
|
|
44
|
+
*
|
|
45
|
+
* Provides consistent styling and sizing for Lucide React Native icons across the application.
|
|
46
|
+
* Automatically handles platform-specific sizing and color theming.
|
|
47
|
+
*
|
|
48
|
+
* @component
|
|
49
|
+
* @example
|
|
50
|
+
* ```tsx
|
|
51
|
+
* import { Settings, User, ChevronRight } from 'lucide-react-native';
|
|
52
|
+
*
|
|
53
|
+
* // Basic icon
|
|
54
|
+
* <Icon as={Settings} />
|
|
55
|
+
*
|
|
56
|
+
* // Sized icon with custom color
|
|
57
|
+
* <Icon as={User} size={32} className="text-primary" />
|
|
58
|
+
*
|
|
59
|
+
* // Icon with stroke width
|
|
60
|
+
* <Icon as={ChevronRight} size={20} strokeWidth={2.5} />
|
|
61
|
+
* ```
|
|
62
|
+
*/
|
|
63
|
+
function Icon({
|
|
64
|
+
as: IconComponent,
|
|
65
|
+
className,
|
|
66
|
+
size = 14,
|
|
67
|
+
...props
|
|
68
|
+
}) {
|
|
69
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(IconImpl, {
|
|
70
|
+
as: IconComponent,
|
|
71
|
+
className: (0, _utils.cn)('text-foreground', className),
|
|
72
|
+
size: size,
|
|
73
|
+
...props
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=Icon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_utils","require","_nativewind","_jsxRuntime","IconImpl","as","IconComponent","props","jsx","cssInterop","className","target","nativeStyleToProp","height","width","Icon","size","cn"],"sourceRoot":"../../../../src","sources":["components/ui/Icon.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAEA,IAAAC,WAAA,GAAAD,OAAA;AAAwC,IAAAE,WAAA,GAAAF,OAAA;AAExC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA,SAASG,QAAQA,CAAC;EAAEC,EAAE,EAAEC,aAAa;EAAE,GAAGC;AAAiB,CAAC,EAAE;EAC5D,oBAAO,IAAAJ,WAAA,CAAAK,GAAA,EAACF,aAAa;IAAA,GAAKC;EAAK,CAAG,CAAC;AACrC;AAEA,IAAAE,sBAAU,EAACL,QAAQ,EAAE;EACnBM,SAAS,EAAE;IACTC,MAAM,EAAE,OAAO;IACfC,iBAAiB,EAAE;MACjBC,MAAM,EAAE,MAAM;MACdC,KAAK,EAAE;IACT;EACF;AACF,CAAC,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASC,IAAIA,CAAC;EACZV,EAAE,EAAEC,aAAa;EACjBI,SAAS;EACTM,IAAI,GAAG,EAAE;EACT,GAAGT;AACM,CAAC,EAAE;EACZ,oBACE,IAAAJ,WAAA,CAAAK,GAAA,EAACJ,QAAQ;IACPC,EAAE,EAAEC,aAAc;IAClBI,SAAS,EAAE,IAAAO,SAAE,EAAC,iBAAiB,EAAEP,SAAS,CAAE;IAC5CM,IAAI,EAAEA,IAAK;IAAA,GACPT;EAAK,CACV,CAAC;AAEN","ignoreList":[]}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.Input = Input;
|
|
7
|
+
var _utils = require("../../lib/utils");
|
|
8
|
+
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
var _reactNative = require("react-native");
|
|
10
|
+
var _nativewind = require("nativewind");
|
|
11
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
12
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
13
|
+
const TextInput = (0, _nativewind.cssInterop)(_reactNative.TextInput, {
|
|
14
|
+
className: 'style'
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Props for Input component
|
|
19
|
+
*
|
|
20
|
+
* @extends TextInputProps - All standard React Native TextInput props
|
|
21
|
+
* @property {string} [className] - Additional Tailwind classes for custom styling
|
|
22
|
+
* @property {boolean} [editable=true] - Whether the input is editable (disabled when false)
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* A styled text input component with consistent design across platforms
|
|
27
|
+
*
|
|
28
|
+
* Features platform-specific behaviors:
|
|
29
|
+
* - Web: Focus ring, selection styling, aria-invalid support
|
|
30
|
+
* - Native: Optimized placeholder opacity and input styling
|
|
31
|
+
*
|
|
32
|
+
* Automatically adapts styling when disabled/non-editable.
|
|
33
|
+
*
|
|
34
|
+
* @component
|
|
35
|
+
* @example
|
|
36
|
+
* ```tsx
|
|
37
|
+
* // Basic input
|
|
38
|
+
* <Input
|
|
39
|
+
* placeholder="Enter your name"
|
|
40
|
+
* value={name}
|
|
41
|
+
* onChangeText={setName}
|
|
42
|
+
* />
|
|
43
|
+
*
|
|
44
|
+
* // Disabled input
|
|
45
|
+
* <Input
|
|
46
|
+
* value="Read only"
|
|
47
|
+
* editable={false}
|
|
48
|
+
* />
|
|
49
|
+
*
|
|
50
|
+
* // With custom styling
|
|
51
|
+
* <Input
|
|
52
|
+
* className="border-primary"
|
|
53
|
+
* placeholder="Search..."
|
|
54
|
+
* />
|
|
55
|
+
* ```
|
|
56
|
+
*
|
|
57
|
+
* @accessibility
|
|
58
|
+
* - Supports aria-invalid for form validation states (web)
|
|
59
|
+
* - Placeholder text uses appropriate contrast colors
|
|
60
|
+
* - Disabled state is visually indicated with opacity
|
|
61
|
+
*/
|
|
62
|
+
function Input({
|
|
63
|
+
className,
|
|
64
|
+
editable = true,
|
|
65
|
+
...props
|
|
66
|
+
}) {
|
|
67
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(TextInput, {
|
|
68
|
+
className: (0, _utils.cn)('bg-background dark:bg-background border-input dark:border-input text-foreground dark:text-foreground flex h-10 w-full min-w-0 flex-row items-center rounded-md border px-3 py-1 text-base leading-5 shadow-sm shadow-black/5 dark:shadow-white/5 sm:h-9', !editable && (0, _utils.cn)('opacity-50', _reactNative.Platform.select({
|
|
69
|
+
web: 'disabled:pointer-events-none disabled:cursor-not-allowed'
|
|
70
|
+
})), _reactNative.Platform.select({
|
|
71
|
+
web: (0, _utils.cn)('placeholder:text-muted-foreground dark:placeholder:text-muted-foreground selection:bg-primary dark:selection:bg-primary selection:text-primary-foreground dark:selection:text-primary-foreground outline-none transition-[color,box-shadow] md:text-sm', 'focus-visible:border-ring dark:focus-visible:border-ring focus-visible:ring-ring/50 dark:focus-visible:ring-ring/50 focus-visible:ring-[3px]', 'aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive'),
|
|
72
|
+
native: 'placeholder:text-muted-foreground/50 dark:placeholder:text-muted-foreground/50'
|
|
73
|
+
}), className),
|
|
74
|
+
placeholderTextColor: undefined,
|
|
75
|
+
editable: editable,
|
|
76
|
+
...props
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
//# sourceMappingURL=Input.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_utils","require","React","_interopRequireWildcard","_reactNative","_nativewind","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","TextInput","cssInterop","RNTextInput","className","Input","editable","props","jsx","cn","Platform","select","web","native","placeholderTextColor","undefined"],"sourceRoot":"../../../../src","sources":["components/ui/Input.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,KAAA,GAAAC,uBAAA,CAAAF,OAAA;AACA,IAAAG,YAAA,GAAAH,OAAA;AAKA,IAAAI,WAAA,GAAAJ,OAAA;AAAwC,IAAAK,WAAA,GAAAL,OAAA;AAAA,SAAAE,wBAAAI,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAN,uBAAA,YAAAA,CAAAI,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAExC,MAAMkB,SAAS,GAAG,IAAAC,sBAAU,EAACC,sBAAW,EAAE;EACxCC,SAAS,EAAE;AACb,CAAC,CAA6B;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASC,KAAKA,CAAC;EACbD,SAAS;EACTE,QAAQ,GAAG,IAAI;EACf,GAAGC;AAC0C,CAAC,EAAE;EAChD,oBACE,IAAA1B,WAAA,CAAA2B,GAAA,EAACP,SAAS;IACRG,SAAS,EAAE,IAAAK,SAAE,EACX,yPAAyP,EACzP,CAACH,QAAQ,IACP,IAAAG,SAAE,EACA,YAAY,EACZC,qBAAQ,CAACC,MAAM,CAAC;MACdC,GAAG,EAAE;IACP,CAAC,CACH,CAAC,EACHF,qBAAQ,CAACC,MAAM,CAAC;MACdC,GAAG,EAAE,IAAAH,SAAE,EACL,wPAAwP,EACxP,8IAA8I,EAC9I,6IACF,CAAC;MACDI,MAAM,EACJ;IACJ,CAAC,CAAC,EACFT,SACF,CAAE;IACFU,oBAAoB,EAAEC,SAAU;IAChCT,QAAQ,EAAEA,QAAS;IAAA,GACfC;EAAK,CACV,CAAC;AAEN","ignoreList":[]}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.Label = void 0;
|
|
7
|
+
var React = _interopRequireWildcard(require("react"));
|
|
8
|
+
var _utils = require("../../lib/utils");
|
|
9
|
+
var _Text = require("./Text");
|
|
10
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
12
|
+
/**
|
|
13
|
+
* Accessible label component for form controls
|
|
14
|
+
*
|
|
15
|
+
* Provides semantic labeling for form inputs with proper styling and accessibility support.
|
|
16
|
+
* Automatically associates with form controls and respects disabled states.
|
|
17
|
+
*
|
|
18
|
+
* @component
|
|
19
|
+
* @example
|
|
20
|
+
* ```tsx
|
|
21
|
+
* // Label with input
|
|
22
|
+
* <View className="gap-2">
|
|
23
|
+
* <Label htmlFor="email">Email Address</Label>
|
|
24
|
+
* <Input id="email" placeholder="Enter email" />
|
|
25
|
+
* </View>
|
|
26
|
+
*
|
|
27
|
+
* // Label for checkbox
|
|
28
|
+
* <View className="flex-row items-center gap-2">
|
|
29
|
+
* <Checkbox id="terms" />
|
|
30
|
+
* <Label htmlFor="terms">I agree to the terms and conditions</Label>
|
|
31
|
+
* </View>
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
* @accessibility
|
|
35
|
+
* - Properly associates with form controls via htmlFor/id
|
|
36
|
+
* - Reduced opacity when associated control is disabled
|
|
37
|
+
* - Screen reader compatible
|
|
38
|
+
*/
|
|
39
|
+
const Label = exports.Label = /*#__PURE__*/React.forwardRef(({
|
|
40
|
+
className,
|
|
41
|
+
...props
|
|
42
|
+
}, ref) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_Text.Text, {
|
|
43
|
+
className: (0, _utils.cn)('text-sm native:text-base font-medium leading-none text-foreground dark:text-foreground peer-disabled:cursor-not-allowed peer-disabled:opacity-70', className),
|
|
44
|
+
ref: ref,
|
|
45
|
+
...props
|
|
46
|
+
}));
|
|
47
|
+
Label.displayName = 'Label';
|
|
48
|
+
//# sourceMappingURL=Label.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","_interopRequireWildcard","require","_utils","_Text","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","Label","exports","forwardRef","className","props","ref","jsx","Text","cn","displayName"],"sourceRoot":"../../../../src","sources":["components/ui/Label.tsx"],"mappings":";;;;;;AAAA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,MAAA,GAAAD,OAAA;AACA,IAAAE,KAAA,GAAAF,OAAA;AAA8B,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,wBAAAK,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAP,uBAAA,YAAAA,CAAAK,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAG9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMkB,KAAK,GAAAC,OAAA,CAAAD,KAAA,gBAAGzB,KAAK,CAAC2B,UAAU,CAG5B,CAAC;EAAEC,SAAS;EAAE,GAAGC;AAAM,CAAC,EAAEC,GAAG,kBAC7B,IAAAzB,WAAA,CAAA0B,GAAA,EAAC3B,KAAA,CAAA4B,IAAI;EACHJ,SAAS,EAAE,IAAAK,SAAE,EACX,kJAAkJ,EAClJL,SACF,CAAE;EACFE,GAAG,EAAEA,GAAI;EAAA,GACLD;AAAK,CACV,CACF,CAAC;AACFJ,KAAK,CAACS,WAAW,GAAG,OAAO","ignoreList":[]}
|
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.Menubar = Menubar;
|
|
7
|
+
exports.MenubarCheckboxItem = MenubarCheckboxItem;
|
|
8
|
+
exports.MenubarContent = MenubarContent;
|
|
9
|
+
exports.MenubarGroup = void 0;
|
|
10
|
+
exports.MenubarItem = MenubarItem;
|
|
11
|
+
exports.MenubarLabel = MenubarLabel;
|
|
12
|
+
exports.MenubarRadioGroup = exports.MenubarPortal = exports.MenubarMenu = void 0;
|
|
13
|
+
exports.MenubarRadioItem = MenubarRadioItem;
|
|
14
|
+
exports.MenubarSeparator = MenubarSeparator;
|
|
15
|
+
exports.MenubarShortcut = MenubarShortcut;
|
|
16
|
+
exports.MenubarSub = void 0;
|
|
17
|
+
exports.MenubarSubContent = MenubarSubContent;
|
|
18
|
+
exports.MenubarSubTrigger = MenubarSubTrigger;
|
|
19
|
+
exports.MenubarTrigger = MenubarTrigger;
|
|
20
|
+
var _Icon = require("./Icon");
|
|
21
|
+
var _NativeOnlyAnimatedView = require("./Native-Only-Animated-View");
|
|
22
|
+
var _Text = require("./Text");
|
|
23
|
+
var _utils = require("../../lib/utils");
|
|
24
|
+
var MenubarPrimitive = _interopRequireWildcard(require("@rn-primitives/menubar"));
|
|
25
|
+
var _portal = require("@rn-primitives/portal");
|
|
26
|
+
var _lucideReactNative = require("lucide-react-native");
|
|
27
|
+
var React = _interopRequireWildcard(require("react"));
|
|
28
|
+
var _reactNative = require("react-native");
|
|
29
|
+
var _nativewind = require("nativewind");
|
|
30
|
+
var _reactNativeReanimated = require("react-native-reanimated");
|
|
31
|
+
var _reactNativeScreens = require("react-native-screens");
|
|
32
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
33
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
34
|
+
const View = (0, _nativewind.cssInterop)(_reactNative.View, {
|
|
35
|
+
className: 'style'
|
|
36
|
+
});
|
|
37
|
+
const Text = (0, _nativewind.cssInterop)(_reactNative.Text, {
|
|
38
|
+
className: 'style'
|
|
39
|
+
});
|
|
40
|
+
const Pressable = (0, _nativewind.cssInterop)(_reactNative.Pressable, {
|
|
41
|
+
className: 'style'
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Individual menu within the menubar
|
|
46
|
+
*
|
|
47
|
+
* @component
|
|
48
|
+
*/
|
|
49
|
+
const MenubarMenu = exports.MenubarMenu = MenubarPrimitive.Menu;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Groups related menu items together
|
|
53
|
+
*
|
|
54
|
+
* @component
|
|
55
|
+
*/
|
|
56
|
+
const MenubarGroup = exports.MenubarGroup = MenubarPrimitive.Group;
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Portal component to render menu content outside the DOM hierarchy
|
|
60
|
+
*
|
|
61
|
+
* @component
|
|
62
|
+
*/
|
|
63
|
+
const MenubarPortal = exports.MenubarPortal = MenubarPrimitive.Portal;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Root component for nested submenu
|
|
67
|
+
*
|
|
68
|
+
* @component
|
|
69
|
+
*/
|
|
70
|
+
const MenubarSub = exports.MenubarSub = MenubarPrimitive.Sub;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Groups radio items together with single selection
|
|
74
|
+
*
|
|
75
|
+
* @component
|
|
76
|
+
*/
|
|
77
|
+
const MenubarRadioGroup = exports.MenubarRadioGroup = MenubarPrimitive.RadioGroup;
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Full window overlay wrapper for iOS, Fragment for other platforms
|
|
81
|
+
*/
|
|
82
|
+
const FullWindowOverlay = _reactNative.Platform.OS === 'ios' ? _reactNativeScreens.FullWindowOverlay : React.Fragment;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Root menubar component for application-level menu navigation
|
|
86
|
+
*
|
|
87
|
+
* Provides horizontal menu bar similar to desktop applications, with support
|
|
88
|
+
* for nested menus and automatic close on outside press.
|
|
89
|
+
*
|
|
90
|
+
* @component
|
|
91
|
+
* @example
|
|
92
|
+
* ```tsx
|
|
93
|
+
* <Menubar>
|
|
94
|
+
* <MenubarMenu>
|
|
95
|
+
* <MenubarTrigger>
|
|
96
|
+
* <Text>File</Text>
|
|
97
|
+
* </MenubarTrigger>
|
|
98
|
+
* <MenubarContent>
|
|
99
|
+
* <MenubarItem>
|
|
100
|
+
* <Text>New File</Text>
|
|
101
|
+
* </MenubarItem>
|
|
102
|
+
* <MenubarItem>
|
|
103
|
+
* <Text>Open</Text>
|
|
104
|
+
* </MenubarItem>
|
|
105
|
+
* </MenubarContent>
|
|
106
|
+
* </MenubarMenu>
|
|
107
|
+
* </Menubar>
|
|
108
|
+
* ```
|
|
109
|
+
*
|
|
110
|
+
* @accessibility
|
|
111
|
+
* - Keyboard navigation support
|
|
112
|
+
* - Proper ARIA attributes for menu structure
|
|
113
|
+
*/
|
|
114
|
+
function Menubar({
|
|
115
|
+
className,
|
|
116
|
+
value: valueProp,
|
|
117
|
+
onValueChange: onValueChangeProp,
|
|
118
|
+
...props
|
|
119
|
+
}) {
|
|
120
|
+
const id = React.useId();
|
|
121
|
+
const [value, setValue] = React.useState(undefined);
|
|
122
|
+
function closeMenu() {
|
|
123
|
+
if (onValueChangeProp) {
|
|
124
|
+
onValueChangeProp(undefined);
|
|
125
|
+
return;
|
|
126
|
+
}
|
|
127
|
+
setValue(undefined);
|
|
128
|
+
}
|
|
129
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
130
|
+
children: [_reactNative.Platform.OS !== 'web' && (value || valueProp) ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_portal.Portal, {
|
|
131
|
+
name: `menubar-overlay-${id}`,
|
|
132
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(Pressable, {
|
|
133
|
+
onPress: closeMenu,
|
|
134
|
+
style: _reactNative.StyleSheet.absoluteFill
|
|
135
|
+
})
|
|
136
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(MenubarPrimitive.Root, {
|
|
137
|
+
className: (0, _utils.cn)('bg-background border-border flex h-10 flex-row items-center gap-1 rounded-md border p-1 shadow-sm shadow-black/5 sm:h-9', className),
|
|
138
|
+
value: value ?? valueProp,
|
|
139
|
+
onValueChange: onValueChangeProp ?? setValue,
|
|
140
|
+
...props
|
|
141
|
+
})]
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* Trigger button for a menubar menu
|
|
147
|
+
*
|
|
148
|
+
* @component
|
|
149
|
+
* @example
|
|
150
|
+
* ```tsx
|
|
151
|
+
* <MenubarTrigger>
|
|
152
|
+
* <Text>Edit</Text>
|
|
153
|
+
* </MenubarTrigger>
|
|
154
|
+
* ```
|
|
155
|
+
*/
|
|
156
|
+
function MenubarTrigger({
|
|
157
|
+
className,
|
|
158
|
+
...props
|
|
159
|
+
}) {
|
|
160
|
+
const {
|
|
161
|
+
value
|
|
162
|
+
} = MenubarPrimitive.useRootContext();
|
|
163
|
+
const {
|
|
164
|
+
value: itemValue
|
|
165
|
+
} = MenubarPrimitive.useMenuContext();
|
|
166
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Text.TextClassContext.Provider, {
|
|
167
|
+
value: (0, _utils.cn)('text-sm font-medium select-none group-active:text-accent-foreground', value === itemValue && 'text-accent-foreground'),
|
|
168
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(MenubarPrimitive.Trigger, {
|
|
169
|
+
className: (0, _utils.cn)('group flex items-center rounded-md px-2 py-1.5 sm:py-1', _reactNative.Platform.select({
|
|
170
|
+
web: 'focus:bg-accent focus:text-accent-foreground cursor-default outline-none'
|
|
171
|
+
}), value === itemValue && 'bg-accent', className),
|
|
172
|
+
...props
|
|
173
|
+
})
|
|
174
|
+
});
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* Trigger for opening a nested submenu
|
|
179
|
+
* @component
|
|
180
|
+
*/
|
|
181
|
+
function MenubarSubTrigger({
|
|
182
|
+
className: _className,
|
|
183
|
+
inset,
|
|
184
|
+
children,
|
|
185
|
+
iconClassName,
|
|
186
|
+
...props
|
|
187
|
+
}) {
|
|
188
|
+
const {
|
|
189
|
+
open
|
|
190
|
+
} = MenubarPrimitive.useSubContext();
|
|
191
|
+
const icon = _reactNative.Platform.OS === 'web' ? _lucideReactNative.ChevronRight : open ? _lucideReactNative.ChevronUp : _lucideReactNative.ChevronDown;
|
|
192
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Text.TextClassContext.Provider, {
|
|
193
|
+
value: (0, _utils.cn)('text-sm select-none group-active:text-accent-foreground', open && 'text-accent-foreground'),
|
|
194
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(MenubarPrimitive.SubTrigger, {
|
|
195
|
+
className: (0, _utils.cn)('active:bg-accent group flex flex-row items-center rounded-sm px-2 py-2 sm:py-1.5', _reactNative.Platform.select({
|
|
196
|
+
web: 'focus:bg-accent focus:text-accent-foreground cursor-default outline-none [&_svg]:pointer-events-none'
|
|
197
|
+
}), open && 'bg-accent', inset && 'pl-8'),
|
|
198
|
+
...props,
|
|
199
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
|
|
200
|
+
children: children
|
|
201
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_Icon.Icon, {
|
|
202
|
+
as: icon,
|
|
203
|
+
className: (0, _utils.cn)('text-foreground ml-auto size-4 shrink-0', iconClassName)
|
|
204
|
+
})]
|
|
205
|
+
})
|
|
206
|
+
});
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* Content container for nested submenu items
|
|
211
|
+
* @component
|
|
212
|
+
*/
|
|
213
|
+
function MenubarSubContent({
|
|
214
|
+
className,
|
|
215
|
+
...props
|
|
216
|
+
}) {
|
|
217
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_NativeOnlyAnimatedView.NativeOnlyAnimatedView, {
|
|
218
|
+
entering: _reactNativeReanimated.FadeIn,
|
|
219
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(MenubarPrimitive.SubContent, {
|
|
220
|
+
className: (0, _utils.cn)('bg-popover border-border overflow-hidden rounded-md border p-1 shadow-lg shadow-black/5', _reactNative.Platform.select({
|
|
221
|
+
web: 'animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 fade-in-0 data-[state=closed]:zoom-out-95 zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-(--radix-context-menu-content-transform-origin) z-50 min-w-[8rem]'
|
|
222
|
+
}), className),
|
|
223
|
+
...props
|
|
224
|
+
})
|
|
225
|
+
});
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* Main content container for menu items
|
|
230
|
+
* @component
|
|
231
|
+
*/
|
|
232
|
+
function MenubarContent({
|
|
233
|
+
className,
|
|
234
|
+
overlayClassName: _overlayClassName,
|
|
235
|
+
overlayStyle: _overlayStyle,
|
|
236
|
+
portalHost,
|
|
237
|
+
align = 'start',
|
|
238
|
+
alignOffset = -4,
|
|
239
|
+
sideOffset = 8,
|
|
240
|
+
...props
|
|
241
|
+
}) {
|
|
242
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(MenubarPrimitive.Portal, {
|
|
243
|
+
hostName: portalHost,
|
|
244
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(FullWindowOverlay, {
|
|
245
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_NativeOnlyAnimatedView.NativeOnlyAnimatedView, {
|
|
246
|
+
entering: _reactNativeReanimated.FadeIn,
|
|
247
|
+
style: _reactNative.StyleSheet.absoluteFill,
|
|
248
|
+
pointerEvents: "box-none",
|
|
249
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Text.TextClassContext.Provider, {
|
|
250
|
+
value: "text-popover-foreground",
|
|
251
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(MenubarPrimitive.Content, {
|
|
252
|
+
className: (0, _utils.cn)('bg-popover border-border min-w-[12rem] overflow-hidden rounded-md border p-1 shadow-lg shadow-black/5', _reactNative.Platform.select({
|
|
253
|
+
web: (0, _utils.cn)('animate-in fade-in-0 zoom-in-95 max-h-(--radix-context-menu-content-available-height) origin-(--radix-context-menu-content-transform-origin) z-50 cursor-default', props.side === 'bottom' && 'slide-in-from-top-2', props.side === 'top' && 'slide-in-from-bottom-2')
|
|
254
|
+
}), className),
|
|
255
|
+
align: align,
|
|
256
|
+
alignOffset: alignOffset,
|
|
257
|
+
sideOffset: sideOffset,
|
|
258
|
+
...props
|
|
259
|
+
})
|
|
260
|
+
})
|
|
261
|
+
})
|
|
262
|
+
})
|
|
263
|
+
});
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Individual menu item component
|
|
268
|
+
* @component
|
|
269
|
+
*/
|
|
270
|
+
function MenubarItem({
|
|
271
|
+
className,
|
|
272
|
+
inset,
|
|
273
|
+
variant,
|
|
274
|
+
...props
|
|
275
|
+
}) {
|
|
276
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Text.TextClassContext.Provider, {
|
|
277
|
+
value: (0, _utils.cn)('select-none text-sm text-popover-foreground group-active:text-popover-foreground', variant === 'destructive' && 'text-destructive group-active:text-destructive'),
|
|
278
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(MenubarPrimitive.Item, {
|
|
279
|
+
className: (0, _utils.cn)('active:bg-accent group relative flex flex-row items-center gap-2 rounded-sm px-2 py-2 sm:py-1.5', _reactNative.Platform.select({
|
|
280
|
+
web: (0, _utils.cn)('focus:bg-accent focus:text-accent-foreground cursor-default outline-none data-[disabled]:pointer-events-none', variant === 'destructive' && 'focus:bg-destructive/10 dark:focus:bg-destructive/20')
|
|
281
|
+
}), variant === 'destructive' && 'active:bg-destructive/10 dark:active:bg-destructive/20', props.disabled && 'opacity-50', inset && 'pl-8', className),
|
|
282
|
+
...props
|
|
283
|
+
})
|
|
284
|
+
});
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Menu item with checkbox for multi-selection
|
|
289
|
+
* @component
|
|
290
|
+
*/
|
|
291
|
+
function MenubarCheckboxItem({
|
|
292
|
+
className,
|
|
293
|
+
children,
|
|
294
|
+
...props
|
|
295
|
+
}) {
|
|
296
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Text.TextClassContext.Provider, {
|
|
297
|
+
value: "text-sm text-popover-foreground select-none group-active:text-accent-foreground",
|
|
298
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(MenubarPrimitive.CheckboxItem, {
|
|
299
|
+
className: (0, _utils.cn)('active:bg-accent group relative flex flex-row items-center gap-2 rounded-sm py-2 pl-8 pr-2 sm:py-1.5', _reactNative.Platform.select({
|
|
300
|
+
web: 'focus:bg-accent focus:text-accent-foreground cursor-default outline-none data-[disabled]:pointer-events-none'
|
|
301
|
+
}), props.disabled && 'opacity-50', className),
|
|
302
|
+
...props,
|
|
303
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(View, {
|
|
304
|
+
className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center",
|
|
305
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(MenubarPrimitive.ItemIndicator, {
|
|
306
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Icon.Icon, {
|
|
307
|
+
as: _lucideReactNative.Check,
|
|
308
|
+
className: (0, _utils.cn)('text-foreground size-4', _reactNative.Platform.select({
|
|
309
|
+
web: 'pointer-events-none'
|
|
310
|
+
}))
|
|
311
|
+
})
|
|
312
|
+
})
|
|
313
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
|
|
314
|
+
children: children
|
|
315
|
+
})]
|
|
316
|
+
})
|
|
317
|
+
});
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* Menu item with radio button for single selection within a group
|
|
322
|
+
* @component
|
|
323
|
+
*/
|
|
324
|
+
function MenubarRadioItem({
|
|
325
|
+
className,
|
|
326
|
+
children,
|
|
327
|
+
...props
|
|
328
|
+
}) {
|
|
329
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Text.TextClassContext.Provider, {
|
|
330
|
+
value: "text-sm text-popover-foreground select-none group-active:text-accent-foreground",
|
|
331
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(MenubarPrimitive.RadioItem, {
|
|
332
|
+
className: (0, _utils.cn)('active:bg-accent group relative flex flex-row items-center gap-2 rounded-sm py-2 pl-8 pr-2 sm:py-1.5', _reactNative.Platform.select({
|
|
333
|
+
web: 'focus:bg-accent focus:text-accent-foreground cursor-default outline-none data-[disabled]:pointer-events-none'
|
|
334
|
+
}), props.disabled && 'opacity-50', className),
|
|
335
|
+
...props,
|
|
336
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(View, {
|
|
337
|
+
className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center",
|
|
338
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(MenubarPrimitive.ItemIndicator, {
|
|
339
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(View, {
|
|
340
|
+
className: "bg-foreground h-2 w-2 rounded-full"
|
|
341
|
+
})
|
|
342
|
+
})
|
|
343
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
|
|
344
|
+
children: children
|
|
345
|
+
})]
|
|
346
|
+
})
|
|
347
|
+
});
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
/**
|
|
351
|
+
* Label component for grouping and describing menu sections
|
|
352
|
+
* @component
|
|
353
|
+
*/
|
|
354
|
+
function MenubarLabel({
|
|
355
|
+
className,
|
|
356
|
+
inset,
|
|
357
|
+
...props
|
|
358
|
+
}) {
|
|
359
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(MenubarPrimitive.Label, {
|
|
360
|
+
className: (0, _utils.cn)('text-foreground px-2 py-2 text-sm font-medium sm:py-1.5', inset && 'pl-8', className),
|
|
361
|
+
...props
|
|
362
|
+
});
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
/**
|
|
366
|
+
* Visual separator between menu items or sections
|
|
367
|
+
* @component
|
|
368
|
+
*/
|
|
369
|
+
function MenubarSeparator({
|
|
370
|
+
className,
|
|
371
|
+
...props
|
|
372
|
+
}) {
|
|
373
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(MenubarPrimitive.Separator, {
|
|
374
|
+
className: (0, _utils.cn)('bg-border -mx-1 my-1 h-px', className),
|
|
375
|
+
...props
|
|
376
|
+
});
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* Displays keyboard shortcut hint for menu items
|
|
381
|
+
* @component
|
|
382
|
+
*/
|
|
383
|
+
function MenubarShortcut({
|
|
384
|
+
className,
|
|
385
|
+
...props
|
|
386
|
+
}) {
|
|
387
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(Text, {
|
|
388
|
+
className: (0, _utils.cn)('text-muted-foreground ml-auto text-xs tracking-widest', className),
|
|
389
|
+
...props
|
|
390
|
+
});
|
|
391
|
+
}
|
|
392
|
+
//# sourceMappingURL=Menubar.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_Icon","require","_NativeOnlyAnimatedView","_Text","_utils","MenubarPrimitive","_interopRequireWildcard","_portal","_lucideReactNative","React","_reactNative","_nativewind","_reactNativeReanimated","_reactNativeScreens","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","View","cssInterop","RNView","className","Text","RNText","Pressable","RNPressable","MenubarMenu","exports","Menu","MenubarGroup","Group","MenubarPortal","Portal","MenubarSub","Sub","MenubarRadioGroup","RadioGroup","FullWindowOverlay","Platform","OS","RNFullWindowOverlay","Fragment","Menubar","value","valueProp","onValueChange","onValueChangeProp","props","id","useId","setValue","useState","undefined","closeMenu","jsxs","children","jsx","name","onPress","style","StyleSheet","absoluteFill","Root","cn","MenubarTrigger","useRootContext","itemValue","useMenuContext","TextClassContext","Provider","Trigger","select","web","MenubarSubTrigger","_className","inset","iconClassName","open","useSubContext","icon","ChevronRight","ChevronUp","ChevronDown","SubTrigger","Icon","as","MenubarSubContent","NativeOnlyAnimatedView","entering","FadeIn","SubContent","MenubarContent","overlayClassName","_overlayClassName","overlayStyle","_overlayStyle","portalHost","align","alignOffset","sideOffset","hostName","pointerEvents","Content","side","MenubarItem","variant","Item","disabled","MenubarCheckboxItem","CheckboxItem","ItemIndicator","Check","MenubarRadioItem","RadioItem","MenubarLabel","Label","MenubarSeparator","Separator","MenubarShortcut"],"sourceRoot":"../../../../src","sources":["components/ui/Menubar.tsx"],"mappings":"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","ignoreList":[]}
|