@teamturing/react-native-kit 0.1.0 → 1.2.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/LICENSE +21 -0
- package/lib/commonjs/assets/icons/bookmark_animation.svg +3 -0
- package/lib/commonjs/assets/icons/chat_bubble_question_animation.svg +3 -0
- package/lib/commonjs/component/AnimatedNumber.js +251 -0
- package/lib/commonjs/component/AnimatedNumber.js.map +1 -0
- package/lib/commonjs/component/Animation/etc/CircleEffectAnimation.js +99 -0
- package/lib/commonjs/component/Animation/etc/CircleEffectAnimation.js.map +1 -0
- package/lib/commonjs/component/Animation/etc/FadeInOutLoop.js +50 -0
- package/lib/commonjs/component/Animation/etc/FadeInOutLoop.js.map +1 -0
- package/lib/commonjs/component/Animation/etc/LeftAndRight.js +36 -0
- package/lib/commonjs/component/Animation/etc/LeftAndRight.js.map +1 -0
- package/lib/commonjs/component/Animation/etc/Pulse.js +71 -0
- package/lib/commonjs/component/Animation/etc/Pulse.js.map +1 -0
- package/lib/commonjs/component/Animation/etc/UpAndDown.js +36 -0
- package/lib/commonjs/component/Animation/etc/UpAndDown.js.map +1 -0
- package/lib/commonjs/component/Animation/etc/index.js +61 -0
- package/lib/commonjs/component/Animation/etc/index.js.map +1 -0
- package/lib/commonjs/component/Animation/imperative/FadeIn.js +33 -0
- package/lib/commonjs/component/Animation/imperative/FadeIn.js.map +1 -0
- package/lib/commonjs/component/Animation/imperative/FadeInOut.js +36 -0
- package/lib/commonjs/component/Animation/imperative/FadeInOut.js.map +1 -0
- package/lib/commonjs/component/Animation/imperative/ImperativeAnimation.js +81 -0
- package/lib/commonjs/component/Animation/imperative/ImperativeAnimation.js.map +1 -0
- package/lib/commonjs/component/Animation/imperative/Shake.js +42 -0
- package/lib/commonjs/component/Animation/imperative/Shake.js.map +1 -0
- package/lib/commonjs/component/Animation/imperative/SlideIn.js +34 -0
- package/lib/commonjs/component/Animation/imperative/SlideIn.js.map +1 -0
- package/lib/commonjs/component/Animation/imperative/SlideInOut.js +41 -0
- package/lib/commonjs/component/Animation/imperative/SlideInOut.js.map +1 -0
- package/lib/commonjs/component/Animation/imperative/index.js +72 -0
- package/lib/commonjs/component/Animation/imperative/index.js.map +1 -0
- package/lib/commonjs/component/Animation/implicit/OpacityAnimatedView.js +49 -0
- package/lib/commonjs/component/Animation/implicit/OpacityAnimatedView.js.map +1 -0
- package/lib/commonjs/component/Animation/implicit/ZoomIn.js +40 -0
- package/lib/commonjs/component/Animation/implicit/ZoomIn.js.map +1 -0
- package/lib/commonjs/component/Animation/implicit/index.js +28 -0
- package/lib/commonjs/component/Animation/implicit/index.js.map +1 -0
- package/lib/commonjs/component/Animation/index.js +39 -0
- package/lib/commonjs/component/Animation/index.js.map +1 -0
- package/lib/commonjs/component/Badge.js +25 -0
- package/lib/commonjs/component/Badge.js.map +1 -0
- package/lib/commonjs/component/Banner/BannerItem.js +71 -0
- package/lib/commonjs/component/Banner/BannerItem.js.map +1 -0
- package/lib/commonjs/component/Banner/BannerRectangle.js +44 -0
- package/lib/commonjs/component/Banner/BannerRectangle.js.map +1 -0
- package/lib/commonjs/component/Banner/index.js +28 -0
- package/lib/commonjs/component/Banner/index.js.map +1 -0
- package/lib/commonjs/component/BaseWebView.js +37 -0
- package/lib/commonjs/component/BaseWebView.js.map +1 -0
- package/lib/commonjs/component/Box/index.js +12 -0
- package/lib/commonjs/component/Box/index.js.map +1 -0
- package/lib/commonjs/component/Btn/BaseBtn.js +310 -0
- package/lib/commonjs/component/Btn/BaseBtn.js.map +1 -0
- package/lib/commonjs/component/Btn/FixedBottomCTABtn.js +35 -0
- package/lib/commonjs/component/Btn/FixedBottomCTABtn.js.map +1 -0
- package/lib/commonjs/component/Btn/IconBtn.js +274 -0
- package/lib/commonjs/component/Btn/IconBtn.js.map +1 -0
- package/lib/commonjs/component/Btn/InteractiveToggledIconBtn.js +105 -0
- package/lib/commonjs/component/Btn/InteractiveToggledIconBtn.js.map +1 -0
- package/lib/commonjs/component/Btn/index.js +49 -0
- package/lib/commonjs/component/Btn/index.js.map +1 -0
- package/lib/commonjs/component/Card.js +33 -0
- package/lib/commonjs/component/Card.js.map +1 -0
- package/lib/commonjs/component/Carousel.js +58 -0
- package/lib/commonjs/component/Carousel.js.map +1 -0
- package/lib/commonjs/component/Chip.js +181 -0
- package/lib/commonjs/component/Chip.js.map +1 -0
- package/lib/commonjs/component/CloneWithGlobalPositionView.js +55 -0
- package/lib/commonjs/component/CloneWithGlobalPositionView.js.map +1 -0
- package/lib/commonjs/component/DialogHandler.js +38 -0
- package/lib/commonjs/component/DialogHandler.js.map +1 -0
- package/lib/commonjs/component/Dot.js +46 -0
- package/lib/commonjs/component/Dot.js.map +1 -0
- package/lib/commonjs/component/DotLoadingIndicator.js +53 -0
- package/lib/commonjs/component/DotLoadingIndicator.js.map +1 -0
- package/lib/commonjs/component/EmptyState.js +68 -0
- package/lib/commonjs/component/EmptyState.js.map +1 -0
- package/lib/commonjs/component/FloatingRoundChip.js +48 -0
- package/lib/commonjs/component/FloatingRoundChip.js.map +1 -0
- package/lib/commonjs/component/GradientBorderContainer.js +57 -0
- package/lib/commonjs/component/GradientBorderContainer.js.map +1 -0
- package/lib/commonjs/component/GradientBorderContainer.web.js +32 -0
- package/lib/commonjs/component/GradientBorderContainer.web.js.map +1 -0
- package/lib/commonjs/component/GradientCollection.js +77 -0
- package/lib/commonjs/component/GradientCollection.js.map +1 -0
- package/lib/commonjs/component/GradientMask.js +55 -0
- package/lib/commonjs/component/GradientMask.js.map +1 -0
- package/lib/commonjs/component/GradientMask.web.js +160 -0
- package/lib/commonjs/component/GradientMask.web.js.map +1 -0
- package/lib/commonjs/component/Header/BackButtonHeader.js +30 -0
- package/lib/commonjs/component/Header/BackButtonHeader.js.map +1 -0
- package/lib/commonjs/component/Header/CloseButtonHeader.js +29 -0
- package/lib/commonjs/component/Header/CloseButtonHeader.js.map +1 -0
- package/lib/commonjs/component/Header/Header.js +110 -0
- package/lib/commonjs/component/Header/Header.js.map +1 -0
- package/lib/commonjs/component/Header/index.js +39 -0
- package/lib/commonjs/component/Header/index.js.map +1 -0
- package/lib/commonjs/component/HorizontalStackedBar.js +36 -0
- package/lib/commonjs/component/HorizontalStackedBar.js.map +1 -0
- package/lib/commonjs/component/Icon/AnimatedIcon.js +32 -0
- package/lib/commonjs/component/Icon/AnimatedIcon.js.map +1 -0
- package/lib/commonjs/component/Icon/Icons.js +1540 -0
- package/lib/commonjs/component/Icon/Icons.js.map +1 -0
- package/lib/commonjs/component/Icon/index.js +31 -0
- package/lib/commonjs/component/Icon/index.js.map +1 -0
- package/lib/commonjs/component/IconCheckbox.js +67 -0
- package/lib/commonjs/component/IconCheckbox.js.map +1 -0
- package/lib/commonjs/component/Img/ImageConfig.js +11 -0
- package/lib/commonjs/component/Img/ImageConfig.js.map +1 -0
- package/lib/commonjs/component/Img/Img.js +240 -0
- package/lib/commonjs/component/Img/Img.js.map +1 -0
- package/lib/commonjs/component/Img/index.js +28 -0
- package/lib/commonjs/component/Img/index.js.map +1 -0
- package/lib/commonjs/component/Layout/AdaptiveHeightConstraintView.js +48 -0
- package/lib/commonjs/component/Layout/AdaptiveHeightConstraintView.js.map +1 -0
- package/lib/commonjs/component/Layout/AdaptiveWidthConstraintView.js +48 -0
- package/lib/commonjs/component/Layout/AdaptiveWidthConstraintView.js.map +1 -0
- package/lib/commonjs/component/Layout/AdaptiveWindowLayout.js +51 -0
- package/lib/commonjs/component/Layout/AdaptiveWindowLayout.js.map +1 -0
- package/lib/commonjs/component/Layout/Column.js +23 -0
- package/lib/commonjs/component/Layout/Column.js.map +1 -0
- package/lib/commonjs/component/Layout/FixedBottomLayout.js +69 -0
- package/lib/commonjs/component/Layout/FixedBottomLayout.js.map +1 -0
- package/lib/commonjs/component/Layout/Gap.js +43 -0
- package/lib/commonjs/component/Layout/Gap.js.map +1 -0
- package/lib/commonjs/component/Layout/Grid.js +75 -0
- package/lib/commonjs/component/Layout/Grid.js.map +1 -0
- package/lib/commonjs/component/Layout/ItemList.js +31 -0
- package/lib/commonjs/component/Layout/ItemList.js.map +1 -0
- package/lib/commonjs/component/Layout/Layout/LayoutProvider.js +119 -0
- package/lib/commonjs/component/Layout/Layout/LayoutProvider.js.map +1 -0
- package/lib/commonjs/component/Layout/Layout/WindowSizeClass.js +59 -0
- package/lib/commonjs/component/Layout/Layout/WindowSizeClass.js.map +1 -0
- package/lib/commonjs/component/Layout/Layout/index.js +39 -0
- package/lib/commonjs/component/Layout/Layout/index.js.map +1 -0
- package/lib/commonjs/component/Layout/Layout/useDynamicDimensions.js +26 -0
- package/lib/commonjs/component/Layout/Layout/useDynamicDimensions.js.map +1 -0
- package/lib/commonjs/component/Layout/LayoutStyle.js +6 -0
- package/lib/commonjs/component/Layout/LayoutStyle.js.map +1 -0
- package/lib/commonjs/component/Layout/Row.js +23 -0
- package/lib/commonjs/component/Layout/Row.js.map +1 -0
- package/lib/commonjs/component/Layout/SectionLayout/Section.js +31 -0
- package/lib/commonjs/component/Layout/SectionLayout/Section.js.map +1 -0
- package/lib/commonjs/component/Layout/SectionLayout/SectionLayout.js +54 -0
- package/lib/commonjs/component/Layout/SectionLayout/SectionLayout.js.map +1 -0
- package/lib/commonjs/component/Layout/SectionLayout/index.js +21 -0
- package/lib/commonjs/component/Layout/SectionLayout/index.js.map +1 -0
- package/lib/commonjs/component/Layout/SingleOrTwoColumnCellLayout.js +38 -0
- package/lib/commonjs/component/Layout/SingleOrTwoColumnCellLayout.js.map +1 -0
- package/lib/commonjs/component/Layout/WhiteGradientFixedBottomLayout.js +29 -0
- package/lib/commonjs/component/Layout/WhiteGradientFixedBottomLayout.js.map +1 -0
- package/lib/commonjs/component/Layout/index.js +160 -0
- package/lib/commonjs/component/Layout/index.js.map +1 -0
- package/lib/commonjs/component/LiText.js +30 -0
- package/lib/commonjs/component/LiText.js.map +1 -0
- package/lib/commonjs/component/LineDivider.js +33 -0
- package/lib/commonjs/component/LineDivider.js.map +1 -0
- package/lib/commonjs/component/LoadingFallbackView.js +24 -0
- package/lib/commonjs/component/LoadingFallbackView.js.map +1 -0
- package/lib/commonjs/component/LoadingIndicator.js +30 -0
- package/lib/commonjs/component/LoadingIndicator.js.map +1 -0
- package/lib/commonjs/component/LoadingIndicatorView.js +31 -0
- package/lib/commonjs/component/LoadingIndicatorView.js.map +1 -0
- package/lib/commonjs/component/Lottie/index.js +60 -0
- package/lib/commonjs/component/Lottie/index.js.map +1 -0
- package/lib/commonjs/component/MarqueeView.js +91 -0
- package/lib/commonjs/component/MarqueeView.js.map +1 -0
- package/lib/commonjs/component/NumberBadge.js +48 -0
- package/lib/commonjs/component/NumberBadge.js.map +1 -0
- package/lib/commonjs/component/OnMountEvent.js +16 -0
- package/lib/commonjs/component/OnMountEvent.js.map +1 -0
- package/lib/commonjs/component/PaginatedFlashList.js +167 -0
- package/lib/commonjs/component/PaginatedFlashList.js.map +1 -0
- package/lib/commonjs/component/PaginatedFlatList.js +172 -0
- package/lib/commonjs/component/PaginatedFlatList.js.map +1 -0
- package/lib/commonjs/component/Paginator.js +43 -0
- package/lib/commonjs/component/Paginator.js.map +1 -0
- package/lib/commonjs/component/PartialRerender.js +21 -0
- package/lib/commonjs/component/PartialRerender.js.map +1 -0
- package/lib/commonjs/component/PieChart.js +53 -0
- package/lib/commonjs/component/PieChart.js.map +1 -0
- package/lib/commonjs/component/Portal/Portal.js +27 -0
- package/lib/commonjs/component/Portal/Portal.js.map +1 -0
- package/lib/commonjs/component/Portal/PortalConsumer.js +33 -0
- package/lib/commonjs/component/Portal/PortalConsumer.js.map +1 -0
- package/lib/commonjs/component/Portal/PortalHost.js +107 -0
- package/lib/commonjs/component/Portal/PortalHost.js.map +1 -0
- package/lib/commonjs/component/Portal/PortalManager.js +50 -0
- package/lib/commonjs/component/Portal/PortalManager.js.map +1 -0
- package/lib/commonjs/component/Portal/index.js +50 -0
- package/lib/commonjs/component/Portal/index.js.map +1 -0
- package/lib/commonjs/component/Pressable/LoadingIndicatorTouchable.js +30 -0
- package/lib/commonjs/component/Pressable/LoadingIndicatorTouchable.js.map +1 -0
- package/lib/commonjs/component/Pressable/PressableDelayed.js +36 -0
- package/lib/commonjs/component/Pressable/PressableDelayed.js.map +1 -0
- package/lib/commonjs/component/Pressable/Touch.js +48 -0
- package/lib/commonjs/component/Pressable/Touch.js.map +1 -0
- package/lib/commonjs/component/Pressable/index.js +39 -0
- package/lib/commonjs/component/Pressable/index.js.map +1 -0
- package/lib/commonjs/component/Pressable/useDisabilityAwareDebouncer.js +56 -0
- package/lib/commonjs/component/Pressable/useDisabilityAwareDebouncer.js.map +1 -0
- package/lib/commonjs/component/Progress/CircularProgressIndicator.js +130 -0
- package/lib/commonjs/component/Progress/CircularProgressIndicator.js.map +1 -0
- package/lib/commonjs/component/Progress/ImageCircularProgressIndicator.js +27 -0
- package/lib/commonjs/component/Progress/ImageCircularProgressIndicator.js.map +1 -0
- package/lib/commonjs/component/Progress/LinearProgressBar.js +65 -0
- package/lib/commonjs/component/Progress/LinearProgressBar.js.map +1 -0
- package/lib/commonjs/component/Progress/Slider.js +157 -0
- package/lib/commonjs/component/Progress/Slider.js.map +1 -0
- package/lib/commonjs/component/Progress/index.js +50 -0
- package/lib/commonjs/component/Progress/index.js.map +1 -0
- package/lib/commonjs/component/RadioButton.js +36 -0
- package/lib/commonjs/component/RadioButton.js.map +1 -0
- package/lib/commonjs/component/ReadMoreText.js +68 -0
- package/lib/commonjs/component/ReadMoreText.js.map +1 -0
- package/lib/commonjs/component/ReadMoreText.web.js +15 -0
- package/lib/commonjs/component/ReadMoreText.web.js.map +1 -0
- package/lib/commonjs/component/ReanimatedBox/index.js +23 -0
- package/lib/commonjs/component/ReanimatedBox/index.js.map +1 -0
- package/lib/commonjs/component/ReanimatedStyledScrollView/index.js +27 -0
- package/lib/commonjs/component/ReanimatedStyledScrollView/index.js.map +1 -0
- package/lib/commonjs/component/RefreshControlEx.js +22 -0
- package/lib/commonjs/component/RefreshControlEx.js.map +1 -0
- package/lib/commonjs/component/StyledScrollView/index.js +26 -0
- package/lib/commonjs/component/StyledScrollView/index.js.map +1 -0
- package/lib/commonjs/component/Switch.js +87 -0
- package/lib/commonjs/component/Switch.js.map +1 -0
- package/lib/commonjs/component/Tab/BaseTab.js +57 -0
- package/lib/commonjs/component/Tab/BaseTab.js.map +1 -0
- package/lib/commonjs/component/Tab/IndicatorTab.js +69 -0
- package/lib/commonjs/component/Tab/IndicatorTab.js.map +1 -0
- package/lib/commonjs/component/Tab/RoundTab.js +165 -0
- package/lib/commonjs/component/Tab/RoundTab.js.map +1 -0
- package/lib/commonjs/component/Tab/index.js +39 -0
- package/lib/commonjs/component/Tab/index.js.map +1 -0
- package/lib/commonjs/component/TabPager.js +43 -0
- package/lib/commonjs/component/TabPager.js.map +1 -0
- package/lib/commonjs/component/Tag.js +159 -0
- package/lib/commonjs/component/Tag.js.map +1 -0
- package/lib/commonjs/component/TagHorizontalList.js +96 -0
- package/lib/commonjs/component/TagHorizontalList.js.map +1 -0
- package/lib/commonjs/component/TextField/BaseTextField.js +132 -0
- package/lib/commonjs/component/TextField/BaseTextField.js.map +1 -0
- package/lib/commonjs/component/TextField/CoreTextField.js +76 -0
- package/lib/commonjs/component/TextField/CoreTextField.js.map +1 -0
- package/lib/commonjs/component/TextField/index.js +14 -0
- package/lib/commonjs/component/TextField/index.js.map +1 -0
- package/lib/commonjs/component/TextField/textFieldNumericFormatUtils.js +73 -0
- package/lib/commonjs/component/TextField/textFieldNumericFormatUtils.js.map +1 -0
- package/lib/commonjs/component/TextField/textFieldNumericFormatUtils.test.js +16 -0
- package/lib/commonjs/component/TextField/textFieldNumericFormatUtils.test.js.map +1 -0
- package/lib/commonjs/component/ToolTip/BaseToolTip.js +137 -0
- package/lib/commonjs/component/ToolTip/BaseToolTip.js.map +1 -0
- package/lib/commonjs/component/ToolTip/TextToolTip.js +50 -0
- package/lib/commonjs/component/ToolTip/TextToolTip.js.map +1 -0
- package/lib/commonjs/component/ToolTip/index.js +28 -0
- package/lib/commonjs/component/ToolTip/index.js.map +1 -0
- package/lib/commonjs/component/Txt/Font.js +12 -0
- package/lib/commonjs/component/Txt/Font.js.map +1 -0
- package/lib/commonjs/component/Txt/FontWeight.js +13 -0
- package/lib/commonjs/component/Txt/FontWeight.js.map +1 -0
- package/lib/commonjs/component/Txt/TextConfig.js +17 -0
- package/lib/commonjs/component/Txt/TextConfig.js.map +1 -0
- package/lib/commonjs/component/Txt/Txt.js +329 -0
- package/lib/commonjs/component/Txt/Txt.js.map +1 -0
- package/lib/commonjs/component/Txt/index.js +50 -0
- package/lib/commonjs/component/Txt/index.js.map +1 -0
- package/lib/commonjs/component/dialog/CommonBottomSheetDialog.js +167 -0
- package/lib/commonjs/component/dialog/CommonBottomSheetDialog.js.map +1 -0
- package/lib/commonjs/component/dialog/CommonDialog.js +257 -0
- package/lib/commonjs/component/dialog/CommonDialog.js.map +1 -0
- package/lib/commonjs/component/dialog/DialogProvider.js +77 -0
- package/lib/commonjs/component/dialog/DialogProvider.js.map +1 -0
- package/lib/commonjs/component/dialog/ItemSelectBottomSheetDialog.js +116 -0
- package/lib/commonjs/component/dialog/ItemSelectBottomSheetDialog.js.map +1 -0
- package/lib/commonjs/component/dialog/LottieDialog.js +78 -0
- package/lib/commonjs/component/dialog/LottieDialog.js.map +1 -0
- package/lib/commonjs/component/dialog/ToastDialog.js +114 -0
- package/lib/commonjs/component/dialog/ToastDialog.js.map +1 -0
- package/lib/commonjs/component/dialog/base/BottomSheetDialog.js +53 -0
- package/lib/commonjs/component/dialog/base/BottomSheetDialog.js.map +1 -0
- package/lib/commonjs/component/dialog/base/Dialog.js +58 -0
- package/lib/commonjs/component/dialog/base/Dialog.js.map +1 -0
- package/lib/commonjs/component/dialog/base/ModalBox.js +488 -0
- package/lib/commonjs/component/dialog/base/ModalBox.js.map +1 -0
- package/lib/commonjs/component/dialog/base/index.js +39 -0
- package/lib/commonjs/component/dialog/base/index.js.map +1 -0
- package/lib/commonjs/component/dialog/index.js +83 -0
- package/lib/commonjs/component/dialog/index.js.map +1 -0
- package/lib/commonjs/component/index.js +633 -0
- package/lib/commonjs/component/index.js.map +1 -0
- package/lib/commonjs/hoc/index.js +28 -0
- package/lib/commonjs/hoc/index.js.map +1 -0
- package/lib/commonjs/hoc/withProviders.js +27 -0
- package/lib/commonjs/hoc/withProviders.js.map +1 -0
- package/lib/commonjs/hoc/withReanimated.js +23 -0
- package/lib/commonjs/hoc/withReanimated.js.map +1 -0
- package/lib/commonjs/hook/index.js +127 -0
- package/lib/commonjs/hook/index.js.map +1 -0
- package/lib/commonjs/hook/useAppState.js +20 -0
- package/lib/commonjs/hook/useAppState.js.map +1 -0
- package/lib/commonjs/hook/useDialogHandler.js +31 -0
- package/lib/commonjs/hook/useDialogHandler.js.map +1 -0
- package/lib/commonjs/hook/useFloatingKeyboard.js +31 -0
- package/lib/commonjs/hook/useFloatingKeyboard.js.map +1 -0
- package/lib/commonjs/hook/useIntervalCallback.js +22 -0
- package/lib/commonjs/hook/useIntervalCallback.js.map +1 -0
- package/lib/commonjs/hook/useKeyboard.js +36 -0
- package/lib/commonjs/hook/useKeyboard.js.map +1 -0
- package/lib/commonjs/hook/useMount.js +23 -0
- package/lib/commonjs/hook/useMount.js.map +1 -0
- package/lib/commonjs/hook/useRefValue.js +12 -0
- package/lib/commonjs/hook/useRefValue.js.map +1 -0
- package/lib/commonjs/hook/useScrollViewOnEndReachedConfig.js +36 -0
- package/lib/commonjs/hook/useScrollViewOnEndReachedConfig.js.map +1 -0
- package/lib/commonjs/hook/useStableCallback.js +35 -0
- package/lib/commonjs/hook/useStableCallback.js.map +1 -0
- package/lib/commonjs/hook/useTimeoutHandler.js +54 -0
- package/lib/commonjs/hook/useTimeoutHandler.js.map +1 -0
- package/lib/commonjs/hook/useTimeoutHandler.test.js +102 -0
- package/lib/commonjs/hook/useTimeoutHandler.test.js.map +1 -0
- package/lib/commonjs/hook/useUnmount.js +25 -0
- package/lib/commonjs/hook/useUnmount.js.map +1 -0
- package/lib/commonjs/index.js +44 -4
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/theme/StyledSystemTheme.js +41 -0
- package/lib/commonjs/theme/StyledSystemTheme.js.map +1 -0
- package/lib/commonjs/theme/index.js +28 -0
- package/lib/commonjs/theme/index.js.map +1 -0
- package/lib/commonjs/theme/token/gradient.js +153 -0
- package/lib/commonjs/theme/token/gradient.js.map +1 -0
- package/lib/commonjs/theme/token/index.js +39 -0
- package/lib/commonjs/theme/token/index.js.map +1 -0
- package/lib/commonjs/theme/token/palette.js +63 -0
- package/lib/commonjs/theme/token/palette.js.map +1 -0
- package/lib/commonjs/theme/token/spacing.js +67 -0
- package/lib/commonjs/theme/token/spacing.js.map +1 -0
- package/lib/commonjs/type/environment.d.js +2 -0
- package/lib/commonjs/type/environment.d.js.map +1 -0
- package/lib/commonjs/util/AppEvent.js +63 -0
- package/lib/commonjs/util/AppEvent.js.map +1 -0
- package/lib/commonjs/util/ColorUtil.js +19 -0
- package/lib/commonjs/util/ColorUtil.js.map +1 -0
- package/lib/commonjs/util/ColorUtil.test.js +26 -0
- package/lib/commonjs/util/ColorUtil.test.js.map +1 -0
- package/lib/commonjs/util/EnvironmentUtil.js +26 -0
- package/lib/commonjs/util/EnvironmentUtil.js.map +1 -0
- package/lib/commonjs/util/Px.js +15 -0
- package/lib/commonjs/util/Px.js.map +1 -0
- package/lib/commonjs/util/StyleUtil.js +50 -0
- package/lib/commonjs/util/StyleUtil.js.map +1 -0
- package/lib/commonjs/util/createCtx.js +33 -0
- package/lib/commonjs/util/createCtx.js.map +1 -0
- package/lib/commonjs/util/index.js +89 -0
- package/lib/commonjs/util/index.js.map +1 -0
- package/lib/commonjs/util/is.js +69 -0
- package/lib/commonjs/util/is.js.map +1 -0
- package/lib/commonjs/util/runAfterFlushMacroQueue.js +12 -0
- package/lib/commonjs/util/runAfterFlushMacroQueue.js.map +1 -0
- package/lib/module/assets/icons/bookmark_animation.svg +3 -0
- package/lib/module/assets/icons/chat_bubble_question_animation.svg +3 -0
- package/lib/module/component/AnimatedNumber.js +247 -0
- package/lib/module/component/AnimatedNumber.js.map +1 -0
- package/lib/module/component/Animation/etc/CircleEffectAnimation.js +92 -0
- package/lib/module/component/Animation/etc/CircleEffectAnimation.js.map +1 -0
- package/lib/module/component/Animation/etc/FadeInOutLoop.js +44 -0
- package/lib/module/component/Animation/etc/FadeInOutLoop.js.map +1 -0
- package/lib/module/component/Animation/etc/LeftAndRight.js +30 -0
- package/lib/module/component/Animation/etc/LeftAndRight.js.map +1 -0
- package/lib/module/component/Animation/etc/Pulse.js +65 -0
- package/lib/module/component/Animation/etc/Pulse.js.map +1 -0
- package/lib/module/component/Animation/etc/UpAndDown.js +30 -0
- package/lib/module/component/Animation/etc/UpAndDown.js.map +1 -0
- package/lib/module/component/Animation/etc/index.js +8 -0
- package/lib/module/component/Animation/etc/index.js.map +1 -0
- package/lib/module/component/Animation/imperative/FadeIn.js +27 -0
- package/lib/module/component/Animation/imperative/FadeIn.js.map +1 -0
- package/lib/module/component/Animation/imperative/FadeInOut.js +30 -0
- package/lib/module/component/Animation/imperative/FadeInOut.js.map +1 -0
- package/lib/module/component/Animation/imperative/ImperativeAnimation.js +76 -0
- package/lib/module/component/Animation/imperative/ImperativeAnimation.js.map +1 -0
- package/lib/module/component/Animation/imperative/Shake.js +36 -0
- package/lib/module/component/Animation/imperative/Shake.js.map +1 -0
- package/lib/module/component/Animation/imperative/SlideIn.js +28 -0
- package/lib/module/component/Animation/imperative/SlideIn.js.map +1 -0
- package/lib/module/component/Animation/imperative/SlideInOut.js +35 -0
- package/lib/module/component/Animation/imperative/SlideInOut.js.map +1 -0
- package/lib/module/component/Animation/imperative/index.js +9 -0
- package/lib/module/component/Animation/imperative/index.js.map +1 -0
- package/lib/module/component/Animation/implicit/OpacityAnimatedView.js +45 -0
- package/lib/module/component/Animation/implicit/OpacityAnimatedView.js.map +1 -0
- package/lib/module/component/Animation/implicit/ZoomIn.js +34 -0
- package/lib/module/component/Animation/implicit/ZoomIn.js.map +1 -0
- package/lib/module/component/Animation/implicit/index.js +5 -0
- package/lib/module/component/Animation/implicit/index.js.map +1 -0
- package/lib/module/component/Animation/index.js +6 -0
- package/lib/module/component/Animation/index.js.map +1 -0
- package/lib/module/component/Badge.js +21 -0
- package/lib/module/component/Badge.js.map +1 -0
- package/lib/module/component/Banner/BannerItem.js +66 -0
- package/lib/module/component/Banner/BannerItem.js.map +1 -0
- package/lib/module/component/Banner/BannerRectangle.js +39 -0
- package/lib/module/component/Banner/BannerRectangle.js.map +1 -0
- package/lib/module/component/Banner/index.js +5 -0
- package/lib/module/component/Banner/index.js.map +1 -0
- package/lib/module/component/BaseWebView.js +33 -0
- package/lib/module/component/BaseWebView.js.map +1 -0
- package/lib/module/component/Box/index.js +8 -0
- package/lib/module/component/Box/index.js.map +1 -0
- package/lib/module/component/Btn/BaseBtn.js +305 -0
- package/lib/module/component/Btn/BaseBtn.js.map +1 -0
- package/lib/module/component/Btn/FixedBottomCTABtn.js +30 -0
- package/lib/module/component/Btn/FixedBottomCTABtn.js.map +1 -0
- package/lib/module/component/Btn/IconBtn.js +270 -0
- package/lib/module/component/Btn/IconBtn.js.map +1 -0
- package/lib/module/component/Btn/InteractiveToggledIconBtn.js +98 -0
- package/lib/module/component/Btn/InteractiveToggledIconBtn.js.map +1 -0
- package/lib/module/component/Btn/index.js +8 -0
- package/lib/module/component/Btn/index.js.map +1 -0
- package/lib/module/component/Card.js +28 -0
- package/lib/module/component/Card.js.map +1 -0
- package/lib/module/component/Carousel.js +53 -0
- package/lib/module/component/Carousel.js.map +1 -0
- package/lib/module/component/Chip.js +176 -0
- package/lib/module/component/Chip.js.map +1 -0
- package/lib/module/component/CloneWithGlobalPositionView.js +49 -0
- package/lib/module/component/CloneWithGlobalPositionView.js.map +1 -0
- package/lib/module/component/DialogHandler.js +32 -0
- package/lib/module/component/DialogHandler.js.map +1 -0
- package/lib/module/component/Dot.js +42 -0
- package/lib/module/component/Dot.js.map +1 -0
- package/lib/module/component/DotLoadingIndicator.js +49 -0
- package/lib/module/component/DotLoadingIndicator.js.map +1 -0
- package/lib/module/component/EmptyState.js +63 -0
- package/lib/module/component/EmptyState.js.map +1 -0
- package/lib/module/component/FloatingRoundChip.js +43 -0
- package/lib/module/component/FloatingRoundChip.js.map +1 -0
- package/lib/module/component/GradientBorderContainer.js +52 -0
- package/lib/module/component/GradientBorderContainer.js.map +1 -0
- package/lib/module/component/GradientBorderContainer.web.js +28 -0
- package/lib/module/component/GradientBorderContainer.web.js.map +1 -0
- package/lib/module/component/GradientCollection.js +72 -0
- package/lib/module/component/GradientCollection.js.map +1 -0
- package/lib/module/component/GradientMask.js +50 -0
- package/lib/module/component/GradientMask.js.map +1 -0
- package/lib/module/component/GradientMask.web.js +156 -0
- package/lib/module/component/GradientMask.web.js.map +1 -0
- package/lib/module/component/Header/BackButtonHeader.js +25 -0
- package/lib/module/component/Header/BackButtonHeader.js.map +1 -0
- package/lib/module/component/Header/CloseButtonHeader.js +24 -0
- package/lib/module/component/Header/CloseButtonHeader.js.map +1 -0
- package/lib/module/component/Header/Header.js +105 -0
- package/lib/module/component/Header/Header.js.map +1 -0
- package/lib/module/component/Header/index.js +6 -0
- package/lib/module/component/Header/index.js.map +1 -0
- package/lib/module/component/HorizontalStackedBar.js +32 -0
- package/lib/module/component/HorizontalStackedBar.js.map +1 -0
- package/lib/module/component/Icon/AnimatedIcon.js +26 -0
- package/lib/module/component/Icon/AnimatedIcon.js.map +1 -0
- package/lib/module/component/Icon/Icons.js +222 -0
- package/lib/module/component/Icon/Icons.js.map +1 -0
- package/lib/module/component/Icon/index.js +25 -0
- package/lib/module/component/Icon/index.js.map +1 -0
- package/lib/module/component/IconCheckbox.js +63 -0
- package/lib/module/component/IconCheckbox.js.map +1 -0
- package/lib/module/component/Img/ImageConfig.js +7 -0
- package/lib/module/component/Img/ImageConfig.js.map +1 -0
- package/lib/module/component/Img/Img.js +234 -0
- package/lib/module/component/Img/Img.js.map +1 -0
- package/lib/module/component/Img/index.js +5 -0
- package/lib/module/component/Img/index.js.map +1 -0
- package/lib/module/component/Layout/AdaptiveHeightConstraintView.js +42 -0
- package/lib/module/component/Layout/AdaptiveHeightConstraintView.js.map +1 -0
- package/lib/module/component/Layout/AdaptiveWidthConstraintView.js +42 -0
- package/lib/module/component/Layout/AdaptiveWidthConstraintView.js.map +1 -0
- package/lib/module/component/Layout/AdaptiveWindowLayout.js +46 -0
- package/lib/module/component/Layout/AdaptiveWindowLayout.js.map +1 -0
- package/lib/module/component/Layout/Column.js +18 -0
- package/lib/module/component/Layout/Column.js.map +1 -0
- package/lib/module/component/Layout/FixedBottomLayout.js +63 -0
- package/lib/module/component/Layout/FixedBottomLayout.js.map +1 -0
- package/lib/module/component/Layout/Gap.js +36 -0
- package/lib/module/component/Layout/Gap.js.map +1 -0
- package/lib/module/component/Layout/Grid.js +70 -0
- package/lib/module/component/Layout/Grid.js.map +1 -0
- package/lib/module/component/Layout/ItemList.js +26 -0
- package/lib/module/component/Layout/ItemList.js.map +1 -0
- package/lib/module/component/Layout/Layout/LayoutProvider.js +113 -0
- package/lib/module/component/Layout/Layout/LayoutProvider.js.map +1 -0
- package/lib/module/component/Layout/Layout/WindowSizeClass.js +51 -0
- package/lib/module/component/Layout/Layout/WindowSizeClass.js.map +1 -0
- package/lib/module/component/Layout/Layout/index.js +6 -0
- package/lib/module/component/Layout/Layout/index.js.map +1 -0
- package/lib/module/component/Layout/Layout/useDynamicDimensions.js +22 -0
- package/lib/module/component/Layout/Layout/useDynamicDimensions.js.map +1 -0
- package/lib/module/component/Layout/LayoutStyle.js +4 -0
- package/lib/module/component/Layout/LayoutStyle.js.map +1 -0
- package/lib/module/component/Layout/Row.js +18 -0
- package/lib/module/component/Layout/Row.js.map +1 -0
- package/lib/module/component/Layout/SectionLayout/Section.js +26 -0
- package/lib/module/component/Layout/SectionLayout/Section.js.map +1 -0
- package/lib/module/component/Layout/SectionLayout/SectionLayout.js +48 -0
- package/lib/module/component/Layout/SectionLayout/SectionLayout.js.map +1 -0
- package/lib/module/component/Layout/SectionLayout/index.js +6 -0
- package/lib/module/component/Layout/SectionLayout/index.js.map +1 -0
- package/lib/module/component/Layout/SingleOrTwoColumnCellLayout.js +33 -0
- package/lib/module/component/Layout/SingleOrTwoColumnCellLayout.js.map +1 -0
- package/lib/module/component/Layout/WhiteGradientFixedBottomLayout.js +25 -0
- package/lib/module/component/Layout/WhiteGradientFixedBottomLayout.js.map +1 -0
- package/lib/module/component/Layout/index.js +17 -0
- package/lib/module/component/Layout/index.js.map +1 -0
- package/lib/module/component/LiText.js +26 -0
- package/lib/module/component/LiText.js.map +1 -0
- package/lib/module/component/LineDivider.js +29 -0
- package/lib/module/component/LineDivider.js.map +1 -0
- package/lib/module/component/LoadingFallbackView.js +20 -0
- package/lib/module/component/LoadingFallbackView.js.map +1 -0
- package/lib/module/component/LoadingIndicator.js +26 -0
- package/lib/module/component/LoadingIndicator.js.map +1 -0
- package/lib/module/component/LoadingIndicatorView.js +26 -0
- package/lib/module/component/LoadingIndicatorView.js.map +1 -0
- package/lib/module/component/Lottie/index.js +56 -0
- package/lib/module/component/Lottie/index.js.map +1 -0
- package/lib/module/component/MarqueeView.js +85 -0
- package/lib/module/component/MarqueeView.js.map +1 -0
- package/lib/module/component/NumberBadge.js +44 -0
- package/lib/module/component/NumberBadge.js.map +1 -0
- package/lib/module/component/OnMountEvent.js +12 -0
- package/lib/module/component/OnMountEvent.js.map +1 -0
- package/lib/module/component/PaginatedFlashList.js +163 -0
- package/lib/module/component/PaginatedFlashList.js.map +1 -0
- package/lib/module/component/PaginatedFlatList.js +166 -0
- package/lib/module/component/PaginatedFlatList.js.map +1 -0
- package/lib/module/component/Paginator.js +39 -0
- package/lib/module/component/Paginator.js.map +1 -0
- package/lib/module/component/PartialRerender.js +18 -0
- package/lib/module/component/PartialRerender.js.map +1 -0
- package/lib/module/component/PieChart.js +49 -0
- package/lib/module/component/PieChart.js.map +1 -0
- package/lib/module/component/Portal/Portal.js +22 -0
- package/lib/module/component/Portal/Portal.js.map +1 -0
- package/lib/module/component/Portal/PortalConsumer.js +27 -0
- package/lib/module/component/Portal/PortalConsumer.js.map +1 -0
- package/lib/module/component/Portal/PortalHost.js +100 -0
- package/lib/module/component/Portal/PortalHost.js.map +1 -0
- package/lib/module/component/Portal/PortalManager.js +44 -0
- package/lib/module/component/Portal/PortalManager.js.map +1 -0
- package/lib/module/component/Portal/index.js +7 -0
- package/lib/module/component/Portal/index.js.map +1 -0
- package/lib/module/component/Pressable/LoadingIndicatorTouchable.js +26 -0
- package/lib/module/component/Pressable/LoadingIndicatorTouchable.js.map +1 -0
- package/lib/module/component/Pressable/PressableDelayed.js +31 -0
- package/lib/module/component/Pressable/PressableDelayed.js.map +1 -0
- package/lib/module/component/Pressable/Touch.js +45 -0
- package/lib/module/component/Pressable/Touch.js.map +1 -0
- package/lib/module/component/Pressable/index.js +6 -0
- package/lib/module/component/Pressable/index.js.map +1 -0
- package/lib/module/component/Pressable/useDisabilityAwareDebouncer.js +53 -0
- package/lib/module/component/Pressable/useDisabilityAwareDebouncer.js.map +1 -0
- package/lib/module/component/Progress/CircularProgressIndicator.js +124 -0
- package/lib/module/component/Progress/CircularProgressIndicator.js.map +1 -0
- package/lib/module/component/Progress/ImageCircularProgressIndicator.js +23 -0
- package/lib/module/component/Progress/ImageCircularProgressIndicator.js.map +1 -0
- package/lib/module/component/Progress/LinearProgressBar.js +59 -0
- package/lib/module/component/Progress/LinearProgressBar.js.map +1 -0
- package/lib/module/component/Progress/Slider.js +151 -0
- package/lib/module/component/Progress/Slider.js.map +1 -0
- package/lib/module/component/Progress/index.js +7 -0
- package/lib/module/component/Progress/index.js.map +1 -0
- package/lib/module/component/RadioButton.js +32 -0
- package/lib/module/component/RadioButton.js.map +1 -0
- package/lib/module/component/ReadMoreText.js +64 -0
- package/lib/module/component/ReadMoreText.js.map +1 -0
- package/lib/module/component/ReadMoreText.web.js +11 -0
- package/lib/module/component/ReadMoreText.web.js.map +1 -0
- package/lib/module/component/ReanimatedBox/index.js +19 -0
- package/lib/module/component/ReanimatedBox/index.js.map +1 -0
- package/lib/module/component/ReanimatedStyledScrollView/index.js +23 -0
- package/lib/module/component/ReanimatedStyledScrollView/index.js.map +1 -0
- package/lib/module/component/RefreshControlEx.js +17 -0
- package/lib/module/component/RefreshControlEx.js.map +1 -0
- package/lib/module/component/StyledScrollView/index.js +23 -0
- package/lib/module/component/StyledScrollView/index.js.map +1 -0
- package/lib/module/component/Switch.js +83 -0
- package/lib/module/component/Switch.js.map +1 -0
- package/lib/module/component/Tab/BaseTab.js +52 -0
- package/lib/module/component/Tab/BaseTab.js.map +1 -0
- package/lib/module/component/Tab/IndicatorTab.js +65 -0
- package/lib/module/component/Tab/IndicatorTab.js.map +1 -0
- package/lib/module/component/Tab/RoundTab.js +161 -0
- package/lib/module/component/Tab/RoundTab.js.map +1 -0
- package/lib/module/component/Tab/index.js +6 -0
- package/lib/module/component/Tab/index.js.map +1 -0
- package/lib/module/component/TabPager.js +39 -0
- package/lib/module/component/TabPager.js.map +1 -0
- package/lib/module/component/Tag.js +154 -0
- package/lib/module/component/Tag.js.map +1 -0
- package/lib/module/component/TagHorizontalList.js +91 -0
- package/lib/module/component/TagHorizontalList.js.map +1 -0
- package/lib/module/component/TextField/BaseTextField.js +125 -0
- package/lib/module/component/TextField/BaseTextField.js.map +1 -0
- package/lib/module/component/TextField/CoreTextField.js +70 -0
- package/lib/module/component/TextField/CoreTextField.js.map +1 -0
- package/lib/module/component/TextField/index.js +5 -0
- package/lib/module/component/TextField/index.js.map +1 -0
- package/lib/module/component/TextField/textFieldNumericFormatUtils.js +69 -0
- package/lib/module/component/TextField/textFieldNumericFormatUtils.js.map +1 -0
- package/lib/module/component/TextField/textFieldNumericFormatUtils.test.js +16 -0
- package/lib/module/component/TextField/textFieldNumericFormatUtils.test.js.map +1 -0
- package/lib/module/component/ToolTip/BaseToolTip.js +131 -0
- package/lib/module/component/ToolTip/BaseToolTip.js.map +1 -0
- package/lib/module/component/ToolTip/TextToolTip.js +46 -0
- package/lib/module/component/ToolTip/TextToolTip.js.map +1 -0
- package/lib/module/component/ToolTip/index.js +5 -0
- package/lib/module/component/ToolTip/index.js.map +1 -0
- package/lib/module/component/Txt/Font.js +9 -0
- package/lib/module/component/Txt/Font.js.map +1 -0
- package/lib/module/component/Txt/FontWeight.js +10 -0
- package/lib/module/component/Txt/FontWeight.js.map +1 -0
- package/lib/module/component/Txt/TextConfig.js +13 -0
- package/lib/module/component/Txt/TextConfig.js.map +1 -0
- package/lib/module/component/Txt/Txt.js +323 -0
- package/lib/module/component/Txt/Txt.js.map +1 -0
- package/lib/module/component/Txt/index.js +7 -0
- package/lib/module/component/Txt/index.js.map +1 -0
- package/lib/module/component/dialog/CommonBottomSheetDialog.js +162 -0
- package/lib/module/component/dialog/CommonBottomSheetDialog.js.map +1 -0
- package/lib/module/component/dialog/CommonDialog.js +253 -0
- package/lib/module/component/dialog/CommonDialog.js.map +1 -0
- package/lib/module/component/dialog/DialogProvider.js +69 -0
- package/lib/module/component/dialog/DialogProvider.js.map +1 -0
- package/lib/module/component/dialog/ItemSelectBottomSheetDialog.js +110 -0
- package/lib/module/component/dialog/ItemSelectBottomSheetDialog.js.map +1 -0
- package/lib/module/component/dialog/LottieDialog.js +72 -0
- package/lib/module/component/dialog/LottieDialog.js.map +1 -0
- package/lib/module/component/dialog/ToastDialog.js +107 -0
- package/lib/module/component/dialog/ToastDialog.js.map +1 -0
- package/lib/module/component/dialog/base/BottomSheetDialog.js +47 -0
- package/lib/module/component/dialog/base/BottomSheetDialog.js.map +1 -0
- package/lib/module/component/dialog/base/Dialog.js +52 -0
- package/lib/module/component/dialog/base/Dialog.js.map +1 -0
- package/lib/module/component/dialog/base/ModalBox.js +482 -0
- package/lib/module/component/dialog/base/ModalBox.js.map +1 -0
- package/lib/module/component/dialog/base/index.js +6 -0
- package/lib/module/component/dialog/base/index.js.map +1 -0
- package/lib/module/component/dialog/index.js +10 -0
- package/lib/module/component/dialog/index.js.map +1 -0
- package/lib/module/component/index.js +60 -0
- package/lib/module/component/index.js.map +1 -0
- package/lib/module/hoc/index.js +5 -0
- package/lib/module/hoc/index.js.map +1 -0
- package/lib/module/hoc/withProviders.js +21 -0
- package/lib/module/hoc/withProviders.js.map +1 -0
- package/lib/module/hoc/withReanimated.js +18 -0
- package/lib/module/hoc/withReanimated.js.map +1 -0
- package/lib/module/hook/index.js +14 -0
- package/lib/module/hook/index.js.map +1 -0
- package/lib/module/hook/useAppState.js +16 -0
- package/lib/module/hook/useAppState.js.map +1 -0
- package/lib/module/hook/useDialogHandler.js +25 -0
- package/lib/module/hook/useDialogHandler.js.map +1 -0
- package/lib/module/hook/useFloatingKeyboard.js +28 -0
- package/lib/module/hook/useFloatingKeyboard.js.map +1 -0
- package/lib/module/hook/useIntervalCallback.js +18 -0
- package/lib/module/hook/useIntervalCallback.js.map +1 -0
- package/lib/module/hook/useKeyboard.js +32 -0
- package/lib/module/hook/useKeyboard.js.map +1 -0
- package/lib/module/hook/useMount.js +20 -0
- package/lib/module/hook/useMount.js.map +1 -0
- package/lib/module/hook/useRefValue.js +8 -0
- package/lib/module/hook/useRefValue.js.map +1 -0
- package/lib/module/hook/useScrollViewOnEndReachedConfig.js +31 -0
- package/lib/module/hook/useScrollViewOnEndReachedConfig.js.map +1 -0
- package/lib/module/hook/useStableCallback.js +30 -0
- package/lib/module/hook/useStableCallback.js.map +1 -0
- package/lib/module/hook/useTimeoutHandler.js +50 -0
- package/lib/module/hook/useTimeoutHandler.js.map +1 -0
- package/lib/module/hook/useTimeoutHandler.test.js +102 -0
- package/lib/module/hook/useTimeoutHandler.test.js.map +1 -0
- package/lib/module/hook/useUnmount.js +22 -0
- package/lib/module/hook/useUnmount.js.map +1 -0
- package/lib/module/index.js +4 -3
- package/lib/module/index.js.map +1 -1
- package/lib/module/theme/StyledSystemTheme.js +38 -0
- package/lib/module/theme/StyledSystemTheme.js.map +1 -0
- package/lib/module/theme/index.js +6 -0
- package/lib/module/theme/index.js.map +1 -0
- package/lib/module/theme/token/gradient.js +150 -0
- package/lib/module/theme/token/gradient.js.map +1 -0
- package/lib/module/theme/token/index.js +6 -0
- package/lib/module/theme/token/index.js.map +1 -0
- package/lib/module/theme/token/palette.js +60 -0
- package/lib/module/theme/token/palette.js.map +1 -0
- package/lib/module/theme/token/spacing.js +64 -0
- package/lib/module/theme/token/spacing.js.map +1 -0
- package/lib/module/type/environment.d.js +2 -0
- package/lib/module/type/environment.d.js.map +1 -0
- package/lib/module/util/AppEvent.js +58 -0
- package/lib/module/util/AppEvent.js.map +1 -0
- package/lib/module/util/ColorUtil.js +15 -0
- package/lib/module/util/ColorUtil.js.map +1 -0
- package/lib/module/util/ColorUtil.test.js +26 -0
- package/lib/module/util/ColorUtil.test.js.map +1 -0
- package/lib/module/util/EnvironmentUtil.js +18 -0
- package/lib/module/util/EnvironmentUtil.js.map +1 -0
- package/lib/module/util/Px.js +10 -0
- package/lib/module/util/Px.js.map +1 -0
- package/lib/module/util/StyleUtil.js +45 -0
- package/lib/module/util/StyleUtil.js.map +1 -0
- package/lib/module/util/createCtx.js +28 -0
- package/lib/module/util/createCtx.js.map +1 -0
- package/lib/module/util/index.js +10 -0
- package/lib/module/util/index.js.map +1 -0
- package/lib/module/util/is.js +65 -0
- package/lib/module/util/is.js.map +1 -0
- package/lib/module/util/runAfterFlushMacroQueue.js +8 -0
- package/lib/module/util/runAfterFlushMacroQueue.js.map +1 -0
- package/lib/typescript/commonjs/src/component/AnimatedNumber.d.ts +17 -0
- package/lib/typescript/commonjs/src/component/AnimatedNumber.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/CircleEffectAnimation.d.ts +5 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/CircleEffectAnimation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/FadeInOutLoop.d.ts +13 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/FadeInOutLoop.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/LeftAndRight.d.ts +10 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/LeftAndRight.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/Pulse.d.ts +13 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/Pulse.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/UpAndDown.d.ts +10 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/UpAndDown.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/index.d.ts +6 -0
- package/lib/typescript/commonjs/src/component/Animation/etc/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/FadeIn.d.ts +8 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/FadeIn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/FadeInOut.d.ts +8 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/FadeInOut.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/ImperativeAnimation.d.ts +31 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/ImperativeAnimation.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/Shake.d.ts +8 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/Shake.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/SlideIn.d.ts +7 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/SlideIn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/SlideInOut.d.ts +10 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/SlideInOut.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/index.d.ts +7 -0
- package/lib/typescript/commonjs/src/component/Animation/imperative/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/implicit/OpacityAnimatedView.d.ts +10 -0
- package/lib/typescript/commonjs/src/component/Animation/implicit/OpacityAnimatedView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/implicit/ZoomIn.d.ts +9 -0
- package/lib/typescript/commonjs/src/component/Animation/implicit/ZoomIn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/implicit/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/component/Animation/implicit/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Animation/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/component/Animation/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Badge.d.ts +9 -0
- package/lib/typescript/commonjs/src/component/Badge.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Banner/BannerItem.d.ts +19 -0
- package/lib/typescript/commonjs/src/component/Banner/BannerItem.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Banner/BannerRectangle.d.ts +11 -0
- package/lib/typescript/commonjs/src/component/Banner/BannerRectangle.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Banner/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/component/Banner/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/BaseWebView.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/BaseWebView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Box/index.d.ts +489 -0
- package/lib/typescript/commonjs/src/component/Box/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Btn/BaseBtn.d.ts +22 -0
- package/lib/typescript/commonjs/src/component/Btn/BaseBtn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Btn/FixedBottomCTABtn.d.ts +11 -0
- package/lib/typescript/commonjs/src/component/Btn/FixedBottomCTABtn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Btn/IconBtn.d.ts +20 -0
- package/lib/typescript/commonjs/src/component/Btn/IconBtn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Btn/InteractiveToggledIconBtn.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/Btn/InteractiveToggledIconBtn.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Btn/index.d.ts +6 -0
- package/lib/typescript/commonjs/src/component/Btn/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Card.d.ts +7 -0
- package/lib/typescript/commonjs/src/component/Card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Carousel.d.ts +16 -0
- package/lib/typescript/commonjs/src/component/Carousel.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Chip.d.ts +20 -0
- package/lib/typescript/commonjs/src/component/Chip.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/CloneWithGlobalPositionView.d.ts +19 -0
- package/lib/typescript/commonjs/src/component/CloneWithGlobalPositionView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/DialogHandler.d.ts +9 -0
- package/lib/typescript/commonjs/src/component/DialogHandler.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Dot.d.ts +13 -0
- package/lib/typescript/commonjs/src/component/Dot.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/DotLoadingIndicator.d.ts +13 -0
- package/lib/typescript/commonjs/src/component/DotLoadingIndicator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/EmptyState.d.ts +24 -0
- package/lib/typescript/commonjs/src/component/EmptyState.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/FloatingRoundChip.d.ts +13 -0
- package/lib/typescript/commonjs/src/component/FloatingRoundChip.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/GradientBorderContainer.d.ts +13 -0
- package/lib/typescript/commonjs/src/component/GradientBorderContainer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/GradientBorderContainer.web.d.ts +4 -0
- package/lib/typescript/commonjs/src/component/GradientBorderContainer.web.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/GradientCollection.d.ts +9 -0
- package/lib/typescript/commonjs/src/component/GradientCollection.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/GradientMask.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/GradientMask.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/GradientMask.web.d.ts +4 -0
- package/lib/typescript/commonjs/src/component/GradientMask.web.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Header/BackButtonHeader.d.ts +7 -0
- package/lib/typescript/commonjs/src/component/Header/BackButtonHeader.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Header/CloseButtonHeader.d.ts +5 -0
- package/lib/typescript/commonjs/src/component/Header/CloseButtonHeader.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Header/Header.d.ts +24 -0
- package/lib/typescript/commonjs/src/component/Header/Header.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Header/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/component/Header/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/HorizontalStackedBar.d.ts +8 -0
- package/lib/typescript/commonjs/src/component/HorizontalStackedBar.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Icon/AnimatedIcon.d.ts +13 -0
- package/lib/typescript/commonjs/src/component/Icon/AnimatedIcon.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Icon/Icons.d.ts +220 -0
- package/lib/typescript/commonjs/src/component/Icon/Icons.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Icon/index.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/Icon/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/IconCheckbox.d.ts +20 -0
- package/lib/typescript/commonjs/src/component/IconCheckbox.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Img/ImageConfig.d.ts +22 -0
- package/lib/typescript/commonjs/src/component/Img/ImageConfig.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Img/Img.d.ts +48 -0
- package/lib/typescript/commonjs/src/component/Img/Img.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Img/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/component/Img/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/AdaptiveHeightConstraintView.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/Layout/AdaptiveHeightConstraintView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/AdaptiveWidthConstraintView.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/Layout/AdaptiveWidthConstraintView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/AdaptiveWindowLayout.d.ts +17 -0
- package/lib/typescript/commonjs/src/component/Layout/AdaptiveWindowLayout.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/Column.d.ts +11 -0
- package/lib/typescript/commonjs/src/component/Layout/Column.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/FixedBottomLayout.d.ts +8 -0
- package/lib/typescript/commonjs/src/component/Layout/FixedBottomLayout.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/Gap.d.ts +11 -0
- package/lib/typescript/commonjs/src/component/Layout/Gap.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/Grid.d.ts +21 -0
- package/lib/typescript/commonjs/src/component/Layout/Grid.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/ItemList.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/Layout/ItemList.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/Layout/LayoutProvider.d.ts +42 -0
- package/lib/typescript/commonjs/src/component/Layout/Layout/LayoutProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/Layout/WindowSizeClass.d.ts +27 -0
- package/lib/typescript/commonjs/src/component/Layout/Layout/WindowSizeClass.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/Layout/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/component/Layout/Layout/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/Layout/useDynamicDimensions.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/Layout/Layout/useDynamicDimensions.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/LayoutStyle.d.ts +6 -0
- package/lib/typescript/commonjs/src/component/Layout/LayoutStyle.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/Row.d.ts +10 -0
- package/lib/typescript/commonjs/src/component/Layout/Row.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/SectionLayout/Section.d.ts +10 -0
- package/lib/typescript/commonjs/src/component/Layout/SectionLayout/Section.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/SectionLayout/SectionLayout.d.ts +11 -0
- package/lib/typescript/commonjs/src/component/Layout/SectionLayout/SectionLayout.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/SectionLayout/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/component/Layout/SectionLayout/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/SingleOrTwoColumnCellLayout.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/Layout/SingleOrTwoColumnCellLayout.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/WhiteGradientFixedBottomLayout.d.ts +7 -0
- package/lib/typescript/commonjs/src/component/Layout/WhiteGradientFixedBottomLayout.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Layout/index.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/Layout/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/LiText.d.ts +11 -0
- package/lib/typescript/commonjs/src/component/LiText.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/LineDivider.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/LineDivider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/LoadingFallbackView.d.ts +6 -0
- package/lib/typescript/commonjs/src/component/LoadingFallbackView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/LoadingIndicator.d.ts +11 -0
- package/lib/typescript/commonjs/src/component/LoadingIndicator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/LoadingIndicatorView.d.ts +5 -0
- package/lib/typescript/commonjs/src/component/LoadingIndicatorView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Lottie/index.d.ts +9 -0
- package/lib/typescript/commonjs/src/component/Lottie/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/MarqueeView.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/MarqueeView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/NumberBadge.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/NumberBadge.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/OnMountEvent.d.ts +8 -0
- package/lib/typescript/commonjs/src/component/OnMountEvent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/PaginatedFlashList.d.ts +77 -0
- package/lib/typescript/commonjs/src/component/PaginatedFlashList.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/PaginatedFlatList.d.ts +85 -0
- package/lib/typescript/commonjs/src/component/PaginatedFlatList.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Paginator.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/Paginator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/PartialRerender.d.ts +16 -0
- package/lib/typescript/commonjs/src/component/PartialRerender.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/PieChart.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/PieChart.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Portal/Portal.d.ts +11 -0
- package/lib/typescript/commonjs/src/component/Portal/Portal.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Portal/PortalConsumer.d.ts +16 -0
- package/lib/typescript/commonjs/src/component/Portal/PortalConsumer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Portal/PortalHost.d.ts +25 -0
- package/lib/typescript/commonjs/src/component/Portal/PortalHost.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Portal/PortalManager.d.ts +16 -0
- package/lib/typescript/commonjs/src/component/Portal/PortalManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Portal/index.d.ts +5 -0
- package/lib/typescript/commonjs/src/component/Portal/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Pressable/LoadingIndicatorTouchable.d.ts +7 -0
- package/lib/typescript/commonjs/src/component/Pressable/LoadingIndicatorTouchable.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Pressable/PressableDelayed.d.ts +8 -0
- package/lib/typescript/commonjs/src/component/Pressable/PressableDelayed.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Pressable/Touch.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/Pressable/Touch.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Pressable/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/component/Pressable/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Pressable/useDisabilityAwareDebouncer.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/Pressable/useDisabilityAwareDebouncer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Progress/CircularProgressIndicator.d.ts +24 -0
- package/lib/typescript/commonjs/src/component/Progress/CircularProgressIndicator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Progress/ImageCircularProgressIndicator.d.ts +11 -0
- package/lib/typescript/commonjs/src/component/Progress/ImageCircularProgressIndicator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Progress/LinearProgressBar.d.ts +16 -0
- package/lib/typescript/commonjs/src/component/Progress/LinearProgressBar.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Progress/Slider.d.ts +23 -0
- package/lib/typescript/commonjs/src/component/Progress/Slider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Progress/index.d.ts +5 -0
- package/lib/typescript/commonjs/src/component/Progress/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/RadioButton.d.ts +9 -0
- package/lib/typescript/commonjs/src/component/RadioButton.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/ReadMoreText.d.ts +11 -0
- package/lib/typescript/commonjs/src/component/ReadMoreText.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/ReadMoreText.web.d.ts +5 -0
- package/lib/typescript/commonjs/src/component/ReadMoreText.web.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/ReanimatedBox/index.d.ts +212 -0
- package/lib/typescript/commonjs/src/component/ReanimatedBox/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/ReanimatedStyledScrollView/index.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/ReanimatedStyledScrollView/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/RefreshControlEx.d.ts +6 -0
- package/lib/typescript/commonjs/src/component/RefreshControlEx.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/StyledScrollView/index.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/StyledScrollView/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Switch.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/Switch.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Tab/BaseTab.d.ts +19 -0
- package/lib/typescript/commonjs/src/component/Tab/BaseTab.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Tab/IndicatorTab.d.ts +9 -0
- package/lib/typescript/commonjs/src/component/Tab/IndicatorTab.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Tab/RoundTab.d.ts +16 -0
- package/lib/typescript/commonjs/src/component/Tab/RoundTab.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Tab/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/component/Tab/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/TabPager.d.ts +14 -0
- package/lib/typescript/commonjs/src/component/TabPager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Tag.d.ts +24 -0
- package/lib/typescript/commonjs/src/component/Tag.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/TagHorizontalList.d.ts +16 -0
- package/lib/typescript/commonjs/src/component/TagHorizontalList.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/TextField/BaseTextField.d.ts +37 -0
- package/lib/typescript/commonjs/src/component/TextField/BaseTextField.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/TextField/CoreTextField.d.ts +35 -0
- package/lib/typescript/commonjs/src/component/TextField/CoreTextField.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/TextField/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/component/TextField/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/TextField/textFieldNumericFormatUtils.d.ts +9 -0
- package/lib/typescript/commonjs/src/component/TextField/textFieldNumericFormatUtils.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/TextField/textFieldNumericFormatUtils.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/component/TextField/textFieldNumericFormatUtils.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/ToolTip/BaseToolTip.d.ts +20 -0
- package/lib/typescript/commonjs/src/component/ToolTip/BaseToolTip.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/ToolTip/TextToolTip.d.ts +16 -0
- package/lib/typescript/commonjs/src/component/ToolTip/TextToolTip.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/ToolTip/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/component/ToolTip/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Txt/Font.d.ts +7 -0
- package/lib/typescript/commonjs/src/component/Txt/Font.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Txt/FontWeight.d.ts +7 -0
- package/lib/typescript/commonjs/src/component/Txt/FontWeight.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Txt/TextConfig.d.ts +30 -0
- package/lib/typescript/commonjs/src/component/Txt/TextConfig.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Txt/Txt.d.ts +66 -0
- package/lib/typescript/commonjs/src/component/Txt/Txt.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/Txt/index.d.ts +5 -0
- package/lib/typescript/commonjs/src/component/Txt/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/CommonBottomSheetDialog.d.ts +34 -0
- package/lib/typescript/commonjs/src/component/dialog/CommonBottomSheetDialog.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/CommonDialog.d.ts +39 -0
- package/lib/typescript/commonjs/src/component/dialog/CommonDialog.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/DialogProvider.d.ts +58 -0
- package/lib/typescript/commonjs/src/component/dialog/DialogProvider.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/ItemSelectBottomSheetDialog.d.ts +43 -0
- package/lib/typescript/commonjs/src/component/dialog/ItemSelectBottomSheetDialog.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/LottieDialog.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/dialog/LottieDialog.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/ToastDialog.d.ts +15 -0
- package/lib/typescript/commonjs/src/component/dialog/ToastDialog.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/base/BottomSheetDialog.d.ts +12 -0
- package/lib/typescript/commonjs/src/component/dialog/base/BottomSheetDialog.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/base/Dialog.d.ts +27 -0
- package/lib/typescript/commonjs/src/component/dialog/base/Dialog.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/base/ModalBox.d.ts +71 -0
- package/lib/typescript/commonjs/src/component/dialog/base/ModalBox.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/base/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/component/dialog/base/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/dialog/index.d.ts +8 -0
- package/lib/typescript/commonjs/src/component/dialog/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/component/index.d.ts +58 -0
- package/lib/typescript/commonjs/src/component/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hoc/index.d.ts +3 -0
- package/lib/typescript/commonjs/src/hoc/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hoc/withProviders.d.ts +5 -0
- package/lib/typescript/commonjs/src/hoc/withProviders.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hoc/withReanimated.d.ts +3 -0
- package/lib/typescript/commonjs/src/hoc/withReanimated.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/index.d.ts +12 -0
- package/lib/typescript/commonjs/src/hook/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useAppState.d.ts +2 -0
- package/lib/typescript/commonjs/src/hook/useAppState.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useDialogHandler.d.ts +14 -0
- package/lib/typescript/commonjs/src/hook/useDialogHandler.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useFloatingKeyboard.d.ts +2 -0
- package/lib/typescript/commonjs/src/hook/useFloatingKeyboard.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useIntervalCallback.d.ts +2 -0
- package/lib/typescript/commonjs/src/hook/useIntervalCallback.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useKeyboard.d.ts +6 -0
- package/lib/typescript/commonjs/src/hook/useKeyboard.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useMount.d.ts +12 -0
- package/lib/typescript/commonjs/src/hook/useMount.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useRefValue.d.ts +2 -0
- package/lib/typescript/commonjs/src/hook/useRefValue.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useScrollViewOnEndReachedConfig.d.ts +11 -0
- package/lib/typescript/commonjs/src/hook/useScrollViewOnEndReachedConfig.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useStableCallback.d.ts +2 -0
- package/lib/typescript/commonjs/src/hook/useStableCallback.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useTimeoutHandler.d.ts +13 -0
- package/lib/typescript/commonjs/src/hook/useTimeoutHandler.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useTimeoutHandler.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/hook/useTimeoutHandler.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/hook/useUnmount.d.ts +11 -0
- package/lib/typescript/commonjs/src/hook/useUnmount.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +4 -1
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/theme/StyledSystemTheme.d.ts +5 -0
- package/lib/typescript/commonjs/src/theme/StyledSystemTheme.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/theme/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/theme/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/theme/token/gradient.d.ts +16 -0
- package/lib/typescript/commonjs/src/theme/token/gradient.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/theme/token/index.d.ts +4 -0
- package/lib/typescript/commonjs/src/theme/token/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/theme/token/palette.d.ts +59 -0
- package/lib/typescript/commonjs/src/theme/token/palette.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/theme/token/spacing.d.ts +34 -0
- package/lib/typescript/commonjs/src/theme/token/spacing.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/util/AppEvent.d.ts +18 -0
- package/lib/typescript/commonjs/src/util/AppEvent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/util/ColorUtil.d.ts +2 -0
- package/lib/typescript/commonjs/src/util/ColorUtil.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/util/ColorUtil.test.d.ts +2 -0
- package/lib/typescript/commonjs/src/util/ColorUtil.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/util/EnvironmentUtil.d.ts +6 -0
- package/lib/typescript/commonjs/src/util/EnvironmentUtil.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/util/Px.d.ts +2 -0
- package/lib/typescript/commonjs/src/util/Px.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/util/StyleUtil.d.ts +19 -0
- package/lib/typescript/commonjs/src/util/StyleUtil.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/util/createCtx.d.ts +15 -0
- package/lib/typescript/commonjs/src/util/createCtx.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/util/index.d.ts +8 -0
- package/lib/typescript/commonjs/src/util/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/util/is.d.ts +27 -0
- package/lib/typescript/commonjs/src/util/is.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/util/runAfterFlushMacroQueue.d.ts +2 -0
- package/lib/typescript/commonjs/src/util/runAfterFlushMacroQueue.d.ts.map +1 -0
- package/lib/typescript/commonjs/test/util/RealTimerUtil.d.ts +2 -0
- package/lib/typescript/commonjs/test/util/RealTimerUtil.d.ts.map +1 -0
- package/lib/typescript/module/src/component/AnimatedNumber.d.ts +17 -0
- package/lib/typescript/module/src/component/AnimatedNumber.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/etc/CircleEffectAnimation.d.ts +5 -0
- package/lib/typescript/module/src/component/Animation/etc/CircleEffectAnimation.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/etc/FadeInOutLoop.d.ts +13 -0
- package/lib/typescript/module/src/component/Animation/etc/FadeInOutLoop.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/etc/LeftAndRight.d.ts +10 -0
- package/lib/typescript/module/src/component/Animation/etc/LeftAndRight.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/etc/Pulse.d.ts +13 -0
- package/lib/typescript/module/src/component/Animation/etc/Pulse.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/etc/UpAndDown.d.ts +10 -0
- package/lib/typescript/module/src/component/Animation/etc/UpAndDown.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/etc/index.d.ts +6 -0
- package/lib/typescript/module/src/component/Animation/etc/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/imperative/FadeIn.d.ts +8 -0
- package/lib/typescript/module/src/component/Animation/imperative/FadeIn.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/imperative/FadeInOut.d.ts +8 -0
- package/lib/typescript/module/src/component/Animation/imperative/FadeInOut.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/imperative/ImperativeAnimation.d.ts +31 -0
- package/lib/typescript/module/src/component/Animation/imperative/ImperativeAnimation.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/imperative/Shake.d.ts +8 -0
- package/lib/typescript/module/src/component/Animation/imperative/Shake.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/imperative/SlideIn.d.ts +7 -0
- package/lib/typescript/module/src/component/Animation/imperative/SlideIn.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/imperative/SlideInOut.d.ts +10 -0
- package/lib/typescript/module/src/component/Animation/imperative/SlideInOut.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/imperative/index.d.ts +7 -0
- package/lib/typescript/module/src/component/Animation/imperative/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/implicit/OpacityAnimatedView.d.ts +10 -0
- package/lib/typescript/module/src/component/Animation/implicit/OpacityAnimatedView.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/implicit/ZoomIn.d.ts +9 -0
- package/lib/typescript/module/src/component/Animation/implicit/ZoomIn.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/implicit/index.d.ts +3 -0
- package/lib/typescript/module/src/component/Animation/implicit/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Animation/index.d.ts +4 -0
- package/lib/typescript/module/src/component/Animation/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Badge.d.ts +9 -0
- package/lib/typescript/module/src/component/Badge.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Banner/BannerItem.d.ts +19 -0
- package/lib/typescript/module/src/component/Banner/BannerItem.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Banner/BannerRectangle.d.ts +11 -0
- package/lib/typescript/module/src/component/Banner/BannerRectangle.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Banner/index.d.ts +3 -0
- package/lib/typescript/module/src/component/Banner/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/BaseWebView.d.ts +12 -0
- package/lib/typescript/module/src/component/BaseWebView.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Box/index.d.ts +489 -0
- package/lib/typescript/module/src/component/Box/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Btn/BaseBtn.d.ts +22 -0
- package/lib/typescript/module/src/component/Btn/BaseBtn.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Btn/FixedBottomCTABtn.d.ts +11 -0
- package/lib/typescript/module/src/component/Btn/FixedBottomCTABtn.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Btn/IconBtn.d.ts +20 -0
- package/lib/typescript/module/src/component/Btn/IconBtn.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Btn/InteractiveToggledIconBtn.d.ts +15 -0
- package/lib/typescript/module/src/component/Btn/InteractiveToggledIconBtn.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Btn/index.d.ts +6 -0
- package/lib/typescript/module/src/component/Btn/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Card.d.ts +7 -0
- package/lib/typescript/module/src/component/Card.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Carousel.d.ts +16 -0
- package/lib/typescript/module/src/component/Carousel.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Chip.d.ts +20 -0
- package/lib/typescript/module/src/component/Chip.d.ts.map +1 -0
- package/lib/typescript/module/src/component/CloneWithGlobalPositionView.d.ts +19 -0
- package/lib/typescript/module/src/component/CloneWithGlobalPositionView.d.ts.map +1 -0
- package/lib/typescript/module/src/component/DialogHandler.d.ts +9 -0
- package/lib/typescript/module/src/component/DialogHandler.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Dot.d.ts +13 -0
- package/lib/typescript/module/src/component/Dot.d.ts.map +1 -0
- package/lib/typescript/module/src/component/DotLoadingIndicator.d.ts +13 -0
- package/lib/typescript/module/src/component/DotLoadingIndicator.d.ts.map +1 -0
- package/lib/typescript/module/src/component/EmptyState.d.ts +24 -0
- package/lib/typescript/module/src/component/EmptyState.d.ts.map +1 -0
- package/lib/typescript/module/src/component/FloatingRoundChip.d.ts +13 -0
- package/lib/typescript/module/src/component/FloatingRoundChip.d.ts.map +1 -0
- package/lib/typescript/module/src/component/GradientBorderContainer.d.ts +13 -0
- package/lib/typescript/module/src/component/GradientBorderContainer.d.ts.map +1 -0
- package/lib/typescript/module/src/component/GradientBorderContainer.web.d.ts +4 -0
- package/lib/typescript/module/src/component/GradientBorderContainer.web.d.ts.map +1 -0
- package/lib/typescript/module/src/component/GradientCollection.d.ts +9 -0
- package/lib/typescript/module/src/component/GradientCollection.d.ts.map +1 -0
- package/lib/typescript/module/src/component/GradientMask.d.ts +12 -0
- package/lib/typescript/module/src/component/GradientMask.d.ts.map +1 -0
- package/lib/typescript/module/src/component/GradientMask.web.d.ts +4 -0
- package/lib/typescript/module/src/component/GradientMask.web.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Header/BackButtonHeader.d.ts +7 -0
- package/lib/typescript/module/src/component/Header/BackButtonHeader.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Header/CloseButtonHeader.d.ts +5 -0
- package/lib/typescript/module/src/component/Header/CloseButtonHeader.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Header/Header.d.ts +24 -0
- package/lib/typescript/module/src/component/Header/Header.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Header/index.d.ts +4 -0
- package/lib/typescript/module/src/component/Header/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/HorizontalStackedBar.d.ts +8 -0
- package/lib/typescript/module/src/component/HorizontalStackedBar.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Icon/AnimatedIcon.d.ts +13 -0
- package/lib/typescript/module/src/component/Icon/AnimatedIcon.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Icon/Icons.d.ts +220 -0
- package/lib/typescript/module/src/component/Icon/Icons.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Icon/index.d.ts +15 -0
- package/lib/typescript/module/src/component/Icon/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/IconCheckbox.d.ts +20 -0
- package/lib/typescript/module/src/component/IconCheckbox.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Img/ImageConfig.d.ts +22 -0
- package/lib/typescript/module/src/component/Img/ImageConfig.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Img/Img.d.ts +48 -0
- package/lib/typescript/module/src/component/Img/Img.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Img/index.d.ts +3 -0
- package/lib/typescript/module/src/component/Img/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/AdaptiveHeightConstraintView.d.ts +12 -0
- package/lib/typescript/module/src/component/Layout/AdaptiveHeightConstraintView.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/AdaptiveWidthConstraintView.d.ts +12 -0
- package/lib/typescript/module/src/component/Layout/AdaptiveWidthConstraintView.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/AdaptiveWindowLayout.d.ts +17 -0
- package/lib/typescript/module/src/component/Layout/AdaptiveWindowLayout.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/Column.d.ts +11 -0
- package/lib/typescript/module/src/component/Layout/Column.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/FixedBottomLayout.d.ts +8 -0
- package/lib/typescript/module/src/component/Layout/FixedBottomLayout.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/Gap.d.ts +11 -0
- package/lib/typescript/module/src/component/Layout/Gap.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/Grid.d.ts +21 -0
- package/lib/typescript/module/src/component/Layout/Grid.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/ItemList.d.ts +15 -0
- package/lib/typescript/module/src/component/Layout/ItemList.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/Layout/LayoutProvider.d.ts +42 -0
- package/lib/typescript/module/src/component/Layout/Layout/LayoutProvider.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/Layout/WindowSizeClass.d.ts +27 -0
- package/lib/typescript/module/src/component/Layout/Layout/WindowSizeClass.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/Layout/index.d.ts +4 -0
- package/lib/typescript/module/src/component/Layout/Layout/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/Layout/useDynamicDimensions.d.ts +12 -0
- package/lib/typescript/module/src/component/Layout/Layout/useDynamicDimensions.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/LayoutStyle.d.ts +6 -0
- package/lib/typescript/module/src/component/Layout/LayoutStyle.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/Row.d.ts +10 -0
- package/lib/typescript/module/src/component/Layout/Row.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/SectionLayout/Section.d.ts +10 -0
- package/lib/typescript/module/src/component/Layout/SectionLayout/Section.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/SectionLayout/SectionLayout.d.ts +11 -0
- package/lib/typescript/module/src/component/Layout/SectionLayout/SectionLayout.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/SectionLayout/index.d.ts +4 -0
- package/lib/typescript/module/src/component/Layout/SectionLayout/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/SingleOrTwoColumnCellLayout.d.ts +12 -0
- package/lib/typescript/module/src/component/Layout/SingleOrTwoColumnCellLayout.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/WhiteGradientFixedBottomLayout.d.ts +7 -0
- package/lib/typescript/module/src/component/Layout/WhiteGradientFixedBottomLayout.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Layout/index.d.ts +15 -0
- package/lib/typescript/module/src/component/Layout/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/LiText.d.ts +11 -0
- package/lib/typescript/module/src/component/LiText.d.ts.map +1 -0
- package/lib/typescript/module/src/component/LineDivider.d.ts +12 -0
- package/lib/typescript/module/src/component/LineDivider.d.ts.map +1 -0
- package/lib/typescript/module/src/component/LoadingFallbackView.d.ts +6 -0
- package/lib/typescript/module/src/component/LoadingFallbackView.d.ts.map +1 -0
- package/lib/typescript/module/src/component/LoadingIndicator.d.ts +11 -0
- package/lib/typescript/module/src/component/LoadingIndicator.d.ts.map +1 -0
- package/lib/typescript/module/src/component/LoadingIndicatorView.d.ts +5 -0
- package/lib/typescript/module/src/component/LoadingIndicatorView.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Lottie/index.d.ts +9 -0
- package/lib/typescript/module/src/component/Lottie/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/MarqueeView.d.ts +12 -0
- package/lib/typescript/module/src/component/MarqueeView.d.ts.map +1 -0
- package/lib/typescript/module/src/component/NumberBadge.d.ts +15 -0
- package/lib/typescript/module/src/component/NumberBadge.d.ts.map +1 -0
- package/lib/typescript/module/src/component/OnMountEvent.d.ts +8 -0
- package/lib/typescript/module/src/component/OnMountEvent.d.ts.map +1 -0
- package/lib/typescript/module/src/component/PaginatedFlashList.d.ts +77 -0
- package/lib/typescript/module/src/component/PaginatedFlashList.d.ts.map +1 -0
- package/lib/typescript/module/src/component/PaginatedFlatList.d.ts +85 -0
- package/lib/typescript/module/src/component/PaginatedFlatList.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Paginator.d.ts +15 -0
- package/lib/typescript/module/src/component/Paginator.d.ts.map +1 -0
- package/lib/typescript/module/src/component/PartialRerender.d.ts +16 -0
- package/lib/typescript/module/src/component/PartialRerender.d.ts.map +1 -0
- package/lib/typescript/module/src/component/PieChart.d.ts +12 -0
- package/lib/typescript/module/src/component/PieChart.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Portal/Portal.d.ts +11 -0
- package/lib/typescript/module/src/component/Portal/Portal.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Portal/PortalConsumer.d.ts +16 -0
- package/lib/typescript/module/src/component/Portal/PortalConsumer.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Portal/PortalHost.d.ts +25 -0
- package/lib/typescript/module/src/component/Portal/PortalHost.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Portal/PortalManager.d.ts +16 -0
- package/lib/typescript/module/src/component/Portal/PortalManager.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Portal/index.d.ts +5 -0
- package/lib/typescript/module/src/component/Portal/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Pressable/LoadingIndicatorTouchable.d.ts +7 -0
- package/lib/typescript/module/src/component/Pressable/LoadingIndicatorTouchable.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Pressable/PressableDelayed.d.ts +8 -0
- package/lib/typescript/module/src/component/Pressable/PressableDelayed.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Pressable/Touch.d.ts +12 -0
- package/lib/typescript/module/src/component/Pressable/Touch.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Pressable/index.d.ts +4 -0
- package/lib/typescript/module/src/component/Pressable/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Pressable/useDisabilityAwareDebouncer.d.ts +15 -0
- package/lib/typescript/module/src/component/Pressable/useDisabilityAwareDebouncer.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Progress/CircularProgressIndicator.d.ts +24 -0
- package/lib/typescript/module/src/component/Progress/CircularProgressIndicator.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Progress/ImageCircularProgressIndicator.d.ts +11 -0
- package/lib/typescript/module/src/component/Progress/ImageCircularProgressIndicator.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Progress/LinearProgressBar.d.ts +16 -0
- package/lib/typescript/module/src/component/Progress/LinearProgressBar.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Progress/Slider.d.ts +23 -0
- package/lib/typescript/module/src/component/Progress/Slider.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Progress/index.d.ts +5 -0
- package/lib/typescript/module/src/component/Progress/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/RadioButton.d.ts +9 -0
- package/lib/typescript/module/src/component/RadioButton.d.ts.map +1 -0
- package/lib/typescript/module/src/component/ReadMoreText.d.ts +11 -0
- package/lib/typescript/module/src/component/ReadMoreText.d.ts.map +1 -0
- package/lib/typescript/module/src/component/ReadMoreText.web.d.ts +5 -0
- package/lib/typescript/module/src/component/ReadMoreText.web.d.ts.map +1 -0
- package/lib/typescript/module/src/component/ReanimatedBox/index.d.ts +212 -0
- package/lib/typescript/module/src/component/ReanimatedBox/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/ReanimatedStyledScrollView/index.d.ts +15 -0
- package/lib/typescript/module/src/component/ReanimatedStyledScrollView/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/RefreshControlEx.d.ts +6 -0
- package/lib/typescript/module/src/component/RefreshControlEx.d.ts.map +1 -0
- package/lib/typescript/module/src/component/StyledScrollView/index.d.ts +15 -0
- package/lib/typescript/module/src/component/StyledScrollView/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Switch.d.ts +12 -0
- package/lib/typescript/module/src/component/Switch.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Tab/BaseTab.d.ts +19 -0
- package/lib/typescript/module/src/component/Tab/BaseTab.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Tab/IndicatorTab.d.ts +9 -0
- package/lib/typescript/module/src/component/Tab/IndicatorTab.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Tab/RoundTab.d.ts +16 -0
- package/lib/typescript/module/src/component/Tab/RoundTab.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Tab/index.d.ts +4 -0
- package/lib/typescript/module/src/component/Tab/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/TabPager.d.ts +14 -0
- package/lib/typescript/module/src/component/TabPager.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Tag.d.ts +24 -0
- package/lib/typescript/module/src/component/Tag.d.ts.map +1 -0
- package/lib/typescript/module/src/component/TagHorizontalList.d.ts +16 -0
- package/lib/typescript/module/src/component/TagHorizontalList.d.ts.map +1 -0
- package/lib/typescript/module/src/component/TextField/BaseTextField.d.ts +37 -0
- package/lib/typescript/module/src/component/TextField/BaseTextField.d.ts.map +1 -0
- package/lib/typescript/module/src/component/TextField/CoreTextField.d.ts +35 -0
- package/lib/typescript/module/src/component/TextField/CoreTextField.d.ts.map +1 -0
- package/lib/typescript/module/src/component/TextField/index.d.ts +3 -0
- package/lib/typescript/module/src/component/TextField/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/TextField/textFieldNumericFormatUtils.d.ts +9 -0
- package/lib/typescript/module/src/component/TextField/textFieldNumericFormatUtils.d.ts.map +1 -0
- package/lib/typescript/module/src/component/TextField/textFieldNumericFormatUtils.test.d.ts +2 -0
- package/lib/typescript/module/src/component/TextField/textFieldNumericFormatUtils.test.d.ts.map +1 -0
- package/lib/typescript/module/src/component/ToolTip/BaseToolTip.d.ts +20 -0
- package/lib/typescript/module/src/component/ToolTip/BaseToolTip.d.ts.map +1 -0
- package/lib/typescript/module/src/component/ToolTip/TextToolTip.d.ts +16 -0
- package/lib/typescript/module/src/component/ToolTip/TextToolTip.d.ts.map +1 -0
- package/lib/typescript/module/src/component/ToolTip/index.d.ts +3 -0
- package/lib/typescript/module/src/component/ToolTip/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Txt/Font.d.ts +7 -0
- package/lib/typescript/module/src/component/Txt/Font.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Txt/FontWeight.d.ts +7 -0
- package/lib/typescript/module/src/component/Txt/FontWeight.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Txt/TextConfig.d.ts +30 -0
- package/lib/typescript/module/src/component/Txt/TextConfig.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Txt/Txt.d.ts +66 -0
- package/lib/typescript/module/src/component/Txt/Txt.d.ts.map +1 -0
- package/lib/typescript/module/src/component/Txt/index.d.ts +5 -0
- package/lib/typescript/module/src/component/Txt/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/CommonBottomSheetDialog.d.ts +34 -0
- package/lib/typescript/module/src/component/dialog/CommonBottomSheetDialog.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/CommonDialog.d.ts +39 -0
- package/lib/typescript/module/src/component/dialog/CommonDialog.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/DialogProvider.d.ts +58 -0
- package/lib/typescript/module/src/component/dialog/DialogProvider.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/ItemSelectBottomSheetDialog.d.ts +43 -0
- package/lib/typescript/module/src/component/dialog/ItemSelectBottomSheetDialog.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/LottieDialog.d.ts +15 -0
- package/lib/typescript/module/src/component/dialog/LottieDialog.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/ToastDialog.d.ts +15 -0
- package/lib/typescript/module/src/component/dialog/ToastDialog.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/base/BottomSheetDialog.d.ts +12 -0
- package/lib/typescript/module/src/component/dialog/base/BottomSheetDialog.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/base/Dialog.d.ts +27 -0
- package/lib/typescript/module/src/component/dialog/base/Dialog.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/base/ModalBox.d.ts +71 -0
- package/lib/typescript/module/src/component/dialog/base/ModalBox.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/base/index.d.ts +4 -0
- package/lib/typescript/module/src/component/dialog/base/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/dialog/index.d.ts +8 -0
- package/lib/typescript/module/src/component/dialog/index.d.ts.map +1 -0
- package/lib/typescript/module/src/component/index.d.ts +58 -0
- package/lib/typescript/module/src/component/index.d.ts.map +1 -0
- package/lib/typescript/module/src/hoc/index.d.ts +3 -0
- package/lib/typescript/module/src/hoc/index.d.ts.map +1 -0
- package/lib/typescript/module/src/hoc/withProviders.d.ts +5 -0
- package/lib/typescript/module/src/hoc/withProviders.d.ts.map +1 -0
- package/lib/typescript/module/src/hoc/withReanimated.d.ts +3 -0
- package/lib/typescript/module/src/hoc/withReanimated.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/index.d.ts +12 -0
- package/lib/typescript/module/src/hook/index.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useAppState.d.ts +2 -0
- package/lib/typescript/module/src/hook/useAppState.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useDialogHandler.d.ts +14 -0
- package/lib/typescript/module/src/hook/useDialogHandler.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useFloatingKeyboard.d.ts +2 -0
- package/lib/typescript/module/src/hook/useFloatingKeyboard.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useIntervalCallback.d.ts +2 -0
- package/lib/typescript/module/src/hook/useIntervalCallback.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useKeyboard.d.ts +6 -0
- package/lib/typescript/module/src/hook/useKeyboard.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useMount.d.ts +12 -0
- package/lib/typescript/module/src/hook/useMount.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useRefValue.d.ts +2 -0
- package/lib/typescript/module/src/hook/useRefValue.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useScrollViewOnEndReachedConfig.d.ts +11 -0
- package/lib/typescript/module/src/hook/useScrollViewOnEndReachedConfig.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useStableCallback.d.ts +2 -0
- package/lib/typescript/module/src/hook/useStableCallback.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useTimeoutHandler.d.ts +13 -0
- package/lib/typescript/module/src/hook/useTimeoutHandler.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useTimeoutHandler.test.d.ts +2 -0
- package/lib/typescript/module/src/hook/useTimeoutHandler.test.d.ts.map +1 -0
- package/lib/typescript/module/src/hook/useUnmount.d.ts +11 -0
- package/lib/typescript/module/src/hook/useUnmount.d.ts.map +1 -0
- package/lib/typescript/module/src/index.d.ts +4 -1
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/theme/StyledSystemTheme.d.ts +5 -0
- package/lib/typescript/module/src/theme/StyledSystemTheme.d.ts.map +1 -0
- package/lib/typescript/module/src/theme/index.d.ts +4 -0
- package/lib/typescript/module/src/theme/index.d.ts.map +1 -0
- package/lib/typescript/module/src/theme/token/gradient.d.ts +16 -0
- package/lib/typescript/module/src/theme/token/gradient.d.ts.map +1 -0
- package/lib/typescript/module/src/theme/token/index.d.ts +4 -0
- package/lib/typescript/module/src/theme/token/index.d.ts.map +1 -0
- package/lib/typescript/module/src/theme/token/palette.d.ts +59 -0
- package/lib/typescript/module/src/theme/token/palette.d.ts.map +1 -0
- package/lib/typescript/module/src/theme/token/spacing.d.ts +34 -0
- package/lib/typescript/module/src/theme/token/spacing.d.ts.map +1 -0
- package/lib/typescript/module/src/util/AppEvent.d.ts +18 -0
- package/lib/typescript/module/src/util/AppEvent.d.ts.map +1 -0
- package/lib/typescript/module/src/util/ColorUtil.d.ts +2 -0
- package/lib/typescript/module/src/util/ColorUtil.d.ts.map +1 -0
- package/lib/typescript/module/src/util/ColorUtil.test.d.ts +2 -0
- package/lib/typescript/module/src/util/ColorUtil.test.d.ts.map +1 -0
- package/lib/typescript/module/src/util/EnvironmentUtil.d.ts +6 -0
- package/lib/typescript/module/src/util/EnvironmentUtil.d.ts.map +1 -0
- package/lib/typescript/module/src/util/Px.d.ts +2 -0
- package/lib/typescript/module/src/util/Px.d.ts.map +1 -0
- package/lib/typescript/module/src/util/StyleUtil.d.ts +19 -0
- package/lib/typescript/module/src/util/StyleUtil.d.ts.map +1 -0
- package/lib/typescript/module/src/util/createCtx.d.ts +15 -0
- package/lib/typescript/module/src/util/createCtx.d.ts.map +1 -0
- package/lib/typescript/module/src/util/index.d.ts +8 -0
- package/lib/typescript/module/src/util/index.d.ts.map +1 -0
- package/lib/typescript/module/src/util/is.d.ts +27 -0
- package/lib/typescript/module/src/util/is.d.ts.map +1 -0
- package/lib/typescript/module/src/util/runAfterFlushMacroQueue.d.ts +2 -0
- package/lib/typescript/module/src/util/runAfterFlushMacroQueue.d.ts.map +1 -0
- package/lib/typescript/module/test/util/RealTimerUtil.d.ts +2 -0
- package/lib/typescript/module/test/util/RealTimerUtil.d.ts.map +1 -0
- package/package.json +95 -89
- package/src/assets/icons/bookmark_animation.svg +3 -0
- package/src/assets/icons/chat_bubble_question_animation.svg +3 -0
- package/src/component/AnimatedNumber.tsx +302 -0
- package/src/component/Animation/etc/CircleEffectAnimation.tsx +97 -0
- package/src/component/Animation/etc/FadeInOutLoop.tsx +66 -0
- package/src/component/Animation/etc/LeftAndRight.tsx +26 -0
- package/src/component/Animation/etc/Pulse.tsx +76 -0
- package/src/component/Animation/etc/UpAndDown.tsx +26 -0
- package/src/component/Animation/etc/index.ts +5 -0
- package/src/component/Animation/imperative/FadeIn.tsx +23 -0
- package/src/component/Animation/imperative/FadeInOut.tsx +31 -0
- package/src/component/Animation/imperative/ImperativeAnimation.tsx +99 -0
- package/src/component/Animation/imperative/Shake.tsx +32 -0
- package/src/component/Animation/imperative/SlideIn.tsx +22 -0
- package/src/component/Animation/imperative/SlideInOut.tsx +41 -0
- package/src/component/Animation/imperative/index.ts +6 -0
- package/src/component/Animation/implicit/OpacityAnimatedView.tsx +41 -0
- package/src/component/Animation/implicit/ZoomIn.tsx +29 -0
- package/src/component/Animation/implicit/index.ts +2 -0
- package/src/component/Animation/index.ts +3 -0
- package/src/component/Badge.tsx +15 -0
- package/src/component/Banner/BannerItem.tsx +57 -0
- package/src/component/Banner/BannerRectangle.tsx +36 -0
- package/src/component/Banner/index.ts +2 -0
- package/src/component/BaseWebView.tsx +34 -0
- package/src/component/Box/index.tsx +10 -0
- package/src/component/Btn/BaseBtn.tsx +346 -0
- package/src/component/Btn/FixedBottomCTABtn.tsx +27 -0
- package/src/component/Btn/IconBtn.tsx +314 -0
- package/src/component/Btn/InteractiveToggledIconBtn.tsx +129 -0
- package/src/component/Btn/index.ts +10 -0
- package/src/component/Card.tsx +22 -0
- package/src/component/Carousel.tsx +57 -0
- package/src/component/Chip.tsx +200 -0
- package/src/component/CloneWithGlobalPositionView.tsx +49 -0
- package/src/component/DialogHandler.tsx +26 -0
- package/src/component/Dot.tsx +40 -0
- package/src/component/DotLoadingIndicator.tsx +54 -0
- package/src/component/EmptyState.tsx +70 -0
- package/src/component/FloatingRoundChip.tsx +52 -0
- package/src/component/GradientBorderContainer.tsx +55 -0
- package/src/component/GradientBorderContainer.web.tsx +23 -0
- package/src/component/GradientCollection.tsx +51 -0
- package/src/component/GradientMask.tsx +39 -0
- package/src/component/GradientMask.web.tsx +150 -0
- package/src/component/Header/BackButtonHeader.tsx +29 -0
- package/src/component/Header/CloseButtonHeader.tsx +27 -0
- package/src/component/Header/Header.tsx +120 -0
- package/src/component/Header/index.ts +3 -0
- package/src/component/HorizontalStackedBar.tsx +28 -0
- package/src/component/Icon/AnimatedIcon.tsx +27 -0
- package/src/component/Icon/Icons.tsx +219 -0
- package/src/component/Icon/index.tsx +28 -0
- package/src/component/IconCheckbox.tsx +78 -0
- package/src/component/Img/ImageConfig.ts +27 -0
- package/src/component/Img/Img.tsx +176 -0
- package/src/component/Img/index.ts +2 -0
- package/src/component/Layout/AdaptiveHeightConstraintView.tsx +53 -0
- package/src/component/Layout/AdaptiveWidthConstraintView.tsx +53 -0
- package/src/component/Layout/AdaptiveWindowLayout.tsx +55 -0
- package/src/component/Layout/Column.tsx +16 -0
- package/src/component/Layout/FixedBottomLayout.tsx +54 -0
- package/src/component/Layout/Gap.tsx +16 -0
- package/src/component/Layout/Grid.tsx +97 -0
- package/src/component/Layout/ItemList.tsx +34 -0
- package/src/component/Layout/Layout/LayoutProvider.tsx +139 -0
- package/src/component/Layout/Layout/WindowSizeClass.ts +51 -0
- package/src/component/Layout/Layout/index.ts +3 -0
- package/src/component/Layout/Layout/useDynamicDimensions.ts +28 -0
- package/src/component/Layout/LayoutStyle.ts +28 -0
- package/src/component/Layout/Row.tsx +15 -0
- package/src/component/Layout/SectionLayout/Section.tsx +23 -0
- package/src/component/Layout/SectionLayout/SectionLayout.tsx +46 -0
- package/src/component/Layout/SectionLayout/index.ts +4 -0
- package/src/component/Layout/SingleOrTwoColumnCellLayout.tsx +40 -0
- package/src/component/Layout/WhiteGradientFixedBottomLayout.tsx +27 -0
- package/src/component/Layout/index.ts +14 -0
- package/src/component/LiText.tsx +20 -0
- package/src/component/LineDivider.tsx +29 -0
- package/src/component/LoadingFallbackView.tsx +15 -0
- package/src/component/LoadingIndicator.tsx +26 -0
- package/src/component/LoadingIndicatorView.tsx +22 -0
- package/src/component/Lottie/index.tsx +59 -0
- package/src/component/MarqueeView.tsx +105 -0
- package/src/component/NumberBadge.tsx +60 -0
- package/src/component/OnMountEvent.tsx +10 -0
- package/src/component/PaginatedFlashList.tsx +221 -0
- package/src/component/PaginatedFlatList.tsx +223 -0
- package/src/component/Paginator.tsx +48 -0
- package/src/component/PartialRerender.tsx +24 -0
- package/src/component/PieChart.tsx +67 -0
- package/src/component/Portal/Portal.tsx +24 -0
- package/src/component/Portal/PortalConsumer.tsx +42 -0
- package/src/component/Portal/PortalHost.tsx +116 -0
- package/src/component/Portal/PortalManager.tsx +51 -0
- package/src/component/Portal/index.ts +4 -0
- package/src/component/Pressable/LoadingIndicatorTouchable.tsx +16 -0
- package/src/component/Pressable/PressableDelayed.tsx +34 -0
- package/src/component/Pressable/Touch.tsx +39 -0
- package/src/component/Pressable/index.ts +3 -0
- package/src/component/Pressable/useDisabilityAwareDebouncer.ts +75 -0
- package/src/component/Progress/CircularProgressIndicator.tsx +126 -0
- package/src/component/Progress/ImageCircularProgressIndicator.tsx +23 -0
- package/src/component/Progress/LinearProgressBar.tsx +63 -0
- package/src/component/Progress/Slider.tsx +167 -0
- package/src/component/Progress/index.ts +4 -0
- package/src/component/RadioButton.tsx +28 -0
- package/src/component/ReadMoreText.tsx +60 -0
- package/src/component/ReadMoreText.web.tsx +9 -0
- package/src/component/ReanimatedBox/index.tsx +16 -0
- package/src/component/ReanimatedStyledScrollView/index.tsx +29 -0
- package/src/component/RefreshControlEx.tsx +17 -0
- package/src/component/StyledScrollView/index.tsx +21 -0
- package/src/component/Switch.tsx +86 -0
- package/src/component/Tab/BaseTab.tsx +58 -0
- package/src/component/Tab/IndicatorTab.tsx +53 -0
- package/src/component/Tab/RoundTab.tsx +164 -0
- package/src/component/Tab/index.ts +3 -0
- package/src/component/TabPager.tsx +54 -0
- package/src/component/Tag.tsx +193 -0
- package/src/component/TagHorizontalList.tsx +92 -0
- package/src/component/TextField/BaseTextField.tsx +156 -0
- package/src/component/TextField/CoreTextField.tsx +112 -0
- package/src/component/TextField/index.ts +3 -0
- package/src/component/TextField/textFieldNumericFormatUtils.test.ts +17 -0
- package/src/component/TextField/textFieldNumericFormatUtils.ts +74 -0
- package/src/component/ToolTip/BaseToolTip.tsx +175 -0
- package/src/component/ToolTip/TextToolTip.tsx +53 -0
- package/src/component/ToolTip/index.ts +2 -0
- package/src/component/Txt/Font.ts +7 -0
- package/src/component/Txt/FontWeight.ts +6 -0
- package/src/component/Txt/TextConfig.ts +42 -0
- package/src/component/Txt/Txt.tsx +266 -0
- package/src/component/Txt/index.ts +4 -0
- package/src/component/dialog/CommonBottomSheetDialog.tsx +240 -0
- package/src/component/dialog/CommonDialog.tsx +304 -0
- package/src/component/dialog/DialogProvider.tsx +93 -0
- package/src/component/dialog/ItemSelectBottomSheetDialog.tsx +114 -0
- package/src/component/dialog/LottieDialog.tsx +85 -0
- package/src/component/dialog/ToastDialog.tsx +128 -0
- package/src/component/dialog/base/BottomSheetDialog.tsx +44 -0
- package/src/component/dialog/base/Dialog.tsx +62 -0
- package/src/component/dialog/base/ModalBox.tsx +556 -0
- package/src/component/dialog/base/index.ts +3 -0
- package/src/component/dialog/index.ts +7 -0
- package/src/component/index.ts +58 -0
- package/src/hoc/index.ts +2 -0
- package/src/hoc/withProviders.tsx +16 -0
- package/src/hoc/withReanimated.tsx +16 -0
- package/src/hook/index.ts +11 -0
- package/src/hook/useAppState.ts +17 -0
- package/src/hook/useDialogHandler.tsx +33 -0
- package/src/hook/useFloatingKeyboard.ts +30 -0
- package/src/hook/useIntervalCallback.tsx +19 -0
- package/src/hook/useKeyboard.ts +35 -0
- package/src/hook/useMount.ts +19 -0
- package/src/hook/useRefValue.ts +6 -0
- package/src/hook/useScrollViewOnEndReachedConfig.ts +42 -0
- package/src/hook/useStableCallback.ts +28 -0
- package/src/hook/useTimeoutHandler.test.ts +110 -0
- package/src/hook/useTimeoutHandler.ts +50 -0
- package/src/hook/useUnmount.ts +21 -0
- package/src/index.tsx +4 -3
- package/src/theme/StyledSystemTheme.ts +37 -0
- package/src/theme/index.ts +4 -0
- package/src/theme/token/gradient.ts +103 -0
- package/src/theme/token/index.ts +3 -0
- package/src/theme/token/palette.ts +60 -0
- package/src/theme/token/spacing.ts +35 -0
- package/src/type/environment.d.ts +28 -0
- package/src/util/AppEvent.ts +75 -0
- package/src/util/ColorUtil.test.ts +26 -0
- package/src/util/ColorUtil.ts +15 -0
- package/src/util/EnvironmentUtil.ts +19 -0
- package/src/util/Px.ts +8 -0
- package/src/util/StyleUtil.ts +66 -0
- package/src/util/createCtx.ts +42 -0
- package/src/util/index.ts +7 -0
- package/src/util/is.ts +78 -0
- package/src/util/runAfterFlushMacroQueue.ts +5 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type GradientProps = {
|
|
2
|
+
colors: string[];
|
|
3
|
+
locations: number[];
|
|
4
|
+
start?: {
|
|
5
|
+
x: number;
|
|
6
|
+
y: number;
|
|
7
|
+
};
|
|
8
|
+
end?: {
|
|
9
|
+
x: number;
|
|
10
|
+
y: number;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
declare const gradient: Record<'gradient1' | 'gradient2' | 'gradient3' | 'gradient4' | 'gradient5' | 'shortsPlayerTop' | 'shortsPlayeBottomPlaybackHidden' | 'shortsPlayerBottomPlaybackShowing' | 'problemSolveBottomSheet' | 'fkffkf' | 'friendInviteTab' | 'gold', GradientProps>;
|
|
14
|
+
export type GradientType = keyof typeof gradient;
|
|
15
|
+
export { gradient };
|
|
16
|
+
//# sourceMappingURL=gradient.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gradient.d.ts","sourceRoot":"","sources":["../../../../../../src/theme/token/gradient.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG;IAC1B,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,KAAK,CAAC,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACjC,GAAG,CAAC,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;CAChC,CAAC;AAEF,QAAA,MAAM,QAAQ,EAAE,MAAM,CAClB,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,iBAAiB,GACjB,iCAAiC,GACjC,mCAAmC,GACnC,yBAAyB,GACzB,QAAQ,GACR,iBAAiB,GACjB,MAAM,EACR,aAAa,CA+Ed,CAAC;AACF,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,QAAQ,CAAC;AAEjD,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/theme/token/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
declare const palette: {
|
|
2
|
+
readonly white: "#FFFFFF";
|
|
3
|
+
readonly black: "#000000";
|
|
4
|
+
readonly transparent: "#FFFFFF00";
|
|
5
|
+
readonly gray50: "#F9FAFB";
|
|
6
|
+
readonly gray100: "#F3F4F6";
|
|
7
|
+
readonly gray200: "#E5E7EB";
|
|
8
|
+
readonly gray300: "#D1D5DB";
|
|
9
|
+
readonly gray400: "#8D94A0";
|
|
10
|
+
readonly gray500: "#7A828D";
|
|
11
|
+
readonly gray600: "#6F7680";
|
|
12
|
+
readonly gray700: "#575C64";
|
|
13
|
+
readonly gray800: "#43484E";
|
|
14
|
+
readonly gray900: "#33373B";
|
|
15
|
+
readonly violet50: "#F3EFFD";
|
|
16
|
+
readonly violet100: "#E8E1FB";
|
|
17
|
+
readonly violet200: "#D9CDF9";
|
|
18
|
+
readonly violet300: "#C6B5F6";
|
|
19
|
+
readonly violet400: "#9C7EEF";
|
|
20
|
+
readonly violet500: "#835EEB";
|
|
21
|
+
readonly violet600: "#7756D6";
|
|
22
|
+
readonly violet700: "#5D43A7";
|
|
23
|
+
readonly violet800: "#483481";
|
|
24
|
+
readonly violet900: "#372763";
|
|
25
|
+
readonly green50: "#E9FAF6";
|
|
26
|
+
readonly green100: "#BAEFE2";
|
|
27
|
+
readonly green200: "#98E8D4";
|
|
28
|
+
readonly green300: "#69DDC0";
|
|
29
|
+
readonly green400: "#4CD6B4";
|
|
30
|
+
readonly green500: "#1FCCA1";
|
|
31
|
+
readonly green600: "#169172";
|
|
32
|
+
readonly yellow50: "#FFF9E6";
|
|
33
|
+
readonly yellow100: "#FFECB2";
|
|
34
|
+
readonly yellow200: "#FFE28D";
|
|
35
|
+
readonly yellow300: "#FFD559";
|
|
36
|
+
readonly yellow400: "#FFCD39";
|
|
37
|
+
readonly yellow500: "#FFC107";
|
|
38
|
+
readonly yellow600: "#E8B006";
|
|
39
|
+
readonly red50: "#FEE9EB";
|
|
40
|
+
readonly red100: "#FBBCC0";
|
|
41
|
+
readonly red200: "#F99CA2";
|
|
42
|
+
readonly red300: "#F66E78";
|
|
43
|
+
readonly red400: "#F5525D";
|
|
44
|
+
readonly red500: "#F22735";
|
|
45
|
+
readonly red600: "#DC2330";
|
|
46
|
+
readonly blue50: "#edf2fd";
|
|
47
|
+
readonly blue100: "#c6d8fa";
|
|
48
|
+
readonly blue200: "#abc5f7";
|
|
49
|
+
readonly blue300: "#84aaf4";
|
|
50
|
+
readonly blue400: "#6d99f1";
|
|
51
|
+
readonly blue500: "#4880ee";
|
|
52
|
+
readonly blue600: "#4274d9";
|
|
53
|
+
readonly blue700: "#335ba9";
|
|
54
|
+
readonly blue800: "#284683";
|
|
55
|
+
readonly blue900: "#1e3664";
|
|
56
|
+
};
|
|
57
|
+
export type PaletteColor = keyof typeof palette;
|
|
58
|
+
export { palette };
|
|
59
|
+
//# sourceMappingURL=palette.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"palette.d.ts","sourceRoot":"","sources":["../../../../../../src/theme/token/palette.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuDH,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,OAAO,CAAC;AAEhD,OAAO,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const spacing: {
|
|
2
|
+
readonly 0: number;
|
|
3
|
+
readonly px: 1;
|
|
4
|
+
readonly 0.5: number;
|
|
5
|
+
readonly 1: number;
|
|
6
|
+
readonly 2: number;
|
|
7
|
+
readonly 3: number;
|
|
8
|
+
readonly 4: number;
|
|
9
|
+
readonly 5: number;
|
|
10
|
+
readonly 6: number;
|
|
11
|
+
readonly 7: number;
|
|
12
|
+
readonly 8: number;
|
|
13
|
+
readonly 9: number;
|
|
14
|
+
readonly 10: number;
|
|
15
|
+
readonly 11: number;
|
|
16
|
+
readonly 12: number;
|
|
17
|
+
readonly 13: number;
|
|
18
|
+
readonly 14: number;
|
|
19
|
+
readonly 15: number;
|
|
20
|
+
readonly 16: number;
|
|
21
|
+
readonly 17: number;
|
|
22
|
+
readonly 18: number;
|
|
23
|
+
readonly 19: number;
|
|
24
|
+
readonly 20: number;
|
|
25
|
+
readonly 24: number;
|
|
26
|
+
readonly 28: number;
|
|
27
|
+
readonly 30: number;
|
|
28
|
+
readonly 32: number;
|
|
29
|
+
readonly 40: number;
|
|
30
|
+
readonly 48: number;
|
|
31
|
+
};
|
|
32
|
+
export type Spacing = keyof typeof spacing;
|
|
33
|
+
export { spacing };
|
|
34
|
+
//# sourceMappingURL=spacing.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spacing.d.ts","sourceRoot":"","sources":["../../../../../../src/theme/token/spacing.ts"],"names":[],"mappings":"AACA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8BH,CAAC;AACX,MAAM,MAAM,OAAO,GAAG,MAAM,OAAO,OAAO,CAAC;AAE3C,OAAO,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type Listener<T> = (payload: T) => void;
|
|
2
|
+
export type AsyncListener<T> = (payload: T) => Promise<void>;
|
|
3
|
+
export type EventType = string;
|
|
4
|
+
declare class AppEvent {
|
|
5
|
+
#private;
|
|
6
|
+
emitEvent<Payload>(type: EventType, payload?: Payload): boolean;
|
|
7
|
+
awaitEmitEvent<Payload>(type: EventType, payload?: Payload): Promise<void>;
|
|
8
|
+
addEventListener<Payload>(type: EventType, listener: Listener<Payload> | AsyncListener<Payload>): void;
|
|
9
|
+
removeEventListener<Payload>(type: EventType, listener: Listener<Payload> | AsyncListener<Payload>): void;
|
|
10
|
+
}
|
|
11
|
+
declare const appEventInstance: AppEvent;
|
|
12
|
+
declare const useAppEventListener: <T>(type: EventType, listener: Listener<T>, unsubscribe?: () => void) => void;
|
|
13
|
+
/**
|
|
14
|
+
* Event Emitter will wait the result of the listeners.
|
|
15
|
+
*/
|
|
16
|
+
declare const useAsyncAppEventListener: <T>(type: EventType, listener: AsyncListener<T>, unsubscribe?: () => void) => void;
|
|
17
|
+
export { appEventInstance as AppEvent, useAppEventListener, useAsyncAppEventListener };
|
|
18
|
+
//# sourceMappingURL=AppEvent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppEvent.d.ts","sourceRoot":"","sources":["../../../../../src/util/AppEvent.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,QAAQ,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,KAAK,IAAI,CAAC;AAC/C,MAAM,MAAM,aAAa,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;AAE7D,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC;AAE/B,cAAM,QAAQ;;IAGZ,SAAS,CAAC,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO;IASzD,cAAc,CAAC,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAOhF,gBAAgB,CAAC,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,aAAa,CAAC,OAAO,CAAC;IAS/F,mBAAmB,CAAC,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,aAAa,CAAC,OAAO,CAAC;CASnG;AAED,QAAA,MAAM,gBAAgB,UAAiB,CAAC;AAExC,QAAA,MAAM,mBAAmB,YAAa,SAAS,uCAAuC,MAAM,IAAI,SAiB/F,CAAC;AAEF;;GAEG;AACH,QAAA,MAAM,wBAAwB,YAAa,SAAS,4CAA4C,MAAM,IAAI,SAEzG,CAAC;AAEF,OAAO,EAAE,gBAAgB,IAAI,QAAQ,EAAE,mBAAmB,EAAE,wBAAwB,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColorUtil.d.ts","sourceRoot":"","sources":["../../../../../src/util/ColorUtil.ts"],"names":[],"mappings":"AAAA,wBAAgB,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAcnE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColorUtil.test.d.ts","sourceRoot":"","sources":["../../../../../src/util/ColorUtil.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare function isTestEnvironment(): boolean;
|
|
2
|
+
export declare function isDev(): boolean;
|
|
3
|
+
export declare function isDevButTestEnvironment(): boolean;
|
|
4
|
+
export declare function isHermes(): boolean;
|
|
5
|
+
export declare function isNewArch(): boolean;
|
|
6
|
+
//# sourceMappingURL=EnvironmentUtil.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EnvironmentUtil.d.ts","sourceRoot":"","sources":["../../../../../src/util/EnvironmentUtil.ts"],"names":[],"mappings":"AAAA,wBAAgB,iBAAiB,IAAI,OAAO,CAE3C;AAED,wBAAgB,KAAK,IAAI,OAAO,CAE/B;AAED,wBAAgB,uBAAuB,IAAI,OAAO,CAEjD;AAED,wBAAgB,QAAQ,IAAI,OAAO,CAElC;AAED,wBAAgB,SAAS,IAAI,OAAO,CAEnC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Px.d.ts","sourceRoot":"","sources":["../../../../../src/util/Px.ts"],"names":[],"mappings":"AAEA,wBAAgB,EAAE,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,MAAM,IAAI,CAK3C"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { ImageStyle, StyleProp, TextStyle, ViewStyle } from 'react-native';
|
|
2
|
+
export declare function flatStyle<S extends ViewStyle | ImageStyle | TextStyle>(style?: StyleProp<S>): S;
|
|
3
|
+
interface NormalizedLayout {
|
|
4
|
+
marginTop: number;
|
|
5
|
+
marginLeft: number;
|
|
6
|
+
marginRight: number;
|
|
7
|
+
marginBottom: number;
|
|
8
|
+
marginVertical: number;
|
|
9
|
+
marginHorizontal: number;
|
|
10
|
+
paddingTop: number;
|
|
11
|
+
paddingLeft: number;
|
|
12
|
+
paddingRight: number;
|
|
13
|
+
paddingBottom: number;
|
|
14
|
+
paddingVertical: number;
|
|
15
|
+
paddingHorizontal: number;
|
|
16
|
+
}
|
|
17
|
+
export declare function normalizeStyleLayout<S extends ViewStyle | ImageStyle | TextStyle>(style?: StyleProp<S>): NormalizedLayout;
|
|
18
|
+
export {};
|
|
19
|
+
//# sourceMappingURL=StyleUtil.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StyleUtil.d.ts","sourceRoot":"","sources":["../../../../../src/util/StyleUtil.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAGhF,wBAAgB,SAAS,CAAC,CAAC,SAAS,SAAS,GAAG,UAAU,GAAG,SAAS,EAAE,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,CAE/F;AAED,UAAU,gBAAgB;IACxB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;CAC3B;AAGD,wBAAgB,oBAAoB,CAAC,CAAC,SAAS,SAAS,GAAG,UAAU,GAAG,SAAS,EAC/E,KAAK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,GACnB,gBAAgB,CAuClB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { ReactNode, ReactElement, Context } from 'react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export type ChildrenTransformer = (children?: ReactNode) => ReactNode | undefined;
|
|
4
|
+
type CreatedContext<T, P> = readonly [
|
|
5
|
+
() => T,
|
|
6
|
+
(props: {
|
|
7
|
+
children?: ReactNode;
|
|
8
|
+
} & P) => ReactElement,
|
|
9
|
+
React.Consumer<T>,
|
|
10
|
+
() => T | undefined,
|
|
11
|
+
Context<T | undefined>
|
|
12
|
+
];
|
|
13
|
+
declare function createCtx<T, P extends object>(delegate: (props: P, transformChildren: (transformer: ChildrenTransformer) => void) => T, name?: string): CreatedContext<T, P>;
|
|
14
|
+
export { createCtx };
|
|
15
|
+
//# sourceMappingURL=createCtx.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createCtx.d.ts","sourceRoot":"","sources":["../../../../../src/util/createCtx.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAC9D,OAAO,KAAwB,MAAM,OAAO,CAAC;AAE7C,MAAM,MAAM,mBAAmB,GAAG,CAAC,QAAQ,CAAC,EAAE,SAAS,KAAK,SAAS,GAAG,SAAS,CAAC;AAElF,KAAK,cAAc,CAAC,CAAC,EAAE,CAAC,IAAI,SAAS;IACnC,MAAM,CAAC;IACP,CAAC,KAAK,EAAE;QAAE,QAAQ,CAAC,EAAE,SAAS,CAAA;KAAE,GAAG,CAAC,KAAK,YAAY;IACrD,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC;IACjB,MAAM,CAAC,GAAG,SAAS;IACnB,OAAO,CAAC,CAAC,GAAG,SAAS,CAAC;CACvB,CAAC;AACF,iBAAS,SAAS,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,EACpC,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,EAAE,iBAAiB,EAAE,CAAC,WAAW,EAAE,mBAAmB,KAAK,IAAI,KAAK,CAAC,EACxF,IAAI,SAAK,GACR,cAAc,CAAC,CAAC,EAAE,CAAC,CAAC,CAwBtB;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { default as is } from './is';
|
|
2
|
+
export * from './ColorUtil';
|
|
3
|
+
export * from './StyleUtil';
|
|
4
|
+
export * from './Px';
|
|
5
|
+
export * from './EnvironmentUtil';
|
|
6
|
+
export * from './createCtx';
|
|
7
|
+
export * from './runAfterFlushMacroQueue';
|
|
8
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/util/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,MAAM,CAAC;AACrC,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,MAAM,CAAC;AACrB,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,2BAA2B,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
type Falsy = undefined | null | 0 | false | '';
|
|
2
|
+
type Func = (...args: any[]) => any;
|
|
3
|
+
declare const is: {
|
|
4
|
+
iOS: () => boolean;
|
|
5
|
+
android: () => boolean;
|
|
6
|
+
notEmptyString: (candidate: any) => candidate is string;
|
|
7
|
+
emptyString: (candidate: any) => candidate is string;
|
|
8
|
+
emptyArray: (candidate: any) => boolean;
|
|
9
|
+
notEmptyArray: <T>(candidate: any) => candidate is T[];
|
|
10
|
+
number: (candidate: any) => candidate is number;
|
|
11
|
+
string: (candidate: any) => candidate is string;
|
|
12
|
+
integerString: (candidate: any) => candidate is string;
|
|
13
|
+
numberString: (candidate: any) => candidate is string;
|
|
14
|
+
null: (candidate: any) => candidate is null;
|
|
15
|
+
undefined: (candidate: any) => candidate is undefined;
|
|
16
|
+
nullOrUndefined: (candidate: any) => candidate is null | undefined;
|
|
17
|
+
falsy: <T_1>(candidate: Falsy | T_1) => candidate is Falsy;
|
|
18
|
+
truthy: <T_2>(candidate: Falsy | T_2) => candidate is T_2;
|
|
19
|
+
function: <T_3 extends Func, R>(candidate: T_3 | R) => candidate is T_3;
|
|
20
|
+
object: (candidate: any) => candidate is Record<string, unknown>;
|
|
21
|
+
plainObject: (candidate: any) => candidate is Record<string, unknown>;
|
|
22
|
+
array: <T_4>(candidate: any) => candidate is T_4[];
|
|
23
|
+
boolean: (candidate: any) => candidate is boolean;
|
|
24
|
+
promise: <T_5>(p: any) => p is Promise<T_5>;
|
|
25
|
+
};
|
|
26
|
+
export default is;
|
|
27
|
+
//# sourceMappingURL=is.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"is.d.ts","sourceRoot":"","sources":["../../../../../src/util/is.ts"],"names":[],"mappings":"AAEA,KAAK,KAAK,GAAG,SAAS,GAAG,IAAI,GAAG,CAAC,GAAG,KAAK,GAAG,EAAE,CAAC;AAC/C,KAAK,IAAI,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC;AAoEpC,QAAA,MAAM,EAAE;eAhCG,OAAO;mBACH,OAAO;gCARQ,GAAG;6BACN,GAAG;4BACJ,GAAG,KAAG,OAAO;kCACP,GAAG;wBA7Bb,GAAG;wBACH,GAAG;+BACI,GAAG;8BAEJ,GAAG;sBAEX,GAAG;2BACE,GAAG;iCACG,GAAG;;;;wBAIZ,GAAG;6BACE,GAAG;4BACN,GAAG;yBACJ,GAAG;;CAsDzB,CAAC;AAEF,eAAe,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runAfterFlushMacroQueue.d.ts","sourceRoot":"","sources":["../../../../../src/util/runAfterFlushMacroQueue.ts"],"names":[],"mappings":"AAAA,wBAAgB,uBAAuB,CAAC,EAAE,EAAE,QAAQ,EAAE,OAAO,SAAI,GAAG,MAAM,CAIzE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RealTimerUtil.d.ts","sourceRoot":"","sources":["../../../../../test/util/RealTimerUtil.ts"],"names":[],"mappings":"AAAA,wBAAsB,YAAY,CAAC,KAAK,SAAK,iBAE5C"}
|
package/package.json
CHANGED
|
@@ -1,14 +1,66 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-native-kit",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "React Native Common Module for Team Turing",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"example": "yarn workspace @teamturing/react-native-kit-example",
|
|
7
7
|
"dev": "yarn example start",
|
|
8
|
-
"test": "jest",
|
|
9
8
|
"check:type": "tsc",
|
|
10
9
|
"check:lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
11
|
-
"build": "bob build"
|
|
10
|
+
"build": "yarn gen:icon && yarn gen:theme && bob build",
|
|
11
|
+
"gen:icon": "bash ./script/gen_icon.sh",
|
|
12
|
+
"gen:theme": "generate-theme-type src/theme/StyledSystemTheme.ts ../../node_modules/@react-native-styled-system/core/lib/typescript/src/@types/ThemedTypings.d.ts",
|
|
13
|
+
"prepare": "yarn gen:icon && yarn gen:theme"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@mj-studio/js-util": "^1.1.16",
|
|
17
|
+
"@mj-studio/react-native-spannable-string": "^1.1.4",
|
|
18
|
+
"@react-native-community/hooks": "^3.0.0",
|
|
19
|
+
"@teamturing/icons": "^1.37.1",
|
|
20
|
+
"polished": "^4.3.1"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@babel/core": "^7.25.2",
|
|
24
|
+
"@babel/preset-env": "^7.25.3",
|
|
25
|
+
"@react-native-masked-view/masked-view": "^0.3.1",
|
|
26
|
+
"@react-native-styled-system/core": "^1.4.1",
|
|
27
|
+
"@shopify/flash-list": "^1.7.1",
|
|
28
|
+
"@testing-library/react-native": "^12.6.0",
|
|
29
|
+
"@types/react": "^18.2.44",
|
|
30
|
+
"eslint-config-expo": "^7.1.2",
|
|
31
|
+
"eslint-import-resolver-typescript": "^3.6.1",
|
|
32
|
+
"lottie-react-native": "^6.7.2",
|
|
33
|
+
"moti": "^0.29.0",
|
|
34
|
+
"react": "18.2.0",
|
|
35
|
+
"react-native": "0.74.5",
|
|
36
|
+
"react-native-builder-bob": "^0.30.0",
|
|
37
|
+
"react-native-fast-image": "^8.6.3",
|
|
38
|
+
"react-native-gesture-handler": "^2.18.1",
|
|
39
|
+
"react-native-reanimated": "^3.15.0",
|
|
40
|
+
"react-native-reanimated-carousel": "^3.5.1",
|
|
41
|
+
"react-native-safe-area-context": "^4.10.9",
|
|
42
|
+
"react-native-svg": "^15.6.0",
|
|
43
|
+
"react-native-webview": "^13.11.1",
|
|
44
|
+
"react-test-renderer": "^18.3.1"
|
|
45
|
+
},
|
|
46
|
+
"resolutions": {
|
|
47
|
+
"@types/react": "^18.2.44"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@react-native-masked-view/masked-view": "*",
|
|
51
|
+
"@react-native-styled-system/core": "*",
|
|
52
|
+
"@shopify/flash-list": "*",
|
|
53
|
+
"lottie-react-native": "*",
|
|
54
|
+
"moti": "*",
|
|
55
|
+
"react": "*",
|
|
56
|
+
"react-native": "*",
|
|
57
|
+
"react-native-fast-image": "*",
|
|
58
|
+
"react-native-gesture-handler": "*",
|
|
59
|
+
"react-native-reanimated": "3",
|
|
60
|
+
"react-native-reanimated-carousel": "3",
|
|
61
|
+
"react-native-safe-area-context": "*",
|
|
62
|
+
"react-native-svg": "*",
|
|
63
|
+
"react-native-webview": "*"
|
|
12
64
|
},
|
|
13
65
|
"source": "./src/index.tsx",
|
|
14
66
|
"main": "./lib/commonjs/index.js",
|
|
@@ -25,58 +77,15 @@
|
|
|
25
77
|
}
|
|
26
78
|
}
|
|
27
79
|
},
|
|
28
|
-
"files": [
|
|
29
|
-
"src",
|
|
30
|
-
"lib",
|
|
31
|
-
"android",
|
|
32
|
-
"ios",
|
|
33
|
-
"cpp",
|
|
34
|
-
"*.podspec",
|
|
35
|
-
"!ios/build",
|
|
36
|
-
"!android/build",
|
|
37
|
-
"!android/gradle",
|
|
38
|
-
"!android/gradlew",
|
|
39
|
-
"!android/gradlew.bat",
|
|
40
|
-
"!android/local.properties",
|
|
41
|
-
"!**/__tests__",
|
|
42
|
-
"!**/__fixtures__",
|
|
43
|
-
"!**/__mocks__",
|
|
44
|
-
"!**/.*"
|
|
45
|
-
],
|
|
46
|
-
"keywords": [
|
|
47
|
-
"react-native",
|
|
48
|
-
"ios",
|
|
49
|
-
"android"
|
|
50
|
-
],
|
|
51
|
-
"repository": {
|
|
52
|
-
"type": "git",
|
|
53
|
-
"url": "git+https://github.com/weareteamturing/bombe.git"
|
|
54
|
-
},
|
|
55
|
-
"author": "mystic <mystic@teamturing.com> (https://teamturing.com)",
|
|
56
|
-
"license": "MIT",
|
|
57
|
-
"bugs": {
|
|
58
|
-
"url": "https://github.com/weareteamturing/bombe/issues"
|
|
59
|
-
},
|
|
60
|
-
"devDependencies": {
|
|
61
|
-
"@commitlint/config-conventional": "^17.0.2",
|
|
62
|
-
"@react-native/eslint-config": "^0.73.1",
|
|
63
|
-
"@types/react": "^18.2.44",
|
|
64
|
-
"eslint-config-prettier": "^9.0.0",
|
|
65
|
-
"eslint-plugin-prettier": "^5.0.1",
|
|
66
|
-
"react": "18.2.0",
|
|
67
|
-
"react-native": "0.74.5",
|
|
68
|
-
"react-native-builder-bob": "^0.30.0"
|
|
69
|
-
},
|
|
70
|
-
"resolutions": {
|
|
71
|
-
"@types/react": "^18.2.44"
|
|
72
|
-
},
|
|
73
|
-
"peerDependencies": {
|
|
74
|
-
"react": "*",
|
|
75
|
-
"react-native": "*"
|
|
76
|
-
},
|
|
77
80
|
"workspaces": [
|
|
78
81
|
"example"
|
|
79
82
|
],
|
|
83
|
+
"eslintIgnore": [
|
|
84
|
+
"node_modules/",
|
|
85
|
+
"lib/",
|
|
86
|
+
"**/metro.config.js",
|
|
87
|
+
"**/babel.config.js"
|
|
88
|
+
],
|
|
80
89
|
"jest": {
|
|
81
90
|
"preset": "react-native",
|
|
82
91
|
"modulePathIgnorePatterns": [
|
|
@@ -84,42 +93,6 @@
|
|
|
84
93
|
"<rootDir>/lib/"
|
|
85
94
|
]
|
|
86
95
|
},
|
|
87
|
-
"commitlint": {
|
|
88
|
-
"extends": [
|
|
89
|
-
"@commitlint/config-conventional"
|
|
90
|
-
]
|
|
91
|
-
},
|
|
92
|
-
"eslintConfig": {
|
|
93
|
-
"root": true,
|
|
94
|
-
"extends": [
|
|
95
|
-
"@react-native",
|
|
96
|
-
"prettier"
|
|
97
|
-
],
|
|
98
|
-
"rules": {
|
|
99
|
-
"react/react-in-jsx-scope": "off",
|
|
100
|
-
"prettier/prettier": [
|
|
101
|
-
"error",
|
|
102
|
-
{
|
|
103
|
-
"quoteProps": "consistent",
|
|
104
|
-
"singleQuote": true,
|
|
105
|
-
"tabWidth": 2,
|
|
106
|
-
"trailingComma": "es5",
|
|
107
|
-
"useTabs": false
|
|
108
|
-
}
|
|
109
|
-
]
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
"eslintIgnore": [
|
|
113
|
-
"node_modules/",
|
|
114
|
-
"lib/"
|
|
115
|
-
],
|
|
116
|
-
"prettier": {
|
|
117
|
-
"quoteProps": "consistent",
|
|
118
|
-
"singleQuote": true,
|
|
119
|
-
"tabWidth": 2,
|
|
120
|
-
"trailingComma": "es5",
|
|
121
|
-
"useTabs": false
|
|
122
|
-
},
|
|
123
96
|
"react-native-builder-bob": {
|
|
124
97
|
"source": "src",
|
|
125
98
|
"output": "lib",
|
|
@@ -148,5 +121,38 @@
|
|
|
148
121
|
"create-react-native-library": {
|
|
149
122
|
"type": "library",
|
|
150
123
|
"version": "0.41.0"
|
|
151
|
-
}
|
|
124
|
+
},
|
|
125
|
+
"files": [
|
|
126
|
+
"src",
|
|
127
|
+
"lib",
|
|
128
|
+
"android",
|
|
129
|
+
"ios",
|
|
130
|
+
"cpp",
|
|
131
|
+
"*.podspec",
|
|
132
|
+
"!ios/build",
|
|
133
|
+
"!android/build",
|
|
134
|
+
"!android/gradle",
|
|
135
|
+
"!android/gradlew",
|
|
136
|
+
"!android/gradlew.bat",
|
|
137
|
+
"!android/local.properties",
|
|
138
|
+
"!**/__tests__",
|
|
139
|
+
"!**/__fixtures__",
|
|
140
|
+
"!**/__mocks__",
|
|
141
|
+
"!**/.*"
|
|
142
|
+
],
|
|
143
|
+
"keywords": [
|
|
144
|
+
"react-native",
|
|
145
|
+
"ios",
|
|
146
|
+
"android"
|
|
147
|
+
],
|
|
148
|
+
"repository": {
|
|
149
|
+
"type": "git",
|
|
150
|
+
"url": "git+https://github.com/weareteamturing/bombe.git"
|
|
151
|
+
},
|
|
152
|
+
"author": "mystic <mystic@teamturing.com> (https://teamturing.com)",
|
|
153
|
+
"license": "MIT",
|
|
154
|
+
"bugs": {
|
|
155
|
+
"url": "https://github.com/weareteamturing/bombe/issues"
|
|
156
|
+
},
|
|
157
|
+
"gitHead": "d8df00f538e0b17cf596492c48c71182e8286d7c"
|
|
152
158
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.5 3.4C3.5 2.7 4 2.2 4.7 2.2H19.3C20 2.2 20.5 2.7 20.5 3.4V20.7C20.5 21.2 20 21.5 19.6 21.2L12.6 17.2C12.2 17 11.8 17 11.4 17.2L4.4 21.2C4 21.4 3.5 21.1 3.5 20.7V3.4Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 0.921997C18.065 0.921997 23 5.407 23 10.922C23 16.436 18.065 20.922 12 20.922C10.795 20.922 9.491 20.801 9.047 20.756L5.479 22.674C5.3674 22.7339 5.24162 22.7624 5.11508 22.7565C4.98855 22.7506 4.86599 22.7104 4.76048 22.6403C4.65497 22.5702 4.57046 22.4728 4.51596 22.3585C4.46146 22.2441 4.43901 22.1171 4.451 21.991L4.778 18.568C1.999 16.494 1 13.28 1 10.922C1 5.407 5.935 0.921997 12 0.921997ZM12.072 13.972C11.7541 13.9723 11.4493 14.0987 11.2245 14.3235C10.9997 14.5483 10.8733 14.8531 10.873 15.171C10.8726 15.4085 10.9427 15.6407 11.0743 15.8383C11.206 16.036 11.3933 16.1901 11.6126 16.2812C11.8319 16.3723 12.0733 16.3963 12.3062 16.3501C12.5392 16.304 12.7532 16.1897 12.9212 16.0219C13.0892 15.854 13.2036 15.6401 13.2499 15.4072C13.2963 15.1743 13.2725 14.9329 13.1816 14.7135C13.0906 14.4942 12.9367 14.3067 12.7392 14.1749C12.5417 14.0431 12.3095 13.9728 12.072 13.973V13.972ZM12.057 5.5C11.1996 5.50106 10.3776 5.84212 9.77139 6.44838C9.16512 7.05465 8.82406 7.87661 8.823 8.734C8.83537 8.93419 8.92362 9.12214 9.06976 9.25952C9.21589 9.39691 9.40892 9.4734 9.6095 9.4734C9.81008 9.4734 10.0031 9.39691 10.1492 9.25952C10.2954 9.12214 10.3836 8.93419 10.396 8.734C10.396 7.818 11.141 7.073 12.057 7.073C12.621 7.073 13.193 7.333 13.514 7.735C13.759 8.043 13.835 8.41 13.738 8.826C13.629 9.306 13.348 9.505 12.814 9.846C12.164 10.263 11.271 10.834 11.271 12.281C11.2783 12.4847 11.3643 12.6777 11.511 12.8193C11.6577 12.9608 11.8536 13.0399 12.0575 13.0399C12.2614 13.0399 12.4573 12.9608 12.604 12.8193C12.7507 12.6777 12.8367 12.4847 12.844 12.281C12.844 11.716 13.081 11.542 13.664 11.17C14.234 10.805 15.014 10.306 15.271 9.178C15.474 8.298 15.287 7.438 14.743 6.754C14.127 5.981 13.098 5.5 12.057 5.5Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|