@zohodesk/components 1.0.0-alpha-249 → 1.0.0-alpha-250
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/es/AppContainer/AppContainer.js +1 -1
- package/es/Avatar/Avatar.js +35 -27
- package/es/Avatar/Avatar.module.css +29 -9
- package/es/Avatar/props/defaultProps.js +2 -1
- package/es/Avatar/props/propTypes.js +2 -1
- package/es/AvatarTeam/AvatarTeam.js +1 -1
- package/es/AvatarTeam/AvatarTeam.module.css +21 -7
- package/es/Button/Button.module.css +97 -24
- package/es/Buttongroup/Buttongroup.module.css +37 -8
- package/es/CheckBox/CheckBox.js +1 -1
- package/es/CheckBox/CheckBox.module.css +17 -11
- package/es/DateTime/DateTime.module.css +39 -12
- package/es/DateTime/DateWidget.module.css +9 -5
- package/es/DateTime/YearView.module.css +17 -7
- package/es/DropBox/DropBox.js +1 -1
- package/es/DropBox/DropBox.module.css +47 -11
- package/es/DropDown/DropDownHeading.module.css +7 -3
- package/es/DropDown/DropDownItem.module.css +32 -6
- package/es/Heading/Heading.js +36 -0
- package/es/Heading/Heading.module.css +5 -0
- package/es/Heading/docs/Heading__default.docs.js +21 -0
- package/es/Heading/props/defaultProps.js +5 -0
- package/es/Heading/props/propTypes.js +11 -0
- package/es/ListItem/ListContainer.js +1 -1
- package/es/ListItem/ListItem.js +1 -1
- package/es/ListItem/ListItem.module.css +57 -25
- package/es/ListItem/ListItemWithAvatar.js +1 -1
- package/es/ListItem/ListItemWithCheckBox.js +1 -1
- package/es/ListItem/ListItemWithIcon.js +1 -1
- package/es/ListItem/ListItemWithRadio.js +1 -1
- package/es/Modal/Modal.js +1 -1
- package/es/MultiSelect/AdvancedMultiSelect.js +1 -1
- package/es/MultiSelect/MultiSelect.module.css +28 -11
- package/es/MultiSelect/SelectedOptions.js +1 -1
- package/es/MultiSelect/SelectedOptions.module.css +8 -2
- package/es/MultiSelect/Suggestions.js +1 -1
- package/es/PopOver/PopOver.module.css +1 -1
- package/es/Popup/Popup.js +1 -1
- package/es/Radio/Radio.module.css +10 -4
- package/es/Responsive/Responsive.js +0 -1
- package/es/Responsive/docs/style.module.css +17 -8
- package/es/ResponsiveDropBox/ResponsiveDropBox.js +1 -1
- package/es/Ribbon/Ribbon.module.css +93 -28
- package/es/RippleEffect/RippleEffect.module.css +9 -27
- package/es/Select/Select.js +1 -1
- package/es/Select/Select.module.css +12 -2
- package/es/Select/SelectWithIcon.js +0 -1
- package/es/Stencils/Stencils.module.css +21 -3
- package/es/Switch/Switch.js +1 -1
- package/es/Switch/Switch.module.css +6 -7
- package/es/Tab/Tab.js +1 -1
- package/es/Tab/Tab.module.css +16 -7
- package/es/Tab/TabWrapper.js +1 -1
- package/es/Tab/Tabs.js +1 -1
- package/es/Tab/Tabs.module.css +42 -8
- package/es/Tab/docs/tabdocs.module.css +1 -1
- package/es/Tag/Tag.module.css +36 -14
- package/es/TextBox/TextBox.js +1 -1
- package/es/TextBox/TextBox.module.css +7 -11
- package/es/TextBoxIcon/TextBoxIcon.js +1 -1
- package/es/TextBoxIcon/TextBoxIcon.module.css +12 -5
- package/es/Textarea/Textarea.js +1 -1
- package/es/Textarea/Textarea.module.css +6 -7
- package/es/Tooltip/Tooltip.module.css +9 -8
- package/es/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +1 -1
- package/es/common/animation.module.css +219 -21
- package/es/common/basicReset.module.css +2 -12
- package/es/common/common.module.css +64 -18
- package/es/common/customscroll.module.css +17 -21
- package/es/common/docStyle.module.css +79 -32
- package/es/common/transition.module.css +50 -10
- package/es/deprecated/AdvancedMultiSelect.module.css +22 -8
- package/es/index.js +3 -1
- package/es/semantic/Button/semanticButton.module.css +3 -3
- package/lib/Accordion/Accordion.js +131 -0
- package/lib/Accordion/AccordionItem.js +110 -0
- package/lib/Accordion/__tests__/Accordion.spec.js +85 -0
- package/lib/Accordion/docs/Accordion__Demo.docs.js +126 -0
- package/lib/Accordion/index.js +23 -0
- package/lib/Accordion/props/defaultProps.js +16 -0
- package/lib/Accordion/props/propTypes.js +42 -0
- package/lib/Animation/Animation.js +186 -0
- package/lib/Animation/__tests__/Animation.spec.js +23 -0
- package/lib/Animation/docs/Animation__default.docs.js +85 -0
- package/lib/Animation/docs/Animation__fadeIn.docs.js +85 -0
- package/lib/Animation/docs/Animation__scaleIn.docs.js +85 -0
- package/lib/Animation/docs/Animation__skewIn.docs.js +85 -0
- package/lib/Animation/docs/Animation__slideDown.docs.js +85 -0
- package/lib/Animation/docs/Animation__slideLeft.docs.js +85 -0
- package/lib/Animation/docs/Animation__zoomIn.docs.js +85 -0
- package/lib/Animation/props/defaultProps.js +14 -0
- package/lib/Animation/props/propTypes.js +23 -0
- package/lib/AppContainer/AppContainer.js +194 -0
- package/lib/AppContainer/AppContainer.module.css +18 -0
- package/lib/AppContainer/docs/AppContainer__default.docs.js +70 -0
- package/lib/AppContainer/props/defaultProps.js +15 -0
- package/lib/AppContainer/props/propTypes.js +26 -0
- package/lib/Avatar/Avatar.js +243 -0
- package/lib/Avatar/Avatar.module.css +135 -0
- package/lib/Avatar/__tests__/Avatar.spec.js +208 -0
- package/lib/Avatar/__tests__/__snapshots__/Avatar.spec.js.snap +288 -0
- package/lib/Avatar/docs/Avatar__custom.docs.js +87 -0
- package/lib/Avatar/docs/Avatar__default.docs.js +83 -0
- package/lib/Avatar/docs/Avatar__palette.docs.js +107 -0
- package/lib/Avatar/docs/Avatar__text.docs.js +86 -0
- package/lib/Avatar/props/defaultProps.js +21 -0
- package/lib/Avatar/props/propTypes.js +34 -0
- package/lib/AvatarTeam/AvatarTeam.js +126 -0
- package/lib/AvatarTeam/AvatarTeam.module.css +161 -0
- package/lib/AvatarTeam/__tests__/AvatarTeam.spec.js +92 -0
- package/lib/AvatarTeam/__tests__/__snapshots__/AvatarTeam.spec.js.snap +226 -0
- package/lib/AvatarTeam/docs/AvatarTeam__custom.docs.js +124 -0
- package/lib/AvatarTeam/docs/AvatarTeam__default.docs.js +82 -0
- package/lib/AvatarTeam/docs/AvatarTeam__palette.docs.js +101 -0
- package/lib/AvatarTeam/docs/AvatarTeam__size.docs.js +100 -0
- package/lib/AvatarTeam/props/defaultProps.js +20 -0
- package/lib/AvatarTeam/props/propTypes.js +34 -0
- package/lib/Button/Button.js +115 -0
- package/lib/Button/Button.module.css +522 -0
- package/lib/Button/__tests__/Button.spec.js +233 -0
- package/lib/Button/__tests__/__snapshots__/Button.spec.js.snap +191 -0
- package/lib/Button/docs/Button__custom.docs.js +826 -0
- package/lib/Button/docs/Button__default.docs.js +590 -0
- package/lib/Button/props/defaultProps.js +24 -0
- package/lib/Button/props/propTypes.js +33 -0
- package/lib/Buttongroup/Buttongroup.js +95 -0
- package/lib/Buttongroup/Buttongroup.module.css +89 -0
- package/lib/Buttongroup/__test__/Buttongroup.spec.js +86 -0
- package/lib/Buttongroup/__test__/__snapshots__/Buttongroup.spec.js.snap +146 -0
- package/lib/Buttongroup/docs/Buttongroup__custom.docs.js +89 -0
- package/lib/Buttongroup/docs/Buttongroup__footer.docs.js +85 -0
- package/lib/Buttongroup/docs/Buttongroup__header.docs.js +98 -0
- package/lib/Buttongroup/props/defaultProps.js +11 -0
- package/lib/Buttongroup/props/propTypes.js +18 -0
- package/lib/Card/Card.js +362 -0
- package/lib/Card/Card.module.css +20 -0
- package/lib/Card/__tests__/Card.spec.js +56 -0
- package/lib/Card/docs/Card__Custom.docs.js +90 -0
- package/lib/Card/docs/Card__Default.docs.js +92 -0
- package/lib/Card/docs/Card__Scroll.docs.js +114 -0
- package/lib/Card/index.js +37 -0
- package/lib/Card/props/defaultProps.js +23 -0
- package/lib/Card/props/propTypes.js +57 -0
- package/lib/CheckBox/CheckBox.js +212 -0
- package/lib/CheckBox/CheckBox.module.css +157 -0
- package/lib/CheckBox/__tests__/CheckBox.spec.js +18 -0
- package/lib/CheckBox/docs/CheckBox__custom.docs.js +348 -0
- package/lib/CheckBox/docs/CheckBox__default.docs.js +273 -0
- package/lib/CheckBox/props/defaultProps.js +25 -0
- package/lib/CheckBox/props/propTypes.js +52 -0
- package/lib/DateTime/CalendarView.js +266 -0
- package/lib/DateTime/DateTime.js +860 -0
- package/lib/DateTime/DateTime.module.css +188 -0
- package/lib/DateTime/DateTimePopupFooter.js +90 -0
- package/lib/DateTime/DateTimePopupHeader.js +149 -0
- package/lib/DateTime/DateWidget.js +1121 -0
- package/lib/DateTime/DateWidget.module.css +38 -0
- package/lib/DateTime/DaysRow.js +76 -0
- package/lib/DateTime/Time.js +248 -0
- package/lib/DateTime/YearView.js +317 -0
- package/lib/DateTime/YearView.module.css +81 -0
- package/lib/DateTime/__tests__/CalendarView.spec.js +45 -0
- package/lib/DateTime/__tests__/DateTime.spec.js +127 -0
- package/lib/DateTime/__tests__/DateWidget.spec.js +81 -0
- package/lib/DateTime/common.js +36 -0
- package/lib/DateTime/constants.js +77 -0
- package/lib/DateTime/dateFormatUtils/dateFormat.js +613 -0
- package/lib/DateTime/dateFormatUtils/dayChange.js +81 -0
- package/lib/DateTime/dateFormatUtils/index.js +274 -0
- package/lib/DateTime/dateFormatUtils/monthChange.js +94 -0
- package/lib/DateTime/dateFormatUtils/timeChange.js +240 -0
- package/lib/DateTime/dateFormatUtils/yearChange.js +119 -0
- package/lib/DateTime/docs/DateTime__default.docs.js +142 -0
- package/lib/DateTime/docs/DateWidget__default.docs.js +240 -0
- package/lib/DateTime/docs/timezonedata.json +1 -0
- package/lib/DateTime/index.js +15 -0
- package/lib/DateTime/objectUtils.js +76 -0
- package/lib/DateTime/props/defaultProps.js +61 -0
- package/lib/DateTime/props/propTypes.js +145 -0
- package/lib/DateTime/typeChecker.js +26 -0
- package/lib/DateTime/validator.js +353 -0
- package/lib/DropBox/DropBox.js +327 -0
- package/lib/DropBox/DropBox.module.css +406 -0
- package/lib/DropBox/DropBoxPositionMapping.json +145 -0
- package/lib/DropBox/__tests__/DropBox.spec.js +87 -0
- package/lib/DropBox/docs/DropBox__custom.docs.js +122 -0
- package/lib/DropBox/docs/DropBox__customOrder.docs.js +141 -0
- package/lib/DropBox/docs/DropBox__fixedPosition.docs.js +140 -0
- package/lib/DropBox/docs/DropBox__position.docs.js +142 -0
- package/lib/DropBox/docs/DropBox__size.docs.js +116 -0
- package/lib/DropBox/props/defaultProps.js +27 -0
- package/lib/DropBox/props/propTypes.js +58 -0
- package/lib/DropDown/DropDown.js +177 -0
- package/lib/DropDown/DropDown.module.css +5 -0
- package/lib/DropDown/DropDownHeading.js +88 -0
- package/lib/DropDown/DropDownHeading.module.css +53 -0
- package/lib/DropDown/DropDownItem.js +126 -0
- package/lib/DropDown/DropDownItem.module.css +94 -0
- package/lib/DropDown/DropDownSearch.js +114 -0
- package/lib/DropDown/DropDownSearch.module.css +14 -0
- package/lib/DropDown/DropDownSeparator.js +64 -0
- package/lib/DropDown/DropDownSeparator.module.css +7 -0
- package/lib/DropDown/__tests__/DropDown.spec.js +50 -0
- package/lib/DropDown/__tests__/DropDownItem.spec.js +51 -0
- package/lib/DropDown/__tests__/DropDownSearch.spec.js +17 -0
- package/lib/DropDown/docs/DropDownHeading__custom.docs.js +73 -0
- package/lib/DropDown/docs/DropDownHeading__default.docs.js +70 -0
- package/lib/DropDown/props/defaultProps.js +28 -0
- package/lib/DropDown/props/propTypes.js +94 -0
- package/lib/Heading/Heading.js +91 -0
- package/lib/Heading/Heading.module.css +5 -0
- package/lib/Heading/docs/Heading__default.docs.js +74 -0
- package/lib/Heading/props/defaultProps.js +12 -0
- package/lib/Heading/props/propTypes.js +22 -0
- package/lib/Label/Label.js +90 -0
- package/lib/Label/Label.module.css +52 -0
- package/lib/Label/LabelColors.module.css +21 -0
- package/lib/Label/__tests__/Label.spec.js +137 -0
- package/lib/Label/__tests__/__snapshots__/Label.spec.js.snap +101 -0
- package/lib/Label/docs/Label__clipped.docs.js +81 -0
- package/lib/Label/docs/Label__custom.docs.js +85 -0
- package/lib/Label/docs/Label__palette.docs.js +96 -0
- package/lib/Label/docs/Label__size.docs.js +83 -0
- package/lib/Label/docs/Label__type.docs.js +91 -0
- package/lib/Label/props/defaultProps.js +17 -0
- package/lib/Label/props/propTypes.js +25 -0
- package/lib/Layout/Box.js +124 -0
- package/lib/Layout/Container.js +141 -0
- package/lib/Layout/Layout.module.css +336 -0
- package/lib/Layout/__tests__/Box.spec.js +121 -0
- package/lib/Layout/__tests__/Container.spec.js +127 -0
- package/lib/Layout/docs/Layout__Hidden.docs.js +127 -0
- package/lib/Layout/docs/Layout__default.docs.js +98 -0
- package/lib/Layout/docs/Layout__four_Column.docs.js +129 -0
- package/lib/Layout/docs/Layout__three_Column.docs.js +126 -0
- package/lib/Layout/docs/Layout__two_Column.docs.js +119 -0
- package/lib/Layout/index.js +34 -0
- package/lib/Layout/props/defaultProps.js +20 -0
- package/lib/Layout/props/propTypes.js +54 -0
- package/lib/Layout/utils.js +55 -0
- package/lib/LightNightMode/Colors.json +497 -0
- package/lib/LightNightMode/docs/AlternativeColors.docs.js +153 -0
- package/lib/ListItem/ListContainer.js +114 -0
- package/lib/ListItem/ListItem.js +182 -0
- package/lib/ListItem/ListItem.module.css +209 -0
- package/lib/ListItem/ListItemWithAvatar.js +206 -0
- package/lib/ListItem/ListItemWithCheckBox.js +170 -0
- package/lib/ListItem/ListItemWithIcon.js +187 -0
- package/lib/ListItem/ListItemWithRadio.js +172 -0
- package/lib/ListItem/docs/ListItemWithAvatar__custom.docs.js +206 -0
- package/lib/ListItem/docs/ListItemWithAvatar__default.docs.js +162 -0
- package/lib/ListItem/docs/ListItemWithCheckBox__custom.docs.js +142 -0
- package/lib/ListItem/docs/ListItemWithCheckBox__default.docs.js +115 -0
- package/lib/ListItem/docs/ListItemWithIcon__custom.docs.js +119 -0
- package/lib/ListItem/docs/ListItemWithIcon__default.docs.js +112 -0
- package/lib/ListItem/docs/ListItemWithRadio__custom.docs.js +142 -0
- package/lib/ListItem/docs/ListItemWithRadio__default.docs.js +115 -0
- package/lib/ListItem/docs/ListItem__custom.docs.js +164 -0
- package/lib/ListItem/docs/ListItem__default.docs.js +131 -0
- package/lib/ListItem/props/defaultProps.js +97 -0
- package/lib/ListItem/props/propTypes.js +181 -0
- package/lib/Modal/Modal.js +214 -0
- package/lib/Modal/__docs__/Modal__default.docs.js +88 -0
- package/lib/Modal/props/defaultProps.js +10 -0
- package/lib/Modal/props/propTypes.js +17 -0
- package/lib/MultiSelect/AdvancedGroupMultiSelect.js +1164 -0
- package/lib/MultiSelect/AdvancedMultiSelect.js +625 -0
- package/lib/MultiSelect/EmptyState.js +108 -0
- package/lib/MultiSelect/MultiSelect.js +1156 -0
- package/lib/MultiSelect/MultiSelect.module.css +206 -0
- package/lib/MultiSelect/MultiSelectHeader.js +79 -0
- package/lib/MultiSelect/MultiSelectWithAvatar.js +341 -0
- package/lib/MultiSelect/SelectedOptions.js +126 -0
- package/lib/MultiSelect/SelectedOptions.module.css +15 -0
- package/lib/MultiSelect/Suggestions.js +191 -0
- package/lib/MultiSelect/__tests__/MultiSelect.spec.js +170 -0
- package/lib/MultiSelect/docs/AdvancedGroupMultiSelect__default.docs.js +177 -0
- package/lib/MultiSelect/docs/AdvancedMultiSelect__default.docs.js +165 -0
- package/lib/MultiSelect/docs/MultiSelectWithAvatar__default.docs.js +191 -0
- package/lib/MultiSelect/docs/MultiSelect__default.docs.js +214 -0
- package/lib/MultiSelect/props/defaultProps.js +156 -0
- package/lib/MultiSelect/props/propTypes.js +378 -0
- package/lib/PopOver/PopOver.js +302 -0
- package/lib/PopOver/PopOver.module.css +8 -0
- package/lib/PopOver/__tests__/PopOver.spec.js +20 -0
- package/lib/PopOver/docs/PopOver__default.docs.js +86 -0
- package/lib/PopOver/props/defaultProps.js +15 -0
- package/lib/PopOver/props/propTypes.js +66 -0
- package/lib/Popup/Popup.js +719 -0
- package/lib/Popup/PositionMapping.json +74 -0
- package/lib/Popup/__tests__/Popup.spec.js +192 -0
- package/lib/Popup/viewPort.js +368 -0
- package/lib/Provider/AvatarSize.js +23 -0
- package/lib/Provider/Config.js +27 -0
- package/lib/Provider/CssProvider.js +27 -0
- package/lib/Provider/IdProvider.js +82 -0
- package/lib/Provider/LibraryContext.js +76 -0
- package/lib/Provider/LibraryContextInit.js +15 -0
- package/lib/Provider/NumberGenerator/NumberGenerator.js +174 -0
- package/lib/Provider/ZindexProvider.js +69 -0
- package/lib/Provider/docs/Provider_Id__Class.docs.js +77 -0
- package/lib/Provider/docs/Provider_Id__Function.docs.js +29 -0
- package/lib/Provider/docs/Provider_Zindex__Class.docs.js +80 -0
- package/lib/Provider/docs/Provider_Zindex__Function.docs.js +34 -0
- package/lib/Provider.js +175 -0
- package/lib/Radio/Radio.js +173 -0
- package/lib/Radio/Radio.module.css +112 -0
- package/lib/Radio/__tests__/Radiospec.js +29 -0
- package/lib/Radio/docs/Radio__custom.docs.js +299 -0
- package/lib/Radio/docs/Radio__default.docs.js +222 -0
- package/lib/Radio/props/defaultProps.js +21 -0
- package/lib/Radio/props/propTypes.js +43 -0
- package/lib/Responsive/CustomResponsive.js +236 -0
- package/lib/Responsive/RefWrapper.js +55 -0
- package/lib/Responsive/ResizeComponent.js +268 -0
- package/lib/Responsive/ResizeObserver.js +168 -0
- package/lib/Responsive/Responsive.js +274 -0
- package/lib/Responsive/docs/Responsive__Custom.docs.js +272 -0
- package/lib/Responsive/docs/Responsive__default.docs.js +142 -0
- package/lib/Responsive/docs/style.module.css +56 -0
- package/lib/Responsive/index.js +30 -0
- package/lib/Responsive/props/defaultProps.js +23 -0
- package/lib/Responsive/props/propTypes.js +39 -0
- package/lib/Responsive/sizeObservers.js +214 -0
- package/lib/Responsive/utils/index.js +70 -0
- package/lib/Responsive/utils/shallowCompare.js +38 -0
- package/lib/Responsive/windowResizeObserver.js +63 -0
- package/lib/ResponsiveDropBox/ResponsiveDropBox.js +124 -0
- package/lib/ResponsiveDropBox/ResponsiveDropBox.module.css +6 -0
- package/lib/ResponsiveDropBox/props/defaultProps.js +11 -0
- package/lib/ResponsiveDropBox/props/propTypes.js +18 -0
- package/lib/Ribbon/Ribbon.js +95 -0
- package/lib/Ribbon/Ribbon.module.css +377 -0
- package/lib/Ribbon/__tests__/Ribbon.spec.js +193 -0
- package/lib/Ribbon/__tests__/__snapshots__/Ribbon.spec.js.snap +163 -0
- package/lib/Ribbon/docs/Ribbon__custom.docs.js +437 -0
- package/lib/Ribbon/docs/Ribbon__default.docs.js +392 -0
- package/lib/Ribbon/props/defaultProps.js +15 -0
- package/lib/Ribbon/props/propTypes.js +21 -0
- package/lib/RippleEffect/RippleEffect.js +46 -0
- package/lib/RippleEffect/RippleEffect.module.css +92 -0
- package/lib/RippleEffect/docs/RippleEffect__default.docs.js +484 -0
- package/lib/RippleEffect/props/defaultProps.js +16 -0
- package/lib/RippleEffect/props/propTypes.js +22 -0
- package/lib/Select/GroupSelect.js +863 -0
- package/lib/Select/Select.js +994 -0
- package/lib/Select/Select.module.css +106 -0
- package/lib/Select/SelectWithAvatar.js +383 -0
- package/lib/Select/SelectWithIcon.js +524 -0
- package/lib/Select/__tests__/Select.spec.js +383 -0
- package/lib/Select/docs/GroupSelect__default.docs.js +199 -0
- package/lib/Select/docs/SelectWithAvatar__default.docs.js +152 -0
- package/lib/Select/docs/SelectWithIcon__default.docs.js +190 -0
- package/lib/Select/docs/Select__default.docs.js +340 -0
- package/lib/Select/props/defaultProps.js +113 -0
- package/lib/Select/props/propTypes.js +280 -0
- package/lib/Stencils/Stencils.js +81 -0
- package/lib/Stencils/Stencils.module.css +96 -0
- package/lib/Stencils/__tests__/Stencils.spec.js +84 -0
- package/lib/Stencils/__tests__/__snapshots__/Stencils.spec.js.snap +49 -0
- package/lib/Stencils/docs/Stencils__custom.docs.js +96 -0
- package/lib/Stencils/docs/Stencils__default.docs.js +101 -0
- package/lib/Stencils/props/defaultProps.js +13 -0
- package/lib/Stencils/props/propTypes.js +18 -0
- package/lib/Switch/Switch.js +151 -0
- package/lib/Switch/Switch.module.css +111 -0
- package/lib/Switch/docs/Switch__custom.docs.js +203 -0
- package/lib/Switch/docs/Switch__default.docs.js +156 -0
- package/lib/Switch/props/defaultProps.js +17 -0
- package/lib/Switch/props/propTypes.js +38 -0
- package/lib/Tab/Tab.js +132 -0
- package/lib/Tab/Tab.module.css +101 -0
- package/lib/Tab/TabContent.js +40 -0
- package/lib/Tab/TabContent.module.css +4 -0
- package/lib/Tab/TabContentWrapper.js +40 -0
- package/lib/Tab/TabWrapper.js +87 -0
- package/lib/Tab/Tabs.js +662 -0
- package/lib/Tab/Tabs.module.css +141 -0
- package/lib/Tab/__tests__/Tab.spec.js +130 -0
- package/lib/Tab/__tests__/TabContent.spec.js +22 -0
- package/lib/Tab/__tests__/TabContentWrapper.spec.js +59 -0
- package/lib/Tab/__tests__/TabWrapper.spec.js +100 -0
- package/lib/Tab/__tests__/Tabs.spec.js +123 -0
- package/lib/Tab/docs/Tab__default.docs.js +308 -0
- package/lib/Tab/docs/tabdocs.module.css +29 -0
- package/lib/Tab/index.js +47 -0
- package/lib/Tab/props/defaultProps.js +50 -0
- package/lib/Tab/props/propTypes.js +117 -0
- package/lib/Tag/Tag.js +210 -0
- package/lib/Tag/Tag.module.css +255 -0
- package/lib/Tag/__tests__/Tag.spec.js +35 -0
- package/lib/Tag/docs/Tag__custom.docs.js +423 -0
- package/lib/Tag/docs/Tag__default.docs.js +377 -0
- package/lib/Tag/props/defaultProps.js +20 -0
- package/lib/Tag/props/propTypes.js +45 -0
- package/lib/TextBox/TextBox.js +224 -0
- package/lib/TextBox/TextBox.module.css +157 -0
- package/lib/TextBox/__tests__/TextBox.spec.js +205 -0
- package/lib/TextBox/__tests__/__snapshots__/TextBox.spec.js.snap +127 -0
- package/lib/TextBox/docs/TextBox__custom.docs.js +98 -0
- package/lib/TextBox/docs/TextBox__default.docs.js +95 -0
- package/lib/TextBox/docs/TextBox__size.docs.js +93 -0
- package/lib/TextBox/docs/TextBox__variant.docs.js +93 -0
- package/lib/TextBox/props/defaultProps.js +26 -0
- package/lib/TextBox/props/propTypes.js +62 -0
- package/lib/TextBoxIcon/TextBoxIcon.js +219 -0
- package/lib/TextBoxIcon/TextBoxIcon.module.css +78 -0
- package/lib/TextBoxIcon/__tests__/TextBoxIcon.spec.js +228 -0
- package/lib/TextBoxIcon/__tests__/__snapshots__/TextBoxIcon.spec.js.snap +334 -0
- package/lib/TextBoxIcon/docs/TextBoxIcon__custom.docs.js +145 -0
- package/lib/TextBoxIcon/docs/TextBoxIcon__default.docs.js +117 -0
- package/lib/TextBoxIcon/props/defaultProps.js +28 -0
- package/lib/TextBoxIcon/props/propTypes.js +60 -0
- package/lib/Textarea/Textarea.js +160 -0
- package/lib/Textarea/Textarea.module.css +139 -0
- package/lib/Textarea/__tests__/Textarea.spec.js +186 -0
- package/lib/Textarea/__tests__/__snapshots__/Textarea.spec.js.snap +97 -0
- package/lib/Textarea/docs/Textarea__animated.docs.js +95 -0
- package/lib/Textarea/docs/Textarea__custom.docs.js +137 -0
- package/lib/Textarea/docs/Textarea__default.docs.js +130 -0
- package/lib/Textarea/docs/Textarea__disabled.docs.js +83 -0
- package/lib/Textarea/props/defaultProps.js +23 -0
- package/lib/Textarea/props/propTypes.js +42 -0
- package/lib/Tooltip/Tooltip.js +583 -0
- package/lib/Tooltip/Tooltip.module.css +109 -0
- package/lib/Tooltip/__tests__/Tooltip.spec.js +98 -0
- package/lib/Tooltip/docs/Tooltip__default.docs.js +430 -0
- package/lib/Tooltip/props/defaultProps.js +11 -0
- package/lib/Tooltip/props/propTypes.js +19 -0
- package/lib/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +128 -0
- package/lib/VelocityAnimation/VelocityAnimation/docs/VelocityAnimation__demo.docs.js +150 -0
- package/lib/VelocityAnimation/VelocityAnimation/props/defaultProps.js +14 -0
- package/lib/VelocityAnimation/VelocityAnimation/props/propTypes.js +23 -0
- package/lib/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +164 -0
- package/lib/VelocityAnimation/VelocityAnimationGroup/docs/VelocityAnimationGroup__demo.docs.js +206 -0
- package/lib/VelocityAnimation/VelocityAnimationGroup/props/defaultProps.js +22 -0
- package/lib/VelocityAnimation/VelocityAnimationGroup/props/propTypes.js +30 -0
- package/lib/common/animation.module.css +624 -0
- package/lib/common/avatarsizes.module.css +45 -0
- package/lib/common/basic.module.css +33 -0
- package/lib/common/basicReset.module.css +40 -0
- package/lib/common/common.module.css +525 -0
- package/lib/common/customscroll.module.css +89 -0
- package/lib/common/docStyle.module.css +766 -0
- package/lib/common/reset.module.css +12 -0
- package/lib/common/transition.module.css +146 -0
- package/lib/css.js +81 -0
- package/lib/deprecated/AdvancedMultiSelect.module.css +127 -0
- package/lib/deprecated/PortalLayer/PortalLayer.js +154 -0
- package/lib/deprecated/PortalLayer/docs/PortalLayer__default.docs.js +145 -0
- package/lib/deprecated/PortalLayer/props/defaultProps.js +12 -0
- package/lib/deprecated/PortalLayer/props/propTypes.js +22 -0
- package/lib/deprecated/advancedMultiSelectVariableJson.js +82 -0
- package/lib/index.js +1403 -0
- package/lib/semantic/Button/Button.js +105 -0
- package/lib/semantic/Button/docs/Button__default.docs.js +66 -0
- package/lib/semantic/Button/props/defaultProps.js +19 -0
- package/lib/semantic/Button/props/propTypes.js +37 -0
- package/lib/semantic/Button/semanticButton.module.css +9 -0
- package/lib/utils/Common.js +457 -0
- package/lib/utils/ContextOptimizer.js +49 -0
- package/lib/utils/__tests__/constructFullName.spec.js +12 -0
- package/lib/utils/__tests__/debounce.spec.js +40 -0
- package/lib/utils/__tests__/getInitial.spec.js +26 -0
- package/lib/utils/constant.js +10 -0
- package/lib/utils/constructFullName.js +34 -0
- package/lib/utils/datetime/common.js +233 -0
- package/lib/utils/debounce.js +30 -0
- package/lib/utils/dropDownUtils.js +608 -0
- package/lib/utils/dummyFunction.js +10 -0
- package/lib/utils/getHTMLFontSize.js +11 -0
- package/lib/utils/getInitial.js +33 -0
- package/lib/utils/scrollTo.js +22 -0
- package/lib/utils/shallowEqual.js +41 -0
- package/package.json +1 -1
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _defaultProps = require("./props/defaultProps");
|
|
13
|
+
|
|
14
|
+
var _propTypes = require("./props/propTypes");
|
|
15
|
+
|
|
16
|
+
var _velocityReact = require("velocity-react");
|
|
17
|
+
|
|
18
|
+
require("velocity-animate/velocity.ui");
|
|
19
|
+
|
|
20
|
+
var _LibraryContextInit = _interopRequireDefault(require("../../Provider/LibraryContextInit"));
|
|
21
|
+
|
|
22
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
+
|
|
24
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
25
|
+
|
|
26
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
27
|
+
|
|
28
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
29
|
+
|
|
30
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
31
|
+
|
|
32
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
33
|
+
|
|
34
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
35
|
+
|
|
36
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
37
|
+
|
|
38
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
39
|
+
|
|
40
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
41
|
+
|
|
42
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
43
|
+
|
|
44
|
+
var VelocityAnimation = /*#__PURE__*/function (_React$Component) {
|
|
45
|
+
_inherits(VelocityAnimation, _React$Component);
|
|
46
|
+
|
|
47
|
+
var _super = _createSuper(VelocityAnimation);
|
|
48
|
+
|
|
49
|
+
function VelocityAnimation(props) {
|
|
50
|
+
_classCallCheck(this, VelocityAnimation);
|
|
51
|
+
|
|
52
|
+
return _super.call(this, props);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
_createClass(VelocityAnimation, [{
|
|
56
|
+
key: "render",
|
|
57
|
+
value: function render() {
|
|
58
|
+
var _this$props = this.props,
|
|
59
|
+
children = _this$props.children,
|
|
60
|
+
name = _this$props.name,
|
|
61
|
+
duration = _this$props.duration,
|
|
62
|
+
isActive = _this$props.isActive,
|
|
63
|
+
runOnMount = _this$props.runOnMount,
|
|
64
|
+
delay = _this$props.delay,
|
|
65
|
+
isCustomized = _this$props.isCustomized,
|
|
66
|
+
needUIPack = _this$props.needUIPack,
|
|
67
|
+
isFlex = _this$props.isFlex;
|
|
68
|
+
|
|
69
|
+
var _ref = this.context || {},
|
|
70
|
+
direction = _ref.direction,
|
|
71
|
+
isReducedMotion = _ref.isReducedMotion;
|
|
72
|
+
|
|
73
|
+
var enterAnimationObj = {
|
|
74
|
+
fade: 'transition.fadeIn',
|
|
75
|
+
slideDown: 'slideDown',
|
|
76
|
+
flyDown: {
|
|
77
|
+
translateY: '0%'
|
|
78
|
+
},
|
|
79
|
+
slideRight: {
|
|
80
|
+
translateX: '0%'
|
|
81
|
+
},
|
|
82
|
+
slideLeft: {
|
|
83
|
+
translateX: '0%'
|
|
84
|
+
},
|
|
85
|
+
shrink: 'transition.shrinkIn',
|
|
86
|
+
expand: 'transition.expandIn'
|
|
87
|
+
};
|
|
88
|
+
var exitAnimationObj = {
|
|
89
|
+
fade: 'transition.fadeOut',
|
|
90
|
+
slideDown: 'slideUp',
|
|
91
|
+
flyDown: {
|
|
92
|
+
translateY: '-100%'
|
|
93
|
+
},
|
|
94
|
+
slideRight: {
|
|
95
|
+
translateX: direction == 'rtl' ? '-100%' : '100%'
|
|
96
|
+
},
|
|
97
|
+
slideLeft: {
|
|
98
|
+
translateX: direction == 'rtl' ? '100%' : '-100%'
|
|
99
|
+
},
|
|
100
|
+
shrink: 'transition.shrinkOut',
|
|
101
|
+
expand: 'transition.expandOut'
|
|
102
|
+
};
|
|
103
|
+
var animation = isCustomized ? isActive ? enterAnimationObj[name] : exitAnimationObj[name] : needUIPack ? "transition.".concat(name).concat(isActive ? 'In' : 'Out') : name;
|
|
104
|
+
return /*#__PURE__*/_react["default"].createElement(_velocityReact.VelocityComponent, {
|
|
105
|
+
key: name,
|
|
106
|
+
animation: animation,
|
|
107
|
+
duration: !isReducedMotion ? duration : 0,
|
|
108
|
+
runOnMount: runOnMount,
|
|
109
|
+
display: isActive ? isFlex ? 'flex' : '' : 'none',
|
|
110
|
+
delay: delay,
|
|
111
|
+
interruptBehavior: "queue"
|
|
112
|
+
}, children);
|
|
113
|
+
}
|
|
114
|
+
}]);
|
|
115
|
+
|
|
116
|
+
return VelocityAnimation;
|
|
117
|
+
}(_react["default"].Component);
|
|
118
|
+
|
|
119
|
+
exports["default"] = VelocityAnimation;
|
|
120
|
+
VelocityAnimation.defaultProps = _defaultProps.defaultProps;
|
|
121
|
+
VelocityAnimation.propTypes = _propTypes.propTypes;
|
|
122
|
+
VelocityAnimation.contextType = _LibraryContextInit["default"];
|
|
123
|
+
|
|
124
|
+
if (false) {
|
|
125
|
+
VelocityAnimation.docs = {
|
|
126
|
+
componentGroup: 'Animation'
|
|
127
|
+
};
|
|
128
|
+
}
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
+
|
|
14
|
+
var _Select = _interopRequireDefault(require("../../../Select/Select"));
|
|
15
|
+
|
|
16
|
+
var _Button = _interopRequireDefault(require("../../../Button/Button"));
|
|
17
|
+
|
|
18
|
+
var _VelocityAnimation = _interopRequireDefault(require("../VelocityAnimation"));
|
|
19
|
+
|
|
20
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
21
|
+
|
|
22
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
23
|
+
|
|
24
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
25
|
+
|
|
26
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
27
|
+
|
|
28
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
29
|
+
|
|
30
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
31
|
+
|
|
32
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
33
|
+
|
|
34
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
35
|
+
|
|
36
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
37
|
+
|
|
38
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
39
|
+
|
|
40
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
41
|
+
|
|
42
|
+
var animationList = [{
|
|
43
|
+
text: 'fade',
|
|
44
|
+
id: 'animate-1'
|
|
45
|
+
}, {
|
|
46
|
+
text: 'slideDown',
|
|
47
|
+
id: 'animate-2'
|
|
48
|
+
}, {
|
|
49
|
+
text: 'flyDown',
|
|
50
|
+
id: 'animate-3'
|
|
51
|
+
}, {
|
|
52
|
+
text: 'slideRight',
|
|
53
|
+
id: 'animate-4'
|
|
54
|
+
}, {
|
|
55
|
+
text: 'shrink',
|
|
56
|
+
id: 'animate-5'
|
|
57
|
+
}, {
|
|
58
|
+
text: 'expand',
|
|
59
|
+
id: 'animate-6'
|
|
60
|
+
}, {
|
|
61
|
+
text: 'slideLeft',
|
|
62
|
+
id: 'animate-7'
|
|
63
|
+
}];
|
|
64
|
+
|
|
65
|
+
var VelocityAnimation__demo = /*#__PURE__*/function (_React$Component) {
|
|
66
|
+
_inherits(VelocityAnimation__demo, _React$Component);
|
|
67
|
+
|
|
68
|
+
var _super = _createSuper(VelocityAnimation__demo);
|
|
69
|
+
|
|
70
|
+
function VelocityAnimation__demo(props) {
|
|
71
|
+
var _this;
|
|
72
|
+
|
|
73
|
+
_classCallCheck(this, VelocityAnimation__demo);
|
|
74
|
+
|
|
75
|
+
_this = _super.call(this, props);
|
|
76
|
+
_this.state = {
|
|
77
|
+
value: animationList[0],
|
|
78
|
+
isActive: false
|
|
79
|
+
};
|
|
80
|
+
_this.handleChange = _this.handleChange.bind(_assertThisInitialized(_this));
|
|
81
|
+
_this.handleView = _this.handleView.bind(_assertThisInitialized(_this));
|
|
82
|
+
return _this;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
_createClass(VelocityAnimation__demo, [{
|
|
86
|
+
key: "handleChange",
|
|
87
|
+
value: function handleChange(fieldId, value) {
|
|
88
|
+
this.setState({
|
|
89
|
+
value: value
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
}, {
|
|
93
|
+
key: "handleView",
|
|
94
|
+
value: function handleView() {
|
|
95
|
+
this.setState({
|
|
96
|
+
isActive: !this.state.isActive
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
}, {
|
|
100
|
+
key: "render",
|
|
101
|
+
value: function render() {
|
|
102
|
+
var _this$state = this.state,
|
|
103
|
+
value = _this$state.value,
|
|
104
|
+
isActive = _this$state.isActive;
|
|
105
|
+
var animate = {
|
|
106
|
+
width: '200px',
|
|
107
|
+
height: '100px',
|
|
108
|
+
background: 'var(--dot_black)',
|
|
109
|
+
textAlign: 'center',
|
|
110
|
+
color: 'var(--dot_white)',
|
|
111
|
+
lineHeight: '100px'
|
|
112
|
+
};
|
|
113
|
+
return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement("div", {
|
|
114
|
+
style: {
|
|
115
|
+
width: '30%',
|
|
116
|
+
display: 'flex',
|
|
117
|
+
justifyContent: 'space-around'
|
|
118
|
+
}
|
|
119
|
+
}, /*#__PURE__*/_react["default"].createElement(_Select["default"], {
|
|
120
|
+
onChange: this.handleChange,
|
|
121
|
+
options: animationList,
|
|
122
|
+
selectedValue: value.id
|
|
123
|
+
}), /*#__PURE__*/_react["default"].createElement(_Button["default"], {
|
|
124
|
+
onClick: this.handleView
|
|
125
|
+
}, !isActive ? 'show' : 'hide')), /*#__PURE__*/_react["default"].createElement("span", {
|
|
126
|
+
style: {
|
|
127
|
+
display: 'flex',
|
|
128
|
+
alignItems: 'center',
|
|
129
|
+
flexDirection: 'column'
|
|
130
|
+
}
|
|
131
|
+
}, /*#__PURE__*/_react["default"].createElement(_VelocityAnimation["default"], {
|
|
132
|
+
isActive: isActive,
|
|
133
|
+
name: value.text,
|
|
134
|
+
duration: 300
|
|
135
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
136
|
+
style: animate
|
|
137
|
+
}, "Animation"))));
|
|
138
|
+
}
|
|
139
|
+
}]);
|
|
140
|
+
|
|
141
|
+
return VelocityAnimation__demo;
|
|
142
|
+
}(_react["default"].Component);
|
|
143
|
+
|
|
144
|
+
exports["default"] = VelocityAnimation__demo;
|
|
145
|
+
|
|
146
|
+
if (false) {
|
|
147
|
+
VelocityAnimation__demo.docs = {
|
|
148
|
+
componentGroup: 'Animation'
|
|
149
|
+
};
|
|
150
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultProps = void 0;
|
|
7
|
+
var defaultProps = {
|
|
8
|
+
runOnMount: false,
|
|
9
|
+
isCustomized: true,
|
|
10
|
+
needUIPack: true,
|
|
11
|
+
isFlex: false,
|
|
12
|
+
duration: 300
|
|
13
|
+
};
|
|
14
|
+
exports.defaultProps = defaultProps;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.propTypes = void 0;
|
|
7
|
+
|
|
8
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
9
|
+
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
+
|
|
12
|
+
var propTypes = {
|
|
13
|
+
children: _propTypes["default"].node.isRequired,
|
|
14
|
+
delay: _propTypes["default"].number,
|
|
15
|
+
duration: _propTypes["default"].number,
|
|
16
|
+
isActive: _propTypes["default"].bool.isRequired,
|
|
17
|
+
isCustomized: _propTypes["default"].bool,
|
|
18
|
+
isFlex: _propTypes["default"].bool,
|
|
19
|
+
name: _propTypes["default"].oneOf(['fade', 'slideRight', 'shrink', 'expand', 'slideDown', 'flyDown', 'slideLeft']),
|
|
20
|
+
needUIPack: _propTypes["default"].bool,
|
|
21
|
+
runOnMount: _propTypes["default"].bool
|
|
22
|
+
};
|
|
23
|
+
exports.propTypes = propTypes;
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _defaultProps = require("./props/defaultProps");
|
|
13
|
+
|
|
14
|
+
var _propTypes = require("./props/propTypes");
|
|
15
|
+
|
|
16
|
+
var _velocityReact = require("velocity-react");
|
|
17
|
+
|
|
18
|
+
require("velocity-animate/velocity.ui");
|
|
19
|
+
|
|
20
|
+
var _LibraryContextInit = _interopRequireDefault(require("../../Provider/LibraryContextInit"));
|
|
21
|
+
|
|
22
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
+
|
|
24
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
25
|
+
|
|
26
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
27
|
+
|
|
28
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
29
|
+
|
|
30
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
31
|
+
|
|
32
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
33
|
+
|
|
34
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
35
|
+
|
|
36
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
37
|
+
|
|
38
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
39
|
+
|
|
40
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
41
|
+
|
|
42
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
43
|
+
|
|
44
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
45
|
+
|
|
46
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
47
|
+
|
|
48
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
49
|
+
|
|
50
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
51
|
+
|
|
52
|
+
function clearProps(props) {
|
|
53
|
+
var newProps = Object.assign({}, props);
|
|
54
|
+
Object.keys(VelocityAnimationGroup.propTypes).forEach(function (key) {
|
|
55
|
+
delete newProps[key];
|
|
56
|
+
});
|
|
57
|
+
return newProps;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
var VelocityAnimationGroup = /*#__PURE__*/function (_React$Component) {
|
|
61
|
+
_inherits(VelocityAnimationGroup, _React$Component);
|
|
62
|
+
|
|
63
|
+
var _super = _createSuper(VelocityAnimationGroup);
|
|
64
|
+
|
|
65
|
+
function VelocityAnimationGroup(props) {
|
|
66
|
+
_classCallCheck(this, VelocityAnimationGroup);
|
|
67
|
+
|
|
68
|
+
return _super.call(this, props);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
_createClass(VelocityAnimationGroup, [{
|
|
72
|
+
key: "render",
|
|
73
|
+
value: function render() {
|
|
74
|
+
var _this$props = this.props,
|
|
75
|
+
children = _this$props.children,
|
|
76
|
+
enterName = _this$props.enterName,
|
|
77
|
+
exitName = _this$props.exitName,
|
|
78
|
+
enterDuration = _this$props.enterDuration,
|
|
79
|
+
exitDuration = _this$props.exitDuration,
|
|
80
|
+
isActive = _this$props.isActive,
|
|
81
|
+
component = _this$props.component,
|
|
82
|
+
runOnMount = _this$props.runOnMount,
|
|
83
|
+
enterShowStyle = _this$props.enterShowStyle,
|
|
84
|
+
enterHideStyle = _this$props.enterHideStyle,
|
|
85
|
+
exitDelay = _this$props.exitDelay,
|
|
86
|
+
isFlex = _this$props.isFlex,
|
|
87
|
+
enterDelay = _this$props.enterDelay,
|
|
88
|
+
isCustomized = _this$props.isCustomized,
|
|
89
|
+
name = _this$props.name,
|
|
90
|
+
needUIPack = _this$props.needUIPack;
|
|
91
|
+
|
|
92
|
+
var _ref = this.context || {},
|
|
93
|
+
direction = _ref.direction,
|
|
94
|
+
isReducedMotion = _ref.isReducedMotion;
|
|
95
|
+
|
|
96
|
+
var childProps = clearProps(this.props);
|
|
97
|
+
var enterAnimationObj = {
|
|
98
|
+
fade: 'transition.fadeIn',
|
|
99
|
+
slideDown: 'slideDown',
|
|
100
|
+
flyDown: {
|
|
101
|
+
translateY: '0%'
|
|
102
|
+
},
|
|
103
|
+
slideRight: {
|
|
104
|
+
translateX: '0%'
|
|
105
|
+
},
|
|
106
|
+
slideLeft: {
|
|
107
|
+
translateX: '0%'
|
|
108
|
+
},
|
|
109
|
+
shrink: 'transition.shrinkIn',
|
|
110
|
+
expand: 'transition.expandIn'
|
|
111
|
+
};
|
|
112
|
+
var exitAnimationObj = {
|
|
113
|
+
fade: 'transition.fadeOut',
|
|
114
|
+
slideDown: 'slideUp',
|
|
115
|
+
flyDown: {
|
|
116
|
+
translateY: '-100%'
|
|
117
|
+
},
|
|
118
|
+
slideRight: {
|
|
119
|
+
translateX: direction == 'rtl' ? '-100%' : '100%'
|
|
120
|
+
},
|
|
121
|
+
slideLeft: {
|
|
122
|
+
translateX: direction == 'rtl' ? '100%' : '-100%'
|
|
123
|
+
},
|
|
124
|
+
shrink: 'transition.shrinkOut',
|
|
125
|
+
expand: 'transition.expandOut'
|
|
126
|
+
};
|
|
127
|
+
var enterAnimation = {
|
|
128
|
+
animation: isCustomized ? enterAnimationObj[name] : needUIPack ? "transition.".concat(enterName, "In") : enterName,
|
|
129
|
+
duration: !isReducedMotion ? enterDuration : 0,
|
|
130
|
+
delay: enterDelay ? enterDelay : 0,
|
|
131
|
+
display: isFlex ? 'flex' : ''
|
|
132
|
+
};
|
|
133
|
+
var exitAnimation = {
|
|
134
|
+
animation: isCustomized ? exitAnimationObj[name] : needUIPack ? "transition.".concat(exitName ? exitName : enterName, "Out") : exitName ? exitName : enterName,
|
|
135
|
+
duration: !isReducedMotion ? exitDuration : 0,
|
|
136
|
+
delay: exitDelay ? exitDelay : 0,
|
|
137
|
+
display: 'none'
|
|
138
|
+
};
|
|
139
|
+
return /*#__PURE__*/_react["default"].createElement(_velocityReact.VelocityTransitionGroup, _extends({
|
|
140
|
+
enter: enterAnimation,
|
|
141
|
+
leave: exitAnimation,
|
|
142
|
+
component: component && component,
|
|
143
|
+
runOnMount: runOnMount,
|
|
144
|
+
enterHideStyle: enterHideStyle,
|
|
145
|
+
enterShowStyle: enterShowStyle
|
|
146
|
+
}, childProps), isActive ? children : null);
|
|
147
|
+
}
|
|
148
|
+
}]);
|
|
149
|
+
|
|
150
|
+
return VelocityAnimationGroup;
|
|
151
|
+
}(_react["default"].Component);
|
|
152
|
+
|
|
153
|
+
exports["default"] = VelocityAnimationGroup;
|
|
154
|
+
VelocityAnimationGroup.defaultProps = _objectSpread(_objectSpread({}, _defaultProps.defaultProps), {}, {
|
|
155
|
+
component: _react["default"].Fragment
|
|
156
|
+
});
|
|
157
|
+
VelocityAnimationGroup.propTypes = _propTypes.propTypes;
|
|
158
|
+
VelocityAnimationGroup.contextType = _LibraryContextInit["default"];
|
|
159
|
+
|
|
160
|
+
if (false) {
|
|
161
|
+
VelocityAnimationGroup.docs = {
|
|
162
|
+
componentGroup: 'Animation'
|
|
163
|
+
};
|
|
164
|
+
}
|