blend-native 0.0.1-beta.0
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 +404 -0
- package/lib/commonjs/a11y/announcement.js +42 -0
- package/lib/commonjs/a11y/announcement.js.map +1 -0
- package/lib/commonjs/a11y/useLiveRegion.js +37 -0
- package/lib/commonjs/a11y/useLiveRegion.js.map +1 -0
- package/lib/commonjs/adapters/cssStringAdapter.js +363 -0
- package/lib/commonjs/adapters/cssStringAdapter.js.map +1 -0
- package/lib/commonjs/adapters/optionalGradient.js +33 -0
- package/lib/commonjs/adapters/optionalGradient.js.map +1 -0
- package/lib/commonjs/adapters/surfaceStyle.js +159 -0
- package/lib/commonjs/adapters/surfaceStyle.js.map +1 -0
- package/lib/commonjs/components/Alert/Alert.js +130 -0
- package/lib/commonjs/components/Alert/Alert.js.map +1 -0
- package/lib/commonjs/components/Alert/AlertActions.js +74 -0
- package/lib/commonjs/components/Alert/AlertActions.js.map +1 -0
- package/lib/commonjs/components/Alert/AlertClose.js +48 -0
- package/lib/commonjs/components/Alert/AlertClose.js.map +1 -0
- package/lib/commonjs/components/Alert/AlertText.js +49 -0
- package/lib/commonjs/components/Alert/AlertText.js.map +1 -0
- package/lib/commonjs/components/Alert/alert.tokens.js +6 -0
- package/lib/commonjs/components/Alert/alert.tokens.js.map +1 -0
- package/lib/commonjs/components/Alert/alert.types.js +6 -0
- package/lib/commonjs/components/Alert/alert.types.js.map +1 -0
- package/lib/commonjs/components/Alert/alert.utils.js +80 -0
- package/lib/commonjs/components/Alert/alert.utils.js.map +1 -0
- package/lib/commonjs/components/Alert/index.js +51 -0
- package/lib/commonjs/components/Alert/index.js.map +1 -0
- package/lib/commonjs/components/Button/Button.js +125 -0
- package/lib/commonjs/components/Button/Button.js.map +1 -0
- package/lib/commonjs/components/Button/button.types.js +6 -0
- package/lib/commonjs/components/Button/button.types.js.map +1 -0
- package/lib/commonjs/components/Button/button.utils.js +129 -0
- package/lib/commonjs/components/Button/button.utils.js.map +1 -0
- package/lib/commonjs/components/Button/index.js +57 -0
- package/lib/commonjs/components/Button/index.js.map +1 -0
- package/lib/commonjs/components/Skeleton/Skeleton.js +154 -0
- package/lib/commonjs/components/Skeleton/Skeleton.js.map +1 -0
- package/lib/commonjs/components/Skeleton/index.js +20 -0
- package/lib/commonjs/components/Skeleton/index.js.map +1 -0
- package/lib/commonjs/components/Skeleton/skeleton.types.js +6 -0
- package/lib/commonjs/components/Skeleton/skeleton.types.js.map +1 -0
- package/lib/commonjs/components/Skeleton/skeleton.utils.js +45 -0
- package/lib/commonjs/components/Skeleton/skeleton.utils.js.map +1 -0
- package/lib/commonjs/components/Tag/Tag.js +161 -0
- package/lib/commonjs/components/Tag/Tag.js.map +1 -0
- package/lib/commonjs/components/Tag/index.js +33 -0
- package/lib/commonjs/components/Tag/index.js.map +1 -0
- package/lib/commonjs/components/Tag/tag.types.js +6 -0
- package/lib/commonjs/components/Tag/tag.types.js.map +1 -0
- package/lib/commonjs/components/Tag/tag.utils.js +69 -0
- package/lib/commonjs/components/Tag/tag.utils.js.map +1 -0
- package/lib/commonjs/components/TextInput/TextInput.js +138 -0
- package/lib/commonjs/components/TextInput/TextInput.js.map +1 -0
- package/lib/commonjs/components/TextInput/index.js +14 -0
- package/lib/commonjs/components/TextInput/index.js.map +1 -0
- package/lib/commonjs/components/TextInput/textInput.types.js +6 -0
- package/lib/commonjs/components/TextInput/textInput.types.js.map +1 -0
- package/lib/commonjs/components/TextInput/textInput.utils.js +40 -0
- package/lib/commonjs/components/TextInput/textInput.utils.js.map +1 -0
- package/lib/commonjs/components/shared/field/FieldFooter.js +51 -0
- package/lib/commonjs/components/shared/field/FieldFooter.js.map +1 -0
- package/lib/commonjs/components/shared/field/FieldLabels.js +67 -0
- package/lib/commonjs/components/shared/field/FieldLabels.js.map +1 -0
- package/lib/commonjs/components/shared/field/fieldState.js +37 -0
- package/lib/commonjs/components/shared/field/fieldState.js.map +1 -0
- package/lib/commonjs/components/shared/group.js +73 -0
- package/lib/commonjs/components/shared/group.js.map +1 -0
- package/lib/commonjs/index.js +256 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/motion/motion.js +128 -0
- package/lib/commonjs/motion/motion.js.map +1 -0
- package/lib/commonjs/motion/useReduceMotion.js +37 -0
- package/lib/commonjs/motion/useReduceMotion.js.map +1 -0
- package/lib/commonjs/overlay/portal.js +110 -0
- package/lib/commonjs/overlay/portal.js.map +1 -0
- package/lib/commonjs/overlay/positioning.js +122 -0
- package/lib/commonjs/overlay/positioning.js.map +1 -0
- package/lib/commonjs/overlay/safeAreaInsets.js +30 -0
- package/lib/commonjs/overlay/safeAreaInsets.js.map +1 -0
- package/lib/commonjs/overlay/sheet/BottomSheet.js +196 -0
- package/lib/commonjs/overlay/sheet/BottomSheet.js.map +1 -0
- package/lib/commonjs/overlay/sheet/sheetMath.js +60 -0
- package/lib/commonjs/overlay/sheet/sheetMath.js.map +1 -0
- package/lib/commonjs/overlay/toast/ToastOutlet.js +106 -0
- package/lib/commonjs/overlay/toast/ToastOutlet.js.map +1 -0
- package/lib/commonjs/overlay/toast/toastStore.js +76 -0
- package/lib/commonjs/overlay/toast/toastStore.js.map +1 -0
- package/lib/commonjs/overlay/useAnchoredPosition.js +85 -0
- package/lib/commonjs/overlay/useAnchoredPosition.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/primitives/Block.js +112 -0
- package/lib/commonjs/primitives/Block.js.map +1 -0
- package/lib/commonjs/primitives/Pressable.js +348 -0
- package/lib/commonjs/primitives/Pressable.js.map +1 -0
- package/lib/commonjs/primitives/PrimitiveInput.js +66 -0
- package/lib/commonjs/primitives/PrimitiveInput.js.map +1 -0
- package/lib/commonjs/primitives/Separator.js +55 -0
- package/lib/commonjs/primitives/Separator.js.map +1 -0
- package/lib/commonjs/primitives/Slot.js +78 -0
- package/lib/commonjs/primitives/Slot.js.map +1 -0
- package/lib/commonjs/primitives/Text.js +73 -0
- package/lib/commonjs/primitives/Text.js.map +1 -0
- package/lib/commonjs/primitives/pressFeedback.js +53 -0
- package/lib/commonjs/primitives/pressFeedback.js.map +1 -0
- package/lib/commonjs/primitives/textStyle.js +27 -0
- package/lib/commonjs/primitives/textStyle.js.map +1 -0
- package/lib/commonjs/primitives/tintSlot.js +45 -0
- package/lib/commonjs/primitives/tintSlot.js.map +1 -0
- package/lib/commonjs/primitives/touchTarget.js +64 -0
- package/lib/commonjs/primitives/touchTarget.js.map +1 -0
- package/lib/commonjs/theme/BlendNativeProvider.js +90 -0
- package/lib/commonjs/theme/BlendNativeProvider.js.map +1 -0
- package/lib/commonjs/theme/breakpoint.js +36 -0
- package/lib/commonjs/theme/breakpoint.js.map +1 -0
- package/lib/commonjs/theme/fonts.js +58 -0
- package/lib/commonjs/theme/fonts.js.map +1 -0
- package/lib/commonjs/theme/nativeTokenRegistry.js +44 -0
- package/lib/commonjs/theme/nativeTokenRegistry.js.map +1 -0
- package/lib/commonjs/theme/systemTheme.js +35 -0
- package/lib/commonjs/theme/systemTheme.js.map +1 -0
- package/lib/commonjs/theme/useNativeBreakpoint.js +33 -0
- package/lib/commonjs/theme/useNativeBreakpoint.js.map +1 -0
- package/lib/commonjs/theme/useNativeTokens.js +71 -0
- package/lib/commonjs/theme/useNativeTokens.js.map +1 -0
- package/lib/module/a11y/announcement.js +38 -0
- package/lib/module/a11y/announcement.js.map +1 -0
- package/lib/module/a11y/useLiveRegion.js +33 -0
- package/lib/module/a11y/useLiveRegion.js.map +1 -0
- package/lib/module/adapters/cssStringAdapter.js +352 -0
- package/lib/module/adapters/cssStringAdapter.js.map +1 -0
- package/lib/module/adapters/optionalGradient.js +29 -0
- package/lib/module/adapters/optionalGradient.js.map +1 -0
- package/lib/module/adapters/surfaceStyle.js +155 -0
- package/lib/module/adapters/surfaceStyle.js.map +1 -0
- package/lib/module/components/Alert/Alert.js +126 -0
- package/lib/module/components/Alert/Alert.js.map +1 -0
- package/lib/module/components/Alert/AlertActions.js +70 -0
- package/lib/module/components/Alert/AlertActions.js.map +1 -0
- package/lib/module/components/Alert/AlertClose.js +44 -0
- package/lib/module/components/Alert/AlertClose.js.map +1 -0
- package/lib/module/components/Alert/AlertText.js +45 -0
- package/lib/module/components/Alert/AlertText.js.map +1 -0
- package/lib/module/components/Alert/alert.tokens.js +4 -0
- package/lib/module/components/Alert/alert.tokens.js.map +1 -0
- package/lib/module/components/Alert/alert.types.js +4 -0
- package/lib/module/components/Alert/alert.types.js.map +1 -0
- package/lib/module/components/Alert/alert.utils.js +72 -0
- package/lib/module/components/Alert/alert.utils.js.map +1 -0
- package/lib/module/components/Alert/index.js +6 -0
- package/lib/module/components/Alert/index.js.map +1 -0
- package/lib/module/components/Button/Button.js +121 -0
- package/lib/module/components/Button/Button.js.map +1 -0
- package/lib/module/components/Button/button.types.js +4 -0
- package/lib/module/components/Button/button.types.js.map +1 -0
- package/lib/module/components/Button/button.utils.js +120 -0
- package/lib/module/components/Button/button.utils.js.map +1 -0
- package/lib/module/components/Button/index.js +5 -0
- package/lib/module/components/Button/index.js.map +1 -0
- package/lib/module/components/Skeleton/Skeleton.js +149 -0
- package/lib/module/components/Skeleton/Skeleton.js.map +1 -0
- package/lib/module/components/Skeleton/index.js +4 -0
- package/lib/module/components/Skeleton/index.js.map +1 -0
- package/lib/module/components/Skeleton/skeleton.types.js +4 -0
- package/lib/module/components/Skeleton/skeleton.types.js.map +1 -0
- package/lib/module/components/Skeleton/skeleton.utils.js +40 -0
- package/lib/module/components/Skeleton/skeleton.utils.js.map +1 -0
- package/lib/module/components/Tag/Tag.js +157 -0
- package/lib/module/components/Tag/Tag.js.map +1 -0
- package/lib/module/components/Tag/index.js +5 -0
- package/lib/module/components/Tag/index.js.map +1 -0
- package/lib/module/components/Tag/tag.types.js +4 -0
- package/lib/module/components/Tag/tag.types.js.map +1 -0
- package/lib/module/components/Tag/tag.utils.js +64 -0
- package/lib/module/components/Tag/tag.utils.js.map +1 -0
- package/lib/module/components/TextInput/TextInput.js +134 -0
- package/lib/module/components/TextInput/TextInput.js.map +1 -0
- package/lib/module/components/TextInput/index.js +4 -0
- package/lib/module/components/TextInput/index.js.map +1 -0
- package/lib/module/components/TextInput/textInput.types.js +4 -0
- package/lib/module/components/TextInput/textInput.types.js.map +1 -0
- package/lib/module/components/TextInput/textInput.utils.js +36 -0
- package/lib/module/components/TextInput/textInput.utils.js.map +1 -0
- package/lib/module/components/shared/field/FieldFooter.js +47 -0
- package/lib/module/components/shared/field/FieldFooter.js.map +1 -0
- package/lib/module/components/shared/field/FieldLabels.js +63 -0
- package/lib/module/components/shared/field/FieldLabels.js.map +1 -0
- package/lib/module/components/shared/field/fieldState.js +33 -0
- package/lib/module/components/shared/field/fieldState.js.map +1 -0
- package/lib/module/components/shared/group.js +68 -0
- package/lib/module/components/shared/group.js.map +1 -0
- package/lib/module/index.js +80 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/motion/motion.js +123 -0
- package/lib/module/motion/motion.js.map +1 -0
- package/lib/module/motion/useReduceMotion.js +33 -0
- package/lib/module/motion/useReduceMotion.js.map +1 -0
- package/lib/module/overlay/portal.js +104 -0
- package/lib/module/overlay/portal.js.map +1 -0
- package/lib/module/overlay/positioning.js +118 -0
- package/lib/module/overlay/positioning.js.map +1 -0
- package/lib/module/overlay/safeAreaInsets.js +27 -0
- package/lib/module/overlay/safeAreaInsets.js.map +1 -0
- package/lib/module/overlay/sheet/BottomSheet.js +190 -0
- package/lib/module/overlay/sheet/BottomSheet.js.map +1 -0
- package/lib/module/overlay/sheet/sheetMath.js +53 -0
- package/lib/module/overlay/sheet/sheetMath.js.map +1 -0
- package/lib/module/overlay/toast/ToastOutlet.js +101 -0
- package/lib/module/overlay/toast/ToastOutlet.js.map +1 -0
- package/lib/module/overlay/toast/toastStore.js +66 -0
- package/lib/module/overlay/toast/toastStore.js.map +1 -0
- package/lib/module/overlay/useAnchoredPosition.js +82 -0
- package/lib/module/overlay/useAnchoredPosition.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/primitives/Block.js +107 -0
- package/lib/module/primitives/Block.js.map +1 -0
- package/lib/module/primitives/Pressable.js +339 -0
- package/lib/module/primitives/Pressable.js.map +1 -0
- package/lib/module/primitives/PrimitiveInput.js +62 -0
- package/lib/module/primitives/PrimitiveInput.js.map +1 -0
- package/lib/module/primitives/Separator.js +50 -0
- package/lib/module/primitives/Separator.js.map +1 -0
- package/lib/module/primitives/Slot.js +69 -0
- package/lib/module/primitives/Slot.js.map +1 -0
- package/lib/module/primitives/Text.js +68 -0
- package/lib/module/primitives/Text.js.map +1 -0
- package/lib/module/primitives/pressFeedback.js +48 -0
- package/lib/module/primitives/pressFeedback.js.map +1 -0
- package/lib/module/primitives/textStyle.js +23 -0
- package/lib/module/primitives/textStyle.js.map +1 -0
- package/lib/module/primitives/tintSlot.js +42 -0
- package/lib/module/primitives/tintSlot.js.map +1 -0
- package/lib/module/primitives/touchTarget.js +58 -0
- package/lib/module/primitives/touchTarget.js.map +1 -0
- package/lib/module/theme/BlendNativeProvider.js +78 -0
- package/lib/module/theme/BlendNativeProvider.js.map +1 -0
- package/lib/module/theme/breakpoint.js +33 -0
- package/lib/module/theme/breakpoint.js.map +1 -0
- package/lib/module/theme/fonts.js +55 -0
- package/lib/module/theme/fonts.js.map +1 -0
- package/lib/module/theme/nativeTokenRegistry.js +40 -0
- package/lib/module/theme/nativeTokenRegistry.js.map +1 -0
- package/lib/module/theme/systemTheme.js +31 -0
- package/lib/module/theme/systemTheme.js.map +1 -0
- package/lib/module/theme/useNativeBreakpoint.js +24 -0
- package/lib/module/theme/useNativeBreakpoint.js.map +1 -0
- package/lib/module/theme/useNativeTokens.js +67 -0
- package/lib/module/theme/useNativeTokens.js.map +1 -0
- package/lib/typescript/commonjs/a11y/announcement.d.ts +26 -0
- package/lib/typescript/commonjs/a11y/announcement.d.ts.map +1 -0
- package/lib/typescript/commonjs/a11y/useLiveRegion.d.ts +17 -0
- package/lib/typescript/commonjs/a11y/useLiveRegion.d.ts.map +1 -0
- package/lib/typescript/commonjs/adapters/cssStringAdapter.d.ts +119 -0
- package/lib/typescript/commonjs/adapters/cssStringAdapter.d.ts.map +1 -0
- package/lib/typescript/commonjs/adapters/optionalGradient.d.ts +32 -0
- package/lib/typescript/commonjs/adapters/optionalGradient.d.ts.map +1 -0
- package/lib/typescript/commonjs/adapters/surfaceStyle.d.ts +75 -0
- package/lib/typescript/commonjs/adapters/surfaceStyle.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Alert/Alert.d.ts +14 -0
- package/lib/typescript/commonjs/components/Alert/Alert.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Alert/AlertActions.d.ts +13 -0
- package/lib/typescript/commonjs/components/Alert/AlertActions.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Alert/AlertClose.d.ts +22 -0
- package/lib/typescript/commonjs/components/Alert/AlertClose.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Alert/AlertText.d.ts +19 -0
- package/lib/typescript/commonjs/components/Alert/AlertText.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Alert/alert.tokens.d.ts +17 -0
- package/lib/typescript/commonjs/components/Alert/alert.tokens.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Alert/alert.types.d.ts +70 -0
- package/lib/typescript/commonjs/components/Alert/alert.types.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Alert/alert.utils.d.ts +58 -0
- package/lib/typescript/commonjs/components/Alert/alert.utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Alert/index.d.ts +7 -0
- package/lib/typescript/commonjs/components/Alert/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Button/Button.d.ts +22 -0
- package/lib/typescript/commonjs/components/Button/Button.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Button/button.types.d.ts +37 -0
- package/lib/typescript/commonjs/components/Button/button.types.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Button/button.utils.d.ts +98 -0
- package/lib/typescript/commonjs/components/Button/button.utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Button/index.d.ts +5 -0
- package/lib/typescript/commonjs/components/Button/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Skeleton/Skeleton.d.ts +7 -0
- package/lib/typescript/commonjs/components/Skeleton/Skeleton.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Skeleton/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Skeleton/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Skeleton/skeleton.types.d.ts +25 -0
- package/lib/typescript/commonjs/components/Skeleton/skeleton.types.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Skeleton/skeleton.utils.d.ts +21 -0
- package/lib/typescript/commonjs/components/Skeleton/skeleton.utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Tag/Tag.d.ts +21 -0
- package/lib/typescript/commonjs/components/Tag/Tag.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Tag/index.d.ts +4 -0
- package/lib/typescript/commonjs/components/Tag/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Tag/tag.types.d.ts +56 -0
- package/lib/typescript/commonjs/components/Tag/tag.types.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/Tag/tag.utils.d.ts +41 -0
- package/lib/typescript/commonjs/components/Tag/tag.utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/TextInput/TextInput.d.ts +33 -0
- package/lib/typescript/commonjs/components/TextInput/TextInput.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/TextInput/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/TextInput/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/TextInput/textInput.types.d.ts +45 -0
- package/lib/typescript/commonjs/components/TextInput/textInput.types.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/TextInput/textInput.utils.d.ts +35 -0
- package/lib/typescript/commonjs/components/TextInput/textInput.utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/shared/field/FieldFooter.d.ts +22 -0
- package/lib/typescript/commonjs/components/shared/field/FieldFooter.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/shared/field/FieldLabels.d.ts +27 -0
- package/lib/typescript/commonjs/components/shared/field/FieldLabels.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/shared/field/fieldState.d.ts +23 -0
- package/lib/typescript/commonjs/components/shared/field/fieldState.d.ts.map +1 -0
- package/lib/typescript/commonjs/components/shared/group.d.ts +50 -0
- package/lib/typescript/commonjs/components/shared/group.d.ts.map +1 -0
- package/lib/typescript/commonjs/index.d.ts +74 -0
- package/lib/typescript/commonjs/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/motion/motion.d.ts +121 -0
- package/lib/typescript/commonjs/motion/motion.d.ts.map +1 -0
- package/lib/typescript/commonjs/motion/useReduceMotion.d.ts +14 -0
- package/lib/typescript/commonjs/motion/useReduceMotion.d.ts.map +1 -0
- package/lib/typescript/commonjs/overlay/portal.d.ts +20 -0
- package/lib/typescript/commonjs/overlay/portal.d.ts.map +1 -0
- package/lib/typescript/commonjs/overlay/positioning.d.ts +65 -0
- package/lib/typescript/commonjs/overlay/positioning.d.ts.map +1 -0
- package/lib/typescript/commonjs/overlay/safeAreaInsets.d.ts +19 -0
- package/lib/typescript/commonjs/overlay/safeAreaInsets.d.ts.map +1 -0
- package/lib/typescript/commonjs/overlay/sheet/BottomSheet.d.ts +56 -0
- package/lib/typescript/commonjs/overlay/sheet/BottomSheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/overlay/sheet/sheetMath.d.ts +32 -0
- package/lib/typescript/commonjs/overlay/sheet/sheetMath.d.ts.map +1 -0
- package/lib/typescript/commonjs/overlay/toast/ToastOutlet.d.ts +17 -0
- package/lib/typescript/commonjs/overlay/toast/ToastOutlet.d.ts.map +1 -0
- package/lib/typescript/commonjs/overlay/toast/toastStore.d.ts +45 -0
- package/lib/typescript/commonjs/overlay/toast/toastStore.d.ts.map +1 -0
- package/lib/typescript/commonjs/overlay/useAnchoredPosition.d.ts +40 -0
- package/lib/typescript/commonjs/overlay/useAnchoredPosition.d.ts.map +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/primitives/Block.d.ts +37 -0
- package/lib/typescript/commonjs/primitives/Block.d.ts.map +1 -0
- package/lib/typescript/commonjs/primitives/Pressable.d.ts +135 -0
- package/lib/typescript/commonjs/primitives/Pressable.d.ts.map +1 -0
- package/lib/typescript/commonjs/primitives/PrimitiveInput.d.ts +42 -0
- package/lib/typescript/commonjs/primitives/PrimitiveInput.d.ts.map +1 -0
- package/lib/typescript/commonjs/primitives/Separator.d.ts +28 -0
- package/lib/typescript/commonjs/primitives/Separator.d.ts.map +1 -0
- package/lib/typescript/commonjs/primitives/Slot.d.ts +48 -0
- package/lib/typescript/commonjs/primitives/Slot.d.ts.map +1 -0
- package/lib/typescript/commonjs/primitives/Text.d.ts +50 -0
- package/lib/typescript/commonjs/primitives/Text.d.ts.map +1 -0
- package/lib/typescript/commonjs/primitives/pressFeedback.d.ts +39 -0
- package/lib/typescript/commonjs/primitives/pressFeedback.d.ts.map +1 -0
- package/lib/typescript/commonjs/primitives/textStyle.d.ts +13 -0
- package/lib/typescript/commonjs/primitives/textStyle.d.ts.map +1 -0
- package/lib/typescript/commonjs/primitives/tintSlot.d.ts +10 -0
- package/lib/typescript/commonjs/primitives/tintSlot.d.ts.map +1 -0
- package/lib/typescript/commonjs/primitives/touchTarget.d.ts +43 -0
- package/lib/typescript/commonjs/primitives/touchTarget.d.ts.map +1 -0
- package/lib/typescript/commonjs/theme/BlendNativeProvider.d.ts +69 -0
- package/lib/typescript/commonjs/theme/BlendNativeProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/theme/breakpoint.d.ts +27 -0
- package/lib/typescript/commonjs/theme/breakpoint.d.ts.map +1 -0
- package/lib/typescript/commonjs/theme/fonts.d.ts +34 -0
- package/lib/typescript/commonjs/theme/fonts.d.ts.map +1 -0
- package/lib/typescript/commonjs/theme/nativeTokenRegistry.d.ts +34 -0
- package/lib/typescript/commonjs/theme/nativeTokenRegistry.d.ts.map +1 -0
- package/lib/typescript/commonjs/theme/systemTheme.d.ts +25 -0
- package/lib/typescript/commonjs/theme/systemTheme.d.ts.map +1 -0
- package/lib/typescript/commonjs/theme/useNativeBreakpoint.d.ts +17 -0
- package/lib/typescript/commonjs/theme/useNativeBreakpoint.d.ts.map +1 -0
- package/lib/typescript/commonjs/theme/useNativeTokens.d.ts +4 -0
- package/lib/typescript/commonjs/theme/useNativeTokens.d.ts.map +1 -0
- package/lib/typescript/module/a11y/announcement.d.ts +26 -0
- package/lib/typescript/module/a11y/announcement.d.ts.map +1 -0
- package/lib/typescript/module/a11y/useLiveRegion.d.ts +17 -0
- package/lib/typescript/module/a11y/useLiveRegion.d.ts.map +1 -0
- package/lib/typescript/module/adapters/cssStringAdapter.d.ts +119 -0
- package/lib/typescript/module/adapters/cssStringAdapter.d.ts.map +1 -0
- package/lib/typescript/module/adapters/optionalGradient.d.ts +32 -0
- package/lib/typescript/module/adapters/optionalGradient.d.ts.map +1 -0
- package/lib/typescript/module/adapters/surfaceStyle.d.ts +75 -0
- package/lib/typescript/module/adapters/surfaceStyle.d.ts.map +1 -0
- package/lib/typescript/module/components/Alert/Alert.d.ts +14 -0
- package/lib/typescript/module/components/Alert/Alert.d.ts.map +1 -0
- package/lib/typescript/module/components/Alert/AlertActions.d.ts +13 -0
- package/lib/typescript/module/components/Alert/AlertActions.d.ts.map +1 -0
- package/lib/typescript/module/components/Alert/AlertClose.d.ts +22 -0
- package/lib/typescript/module/components/Alert/AlertClose.d.ts.map +1 -0
- package/lib/typescript/module/components/Alert/AlertText.d.ts +19 -0
- package/lib/typescript/module/components/Alert/AlertText.d.ts.map +1 -0
- package/lib/typescript/module/components/Alert/alert.tokens.d.ts +17 -0
- package/lib/typescript/module/components/Alert/alert.tokens.d.ts.map +1 -0
- package/lib/typescript/module/components/Alert/alert.types.d.ts +70 -0
- package/lib/typescript/module/components/Alert/alert.types.d.ts.map +1 -0
- package/lib/typescript/module/components/Alert/alert.utils.d.ts +58 -0
- package/lib/typescript/module/components/Alert/alert.utils.d.ts.map +1 -0
- package/lib/typescript/module/components/Alert/index.d.ts +7 -0
- package/lib/typescript/module/components/Alert/index.d.ts.map +1 -0
- package/lib/typescript/module/components/Button/Button.d.ts +22 -0
- package/lib/typescript/module/components/Button/Button.d.ts.map +1 -0
- package/lib/typescript/module/components/Button/button.types.d.ts +37 -0
- package/lib/typescript/module/components/Button/button.types.d.ts.map +1 -0
- package/lib/typescript/module/components/Button/button.utils.d.ts +98 -0
- package/lib/typescript/module/components/Button/button.utils.d.ts.map +1 -0
- package/lib/typescript/module/components/Button/index.d.ts +5 -0
- package/lib/typescript/module/components/Button/index.d.ts.map +1 -0
- package/lib/typescript/module/components/Skeleton/Skeleton.d.ts +7 -0
- package/lib/typescript/module/components/Skeleton/Skeleton.d.ts.map +1 -0
- package/lib/typescript/module/components/Skeleton/index.d.ts +3 -0
- package/lib/typescript/module/components/Skeleton/index.d.ts.map +1 -0
- package/lib/typescript/module/components/Skeleton/skeleton.types.d.ts +25 -0
- package/lib/typescript/module/components/Skeleton/skeleton.types.d.ts.map +1 -0
- package/lib/typescript/module/components/Skeleton/skeleton.utils.d.ts +21 -0
- package/lib/typescript/module/components/Skeleton/skeleton.utils.d.ts.map +1 -0
- package/lib/typescript/module/components/Tag/Tag.d.ts +21 -0
- package/lib/typescript/module/components/Tag/Tag.d.ts.map +1 -0
- package/lib/typescript/module/components/Tag/index.d.ts +4 -0
- package/lib/typescript/module/components/Tag/index.d.ts.map +1 -0
- package/lib/typescript/module/components/Tag/tag.types.d.ts +56 -0
- package/lib/typescript/module/components/Tag/tag.types.d.ts.map +1 -0
- package/lib/typescript/module/components/Tag/tag.utils.d.ts +41 -0
- package/lib/typescript/module/components/Tag/tag.utils.d.ts.map +1 -0
- package/lib/typescript/module/components/TextInput/TextInput.d.ts +33 -0
- package/lib/typescript/module/components/TextInput/TextInput.d.ts.map +1 -0
- package/lib/typescript/module/components/TextInput/index.d.ts +3 -0
- package/lib/typescript/module/components/TextInput/index.d.ts.map +1 -0
- package/lib/typescript/module/components/TextInput/textInput.types.d.ts +45 -0
- package/lib/typescript/module/components/TextInput/textInput.types.d.ts.map +1 -0
- package/lib/typescript/module/components/TextInput/textInput.utils.d.ts +35 -0
- package/lib/typescript/module/components/TextInput/textInput.utils.d.ts.map +1 -0
- package/lib/typescript/module/components/shared/field/FieldFooter.d.ts +22 -0
- package/lib/typescript/module/components/shared/field/FieldFooter.d.ts.map +1 -0
- package/lib/typescript/module/components/shared/field/FieldLabels.d.ts +27 -0
- package/lib/typescript/module/components/shared/field/FieldLabels.d.ts.map +1 -0
- package/lib/typescript/module/components/shared/field/fieldState.d.ts +23 -0
- package/lib/typescript/module/components/shared/field/fieldState.d.ts.map +1 -0
- package/lib/typescript/module/components/shared/group.d.ts +50 -0
- package/lib/typescript/module/components/shared/group.d.ts.map +1 -0
- package/lib/typescript/module/index.d.ts +74 -0
- package/lib/typescript/module/index.d.ts.map +1 -0
- package/lib/typescript/module/motion/motion.d.ts +121 -0
- package/lib/typescript/module/motion/motion.d.ts.map +1 -0
- package/lib/typescript/module/motion/useReduceMotion.d.ts +14 -0
- package/lib/typescript/module/motion/useReduceMotion.d.ts.map +1 -0
- package/lib/typescript/module/overlay/portal.d.ts +20 -0
- package/lib/typescript/module/overlay/portal.d.ts.map +1 -0
- package/lib/typescript/module/overlay/positioning.d.ts +65 -0
- package/lib/typescript/module/overlay/positioning.d.ts.map +1 -0
- package/lib/typescript/module/overlay/safeAreaInsets.d.ts +19 -0
- package/lib/typescript/module/overlay/safeAreaInsets.d.ts.map +1 -0
- package/lib/typescript/module/overlay/sheet/BottomSheet.d.ts +56 -0
- package/lib/typescript/module/overlay/sheet/BottomSheet.d.ts.map +1 -0
- package/lib/typescript/module/overlay/sheet/sheetMath.d.ts +32 -0
- package/lib/typescript/module/overlay/sheet/sheetMath.d.ts.map +1 -0
- package/lib/typescript/module/overlay/toast/ToastOutlet.d.ts +17 -0
- package/lib/typescript/module/overlay/toast/ToastOutlet.d.ts.map +1 -0
- package/lib/typescript/module/overlay/toast/toastStore.d.ts +45 -0
- package/lib/typescript/module/overlay/toast/toastStore.d.ts.map +1 -0
- package/lib/typescript/module/overlay/useAnchoredPosition.d.ts +40 -0
- package/lib/typescript/module/overlay/useAnchoredPosition.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/primitives/Block.d.ts +37 -0
- package/lib/typescript/module/primitives/Block.d.ts.map +1 -0
- package/lib/typescript/module/primitives/Pressable.d.ts +135 -0
- package/lib/typescript/module/primitives/Pressable.d.ts.map +1 -0
- package/lib/typescript/module/primitives/PrimitiveInput.d.ts +42 -0
- package/lib/typescript/module/primitives/PrimitiveInput.d.ts.map +1 -0
- package/lib/typescript/module/primitives/Separator.d.ts +28 -0
- package/lib/typescript/module/primitives/Separator.d.ts.map +1 -0
- package/lib/typescript/module/primitives/Slot.d.ts +48 -0
- package/lib/typescript/module/primitives/Slot.d.ts.map +1 -0
- package/lib/typescript/module/primitives/Text.d.ts +50 -0
- package/lib/typescript/module/primitives/Text.d.ts.map +1 -0
- package/lib/typescript/module/primitives/pressFeedback.d.ts +39 -0
- package/lib/typescript/module/primitives/pressFeedback.d.ts.map +1 -0
- package/lib/typescript/module/primitives/textStyle.d.ts +13 -0
- package/lib/typescript/module/primitives/textStyle.d.ts.map +1 -0
- package/lib/typescript/module/primitives/tintSlot.d.ts +10 -0
- package/lib/typescript/module/primitives/tintSlot.d.ts.map +1 -0
- package/lib/typescript/module/primitives/touchTarget.d.ts +43 -0
- package/lib/typescript/module/primitives/touchTarget.d.ts.map +1 -0
- package/lib/typescript/module/theme/BlendNativeProvider.d.ts +69 -0
- package/lib/typescript/module/theme/BlendNativeProvider.d.ts.map +1 -0
- package/lib/typescript/module/theme/breakpoint.d.ts +27 -0
- package/lib/typescript/module/theme/breakpoint.d.ts.map +1 -0
- package/lib/typescript/module/theme/fonts.d.ts +34 -0
- package/lib/typescript/module/theme/fonts.d.ts.map +1 -0
- package/lib/typescript/module/theme/nativeTokenRegistry.d.ts +34 -0
- package/lib/typescript/module/theme/nativeTokenRegistry.d.ts.map +1 -0
- package/lib/typescript/module/theme/systemTheme.d.ts +25 -0
- package/lib/typescript/module/theme/systemTheme.d.ts.map +1 -0
- package/lib/typescript/module/theme/useNativeBreakpoint.d.ts +17 -0
- package/lib/typescript/module/theme/useNativeBreakpoint.d.ts.map +1 -0
- package/lib/typescript/module/theme/useNativeTokens.d.ts +4 -0
- package/lib/typescript/module/theme/useNativeTokens.d.ts.map +1 -0
- package/package.json +137 -0
- package/src/a11y/announcement.ts +41 -0
- package/src/a11y/useLiveRegion.ts +36 -0
- package/src/adapters/cssStringAdapter.ts +403 -0
- package/src/adapters/optionalGradient.ts +39 -0
- package/src/adapters/surfaceStyle.ts +209 -0
- package/src/components/Alert/Alert.tsx +167 -0
- package/src/components/Alert/AlertActions.tsx +98 -0
- package/src/components/Alert/AlertClose.tsx +53 -0
- package/src/components/Alert/AlertText.tsx +58 -0
- package/src/components/Alert/alert.tokens.ts +24 -0
- package/src/components/Alert/alert.types.ts +81 -0
- package/src/components/Alert/alert.utils.ts +94 -0
- package/src/components/Alert/index.ts +21 -0
- package/src/components/Button/Button.tsx +180 -0
- package/src/components/Button/button.types.ts +44 -0
- package/src/components/Button/button.utils.ts +213 -0
- package/src/components/Button/index.ts +12 -0
- package/src/components/Skeleton/Skeleton.tsx +196 -0
- package/src/components/Skeleton/index.ts +2 -0
- package/src/components/Skeleton/skeleton.types.ts +28 -0
- package/src/components/Skeleton/skeleton.utils.ts +56 -0
- package/src/components/Tag/Tag.tsx +204 -0
- package/src/components/Tag/index.ts +7 -0
- package/src/components/Tag/tag.types.ts +63 -0
- package/src/components/Tag/tag.utils.ts +82 -0
- package/src/components/TextInput/TextInput.tsx +165 -0
- package/src/components/TextInput/index.ts +2 -0
- package/src/components/TextInput/textInput.types.ts +54 -0
- package/src/components/TextInput/textInput.utils.ts +68 -0
- package/src/components/shared/field/FieldFooter.tsx +66 -0
- package/src/components/shared/field/FieldLabels.tsx +86 -0
- package/src/components/shared/field/fieldState.ts +39 -0
- package/src/components/shared/group.ts +72 -0
- package/src/index.ts +144 -0
- package/src/motion/motion.ts +115 -0
- package/src/motion/useReduceMotion.ts +36 -0
- package/src/overlay/portal.tsx +122 -0
- package/src/overlay/positioning.ts +196 -0
- package/src/overlay/safeAreaInsets.ts +36 -0
- package/src/overlay/sheet/BottomSheet.tsx +276 -0
- package/src/overlay/sheet/sheetMath.ts +58 -0
- package/src/overlay/toast/ToastOutlet.tsx +127 -0
- package/src/overlay/toast/toastStore.ts +96 -0
- package/src/overlay/useAnchoredPosition.ts +92 -0
- package/src/primitives/Block.tsx +129 -0
- package/src/primitives/Pressable.tsx +528 -0
- package/src/primitives/PrimitiveInput.tsx +87 -0
- package/src/primitives/Separator.tsx +65 -0
- package/src/primitives/Slot.tsx +94 -0
- package/src/primitives/Text.tsx +98 -0
- package/src/primitives/pressFeedback.ts +78 -0
- package/src/primitives/textStyle.ts +24 -0
- package/src/primitives/tintSlot.ts +44 -0
- package/src/primitives/touchTarget.ts +72 -0
- package/src/theme/BlendNativeProvider.tsx +147 -0
- package/src/theme/breakpoint.ts +38 -0
- package/src/theme/fonts.ts +63 -0
- package/src/theme/nativeTokenRegistry.ts +57 -0
- package/src/theme/systemTheme.ts +34 -0
- package/src/theme/useNativeBreakpoint.ts +27 -0
- package/src/theme/useNativeTokens.ts +99 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { forwardRef, useMemo } from 'react';
|
|
4
|
+
import { ButtonV2Size, ButtonV2State, ButtonV2SubType, ButtonV2Type } from '@juspay/blend-design-system/node';
|
|
5
|
+
import { useNativeTokens } from "../../theme/useNativeTokens.js";
|
|
6
|
+
import { Pressable } from "../../primitives/Pressable.js";
|
|
7
|
+
import { Slot } from "../../primitives/Slot.js";
|
|
8
|
+
import { Text } from "../../primitives/Text.js";
|
|
9
|
+
import { getButtonNativeStyles, getIconMaxHeight, getLoaderSize } from "./button.utils.js";
|
|
10
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
11
|
+
/**
|
|
12
|
+
* Button — React Native implementation of web's `ButtonV2`.
|
|
13
|
+
*
|
|
14
|
+
* Imports only from `@juspay/blend-design-system/node` (the React-free token
|
|
15
|
+
* entry), the local adapters, and the local primitives — never from web's
|
|
16
|
+
* `context/`, `hooks/`, or `Primitives/` directories.
|
|
17
|
+
*
|
|
18
|
+
* Tokens resolve through `useNativeTokens('BUTTONV2')`, which reads theme and
|
|
19
|
+
* per-slot overrides from `BlendNativeProvider`. This replaces the earlier
|
|
20
|
+
* per-component `theme` prop, which offered no app-wide dark mode, no nested
|
|
21
|
+
* theme scopes, and no `componentTokens` overrides.
|
|
22
|
+
*/
|
|
23
|
+
const Button = /*#__PURE__*/forwardRef(function Button({
|
|
24
|
+
buttonType = ButtonV2Type.PRIMARY,
|
|
25
|
+
size = ButtonV2Size.SMALL,
|
|
26
|
+
subType = ButtonV2SubType.DEFAULT,
|
|
27
|
+
text,
|
|
28
|
+
leftSlot,
|
|
29
|
+
rightSlot,
|
|
30
|
+
loading = false,
|
|
31
|
+
disabled = false,
|
|
32
|
+
state = ButtonV2State.DEFAULT,
|
|
33
|
+
buttonGroupPosition,
|
|
34
|
+
width,
|
|
35
|
+
minWidth,
|
|
36
|
+
maxWidth,
|
|
37
|
+
justifyContent = 'center',
|
|
38
|
+
onPress,
|
|
39
|
+
testID,
|
|
40
|
+
accessibilityLabel,
|
|
41
|
+
style,
|
|
42
|
+
...rest
|
|
43
|
+
}, ref) {
|
|
44
|
+
const tokens = useNativeTokens('BUTTONV2');
|
|
45
|
+
const styles = useMemo(() => getButtonNativeStyles(disabled, buttonType, subType, size, state, tokens, buttonGroupPosition), [disabled, buttonType, subType, size, state, tokens, buttonGroupPosition]);
|
|
46
|
+
const iconMaxHeights = getIconMaxHeight(subType, leftSlot?.maxHeight, rightSlot?.maxHeight, tokens.slotMaxHeight[size]);
|
|
47
|
+
|
|
48
|
+
// Icon colour tracks the resolved text colour for the current state, and
|
|
49
|
+
// is handed to the icon element explicitly by `Slot` — RN has no
|
|
50
|
+
// `currentColor` inheritance the way web's `Block` relies on.
|
|
51
|
+
const iconColor = styles.textColor;
|
|
52
|
+
const loaderColor = String(tokens.text.color[buttonType][subType].default ?? '#2563EB');
|
|
53
|
+
const content = /*#__PURE__*/_jsxs(_Fragment, {
|
|
54
|
+
children: [leftSlot?.slot ? /*#__PURE__*/_jsx(Slot, {
|
|
55
|
+
color: iconColor,
|
|
56
|
+
maxHeight: iconMaxHeights.left,
|
|
57
|
+
hidden: Boolean(text),
|
|
58
|
+
testID: testID ? `${testID}-left-slot` : undefined,
|
|
59
|
+
children: leftSlot.slot
|
|
60
|
+
}) : null, text ? /*#__PURE__*/_jsx(Text, {
|
|
61
|
+
fontSize: tokens.text.fontSize[size],
|
|
62
|
+
fontWeight: tokens.text.fontWeight[size],
|
|
63
|
+
lineHeight: tokens.text.lineHeight?.[size],
|
|
64
|
+
color: styles.textColor,
|
|
65
|
+
textAlign: "center",
|
|
66
|
+
children: text
|
|
67
|
+
}) : null, rightSlot?.slot ? /*#__PURE__*/_jsx(Slot, {
|
|
68
|
+
color: iconColor,
|
|
69
|
+
maxHeight: iconMaxHeights.right,
|
|
70
|
+
hidden: Boolean(text),
|
|
71
|
+
testID: testID ? `${testID}-right-slot` : undefined,
|
|
72
|
+
children: rightSlot.slot
|
|
73
|
+
}) : null]
|
|
74
|
+
});
|
|
75
|
+
return /*#__PURE__*/_jsx(Pressable, {
|
|
76
|
+
ref: ref,
|
|
77
|
+
background: styles.background,
|
|
78
|
+
activeBackground: styles.activeBackground,
|
|
79
|
+
disabledBackground: styles.disabledBackground,
|
|
80
|
+
border: styles.border,
|
|
81
|
+
activeBorder: styles.activeBorder,
|
|
82
|
+
disabledBorder: styles.disabledBorder,
|
|
83
|
+
borderRadius: styles.borderRadius,
|
|
84
|
+
boxShadow: styles.boxShadow,
|
|
85
|
+
activeBoxShadow: styles.activeBoxShadow,
|
|
86
|
+
paddingTop: styles.padding.top,
|
|
87
|
+
paddingRight: styles.padding.right,
|
|
88
|
+
paddingBottom: styles.padding.bottom,
|
|
89
|
+
paddingLeft: styles.padding.left,
|
|
90
|
+
flexDirection: "row",
|
|
91
|
+
alignItems: "center",
|
|
92
|
+
justifyContent: justifyContent,
|
|
93
|
+
gap: styles.gap
|
|
94
|
+
// Web defaults to `width: fit-content`; `auto` is RN's equivalent.
|
|
95
|
+
,
|
|
96
|
+
width: width ?? 'auto',
|
|
97
|
+
minWidth: minWidth,
|
|
98
|
+
maxWidth: maxWidth,
|
|
99
|
+
height: styles.height,
|
|
100
|
+
disabled: disabled,
|
|
101
|
+
loading: loading,
|
|
102
|
+
loaderColor: loaderColor,
|
|
103
|
+
loaderSize: getLoaderSize(size),
|
|
104
|
+
onPress: onPress,
|
|
105
|
+
testID: testID,
|
|
106
|
+
accessibilityLabel: accessibilityLabel ?? text,
|
|
107
|
+
accessibilityRole: "button"
|
|
108
|
+
// Grouped members drop their shared edges; spread after the
|
|
109
|
+
// resolved surface so `borderWidth` still covers the other sides.
|
|
110
|
+
,
|
|
111
|
+
style: {
|
|
112
|
+
...styles.groupBorderWidths,
|
|
113
|
+
...style
|
|
114
|
+
},
|
|
115
|
+
...rest,
|
|
116
|
+
children: content
|
|
117
|
+
});
|
|
118
|
+
});
|
|
119
|
+
Button.displayName = 'Button';
|
|
120
|
+
export default Button;
|
|
121
|
+
//# sourceMappingURL=Button.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["forwardRef","useMemo","ButtonV2Size","ButtonV2State","ButtonV2SubType","ButtonV2Type","useNativeTokens","Pressable","Slot","Text","getButtonNativeStyles","getIconMaxHeight","getLoaderSize","jsx","_jsx","Fragment","_Fragment","jsxs","_jsxs","Button","buttonType","PRIMARY","size","SMALL","subType","DEFAULT","text","leftSlot","rightSlot","loading","disabled","state","buttonGroupPosition","width","minWidth","maxWidth","justifyContent","onPress","testID","accessibilityLabel","style","rest","ref","tokens","styles","iconMaxHeights","maxHeight","slotMaxHeight","iconColor","textColor","loaderColor","String","color","default","content","children","slot","left","hidden","Boolean","undefined","fontSize","fontWeight","lineHeight","textAlign","right","background","activeBackground","disabledBackground","border","activeBorder","disabledBorder","borderRadius","boxShadow","activeBoxShadow","paddingTop","padding","top","paddingRight","paddingBottom","bottom","paddingLeft","flexDirection","alignItems","gap","height","loaderSize","accessibilityRole","groupBorderWidths","displayName"],"sourceRoot":"../../../../src","sources":["components/Button/Button.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/Button/button.types.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { ButtonV2Size, ButtonV2State, ButtonV2SubType, PaddingDirection } from '@juspay/blend-design-system/node';
|
|
4
|
+
import { getGroupedBorderRadius, getGroupedBorderWidths } from "../shared/group.js";
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Native ButtonV2 style resolver.
|
|
8
|
+
*
|
|
9
|
+
* Reimplements `packages/blend/lib/components/ButtonV2/utils.ts` for RN. Web
|
|
10
|
+
* builds a `ButtonStylesReturn` carrying `_active` / `_hover` /
|
|
11
|
+
* `_focusVisible` / `_disabled` pseudo-state maps; RN has no pseudo-selectors,
|
|
12
|
+
* so this returns the token strings per state and lets `Pressable` compose
|
|
13
|
+
* them against `{ pressed }`.
|
|
14
|
+
*
|
|
15
|
+
* `_hover` and `_focusVisible` have no native counterpart and are dropped.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Resolve padding tokens per direction.
|
|
20
|
+
* Mirrors `getButtonPadding` in web `utils.ts`.
|
|
21
|
+
*/
|
|
22
|
+
export function getButtonPadding(size, buttonType, subType, tokens) {
|
|
23
|
+
return {
|
|
24
|
+
top: String(tokens.padding[PaddingDirection.TOP][size][buttonType][subType]),
|
|
25
|
+
right: String(tokens.padding[PaddingDirection.RIGHT][size][buttonType][subType]),
|
|
26
|
+
bottom: String(tokens.padding[PaddingDirection.BOTTOM][size][buttonType][subType]),
|
|
27
|
+
left: String(tokens.padding[PaddingDirection.LEFT][size][buttonType][subType])
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Resolve the border radius, collapsing joined edges inside a button group.
|
|
33
|
+
*
|
|
34
|
+
* Mirrors `getButtonV2BorderRadius` in web `utils.ts`. The collapsing itself
|
|
35
|
+
* lives in `shared/group` because Tag needs the same algorithm.
|
|
36
|
+
*/
|
|
37
|
+
export function getButtonV2BorderRadius(size, buttonType, subType, buttonGroupPosition, tokens) {
|
|
38
|
+
return getGroupedBorderRadius(tokens.borderRadius[size][buttonType][subType], buttonGroupPosition);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Resolve the max height for each icon slot.
|
|
43
|
+
*
|
|
44
|
+
* Mirrors `getIconMaxHeight` in web `utils.ts`, including both behaviours
|
|
45
|
+
* that were previously missing on native: the inline subType stretches slots
|
|
46
|
+
* to `100%`, and a per-slot `maxHeight` overrides the size-derived default.
|
|
47
|
+
*/
|
|
48
|
+
export function getIconMaxHeight(subType, leftSlotMaxHeight, rightSlotMaxHeight, defaultMaxHeight) {
|
|
49
|
+
if (subType === ButtonV2SubType.INLINE) {
|
|
50
|
+
return {
|
|
51
|
+
left: '100%',
|
|
52
|
+
right: '100%'
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
left: leftSlotMaxHeight ?? defaultMaxHeight,
|
|
57
|
+
right: rightSlotMaxHeight ?? defaultMaxHeight
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Height override for the inline subType.
|
|
63
|
+
* Mirrors `getButtonHeight` in web `utils.ts` (`fit-content` → RN `auto`).
|
|
64
|
+
*/
|
|
65
|
+
export function getButtonHeight(subType) {
|
|
66
|
+
return subType === ButtonV2SubType.INLINE ? 'auto' : undefined;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Spinner size for the current button size.
|
|
71
|
+
*
|
|
72
|
+
* Web maps these to explicit pixel sizes (16/18/20 for sm/md/lg) so the
|
|
73
|
+
* loader never overflows a small button; RN's `ActivityIndicator` accepts a
|
|
74
|
+
* number on both platforms.
|
|
75
|
+
*/
|
|
76
|
+
export function getLoaderSize(size) {
|
|
77
|
+
const loaderSizeMap = {
|
|
78
|
+
[ButtonV2Size.SMALL]: 16,
|
|
79
|
+
[ButtonV2Size.MEDIUM]: 18,
|
|
80
|
+
[ButtonV2Size.LARGE]: 20
|
|
81
|
+
};
|
|
82
|
+
return loaderSizeMap[size] ?? 16;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Resolve the text/icon colour for the current state.
|
|
87
|
+
* Mirrors `getTextColor` in web `utils.ts`.
|
|
88
|
+
*/
|
|
89
|
+
export function getTextColor(disabled, state, buttonType, subType, tokens) {
|
|
90
|
+
const color = tokens.text.color[buttonType][subType][disabled ? ButtonV2State.DISABLED : state];
|
|
91
|
+
return color ? String(color) : 'transparent';
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Compute the full native style set for a button.
|
|
96
|
+
*
|
|
97
|
+
* The native equivalent of `getButtonStyles` in web `utils.ts`.
|
|
98
|
+
*/
|
|
99
|
+
export function getButtonNativeStyles(isDisabled, buttonType, subType, size, state, tokens, buttonGroupPosition) {
|
|
100
|
+
const bg = tokens.backgroundColor[buttonType][subType];
|
|
101
|
+
const borders = tokens.border[buttonType][subType];
|
|
102
|
+
const shadows = tokens.shadow[buttonType][subType];
|
|
103
|
+
return {
|
|
104
|
+
background: String(bg.default),
|
|
105
|
+
activeBackground: String(bg.active),
|
|
106
|
+
disabledBackground: String(bg.disabled),
|
|
107
|
+
border: String(borders.default),
|
|
108
|
+
activeBorder: String(borders?.active ?? ''),
|
|
109
|
+
disabledBorder: String(borders?.disabled ?? ''),
|
|
110
|
+
boxShadow: String(shadows.default),
|
|
111
|
+
activeBoxShadow: String(shadows?.active ?? 'none'),
|
|
112
|
+
textColor: getTextColor(isDisabled, state, buttonType, subType, tokens),
|
|
113
|
+
padding: getButtonPadding(size, buttonType, subType, tokens),
|
|
114
|
+
gap: String(tokens.gap),
|
|
115
|
+
groupBorderWidths: getGroupedBorderWidths(buttonGroupPosition),
|
|
116
|
+
borderRadius: getButtonV2BorderRadius(size, buttonType, subType, buttonGroupPosition, tokens),
|
|
117
|
+
height: getButtonHeight(subType)
|
|
118
|
+
};
|
|
119
|
+
}
|
|
120
|
+
//# sourceMappingURL=button.utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["ButtonV2Size","ButtonV2State","ButtonV2SubType","PaddingDirection","getGroupedBorderRadius","getGroupedBorderWidths","getButtonPadding","size","buttonType","subType","tokens","top","String","padding","TOP","right","RIGHT","bottom","BOTTOM","left","LEFT","getButtonV2BorderRadius","buttonGroupPosition","borderRadius","getIconMaxHeight","leftSlotMaxHeight","rightSlotMaxHeight","defaultMaxHeight","INLINE","getButtonHeight","undefined","getLoaderSize","loaderSizeMap","SMALL","MEDIUM","LARGE","getTextColor","disabled","state","color","text","DISABLED","getButtonNativeStyles","isDisabled","bg","backgroundColor","borders","border","shadows","shadow","background","default","activeBackground","active","disabledBackground","activeBorder","disabledBorder","boxShadow","activeBoxShadow","textColor","gap","groupBorderWidths","height"],"sourceRoot":"../../../../src","sources":["components/Button/button.utils.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["default","Button","getButtonNativeStyles","getButtonPadding","getButtonV2BorderRadius","getButtonHeight","getIconMaxHeight","getLoaderSize","getTextColor"],"sourceRoot":"../../../../src","sources":["components/Button/index.ts"],"mappings":";;AAAA,SAASA,OAAO,IAAIC,MAAM,QAAQ,aAAU;AAE5C,SACIC,qBAAqB,EACrBC,gBAAgB,EAChBC,uBAAuB,EACvBC,eAAe,EACfC,gBAAgB,EAChBC,aAAa,EACbC,YAAY,QACT,mBAAgB","ignoreList":[]}
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
|
4
|
+
import { StyleSheet, View } from 'react-native';
|
|
5
|
+
import Animated, { Easing, cancelAnimation, useAnimatedStyle, useSharedValue, withRepeat, withTiming } from 'react-native-reanimated';
|
|
6
|
+
import { useNativeTokens } from "../../theme/useNativeTokens.js";
|
|
7
|
+
import { useReduceMotion } from "../../motion/useReduceMotion.js";
|
|
8
|
+
import { LinearGradient } from "../../adapters/optionalGradient.js";
|
|
9
|
+
import { parseSize } from "../../adapters/cssStringAdapter.js";
|
|
10
|
+
import { resolveSkeletonDuration, resolveSkeletonRadius } from "./skeleton.utils.js";
|
|
11
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
12
|
+
/**
|
|
13
|
+
* Skeleton — React Native implementation of web's `Skeleton`, resolving the
|
|
14
|
+
* same themed `SKELETON` token slot (base/highlight colours, duration).
|
|
15
|
+
*
|
|
16
|
+
* Two usages, matching web:
|
|
17
|
+
*
|
|
18
|
+
* - **Block**: `<Skeleton width={120} height={16} />` — a placeholder box.
|
|
19
|
+
* - **Wrap**: `<Skeleton>{content}</Skeleton>` — the content keeps its
|
|
20
|
+
* layout but renders invisible, with the skeleton surface painted over
|
|
21
|
+
* it. This is what restores the `skeleton` prop parity on Button and Tag.
|
|
22
|
+
*
|
|
23
|
+
* Variants: `pulse` animates opacity between highlight and base; `wave` and
|
|
24
|
+
* `shimmer` sweep a highlight gradient across the box (requiring the
|
|
25
|
+
* optional `expo-linear-gradient` — absent, they degrade to pulse; web's
|
|
26
|
+
* `::after` sweep has no other RN expression). OS reduce-motion renders a
|
|
27
|
+
* static base-coloured box.
|
|
28
|
+
*
|
|
29
|
+
* Hidden from assistive tech: a skeleton is a visual placeholder, and the
|
|
30
|
+
* owning component announces its loading state (the Button/Alert pattern).
|
|
31
|
+
*/
|
|
32
|
+
const SkeletonImpl = ({
|
|
33
|
+
variant = 'pulse',
|
|
34
|
+
shape = 'rectangle',
|
|
35
|
+
width,
|
|
36
|
+
height,
|
|
37
|
+
borderRadius,
|
|
38
|
+
children,
|
|
39
|
+
style,
|
|
40
|
+
testID
|
|
41
|
+
}) => {
|
|
42
|
+
const tokens = useNativeTokens('SKELETON');
|
|
43
|
+
const reduceMotion = useReduceMotion();
|
|
44
|
+
const duration = resolveSkeletonDuration(tokens);
|
|
45
|
+
const baseColor = String(tokens.colors.base);
|
|
46
|
+
const highlightColor = String(tokens.colors.highlight);
|
|
47
|
+
const radius = borderRadius ?? resolveSkeletonRadius(shape, tokens, width, height);
|
|
48
|
+
|
|
49
|
+
// Sweep needs the measured box; pulse does not.
|
|
50
|
+
const [measuredWidth, setMeasuredWidth] = useState(0);
|
|
51
|
+
const onLayout = useCallback(event => {
|
|
52
|
+
setMeasuredWidth(event.nativeEvent.layout.width);
|
|
53
|
+
}, []);
|
|
54
|
+
const canSweep = (variant === 'wave' || variant === 'shimmer') && LinearGradient !== null && !reduceMotion;
|
|
55
|
+
const pulses = !reduceMotion && !canSweep;
|
|
56
|
+
const progress = useSharedValue(0);
|
|
57
|
+
useEffect(() => {
|
|
58
|
+
if (reduceMotion) {
|
|
59
|
+
cancelAnimation(progress);
|
|
60
|
+
progress.value = 0;
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
progress.value = 0;
|
|
64
|
+
progress.value = withRepeat(withTiming(1, {
|
|
65
|
+
duration,
|
|
66
|
+
easing: Easing.inOut(Easing.ease)
|
|
67
|
+
}), -1,
|
|
68
|
+
// Pulse breathes in and out; the sweep restarts from the left.
|
|
69
|
+
!canSweep);
|
|
70
|
+
return () => cancelAnimation(progress);
|
|
71
|
+
}, [progress, duration, reduceMotion, canSweep]);
|
|
72
|
+
const pulseStyle = useAnimatedStyle(() => ({
|
|
73
|
+
opacity: pulses ? 1 - progress.value * 0.5 : 1
|
|
74
|
+
}), [pulses]);
|
|
75
|
+
const sweepStyle = useAnimatedStyle(() => ({
|
|
76
|
+
transform: [{
|
|
77
|
+
translateX: canSweep ? -measuredWidth + progress.value * 2 * measuredWidth : 0
|
|
78
|
+
}]
|
|
79
|
+
}), [canSweep, measuredWidth]);
|
|
80
|
+
const boxStyle = useMemo(() => ({
|
|
81
|
+
backgroundColor: baseColor,
|
|
82
|
+
borderRadius: radius,
|
|
83
|
+
overflow: 'hidden',
|
|
84
|
+
...(children ? null : {
|
|
85
|
+
width: parseSize(width) ?? undefined,
|
|
86
|
+
height: parseSize(height) ?? undefined
|
|
87
|
+
})
|
|
88
|
+
}), [baseColor, radius, children, width, height]);
|
|
89
|
+
const surface = /*#__PURE__*/_jsx(Animated.View, {
|
|
90
|
+
pointerEvents: "none",
|
|
91
|
+
onLayout: canSweep ? onLayout : undefined,
|
|
92
|
+
style: [children ? styles.fill : null, boxStyle, pulseStyle],
|
|
93
|
+
testID: testID ? `${testID}-surface` : undefined,
|
|
94
|
+
children: canSweep && measuredWidth > 0 && LinearGradient ? /*#__PURE__*/_jsx(Animated.View, {
|
|
95
|
+
style: [StyleSheet.absoluteFill, sweepStyle],
|
|
96
|
+
children: /*#__PURE__*/_jsx(LinearGradient, {
|
|
97
|
+
colors: [baseColor, highlightColor, baseColor],
|
|
98
|
+
locations: [0.2, 0.5, 0.8],
|
|
99
|
+
start: {
|
|
100
|
+
x: 0,
|
|
101
|
+
y: 0.5
|
|
102
|
+
},
|
|
103
|
+
end: {
|
|
104
|
+
x: 1,
|
|
105
|
+
y: 0.5
|
|
106
|
+
},
|
|
107
|
+
style: styles.fill
|
|
108
|
+
})
|
|
109
|
+
}) : null
|
|
110
|
+
});
|
|
111
|
+
if (!children) {
|
|
112
|
+
return /*#__PURE__*/_jsx(View, {
|
|
113
|
+
testID: testID,
|
|
114
|
+
style: style,
|
|
115
|
+
accessible: false,
|
|
116
|
+
importantForAccessibility: "no-hide-descendants",
|
|
117
|
+
accessibilityElementsHidden: true,
|
|
118
|
+
children: surface
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
return /*#__PURE__*/_jsxs(View, {
|
|
122
|
+
testID: testID,
|
|
123
|
+
style: style,
|
|
124
|
+
pointerEvents: "none",
|
|
125
|
+
accessible: false,
|
|
126
|
+
importantForAccessibility: "no-hide-descendants",
|
|
127
|
+
accessibilityElementsHidden: true,
|
|
128
|
+
children: [/*#__PURE__*/_jsx(View, {
|
|
129
|
+
style: styles.hiddenContent,
|
|
130
|
+
children: children
|
|
131
|
+
}), surface]
|
|
132
|
+
});
|
|
133
|
+
};
|
|
134
|
+
export const Skeleton = /*#__PURE__*/React.memo(SkeletonImpl);
|
|
135
|
+
Skeleton.displayName = 'Skeleton';
|
|
136
|
+
const styles = StyleSheet.create({
|
|
137
|
+
hiddenContent: {
|
|
138
|
+
opacity: 0
|
|
139
|
+
},
|
|
140
|
+
fill: {
|
|
141
|
+
position: 'absolute',
|
|
142
|
+
top: 0,
|
|
143
|
+
right: 0,
|
|
144
|
+
bottom: 0,
|
|
145
|
+
left: 0
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
export default Skeleton;
|
|
149
|
+
//# sourceMappingURL=Skeleton.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","useCallback","useEffect","useMemo","useState","StyleSheet","View","Animated","Easing","cancelAnimation","useAnimatedStyle","useSharedValue","withRepeat","withTiming","useNativeTokens","useReduceMotion","LinearGradient","parseSize","resolveSkeletonDuration","resolveSkeletonRadius","jsx","_jsx","jsxs","_jsxs","SkeletonImpl","variant","shape","width","height","borderRadius","children","style","testID","tokens","reduceMotion","duration","baseColor","String","colors","base","highlightColor","highlight","radius","measuredWidth","setMeasuredWidth","onLayout","event","nativeEvent","layout","canSweep","pulses","progress","value","easing","inOut","ease","pulseStyle","opacity","sweepStyle","transform","translateX","boxStyle","backgroundColor","overflow","undefined","surface","pointerEvents","styles","fill","absoluteFill","locations","start","x","y","end","accessible","importantForAccessibility","accessibilityElementsHidden","hiddenContent","Skeleton","memo","displayName","create","position","top","right","bottom","left"],"sourceRoot":"../../../../src","sources":["components/Skeleton/Skeleton.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Skeleton","default"],"sourceRoot":"../../../../src","sources":["components/Skeleton/index.ts"],"mappings":";;AAAA,SAASA,QAAQ,EAAEC,OAAO,QAAQ,eAAY","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/Skeleton/skeleton.types.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { parseBorderRadius, parseDuration, parseSize } from "../../adapters/cssStringAdapter.js";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Pure resolution for the native Skeleton — vitest-testable, worklet-free.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/** Default when the token duration cannot be parsed. */
|
|
10
|
+
export const SKELETON_FALLBACK_DURATION = 1500;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Animation cycle length in milliseconds, from the token's CSS duration
|
|
14
|
+
* string (`"1.5s"`).
|
|
15
|
+
*/
|
|
16
|
+
export function resolveSkeletonDuration(tokens) {
|
|
17
|
+
return parseDuration(tokens.animation.duration) ?? SKELETON_FALLBACK_DURATION;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Border radius for a shape.
|
|
22
|
+
*
|
|
23
|
+
* The `circle` token is CSS `"50%"`, which RN cannot express — a circle
|
|
24
|
+
* needs a numeric radius of half the box. When the box size is unknown
|
|
25
|
+
* (string sizes, wrap mode) a large radius produces the same pill/circle
|
|
26
|
+
* silhouette, the same trick web's `radius.full` relies on.
|
|
27
|
+
*/
|
|
28
|
+
export function resolveSkeletonRadius(shape, tokens, width, height) {
|
|
29
|
+
if (shape === 'circle') {
|
|
30
|
+
const w = typeof width === 'number' ? width : parseSize(String(width));
|
|
31
|
+
const h = typeof height === 'number' ? height : parseSize(String(height));
|
|
32
|
+
if (typeof w === 'number' && typeof h === 'number') {
|
|
33
|
+
return Math.min(w, h) / 2;
|
|
34
|
+
}
|
|
35
|
+
return 9999;
|
|
36
|
+
}
|
|
37
|
+
const parsed = parseBorderRadius(tokens.borderRadius[shape]);
|
|
38
|
+
return typeof parsed === 'number' ? parsed : 0;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=skeleton.utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["parseBorderRadius","parseDuration","parseSize","SKELETON_FALLBACK_DURATION","resolveSkeletonDuration","tokens","animation","duration","resolveSkeletonRadius","shape","width","height","w","String","h","Math","min","parsed","borderRadius"],"sourceRoot":"../../../../src","sources":["components/Skeleton/skeleton.utils.ts"],"mappings":";;AAIA,SACIA,iBAAiB,EACjBC,aAAa,EACbC,SAAS,QACN,oCAAiC;;AAExC;AACA;AACA;;AAEA;AACA,OAAO,MAAMC,0BAA0B,GAAG,IAAI;;AAE9C;AACA;AACA;AACA;AACA,OAAO,SAASC,uBAAuBA,CAACC,MAA0B,EAAU;EACxE,OACIJ,aAAa,CAACI,MAAM,CAACC,SAAS,CAACC,QAA2B,CAAC,IAC3DJ,0BAA0B;AAElC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASK,qBAAqBA,CACjCC,KAAoB,EACpBJ,MAA0B,EAC1BK,KAAuB,EACvBC,MAAwB,EAClB;EACN,IAAIF,KAAK,KAAK,QAAQ,EAAE;IACpB,MAAMG,CAAC,GAAG,OAAOF,KAAK,KAAK,QAAQ,GAAGA,KAAK,GAAGR,SAAS,CAACW,MAAM,CAACH,KAAK,CAAC,CAAC;IACtE,MAAMI,CAAC,GACH,OAAOH,MAAM,KAAK,QAAQ,GAAGA,MAAM,GAAGT,SAAS,CAACW,MAAM,CAACF,MAAM,CAAC,CAAC;IACnE,IAAI,OAAOC,CAAC,KAAK,QAAQ,IAAI,OAAOE,CAAC,KAAK,QAAQ,EAAE;MAChD,OAAOC,IAAI,CAACC,GAAG,CAACJ,CAAC,EAAEE,CAAC,CAAC,GAAG,CAAC;IAC7B;IACA,OAAO,IAAI;EACf;EACA,MAAMG,MAAM,GAAGjB,iBAAiB,CAC5BK,MAAM,CAACa,YAAY,CAACT,KAAK,CAC7B,CAAC;EACD,OAAO,OAAOQ,MAAM,KAAK,QAAQ,GAAGA,MAAM,GAAG,CAAC;AAClD","ignoreList":[]}
|