@class101/cdn-ui-system 0.0.7 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/chunk-2A2YD3YP.js +22244 -0
- package/chunk-37VQUPZR.js +217 -0
- package/chunk-BDSNAS3L.js +183 -0
- package/chunk-CGEEKALF.js +184 -0
- package/chunk-ESGHR2XF.js +603 -0
- package/chunk-IFZN3H2K.js +515 -0
- package/chunk-IPFBPHEG.js +9145 -0
- package/chunk-J3Q2BPOW.js +19 -0
- package/chunk-KBZLTPPY.js +58 -0
- package/chunk-KTYFPJF3.js +5428 -0
- package/chunk-LE44IRCL.js +152 -0
- package/chunk-LN36XQS3.js +47 -0
- package/chunk-MBYCGPJ2.js +29 -0
- package/chunk-O6RRFC57.js +255 -0
- package/chunk-QNI6E7MT.js +39 -0
- package/chunk-R4HM35UZ.js +84 -0
- package/chunk-RYCV4KQR.js +187 -0
- package/chunk-SFQY5CLW.js +300 -0
- package/chunk-SFWBAQL4.js +21 -0
- package/chunk-SPRM5WZD.js +29 -0
- package/chunk-SU3NURQK.js +254 -0
- package/chunk-T7TBQTBE.js +1510 -0
- package/chunk-VIIHQGZ3.js +76 -0
- package/chunk-XXMJSYNO.js +952 -0
- package/contexts/ImageContext/ImageContext.js +5 -3
- package/contexts/ImageContext/index.js +5 -3
- package/contexts/LinkContext/LinkContext.js +5 -3
- package/contexts/LinkContext/index.js +5 -3
- package/contexts/SafeAreaContext/SafeAreaContext.js +11 -0
- package/contexts/SafeAreaContext/index.js +10 -0
- package/contexts/ScrollContext/ScrollContext.js +18 -0
- package/contexts/ScrollContext/index.js +11 -0
- package/contexts/UiSystemProvider.js +19 -10
- package/core/colors/DarkModeColors.js +6 -3
- package/core/colors/LightModeColors.js +6 -3
- package/core/index.js +21 -9
- package/core/props/action.js +8 -3
- package/core/props/animator.js +8 -3
- package/core/props/background.js +14 -4
- package/core/props/border.js +33 -5
- package/core/props/color.js +8 -3
- package/core/props/flexbox.js +17 -4
- package/core/props/icon.js +8 -3
- package/core/props/image.js +15 -6
- package/core/props/index.js +47 -22
- package/core/props/layout.js +37 -5
- package/core/props/position.js +8 -3
- package/core/props/shadow.js +8 -3
- package/core/props/space.js +8 -3
- package/core/props/transform.js +34 -3
- package/core/props/transition.js +8 -3
- package/core/props/types/ResponsiveValue.js +6 -2
- package/core/props/types/SystemComponent.js +6 -2
- package/core/props/typography.js +15 -5
- package/core/props/utils/calculateResponsiveValues.js +27 -0
- package/core/props/utils/getResponsiveValue.js +17 -10
- package/core/props/utils/skipForwardProps.js +8 -4
- package/core/props/video.js +9 -3
- package/core/theme/baseTheme.js +17 -4
- package/core/theme/defaultTheme.js +12 -10
- package/core/theme/signatureTheme.js +14 -11
- package/core/variants/baseVariant/baseVariant.js +7 -5
- package/core/variants/baseVariant/index.js +5 -3
- package/core/variants/makeStyled/index.js +11 -0
- package/core/variants/makeStyled/makeStyled.js +19 -0
- package/core/variants/propVariant/index.js +5 -3
- package/core/variants/propVariant/propVariant.js +12 -14
- package/core/variants/propVariant/propVariant.spec.js +13 -11
- package/core/variants/propsVariant/index.js +10 -0
- package/core/variants/propsVariant/propsVariant.js +32 -0
- package/core/variants/propsVariant/propsVariant.spec.js +73 -0
- package/core/variants/styleVariant/index.js +5 -3
- package/core/variants/styleVariant/styleVariant.js +21 -14
- package/core/variants/styleVariant/styleVariant.spec.js +17 -13
- package/core/variants/stylesVariant/index.js +10 -0
- package/core/variants/stylesVariant/stylesVariant.js +40 -0
- package/core/variants/stylesVariant/stylesVariant.spec.js +52 -0
- package/core/variants/system/index.js +5 -3
- package/core/variants/system/system.js +27 -19
- package/core/variants/system/type.js +6 -0
- package/hooks/useIsMobile/index.js +10 -0
- package/hooks/useIsMobile/useIsMobile.js +12 -0
- package/hooks/useMediaQuery/index.js +10 -0
- package/hooks/useMediaQuery/useMediaQuery.js +32 -0
- package/hooks/useNativeResponsiveValue/index.js +10 -0
- package/hooks/useNativeResponsiveValue/useNativeResponsiveValue.js +42 -0
- package/hooks/useResponsiveValue/index.js +5 -3
- package/hooks/useResponsiveValue/useResponsiveValue.js +18 -8
- package/hooks/useWindowResizeEvent/index.js +10 -0
- package/hooks/useWindowResizeEvent/useWindowResizeEvent.js +27 -0
- package/index.js +160 -100
- package/lib/Accordion/Accordion.js +27 -17
- package/lib/Accordion/index.js +5 -3
- package/lib/Action/Action.js +18 -15
- package/lib/Action/index.js +5 -3
- package/lib/Alert/Alert.js +16 -11
- package/lib/Alert/index.js +5 -3
- package/lib/Animation/Animator/Animator.js +37 -25
- package/lib/Animation/Animator/index.js +5 -3
- package/lib/Animation/FadeAnimation/FadeAnimation.js +28 -15
- package/lib/Animation/FadeAnimation/index.js +5 -3
- package/lib/Animation/RotateAnimation/RotateAnimation.js +16 -8
- package/lib/Animation/RotateAnimation/index.js +5 -3
- package/lib/Animation/SlideAnimation/SlideAnimation.js +20 -10
- package/lib/Animation/SlideAnimation/index.js +5 -3
- package/lib/Animation/Transition/Transition.js +27 -16
- package/lib/Animation/Transition/index.js +5 -3
- package/lib/Avatar/Avatar.js +100 -82
- package/lib/Avatar/index.js +5 -3
- package/lib/Backdrop/Backdrop.js +15 -9
- package/lib/Backdrop/index.js +5 -3
- package/lib/Background/Background.js +15 -25
- package/lib/Background/index.js +5 -3
- package/lib/BackgroundImage/BackgroundImage.js +20 -0
- package/lib/BackgroundImage/index.js +10 -0
- package/lib/BreadCrumb/BreadCrumb.js +21 -12
- package/lib/BreadCrumb/index.js +5 -3
- package/lib/BulletPagination/BulletPagination.js +37 -0
- package/lib/BulletPagination/index.js +10 -0
- package/lib/Button/Button/Button.js +69 -19
- package/lib/Button/Button/index.js +5 -3
- package/lib/Button/ContainedButton/ContainedButton.js +147 -123
- package/lib/Button/ContainedButton/index.js +5 -3
- package/lib/Button/GhostButton/GhostButton.js +155 -0
- package/lib/Button/GhostButton/index.js +10 -0
- package/lib/Button/TextButton/TextButton.js +112 -104
- package/lib/Button/TextButton/index.js +5 -3
- package/lib/Callout/Callout.js +71 -0
- package/lib/Callout/index.js +10 -0
- package/lib/Chip/FilterChip/FilterChip.js +77 -0
- package/lib/Chip/FilterChip/index.js +10 -0
- package/lib/Chip/InputChip/InputChip.js +1443 -0
- package/lib/Chip/InputChip/index.js +10 -0
- package/lib/ConditionalWrapper/ConditionalWrapper.js +6 -3
- package/lib/ConditionalWrapper/index.js +5 -3
- package/lib/ContentArea/ContentArea.js +41 -0
- package/lib/ContentArea/index.js +10 -0
- package/lib/Divider/Divider.js +19 -15
- package/lib/Divider/index.js +5 -3
- package/lib/Dot/Dot.js +29 -0
- package/lib/Dot/index.js +10 -0
- package/lib/Drawer/Drawer.js +57 -0
- package/lib/Drawer/index.js +10 -0
- package/lib/Elevation/Elevation.js +18 -7
- package/lib/Elevation/index.js +5 -3
- package/lib/Form/CardNumberField/CardNumberField.js +28 -0
- package/lib/Form/CardNumberField/index.js +10 -0
- package/lib/Form/CardNumberInput/CardNumberInput.js +50 -0
- package/lib/Form/CardNumberInput/constants.js +16 -0
- package/lib/Form/CardNumberInput/index.js +10 -0
- package/lib/Form/CardNumberInput/utils.js +48 -0
- package/lib/Form/CheckBox/CheckBox.js +26 -20
- package/lib/Form/CheckBox/index.js +5 -3
- package/lib/Form/CheckBoxField/CheckBoxField.js +26 -17
- package/lib/Form/CheckBoxField/index.js +5 -3
- package/lib/Form/Description/Description.js +28 -19
- package/lib/Form/Description/index.js +5 -3
- package/lib/Form/FormField/FormField.js +10 -7
- package/lib/Form/FormField/index.js +5 -3
- package/lib/Form/HiddenInput/HiddenInput.js +26 -22
- package/lib/Form/HiddenInput/index.js +5 -3
- package/lib/Form/InlineTextLabel/InlineTextLabel.js +78 -20
- package/lib/Form/InlineTextLabel/index.js +5 -3
- package/lib/Form/Input/Input.js +23 -46
- package/lib/Form/Input/index.js +5 -3
- package/lib/Form/Label/Label.js +6 -3
- package/lib/Form/Label/index.js +5 -3
- package/lib/Form/Radio/Radio.js +47 -0
- package/lib/Form/Radio/index.js +10 -0
- package/lib/Form/RadioField/RadioField.js +38 -0
- package/lib/Form/RadioField/index.js +10 -0
- package/lib/Form/RadioGroupField/RadioGroupField.js +49 -0
- package/lib/Form/RadioGroupField/index.js +10 -0
- package/lib/Form/Range/Range.js +21 -17
- package/lib/Form/Range/index.js +5 -3
- package/lib/Form/SearchInput/SearchInput.js +72 -0
- package/lib/Form/SearchInput/index.js +10 -0
- package/lib/Form/Select/Select.js +60 -44
- package/lib/Form/Select/index.js +5 -3
- package/lib/Form/SelectField/SelectField.js +23 -16
- package/lib/Form/SelectField/index.js +5 -3
- package/lib/Form/TextArea/TextArea.js +16 -10
- package/lib/Form/TextArea/index.js +5 -3
- package/lib/Form/TextAreaField/TextAreaField.js +28 -0
- package/lib/Form/TextAreaField/index.js +10 -0
- package/lib/Form/TextField/TextField.js +23 -16
- package/lib/Form/TextField/index.js +5 -3
- package/lib/Form/TextInput/TextInput.js +32 -0
- package/lib/Form/TextInput/index.js +10 -0
- package/lib/Form/TextInput/variants.js +42 -0
- package/lib/Form/TextLabel/TextLabel.js +9 -6
- package/lib/Form/TextLabel/index.js +5 -3
- package/lib/GlobalStyle/GlobalStyle.js +33 -5
- package/lib/GlobalStyle/index.js +5 -3
- package/lib/GridList/GridList.js +44 -24
- package/lib/GridList/__mocks__/index.js +4 -2
- package/lib/GridList/index.js +5 -3
- package/lib/Highlight/Highlight.js +7 -4
- package/lib/Highlight/index.js +5 -3
- package/lib/HtmlContentStyle/HtmlContentStyle.js +38 -45
- package/lib/HtmlContentStyle/index.js +5 -3
- package/lib/Icon/Icon.js +4 -2
- package/lib/Icon/fill/Add.js +26 -13
- package/lib/Icon/fill/AddCircle.js +26 -13
- package/lib/Icon/fill/Alert.js +33 -20
- package/lib/Icon/fill/AlertCircle.js +26 -13
- package/lib/Icon/fill/Analysis.js +26 -13
- package/lib/Icon/fill/AppDownloadCircle.js +26 -13
- package/lib/Icon/fill/AppleCircle.js +26 -13
- package/lib/Icon/fill/Archive.js +26 -13
- package/lib/Icon/fill/ArrowDown.js +26 -13
- package/lib/Icon/fill/ArrowLeft.js +26 -13
- package/lib/Icon/fill/ArrowRight.js +26 -13
- package/lib/Icon/fill/ArrowUp.js +26 -13
- package/lib/Icon/fill/Badge.js +26 -13
- package/lib/Icon/fill/Bell.js +26 -13
- package/lib/Icon/fill/BellOff.js +26 -13
- package/lib/Icon/fill/Bold.js +26 -13
- package/lib/Icon/fill/Bookmark.js +26 -13
- package/lib/Icon/fill/Camera.js +26 -13
- package/lib/Icon/fill/Canlendar.js +26 -13
- package/lib/Icon/fill/Caption.js +29 -16
- package/lib/Icon/fill/Cart.js +32 -0
- package/lib/Icon/fill/Check.js +33 -20
- package/lib/Icon/fill/CheckCircle.js +26 -13
- package/lib/Icon/fill/CheckboxIndeterminated.js +26 -13
- package/lib/Icon/fill/CheckboxOff.js +26 -13
- package/lib/Icon/fill/CheckboxOn.js +26 -13
- package/lib/Icon/fill/ChevronDown.js +26 -13
- package/lib/Icon/fill/ChevronLeft.js +26 -13
- package/lib/Icon/fill/ChevronRight.js +26 -13
- package/lib/Icon/fill/ChevronUp.js +26 -13
- package/lib/Icon/fill/Clap.js +26 -13
- package/lib/Icon/fill/ClearStyle.js +26 -13
- package/lib/Icon/fill/Clip.js +26 -13
- package/lib/Icon/fill/Clock.js +33 -20
- package/lib/Icon/fill/Close.js +26 -13
- package/lib/Icon/fill/CloseCircle.js +26 -13
- package/lib/Icon/fill/Comment.js +26 -13
- package/lib/Icon/fill/Compass.js +26 -13
- package/lib/Icon/fill/Confetti.js +34 -21
- package/lib/Icon/fill/Contents.js +26 -13
- package/lib/Icon/fill/Copy.js +29 -16
- package/lib/Icon/fill/Coupon.js +26 -13
- package/lib/Icon/fill/CreditCard.js +26 -13
- package/lib/Icon/fill/Crop.js +26 -13
- package/lib/Icon/fill/Crown.js +26 -13
- package/lib/Icon/fill/DepositPassbook.js +26 -13
- package/lib/Icon/fill/Design.js +29 -16
- package/lib/Icon/fill/Development.js +26 -13
- package/lib/Icon/fill/DisclosureDown.js +26 -13
- package/lib/Icon/fill/DisclosureUp.js +26 -13
- package/lib/Icon/fill/Dislike.js +26 -13
- package/lib/Icon/fill/Divider.js +26 -13
- package/lib/Icon/fill/Download.js +29 -16
- package/lib/Icon/fill/DropDown.js +26 -13
- package/lib/Icon/fill/DropUp.js +26 -13
- package/lib/Icon/fill/Earybird.js +26 -13
- package/lib/Icon/fill/Edit.js +28 -15
- package/lib/Icon/fill/EyeOff.js +26 -13
- package/lib/Icon/fill/EyeOn.js +29 -16
- package/lib/Icon/fill/FacebookCircle.js +26 -13
- package/lib/Icon/fill/Filter.js +26 -13
- package/lib/Icon/fill/FullScreen.js +26 -13
- package/lib/Icon/fill/FullScreenExit.js +26 -13
- package/lib/Icon/fill/Gear.js +28 -15
- package/lib/Icon/fill/Ghost.js +26 -13
- package/lib/Icon/fill/Gift.js +26 -13
- package/lib/Icon/fill/Groove.js +26 -13
- package/lib/Icon/fill/Hashtag.js +26 -13
- package/lib/Icon/fill/Heart.js +26 -13
- package/lib/Icon/fill/HeartFull.js +26 -13
- package/lib/Icon/fill/HelpCircle.js +26 -13
- package/lib/Icon/fill/Home.js +26 -13
- package/lib/Icon/fill/Hot.js +26 -13
- package/lib/Icon/fill/InfoCircle.js +26 -13
- package/lib/Icon/fill/InstagramCircle.js +29 -16
- package/lib/Icon/fill/Laptop.js +26 -13
- package/lib/Icon/fill/Like.js +26 -13
- package/lib/Icon/fill/Link.js +29 -16
- package/lib/Icon/fill/LinkOutside.js +29 -16
- package/lib/Icon/fill/ListBullet.js +26 -13
- package/lib/Icon/fill/ListNumber.js +26 -13
- package/lib/Icon/fill/Location.js +26 -13
- package/lib/Icon/fill/LocationCurrent.js +26 -13
- package/lib/Icon/fill/Lock.js +26 -13
- package/lib/Icon/fill/LockOff.js +26 -13
- package/lib/Icon/fill/Logout.js +26 -13
- package/lib/Icon/fill/Menu.js +26 -13
- package/lib/Icon/fill/Message.js +32 -19
- package/lib/Icon/fill/Mic.js +29 -16
- package/lib/Icon/fill/Minus.js +26 -13
- package/lib/Icon/fill/MinusCircle.js +26 -13
- package/lib/Icon/fill/Mobile.js +26 -13
- package/lib/Icon/fill/Monitor.js +26 -13
- package/lib/Icon/fill/MoreHorizontal.js +26 -13
- package/lib/Icon/fill/MoreVertical.js +26 -13
- package/lib/Icon/fill/NaverCircle.js +26 -13
- package/lib/Icon/fill/Notice.js +26 -13
- package/lib/Icon/fill/Oa.js +26 -13
- package/lib/Icon/fill/Paper1.js +26 -13
- package/lib/Icon/fill/Paper2.js +26 -13
- package/lib/Icon/fill/Paper3.js +26 -13
- package/lib/Icon/fill/Person.js +29 -16
- package/lib/Icon/fill/Phone.js +26 -13
- package/lib/Icon/fill/Photo.js +29 -16
- package/lib/Icon/fill/PhotoAdd.js +29 -16
- package/lib/Icon/fill/PhotoDouble.js +32 -19
- package/lib/Icon/fill/Pin.js +26 -13
- package/lib/Icon/fill/Pip.js +29 -16
- package/lib/Icon/fill/Play.js +26 -13
- package/lib/Icon/fill/PlayBackA.js +32 -19
- package/lib/Icon/fill/PlayCircle.js +26 -13
- package/lib/Icon/fill/PlayFast.js +26 -13
- package/lib/Icon/fill/PlayFast10Sec.js +29 -16
- package/lib/Icon/fill/PlayFast15Sec.js +29 -16
- package/lib/Icon/fill/PlayFast5Sec.js +29 -16
- package/lib/Icon/fill/PlayNext.js +26 -13
- package/lib/Icon/fill/PlayPause.js +26 -13
- package/lib/Icon/fill/PlayPrev.js +26 -13
- package/lib/Icon/fill/PlayRewind10Sec.js +29 -16
- package/lib/Icon/fill/PlayRewind15Sec.js +29 -16
- package/lib/Icon/fill/PlayRewind5Sec.js +29 -16
- package/lib/Icon/fill/PlaySpeedX025.js +26 -13
- package/lib/Icon/fill/PlaySpeedX05.js +26 -13
- package/lib/Icon/fill/PlaySpeedX1.js +26 -13
- package/lib/Icon/fill/PlaySpeedX15.js +26 -13
- package/lib/Icon/fill/PlaySpeedX2.js +26 -13
- package/lib/Icon/fill/PlaystoreCircle.js +26 -13
- package/lib/Icon/fill/PointCircle.js +29 -16
- package/lib/Icon/fill/Project.js +26 -13
- package/lib/Icon/fill/Quote.js +26 -13
- package/lib/Icon/fill/QuoteReverse.js +26 -13
- package/lib/Icon/fill/Receipt.js +26 -13
- package/lib/Icon/fill/Repeat.js +26 -13
- package/lib/Icon/fill/Replay.js +29 -16
- package/lib/Icon/fill/Reply.js +26 -13
- package/lib/Icon/fill/Report.js +26 -13
- package/lib/Icon/fill/Rocket.js +26 -13
- package/lib/Icon/fill/RotateClockwise.js +33 -20
- package/lib/Icon/fill/Sad.js +26 -13
- package/lib/Icon/fill/Search.js +26 -13
- package/lib/Icon/fill/Send.js +26 -13
- package/lib/Icon/fill/Send2.js +26 -13
- package/lib/Icon/fill/Serious.js +26 -13
- package/lib/Icon/fill/Share.js +29 -16
- package/lib/Icon/fill/Sheild.js +26 -13
- package/lib/Icon/fill/ShippingTruck.js +29 -16
- package/lib/Icon/fill/Smile.js +26 -13
- package/lib/Icon/fill/SocialMedia.js +26 -13
- package/lib/Icon/fill/Sorting.js +32 -19
- package/lib/Icon/fill/Square.js +26 -13
- package/lib/Icon/fill/Star.js +26 -13
- package/lib/Icon/fill/StarFull.js +26 -13
- package/lib/Icon/fill/StarHalf.js +26 -13
- package/lib/Icon/fill/Stock.js +26 -13
- package/lib/Icon/fill/Store.js +26 -13
- package/lib/Icon/fill/Subtitle.js +26 -13
- package/lib/Icon/fill/TalkHelp.js +33 -20
- package/lib/Icon/fill/TextH1.js +26 -13
- package/lib/Icon/fill/TextH2.js +26 -13
- package/lib/Icon/fill/TextH3.js +26 -13
- package/lib/Icon/fill/ThunderCircle.js +26 -13
- package/lib/Icon/fill/Timer.js +26 -13
- package/lib/Icon/fill/ToggleOff.js +26 -13
- package/lib/Icon/fill/ToggleOn.js +26 -13
- package/lib/Icon/fill/ToteBag.js +26 -13
- package/lib/Icon/fill/Trash.js +26 -13
- package/lib/Icon/fill/TwitterCircle.js +26 -13
- package/lib/Icon/fill/Undo.js +26 -13
- package/lib/Icon/fill/Video.js +26 -13
- package/lib/Icon/fill/Volume.js +29 -16
- package/lib/Icon/fill/VolumeMute.js +26 -13
- package/lib/Icon/fill/Web.js +26 -13
- package/lib/Icon/fill/Won.js +26 -13
- package/lib/Icon/fill/WonBadge.js +26 -13
- package/lib/Icon/fill/WonCircle.js +26 -13
- package/lib/Icon/fill/Write.js +26 -13
- package/lib/Icon/fill/YoutubeCircle.js +29 -16
- package/lib/Icon/fill/index.js +182 -178
- package/lib/Icon/index.js +4 -2
- package/lib/Icon/regular/Add.js +26 -13
- package/lib/Icon/regular/AddCircle.js +29 -16
- package/lib/Icon/regular/Alert.js +29 -16
- package/lib/Icon/regular/AlertCircle.js +29 -16
- package/lib/Icon/regular/Analysis.js +26 -13
- package/lib/Icon/regular/AppDownloadCircle.js +32 -19
- package/lib/Icon/regular/AppleCircle.js +31 -18
- package/lib/Icon/regular/Archive.js +29 -16
- package/lib/Icon/regular/ArrowDown.js +26 -13
- package/lib/Icon/regular/ArrowLeft.js +26 -13
- package/lib/Icon/regular/ArrowRight.js +26 -13
- package/lib/Icon/regular/ArrowUp.js +26 -13
- package/lib/Icon/regular/Badge.js +29 -16
- package/lib/Icon/regular/Bell.js +31 -18
- package/lib/Icon/regular/BellOff.js +31 -18
- package/lib/Icon/regular/Bold.js +26 -13
- package/lib/Icon/regular/Bookmark.js +26 -13
- package/lib/Icon/regular/Camera.js +29 -16
- package/lib/Icon/regular/Canlendar.js +29 -16
- package/lib/Icon/regular/Caption.js +29 -16
- package/lib/Icon/regular/Cart.js +32 -0
- package/lib/Icon/regular/Check.js +26 -13
- package/lib/Icon/regular/CheckCircle.js +29 -16
- package/lib/Icon/regular/CheckboxIndeterminated.js +26 -13
- package/lib/Icon/regular/CheckboxOff.js +26 -13
- package/lib/Icon/regular/CheckboxOn.js +26 -13
- package/lib/Icon/regular/ChevronDown.js +26 -13
- package/lib/Icon/regular/ChevronLeft.js +26 -13
- package/lib/Icon/regular/ChevronRight.js +26 -13
- package/lib/Icon/regular/ChevronUp.js +26 -13
- package/lib/Icon/regular/Clap.js +29 -16
- package/lib/Icon/regular/ClearStyle.js +26 -13
- package/lib/Icon/regular/Clip.js +26 -13
- package/lib/Icon/regular/Clock.js +31 -18
- package/lib/Icon/regular/Close.js +26 -13
- package/lib/Icon/regular/CloseCircle.js +29 -16
- package/lib/Icon/regular/Comment.js +29 -16
- package/lib/Icon/regular/Compass.js +29 -16
- package/lib/Icon/regular/Confetti.js +26 -13
- package/lib/Icon/regular/Contents.js +29 -16
- package/lib/Icon/regular/Copy.js +29 -16
- package/lib/Icon/regular/Coupon.js +26 -13
- package/lib/Icon/regular/CreditCard.js +26 -13
- package/lib/Icon/regular/Crop.js +26 -13
- package/lib/Icon/regular/Crown.js +26 -13
- package/lib/Icon/regular/DepositPassbook.js +26 -13
- package/lib/Icon/regular/Design.js +29 -16
- package/lib/Icon/regular/Development.js +26 -13
- package/lib/Icon/regular/DisclosureDown.js +26 -13
- package/lib/Icon/regular/DisclosureUp.js +26 -13
- package/lib/Icon/regular/Dislike.js +33 -20
- package/lib/Icon/regular/Divider.js +26 -13
- package/lib/Icon/regular/Download.js +29 -16
- package/lib/Icon/regular/DropDown.js +26 -13
- package/lib/Icon/regular/DropUp.js +26 -13
- package/lib/Icon/regular/Earybird.js +29 -16
- package/lib/Icon/regular/Edit.js +26 -13
- package/lib/Icon/regular/EyeOff.js +26 -13
- package/lib/Icon/regular/EyeOn.js +29 -16
- package/lib/Icon/regular/FacebookCircle.js +31 -18
- package/lib/Icon/regular/Filter.js +26 -13
- package/lib/Icon/regular/FullScreen.js +26 -13
- package/lib/Icon/regular/FullScreenExit.js +26 -13
- package/lib/Icon/regular/Gear.js +28 -15
- package/lib/Icon/regular/Ghost.js +29 -16
- package/lib/Icon/regular/Gift.js +26 -13
- package/lib/Icon/regular/Groove.js +26 -13
- package/lib/Icon/regular/Hashtag.js +26 -13
- package/lib/Icon/regular/Heart.js +26 -13
- package/lib/Icon/regular/HeartFull.js +26 -13
- package/lib/Icon/regular/HelpCircle.js +29 -16
- package/lib/Icon/regular/Home.js +29 -16
- package/lib/Icon/regular/Hot.js +29 -16
- package/lib/Icon/regular/InfoCircle.js +29 -16
- package/lib/Icon/regular/InstagramCircle.js +32 -19
- package/lib/Icon/regular/Laptop.js +26 -13
- package/lib/Icon/regular/Like.js +26 -13
- package/lib/Icon/regular/Link.js +29 -16
- package/lib/Icon/regular/LinkOutside.js +29 -16
- package/lib/Icon/regular/ListBullet.js +26 -13
- package/lib/Icon/regular/ListNumber.js +26 -13
- package/lib/Icon/regular/Location.js +29 -16
- package/lib/Icon/regular/LocationCurrent.js +26 -13
- package/lib/Icon/regular/Lock.js +29 -16
- package/lib/Icon/regular/LockOff.js +29 -16
- package/lib/Icon/regular/Logout.js +26 -13
- package/lib/Icon/regular/Menu.js +26 -13
- package/lib/Icon/regular/Message.js +26 -13
- package/lib/Icon/regular/Mic.js +29 -16
- package/lib/Icon/regular/Minus.js +26 -13
- package/lib/Icon/regular/MinusCircle.js +29 -16
- package/lib/Icon/regular/Mobile.js +29 -16
- package/lib/Icon/regular/Monitor.js +26 -13
- package/lib/Icon/regular/MoreHorizontal.js +26 -13
- package/lib/Icon/regular/MoreVertical.js +26 -13
- package/lib/Icon/regular/NaverCircle.js +29 -16
- package/lib/Icon/regular/Notice.js +26 -13
- package/lib/Icon/regular/Oa.js +26 -13
- package/lib/Icon/regular/Paper1.js +26 -13
- package/lib/Icon/regular/Paper2.js +29 -16
- package/lib/Icon/regular/Paper3.js +29 -16
- package/lib/Icon/regular/Person.js +26 -13
- package/lib/Icon/regular/Phone.js +26 -13
- package/lib/Icon/regular/Photo.js +29 -16
- package/lib/Icon/regular/PhotoAdd.js +32 -19
- package/lib/Icon/regular/PhotoDouble.js +32 -19
- package/lib/Icon/regular/Pin.js +26 -13
- package/lib/Icon/regular/Pip.js +29 -16
- package/lib/Icon/regular/Play.js +26 -13
- package/lib/Icon/regular/PlayBackA.js +32 -19
- package/lib/Icon/regular/PlayCircle.js +29 -16
- package/lib/Icon/regular/PlayFast.js +26 -13
- package/lib/Icon/regular/PlayFast10Sec.js +29 -16
- package/lib/Icon/regular/PlayFast15Sec.js +29 -16
- package/lib/Icon/regular/PlayFast5Sec.js +29 -16
- package/lib/Icon/regular/PlayNext.js +26 -13
- package/lib/Icon/regular/PlayPause.js +26 -13
- package/lib/Icon/regular/PlayPrev.js +26 -13
- package/lib/Icon/regular/PlayRewind10Sec.js +29 -16
- package/lib/Icon/regular/PlayRewind15Sec.js +29 -16
- package/lib/Icon/regular/PlayRewind5Sec.js +29 -16
- package/lib/Icon/regular/PlaySpeedX025.js +26 -13
- package/lib/Icon/regular/PlaySpeedX05.js +26 -13
- package/lib/Icon/regular/PlaySpeedX1.js +26 -13
- package/lib/Icon/regular/PlaySpeedX15.js +26 -13
- package/lib/Icon/regular/PlaySpeedX2.js +26 -13
- package/lib/Icon/regular/PlaystoreCircle.js +29 -16
- package/lib/Icon/regular/PointCircle.js +29 -16
- package/lib/Icon/regular/Project.js +26 -13
- package/lib/Icon/regular/Quote.js +26 -13
- package/lib/Icon/regular/QuoteReverse.js +26 -13
- package/lib/Icon/regular/Receipt.js +29 -16
- package/lib/Icon/regular/Repeat.js +26 -13
- package/lib/Icon/regular/Replay.js +29 -16
- package/lib/Icon/regular/Reply.js +31 -18
- package/lib/Icon/regular/Report.js +26 -13
- package/lib/Icon/regular/Rocket.js +29 -16
- package/lib/Icon/regular/RotateClockwise.js +26 -13
- package/lib/Icon/regular/Sad.js +32 -19
- package/lib/Icon/regular/Search.js +26 -13
- package/lib/Icon/regular/Send.js +26 -13
- package/lib/Icon/regular/Send2.js +26 -13
- package/lib/Icon/regular/Serious.js +29 -16
- package/lib/Icon/regular/Share.js +29 -16
- package/lib/Icon/regular/Sheild.js +29 -16
- package/lib/Icon/regular/ShippingTruck.js +26 -13
- package/lib/Icon/regular/Smile.js +29 -16
- package/lib/Icon/regular/SocialMedia.js +29 -16
- package/lib/Icon/regular/Sorting.js +32 -19
- package/lib/Icon/regular/Square.js +26 -13
- package/lib/Icon/regular/Star.js +26 -13
- package/lib/Icon/regular/StarFull.js +26 -13
- package/lib/Icon/regular/StarHalf.js +26 -13
- package/lib/Icon/regular/Stock.js +26 -13
- package/lib/Icon/regular/Store.js +26 -13
- package/lib/Icon/regular/Subtitle.js +29 -16
- package/lib/Icon/regular/TalkHelp.js +29 -16
- package/lib/Icon/regular/TextH1.js +26 -13
- package/lib/Icon/regular/TextH2.js +26 -13
- package/lib/Icon/regular/TextH3.js +26 -13
- package/lib/Icon/regular/ThunderCircle.js +29 -16
- package/lib/Icon/regular/Timer.js +31 -18
- package/lib/Icon/regular/ToggleOff.js +26 -13
- package/lib/Icon/regular/ToggleOn.js +26 -13
- package/lib/Icon/regular/ToteBag.js +26 -13
- package/lib/Icon/regular/Trash.js +29 -16
- package/lib/Icon/regular/Twitter.js +32 -0
- package/lib/Icon/regular/TwitterCircle.js +29 -16
- package/lib/Icon/regular/Undo.js +26 -13
- package/lib/Icon/regular/Video.js +29 -16
- package/lib/Icon/regular/Volume.js +29 -16
- package/lib/Icon/regular/VolumeMute.js +26 -13
- package/lib/Icon/regular/Web.js +26 -13
- package/lib/Icon/regular/Won.js +26 -13
- package/lib/Icon/regular/WonBadge.js +29 -16
- package/lib/Icon/regular/WonCircle.js +29 -16
- package/lib/Icon/regular/Write.js +26 -13
- package/lib/Icon/regular/YoutubeCircle.js +29 -16
- package/lib/Icon/regular/index.js +184 -178
- package/lib/Icon/thin/Add.js +26 -13
- package/lib/Icon/thin/AddCircle.js +29 -16
- package/lib/Icon/thin/Alert.js +35 -22
- package/lib/Icon/thin/AlertCircle.js +29 -16
- package/lib/Icon/thin/Analysis.js +26 -13
- package/lib/Icon/thin/AppDownloadCircle.js +29 -16
- package/lib/Icon/thin/AppleCircle.js +31 -18
- package/lib/Icon/thin/Archive.js +29 -16
- package/lib/Icon/thin/ArrowDown.js +26 -13
- package/lib/Icon/thin/ArrowLeft.js +26 -13
- package/lib/Icon/thin/ArrowRight.js +26 -13
- package/lib/Icon/thin/ArrowUp.js +26 -13
- package/lib/Icon/thin/Badge.js +29 -16
- package/lib/Icon/thin/Bell.js +26 -13
- package/lib/Icon/thin/BellOff.js +26 -13
- package/lib/Icon/thin/Bold.js +26 -13
- package/lib/Icon/thin/Bookmark.js +26 -13
- package/lib/Icon/thin/Camera.js +29 -16
- package/lib/Icon/thin/Canlendar.js +29 -16
- package/lib/Icon/thin/Caption.js +29 -16
- package/lib/Icon/thin/Cart.js +32 -0
- package/lib/Icon/thin/Check.js +26 -13
- package/lib/Icon/thin/CheckCircle.js +29 -16
- package/lib/Icon/thin/CheckboxIndeterminated.js +28 -15
- package/lib/Icon/thin/CheckboxOff.js +26 -13
- package/lib/Icon/thin/CheckboxOn.js +28 -15
- package/lib/Icon/thin/ChevronDown.js +26 -13
- package/lib/Icon/thin/ChevronLeft.js +26 -13
- package/lib/Icon/thin/ChevronRight.js +26 -13
- package/lib/Icon/thin/ChevronUp.js +26 -13
- package/lib/Icon/thin/Clap.js +26 -13
- package/lib/Icon/thin/ClearStyle.js +26 -13
- package/lib/Icon/thin/Clip.js +26 -13
- package/lib/Icon/thin/Clock.js +29 -16
- package/lib/Icon/thin/Close.js +26 -13
- package/lib/Icon/thin/CloseCircle.js +29 -16
- package/lib/Icon/thin/Comment.js +29 -16
- package/lib/Icon/thin/Compass.js +29 -16
- package/lib/Icon/thin/Confetti.js +26 -13
- package/lib/Icon/thin/Contents.js +29 -16
- package/lib/Icon/thin/Copy.js +29 -16
- package/lib/Icon/thin/Coupon.js +26 -13
- package/lib/Icon/thin/CreditCard.js +26 -13
- package/lib/Icon/thin/Crop.js +26 -13
- package/lib/Icon/thin/Crown.js +26 -13
- package/lib/Icon/thin/DepositPassbook.js +26 -13
- package/lib/Icon/thin/Design.js +29 -16
- package/lib/Icon/thin/Development.js +26 -13
- package/lib/Icon/thin/DisclosureDown.js +26 -13
- package/lib/Icon/thin/DisclosureUp.js +26 -13
- package/lib/Icon/thin/Dislike.js +33 -20
- package/lib/Icon/thin/Divider.js +26 -13
- package/lib/Icon/thin/Download.js +29 -16
- package/lib/Icon/thin/DropDown.js +26 -13
- package/lib/Icon/thin/DropUp.js +26 -13
- package/lib/Icon/thin/Earybird.js +29 -16
- package/lib/Icon/thin/Edit.js +26 -13
- package/lib/Icon/thin/EyeOff.js +26 -13
- package/lib/Icon/thin/EyeOn.js +29 -16
- package/lib/Icon/thin/FacebookCircle.js +31 -18
- package/lib/Icon/thin/Filter.js +26 -13
- package/lib/Icon/thin/FullScreen.js +26 -13
- package/lib/Icon/thin/FullScreenExit.js +26 -13
- package/lib/Icon/thin/Gear.js +26 -13
- package/lib/Icon/thin/Ghost.js +29 -16
- package/lib/Icon/thin/Gift.js +26 -13
- package/lib/Icon/thin/Groove.js +26 -13
- package/lib/Icon/thin/Hashtag.js +26 -13
- package/lib/Icon/thin/Heart.js +26 -13
- package/lib/Icon/thin/HeartFull.js +26 -13
- package/lib/Icon/thin/HelpCircle.js +29 -16
- package/lib/Icon/thin/Home.js +29 -16
- package/lib/Icon/thin/Hot.js +29 -16
- package/lib/Icon/thin/InfoCircle.js +29 -16
- package/lib/Icon/thin/InstagramCircle.js +32 -19
- package/lib/Icon/thin/Laptop.js +26 -13
- package/lib/Icon/thin/Like.js +26 -13
- package/lib/Icon/thin/Link.js +29 -16
- package/lib/Icon/thin/LinkOutside.js +29 -16
- package/lib/Icon/thin/ListBullet.js +26 -13
- package/lib/Icon/thin/ListNumber.js +26 -13
- package/lib/Icon/thin/Location.js +29 -16
- package/lib/Icon/thin/LocationCurrent.js +26 -13
- package/lib/Icon/thin/Lock.js +29 -16
- package/lib/Icon/thin/LockOff.js +29 -16
- package/lib/Icon/thin/Logout.js +26 -13
- package/lib/Icon/thin/Menu.js +26 -13
- package/lib/Icon/thin/Message.js +26 -13
- package/lib/Icon/thin/Mic.js +29 -16
- package/lib/Icon/thin/Minus.js +26 -13
- package/lib/Icon/thin/MinusCircle.js +29 -16
- package/lib/Icon/thin/Mobile.js +29 -16
- package/lib/Icon/thin/Monitor.js +26 -13
- package/lib/Icon/thin/MoreHorizontal.js +26 -13
- package/lib/Icon/thin/MoreVertical.js +26 -13
- package/lib/Icon/thin/NaverCircle.js +29 -16
- package/lib/Icon/thin/Notice.js +26 -13
- package/lib/Icon/thin/Oa.js +26 -13
- package/lib/Icon/thin/Paper1.js +26 -13
- package/lib/Icon/thin/Paper2.js +29 -16
- package/lib/Icon/thin/Paper3.js +29 -16
- package/lib/Icon/thin/Person.js +26 -13
- package/lib/Icon/thin/Phone.js +26 -13
- package/lib/Icon/thin/Photo.js +29 -16
- package/lib/Icon/thin/PhotoAdd.js +29 -16
- package/lib/Icon/thin/PhotoDouble.js +29 -16
- package/lib/Icon/thin/Pin.js +26 -13
- package/lib/Icon/thin/Pip.js +29 -16
- package/lib/Icon/thin/Play.js +26 -13
- package/lib/Icon/thin/PlayBackA.js +26 -13
- package/lib/Icon/thin/PlayCircle.js +29 -16
- package/lib/Icon/thin/PlayFast.js +26 -13
- package/lib/Icon/thin/PlayFast10Sec.js +29 -16
- package/lib/Icon/thin/PlayFast15Sec.js +29 -16
- package/lib/Icon/thin/PlayFast5Sec.js +29 -16
- package/lib/Icon/thin/PlayNext.js +26 -13
- package/lib/Icon/thin/PlayPause.js +26 -13
- package/lib/Icon/thin/PlayPrev.js +26 -13
- package/lib/Icon/thin/PlayRewind10Sec.js +29 -16
- package/lib/Icon/thin/PlayRewind15Sec.js +29 -16
- package/lib/Icon/thin/PlayRewind5Sec.js +29 -16
- package/lib/Icon/thin/PlaySpeedX025.js +26 -13
- package/lib/Icon/thin/PlaySpeedX05.js +26 -13
- package/lib/Icon/thin/PlaySpeedX1.js +26 -13
- package/lib/Icon/thin/PlaySpeedX15.js +26 -13
- package/lib/Icon/thin/PlaySpeedX2.js +26 -13
- package/lib/Icon/thin/PlaystoreCircle.js +29 -16
- package/lib/Icon/thin/PointCircle.js +29 -16
- package/lib/Icon/thin/Project.js +26 -13
- package/lib/Icon/thin/Quote.js +26 -13
- package/lib/Icon/thin/QuoteReverse.js +26 -13
- package/lib/Icon/thin/Receipt.js +29 -16
- package/lib/Icon/thin/Repeat.js +26 -13
- package/lib/Icon/thin/Replay.js +29 -16
- package/lib/Icon/thin/Reply.js +29 -16
- package/lib/Icon/thin/Report.js +26 -13
- package/lib/Icon/thin/Rocket.js +29 -16
- package/lib/Icon/thin/RotateClockwise.js +29 -16
- package/lib/Icon/thin/Sad.js +32 -19
- package/lib/Icon/thin/Search.js +26 -13
- package/lib/Icon/thin/Send.js +26 -13
- package/lib/Icon/thin/Send2.js +26 -13
- package/lib/Icon/thin/Serious.js +35 -22
- package/lib/Icon/thin/Share.js +29 -16
- package/lib/Icon/thin/Sheild.js +29 -16
- package/lib/Icon/thin/ShippingTruck.js +26 -13
- package/lib/Icon/thin/Smile.js +32 -19
- package/lib/Icon/thin/SocialMedia.js +29 -16
- package/lib/Icon/thin/Sorting.js +26 -13
- package/lib/Icon/thin/Square.js +26 -13
- package/lib/Icon/thin/Star.js +26 -13
- package/lib/Icon/thin/StarFull.js +26 -13
- package/lib/Icon/thin/StarHalf.js +26 -13
- package/lib/Icon/thin/Stock.js +26 -13
- package/lib/Icon/thin/Store.js +26 -13
- package/lib/Icon/thin/Subtitle.js +29 -16
- package/lib/Icon/thin/TalkHelp.js +29 -16
- package/lib/Icon/thin/TextH1.js +26 -13
- package/lib/Icon/thin/TextH2.js +26 -13
- package/lib/Icon/thin/TextH3.js +26 -13
- package/lib/Icon/thin/ThunderCircle.js +29 -16
- package/lib/Icon/thin/Timer.js +29 -16
- package/lib/Icon/thin/ToggleOff.js +26 -13
- package/lib/Icon/thin/ToggleOn.js +26 -13
- package/lib/Icon/thin/ToteBag.js +26 -13
- package/lib/Icon/thin/Trash.js +29 -16
- package/lib/Icon/thin/TwitterCircle.js +29 -16
- package/lib/Icon/thin/Undo.js +26 -13
- package/lib/Icon/thin/Video.js +29 -16
- package/lib/Icon/thin/Volume.js +29 -16
- package/lib/Icon/thin/VolumeMute.js +29 -16
- package/lib/Icon/thin/Web.js +26 -13
- package/lib/Icon/thin/Won.js +26 -13
- package/lib/Icon/thin/WonBadge.js +29 -16
- package/lib/Icon/thin/WonCircle.js +29 -16
- package/lib/Icon/thin/Write.js +26 -13
- package/lib/Icon/thin/YoutubeCircle.js +29 -16
- package/lib/Icon/thin/index.js +182 -178
- package/lib/Icon/types.js +6 -2
- package/lib/ImageThumbnail/ImageThumbnail.js +27 -0
- package/lib/ImageThumbnail/index.js +10 -0
- package/lib/Layout/Center/Center.js +17 -23
- package/lib/Layout/Center/index.js +5 -3
- package/lib/Layout/HStack/HStack.js +18 -9
- package/lib/Layout/HStack/index.js +5 -3
- package/lib/Layout/Position/Position.js +8 -6
- package/lib/Layout/Position/index.js +5 -3
- package/lib/Layout/ResponsiveStack/ResponsiveStack.js +15 -8
- package/lib/Layout/ResponsiveStack/index.js +5 -3
- package/lib/Layout/VStack/VStack.js +18 -9
- package/lib/Layout/VStack/index.js +5 -3
- package/lib/Layout/ZStack/ZStack.js +38 -25
- package/lib/Layout/ZStack/index.js +5 -3
- package/lib/LinearGradient/LinearGradient.js +52 -0
- package/lib/LinearGradient/index.js +10 -0
- package/lib/Link/Link.js +20 -39
- package/lib/Link/index.js +5 -3
- package/lib/Linkify/Linkify.js +2171 -0
- package/lib/Linkify/index.js +10 -0
- package/lib/List/List.js +51 -0
- package/lib/List/index.js +10 -0
- package/lib/Media/Image/Image.js +40 -21
- package/lib/Media/Image/index.js +5 -3
- package/lib/Media/Image/useActualSizes.js +27 -165
- package/lib/Media/SeekBar/SeekBar.js +10 -7
- package/lib/Media/SeekBar/index.js +5 -3
- package/lib/Media/Video/Video.js +11 -8
- package/lib/Media/Video/index.js +5 -3
- package/lib/Media/VideoCaption/VideoCaption.js +10 -7
- package/lib/Media/VideoCaption/index.js +5 -3
- package/lib/Media/VideoOverlay/VideoOverlay.js +23 -23
- package/lib/Media/VideoOverlay/index.js +5 -3
- package/lib/Media/VolumeBar/VolumeBar.js +14 -11
- package/lib/Media/VolumeBar/index.js +5 -3
- package/lib/Menu/Menu/Menu.js +19 -13
- package/lib/Menu/Menu/index.js +5 -3
- package/lib/Menu/MenuIcon/MenuIcon.js +15 -8
- package/lib/Menu/MenuIcon/index.js +5 -3
- package/lib/Menu/MenuItem/MenuItem.js +17 -14
- package/lib/Menu/MenuItem/index.js +5 -3
- package/lib/Menu/MenuText/MenuText.js +50 -35
- package/lib/Menu/MenuText/index.js +5 -3
- package/lib/Menu/MenuTextButton/MenuTextButton.js +16 -9
- package/lib/Menu/MenuTextButton/index.js +5 -3
- package/lib/Menu/MenuTextButtonItem/MenuTextButtonItem.js +38 -27
- package/lib/Menu/MenuTextButtonItem/index.js +5 -3
- package/lib/Menu/MenuTextItem/MenuTextItem.js +18 -11
- package/lib/Menu/MenuTextItem/index.js +5 -3
- package/lib/ModalBottomSheet/ModalBottomSheet.js +30 -123
- package/lib/ModalBottomSheet/index.js +6 -4
- package/lib/ModalBottomSheet/useModalBottomSheet.js +6 -4
- package/lib/NewLine/NewLine.js +13 -9
- package/lib/NewLine/index.js +5 -3
- package/lib/Opacity/Opacity.js +8 -4
- package/lib/Opacity/index.js +5 -3
- package/lib/Overlay/Overlay.js +10 -6
- package/lib/Overlay/index.js +5 -3
- package/lib/Pagination/Pagination.js +388 -14
- package/lib/Pagination/index.js +5 -3
- package/lib/Paper/Paper.js +111 -0
- package/lib/Paper/index.js +10 -0
- package/lib/PopoverBottomSheet/PopoverBottomSheet.js +64 -122
- package/lib/PopoverBottomSheet/index.js +5 -3
- package/lib/Portal/Portal.js +28 -36
- package/lib/Portal/index.js +5 -3
- package/lib/Profile/Profile.js +9 -6
- package/lib/Profile/index.js +5 -3
- package/lib/ProfileLabel/ProfileLabel.js +92 -57
- package/lib/ProfileLabel/index.js +5 -3
- package/lib/Progress/ProgressBar/ProgressBar.js +12 -9
- package/lib/Progress/ProgressBar/index.js +5 -3
- package/lib/Progress/ProgressStep/ProgressStep.js +65 -52
- package/lib/Progress/ProgressStep/index.js +5 -3
- package/lib/Rank/Rank.js +21 -18
- package/lib/Rank/index.js +5 -3
- package/lib/Ratio/Ratio.js +44 -35
- package/lib/Ratio/index.js +5 -3
- package/lib/SafeAreaContent/SafeAreaContent.js +26 -0
- package/lib/SafeAreaContent/index.js +10 -0
- package/lib/Scroll/Scroll.js +48 -0
- package/lib/Scroll/index.js +10 -0
- package/lib/Scroll/variant.js +6 -0
- package/lib/ScrollTarget/ScrollTarget.js +34 -0
- package/lib/ScrollTarget/index.js +10 -0
- package/lib/Section/Section.js +18 -19
- package/lib/Section/index.js +5 -3
- package/lib/SectionHeader/SectionHeader.js +15 -11
- package/lib/SectionHeader/index.js +5 -3
- package/lib/SideNavigation/SideNavigation/SideNavigation.js +15 -0
- package/lib/SideNavigation/SideNavigation/index.js +10 -0
- package/lib/SideNavigation/SideNavigationMenu/SideNavigationMenu.js +69 -0
- package/lib/SideNavigation/SideNavigationMenu/index.js +10 -0
- package/lib/SideNavigation/SideNavigationMenuGroup/SideNavigationMenuGroup.js +20 -0
- package/lib/SideNavigation/SideNavigationMenuGroup/index.js +10 -0
- package/lib/SideNavigation/SideNavigationSubMenu/SideNavigationSubMenu.js +44 -0
- package/lib/SideNavigation/SideNavigationSubMenu/index.js +10 -0
- package/lib/Skeleton/Skeleton.js +26 -19
- package/lib/Skeleton/index.js +5 -3
- package/lib/SlideList/SlideList.js +21 -14
- package/lib/SlideList/__mocks__/index.js +4 -2
- package/lib/SlideList/index.js +5 -3
- package/lib/Slider/Slider.js +1236 -121
- package/lib/Slider/hooks/usePageControl.js +98 -0
- package/lib/Slider/index.js +7 -5
- package/lib/Slider/plugins/AutoPlay.js +82 -0
- package/lib/Slider/useSliderState.js +40 -0
- package/lib/Slider/variants.js +25 -0
- package/lib/SliderSection/SliderSection.js +19 -10
- package/lib/SliderSection/index.js +5 -3
- package/lib/Space/Space.js +26 -0
- package/lib/Space/index.js +10 -0
- package/lib/Spinner/Spinner.js +34 -22
- package/lib/Spinner/index.js +5 -3
- package/lib/Svg/Svg.js +49 -0
- package/lib/Svg/index.js +10 -0
- package/lib/Tab/ScrollTabPanel/ScrollTabPanel.js +6 -3
- package/lib/Tab/ScrollTabPanel/index.js +5 -3
- package/lib/Tab/ScrollTabPanelWithObserver/ScrollTabPanelWithObserver.js +12 -68
- package/lib/Tab/ScrollTabPanelWithObserver/index.js +5 -3
- package/lib/Tab/ScrollTabs/ScrollTabs.js +44 -31
- package/lib/Tab/ScrollTabs/index.js +5 -3
- package/lib/Tab/Tab/Tab.js +41 -50
- package/lib/Tab/Tab/index.js +5 -3
- package/lib/Tab/ViewPagerTabPanel/ViewPagerTabPanel.js +12 -6
- package/lib/Tab/ViewPagerTabPanel/index.js +5 -3
- package/lib/Tab/ViewPagerTabs/ViewPagerTabs.js +47 -19
- package/lib/Tab/ViewPagerTabs/index.js +5 -3
- package/lib/Table/Table.js +6950 -0
- package/lib/Table/index.js +10 -0
- package/lib/Tag/Chip/Chip.js +66 -62
- package/lib/Tag/Chip/index.js +5 -3
- package/lib/Tag/IconBadge/IconBadge.js +25 -18
- package/lib/Tag/IconBadge/index.js +5 -3
- package/lib/Tag/StateTag/StateTag.js +22 -15
- package/lib/Tag/StateTag/index.js +5 -3
- package/lib/Tag/Tag/Tag.js +21 -24
- package/lib/Tag/Tag/index.js +5 -3
- package/lib/Tooltip/Tooltip.js +184 -0
- package/lib/Tooltip/index.js +10 -0
- package/lib/Typography/Body/Body.js +24 -10
- package/lib/Typography/Body/index.js +5 -3
- package/lib/Typography/Paragraph/Paragraph.js +17 -10
- package/lib/Typography/Paragraph/index.js +5 -3
- package/lib/Typography/Text/Text.js +41 -54
- package/lib/Typography/Text/index.js +5 -3
- package/lib/Typography/Title/Title.js +22 -14
- package/lib/Typography/Title/index.js +5 -3
- package/lib/Underline/Underline.js +47 -34
- package/lib/Underline/index.js +5 -3
- package/lib/ViewPager/ViewPager.js +14 -8
- package/lib/ViewPager/index.js +5 -3
- package/lib/ViewPager/type.js +6 -2
- package/lib/ViewPagerItem/ViewPagerItem.js +9 -6
- package/lib/ViewPagerItem/index.js +5 -3
- package/lib/VirtualizedList/VirtualizedList.js +56 -0
- package/lib/VirtualizedList/index.js +10 -0
- package/lib/VirtualizedList/variants.js +6 -0
- package/lib/deprecated/Slide/Slide.js +7 -5
- package/lib/deprecated/Slide/index.js +4 -2
- package/lib/deprecated/Swiper/Swiper.js +19 -9
- package/lib/deprecated/Swiper/hooks/useAutoPlay.js +6 -4
- package/lib/deprecated/Swiper/hooks/useSwiper.js +468 -12
- package/lib/deprecated/Swiper/index.js +4 -2
- package/lib/deprecated/Swiper/types/SwiperOptions.js +6 -2
- package/mime-types-SLPLVYDI.js +9284 -0
- package/package.json +3 -2
- package/private/Bar/Bar.js +8 -5
- package/private/Bar/index.js +5 -3
- package/private/Box/Box.js +13 -5
- package/private/Box/index.js +5 -3
- package/private/Box/variants.js +6 -0
- package/private/ForwardStyle/ForwardStyle.js +14 -14
- package/private/ForwardStyle/StyledChildren.js +35 -0
- package/private/ForwardStyle/index.js +5 -3
- package/private/Stack/Stack.js +75 -64
- package/private/Stack/index.js +5 -3
- package/private/Transform/Transform.js +8 -6
- package/private/Transform/index.js +5 -3
- package/@types/image.d.js +0 -2
- package/@types/theme.d.js +0 -5
- package/lib/Animation/Animator/Animator.stories.js +0 -63
- package/lib/Animation/FadeAnimation/FadeAnimation.stories.js +0 -42
- package/lib/Animation/SlideAnimation/SlideAnimation.stories.js +0 -35
- package/lib/Animation/Transition/Transition.stories.js +0 -47
- package/lib/Background/Background.stories.js +0 -35
- package/lib/Button/ButtonIcon/ButtonIcon.js +0 -48
- package/lib/Button/ButtonIcon/index.js +0 -8
- package/lib/Button/IconButton/IconButton.js +0 -141
- package/lib/Button/IconButton/index.js +0 -8
- package/lib/Button/TextButton/TextButton.stories.js +0 -59
- package/lib/ConditionalWrapper/ConditionalWrapper.stories.js +0 -40
- package/lib/Divider/Divider.stories.js +0 -78
- package/lib/Elevation/Elevation.stories.js +0 -33
- package/lib/Form/Description/Description.stories.js +0 -34
- package/lib/Form/FormField/FormField.stories.js +0 -36
- package/lib/Form/InlineTextLabel/InlineTextLabel.stories.js +0 -40
- package/lib/Form/Input/Input.stories.js +0 -34
- package/lib/Form/Label/Label.stories.js +0 -40
- package/lib/Form/Select/Select.stories.js +0 -45
- package/lib/Form/SelectField/SelectField.stories.js +0 -89
- package/lib/Form/TextField/TextField.stories.js +0 -84
- package/lib/Form/TextLabel/TextLabel.stories.js +0 -31
- package/lib/Frame/Frame.js +0 -70
- package/lib/Frame/index.js +0 -8
- package/lib/Highlight/Highlight.stories.js +0 -27
- package/lib/HtmlContentStyle/HtmlContentStyle.stories.js +0 -19
- package/lib/Layout/Center/Center.stories.js +0 -40
- package/lib/Layout/Position/Position.stories.js +0 -39
- package/lib/Link/Link.stories.js +0 -34
- package/lib/Media/Image/Image.stories.js +0 -24
- package/lib/Menu/Menu/Menu.stories.js +0 -60
- package/lib/Menu/MenuIcon/MenuIcon.stories.js +0 -28
- package/lib/Menu/MenuItem/MenuItem.stories.js +0 -39
- package/lib/Menu/MenuText/MenuText.stories.js +0 -35
- package/lib/Menu/MenuTextButton/MenuTextButton.stories.js +0 -86
- package/lib/Menu/MenuTextButtonItem/MenuTextButtonItem.stories.js +0 -170
- package/lib/Menu/MenuTextItem/MenuTextItem.stories.js +0 -85
- package/lib/Opacity/Opacity.stories.js +0 -30
- package/lib/Overlay/Overlay.stories.js +0 -30
- package/lib/Pagination/Pagination.stories.js +0 -34
- package/lib/Progress/ProgressBar/ProgressBar.stories.js +0 -54
- package/lib/Progress/ProgressStep/ProgressStep.stories.js +0 -40
- package/lib/Rank/Rank.stories.js +0 -36
- package/lib/Ratio/Ratio.stories.js +0 -31
- package/lib/Section/Section.stories.js +0 -46
- package/lib/SlideList/SlideList.stories.js +0 -57
- package/lib/Slider/Slider.stories.js +0 -44
- package/lib/Slider/__mocks__/index.js +0 -49
- package/lib/Slider/constants.js +0 -20
- package/lib/Slider/internalHooks/useAutoPlay.js +0 -38
- package/lib/Slider/internalHooks/usePageControl.js +0 -42
- package/lib/Slider/internalHooks/useVirtual.js +0 -25
- package/lib/Slider/useSlider.js +0 -40
- package/lib/SliderSection/SliderSection.stories.js +0 -81
- package/lib/Tab/ScrollTabPanel/ScrollTabPanel.stories.js +0 -18
- package/lib/Tab/ScrollTabPanelWithObserver/ScrollTabPanelWithObserver.stories.js +0 -18
- package/lib/Tab/ScrollTabs/ScrollTabs.stories.js +0 -55
- package/lib/Tab/Tab/Tab.stories.js +0 -44
- package/lib/Tag/Chip/Chip.stories.js +0 -53
- package/lib/Tag/Tag/Tag.stories.js +0 -40
- package/lib/Typography/Body/Body.stories.js +0 -33
- package/lib/Typography/Caption/Caption.js +0 -20
- package/lib/Typography/Caption/Caption.stories.js +0 -40
- package/lib/Typography/Caption/index.js +0 -8
- package/lib/Typography/Paragraph/Paragraph.stories.js +0 -40
- package/lib/Typography/Title/Title.stories.js +0 -38
- package/lib/Underline/Underline.stories.js +0 -35
- package/lib/ViewPager/ViewPager.stories.js +0 -74
- package/lib/deprecated/Swiper/Swiper.stories.js +0 -177
- package/private/Box/Box.stories.js +0 -60
- package/private/ForwardStyle/ForwardStyle.stories.js +0 -23
- package/private/Space/Space.js +0 -12
- package/private/Space/Space.stories.js +0 -36
- package/private/Space/index.js +0 -8
- package/private/Svg/Svg.js +0 -34
- package/private/Svg/index.js +0 -8
- package/utils/appendCssUnit/appendCssUnit.js +0 -13
- package/utils/appendCssUnit/appendCssUnit.spec.js +0 -31
- package/utils/appendCssUnit/index.js +0 -8
- package/utils/index.js +0 -8
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import {
|
|
2
|
+
require_react_is
|
|
3
|
+
} from "./chunk-CGEEKALF.js";
|
|
4
|
+
import {
|
|
5
|
+
__commonJS,
|
|
6
|
+
init_react_shim
|
|
7
|
+
} from "./chunk-VIIHQGZ3.js";
|
|
8
|
+
|
|
9
|
+
// node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js
|
|
10
|
+
var require_hoist_non_react_statics_cjs = __commonJS({
|
|
11
|
+
"node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js"(exports, module) {
|
|
12
|
+
init_react_shim();
|
|
13
|
+
"use strict";
|
|
14
|
+
var reactIs = require_react_is();
|
|
15
|
+
var REACT_STATICS = {
|
|
16
|
+
childContextTypes: true,
|
|
17
|
+
contextType: true,
|
|
18
|
+
contextTypes: true,
|
|
19
|
+
defaultProps: true,
|
|
20
|
+
displayName: true,
|
|
21
|
+
getDefaultProps: true,
|
|
22
|
+
getDerivedStateFromError: true,
|
|
23
|
+
getDerivedStateFromProps: true,
|
|
24
|
+
mixins: true,
|
|
25
|
+
propTypes: true,
|
|
26
|
+
type: true
|
|
27
|
+
};
|
|
28
|
+
var KNOWN_STATICS = {
|
|
29
|
+
name: true,
|
|
30
|
+
length: true,
|
|
31
|
+
prototype: true,
|
|
32
|
+
caller: true,
|
|
33
|
+
callee: true,
|
|
34
|
+
arguments: true,
|
|
35
|
+
arity: true
|
|
36
|
+
};
|
|
37
|
+
var FORWARD_REF_STATICS = {
|
|
38
|
+
"$$typeof": true,
|
|
39
|
+
render: true,
|
|
40
|
+
defaultProps: true,
|
|
41
|
+
displayName: true,
|
|
42
|
+
propTypes: true
|
|
43
|
+
};
|
|
44
|
+
var MEMO_STATICS = {
|
|
45
|
+
"$$typeof": true,
|
|
46
|
+
compare: true,
|
|
47
|
+
defaultProps: true,
|
|
48
|
+
displayName: true,
|
|
49
|
+
propTypes: true,
|
|
50
|
+
type: true
|
|
51
|
+
};
|
|
52
|
+
var TYPE_STATICS = {};
|
|
53
|
+
TYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;
|
|
54
|
+
TYPE_STATICS[reactIs.Memo] = MEMO_STATICS;
|
|
55
|
+
function getStatics(component) {
|
|
56
|
+
if (reactIs.isMemo(component)) {
|
|
57
|
+
return MEMO_STATICS;
|
|
58
|
+
}
|
|
59
|
+
return TYPE_STATICS[component["$$typeof"]] || REACT_STATICS;
|
|
60
|
+
}
|
|
61
|
+
var defineProperty = Object.defineProperty;
|
|
62
|
+
var getOwnPropertyNames = Object.getOwnPropertyNames;
|
|
63
|
+
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
64
|
+
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
65
|
+
var getPrototypeOf = Object.getPrototypeOf;
|
|
66
|
+
var objectPrototype = Object.prototype;
|
|
67
|
+
function hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {
|
|
68
|
+
if (typeof sourceComponent !== "string") {
|
|
69
|
+
if (objectPrototype) {
|
|
70
|
+
var inheritedComponent = getPrototypeOf(sourceComponent);
|
|
71
|
+
if (inheritedComponent && inheritedComponent !== objectPrototype) {
|
|
72
|
+
hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
var keys = getOwnPropertyNames(sourceComponent);
|
|
76
|
+
if (getOwnPropertySymbols) {
|
|
77
|
+
keys = keys.concat(getOwnPropertySymbols(sourceComponent));
|
|
78
|
+
}
|
|
79
|
+
var targetStatics = getStatics(targetComponent);
|
|
80
|
+
var sourceStatics = getStatics(sourceComponent);
|
|
81
|
+
for (var i = 0; i < keys.length; ++i) {
|
|
82
|
+
var key = keys[i];
|
|
83
|
+
if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {
|
|
84
|
+
var descriptor = getOwnPropertyDescriptor(sourceComponent, key);
|
|
85
|
+
try {
|
|
86
|
+
defineProperty(targetComponent, key, descriptor);
|
|
87
|
+
} catch (e) {
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
return targetComponent;
|
|
93
|
+
}
|
|
94
|
+
module.exports = hoistNonReactStatics;
|
|
95
|
+
}
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
// node_modules/@emotion/unitless/dist/unitless.browser.esm.js
|
|
99
|
+
init_react_shim();
|
|
100
|
+
var unitlessKeys = {
|
|
101
|
+
animationIterationCount: 1,
|
|
102
|
+
borderImageOutset: 1,
|
|
103
|
+
borderImageSlice: 1,
|
|
104
|
+
borderImageWidth: 1,
|
|
105
|
+
boxFlex: 1,
|
|
106
|
+
boxFlexGroup: 1,
|
|
107
|
+
boxOrdinalGroup: 1,
|
|
108
|
+
columnCount: 1,
|
|
109
|
+
columns: 1,
|
|
110
|
+
flex: 1,
|
|
111
|
+
flexGrow: 1,
|
|
112
|
+
flexPositive: 1,
|
|
113
|
+
flexShrink: 1,
|
|
114
|
+
flexNegative: 1,
|
|
115
|
+
flexOrder: 1,
|
|
116
|
+
gridRow: 1,
|
|
117
|
+
gridRowEnd: 1,
|
|
118
|
+
gridRowSpan: 1,
|
|
119
|
+
gridRowStart: 1,
|
|
120
|
+
gridColumn: 1,
|
|
121
|
+
gridColumnEnd: 1,
|
|
122
|
+
gridColumnSpan: 1,
|
|
123
|
+
gridColumnStart: 1,
|
|
124
|
+
msGridRow: 1,
|
|
125
|
+
msGridRowSpan: 1,
|
|
126
|
+
msGridColumn: 1,
|
|
127
|
+
msGridColumnSpan: 1,
|
|
128
|
+
fontWeight: 1,
|
|
129
|
+
lineHeight: 1,
|
|
130
|
+
opacity: 1,
|
|
131
|
+
order: 1,
|
|
132
|
+
orphans: 1,
|
|
133
|
+
tabSize: 1,
|
|
134
|
+
widows: 1,
|
|
135
|
+
zIndex: 1,
|
|
136
|
+
zoom: 1,
|
|
137
|
+
WebkitLineClamp: 1,
|
|
138
|
+
fillOpacity: 1,
|
|
139
|
+
floodOpacity: 1,
|
|
140
|
+
stopOpacity: 1,
|
|
141
|
+
strokeDasharray: 1,
|
|
142
|
+
strokeDashoffset: 1,
|
|
143
|
+
strokeMiterlimit: 1,
|
|
144
|
+
strokeOpacity: 1,
|
|
145
|
+
strokeWidth: 1
|
|
146
|
+
};
|
|
147
|
+
var unitless_browser_esm_default = unitlessKeys;
|
|
148
|
+
|
|
149
|
+
export {
|
|
150
|
+
require_hoist_non_react_statics_cjs,
|
|
151
|
+
unitless_browser_esm_default
|
|
152
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
init_react_shim
|
|
3
|
+
} from "./chunk-VIIHQGZ3.js";
|
|
4
|
+
|
|
5
|
+
// libs/shared/utils-browser/src/lib/isServer.ts
|
|
6
|
+
init_react_shim();
|
|
7
|
+
var isServer = typeof window === "undefined";
|
|
8
|
+
|
|
9
|
+
// libs/shared/utils-browser/src/lib/canUseDOM.ts
|
|
10
|
+
init_react_shim();
|
|
11
|
+
|
|
12
|
+
// libs/shared/utils-browser/src/lib/isBrowser.ts
|
|
13
|
+
init_react_shim();
|
|
14
|
+
var isBrowser = !isServer;
|
|
15
|
+
|
|
16
|
+
// libs/shared/utils-browser/src/lib/canUseDOM.ts
|
|
17
|
+
var canUseDOM = Boolean(isBrowser && window.document && window.document.createElement);
|
|
18
|
+
|
|
19
|
+
// libs/shared/utils-browser/src/lib/findOrCreateElementById.ts
|
|
20
|
+
init_react_shim();
|
|
21
|
+
function findOrCreateElementById(id) {
|
|
22
|
+
const existingElement = document.getElementById(id);
|
|
23
|
+
if (existingElement) {
|
|
24
|
+
return existingElement;
|
|
25
|
+
}
|
|
26
|
+
const container = document.createElement("div");
|
|
27
|
+
container.id = id;
|
|
28
|
+
document.body.appendChild(container);
|
|
29
|
+
return container;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// libs/shared/utils-browser/src/lib/isExternalUrl.ts
|
|
33
|
+
init_react_shim();
|
|
34
|
+
var HTTP_REGEXP = /^(http|https):\/\//;
|
|
35
|
+
function isExternalUrl(path) {
|
|
36
|
+
return HTTP_REGEXP.test(path.toLowerCase());
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// libs/shared/utils-browser/src/index.ts
|
|
40
|
+
init_react_shim();
|
|
41
|
+
|
|
42
|
+
export {
|
|
43
|
+
isServer,
|
|
44
|
+
canUseDOM,
|
|
45
|
+
findOrCreateElementById,
|
|
46
|
+
isExternalUrl
|
|
47
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import {
|
|
2
|
+
init_react_shim
|
|
3
|
+
} from "./chunk-VIIHQGZ3.js";
|
|
4
|
+
|
|
5
|
+
// libs/shared/utils-type/src/lib/isDefined/isDefined.ts
|
|
6
|
+
init_react_shim();
|
|
7
|
+
function isDefined(value) {
|
|
8
|
+
return value !== void 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// libs/shared/utils-type/src/lib/isDefined/index.ts
|
|
12
|
+
init_react_shim();
|
|
13
|
+
|
|
14
|
+
// libs/shared/utils-type/src/lib/isTruthy/isTruthy.ts
|
|
15
|
+
init_react_shim();
|
|
16
|
+
function isTruthy(value) {
|
|
17
|
+
return Boolean(value);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// libs/shared/utils-type/src/lib/isTruthy/index.ts
|
|
21
|
+
init_react_shim();
|
|
22
|
+
|
|
23
|
+
// libs/shared/utils-type/src/index.ts
|
|
24
|
+
init_react_shim();
|
|
25
|
+
|
|
26
|
+
export {
|
|
27
|
+
isDefined,
|
|
28
|
+
isTruthy
|
|
29
|
+
};
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
import {
|
|
2
|
+
canUseDOM
|
|
3
|
+
} from "./chunk-LN36XQS3.js";
|
|
4
|
+
import {
|
|
5
|
+
__commonJS,
|
|
6
|
+
__toModule,
|
|
7
|
+
init_react_shim
|
|
8
|
+
} from "./chunk-VIIHQGZ3.js";
|
|
9
|
+
|
|
10
|
+
// node_modules/react-fast-compare/index.js
|
|
11
|
+
var require_react_fast_compare = __commonJS({
|
|
12
|
+
"node_modules/react-fast-compare/index.js"(exports, module) {
|
|
13
|
+
init_react_shim();
|
|
14
|
+
var hasElementType = typeof Element !== "undefined";
|
|
15
|
+
var hasMap = typeof Map === "function";
|
|
16
|
+
var hasSet = typeof Set === "function";
|
|
17
|
+
var hasArrayBuffer = typeof ArrayBuffer === "function" && !!ArrayBuffer.isView;
|
|
18
|
+
function equal(a, b) {
|
|
19
|
+
if (a === b)
|
|
20
|
+
return true;
|
|
21
|
+
if (a && b && typeof a == "object" && typeof b == "object") {
|
|
22
|
+
if (a.constructor !== b.constructor)
|
|
23
|
+
return false;
|
|
24
|
+
var length, i, keys;
|
|
25
|
+
if (Array.isArray(a)) {
|
|
26
|
+
length = a.length;
|
|
27
|
+
if (length != b.length)
|
|
28
|
+
return false;
|
|
29
|
+
for (i = length; i-- !== 0; )
|
|
30
|
+
if (!equal(a[i], b[i]))
|
|
31
|
+
return false;
|
|
32
|
+
return true;
|
|
33
|
+
}
|
|
34
|
+
var it;
|
|
35
|
+
if (hasMap && a instanceof Map && b instanceof Map) {
|
|
36
|
+
if (a.size !== b.size)
|
|
37
|
+
return false;
|
|
38
|
+
it = a.entries();
|
|
39
|
+
while (!(i = it.next()).done)
|
|
40
|
+
if (!b.has(i.value[0]))
|
|
41
|
+
return false;
|
|
42
|
+
it = a.entries();
|
|
43
|
+
while (!(i = it.next()).done)
|
|
44
|
+
if (!equal(i.value[1], b.get(i.value[0])))
|
|
45
|
+
return false;
|
|
46
|
+
return true;
|
|
47
|
+
}
|
|
48
|
+
if (hasSet && a instanceof Set && b instanceof Set) {
|
|
49
|
+
if (a.size !== b.size)
|
|
50
|
+
return false;
|
|
51
|
+
it = a.entries();
|
|
52
|
+
while (!(i = it.next()).done)
|
|
53
|
+
if (!b.has(i.value[0]))
|
|
54
|
+
return false;
|
|
55
|
+
return true;
|
|
56
|
+
}
|
|
57
|
+
if (hasArrayBuffer && ArrayBuffer.isView(a) && ArrayBuffer.isView(b)) {
|
|
58
|
+
length = a.length;
|
|
59
|
+
if (length != b.length)
|
|
60
|
+
return false;
|
|
61
|
+
for (i = length; i-- !== 0; )
|
|
62
|
+
if (a[i] !== b[i])
|
|
63
|
+
return false;
|
|
64
|
+
return true;
|
|
65
|
+
}
|
|
66
|
+
if (a.constructor === RegExp)
|
|
67
|
+
return a.source === b.source && a.flags === b.flags;
|
|
68
|
+
if (a.valueOf !== Object.prototype.valueOf)
|
|
69
|
+
return a.valueOf() === b.valueOf();
|
|
70
|
+
if (a.toString !== Object.prototype.toString)
|
|
71
|
+
return a.toString() === b.toString();
|
|
72
|
+
keys = Object.keys(a);
|
|
73
|
+
length = keys.length;
|
|
74
|
+
if (length !== Object.keys(b).length)
|
|
75
|
+
return false;
|
|
76
|
+
for (i = length; i-- !== 0; )
|
|
77
|
+
if (!Object.prototype.hasOwnProperty.call(b, keys[i]))
|
|
78
|
+
return false;
|
|
79
|
+
if (hasElementType && a instanceof Element)
|
|
80
|
+
return false;
|
|
81
|
+
for (i = length; i-- !== 0; ) {
|
|
82
|
+
if ((keys[i] === "_owner" || keys[i] === "__v" || keys[i] === "__o") && a.$$typeof) {
|
|
83
|
+
continue;
|
|
84
|
+
}
|
|
85
|
+
if (!equal(a[keys[i]], b[keys[i]]))
|
|
86
|
+
return false;
|
|
87
|
+
}
|
|
88
|
+
return true;
|
|
89
|
+
}
|
|
90
|
+
return a !== a && b !== b;
|
|
91
|
+
}
|
|
92
|
+
module.exports = function isEqual2(a, b) {
|
|
93
|
+
try {
|
|
94
|
+
return equal(a, b);
|
|
95
|
+
} catch (error) {
|
|
96
|
+
if ((error.message || "").match(/stack|recursion/i)) {
|
|
97
|
+
console.warn("react-fast-compare cannot handle circular refs");
|
|
98
|
+
return false;
|
|
99
|
+
}
|
|
100
|
+
throw error;
|
|
101
|
+
}
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
// libs/shared/utils-hooks/src/lib/useDeepCompareMemo/useDeepCompareMemo.ts
|
|
107
|
+
init_react_shim();
|
|
108
|
+
import { useMemo } from "react";
|
|
109
|
+
|
|
110
|
+
// libs/shared/utils-hooks/src/lib/useDeepCompareDeps/index.ts
|
|
111
|
+
init_react_shim();
|
|
112
|
+
|
|
113
|
+
// libs/shared/utils-hooks/src/lib/useDeepCompareDeps/useDeepCompareDeps.ts
|
|
114
|
+
init_react_shim();
|
|
115
|
+
var import_react_fast_compare = __toModule(require_react_fast_compare());
|
|
116
|
+
import { useRef } from "react";
|
|
117
|
+
function useDeepCompareDeps(value) {
|
|
118
|
+
const ref = useRef(value);
|
|
119
|
+
if (!(0, import_react_fast_compare.default)(value, ref.current)) {
|
|
120
|
+
ref.current = value;
|
|
121
|
+
}
|
|
122
|
+
return ref.current;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// libs/shared/utils-hooks/src/lib/useDeepCompareMemo/useDeepCompareMemo.ts
|
|
126
|
+
function useDeepCompareMemo(factory, deps) {
|
|
127
|
+
return useMemo(factory, useDeepCompareDeps(deps));
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// libs/shared/utils-hooks/src/lib/useDeepCompareMemo/index.ts
|
|
131
|
+
init_react_shim();
|
|
132
|
+
|
|
133
|
+
// libs/shared/utils-hooks/src/lib/useInView/useInView.tsx
|
|
134
|
+
init_react_shim();
|
|
135
|
+
import { useCallback as useCallback2, useState } from "react";
|
|
136
|
+
|
|
137
|
+
// libs/shared/utils-hooks/src/lib/useIntersectionObserver/index.ts
|
|
138
|
+
init_react_shim();
|
|
139
|
+
|
|
140
|
+
// libs/shared/utils-hooks/src/lib/useIntersectionObserver/useIntersectionObserver.ts
|
|
141
|
+
init_react_shim();
|
|
142
|
+
import { useCallback, useEffect, useRef as useRef2 } from "react";
|
|
143
|
+
var useIntersectionObserver = (callback, options) => {
|
|
144
|
+
const observerRef = useRef2();
|
|
145
|
+
const handleIntersection = useCallback(([entry]) => {
|
|
146
|
+
callback(entry);
|
|
147
|
+
}, [callback]);
|
|
148
|
+
const observe = useCallback((node) => {
|
|
149
|
+
if (!node) {
|
|
150
|
+
return;
|
|
151
|
+
}
|
|
152
|
+
observerRef.current = new IntersectionObserver(handleIntersection, options);
|
|
153
|
+
observerRef.current.observe(node);
|
|
154
|
+
}, [handleIntersection, options]);
|
|
155
|
+
const unobserve = useCallback(() => {
|
|
156
|
+
var _a;
|
|
157
|
+
(_a = observerRef.current) == null ? void 0 : _a.disconnect();
|
|
158
|
+
observerRef.current = void 0;
|
|
159
|
+
}, []);
|
|
160
|
+
const ref = useCallback((node) => {
|
|
161
|
+
unobserve();
|
|
162
|
+
observe(node);
|
|
163
|
+
}, [observe, unobserve]);
|
|
164
|
+
useEffect(() => unobserve, [unobserve]);
|
|
165
|
+
return { ref };
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
// libs/shared/utils-hooks/src/lib/useInView/useInView.tsx
|
|
169
|
+
var useInView = (initialInView, options) => {
|
|
170
|
+
const [isInView, setIsInView] = useState(initialInView);
|
|
171
|
+
const callback = useCallback2((entry) => {
|
|
172
|
+
if (entry.isIntersecting) {
|
|
173
|
+
setIsInView(true);
|
|
174
|
+
} else {
|
|
175
|
+
setIsInView(false);
|
|
176
|
+
}
|
|
177
|
+
}, []);
|
|
178
|
+
const { ref } = useIntersectionObserver(callback, options);
|
|
179
|
+
return { ref, isInView };
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
// libs/shared/utils-hooks/src/lib/useInView/index.ts
|
|
183
|
+
init_react_shim();
|
|
184
|
+
|
|
185
|
+
// libs/shared/utils-hooks/src/lib/useLazyUnmount/useLazyUnmount.ts
|
|
186
|
+
init_react_shim();
|
|
187
|
+
import { useEffect as useEffect2, useState as useState2 } from "react";
|
|
188
|
+
var useLazyUnmount = (state, delay) => {
|
|
189
|
+
const [isMounted, setIsMounted] = useState2(state);
|
|
190
|
+
useEffect2(() => {
|
|
191
|
+
if (state) {
|
|
192
|
+
setIsMounted(state);
|
|
193
|
+
return void 0;
|
|
194
|
+
}
|
|
195
|
+
const timer = setTimeout(() => {
|
|
196
|
+
setIsMounted(false);
|
|
197
|
+
}, delay);
|
|
198
|
+
return () => {
|
|
199
|
+
clearTimeout(timer);
|
|
200
|
+
};
|
|
201
|
+
}, [delay, state]);
|
|
202
|
+
return isMounted;
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
// libs/shared/utils-hooks/src/lib/useLazyUnmount/index.ts
|
|
206
|
+
init_react_shim();
|
|
207
|
+
|
|
208
|
+
// libs/shared/utils-hooks/src/lib/useLockBodyScroll/useLockBodyScroll.ts
|
|
209
|
+
init_react_shim();
|
|
210
|
+
import { useEffect as useEffect3, useRef as useRef3 } from "react";
|
|
211
|
+
var useLockBodyScroll = (locked = false) => {
|
|
212
|
+
const bodyStyleRef = useRef3({ paddingRight: "", overflow: "" });
|
|
213
|
+
const lockBodyScroll = () => {
|
|
214
|
+
if (!canUseDOM) {
|
|
215
|
+
return;
|
|
216
|
+
}
|
|
217
|
+
bodyStyleRef.current = {
|
|
218
|
+
paddingRight: document.body.style.paddingRight,
|
|
219
|
+
overflow: document.body.style.overflow
|
|
220
|
+
};
|
|
221
|
+
const scrollBarWidth = window.innerWidth - document.documentElement.clientWidth;
|
|
222
|
+
document.body.style.paddingRight = `${scrollBarWidth}px`;
|
|
223
|
+
document.body.style.overflow = "hidden";
|
|
224
|
+
};
|
|
225
|
+
const unlockBodyScroll = () => {
|
|
226
|
+
if (!canUseDOM) {
|
|
227
|
+
return;
|
|
228
|
+
}
|
|
229
|
+
document.body.style.paddingRight = bodyStyleRef.current.paddingRight;
|
|
230
|
+
document.body.style.overflow = bodyStyleRef.current.overflow;
|
|
231
|
+
};
|
|
232
|
+
useEffect3(() => {
|
|
233
|
+
if (locked) {
|
|
234
|
+
lockBodyScroll();
|
|
235
|
+
} else {
|
|
236
|
+
unlockBodyScroll();
|
|
237
|
+
}
|
|
238
|
+
return () => {
|
|
239
|
+
unlockBodyScroll();
|
|
240
|
+
};
|
|
241
|
+
}, [locked]);
|
|
242
|
+
};
|
|
243
|
+
|
|
244
|
+
// libs/shared/utils-hooks/src/lib/useLockBodyScroll/index.ts
|
|
245
|
+
init_react_shim();
|
|
246
|
+
|
|
247
|
+
// libs/shared/utils-hooks/src/index.ts
|
|
248
|
+
init_react_shim();
|
|
249
|
+
|
|
250
|
+
export {
|
|
251
|
+
useDeepCompareMemo,
|
|
252
|
+
useInView,
|
|
253
|
+
useLazyUnmount,
|
|
254
|
+
useLockBodyScroll
|
|
255
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import {
|
|
2
|
+
init_react_shim
|
|
3
|
+
} from "./chunk-VIIHQGZ3.js";
|
|
4
|
+
|
|
5
|
+
// libs/shared/utils-string/src/lib/convertToSecureUrl/convertToSecureUrl.ts
|
|
6
|
+
init_react_shim();
|
|
7
|
+
function convertToSecureUrl(url) {
|
|
8
|
+
return url.replace(/^https?:\/\//i, "https://");
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// libs/shared/utils-string/src/lib/convertToSecureUrl/index.ts
|
|
12
|
+
init_react_shim();
|
|
13
|
+
|
|
14
|
+
// libs/shared/utils-string/src/lib/nl2br/nl2br.ts
|
|
15
|
+
init_react_shim();
|
|
16
|
+
import { createElement } from "react";
|
|
17
|
+
var newlineRegex = /(\r\n|\n\r|\r|\n|\\n)/g;
|
|
18
|
+
function nl2br(string) {
|
|
19
|
+
if (typeof string !== "string") {
|
|
20
|
+
return string;
|
|
21
|
+
}
|
|
22
|
+
return string.split(newlineRegex).map((line, index) => {
|
|
23
|
+
if (line.match(newlineRegex)) {
|
|
24
|
+
return createElement("br", { key: index.toString() });
|
|
25
|
+
}
|
|
26
|
+
return line;
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// libs/shared/utils-string/src/lib/nl2br/index.ts
|
|
31
|
+
init_react_shim();
|
|
32
|
+
|
|
33
|
+
// libs/shared/utils-string/src/index.ts
|
|
34
|
+
init_react_shim();
|
|
35
|
+
|
|
36
|
+
export {
|
|
37
|
+
convertToSecureUrl,
|
|
38
|
+
nl2br
|
|
39
|
+
};
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import {
|
|
2
|
+
__commonJS,
|
|
3
|
+
init_react_shim
|
|
4
|
+
} from "./chunk-VIIHQGZ3.js";
|
|
5
|
+
|
|
6
|
+
// node_modules/object-assign/index.js
|
|
7
|
+
var require_object_assign = __commonJS({
|
|
8
|
+
"node_modules/object-assign/index.js"(exports, module) {
|
|
9
|
+
init_react_shim();
|
|
10
|
+
"use strict";
|
|
11
|
+
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
12
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
13
|
+
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
14
|
+
function toObject(val) {
|
|
15
|
+
if (val === null || val === void 0) {
|
|
16
|
+
throw new TypeError("Object.assign cannot be called with null or undefined");
|
|
17
|
+
}
|
|
18
|
+
return Object(val);
|
|
19
|
+
}
|
|
20
|
+
function shouldUseNative() {
|
|
21
|
+
try {
|
|
22
|
+
if (!Object.assign) {
|
|
23
|
+
return false;
|
|
24
|
+
}
|
|
25
|
+
var test1 = new String("abc");
|
|
26
|
+
test1[5] = "de";
|
|
27
|
+
if (Object.getOwnPropertyNames(test1)[0] === "5") {
|
|
28
|
+
return false;
|
|
29
|
+
}
|
|
30
|
+
var test2 = {};
|
|
31
|
+
for (var i = 0; i < 10; i++) {
|
|
32
|
+
test2["_" + String.fromCharCode(i)] = i;
|
|
33
|
+
}
|
|
34
|
+
var order2 = Object.getOwnPropertyNames(test2).map(function(n) {
|
|
35
|
+
return test2[n];
|
|
36
|
+
});
|
|
37
|
+
if (order2.join("") !== "0123456789") {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
var test3 = {};
|
|
41
|
+
"abcdefghijklmnopqrst".split("").forEach(function(letter) {
|
|
42
|
+
test3[letter] = letter;
|
|
43
|
+
});
|
|
44
|
+
if (Object.keys(Object.assign({}, test3)).join("") !== "abcdefghijklmnopqrst") {
|
|
45
|
+
return false;
|
|
46
|
+
}
|
|
47
|
+
return true;
|
|
48
|
+
} catch (err) {
|
|
49
|
+
return false;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
module.exports = shouldUseNative() ? Object.assign : function(target, source) {
|
|
53
|
+
var from;
|
|
54
|
+
var to = toObject(target);
|
|
55
|
+
var symbols;
|
|
56
|
+
for (var s = 1; s < arguments.length; s++) {
|
|
57
|
+
from = Object(arguments[s]);
|
|
58
|
+
for (var key in from) {
|
|
59
|
+
if (hasOwnProperty.call(from, key)) {
|
|
60
|
+
to[key] = from[key];
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
if (getOwnPropertySymbols) {
|
|
64
|
+
symbols = getOwnPropertySymbols(from);
|
|
65
|
+
for (var i = 0; i < symbols.length; i++) {
|
|
66
|
+
if (propIsEnumerable.call(from, symbols[i])) {
|
|
67
|
+
to[symbols[i]] = from[symbols[i]];
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
return to;
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
export {
|
|
78
|
+
require_object_assign
|
|
79
|
+
};
|
|
80
|
+
/*
|
|
81
|
+
object-assign
|
|
82
|
+
(c) Sindre Sorhus
|
|
83
|
+
@license MIT
|
|
84
|
+
*/
|