@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,217 @@
|
|
|
1
|
+
import {
|
|
2
|
+
init_react_shim
|
|
3
|
+
} from "./chunk-VIIHQGZ3.js";
|
|
4
|
+
|
|
5
|
+
// node_modules/@styled-system/css/dist/index.esm.js
|
|
6
|
+
init_react_shim();
|
|
7
|
+
function _extends() {
|
|
8
|
+
_extends = Object.assign || function(target) {
|
|
9
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
10
|
+
var source = arguments[i];
|
|
11
|
+
for (var key in source) {
|
|
12
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
13
|
+
target[key] = source[key];
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
return target;
|
|
18
|
+
};
|
|
19
|
+
return _extends.apply(this, arguments);
|
|
20
|
+
}
|
|
21
|
+
var get = function get2(obj, key, def, p, undef) {
|
|
22
|
+
key = key && key.split ? key.split(".") : [key];
|
|
23
|
+
for (p = 0; p < key.length; p++) {
|
|
24
|
+
obj = obj ? obj[key[p]] : undef;
|
|
25
|
+
}
|
|
26
|
+
return obj === undef ? def : obj;
|
|
27
|
+
};
|
|
28
|
+
var defaultBreakpoints = [40, 52, 64].map(function(n) {
|
|
29
|
+
return n + "em";
|
|
30
|
+
});
|
|
31
|
+
var defaultTheme = {
|
|
32
|
+
space: [0, 4, 8, 16, 32, 64, 128, 256, 512],
|
|
33
|
+
fontSizes: [12, 14, 16, 20, 24, 32, 48, 64, 72]
|
|
34
|
+
};
|
|
35
|
+
var aliases = {
|
|
36
|
+
bg: "backgroundColor",
|
|
37
|
+
m: "margin",
|
|
38
|
+
mt: "marginTop",
|
|
39
|
+
mr: "marginRight",
|
|
40
|
+
mb: "marginBottom",
|
|
41
|
+
ml: "marginLeft",
|
|
42
|
+
mx: "marginX",
|
|
43
|
+
my: "marginY",
|
|
44
|
+
p: "padding",
|
|
45
|
+
pt: "paddingTop",
|
|
46
|
+
pr: "paddingRight",
|
|
47
|
+
pb: "paddingBottom",
|
|
48
|
+
pl: "paddingLeft",
|
|
49
|
+
px: "paddingX",
|
|
50
|
+
py: "paddingY"
|
|
51
|
+
};
|
|
52
|
+
var multiples = {
|
|
53
|
+
marginX: ["marginLeft", "marginRight"],
|
|
54
|
+
marginY: ["marginTop", "marginBottom"],
|
|
55
|
+
paddingX: ["paddingLeft", "paddingRight"],
|
|
56
|
+
paddingY: ["paddingTop", "paddingBottom"],
|
|
57
|
+
size: ["width", "height"]
|
|
58
|
+
};
|
|
59
|
+
var scales = {
|
|
60
|
+
color: "colors",
|
|
61
|
+
backgroundColor: "colors",
|
|
62
|
+
borderColor: "colors",
|
|
63
|
+
margin: "space",
|
|
64
|
+
marginTop: "space",
|
|
65
|
+
marginRight: "space",
|
|
66
|
+
marginBottom: "space",
|
|
67
|
+
marginLeft: "space",
|
|
68
|
+
marginX: "space",
|
|
69
|
+
marginY: "space",
|
|
70
|
+
padding: "space",
|
|
71
|
+
paddingTop: "space",
|
|
72
|
+
paddingRight: "space",
|
|
73
|
+
paddingBottom: "space",
|
|
74
|
+
paddingLeft: "space",
|
|
75
|
+
paddingX: "space",
|
|
76
|
+
paddingY: "space",
|
|
77
|
+
top: "space",
|
|
78
|
+
right: "space",
|
|
79
|
+
bottom: "space",
|
|
80
|
+
left: "space",
|
|
81
|
+
gridGap: "space",
|
|
82
|
+
gridColumnGap: "space",
|
|
83
|
+
gridRowGap: "space",
|
|
84
|
+
gap: "space",
|
|
85
|
+
columnGap: "space",
|
|
86
|
+
rowGap: "space",
|
|
87
|
+
fontFamily: "fonts",
|
|
88
|
+
fontSize: "fontSizes",
|
|
89
|
+
fontWeight: "fontWeights",
|
|
90
|
+
lineHeight: "lineHeights",
|
|
91
|
+
letterSpacing: "letterSpacings",
|
|
92
|
+
border: "borders",
|
|
93
|
+
borderTop: "borders",
|
|
94
|
+
borderRight: "borders",
|
|
95
|
+
borderBottom: "borders",
|
|
96
|
+
borderLeft: "borders",
|
|
97
|
+
borderWidth: "borderWidths",
|
|
98
|
+
borderStyle: "borderStyles",
|
|
99
|
+
borderRadius: "radii",
|
|
100
|
+
borderTopRightRadius: "radii",
|
|
101
|
+
borderTopLeftRadius: "radii",
|
|
102
|
+
borderBottomRightRadius: "radii",
|
|
103
|
+
borderBottomLeftRadius: "radii",
|
|
104
|
+
borderTopWidth: "borderWidths",
|
|
105
|
+
borderTopColor: "colors",
|
|
106
|
+
borderTopStyle: "borderStyles",
|
|
107
|
+
borderBottomWidth: "borderWidths",
|
|
108
|
+
borderBottomColor: "colors",
|
|
109
|
+
borderBottomStyle: "borderStyles",
|
|
110
|
+
borderLeftWidth: "borderWidths",
|
|
111
|
+
borderLeftColor: "colors",
|
|
112
|
+
borderLeftStyle: "borderStyles",
|
|
113
|
+
borderRightWidth: "borderWidths",
|
|
114
|
+
borderRightColor: "colors",
|
|
115
|
+
borderRightStyle: "borderStyles",
|
|
116
|
+
outlineColor: "colors",
|
|
117
|
+
boxShadow: "shadows",
|
|
118
|
+
textShadow: "shadows",
|
|
119
|
+
zIndex: "zIndices",
|
|
120
|
+
width: "sizes",
|
|
121
|
+
minWidth: "sizes",
|
|
122
|
+
maxWidth: "sizes",
|
|
123
|
+
height: "sizes",
|
|
124
|
+
minHeight: "sizes",
|
|
125
|
+
maxHeight: "sizes",
|
|
126
|
+
flexBasis: "sizes",
|
|
127
|
+
size: "sizes",
|
|
128
|
+
fill: "colors",
|
|
129
|
+
stroke: "colors"
|
|
130
|
+
};
|
|
131
|
+
var positiveOrNegative = function positiveOrNegative2(scale, value) {
|
|
132
|
+
if (typeof value !== "number" || value >= 0) {
|
|
133
|
+
return get(scale, value, value);
|
|
134
|
+
}
|
|
135
|
+
var absolute = Math.abs(value);
|
|
136
|
+
var n = get(scale, absolute, absolute);
|
|
137
|
+
if (typeof n === "string")
|
|
138
|
+
return "-" + n;
|
|
139
|
+
return n * -1;
|
|
140
|
+
};
|
|
141
|
+
var transforms = ["margin", "marginTop", "marginRight", "marginBottom", "marginLeft", "marginX", "marginY", "top", "bottom", "left", "right"].reduce(function(acc, curr) {
|
|
142
|
+
var _extends2;
|
|
143
|
+
return _extends({}, acc, (_extends2 = {}, _extends2[curr] = positiveOrNegative, _extends2));
|
|
144
|
+
}, {});
|
|
145
|
+
var responsive = function responsive2(styles) {
|
|
146
|
+
return function(theme) {
|
|
147
|
+
var next = {};
|
|
148
|
+
var breakpoints = get(theme, "breakpoints", defaultBreakpoints);
|
|
149
|
+
var mediaQueries = [null].concat(breakpoints.map(function(n) {
|
|
150
|
+
return "@media screen and (min-width: " + n + ")";
|
|
151
|
+
}));
|
|
152
|
+
for (var key in styles) {
|
|
153
|
+
var value = typeof styles[key] === "function" ? styles[key](theme) : styles[key];
|
|
154
|
+
if (value == null)
|
|
155
|
+
continue;
|
|
156
|
+
if (!Array.isArray(value)) {
|
|
157
|
+
next[key] = value;
|
|
158
|
+
continue;
|
|
159
|
+
}
|
|
160
|
+
for (var i = 0; i < value.slice(0, mediaQueries.length).length; i++) {
|
|
161
|
+
var media = mediaQueries[i];
|
|
162
|
+
if (!media) {
|
|
163
|
+
next[key] = value[i];
|
|
164
|
+
continue;
|
|
165
|
+
}
|
|
166
|
+
next[media] = next[media] || {};
|
|
167
|
+
if (value[i] == null)
|
|
168
|
+
continue;
|
|
169
|
+
next[media][key] = value[i];
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
return next;
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
var css = function css2(args) {
|
|
176
|
+
return function(props) {
|
|
177
|
+
if (props === void 0) {
|
|
178
|
+
props = {};
|
|
179
|
+
}
|
|
180
|
+
var theme = _extends({}, defaultTheme, {}, props.theme || props);
|
|
181
|
+
var result = {};
|
|
182
|
+
var obj = typeof args === "function" ? args(theme) : args;
|
|
183
|
+
var styles = responsive(obj)(theme);
|
|
184
|
+
for (var key in styles) {
|
|
185
|
+
var x = styles[key];
|
|
186
|
+
var val = typeof x === "function" ? x(theme) : x;
|
|
187
|
+
if (key === "variant") {
|
|
188
|
+
var variant = css2(get(theme, val))(theme);
|
|
189
|
+
result = _extends({}, result, {}, variant);
|
|
190
|
+
continue;
|
|
191
|
+
}
|
|
192
|
+
if (val && typeof val === "object") {
|
|
193
|
+
result[key] = css2(val)(theme);
|
|
194
|
+
continue;
|
|
195
|
+
}
|
|
196
|
+
var prop = get(aliases, key, key);
|
|
197
|
+
var scaleName = get(scales, prop);
|
|
198
|
+
var scale = get(theme, scaleName, get(theme, prop, {}));
|
|
199
|
+
var transform = get(transforms, prop, get);
|
|
200
|
+
var value = transform(scale, val, val);
|
|
201
|
+
if (multiples[prop]) {
|
|
202
|
+
var dirs = multiples[prop];
|
|
203
|
+
for (var i = 0; i < dirs.length; i++) {
|
|
204
|
+
result[dirs[i]] = value;
|
|
205
|
+
}
|
|
206
|
+
} else {
|
|
207
|
+
result[prop] = value;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
return result;
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
var index_esm_default = css;
|
|
214
|
+
|
|
215
|
+
export {
|
|
216
|
+
index_esm_default
|
|
217
|
+
};
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import {
|
|
2
|
+
__commonJS,
|
|
3
|
+
init_react_shim
|
|
4
|
+
} from "./chunk-VIIHQGZ3.js";
|
|
5
|
+
|
|
6
|
+
// node_modules/uuid/lib/rng-browser.js
|
|
7
|
+
var require_rng_browser = __commonJS({
|
|
8
|
+
"node_modules/uuid/lib/rng-browser.js"(exports, module) {
|
|
9
|
+
init_react_shim();
|
|
10
|
+
var getRandomValues = typeof crypto != "undefined" && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto != "undefined" && typeof window.msCrypto.getRandomValues == "function" && msCrypto.getRandomValues.bind(msCrypto);
|
|
11
|
+
if (getRandomValues) {
|
|
12
|
+
rnds8 = new Uint8Array(16);
|
|
13
|
+
module.exports = function whatwgRNG() {
|
|
14
|
+
getRandomValues(rnds8);
|
|
15
|
+
return rnds8;
|
|
16
|
+
};
|
|
17
|
+
} else {
|
|
18
|
+
rnds = new Array(16);
|
|
19
|
+
module.exports = function mathRNG() {
|
|
20
|
+
for (var i = 0, r; i < 16; i++) {
|
|
21
|
+
if ((i & 3) === 0)
|
|
22
|
+
r = Math.random() * 4294967296;
|
|
23
|
+
rnds[i] = r >>> ((i & 3) << 3) & 255;
|
|
24
|
+
}
|
|
25
|
+
return rnds;
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
var rnds8;
|
|
29
|
+
var rnds;
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
// node_modules/uuid/lib/bytesToUuid.js
|
|
34
|
+
var require_bytesToUuid = __commonJS({
|
|
35
|
+
"node_modules/uuid/lib/bytesToUuid.js"(exports, module) {
|
|
36
|
+
init_react_shim();
|
|
37
|
+
var byteToHex = [];
|
|
38
|
+
for (i = 0; i < 256; ++i) {
|
|
39
|
+
byteToHex[i] = (i + 256).toString(16).substr(1);
|
|
40
|
+
}
|
|
41
|
+
var i;
|
|
42
|
+
function bytesToUuid(buf, offset) {
|
|
43
|
+
var i2 = offset || 0;
|
|
44
|
+
var bth = byteToHex;
|
|
45
|
+
return [
|
|
46
|
+
bth[buf[i2++]],
|
|
47
|
+
bth[buf[i2++]],
|
|
48
|
+
bth[buf[i2++]],
|
|
49
|
+
bth[buf[i2++]],
|
|
50
|
+
"-",
|
|
51
|
+
bth[buf[i2++]],
|
|
52
|
+
bth[buf[i2++]],
|
|
53
|
+
"-",
|
|
54
|
+
bth[buf[i2++]],
|
|
55
|
+
bth[buf[i2++]],
|
|
56
|
+
"-",
|
|
57
|
+
bth[buf[i2++]],
|
|
58
|
+
bth[buf[i2++]],
|
|
59
|
+
"-",
|
|
60
|
+
bth[buf[i2++]],
|
|
61
|
+
bth[buf[i2++]],
|
|
62
|
+
bth[buf[i2++]],
|
|
63
|
+
bth[buf[i2++]],
|
|
64
|
+
bth[buf[i2++]],
|
|
65
|
+
bth[buf[i2++]]
|
|
66
|
+
].join("");
|
|
67
|
+
}
|
|
68
|
+
module.exports = bytesToUuid;
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
// node_modules/uuid/v1.js
|
|
73
|
+
var require_v1 = __commonJS({
|
|
74
|
+
"node_modules/uuid/v1.js"(exports, module) {
|
|
75
|
+
init_react_shim();
|
|
76
|
+
var rng = require_rng_browser();
|
|
77
|
+
var bytesToUuid = require_bytesToUuid();
|
|
78
|
+
var _nodeId;
|
|
79
|
+
var _clockseq;
|
|
80
|
+
var _lastMSecs = 0;
|
|
81
|
+
var _lastNSecs = 0;
|
|
82
|
+
function v1(options, buf, offset) {
|
|
83
|
+
var i = buf && offset || 0;
|
|
84
|
+
var b = buf || [];
|
|
85
|
+
options = options || {};
|
|
86
|
+
var node = options.node || _nodeId;
|
|
87
|
+
var clockseq = options.clockseq !== void 0 ? options.clockseq : _clockseq;
|
|
88
|
+
if (node == null || clockseq == null) {
|
|
89
|
+
var seedBytes = rng();
|
|
90
|
+
if (node == null) {
|
|
91
|
+
node = _nodeId = [
|
|
92
|
+
seedBytes[0] | 1,
|
|
93
|
+
seedBytes[1],
|
|
94
|
+
seedBytes[2],
|
|
95
|
+
seedBytes[3],
|
|
96
|
+
seedBytes[4],
|
|
97
|
+
seedBytes[5]
|
|
98
|
+
];
|
|
99
|
+
}
|
|
100
|
+
if (clockseq == null) {
|
|
101
|
+
clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 16383;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
var msecs = options.msecs !== void 0 ? options.msecs : new Date().getTime();
|
|
105
|
+
var nsecs = options.nsecs !== void 0 ? options.nsecs : _lastNSecs + 1;
|
|
106
|
+
var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 1e4;
|
|
107
|
+
if (dt < 0 && options.clockseq === void 0) {
|
|
108
|
+
clockseq = clockseq + 1 & 16383;
|
|
109
|
+
}
|
|
110
|
+
if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === void 0) {
|
|
111
|
+
nsecs = 0;
|
|
112
|
+
}
|
|
113
|
+
if (nsecs >= 1e4) {
|
|
114
|
+
throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");
|
|
115
|
+
}
|
|
116
|
+
_lastMSecs = msecs;
|
|
117
|
+
_lastNSecs = nsecs;
|
|
118
|
+
_clockseq = clockseq;
|
|
119
|
+
msecs += 122192928e5;
|
|
120
|
+
var tl = ((msecs & 268435455) * 1e4 + nsecs) % 4294967296;
|
|
121
|
+
b[i++] = tl >>> 24 & 255;
|
|
122
|
+
b[i++] = tl >>> 16 & 255;
|
|
123
|
+
b[i++] = tl >>> 8 & 255;
|
|
124
|
+
b[i++] = tl & 255;
|
|
125
|
+
var tmh = msecs / 4294967296 * 1e4 & 268435455;
|
|
126
|
+
b[i++] = tmh >>> 8 & 255;
|
|
127
|
+
b[i++] = tmh & 255;
|
|
128
|
+
b[i++] = tmh >>> 24 & 15 | 16;
|
|
129
|
+
b[i++] = tmh >>> 16 & 255;
|
|
130
|
+
b[i++] = clockseq >>> 8 | 128;
|
|
131
|
+
b[i++] = clockseq & 255;
|
|
132
|
+
for (var n = 0; n < 6; ++n) {
|
|
133
|
+
b[i + n] = node[n];
|
|
134
|
+
}
|
|
135
|
+
return buf ? buf : bytesToUuid(b);
|
|
136
|
+
}
|
|
137
|
+
module.exports = v1;
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
// node_modules/uuid/v4.js
|
|
142
|
+
var require_v4 = __commonJS({
|
|
143
|
+
"node_modules/uuid/v4.js"(exports, module) {
|
|
144
|
+
init_react_shim();
|
|
145
|
+
var rng = require_rng_browser();
|
|
146
|
+
var bytesToUuid = require_bytesToUuid();
|
|
147
|
+
function v4(options, buf, offset) {
|
|
148
|
+
var i = buf && offset || 0;
|
|
149
|
+
if (typeof options == "string") {
|
|
150
|
+
buf = options === "binary" ? new Array(16) : null;
|
|
151
|
+
options = null;
|
|
152
|
+
}
|
|
153
|
+
options = options || {};
|
|
154
|
+
var rnds = options.random || (options.rng || rng)();
|
|
155
|
+
rnds[6] = rnds[6] & 15 | 64;
|
|
156
|
+
rnds[8] = rnds[8] & 63 | 128;
|
|
157
|
+
if (buf) {
|
|
158
|
+
for (var ii = 0; ii < 16; ++ii) {
|
|
159
|
+
buf[i + ii] = rnds[ii];
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
return buf || bytesToUuid(rnds);
|
|
163
|
+
}
|
|
164
|
+
module.exports = v4;
|
|
165
|
+
}
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
// node_modules/uuid/index.js
|
|
169
|
+
var require_uuid = __commonJS({
|
|
170
|
+
"node_modules/uuid/index.js"(exports, module) {
|
|
171
|
+
init_react_shim();
|
|
172
|
+
var v1 = require_v1();
|
|
173
|
+
var v4 = require_v4();
|
|
174
|
+
var uuid = v4;
|
|
175
|
+
uuid.v1 = v1;
|
|
176
|
+
uuid.v4 = v4;
|
|
177
|
+
module.exports = uuid;
|
|
178
|
+
}
|
|
179
|
+
});
|
|
180
|
+
|
|
181
|
+
export {
|
|
182
|
+
require_uuid
|
|
183
|
+
};
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
import {
|
|
2
|
+
__commonJS,
|
|
3
|
+
init_react_shim
|
|
4
|
+
} from "./chunk-VIIHQGZ3.js";
|
|
5
|
+
|
|
6
|
+
// node_modules/react-is/cjs/react-is.development.js
|
|
7
|
+
var require_react_is_development = __commonJS({
|
|
8
|
+
"node_modules/react-is/cjs/react-is.development.js"(exports) {
|
|
9
|
+
init_react_shim();
|
|
10
|
+
"use strict";
|
|
11
|
+
if (true) {
|
|
12
|
+
(function() {
|
|
13
|
+
"use strict";
|
|
14
|
+
var hasSymbol = typeof Symbol === "function" && Symbol.for;
|
|
15
|
+
var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for("react.element") : 60103;
|
|
16
|
+
var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for("react.portal") : 60106;
|
|
17
|
+
var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for("react.fragment") : 60107;
|
|
18
|
+
var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for("react.strict_mode") : 60108;
|
|
19
|
+
var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for("react.profiler") : 60114;
|
|
20
|
+
var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for("react.provider") : 60109;
|
|
21
|
+
var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for("react.context") : 60110;
|
|
22
|
+
var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for("react.async_mode") : 60111;
|
|
23
|
+
var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for("react.concurrent_mode") : 60111;
|
|
24
|
+
var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for("react.forward_ref") : 60112;
|
|
25
|
+
var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for("react.suspense") : 60113;
|
|
26
|
+
var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for("react.suspense_list") : 60120;
|
|
27
|
+
var REACT_MEMO_TYPE = hasSymbol ? Symbol.for("react.memo") : 60115;
|
|
28
|
+
var REACT_LAZY_TYPE = hasSymbol ? Symbol.for("react.lazy") : 60116;
|
|
29
|
+
var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for("react.block") : 60121;
|
|
30
|
+
var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for("react.fundamental") : 60117;
|
|
31
|
+
var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for("react.responder") : 60118;
|
|
32
|
+
var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for("react.scope") : 60119;
|
|
33
|
+
function isValidElementType(type) {
|
|
34
|
+
return typeof type === "string" || typeof type === "function" || type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === "object" && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);
|
|
35
|
+
}
|
|
36
|
+
function typeOf(object) {
|
|
37
|
+
if (typeof object === "object" && object !== null) {
|
|
38
|
+
var $$typeof = object.$$typeof;
|
|
39
|
+
switch ($$typeof) {
|
|
40
|
+
case REACT_ELEMENT_TYPE:
|
|
41
|
+
var type = object.type;
|
|
42
|
+
switch (type) {
|
|
43
|
+
case REACT_ASYNC_MODE_TYPE:
|
|
44
|
+
case REACT_CONCURRENT_MODE_TYPE:
|
|
45
|
+
case REACT_FRAGMENT_TYPE:
|
|
46
|
+
case REACT_PROFILER_TYPE:
|
|
47
|
+
case REACT_STRICT_MODE_TYPE:
|
|
48
|
+
case REACT_SUSPENSE_TYPE:
|
|
49
|
+
return type;
|
|
50
|
+
default:
|
|
51
|
+
var $$typeofType = type && type.$$typeof;
|
|
52
|
+
switch ($$typeofType) {
|
|
53
|
+
case REACT_CONTEXT_TYPE:
|
|
54
|
+
case REACT_FORWARD_REF_TYPE:
|
|
55
|
+
case REACT_LAZY_TYPE:
|
|
56
|
+
case REACT_MEMO_TYPE:
|
|
57
|
+
case REACT_PROVIDER_TYPE:
|
|
58
|
+
return $$typeofType;
|
|
59
|
+
default:
|
|
60
|
+
return $$typeof;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
case REACT_PORTAL_TYPE:
|
|
64
|
+
return $$typeof;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
return void 0;
|
|
68
|
+
}
|
|
69
|
+
var AsyncMode = REACT_ASYNC_MODE_TYPE;
|
|
70
|
+
var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
|
|
71
|
+
var ContextConsumer = REACT_CONTEXT_TYPE;
|
|
72
|
+
var ContextProvider = REACT_PROVIDER_TYPE;
|
|
73
|
+
var Element = REACT_ELEMENT_TYPE;
|
|
74
|
+
var ForwardRef = REACT_FORWARD_REF_TYPE;
|
|
75
|
+
var Fragment = REACT_FRAGMENT_TYPE;
|
|
76
|
+
var Lazy = REACT_LAZY_TYPE;
|
|
77
|
+
var Memo = REACT_MEMO_TYPE;
|
|
78
|
+
var Portal = REACT_PORTAL_TYPE;
|
|
79
|
+
var Profiler = REACT_PROFILER_TYPE;
|
|
80
|
+
var StrictMode = REACT_STRICT_MODE_TYPE;
|
|
81
|
+
var Suspense = REACT_SUSPENSE_TYPE;
|
|
82
|
+
var hasWarnedAboutDeprecatedIsAsyncMode = false;
|
|
83
|
+
function isAsyncMode(object) {
|
|
84
|
+
{
|
|
85
|
+
if (!hasWarnedAboutDeprecatedIsAsyncMode) {
|
|
86
|
+
hasWarnedAboutDeprecatedIsAsyncMode = true;
|
|
87
|
+
console["warn"]("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.");
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
|
|
91
|
+
}
|
|
92
|
+
function isConcurrentMode(object) {
|
|
93
|
+
return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
|
|
94
|
+
}
|
|
95
|
+
function isContextConsumer(object) {
|
|
96
|
+
return typeOf(object) === REACT_CONTEXT_TYPE;
|
|
97
|
+
}
|
|
98
|
+
function isContextProvider(object) {
|
|
99
|
+
return typeOf(object) === REACT_PROVIDER_TYPE;
|
|
100
|
+
}
|
|
101
|
+
function isElement(object) {
|
|
102
|
+
return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
103
|
+
}
|
|
104
|
+
function isForwardRef(object) {
|
|
105
|
+
return typeOf(object) === REACT_FORWARD_REF_TYPE;
|
|
106
|
+
}
|
|
107
|
+
function isFragment(object) {
|
|
108
|
+
return typeOf(object) === REACT_FRAGMENT_TYPE;
|
|
109
|
+
}
|
|
110
|
+
function isLazy(object) {
|
|
111
|
+
return typeOf(object) === REACT_LAZY_TYPE;
|
|
112
|
+
}
|
|
113
|
+
function isMemo(object) {
|
|
114
|
+
return typeOf(object) === REACT_MEMO_TYPE;
|
|
115
|
+
}
|
|
116
|
+
function isPortal(object) {
|
|
117
|
+
return typeOf(object) === REACT_PORTAL_TYPE;
|
|
118
|
+
}
|
|
119
|
+
function isProfiler(object) {
|
|
120
|
+
return typeOf(object) === REACT_PROFILER_TYPE;
|
|
121
|
+
}
|
|
122
|
+
function isStrictMode(object) {
|
|
123
|
+
return typeOf(object) === REACT_STRICT_MODE_TYPE;
|
|
124
|
+
}
|
|
125
|
+
function isSuspense(object) {
|
|
126
|
+
return typeOf(object) === REACT_SUSPENSE_TYPE;
|
|
127
|
+
}
|
|
128
|
+
exports.AsyncMode = AsyncMode;
|
|
129
|
+
exports.ConcurrentMode = ConcurrentMode;
|
|
130
|
+
exports.ContextConsumer = ContextConsumer;
|
|
131
|
+
exports.ContextProvider = ContextProvider;
|
|
132
|
+
exports.Element = Element;
|
|
133
|
+
exports.ForwardRef = ForwardRef;
|
|
134
|
+
exports.Fragment = Fragment;
|
|
135
|
+
exports.Lazy = Lazy;
|
|
136
|
+
exports.Memo = Memo;
|
|
137
|
+
exports.Portal = Portal;
|
|
138
|
+
exports.Profiler = Profiler;
|
|
139
|
+
exports.StrictMode = StrictMode;
|
|
140
|
+
exports.Suspense = Suspense;
|
|
141
|
+
exports.isAsyncMode = isAsyncMode;
|
|
142
|
+
exports.isConcurrentMode = isConcurrentMode;
|
|
143
|
+
exports.isContextConsumer = isContextConsumer;
|
|
144
|
+
exports.isContextProvider = isContextProvider;
|
|
145
|
+
exports.isElement = isElement;
|
|
146
|
+
exports.isForwardRef = isForwardRef;
|
|
147
|
+
exports.isFragment = isFragment;
|
|
148
|
+
exports.isLazy = isLazy;
|
|
149
|
+
exports.isMemo = isMemo;
|
|
150
|
+
exports.isPortal = isPortal;
|
|
151
|
+
exports.isProfiler = isProfiler;
|
|
152
|
+
exports.isStrictMode = isStrictMode;
|
|
153
|
+
exports.isSuspense = isSuspense;
|
|
154
|
+
exports.isValidElementType = isValidElementType;
|
|
155
|
+
exports.typeOf = typeOf;
|
|
156
|
+
})();
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
});
|
|
160
|
+
|
|
161
|
+
// node_modules/react-is/index.js
|
|
162
|
+
var require_react_is = __commonJS({
|
|
163
|
+
"node_modules/react-is/index.js"(exports, module) {
|
|
164
|
+
init_react_shim();
|
|
165
|
+
"use strict";
|
|
166
|
+
if (false) {
|
|
167
|
+
module.exports = null;
|
|
168
|
+
} else {
|
|
169
|
+
module.exports = require_react_is_development();
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
});
|
|
173
|
+
|
|
174
|
+
export {
|
|
175
|
+
require_react_is
|
|
176
|
+
};
|
|
177
|
+
/** @license React v16.13.1
|
|
178
|
+
* react-is.development.js
|
|
179
|
+
*
|
|
180
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
181
|
+
*
|
|
182
|
+
* This source code is licensed under the MIT license found in the
|
|
183
|
+
* LICENSE file in the root directory of this source tree.
|
|
184
|
+
*/
|