@cdx-ui/components 0.0.1-alpha.3 → 0.0.1-alpha.30
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,252 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { forwardRef } from 'react';
|
|
4
|
+
import { Text, View } from 'react-native';
|
|
5
|
+
import { createForm } from '@cdx-ui/primitives';
|
|
6
|
+
import { cn, withStyleContext, useStyleContext } from '@cdx-ui/utils';
|
|
7
|
+
import { Icon } from '../Icon';
|
|
8
|
+
import { BaseFormRoot } from './FormRoot';
|
|
9
|
+
import { FormLabelRoot } from './FormLabelRoot';
|
|
10
|
+
import { formRootVariants, formFieldVariants, formLabelVariants, formHelperVariants, formHelperTextVariants, formErrorVariants, formErrorTextVariants, formErrorIconVariants } from './styles';
|
|
11
|
+
|
|
12
|
+
// =============================================================================
|
|
13
|
+
// SCOPE + CONTEXT
|
|
14
|
+
// =============================================================================
|
|
15
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
16
|
+
const SCOPE = 'FORM';
|
|
17
|
+
const FieldRoot = withStyleContext(View, SCOPE);
|
|
18
|
+
const useFormStyleContext = () => useStyleContext(SCOPE);
|
|
19
|
+
|
|
20
|
+
// =============================================================================
|
|
21
|
+
// PRIMITIVE
|
|
22
|
+
// =============================================================================
|
|
23
|
+
|
|
24
|
+
const FormPrimitive = createForm({
|
|
25
|
+
Root: BaseFormRoot,
|
|
26
|
+
Field: FieldRoot,
|
|
27
|
+
Error: View,
|
|
28
|
+
ErrorText: Text,
|
|
29
|
+
ErrorIcon: View,
|
|
30
|
+
Label: FormLabelRoot,
|
|
31
|
+
Helper: View,
|
|
32
|
+
HelperText: Text
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
// =============================================================================
|
|
36
|
+
// FORM ROOT (container — <form> on web, <View> on RN)
|
|
37
|
+
// =============================================================================
|
|
38
|
+
|
|
39
|
+
const FormRoot = /*#__PURE__*/forwardRef(({
|
|
40
|
+
className,
|
|
41
|
+
children,
|
|
42
|
+
style,
|
|
43
|
+
...props
|
|
44
|
+
}, ref) => {
|
|
45
|
+
const computedClassName = cn(formRootVariants(), className);
|
|
46
|
+
return /*#__PURE__*/_jsx(FormPrimitive, {
|
|
47
|
+
ref: ref,
|
|
48
|
+
className: computedClassName,
|
|
49
|
+
style: style,
|
|
50
|
+
...props,
|
|
51
|
+
children: children
|
|
52
|
+
});
|
|
53
|
+
});
|
|
54
|
+
FormRoot.displayName = 'Form';
|
|
55
|
+
|
|
56
|
+
// =============================================================================
|
|
57
|
+
// FORM FIELD (per-field wrapper — provides context for label/error/helper/input)
|
|
58
|
+
// =============================================================================
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Field wrapper + context. For **initial focus**, pass `autoFocus` on `Input.Field` (not here).
|
|
62
|
+
*/
|
|
63
|
+
|
|
64
|
+
const FormField = /*#__PURE__*/forwardRef(({
|
|
65
|
+
size = 'default',
|
|
66
|
+
className,
|
|
67
|
+
children,
|
|
68
|
+
style,
|
|
69
|
+
...props
|
|
70
|
+
}, ref) => {
|
|
71
|
+
const computedClassName = cn(formFieldVariants(), className);
|
|
72
|
+
return /*#__PURE__*/_jsx(FormPrimitive.Field, {
|
|
73
|
+
ref: ref,
|
|
74
|
+
className: computedClassName,
|
|
75
|
+
style: style,
|
|
76
|
+
context: {
|
|
77
|
+
size
|
|
78
|
+
},
|
|
79
|
+
...props,
|
|
80
|
+
children: children
|
|
81
|
+
});
|
|
82
|
+
});
|
|
83
|
+
FormField.displayName = 'Form.Field';
|
|
84
|
+
|
|
85
|
+
// =============================================================================
|
|
86
|
+
// FORM LABEL
|
|
87
|
+
// =============================================================================
|
|
88
|
+
|
|
89
|
+
// TODO: Accept accessibility labels for required indicator as props to support i18n
|
|
90
|
+
|
|
91
|
+
const FormLabel = /*#__PURE__*/forwardRef(({
|
|
92
|
+
className,
|
|
93
|
+
children,
|
|
94
|
+
style,
|
|
95
|
+
htmlFor,
|
|
96
|
+
...props
|
|
97
|
+
}, ref) => {
|
|
98
|
+
const {
|
|
99
|
+
size
|
|
100
|
+
} = useFormStyleContext();
|
|
101
|
+
const labelClassName = cn(formLabelVariants({
|
|
102
|
+
size
|
|
103
|
+
}), className);
|
|
104
|
+
return /*#__PURE__*/_jsx(FormPrimitive.Label, {
|
|
105
|
+
ref: ref,
|
|
106
|
+
className: labelClassName,
|
|
107
|
+
style: style,
|
|
108
|
+
htmlFor: htmlFor,
|
|
109
|
+
requiredIndicator: /*#__PURE__*/_jsx(Text, {
|
|
110
|
+
className: "text-red-500",
|
|
111
|
+
"aria-hidden": true,
|
|
112
|
+
children: ' *'
|
|
113
|
+
}),
|
|
114
|
+
...props,
|
|
115
|
+
children: children
|
|
116
|
+
});
|
|
117
|
+
});
|
|
118
|
+
FormLabel.displayName = 'Form.Label';
|
|
119
|
+
|
|
120
|
+
// =============================================================================
|
|
121
|
+
// FORM HELPER
|
|
122
|
+
// =============================================================================
|
|
123
|
+
|
|
124
|
+
const FormHelper = /*#__PURE__*/forwardRef(({
|
|
125
|
+
className,
|
|
126
|
+
children,
|
|
127
|
+
style,
|
|
128
|
+
...props
|
|
129
|
+
}, ref) => {
|
|
130
|
+
const computedClassName = cn(formHelperVariants(), className);
|
|
131
|
+
return /*#__PURE__*/_jsx(FormPrimitive.Helper, {
|
|
132
|
+
ref: ref,
|
|
133
|
+
className: computedClassName,
|
|
134
|
+
style: style,
|
|
135
|
+
...props,
|
|
136
|
+
children: children
|
|
137
|
+
});
|
|
138
|
+
});
|
|
139
|
+
FormHelper.displayName = 'Form.Helper';
|
|
140
|
+
|
|
141
|
+
// =============================================================================
|
|
142
|
+
// FORM HELPER TEXT
|
|
143
|
+
// =============================================================================
|
|
144
|
+
|
|
145
|
+
const FormHelperText = /*#__PURE__*/forwardRef(({
|
|
146
|
+
className,
|
|
147
|
+
children,
|
|
148
|
+
style,
|
|
149
|
+
...props
|
|
150
|
+
}, ref) => {
|
|
151
|
+
const {
|
|
152
|
+
size
|
|
153
|
+
} = useFormStyleContext();
|
|
154
|
+
const computedClassName = cn(formHelperTextVariants({
|
|
155
|
+
size
|
|
156
|
+
}), className);
|
|
157
|
+
return /*#__PURE__*/_jsx(FormPrimitive.HelperText, {
|
|
158
|
+
ref: ref,
|
|
159
|
+
className: computedClassName,
|
|
160
|
+
style: style,
|
|
161
|
+
...props,
|
|
162
|
+
children: children
|
|
163
|
+
});
|
|
164
|
+
});
|
|
165
|
+
FormHelperText.displayName = 'Form.HelperText';
|
|
166
|
+
|
|
167
|
+
// =============================================================================
|
|
168
|
+
// FORM ERROR
|
|
169
|
+
// =============================================================================
|
|
170
|
+
|
|
171
|
+
const FormError = /*#__PURE__*/forwardRef(({
|
|
172
|
+
className,
|
|
173
|
+
children,
|
|
174
|
+
style,
|
|
175
|
+
...props
|
|
176
|
+
}, ref) => {
|
|
177
|
+
const computedClassName = cn(formErrorVariants(), className);
|
|
178
|
+
return /*#__PURE__*/_jsx(FormPrimitive.Error, {
|
|
179
|
+
ref: ref,
|
|
180
|
+
className: computedClassName,
|
|
181
|
+
style: style,
|
|
182
|
+
...props,
|
|
183
|
+
children: children
|
|
184
|
+
});
|
|
185
|
+
});
|
|
186
|
+
FormError.displayName = 'Form.Error';
|
|
187
|
+
|
|
188
|
+
// =============================================================================
|
|
189
|
+
// FORM ERROR TEXT
|
|
190
|
+
// =============================================================================
|
|
191
|
+
|
|
192
|
+
const FormErrorText = /*#__PURE__*/forwardRef(({
|
|
193
|
+
className,
|
|
194
|
+
children,
|
|
195
|
+
style,
|
|
196
|
+
...props
|
|
197
|
+
}, ref) => {
|
|
198
|
+
const {
|
|
199
|
+
size
|
|
200
|
+
} = useFormStyleContext();
|
|
201
|
+
const computedClassName = cn(formErrorTextVariants({
|
|
202
|
+
size
|
|
203
|
+
}), className);
|
|
204
|
+
return /*#__PURE__*/_jsx(FormPrimitive.ErrorText, {
|
|
205
|
+
ref: ref,
|
|
206
|
+
className: computedClassName,
|
|
207
|
+
style: style,
|
|
208
|
+
...props,
|
|
209
|
+
children: children
|
|
210
|
+
});
|
|
211
|
+
});
|
|
212
|
+
FormErrorText.displayName = 'Form.ErrorText';
|
|
213
|
+
|
|
214
|
+
// =============================================================================
|
|
215
|
+
// FORM ERROR ICON
|
|
216
|
+
// =============================================================================
|
|
217
|
+
|
|
218
|
+
const FormErrorIcon = ({
|
|
219
|
+
className,
|
|
220
|
+
style,
|
|
221
|
+
as,
|
|
222
|
+
...props
|
|
223
|
+
}) => {
|
|
224
|
+
const {
|
|
225
|
+
size
|
|
226
|
+
} = useFormStyleContext();
|
|
227
|
+
const computedClassName = cn(formErrorIconVariants({
|
|
228
|
+
size
|
|
229
|
+
}), className);
|
|
230
|
+
return /*#__PURE__*/_jsx(Icon, {
|
|
231
|
+
as: as,
|
|
232
|
+
className: computedClassName,
|
|
233
|
+
style: style,
|
|
234
|
+
...props
|
|
235
|
+
});
|
|
236
|
+
};
|
|
237
|
+
FormErrorIcon.displayName = 'Form.ErrorIcon';
|
|
238
|
+
|
|
239
|
+
// =============================================================================
|
|
240
|
+
// COMPOUND EXPORT
|
|
241
|
+
// =============================================================================
|
|
242
|
+
|
|
243
|
+
export const Form = Object.assign(FormRoot, {
|
|
244
|
+
Field: FormField,
|
|
245
|
+
Label: FormLabel,
|
|
246
|
+
Helper: FormHelper,
|
|
247
|
+
HelperText: FormHelperText,
|
|
248
|
+
Error: FormError,
|
|
249
|
+
ErrorText: FormErrorText,
|
|
250
|
+
ErrorIcon: FormErrorIcon
|
|
251
|
+
});
|
|
252
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["forwardRef","Text","View","createForm","cn","withStyleContext","useStyleContext","Icon","BaseFormRoot","FormLabelRoot","formRootVariants","formFieldVariants","formLabelVariants","formHelperVariants","formHelperTextVariants","formErrorVariants","formErrorTextVariants","formErrorIconVariants","jsx","_jsx","SCOPE","FieldRoot","useFormStyleContext","FormPrimitive","Root","Field","Error","ErrorText","ErrorIcon","Label","Helper","HelperText","FormRoot","className","children","style","props","ref","computedClassName","displayName","FormField","size","context","FormLabel","htmlFor","labelClassName","requiredIndicator","FormHelper","FormHelperText","FormError","FormErrorText","FormErrorIcon","as","Form","Object","assign"],"sourceRoot":"../../../../src","sources":["components/Form/index.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { cva } from 'class-variance-authority';
|
|
4
|
+
import { COLOR_TEXT_INVALID, COLOR_TEXT_SECONDARY, DISABLED_OPACITY } from '../../styles/primitives';
|
|
5
|
+
export const formRootVariants = cva(['flex-col gap-4']);
|
|
6
|
+
export const formFieldVariants = cva(['flex-col gap-1.5 mb-4', 'web:last:mb-0', DISABLED_OPACITY]);
|
|
7
|
+
export const formLabelVariants = cva(['flex-row items-center', DISABLED_OPACITY, 'web:cursor-pointer', 'font-medium data-[invalid=true]:text-red-600'], {
|
|
8
|
+
variants: {
|
|
9
|
+
size: {
|
|
10
|
+
default: 'text-sm',
|
|
11
|
+
small: 'text-xs'
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
defaultVariants: {
|
|
15
|
+
size: 'default'
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
export const formHelperVariants = cva(['flex-row items-center']);
|
|
19
|
+
export const formHelperTextVariants = cva([COLOR_TEXT_SECONDARY], {
|
|
20
|
+
variants: {
|
|
21
|
+
size: {
|
|
22
|
+
default: 'text-xs',
|
|
23
|
+
small: 'text-[11px]'
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
defaultVariants: {
|
|
27
|
+
size: 'default'
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
export const formErrorVariants = cva(['flex-row items-center gap-1']);
|
|
31
|
+
export const formErrorTextVariants = cva([COLOR_TEXT_INVALID, 'font-medium'], {
|
|
32
|
+
variants: {
|
|
33
|
+
size: {
|
|
34
|
+
default: 'text-xs',
|
|
35
|
+
small: 'text-[11px]'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
defaultVariants: {
|
|
39
|
+
size: 'default'
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
export const formErrorIconVariants = cva([COLOR_TEXT_INVALID], {
|
|
43
|
+
variants: {
|
|
44
|
+
size: {
|
|
45
|
+
default: 'size-3.5',
|
|
46
|
+
small: 'size-3'
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
defaultVariants: {
|
|
50
|
+
size: 'default'
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
//# sourceMappingURL=styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["cva","COLOR_TEXT_INVALID","COLOR_TEXT_SECONDARY","DISABLED_OPACITY","formRootVariants","formFieldVariants","formLabelVariants","variants","size","default","small","defaultVariants","formHelperVariants","formHelperTextVariants","formErrorVariants","formErrorTextVariants","formErrorIconVariants"],"sourceRoot":"../../../../src","sources":["components/Form/styles.ts"],"mappings":";;AAAA,SAASA,GAAG,QAA2B,0BAA0B;AACjE,SACEC,kBAAkB,EAClBC,oBAAoB,EACpBC,gBAAgB,QACX,yBAAyB;AAEhC,OAAO,MAAMC,gBAAgB,GAAGJ,GAAG,CAAC,CAAC,gBAAgB,CAAC,CAAC;AAEvD,OAAO,MAAMK,iBAAiB,GAAGL,GAAG,CAAC,CAAC,uBAAuB,EAAE,eAAe,EAAEG,gBAAgB,CAAC,CAAC;AAElG,OAAO,MAAMG,iBAAiB,GAAGN,GAAG,CAClC,CACE,uBAAuB,EACvBG,gBAAgB,EAChB,oBAAoB,EACpB,8CAA8C,CAC/C,EACD;EACEI,QAAQ,EAAE;IACRC,IAAI,EAAE;MACJC,OAAO,EAAE,SAAS;MAClBC,KAAK,EAAE;IACT;EACF,CAAC;EACDC,eAAe,EAAE;IACfH,IAAI,EAAE;EACR;AACF,CACF,CAAC;AAED,OAAO,MAAMI,kBAAkB,GAAGZ,GAAG,CAAC,CAAC,uBAAuB,CAAC,CAAC;AAEhE,OAAO,MAAMa,sBAAsB,GAAGb,GAAG,CAAC,CAACE,oBAAoB,CAAC,EAAE;EAChEK,QAAQ,EAAE;IACRC,IAAI,EAAE;MACJC,OAAO,EAAE,SAAS;MAClBC,KAAK,EAAE;IACT;EACF,CAAC;EACDC,eAAe,EAAE;IACfH,IAAI,EAAE;EACR;AACF,CAAC,CAAC;AAEF,OAAO,MAAMM,iBAAiB,GAAGd,GAAG,CAAC,CAAC,6BAA6B,CAAC,CAAC;AAErE,OAAO,MAAMe,qBAAqB,GAAGf,GAAG,CAAC,CAACC,kBAAkB,EAAE,aAAa,CAAC,EAAE;EAC5EM,QAAQ,EAAE;IACRC,IAAI,EAAE;MACJC,OAAO,EAAE,SAAS;MAClBC,KAAK,EAAE;IACT;EACF,CAAC;EACDC,eAAe,EAAE;IACfH,IAAI,EAAE;EACR;AACF,CAAC,CAAC;AAEF,OAAO,MAAMQ,qBAAqB,GAAGhB,GAAG,CAAC,CAACC,kBAAkB,CAAC,EAAE;EAC7DM,QAAQ,EAAE;IACRC,IAAI,EAAE;MACJC,OAAO,EAAE,UAAU;MACnBC,KAAK,EAAE;IACT;EACF,CAAC;EACDC,eAAe,EAAE;IACfH,IAAI,EAAE;EACR;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { forwardRef, memo } from 'react';
|
|
4
|
+
import { Text } from 'react-native';
|
|
5
|
+
import { cn } from '@cdx-ui/utils';
|
|
6
|
+
import { headingStyle } from './styles';
|
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
8
|
+
const sizeToLevel = {
|
|
9
|
+
xl: 1,
|
|
10
|
+
lg: 2,
|
|
11
|
+
md: 3,
|
|
12
|
+
sm: 4,
|
|
13
|
+
xs: 5
|
|
14
|
+
};
|
|
15
|
+
export const Heading = /*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Heading({
|
|
16
|
+
className,
|
|
17
|
+
size = 'lg',
|
|
18
|
+
...props
|
|
19
|
+
}, ref) {
|
|
20
|
+
return /*#__PURE__*/_jsx(Text, {
|
|
21
|
+
role: "heading",
|
|
22
|
+
"aria-level": sizeToLevel[size ?? 'lg'],
|
|
23
|
+
className: cn(headingStyle({
|
|
24
|
+
size
|
|
25
|
+
}), className),
|
|
26
|
+
...props,
|
|
27
|
+
ref: ref
|
|
28
|
+
});
|
|
29
|
+
}));
|
|
30
|
+
Heading.displayName = 'Heading';
|
|
31
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["forwardRef","memo","Text","cn","headingStyle","jsx","_jsx","sizeToLevel","xl","lg","md","sm","xs","Heading","className","size","props","ref","role","displayName"],"sourceRoot":"../../../../src","sources":["components/Heading/index.tsx"],"mappings":";;AAAA,SAASA,UAAU,EAAEC,IAAI,QAA0D,OAAO;AAC1F,SAASC,IAAI,QAAQ,cAAc;AACnC,SAASC,EAAE,QAAQ,eAAe;AAClC,SAASC,YAAY,QAAkC,UAAU;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAElE,MAAMC,WAAW,GAAG;EAClBC,EAAE,EAAE,CAAC;EACLC,EAAE,EAAE,CAAC;EACLC,EAAE,EAAE,CAAC;EACLC,EAAE,EAAE,CAAC;EACLC,EAAE,EAAE;AACN,CAAU;AAOV,OAAO,MAAMC,OAAO,gBAAGZ,IAAI,cACzBD,UAAU,CAA0C,SAASa,OAAOA,CAClE;EAAEC,SAAS;EAAEC,IAAI,GAAG,IAAI;EAAE,GAAGC;AAAM,CAAC,EACpCC,GAAG,EACH;EACA,oBACEX,IAAA,CAACJ,IAAI;IACHgB,IAAI,EAAC,SAAS;IACd,cAAYX,WAAW,CAACQ,IAAI,IAAI,IAAI,CAAE;IACtCD,SAAS,EAAEX,EAAE,CAACC,YAAY,CAAC;MAAEW;IAAK,CAAC,CAAC,EAAED,SAAS,CAAE;IAAA,GAC7CE,KAAK;IACTC,GAAG,EAAEA;EAAI,CACV,CAAC;AAEN,CAAC,CACH,CAAC;AAEDJ,OAAO,CAACM,WAAW,GAAG,SAAS","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { Platform } from 'react-native';
|
|
4
|
+
import { cva } from 'class-variance-authority';
|
|
5
|
+
import { COLOR_TEXT_PRIMARY } from '../../styles/primitives';
|
|
6
|
+
export const headingStyle = cva([`${COLOR_TEXT_PRIMARY} font-semibold tracking-tight my-0`, Platform.select({
|
|
7
|
+
web: 'font-sans bg-transparent display-inline no-underline',
|
|
8
|
+
default: ''
|
|
9
|
+
})], {
|
|
10
|
+
variants: {
|
|
11
|
+
size: {
|
|
12
|
+
xl: 'text-6xl',
|
|
13
|
+
lg: 'text-5xl',
|
|
14
|
+
md: 'text-4xl',
|
|
15
|
+
sm: 'text-3xl',
|
|
16
|
+
xs: 'text-2xl'
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
//# sourceMappingURL=styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Platform","cva","COLOR_TEXT_PRIMARY","headingStyle","select","web","default","variants","size","xl","lg","md","sm","xs"],"sourceRoot":"../../../../src","sources":["components/Heading/styles.tsx"],"mappings":";;AAAA,SAASA,QAAQ,QAAQ,cAAc;AACvC,SAASC,GAAG,QAA2B,0BAA0B;AACjE,SAASC,kBAAkB,QAAQ,yBAAyB;AAE5D,OAAO,MAAMC,YAAY,GAAGF,GAAG,CAC7B,CACE,GAAGC,kBAAkB,oCAAoC,EACzDF,QAAQ,CAACI,MAAM,CAAC;EACdC,GAAG,EAAE,sDAAsD;EAC3DC,OAAO,EAAE;AACX,CAAC,CAAC,CACH,EACD;EACEC,QAAQ,EAAE;IACRC,IAAI,EAAE;MACJC,EAAE,EAAE,UAAU;MACdC,EAAE,EAAE,UAAU;MACdC,EAAE,EAAE,UAAU;MACdC,EAAE,EAAE,UAAU;MACdC,EAAE,EAAE;IACN;EACF;AACF,CACF,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { withUniwind } from 'uniwind';
|
|
4
|
+
import { cn } from '@cdx-ui/utils';
|
|
5
|
+
import { COLOR_TEXT_PRIMARY } from '../../styles/primitives';
|
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
+
function IconImpl({
|
|
8
|
+
as: IconComponent,
|
|
9
|
+
...props
|
|
10
|
+
}) {
|
|
11
|
+
return /*#__PURE__*/_jsx(IconComponent, {
|
|
12
|
+
...props
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
const StyledIcon = withUniwind(IconImpl, {
|
|
16
|
+
size: {
|
|
17
|
+
fromClassName: 'className',
|
|
18
|
+
styleProperty: 'width'
|
|
19
|
+
},
|
|
20
|
+
color: {
|
|
21
|
+
fromClassName: 'className',
|
|
22
|
+
styleProperty: 'color'
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* A wrapper component for CDX icons with Uniwind `className` support via `withUniwind`.
|
|
28
|
+
*
|
|
29
|
+
* This component allows you to render any CDX icon while applying utility classes
|
|
30
|
+
* using `uniwind`. It avoids the need to wrap or configure each icon individually.
|
|
31
|
+
*
|
|
32
|
+
* @component
|
|
33
|
+
* @example
|
|
34
|
+
* ```tsx
|
|
35
|
+
* import { Icon } from '@cdx-ui/components';
|
|
36
|
+
* import { ArrowRight } from '@cdx-ui/icons';
|
|
37
|
+
*
|
|
38
|
+
* <Icon as={ArrowRight} className="text-red-500 size-4" />
|
|
39
|
+
* ```
|
|
40
|
+
*
|
|
41
|
+
* @param {CdxIcon} as - The CDX icon component to render.
|
|
42
|
+
* @param {string} className - Utility classes to style the icon using Uniwind.
|
|
43
|
+
* @param {number} size - Icon size (overrides the size class).
|
|
44
|
+
* @param {...CdxIconProps} ...props - Additional icon props passed to the "as" icon.
|
|
45
|
+
*/
|
|
46
|
+
export function Icon({
|
|
47
|
+
as: IconComponent,
|
|
48
|
+
className,
|
|
49
|
+
...props
|
|
50
|
+
}) {
|
|
51
|
+
return /*#__PURE__*/_jsx(StyledIcon, {
|
|
52
|
+
as: IconComponent,
|
|
53
|
+
className: cn(COLOR_TEXT_PRIMARY, 'size-5', className),
|
|
54
|
+
...props
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["withUniwind","cn","COLOR_TEXT_PRIMARY","jsx","_jsx","IconImpl","as","IconComponent","props","StyledIcon","size","fromClassName","styleProperty","color","Icon","className"],"sourceRoot":"../../../../src","sources":["components/Icon/index.tsx"],"mappings":";;AAAA,SAASA,WAAW,QAAQ,SAAS;AACrC,SAASC,EAAE,QAAQ,eAAe;AAElC,SAASC,kBAAkB,QAAQ,yBAAyB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAO7D,SAASC,QAAQA,CAAC;EAAEC,EAAE,EAAEC,aAAa;EAAE,GAAGC;AAAiB,CAAC,EAAE;EAC5D,oBAAOJ,IAAA,CAACG,aAAa;IAAA,GAAKC;EAAK,CAAG,CAAC;AACrC;AAEA,MAAMC,UAAU,GAAGT,WAAW,CAACK,QAAQ,EAAE;EACvCK,IAAI,EAAE;IACJC,aAAa,EAAE,WAAW;IAC1BC,aAAa,EAAE;EACjB,CAAC;EACDC,KAAK,EAAE;IACLF,aAAa,EAAE,WAAW;IAC1BC,aAAa,EAAE;EACjB;AACF,CAAC,CAAC;;AAEF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASE,IAAIA,CAAC;EAAER,EAAE,EAAEC,aAAa;EAAEQ,SAAS;EAAE,GAAGP;AAAiB,CAAC,EAAE;EAC1E,oBACEJ,IAAA,CAACK,UAAU;IACTH,EAAE,EAAEC,aAAc;IAClBQ,SAAS,EAAEd,EAAE,CAACC,kBAAkB,EAAE,QAAQ,EAAEa,SAAS,CAAE;IAAA,GACnDP;EAAK,CACV,CAAC;AAEN","ignoreList":[]}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { forwardRef } from 'react';
|
|
4
|
+
import { ActivityIndicator, Pressable, Text, View } from 'react-native';
|
|
5
|
+
import { createButton, dataAttributes, useButtonContext } from '@cdx-ui/primitives';
|
|
6
|
+
import { cn } from '@cdx-ui/utils';
|
|
7
|
+
import { Icon } from '../Icon';
|
|
8
|
+
import { iconButtonGlyphVariants, iconButtonIconColorVariants, iconButtonRootVariants } from './styles';
|
|
9
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
+
const IconButtonPrimitive = createButton({
|
|
11
|
+
Root: Pressable,
|
|
12
|
+
Text,
|
|
13
|
+
Group: View,
|
|
14
|
+
Spinner: ActivityIndicator,
|
|
15
|
+
Icon: View
|
|
16
|
+
});
|
|
17
|
+
function IconButtonGlyph({
|
|
18
|
+
as: IconComponent,
|
|
19
|
+
className
|
|
20
|
+
}) {
|
|
21
|
+
const {
|
|
22
|
+
hover,
|
|
23
|
+
focus,
|
|
24
|
+
active,
|
|
25
|
+
disabled,
|
|
26
|
+
focusVisible
|
|
27
|
+
} = useButtonContext();
|
|
28
|
+
return /*#__PURE__*/_jsx(Icon, {
|
|
29
|
+
as: IconComponent,
|
|
30
|
+
className: className,
|
|
31
|
+
...dataAttributes({
|
|
32
|
+
hover,
|
|
33
|
+
focus,
|
|
34
|
+
active,
|
|
35
|
+
disabled,
|
|
36
|
+
focusVisible
|
|
37
|
+
})
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
const IconButtonRoot = /*#__PURE__*/forwardRef(({
|
|
41
|
+
variant = 'solid',
|
|
42
|
+
size = 'default',
|
|
43
|
+
mode = 'light',
|
|
44
|
+
className,
|
|
45
|
+
style,
|
|
46
|
+
as: IconComponent,
|
|
47
|
+
iconClassName,
|
|
48
|
+
accessibilityRole = 'button',
|
|
49
|
+
...props
|
|
50
|
+
}, ref) => {
|
|
51
|
+
const rootClassName = cn(iconButtonRootVariants({
|
|
52
|
+
variant,
|
|
53
|
+
size,
|
|
54
|
+
mode
|
|
55
|
+
}), className);
|
|
56
|
+
const glyphClassName = cn(iconButtonGlyphVariants({
|
|
57
|
+
size
|
|
58
|
+
}), iconButtonIconColorVariants({
|
|
59
|
+
variant,
|
|
60
|
+
mode
|
|
61
|
+
}), iconClassName);
|
|
62
|
+
return /*#__PURE__*/_jsx(IconButtonPrimitive, {
|
|
63
|
+
ref: ref,
|
|
64
|
+
accessibilityRole: accessibilityRole,
|
|
65
|
+
className: rootClassName,
|
|
66
|
+
style: style,
|
|
67
|
+
...props,
|
|
68
|
+
children: /*#__PURE__*/_jsx(IconButtonGlyph, {
|
|
69
|
+
as: IconComponent,
|
|
70
|
+
className: glyphClassName
|
|
71
|
+
})
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
IconButtonRoot.displayName = 'IconButton';
|
|
75
|
+
export const IconButton = IconButtonRoot;
|
|
76
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["forwardRef","ActivityIndicator","Pressable","Text","View","createButton","dataAttributes","useButtonContext","cn","Icon","iconButtonGlyphVariants","iconButtonIconColorVariants","iconButtonRootVariants","jsx","_jsx","IconButtonPrimitive","Root","Group","Spinner","IconButtonGlyph","as","IconComponent","className","hover","focus","active","disabled","focusVisible","IconButtonRoot","variant","size","mode","style","iconClassName","accessibilityRole","props","ref","rootClassName","glyphClassName","children","displayName","IconButton"],"sourceRoot":"../../../../src","sources":["components/IconButton/index.tsx"],"mappings":";;AAAA,SAASA,UAAU,QAAQ,OAAO;AAClC,SAASC,iBAAiB,EAAEC,SAAS,EAAEC,IAAI,EAAEC,IAAI,QAA6B,cAAc;AAC5F,SACEC,YAAY,EACZC,cAAc,EAEdC,gBAAgB,QACX,oBAAoB;AAE3B,SAASC,EAAE,QAAQ,eAAe;AAClC,SAASC,IAAI,QAAwB,SAAS;AAC9C,SAEEC,uBAAuB,EACvBC,2BAA2B,EAC3BC,sBAAsB,QACjB,UAAU;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAElB,MAAMC,mBAAmB,GAAGV,YAAY,CAAC;EACvCW,IAAI,EAAEd,SAAS;EACfC,IAAI;EACJc,KAAK,EAAEb,IAAI;EACXc,OAAO,EAAEjB,iBAAiB;EAC1BQ,IAAI,EAAEL;AACR,CAAC,CAAC;AAEF,SAASe,eAAeA,CAAC;EAAEC,EAAE,EAAEC,aAAa;EAAEC;AAA8C,CAAC,EAAE;EAC7F,MAAM;IAAEC,KAAK;IAAEC,KAAK;IAAEC,MAAM;IAAEC,QAAQ;IAAEC;EAAa,CAAC,GAAGpB,gBAAgB,CAAC,CAAC;EAC3E,oBACEO,IAAA,CAACL,IAAI;IACHW,EAAE,EAAEC,aAAc;IAClBC,SAAS,EAAEA,SAAU;IAAA,GACjBhB,cAAc,CAAC;MACjBiB,KAAK;MACLC,KAAK;MACLC,MAAM;MACNC,QAAQ;MACRC;IACF,CAAC;EAAC,CACH,CAAC;AAEN;AAUA,MAAMC,cAAc,gBAAG5B,UAAU,CAC/B,CACE;EACE6B,OAAO,GAAG,OAAO;EACjBC,IAAI,GAAG,SAAS;EAChBC,IAAI,GAAG,OAAO;EACdT,SAAS;EACTU,KAAK;EACLZ,EAAE,EAAEC,aAAa;EACjBY,aAAa;EACbC,iBAAiB,GAAG,QAAQ;EAC5B,GAAGC;AACL,CAAC,EACDC,GAAG,KACA;EACH,MAAMC,aAAa,GAAG7B,EAAE,CAACI,sBAAsB,CAAC;IAAEiB,OAAO;IAAEC,IAAI;IAAEC;EAAK,CAAC,CAAC,EAAET,SAAS,CAAC;EAEpF,MAAMgB,cAAc,GAAG9B,EAAE,CACvBE,uBAAuB,CAAC;IAAEoB;EAAK,CAAC,CAAC,EACjCnB,2BAA2B,CAAC;IAAEkB,OAAO;IAAEE;EAAK,CAAC,CAAC,EAC9CE,aACF,CAAC;EAED,oBACEnB,IAAA,CAACC,mBAAmB;IAClBqB,GAAG,EAAEA,GAAI;IACTF,iBAAiB,EAAEA,iBAAkB;IACrCZ,SAAS,EAAEe,aAAc;IACzBL,KAAK,EAAEA,KAAM;IAAA,GACTG,KAAK;IAAAI,QAAA,eAETzB,IAAA,CAACK,eAAe;MAACC,EAAE,EAAEC,aAAc;MAACC,SAAS,EAAEgB;IAAe,CAAE;EAAC,CAC9C,CAAC;AAE1B,CACF,CAAC;AAEDV,cAAc,CAACY,WAAW,GAAG,YAAY;AAEzC,OAAO,MAAMC,UAAU,GAAGb,cAAc","ignoreList":[]}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { Platform } from 'react-native';
|
|
4
|
+
import { cva } from 'class-variance-authority';
|
|
5
|
+
import { COLOR_BORDER_DEFAULT, DISABLED_CURSOR, DISABLED_OPACITY, RADIUS_FULL, TRANSITION_COLORS } from '../../styles/primitives';
|
|
6
|
+
import { sharedGhostSurfaceCompounds, sharedOutlineGhostForegroundTextCompounds } from '../Button/buttonSharedVariants';
|
|
7
|
+
function actionOnlyCompounds(compounds) {
|
|
8
|
+
return compounds.filter(c => c.color === 'action').map(c => {
|
|
9
|
+
const {
|
|
10
|
+
color,
|
|
11
|
+
...rest
|
|
12
|
+
} = c;
|
|
13
|
+
void color;
|
|
14
|
+
return rest;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/** Dark-mode hover/active surface for ghost (solid uses a separate compound with border). */
|
|
19
|
+
const iconButtonDarkGhostSurfaceCompounds = actionOnlyCompounds(sharedGhostSurfaceCompounds).map(c => ({
|
|
20
|
+
variant: 'ghost',
|
|
21
|
+
...c
|
|
22
|
+
}));
|
|
23
|
+
const iconButtonForegroundTextCompounds = actionOnlyCompounds(sharedOutlineGhostForegroundTextCompounds).map(c => ({
|
|
24
|
+
variant: ['solid', 'ghost'],
|
|
25
|
+
...c
|
|
26
|
+
}));
|
|
27
|
+
export const iconButtonRootVariants = cva(['flex items-center justify-center', RADIUS_FULL, 'web:outline-none web:focus:outline-none web:focus-visible:outline-none', TRANSITION_COLORS, DISABLED_OPACITY, DISABLED_CURSOR, 'web:data-[focus-visible=true]:ring-2 web:data-[focus-visible=true]:ring-slate-400/50 web:data-[focus-visible=true]:ring-offset-2'], {
|
|
28
|
+
variants: {
|
|
29
|
+
variant: {
|
|
30
|
+
/** Same surface as ghost, with a light gray border (aligned with Button `outline`). */
|
|
31
|
+
solid: ['bg-transparent', `border ${COLOR_BORDER_DEFAULT}`, 'data-[hover=true]:bg-slate-50', 'data-[active=true]:bg-slate-100'],
|
|
32
|
+
ghost: ['bg-transparent', 'data-[hover=true]:bg-slate-50', 'data-[active=true]:bg-slate-100']
|
|
33
|
+
},
|
|
34
|
+
size: {
|
|
35
|
+
default: 'h-10 w-10 min-w-10 shrink-0 p-0',
|
|
36
|
+
small: 'h-8 w-8 min-w-8 shrink-0 p-0'
|
|
37
|
+
},
|
|
38
|
+
mode: {
|
|
39
|
+
light: [],
|
|
40
|
+
dark: []
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
compoundVariants: [...iconButtonDarkGhostSurfaceCompounds, {
|
|
44
|
+
variant: 'solid',
|
|
45
|
+
mode: 'dark',
|
|
46
|
+
className: ['border-slate-700', Platform.select({
|
|
47
|
+
default: 'data-[active=true]:bg-slate-700',
|
|
48
|
+
web: 'data-[hover=true]:bg-slate-800 data-[active=true]:data-[hover=true]:bg-slate-700'
|
|
49
|
+
})]
|
|
50
|
+
}],
|
|
51
|
+
defaultVariants: {
|
|
52
|
+
variant: 'solid',
|
|
53
|
+
size: 'default',
|
|
54
|
+
mode: 'light'
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
export const iconButtonGlyphVariants = cva([], {
|
|
58
|
+
variants: {
|
|
59
|
+
size: {
|
|
60
|
+
default: 'size-5',
|
|
61
|
+
small: 'size-4'
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
defaultVariants: {
|
|
65
|
+
size: 'default'
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
/** Icon fill aligned with Button outline/ghost action label colors (solid matches ghost). */
|
|
70
|
+
export const iconButtonIconColorVariants = cva([], {
|
|
71
|
+
variants: {
|
|
72
|
+
variant: {
|
|
73
|
+
solid: [],
|
|
74
|
+
ghost: []
|
|
75
|
+
},
|
|
76
|
+
mode: {
|
|
77
|
+
light: [],
|
|
78
|
+
dark: []
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
compoundVariants: [...iconButtonForegroundTextCompounds],
|
|
82
|
+
defaultVariants: {
|
|
83
|
+
variant: 'solid',
|
|
84
|
+
mode: 'light'
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
//# sourceMappingURL=styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Platform","cva","COLOR_BORDER_DEFAULT","DISABLED_CURSOR","DISABLED_OPACITY","RADIUS_FULL","TRANSITION_COLORS","sharedGhostSurfaceCompounds","sharedOutlineGhostForegroundTextCompounds","actionOnlyCompounds","compounds","filter","c","color","map","rest","iconButtonDarkGhostSurfaceCompounds","variant","iconButtonForegroundTextCompounds","iconButtonRootVariants","variants","solid","ghost","size","default","small","mode","light","dark","compoundVariants","className","select","web","defaultVariants","iconButtonGlyphVariants","iconButtonIconColorVariants"],"sourceRoot":"../../../../src","sources":["components/IconButton/styles.ts"],"mappings":";;AAAA,SAASA,QAAQ,QAAQ,cAAc;AACvC,SAASC,GAAG,QAA2B,0BAA0B;AACjE,SACEC,oBAAoB,EACpBC,eAAe,EACfC,gBAAgB,EAChBC,WAAW,EACXC,iBAAiB,QACZ,yBAAyB;AAChC,SAEEC,2BAA2B,EAC3BC,yCAAyC,QACpC,gCAAgC;AAEvC,SAASC,mBAAmBA,CAC1BC,SAAc,EACM;EACpB,OAAOA,SAAS,CACbC,MAAM,CAAEC,CAAC,IAAKA,CAAC,CAACC,KAAK,KAAK,QAAQ,CAAC,CACnCC,GAAG,CAAEF,CAAC,IAAK;IACV,MAAM;MAAEC,KAAK;MAAE,GAAGE;IAAK,CAAC,GAAGH,CAAC;IAC5B,KAAKC,KAAK;IACV,OAAOE,IAAI;EACb,CAAC,CAAC;AACN;;AAEA;AACA,MAAMC,mCAAmC,GAAGP,mBAAmB,CAACF,2BAA2B,CAAC,CAACO,GAAG,CAC7FF,CAAC,KAAM;EACNK,OAAO,EAAE,OAAgB;EACzB,GAAGL;AACL,CAAC,CACH,CAAC;AAED,MAAMM,iCAAiC,GAAGT,mBAAmB,CAC3DD,yCACF,CAAC,CAACM,GAAG,CAAEF,CAAC,KAAM;EACZK,OAAO,EAAE,CAAC,OAAO,EAAE,OAAO,CAA0B;EACpD,GAAGL;AACL,CAAC,CAAC,CAAC;AAEH,OAAO,MAAMO,sBAAsB,GAAGlB,GAAG,CACvC,CACE,kCAAkC,EAClCI,WAAW,EACX,wEAAwE,EACxEC,iBAAiB,EACjBF,gBAAgB,EAChBD,eAAe,EACf,kIAAkI,CACnI,EACD;EACEiB,QAAQ,EAAE;IACRH,OAAO,EAAE;MACP;MACAI,KAAK,EAAE,CACL,gBAAgB,EAChB,UAAUnB,oBAAoB,EAAE,EAChC,+BAA+B,EAC/B,iCAAiC,CAClC;MACDoB,KAAK,EAAE,CACL,gBAAgB,EAChB,+BAA+B,EAC/B,iCAAiC;IAErC,CAAC;IACDC,IAAI,EAAE;MACJC,OAAO,EAAE,iCAAiC;MAC1CC,KAAK,EAAE;IACT,CAAC;IACDC,IAAI,EAAE;MACJC,KAAK,EAAE,EAAE;MACTC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,gBAAgB,EAAE,CAChB,GAAGb,mCAAmC,EACtC;IACEC,OAAO,EAAE,OAAO;IAChBS,IAAI,EAAE,MAAM;IACZI,SAAS,EAAE,CACT,kBAAkB,EAClB9B,QAAQ,CAAC+B,MAAM,CAAC;MACdP,OAAO,EAAE,iCAAiC;MAC1CQ,GAAG,EAAE;IACP,CAAC,CAAC;EAEN,CAAC,CACF;EACDC,eAAe,EAAE;IACfhB,OAAO,EAAE,OAAO;IAChBM,IAAI,EAAE,SAAS;IACfG,IAAI,EAAE;EACR;AACF,CACF,CAAC;AAED,OAAO,MAAMQ,uBAAuB,GAAGjC,GAAG,CAAC,EAAE,EAAE;EAC7CmB,QAAQ,EAAE;IACRG,IAAI,EAAE;MACJC,OAAO,EAAE,QAAQ;MACjBC,KAAK,EAAE;IACT;EACF,CAAC;EACDQ,eAAe,EAAE;IACfV,IAAI,EAAE;EACR;AACF,CAAC,CAAC;;AAEF;AACA,OAAO,MAAMY,2BAA2B,GAAGlC,GAAG,CAAC,EAAE,EAAE;EACjDmB,QAAQ,EAAE;IACRH,OAAO,EAAE;MACPI,KAAK,EAAE,EAAE;MACTC,KAAK,EAAE;IACT,CAAC;IACDI,IAAI,EAAE;MACJC,KAAK,EAAE,EAAE;MACTC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,gBAAgB,EAAE,CAAC,GAAGX,iCAAiC,CAAC;EACxDe,eAAe,EAAE;IACfhB,OAAO,EAAE,OAAO;IAChBS,IAAI,EAAE;EACR;AACF,CAAC,CAAC","ignoreList":[]}
|