@cdx-ui/components 0.0.1-alpha.3 → 0.0.1-alpha.31
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 +20 -2
- package/lib/commonjs/components/AlertDialog/index.js +117 -0
- package/lib/commonjs/components/AlertDialog/index.js.map +1 -0
- package/lib/commonjs/components/Avatar/index.js +156 -0
- package/lib/commonjs/components/Avatar/index.js.map +1 -0
- package/lib/commonjs/components/Avatar/styles.js +80 -0
- package/lib/commonjs/components/Avatar/styles.js.map +1 -0
- package/lib/commonjs/components/BottomSheet/index.js +248 -0
- package/lib/commonjs/components/BottomSheet/index.js.map +1 -0
- package/lib/commonjs/components/BottomSheet/styles.js +61 -0
- package/lib/commonjs/components/BottomSheet/styles.js.map +1 -0
- package/lib/commonjs/components/Box/Box.js +1 -0
- package/lib/commonjs/components/Box/Box.js.map +1 -1
- package/lib/commonjs/components/Button/buttonSharedVariants.js +200 -0
- package/lib/commonjs/components/Button/buttonSharedVariants.js.map +1 -0
- package/lib/commonjs/components/Button/index.js +31 -13
- package/lib/commonjs/components/Button/index.js.map +1 -1
- package/lib/commonjs/components/Button/styles.js +170 -187
- package/lib/commonjs/components/Button/styles.js.map +1 -1
- package/lib/commonjs/components/Card/index.js +104 -0
- package/lib/commonjs/components/Card/index.js.map +1 -0
- package/lib/commonjs/components/Card/styles.js +28 -0
- package/lib/commonjs/components/Card/styles.js.map +1 -0
- package/lib/commonjs/components/Checkbox/index.js +180 -0
- package/lib/commonjs/components/Checkbox/index.js.map +1 -0
- package/lib/commonjs/components/Checkbox/styles.js +68 -0
- package/lib/commonjs/components/Checkbox/styles.js.map +1 -0
- package/lib/commonjs/components/Chip/index.js +103 -0
- package/lib/commonjs/components/Chip/index.js.map +1 -0
- package/lib/commonjs/components/Chip/styles.js +50 -0
- package/lib/commonjs/components/Chip/styles.js.map +1 -0
- package/lib/commonjs/components/Dialog/index.js +275 -0
- package/lib/commonjs/components/Dialog/index.js.map +1 -0
- package/lib/commonjs/components/Dialog/styles.js +63 -0
- package/lib/commonjs/components/Dialog/styles.js.map +1 -0
- package/lib/commonjs/components/Form/FormLabelRoot.js +33 -0
- package/lib/commonjs/components/Form/FormLabelRoot.js.map +1 -0
- package/lib/commonjs/components/Form/FormLabelRoot.web.js +18 -0
- package/lib/commonjs/components/Form/FormLabelRoot.web.js.map +1 -0
- package/lib/commonjs/components/Form/FormRoot.js +25 -0
- package/lib/commonjs/components/Form/FormRoot.js.map +1 -0
- package/lib/commonjs/components/Form/FormRoot.web.js +17 -0
- package/lib/commonjs/components/Form/FormRoot.web.js.map +1 -0
- package/lib/commonjs/components/Form/index.js +255 -0
- package/lib/commonjs/components/Form/index.js.map +1 -0
- package/lib/commonjs/components/Form/styles.js +57 -0
- package/lib/commonjs/components/Form/styles.js.map +1 -0
- package/lib/commonjs/components/Heading/index.js +35 -0
- package/lib/commonjs/components/Heading/index.js.map +1 -0
- package/lib/commonjs/components/Heading/styles.js +24 -0
- package/lib/commonjs/components/Heading/styles.js.map +1 -0
- package/lib/commonjs/components/Icon/index.js +61 -0
- package/lib/commonjs/components/Icon/index.js.map +1 -0
- package/lib/commonjs/components/IconButton/index.js +80 -0
- package/lib/commonjs/components/IconButton/index.js.map +1 -0
- package/lib/commonjs/components/IconButton/styles.js +91 -0
- package/lib/commonjs/components/IconButton/styles.js.map +1 -0
- package/lib/commonjs/components/Image/Image.js +69 -0
- package/lib/commonjs/components/Image/Image.js.map +1 -0
- package/lib/commonjs/components/Image/index.js +13 -0
- package/lib/commonjs/components/Image/index.js.map +1 -0
- package/lib/commonjs/components/Input/BaseInput.android.js +20 -0
- package/lib/commonjs/components/Input/BaseInput.android.js.map +1 -0
- package/lib/commonjs/components/Input/index.js +10 -16
- package/lib/commonjs/components/Input/index.js.map +1 -1
- package/lib/commonjs/components/Input/styles.js +16 -30
- package/lib/commonjs/components/Input/styles.js.map +1 -1
- package/lib/commonjs/components/Link/index.js +94 -0
- package/lib/commonjs/components/Link/index.js.map +1 -0
- package/lib/commonjs/components/Link/styles.js +16 -0
- package/lib/commonjs/components/Link/styles.js.map +1 -0
- package/lib/commonjs/components/ProgressSegmented/index.js +62 -0
- package/lib/commonjs/components/ProgressSegmented/index.js.map +1 -0
- package/lib/commonjs/components/ProgressSegmented/styles.js +21 -0
- package/lib/commonjs/components/ProgressSegmented/styles.js.map +1 -0
- package/lib/commonjs/components/Select/SelectTriggerHost.js +10 -0
- package/lib/commonjs/components/Select/SelectTriggerHost.js.map +1 -0
- package/lib/commonjs/components/Select/SelectTriggerHost.web.js +98 -0
- package/lib/commonjs/components/Select/SelectTriggerHost.web.js.map +1 -0
- package/lib/commonjs/components/Select/index.js +13 -13
- package/lib/commonjs/components/Select/index.js.map +1 -1
- package/lib/commonjs/components/Select/styles.js +29 -53
- package/lib/commonjs/components/Select/styles.js.map +1 -1
- package/lib/commonjs/components/Stack/HStack.js +8 -21
- package/lib/commonjs/components/Stack/HStack.js.map +1 -1
- package/lib/commonjs/components/Stack/VStack.js +8 -21
- package/lib/commonjs/components/Stack/VStack.js.map +1 -1
- package/lib/commonjs/components/Stack/styles.js +39 -0
- package/lib/commonjs/components/Stack/styles.js.map +1 -0
- package/lib/commonjs/components/Switch/BaseSwitch.js +46 -0
- package/lib/commonjs/components/Switch/BaseSwitch.js.map +1 -0
- package/lib/commonjs/components/Switch/BaseSwitch.web.js +56 -0
- package/lib/commonjs/components/Switch/BaseSwitch.web.js.map +1 -0
- package/lib/commonjs/components/Switch/index.js +13 -0
- package/lib/commonjs/components/Switch/index.js.map +1 -0
- package/lib/commonjs/components/Switch/styles.js +128 -0
- package/lib/commonjs/components/Switch/styles.js.map +1 -0
- package/lib/commonjs/components/Text/index.js +18 -9
- package/lib/commonjs/components/Text/index.js.map +1 -1
- package/lib/commonjs/components/Text/styles.js +24 -0
- package/lib/commonjs/components/Text/styles.js.map +1 -0
- package/lib/commonjs/components/VirtualizedList/index.js +19 -0
- package/lib/commonjs/components/VirtualizedList/index.js.map +1 -0
- package/lib/commonjs/components/index.js +192 -0
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/index.js +40 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/metro/withCdxMetroConfig.js +24 -0
- package/lib/commonjs/metro/withCdxMetroConfig.js.map +1 -0
- package/lib/commonjs/styles/index.js +17 -0
- package/lib/commonjs/styles/index.js.map +1 -0
- package/lib/commonjs/styles/primitives.js +123 -0
- package/lib/commonjs/styles/primitives.js.map +1 -0
- package/lib/module/components/AlertDialog/index.js +112 -0
- package/lib/module/components/AlertDialog/index.js.map +1 -0
- package/lib/module/components/Avatar/index.js +152 -0
- package/lib/module/components/Avatar/index.js.map +1 -0
- package/lib/module/components/Avatar/styles.js +77 -0
- package/lib/module/components/Avatar/styles.js.map +1 -0
- package/lib/module/components/BottomSheet/index.js +242 -0
- package/lib/module/components/BottomSheet/index.js.map +1 -0
- package/lib/module/components/BottomSheet/styles.js +58 -0
- package/lib/module/components/BottomSheet/styles.js.map +1 -0
- package/lib/module/components/Box/Box.js +1 -0
- package/lib/module/components/Box/Box.js.map +1 -1
- package/lib/module/components/Button/buttonSharedVariants.js +195 -0
- package/lib/module/components/Button/buttonSharedVariants.js.map +1 -0
- package/lib/module/components/Button/index.js +32 -14
- package/lib/module/components/Button/index.js.map +1 -1
- package/lib/module/components/Button/styles.js +168 -186
- package/lib/module/components/Button/styles.js.map +1 -1
- package/lib/module/components/Card/index.js +100 -0
- package/lib/module/components/Card/index.js.map +1 -0
- package/lib/module/components/Card/styles.js +25 -0
- package/lib/module/components/Card/styles.js.map +1 -0
- package/lib/module/components/Checkbox/index.js +176 -0
- package/lib/module/components/Checkbox/index.js.map +1 -0
- package/lib/module/components/Checkbox/styles.js +64 -0
- package/lib/module/components/Checkbox/styles.js.map +1 -0
- package/lib/module/components/Chip/index.js +99 -0
- package/lib/module/components/Chip/index.js.map +1 -0
- package/lib/module/components/Chip/styles.js +46 -0
- package/lib/module/components/Chip/styles.js.map +1 -0
- package/lib/module/components/Dialog/index.js +267 -0
- package/lib/module/components/Dialog/index.js.map +1 -0
- package/lib/module/components/Dialog/styles.js +60 -0
- package/lib/module/components/Dialog/styles.js.map +1 -0
- package/lib/module/components/Form/FormLabelRoot.js +29 -0
- package/lib/module/components/Form/FormLabelRoot.js.map +1 -0
- package/lib/module/components/Form/FormLabelRoot.web.js +13 -0
- package/lib/module/components/Form/FormLabelRoot.web.js.map +1 -0
- package/lib/module/components/Form/FormRoot.js +21 -0
- package/lib/module/components/Form/FormRoot.js.map +1 -0
- package/lib/module/components/Form/FormRoot.web.js +12 -0
- package/lib/module/components/Form/FormRoot.web.js.map +1 -0
- package/lib/module/components/Form/index.js +252 -0
- package/lib/module/components/Form/index.js.map +1 -0
- package/lib/module/components/Form/styles.js +53 -0
- package/lib/module/components/Form/styles.js.map +1 -0
- package/lib/module/components/Heading/index.js +31 -0
- package/lib/module/components/Heading/index.js.map +1 -0
- package/lib/module/components/Heading/styles.js +20 -0
- package/lib/module/components/Heading/styles.js.map +1 -0
- package/lib/module/components/Icon/index.js +57 -0
- package/lib/module/components/Icon/index.js.map +1 -0
- package/lib/module/components/IconButton/index.js +76 -0
- package/lib/module/components/IconButton/index.js.map +1 -0
- package/lib/module/components/IconButton/styles.js +87 -0
- package/lib/module/components/IconButton/styles.js.map +1 -0
- package/lib/module/components/Image/Image.js +67 -0
- package/lib/module/components/Image/Image.js.map +1 -0
- package/lib/module/components/Image/index.js +4 -0
- package/lib/module/components/Image/index.js.map +1 -0
- package/lib/module/components/Input/BaseInput.android.js +16 -0
- package/lib/module/components/Input/BaseInput.android.js.map +1 -0
- package/lib/module/components/Input/index.js +10 -16
- package/lib/module/components/Input/index.js.map +1 -1
- package/lib/module/components/Input/styles.js +16 -30
- package/lib/module/components/Input/styles.js.map +1 -1
- package/lib/module/components/Link/index.js +85 -0
- package/lib/module/components/Link/index.js.map +1 -0
- package/lib/module/components/Link/styles.js +12 -0
- package/lib/module/components/Link/styles.js.map +1 -0
- package/lib/module/components/ProgressSegmented/index.js +58 -0
- package/lib/module/components/ProgressSegmented/index.js.map +1 -0
- package/lib/module/components/ProgressSegmented/styles.js +17 -0
- package/lib/module/components/ProgressSegmented/styles.js.map +1 -0
- package/lib/module/components/Select/SelectTriggerHost.js +7 -0
- package/lib/module/components/Select/SelectTriggerHost.js.map +1 -0
- package/lib/module/components/Select/SelectTriggerHost.web.js +93 -0
- package/lib/module/components/Select/SelectTriggerHost.web.js.map +1 -0
- package/lib/module/components/Select/index.js +14 -14
- package/lib/module/components/Select/index.js.map +1 -1
- package/lib/module/components/Select/styles.js +29 -53
- package/lib/module/components/Select/styles.js.map +1 -1
- package/lib/module/components/Stack/HStack.js +8 -21
- package/lib/module/components/Stack/HStack.js.map +1 -1
- package/lib/module/components/Stack/VStack.js +8 -21
- package/lib/module/components/Stack/VStack.js.map +1 -1
- package/lib/module/components/Stack/styles.js +35 -0
- package/lib/module/components/Stack/styles.js.map +1 -0
- package/lib/module/components/Switch/BaseSwitch.js +42 -0
- package/lib/module/components/Switch/BaseSwitch.js.map +1 -0
- package/lib/module/components/Switch/BaseSwitch.web.js +52 -0
- package/lib/module/components/Switch/BaseSwitch.web.js.map +1 -0
- package/lib/module/components/Switch/index.js +9 -0
- package/lib/module/components/Switch/index.js.map +1 -0
- package/lib/module/components/Switch/styles.js +125 -0
- package/lib/module/components/Switch/styles.js.map +1 -0
- package/lib/module/components/Text/index.js +19 -1
- package/lib/module/components/Text/index.js.map +1 -1
- package/lib/module/components/Text/styles.js +20 -0
- package/lib/module/components/Text/styles.js.map +1 -0
- package/lib/module/components/VirtualizedList/index.js +15 -0
- package/lib/module/components/VirtualizedList/index.js.map +1 -0
- package/lib/module/components/index.js +16 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/index.js +3 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/metro/withCdxMetroConfig.js +20 -0
- package/lib/module/metro/withCdxMetroConfig.js.map +1 -0
- package/lib/module/styles/index.js +4 -0
- package/lib/module/styles/index.js.map +1 -0
- package/lib/module/styles/primitives.js +119 -0
- package/lib/module/styles/primitives.js.map +1 -0
- package/lib/typescript/components/AlertDialog/index.d.ts +30 -0
- package/lib/typescript/components/AlertDialog/index.d.ts.map +1 -0
- package/lib/typescript/components/Avatar/index.d.ts +40 -0
- package/lib/typescript/components/Avatar/index.d.ts.map +1 -0
- package/lib/typescript/components/Avatar/styles.d.ts +16 -0
- package/lib/typescript/components/Avatar/styles.d.ts.map +1 -0
- package/lib/typescript/components/BottomSheet/index.d.ts +61 -0
- package/lib/typescript/components/BottomSheet/index.d.ts.map +1 -0
- package/lib/typescript/components/BottomSheet/styles.d.ts +16 -0
- package/lib/typescript/components/BottomSheet/styles.d.ts.map +1 -0
- package/lib/typescript/components/Box/Box.d.ts +1 -0
- package/lib/typescript/components/Box/Box.d.ts.map +1 -1
- package/lib/typescript/components/Button/buttonSharedVariants.d.ts +29 -0
- package/lib/typescript/components/Button/buttonSharedVariants.d.ts.map +1 -0
- package/lib/typescript/components/Button/index.d.ts +6 -3
- package/lib/typescript/components/Button/index.d.ts.map +1 -1
- package/lib/typescript/components/Button/styles.d.ts +14 -8
- package/lib/typescript/components/Button/styles.d.ts.map +1 -1
- package/lib/typescript/components/Card/index.d.ts +30 -0
- package/lib/typescript/components/Card/index.d.ts.map +1 -0
- package/lib/typescript/components/Card/styles.d.ts +6 -0
- package/lib/typescript/components/Card/styles.d.ts.map +1 -0
- package/lib/typescript/components/Checkbox/index.d.ts +46 -0
- package/lib/typescript/components/Checkbox/index.d.ts.map +1 -0
- package/lib/typescript/components/Checkbox/styles.d.ts +18 -0
- package/lib/typescript/components/Checkbox/styles.d.ts.map +1 -0
- package/lib/typescript/components/Chip/index.d.ts +27 -0
- package/lib/typescript/components/Chip/index.d.ts.map +1 -0
- package/lib/typescript/components/Chip/styles.d.ts +12 -0
- package/lib/typescript/components/Chip/styles.d.ts.map +1 -0
- package/lib/typescript/components/Dialog/index.d.ts +61 -0
- package/lib/typescript/components/Dialog/index.d.ts.map +1 -0
- package/lib/typescript/components/Dialog/styles.d.ts +14 -0
- package/lib/typescript/components/Dialog/styles.d.ts.map +1 -0
- package/lib/typescript/components/Form/FormLabelRoot.d.ts +18 -0
- package/lib/typescript/components/Form/FormLabelRoot.d.ts.map +1 -0
- package/lib/typescript/components/Form/FormLabelRoot.web.d.ts +20 -0
- package/lib/typescript/components/Form/FormLabelRoot.web.d.ts.map +1 -0
- package/lib/typescript/components/Form/FormRoot.d.ts +12 -0
- package/lib/typescript/components/Form/FormRoot.d.ts.map +1 -0
- package/lib/typescript/components/Form/FormRoot.web.d.ts +10 -0
- package/lib/typescript/components/Form/FormRoot.web.d.ts.map +1 -0
- package/lib/typescript/components/Form/index.d.ts +64 -0
- package/lib/typescript/components/Form/index.d.ts.map +1 -0
- package/lib/typescript/components/Form/styles.d.ts +22 -0
- package/lib/typescript/components/Form/styles.d.ts.map +1 -0
- package/lib/typescript/components/Heading/index.d.ts +10 -0
- package/lib/typescript/components/Heading/index.d.ts.map +1 -0
- package/lib/typescript/components/Heading/styles.d.ts +6 -0
- package/lib/typescript/components/Heading/styles.d.ts.map +1 -0
- package/lib/typescript/components/Icon/index.d.ts +27 -0
- package/lib/typescript/components/Icon/index.d.ts.map +1 -0
- package/lib/typescript/components/IconButton/index.d.ts +15 -0
- package/lib/typescript/components/IconButton/index.d.ts.map +1 -0
- package/lib/typescript/components/IconButton/styles.d.ts +16 -0
- package/lib/typescript/components/IconButton/styles.d.ts.map +1 -0
- package/lib/typescript/components/Image/Image.d.ts +47 -0
- package/lib/typescript/components/Image/Image.d.ts.map +1 -0
- package/lib/typescript/components/Image/index.d.ts +2 -0
- package/lib/typescript/components/Image/index.d.ts.map +1 -0
- package/lib/typescript/components/Input/BaseInput.android.d.ts +3 -0
- package/lib/typescript/components/Input/BaseInput.android.d.ts.map +1 -0
- package/lib/typescript/components/Input/index.d.ts +7 -5
- package/lib/typescript/components/Input/index.d.ts.map +1 -1
- package/lib/typescript/components/Input/styles.d.ts +5 -7
- package/lib/typescript/components/Input/styles.d.ts.map +1 -1
- package/lib/typescript/components/Link/index.d.ts +26 -0
- package/lib/typescript/components/Link/index.d.ts.map +1 -0
- package/lib/typescript/components/Link/styles.d.ts +4 -0
- package/lib/typescript/components/Link/styles.d.ts.map +1 -0
- package/lib/typescript/components/ProgressSegmented/index.d.ts +15 -0
- package/lib/typescript/components/ProgressSegmented/index.d.ts.map +1 -0
- package/lib/typescript/components/ProgressSegmented/styles.d.ts +8 -0
- package/lib/typescript/components/ProgressSegmented/styles.d.ts.map +1 -0
- package/lib/typescript/components/Select/SelectTriggerHost.d.ts +3 -0
- package/lib/typescript/components/Select/SelectTriggerHost.d.ts.map +1 -0
- package/lib/typescript/components/Select/SelectTriggerHost.web.d.ts +13 -0
- package/lib/typescript/components/Select/SelectTriggerHost.web.d.ts.map +1 -0
- package/lib/typescript/components/Select/index.d.ts +7 -4
- package/lib/typescript/components/Select/index.d.ts.map +1 -1
- package/lib/typescript/components/Select/styles.d.ts +6 -8
- package/lib/typescript/components/Select/styles.d.ts.map +1 -1
- package/lib/typescript/components/Stack/HStack.d.ts +1 -12
- package/lib/typescript/components/Stack/HStack.d.ts.map +1 -1
- package/lib/typescript/components/Stack/VStack.d.ts +1 -12
- package/lib/typescript/components/Stack/VStack.d.ts.map +1 -1
- package/lib/typescript/components/Stack/styles.d.ts +10 -0
- package/lib/typescript/components/Stack/styles.d.ts.map +1 -0
- package/lib/typescript/components/Switch/BaseSwitch.d.ts +9 -0
- package/lib/typescript/components/Switch/BaseSwitch.d.ts.map +1 -0
- package/lib/typescript/components/Switch/BaseSwitch.web.d.ts +15 -0
- package/lib/typescript/components/Switch/BaseSwitch.web.d.ts.map +1 -0
- package/lib/typescript/components/Switch/index.d.ts +7 -0
- package/lib/typescript/components/Switch/index.d.ts.map +1 -0
- package/lib/typescript/components/Switch/styles.d.ts +26 -0
- package/lib/typescript/components/Switch/styles.d.ts.map +1 -0
- package/lib/typescript/components/Text/index.d.ts +9 -1
- package/lib/typescript/components/Text/index.d.ts.map +1 -1
- package/lib/typescript/components/Text/styles.d.ts +6 -0
- package/lib/typescript/components/Text/styles.d.ts.map +1 -0
- package/lib/typescript/components/VirtualizedList/index.d.ts +8 -0
- package/lib/typescript/components/VirtualizedList/index.d.ts.map +1 -0
- package/lib/typescript/components/index.d.ts +16 -0
- package/lib/typescript/components/index.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +3 -0
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/metro/withCdxMetroConfig.d.ts +19 -0
- package/lib/typescript/metro/withCdxMetroConfig.d.ts.map +1 -0
- package/lib/typescript/styles/index.d.ts +2 -0
- package/lib/typescript/styles/index.d.ts.map +1 -0
- package/lib/typescript/styles/primitives.d.ts +85 -0
- package/lib/typescript/styles/primitives.d.ts.map +1 -0
- package/package.json +23 -16
- package/src/components/AlertDialog/index.tsx +124 -0
- package/src/components/Avatar/index.tsx +172 -0
- package/src/components/Avatar/styles.ts +83 -0
- package/src/components/BottomSheet/index.tsx +316 -0
- package/src/components/BottomSheet/styles.ts +79 -0
- package/src/components/Box/Box.tsx +1 -0
- package/src/components/Button/buttonSharedVariants.ts +281 -0
- package/src/components/Button/index.tsx +24 -15
- package/src/components/Button/styles.ts +195 -229
- package/src/components/Card/index.tsx +115 -0
- package/src/components/Card/styles.ts +41 -0
- package/src/components/Checkbox/index.tsx +207 -0
- package/src/components/Checkbox/styles.ts +103 -0
- package/src/components/Chip/index.tsx +91 -0
- package/src/components/Chip/styles.ts +51 -0
- package/src/components/Dialog/index.tsx +304 -0
- package/src/components/Dialog/styles.ts +88 -0
- package/src/components/Form/FormLabelRoot.tsx +33 -0
- package/src/components/Form/FormLabelRoot.web.tsx +18 -0
- package/src/components/Form/FormRoot.tsx +19 -0
- package/src/components/Form/FormRoot.web.tsx +12 -0
- package/src/components/Form/index.tsx +272 -0
- package/src/components/Form/styles.ts +75 -0
- package/src/components/Heading/index.tsx +36 -0
- package/src/components/Heading/styles.tsx +26 -0
- package/src/components/Icon/index.tsx +54 -0
- package/src/components/IconButton/index.tsx +93 -0
- package/src/components/IconButton/styles.ts +131 -0
- package/src/components/Image/Image.tsx +77 -0
- package/src/components/Image/index.ts +1 -0
- package/src/components/Input/BaseInput.android.tsx +13 -0
- package/src/components/Input/index.tsx +9 -22
- package/src/components/Input/styles.ts +42 -37
- package/src/components/Link/index.tsx +83 -0
- package/src/components/Link/styles.ts +20 -0
- package/src/components/ProgressSegmented/index.tsx +81 -0
- package/src/components/ProgressSegmented/styles.ts +19 -0
- package/src/components/Select/SelectTriggerHost.tsx +4 -0
- package/src/components/Select/SelectTriggerHost.web.tsx +136 -0
- package/src/components/Select/index.tsx +14 -14
- package/src/components/Select/styles.ts +68 -75
- package/src/components/Stack/HStack.tsx +8 -19
- package/src/components/Stack/VStack.tsx +8 -23
- package/src/components/Stack/styles.ts +37 -0
- package/src/components/Switch/BaseSwitch.tsx +38 -0
- package/src/components/Switch/BaseSwitch.web.tsx +69 -0
- package/src/components/Switch/index.tsx +11 -0
- package/src/components/Switch/styles.ts +120 -0
- package/src/components/Text/index.tsx +16 -0
- package/src/components/Text/styles.tsx +26 -0
- package/src/components/VirtualizedList/index.tsx +19 -0
- package/src/components/index.ts +16 -0
- package/src/index.ts +3 -0
- package/src/metro/withCdxMetroConfig.ts +29 -0
- package/src/styles/index.ts +1 -0
- package/src/styles/primitives.ts +107 -0
- package/lib/commonjs/components/Text/Text.js +0 -30
- package/lib/commonjs/components/Text/Text.js.map +0 -1
- package/lib/module/components/Text/Text.js +0 -26
- package/lib/module/components/Text/Text.js.map +0 -1
- package/lib/typescript/components/Text/Text.d.ts +0 -11
- package/lib/typescript/components/Text/Text.d.ts.map +0 -1
- package/src/components/Text/Text.tsx +0 -58
- package/src/components/Text/index.ts +0 -1
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
import { forwardRef, type ReactNode } from 'react';
|
|
2
|
+
import { Pressable, Text, View, type PressableProps, type ViewProps } from 'react-native';
|
|
3
|
+
import { Close as CloseIcon } from '@cdx-ui/icons';
|
|
4
|
+
import {
|
|
5
|
+
createDialog,
|
|
6
|
+
type IDialogBodyProps,
|
|
7
|
+
type IDialogCloseProps,
|
|
8
|
+
type IDialogContentProps,
|
|
9
|
+
type IDialogDescriptionProps,
|
|
10
|
+
type IDialogFooterProps,
|
|
11
|
+
type IDialogHeaderProps,
|
|
12
|
+
type IDialogRootProps,
|
|
13
|
+
type IDialogTitleProps,
|
|
14
|
+
type IDialogTriggerProps,
|
|
15
|
+
} from '@cdx-ui/primitives';
|
|
16
|
+
import { cn, useStyleContext, withStyleContext } from '@cdx-ui/utils';
|
|
17
|
+
import { Icon } from '../Icon';
|
|
18
|
+
import {
|
|
19
|
+
type DialogVariantProps,
|
|
20
|
+
dialogBodyVariants,
|
|
21
|
+
dialogCloseIconVariants,
|
|
22
|
+
dialogCloseVariants,
|
|
23
|
+
dialogContentVariants,
|
|
24
|
+
dialogDescriptionVariants,
|
|
25
|
+
dialogFooterVariants,
|
|
26
|
+
dialogHeaderVariants,
|
|
27
|
+
dialogOverlayVariants,
|
|
28
|
+
dialogTitleVariants,
|
|
29
|
+
} from './styles';
|
|
30
|
+
|
|
31
|
+
export { useDialog } from '@cdx-ui/primitives';
|
|
32
|
+
|
|
33
|
+
// =============================================================================
|
|
34
|
+
// STYLE CONTEXT
|
|
35
|
+
// =============================================================================
|
|
36
|
+
|
|
37
|
+
const SCOPE = 'DIALOG';
|
|
38
|
+
|
|
39
|
+
const Root = withStyleContext(View, SCOPE);
|
|
40
|
+
|
|
41
|
+
const useDialogStyleContext = () => useStyleContext(SCOPE) as DialogVariantProps;
|
|
42
|
+
|
|
43
|
+
// =============================================================================
|
|
44
|
+
// STYLED OVERLAY (internal — not consumer-facing)
|
|
45
|
+
// =============================================================================
|
|
46
|
+
|
|
47
|
+
const StyledOverlay = forwardRef<View, PressableProps & { className?: string }>(
|
|
48
|
+
({ className, ...props }, ref) => (
|
|
49
|
+
<Pressable ref={ref} className={cn(dialogOverlayVariants(), className)} {...props} />
|
|
50
|
+
),
|
|
51
|
+
);
|
|
52
|
+
StyledOverlay.displayName = 'Dialog.Overlay';
|
|
53
|
+
|
|
54
|
+
// =============================================================================
|
|
55
|
+
// CREATE DIALOG PRIMITIVE
|
|
56
|
+
// =============================================================================
|
|
57
|
+
|
|
58
|
+
const DialogPrimitive = createDialog({
|
|
59
|
+
Root,
|
|
60
|
+
Trigger: Pressable,
|
|
61
|
+
Overlay: StyledOverlay,
|
|
62
|
+
Content: View,
|
|
63
|
+
Header: View,
|
|
64
|
+
Title: Text,
|
|
65
|
+
Description: Text,
|
|
66
|
+
Body: View,
|
|
67
|
+
Footer: View,
|
|
68
|
+
Close: Pressable,
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
// =============================================================================
|
|
72
|
+
// STYLED ROOT
|
|
73
|
+
// =============================================================================
|
|
74
|
+
|
|
75
|
+
export interface DialogRootProps
|
|
76
|
+
extends Omit<ViewProps, 'children' | 'role'>, IDialogRootProps, DialogVariantProps {
|
|
77
|
+
className?: string;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
const DialogRoot = forwardRef<View, DialogRootProps>(
|
|
81
|
+
({ size = 'md', className, children, style, ...props }, ref) => (
|
|
82
|
+
<DialogPrimitive ref={ref} className={className} style={style} context={{ size }} {...props}>
|
|
83
|
+
{children}
|
|
84
|
+
</DialogPrimitive>
|
|
85
|
+
),
|
|
86
|
+
);
|
|
87
|
+
|
|
88
|
+
DialogRoot.displayName = 'Dialog';
|
|
89
|
+
|
|
90
|
+
// =============================================================================
|
|
91
|
+
// STYLED TRIGGER
|
|
92
|
+
// =============================================================================
|
|
93
|
+
|
|
94
|
+
export interface DialogTriggerProps extends IDialogTriggerProps {
|
|
95
|
+
className?: string;
|
|
96
|
+
children?: ReactNode;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
const DialogTrigger = forwardRef<View, DialogTriggerProps>(
|
|
100
|
+
({ className, children, style, ...props }, ref) => (
|
|
101
|
+
<DialogPrimitive.Trigger ref={ref} className={className} style={style} {...props}>
|
|
102
|
+
{children}
|
|
103
|
+
</DialogPrimitive.Trigger>
|
|
104
|
+
),
|
|
105
|
+
);
|
|
106
|
+
|
|
107
|
+
DialogTrigger.displayName = 'Dialog.Trigger';
|
|
108
|
+
|
|
109
|
+
// =============================================================================
|
|
110
|
+
// STYLED CONTENT
|
|
111
|
+
// =============================================================================
|
|
112
|
+
|
|
113
|
+
export interface DialogContentProps extends IDialogContentProps, DialogVariantProps {
|
|
114
|
+
className?: string;
|
|
115
|
+
children?: ReactNode;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const DialogContent = forwardRef<View, DialogContentProps>(
|
|
119
|
+
({ size: sizeProp, className, children, style, ...props }, ref) => {
|
|
120
|
+
const { size: contextSize } = useDialogStyleContext();
|
|
121
|
+
const size = sizeProp ?? contextSize;
|
|
122
|
+
const computedClassName = cn(dialogContentVariants({ size }), className);
|
|
123
|
+
|
|
124
|
+
return (
|
|
125
|
+
<DialogPrimitive.Content ref={ref} className={computedClassName} style={style} {...props}>
|
|
126
|
+
{children}
|
|
127
|
+
</DialogPrimitive.Content>
|
|
128
|
+
);
|
|
129
|
+
},
|
|
130
|
+
);
|
|
131
|
+
|
|
132
|
+
DialogContent.displayName = 'Dialog.Content';
|
|
133
|
+
|
|
134
|
+
// =============================================================================
|
|
135
|
+
// STYLED HEADER
|
|
136
|
+
// =============================================================================
|
|
137
|
+
|
|
138
|
+
export interface DialogHeaderProps extends IDialogHeaderProps {
|
|
139
|
+
className?: string;
|
|
140
|
+
children?: ReactNode;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
const DialogHeader = forwardRef<View, DialogHeaderProps>(
|
|
144
|
+
({ className, children, style, ...props }, ref) => {
|
|
145
|
+
const computedClassName = cn(dialogHeaderVariants(), className);
|
|
146
|
+
|
|
147
|
+
return (
|
|
148
|
+
<DialogPrimitive.Header ref={ref} className={computedClassName} style={style} {...props}>
|
|
149
|
+
{children}
|
|
150
|
+
</DialogPrimitive.Header>
|
|
151
|
+
);
|
|
152
|
+
},
|
|
153
|
+
);
|
|
154
|
+
|
|
155
|
+
DialogHeader.displayName = 'Dialog.Header';
|
|
156
|
+
|
|
157
|
+
// =============================================================================
|
|
158
|
+
// STYLED TITLE
|
|
159
|
+
// =============================================================================
|
|
160
|
+
|
|
161
|
+
export interface DialogTitleProps extends IDialogTitleProps {
|
|
162
|
+
className?: string;
|
|
163
|
+
children?: ReactNode;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
const DialogTitle = forwardRef<Text, DialogTitleProps>(
|
|
167
|
+
({ className, children, style, ...props }, ref) => {
|
|
168
|
+
const computedClassName = cn(dialogTitleVariants(), className);
|
|
169
|
+
|
|
170
|
+
return (
|
|
171
|
+
<DialogPrimitive.Title ref={ref} className={computedClassName} style={style} {...props}>
|
|
172
|
+
{children}
|
|
173
|
+
</DialogPrimitive.Title>
|
|
174
|
+
);
|
|
175
|
+
},
|
|
176
|
+
);
|
|
177
|
+
|
|
178
|
+
DialogTitle.displayName = 'Dialog.Title';
|
|
179
|
+
|
|
180
|
+
// =============================================================================
|
|
181
|
+
// STYLED DESCRIPTION
|
|
182
|
+
// =============================================================================
|
|
183
|
+
|
|
184
|
+
export interface DialogDescriptionProps extends IDialogDescriptionProps {
|
|
185
|
+
className?: string;
|
|
186
|
+
children?: ReactNode;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
const DialogDescription = forwardRef<Text, DialogDescriptionProps>(
|
|
190
|
+
({ className, children, style, ...props }, ref) => {
|
|
191
|
+
const computedClassName = cn(dialogDescriptionVariants(), className);
|
|
192
|
+
|
|
193
|
+
return (
|
|
194
|
+
<DialogPrimitive.Description ref={ref} className={computedClassName} style={style} {...props}>
|
|
195
|
+
{children}
|
|
196
|
+
</DialogPrimitive.Description>
|
|
197
|
+
);
|
|
198
|
+
},
|
|
199
|
+
);
|
|
200
|
+
|
|
201
|
+
DialogDescription.displayName = 'Dialog.Description';
|
|
202
|
+
|
|
203
|
+
// =============================================================================
|
|
204
|
+
// STYLED BODY
|
|
205
|
+
// =============================================================================
|
|
206
|
+
|
|
207
|
+
export interface DialogBodyProps extends IDialogBodyProps {
|
|
208
|
+
className?: string;
|
|
209
|
+
children?: ReactNode;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
const DialogBody = forwardRef<View, DialogBodyProps>(
|
|
213
|
+
({ className, children, style, ...props }, ref) => {
|
|
214
|
+
const computedClassName = cn(dialogBodyVariants(), className);
|
|
215
|
+
|
|
216
|
+
return (
|
|
217
|
+
<DialogPrimitive.Body ref={ref} className={computedClassName} style={style} {...props}>
|
|
218
|
+
{children}
|
|
219
|
+
</DialogPrimitive.Body>
|
|
220
|
+
);
|
|
221
|
+
},
|
|
222
|
+
);
|
|
223
|
+
|
|
224
|
+
DialogBody.displayName = 'Dialog.Body';
|
|
225
|
+
|
|
226
|
+
// =============================================================================
|
|
227
|
+
// STYLED FOOTER
|
|
228
|
+
// =============================================================================
|
|
229
|
+
|
|
230
|
+
export interface DialogFooterProps extends IDialogFooterProps {
|
|
231
|
+
className?: string;
|
|
232
|
+
children?: ReactNode;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
const DialogFooter = forwardRef<View, DialogFooterProps>(
|
|
236
|
+
({ className, children, style, ...props }, ref) => {
|
|
237
|
+
const computedClassName = cn(dialogFooterVariants(), className);
|
|
238
|
+
|
|
239
|
+
return (
|
|
240
|
+
<DialogPrimitive.Footer ref={ref} className={computedClassName} style={style} {...props}>
|
|
241
|
+
{children}
|
|
242
|
+
</DialogPrimitive.Footer>
|
|
243
|
+
);
|
|
244
|
+
},
|
|
245
|
+
);
|
|
246
|
+
|
|
247
|
+
DialogFooter.displayName = 'Dialog.Footer';
|
|
248
|
+
|
|
249
|
+
// =============================================================================
|
|
250
|
+
// STYLED CLOSE
|
|
251
|
+
// =============================================================================
|
|
252
|
+
|
|
253
|
+
export interface DialogCloseProps extends IDialogCloseProps {
|
|
254
|
+
className?: string;
|
|
255
|
+
children?: ReactNode;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
const DialogClose = forwardRef<View, DialogCloseProps>(
|
|
259
|
+
({ className, accessibilityLabel = 'Close', children, style, ...props }, ref) => {
|
|
260
|
+
const computedClassName = cn(dialogCloseVariants(), className);
|
|
261
|
+
|
|
262
|
+
return (
|
|
263
|
+
<DialogPrimitive.Close
|
|
264
|
+
ref={ref}
|
|
265
|
+
className={computedClassName}
|
|
266
|
+
style={style}
|
|
267
|
+
hitSlop={12}
|
|
268
|
+
accessibilityRole="button"
|
|
269
|
+
accessibilityLabel={accessibilityLabel}
|
|
270
|
+
{...props}
|
|
271
|
+
>
|
|
272
|
+
{children ?? <Icon as={CloseIcon} className={dialogCloseIconVariants()} />}
|
|
273
|
+
</DialogPrimitive.Close>
|
|
274
|
+
);
|
|
275
|
+
},
|
|
276
|
+
);
|
|
277
|
+
|
|
278
|
+
DialogClose.displayName = 'Dialog.Close';
|
|
279
|
+
|
|
280
|
+
// =============================================================================
|
|
281
|
+
// COMPOUND COMPONENT
|
|
282
|
+
// =============================================================================
|
|
283
|
+
|
|
284
|
+
type DialogCompoundComponent = typeof DialogRoot & {
|
|
285
|
+
Trigger: typeof DialogTrigger;
|
|
286
|
+
Content: typeof DialogContent;
|
|
287
|
+
Header: typeof DialogHeader;
|
|
288
|
+
Title: typeof DialogTitle;
|
|
289
|
+
Description: typeof DialogDescription;
|
|
290
|
+
Body: typeof DialogBody;
|
|
291
|
+
Footer: typeof DialogFooter;
|
|
292
|
+
Close: typeof DialogClose;
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
export const Dialog = Object.assign(DialogRoot, {
|
|
296
|
+
Trigger: DialogTrigger,
|
|
297
|
+
Content: DialogContent,
|
|
298
|
+
Header: DialogHeader,
|
|
299
|
+
Title: DialogTitle,
|
|
300
|
+
Description: DialogDescription,
|
|
301
|
+
Body: DialogBody,
|
|
302
|
+
Footer: DialogFooter,
|
|
303
|
+
Close: DialogClose,
|
|
304
|
+
}) as DialogCompoundComponent;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { Platform } from 'react-native';
|
|
2
|
+
import { cva, type VariantProps } from 'class-variance-authority';
|
|
3
|
+
import {
|
|
4
|
+
COLOR_BG_INVERSE,
|
|
5
|
+
COLOR_BG_PRIMARY,
|
|
6
|
+
COLOR_BORDER_DEFAULT,
|
|
7
|
+
COLOR_TEXT_PRIMARY,
|
|
8
|
+
COLOR_TEXT_SECONDARY,
|
|
9
|
+
RADIUS_MD,
|
|
10
|
+
SHADOW_MD,
|
|
11
|
+
TRANSITION_COLORS,
|
|
12
|
+
} from '../../styles/primitives';
|
|
13
|
+
|
|
14
|
+
// ── Overlay ─────────────────────────────────────────────────
|
|
15
|
+
|
|
16
|
+
export const dialogOverlayVariants = cva(['absolute inset-0', COLOR_BG_INVERSE, 'opacity-50']);
|
|
17
|
+
|
|
18
|
+
// ── Content ─────────────────────────────────────────────────
|
|
19
|
+
|
|
20
|
+
export const dialogContentVariants = cva(
|
|
21
|
+
[
|
|
22
|
+
COLOR_BG_PRIMARY,
|
|
23
|
+
`border ${COLOR_BORDER_DEFAULT}`,
|
|
24
|
+
RADIUS_MD,
|
|
25
|
+
Platform.select({ web: SHADOW_MD, default: '' }),
|
|
26
|
+
'max-h-[85vh] overflow-hidden',
|
|
27
|
+
],
|
|
28
|
+
{
|
|
29
|
+
variants: {
|
|
30
|
+
size: {
|
|
31
|
+
sm: 'w-[90%] max-w-sm',
|
|
32
|
+
md: 'w-[90%] max-w-md',
|
|
33
|
+
lg: 'w-[90%] max-w-lg',
|
|
34
|
+
full: 'w-full mx-4',
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
defaultVariants: {
|
|
38
|
+
size: 'md',
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
// ── Header ──────────────────────────────────────────────────
|
|
44
|
+
|
|
45
|
+
export const dialogHeaderVariants = cva([
|
|
46
|
+
'flex-row items-center justify-between shrink-0',
|
|
47
|
+
'px-6 pt-6 pb-2',
|
|
48
|
+
]);
|
|
49
|
+
|
|
50
|
+
// ── Title ───────────────────────────────────────────────────
|
|
51
|
+
|
|
52
|
+
export const dialogTitleVariants = cva(['text-lg font-semibold', COLOR_TEXT_PRIMARY]);
|
|
53
|
+
|
|
54
|
+
// ── Description ─────────────────────────────────────────────
|
|
55
|
+
|
|
56
|
+
export const dialogDescriptionVariants = cva(['text-sm mt-1', COLOR_TEXT_SECONDARY]);
|
|
57
|
+
|
|
58
|
+
// ── Body ────────────────────────────────────────────────────
|
|
59
|
+
|
|
60
|
+
export const dialogBodyVariants = cva(['px-6 py-4 shrink min-h-0']);
|
|
61
|
+
|
|
62
|
+
// ── Footer ──────────────────────────────────────────────────
|
|
63
|
+
|
|
64
|
+
export const dialogFooterVariants = cva([
|
|
65
|
+
'flex-row items-center justify-end shrink-0',
|
|
66
|
+
'gap-3 px-6 pt-2 pb-6',
|
|
67
|
+
]);
|
|
68
|
+
|
|
69
|
+
// ── Close ───────────────────────────────────────────────────
|
|
70
|
+
|
|
71
|
+
export const dialogCloseVariants = cva([
|
|
72
|
+
'p-1 -m-1 rounded-full',
|
|
73
|
+
TRANSITION_COLORS,
|
|
74
|
+
Platform.select({
|
|
75
|
+
default: 'data-[active=true]:opacity-70',
|
|
76
|
+
web: [
|
|
77
|
+
'data-[hover=true]:bg-slate-100',
|
|
78
|
+
'data-[active=true]:bg-slate-200',
|
|
79
|
+
'data-[focus-visible=true]:ring-2 data-[focus-visible=true]:ring-slate-400/50 data-[focus-visible=true]:ring-offset-2',
|
|
80
|
+
].join(' '),
|
|
81
|
+
}),
|
|
82
|
+
]);
|
|
83
|
+
|
|
84
|
+
// ── Close Icon ──────────────────────────────────────────────
|
|
85
|
+
|
|
86
|
+
export const dialogCloseIconVariants = cva(['size-5 text-slate-500']);
|
|
87
|
+
|
|
88
|
+
export type DialogVariantProps = VariantProps<typeof dialogContentVariants>;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { forwardRef } from 'react';
|
|
2
|
+
import { Text, TextProps, type GestureResponderEvent } from 'react-native';
|
|
3
|
+
import { composeEventHandlers, useFormControlContext } from '@cdx-ui/utils';
|
|
4
|
+
|
|
5
|
+
export type FormLabelRootProps = TextProps & {
|
|
6
|
+
/** @platform web — forwarded on web; ignored here (see `FormLabelRoot.web`). */
|
|
7
|
+
htmlFor?: string;
|
|
8
|
+
/** Optional; composed with label tap-to-focus on native. */
|
|
9
|
+
onPress?: ((event: GestureResponderEvent) => void) | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Native: `Text` label row — tap focuses the field input via form context
|
|
14
|
+
* (parity with `<label htmlFor>` on web).
|
|
15
|
+
*/
|
|
16
|
+
export const FormLabelRoot = forwardRef<Text, FormLabelRootProps>(
|
|
17
|
+
({ htmlFor: _omitHtmlFor, onPress, ...props }, ref) => {
|
|
18
|
+
void _omitHtmlFor;
|
|
19
|
+
|
|
20
|
+
const { focusInput, isDisabled } = useFormControlContext();
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<Text
|
|
24
|
+
ref={ref}
|
|
25
|
+
{...props}
|
|
26
|
+
disabled={Boolean(isDisabled)}
|
|
27
|
+
onPress={composeEventHandlers(onPress, () => focusInput?.())}
|
|
28
|
+
/>
|
|
29
|
+
);
|
|
30
|
+
},
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
FormLabelRoot.displayName = 'FormLabelRoot';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React, { forwardRef, type ReactNode } from 'react';
|
|
2
|
+
import type { ViewProps } from 'react-native';
|
|
3
|
+
|
|
4
|
+
export type FormLabelRootProps = ViewProps & {
|
|
5
|
+
htmlFor?: string;
|
|
6
|
+
children?: ReactNode;
|
|
7
|
+
/** Mirrors field invalid state from form context (`data-[invalid=true]` styling). */
|
|
8
|
+
'data-invalid'?: string;
|
|
9
|
+
/** @platform native — ignored on DOM `<label>`; set by form primitive for Uniwind. */
|
|
10
|
+
dataSet?: Record<string, string>;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
/** Real `<label>` so clicking the label focuses the associated control (`htmlFor` → input `id`). */
|
|
14
|
+
export const FormLabelRoot = forwardRef<HTMLLabelElement, FormLabelRootProps>((props, ref) => {
|
|
15
|
+
return <label ref={ref} {...(props as React.LabelHTMLAttributes<HTMLLabelElement>)} />;
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
FormLabelRoot.displayName = 'FormLabelRoot';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { forwardRef } from 'react';
|
|
2
|
+
import { View, type ViewProps } from 'react-native';
|
|
3
|
+
|
|
4
|
+
export type BaseFormRootProps = ViewProps & {
|
|
5
|
+
onSubmit?: (e: React.SyntheticEvent) => void;
|
|
6
|
+
action?: string | ((formData: FormData) => void | Promise<void>);
|
|
7
|
+
method?: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export const BaseFormRoot = forwardRef<View, BaseFormRootProps>(
|
|
11
|
+
({ onSubmit: _onSubmit, action: _action, method: _method, ...props }, ref) => {
|
|
12
|
+
void _onSubmit;
|
|
13
|
+
void _action;
|
|
14
|
+
void _method;
|
|
15
|
+
return <View ref={ref} {...props} />;
|
|
16
|
+
},
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
BaseFormRoot.displayName = 'BaseFormRoot';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
|
|
3
|
+
export type BaseFormRootProps = React.FormHTMLAttributes<HTMLFormElement> & {
|
|
4
|
+
className?: string;
|
|
5
|
+
children?: React.ReactNode;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export const BaseFormRoot = forwardRef<HTMLFormElement, BaseFormRootProps>((props, ref) => {
|
|
9
|
+
return <form ref={ref} {...props} />;
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
BaseFormRoot.displayName = 'BaseFormRoot';
|