@zohodesk/components 1.0.0-alpha-250 → 1.0.0-alpha-253
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 +24 -0
- package/assets/Appearance/dark/mode/darkMode.module.css +2 -1
- package/assets/Appearance/default/mode/defaultMode.module.css +2 -1
- package/assets/Appearance/pureDark/mode/pureDarkMode.module.css +2 -1
- package/es/Accordion/Accordion.js +0 -7
- package/es/Accordion/AccordionItem.js +0 -4
- package/es/Animation/Animation.js +0 -3
- package/es/AppContainer/AppContainer.js +2 -13
- package/es/Avatar/Avatar.js +9 -22
- package/es/AvatarTeam/AvatarTeam.js +0 -3
- package/es/Button/Button.js +0 -4
- package/es/Buttongroup/Buttongroup.js +0 -3
- package/es/Card/Card.js +7 -22
- package/es/Card/props/defaultProps.js +0 -1
- package/es/Card/props/propTypes.js +2 -2
- package/es/CheckBox/CheckBox.js +0 -5
- package/es/DateTime/CalendarView.js +30 -36
- package/es/DateTime/DateTime.js +22 -77
- package/es/DateTime/DateTime.module.css +51 -5
- package/es/DateTime/DateTimePopupFooter.js +2 -4
- package/es/DateTime/DateTimePopupHeader.js +23 -16
- package/es/DateTime/DateWidget.js +38 -103
- package/es/DateTime/DaysRow.js +4 -5
- package/es/DateTime/Time.js +2 -10
- package/es/DateTime/YearView.js +16 -32
- package/es/DateTime/YearView.module.css +19 -1
- package/es/DateTime/__tests__/CalendarView.spec.js +0 -1
- package/es/DateTime/__tests__/DateTime.spec.js +0 -1
- package/es/DateTime/__tests__/DateWidget.spec.js +3 -2
- package/es/DateTime/common.js +0 -3
- package/es/DateTime/constants.js +0 -1
- package/es/DateTime/dateFormatUtils/dateFormat.js +30 -63
- package/es/DateTime/dateFormatUtils/dayChange.js +4 -13
- package/es/DateTime/dateFormatUtils/index.js +2 -28
- package/es/DateTime/dateFormatUtils/monthChange.js +0 -8
- package/es/DateTime/dateFormatUtils/timeChange.js +6 -22
- package/es/DateTime/dateFormatUtils/yearChange.js +2 -11
- package/es/DateTime/objectUtils.js +20 -14
- package/es/DateTime/props/propTypes.js +4 -2
- package/es/DateTime/typeChecker.js +0 -3
- package/es/DateTime/validator.js +6 -58
- package/es/DropBox/DropBox.js +5 -28
- package/es/DropDown/DropDown.js +1 -9
- package/es/DropDown/DropDownHeading.js +5 -5
- package/es/DropDown/DropDownItem.js +0 -6
- package/es/DropDown/DropDownSearch.js +0 -4
- package/es/DropDown/DropDownSeparator.js +0 -1
- package/es/DropDown/__tests__/DropDown.spec.js +2 -1
- package/es/DropDown/props/propTypes.js +2 -1
- package/es/Heading/Heading.js +0 -2
- package/es/Heading/Heading.module.css +3 -3
- package/es/Label/Label.js +4 -4
- package/es/Layout/Box.js +0 -13
- package/es/Layout/Container.js +1 -12
- package/es/Layout/props/propTypes.js +3 -3
- package/es/ListItem/ListContainer.js +4 -10
- package/es/ListItem/ListItem.js +0 -9
- package/es/ListItem/ListItemWithAvatar.js +1 -9
- package/es/ListItem/ListItemWithCheckBox.js +0 -7
- package/es/ListItem/ListItemWithIcon.js +0 -8
- package/es/ListItem/ListItemWithRadio.js +0 -7
- package/es/Modal/Modal.js +8 -28
- package/es/MultiSelect/AdvancedGroupMultiSelect.js +11 -90
- package/es/MultiSelect/AdvancedMultiSelect.js +21 -39
- package/es/MultiSelect/EmptyState.js +0 -2
- package/es/MultiSelect/MultiSelect.js +53 -114
- package/es/MultiSelect/MultiSelectHeader.js +0 -3
- package/es/MultiSelect/MultiSelectWithAvatar.js +16 -17
- package/es/MultiSelect/SelectedOptions.js +3 -6
- package/es/MultiSelect/Suggestions.js +5 -8
- package/es/MultiSelect/__tests__/MultiSelect.spec.js +6 -4
- package/es/MultiSelect/props/defaultProps.js +8 -4
- package/es/MultiSelect/props/propTypes.js +8 -6
- package/es/PopOver/PopOver.js +0 -18
- package/es/PopOver/__tests__/PopOver.spec.js +1 -2
- package/es/Popup/Popup.js +24 -77
- package/es/Popup/__tests__/Popup.spec.js +5 -17
- package/es/Popup/viewPort.js +4 -16
- package/es/Provider/IdProvider.js +2 -9
- package/es/Provider/LibraryContext.js +4 -6
- package/es/Provider/NumberGenerator/NumberGenerator.js +7 -21
- package/es/Provider/ZindexProvider.js +2 -9
- package/es/Radio/Radio.js +0 -4
- package/es/Responsive/CustomResponsive.js +25 -31
- package/es/Responsive/RefWrapper.js +7 -6
- package/es/Responsive/ResizeComponent.js +25 -35
- package/es/Responsive/ResizeObserver.js +6 -26
- package/es/Responsive/Responsive.js +20 -34
- package/es/Responsive/sizeObservers.js +7 -28
- package/es/Responsive/utils/index.js +5 -7
- package/es/Responsive/utils/shallowCompare.js +2 -7
- package/es/Responsive/windowResizeObserver.js +0 -7
- package/es/ResponsiveDropBox/ResponsiveDropBox.js +0 -4
- package/es/Ribbon/Ribbon.js +0 -3
- package/es/RippleEffect/RippleEffect.js +0 -1
- package/es/Select/GroupSelect.js +28 -67
- package/es/Select/Select.js +54 -101
- package/es/Select/Select.module.css +3 -0
- package/es/Select/SelectWithAvatar.js +15 -24
- package/es/Select/SelectWithIcon.js +75 -54
- package/es/Select/__tests__/Select.spec.js +8 -6
- package/es/Select/props/defaultProps.js +8 -4
- package/es/Select/props/propTypes.js +8 -5
- package/es/Stencils/Stencils.js +0 -3
- package/es/Switch/Switch.js +0 -5
- package/es/Tab/Tab.js +1 -4
- package/es/Tab/TabContent.js +0 -1
- package/es/Tab/TabContentWrapper.js +0 -2
- package/es/Tab/TabWrapper.js +2 -5
- package/es/Tab/Tabs.js +16 -58
- package/es/Tab/Tabs.module.css +1 -1
- package/es/Tab/__tests__/Tab.spec.js +2 -1
- package/es/Tab/__tests__/TabWrapper.spec.js +0 -1
- package/es/Tag/Tag.js +1 -6
- package/es/TextBox/TextBox.js +0 -15
- package/es/TextBox/__tests__/TextBox.spec.js +4 -1
- package/es/TextBoxIcon/TextBoxIcon.js +0 -7
- package/es/TextBoxIcon/__tests__/TextBoxIcon.spec.js +7 -2
- package/es/Textarea/Textarea.js +0 -12
- package/es/Textarea/__tests__/Textarea.spec.js +2 -2
- package/es/Tooltip/Tooltip.js +15 -59
- package/es/Tooltip/__tests__/Tooltip.spec.js +0 -5
- package/es/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +0 -3
- package/es/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +2 -7
- package/es/deprecated/PortalLayer/PortalLayer.js +17 -25
- package/es/index.js +108 -106
- package/es/semantic/Button/Button.js +0 -3
- package/es/utils/Common.js +23 -47
- package/es/utils/ContextOptimizer.js +5 -4
- package/es/utils/__tests__/debounce.spec.js +2 -2
- package/es/utils/constructFullName.js +0 -2
- package/es/utils/datetime/common.js +5 -16
- package/es/utils/debounce.js +1 -5
- package/es/utils/dropDownUtils.js +11 -67
- package/es/utils/getInitial.js +0 -4
- package/es/utils/shallowEqual.js +0 -6
- package/lib/Accordion/Accordion.js +10 -39
- package/lib/Accordion/AccordionItem.js +12 -38
- package/lib/Accordion/__tests__/Accordion.spec.js +0 -3
- package/lib/Accordion/index.js +0 -3
- package/lib/Accordion/props/propTypes.js +0 -3
- package/lib/Animation/Animation.js +12 -37
- package/lib/Animation/__tests__/Animation.spec.js +7 -11
- package/lib/Animation/props/propTypes.js +0 -3
- package/lib/AppContainer/AppContainer.js +14 -52
- package/lib/AppContainer/props/propTypes.js +0 -3
- package/lib/Avatar/Avatar.js +29 -72
- package/lib/Avatar/__tests__/Avatar.spec.js +0 -44
- package/lib/Avatar/props/propTypes.js +0 -3
- package/lib/AvatarTeam/AvatarTeam.js +20 -47
- package/lib/AvatarTeam/__tests__/AvatarTeam.spec.js +0 -13
- package/lib/AvatarTeam/props/propTypes.js +0 -3
- package/lib/Button/Button.js +19 -44
- package/lib/Button/__tests__/Button.spec.js +0 -40
- package/lib/Button/props/defaultProps.js +0 -2
- package/lib/Button/props/propTypes.js +0 -3
- package/lib/Buttongroup/Buttongroup.js +5 -31
- package/lib/Buttongroup/__test__/Buttongroup.spec.js +0 -10
- package/lib/Buttongroup/props/propTypes.js +0 -3
- package/lib/Card/Card.js +41 -102
- package/lib/Card/__tests__/Card.spec.js +1 -10
- package/lib/Card/index.js +0 -4
- package/lib/Card/props/defaultProps.js +0 -1
- package/lib/Card/props/propTypes.js +2 -5
- package/lib/CheckBox/CheckBox.js +40 -69
- package/lib/CheckBox/__tests__/CheckBox.spec.js +0 -3
- package/lib/CheckBox/props/propTypes.js +0 -3
- package/lib/DateTime/CalendarView.js +44 -81
- package/lib/DateTime/DateTime.js +164 -245
- package/lib/DateTime/DateTime.module.css +51 -5
- package/lib/DateTime/DateTimePopupFooter.js +5 -30
- package/lib/DateTime/DateTimePopupHeader.js +33 -52
- package/lib/DateTime/DateWidget.js +246 -350
- package/lib/DateTime/DaysRow.js +4 -27
- package/lib/DateTime/Time.js +29 -72
- package/lib/DateTime/YearView.js +37 -79
- package/lib/DateTime/YearView.module.css +19 -1
- package/lib/DateTime/__tests__/CalendarView.spec.js +5 -13
- package/lib/DateTime/__tests__/DateTime.spec.js +37 -51
- package/lib/DateTime/__tests__/DateWidget.spec.js +8 -10
- package/lib/DateTime/common.js +0 -6
- package/lib/DateTime/constants.js +0 -1
- package/lib/DateTime/dateFormatUtils/dateFormat.js +122 -184
- package/lib/DateTime/dateFormatUtils/dayChange.js +7 -14
- package/lib/DateTime/dateFormatUtils/index.js +12 -61
- package/lib/DateTime/dateFormatUtils/monthChange.js +9 -19
- package/lib/DateTime/dateFormatUtils/timeChange.js +20 -52
- package/lib/DateTime/dateFormatUtils/yearChange.js +11 -22
- package/lib/DateTime/index.js +0 -2
- package/lib/DateTime/objectUtils.js +20 -24
- package/lib/DateTime/props/propTypes.js +4 -5
- package/lib/DateTime/typeChecker.js +0 -4
- package/lib/DateTime/validator.js +6 -69
- package/lib/DropBox/DropBox.js +58 -119
- package/lib/DropBox/__tests__/DropBox.spec.js +2 -6
- package/lib/DropBox/props/propTypes.js +0 -3
- package/lib/DropDown/DropDown.js +3 -53
- package/lib/DropDown/DropDownHeading.js +13 -35
- package/lib/DropDown/DropDownItem.js +17 -41
- package/lib/DropDown/DropDownSearch.js +15 -41
- package/lib/DropDown/DropDownSeparator.js +1 -23
- package/lib/DropDown/__tests__/DropDown.spec.js +9 -15
- package/lib/DropDown/__tests__/DropDownItem.spec.js +4 -9
- package/lib/DropDown/__tests__/DropDownSearch.spec.js +0 -3
- package/lib/DropDown/props/propTypes.js +2 -6
- package/lib/Heading/Heading.js +8 -35
- package/lib/Heading/Heading.module.css +3 -3
- package/lib/Heading/props/propTypes.js +0 -3
- package/lib/Label/Label.js +14 -37
- package/lib/Label/__tests__/Label.spec.js +1 -14
- package/lib/Label/props/propTypes.js +0 -3
- package/lib/Layout/Box.js +11 -31
- package/lib/Layout/Container.js +10 -29
- package/lib/Layout/__tests__/Box.spec.js +49 -65
- package/lib/Layout/__tests__/Container.spec.js +50 -67
- package/lib/Layout/index.js +0 -4
- package/lib/Layout/props/propTypes.js +3 -6
- package/lib/Layout/utils.js +0 -10
- package/lib/ListItem/ListContainer.js +28 -47
- package/lib/ListItem/ListItem.js +37 -66
- package/lib/ListItem/ListItemWithAvatar.js +41 -72
- package/lib/ListItem/ListItemWithCheckBox.js +32 -61
- package/lib/ListItem/ListItemWithIcon.js +36 -65
- package/lib/ListItem/ListItemWithRadio.js +33 -62
- package/lib/ListItem/props/propTypes.js +0 -5
- package/lib/Modal/Modal.js +4 -44
- package/lib/Modal/props/propTypes.js +0 -3
- package/lib/MultiSelect/AdvancedGroupMultiSelect.js +157 -289
- package/lib/MultiSelect/AdvancedMultiSelect.js +130 -203
- package/lib/MultiSelect/EmptyState.js +21 -44
- package/lib/MultiSelect/MultiSelect.js +216 -326
- package/lib/MultiSelect/MultiSelectHeader.js +5 -29
- package/lib/MultiSelect/MultiSelectWithAvatar.js +61 -98
- package/lib/MultiSelect/SelectedOptions.js +15 -44
- package/lib/MultiSelect/Suggestions.js +28 -60
- package/lib/MultiSelect/__tests__/MultiSelect.spec.js +75 -86
- package/lib/MultiSelect/props/defaultProps.js +8 -6
- package/lib/MultiSelect/props/propTypes.js +8 -9
- package/lib/PopOver/PopOver.js +44 -94
- package/lib/PopOver/__tests__/PopOver.spec.js +1 -4
- package/lib/PopOver/props/propTypes.js +0 -3
- package/lib/Popup/Popup.js +77 -156
- package/lib/Popup/__tests__/Popup.spec.js +5 -42
- package/lib/Popup/viewPort.js +14 -28
- package/lib/Provider/AvatarSize.js +0 -4
- package/lib/Provider/Config.js +0 -2
- package/lib/Provider/CssProvider.js +0 -4
- package/lib/Provider/IdProvider.js +3 -17
- package/lib/Provider/LibraryContext.js +10 -32
- package/lib/Provider/LibraryContextInit.js +0 -4
- package/lib/Provider/NumberGenerator/NumberGenerator.js +14 -43
- package/lib/Provider/ZindexProvider.js +3 -15
- package/lib/Radio/Radio.js +33 -60
- package/lib/Radio/__tests__/Radiospec.js +5 -9
- package/lib/Radio/props/propTypes.js +0 -3
- package/lib/Responsive/CustomResponsive.js +30 -70
- package/lib/Responsive/RefWrapper.js +7 -15
- package/lib/Responsive/ResizeComponent.js +27 -58
- package/lib/Responsive/ResizeObserver.js +6 -23
- package/lib/Responsive/Responsive.js +24 -76
- package/lib/Responsive/index.js +0 -2
- package/lib/Responsive/props/propTypes.js +0 -3
- package/lib/Responsive/sizeObservers.js +13 -51
- package/lib/Responsive/utils/index.js +3 -11
- package/lib/Responsive/utils/shallowCompare.js +2 -11
- package/lib/Responsive/windowResizeObserver.js +0 -8
- package/lib/ResponsiveDropBox/ResponsiveDropBox.js +14 -44
- package/lib/ResponsiveDropBox/props/propTypes.js +0 -3
- package/lib/Ribbon/Ribbon.js +7 -31
- package/lib/Ribbon/__tests__/Ribbon.spec.js +0 -22
- package/lib/Ribbon/props/propTypes.js +0 -3
- package/lib/RippleEffect/RippleEffect.js +7 -18
- package/lib/RippleEffect/props/propTypes.js +0 -3
- package/lib/Select/GroupSelect.js +138 -230
- package/lib/Select/Select.js +220 -301
- package/lib/Select/Select.module.css +3 -0
- package/lib/Select/SelectWithAvatar.js +61 -104
- package/lib/Select/SelectWithIcon.js +151 -144
- package/lib/Select/__tests__/Select.spec.js +89 -131
- package/lib/Select/props/defaultProps.js +7 -8
- package/lib/Select/props/propTypes.js +8 -8
- package/lib/Stencils/Stencils.js +4 -28
- package/lib/Stencils/__tests__/Stencils.spec.js +0 -12
- package/lib/Stencils/props/propTypes.js +0 -3
- package/lib/Switch/Switch.js +27 -55
- package/lib/Switch/props/propTypes.js +0 -3
- package/lib/Tab/Tab.js +23 -39
- package/lib/Tab/TabContent.js +4 -11
- package/lib/Tab/TabContentWrapper.js +5 -12
- package/lib/Tab/TabWrapper.js +16 -34
- package/lib/Tab/Tabs.js +94 -170
- package/lib/Tab/Tabs.module.css +1 -1
- package/lib/Tab/__tests__/Tab.spec.js +63 -74
- package/lib/Tab/__tests__/TabContent.spec.js +6 -10
- package/lib/Tab/__tests__/TabContentWrapper.spec.js +20 -28
- package/lib/Tab/__tests__/TabWrapper.spec.js +0 -12
- package/lib/Tab/__tests__/Tabs.spec.js +39 -53
- package/lib/Tab/index.js +0 -6
- package/lib/Tab/props/propTypes.js +0 -3
- package/lib/Tag/Tag.js +37 -70
- package/lib/Tag/__tests__/Tag.spec.js +8 -14
- package/lib/Tag/props/propTypes.js +0 -3
- package/lib/TextBox/TextBox.js +52 -83
- package/lib/TextBox/__tests__/TextBox.spec.js +4 -14
- package/lib/TextBox/props/propTypes.js +0 -5
- package/lib/TextBoxIcon/TextBoxIcon.js +48 -80
- package/lib/TextBoxIcon/__tests__/TextBoxIcon.spec.js +5 -14
- package/lib/TextBoxIcon/props/propTypes.js +0 -3
- package/lib/Textarea/Textarea.js +22 -52
- package/lib/Textarea/__tests__/Textarea.spec.js +2 -14
- package/lib/Textarea/props/propTypes.js +0 -3
- package/lib/Tooltip/Tooltip.js +29 -93
- package/lib/Tooltip/__tests__/Tooltip.spec.js +0 -23
- package/lib/Tooltip/props/propTypes.js +0 -3
- package/lib/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +11 -39
- package/lib/VelocityAnimation/VelocityAnimation/props/propTypes.js +0 -3
- package/lib/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +18 -51
- package/lib/VelocityAnimation/VelocityAnimationGroup/props/propTypes.js +0 -3
- package/lib/css.js +0 -39
- package/lib/deprecated/PortalLayer/PortalLayer.js +17 -45
- package/lib/deprecated/PortalLayer/props/propTypes.js +0 -3
- package/lib/index.js +76 -1075
- package/lib/semantic/Button/Button.js +17 -41
- package/lib/semantic/Button/props/propTypes.js +0 -3
- package/lib/utils/Common.js +29 -95
- package/lib/utils/ContextOptimizer.js +10 -16
- package/lib/utils/__tests__/constructFullName.spec.js +0 -1
- package/lib/utils/__tests__/debounce.spec.js +2 -3
- package/lib/utils/__tests__/getInitial.spec.js +0 -1
- package/lib/utils/constructFullName.js +2 -11
- package/lib/utils/datetime/common.js +5 -32
- package/lib/utils/debounce.js +1 -6
- package/lib/utils/dropDownUtils.js +54 -171
- package/lib/utils/dummyFunction.js +0 -2
- package/lib/utils/getHTMLFontSize.js +0 -1
- package/lib/utils/getInitial.js +0 -6
- package/lib/utils/scrollTo.js +0 -2
- package/lib/utils/shallowEqual.js +0 -8
- package/package.json +10 -5
- package/es/Accordion/docs/Accordion__Demo.docs.js +0 -80
- package/es/Animation/docs/Animation__default.docs.js +0 -34
- package/es/Animation/docs/Animation__fadeIn.docs.js +0 -34
- package/es/Animation/docs/Animation__scaleIn.docs.js +0 -34
- package/es/Animation/docs/Animation__skewIn.docs.js +0 -34
- package/es/Animation/docs/Animation__slideDown.docs.js +0 -34
- package/es/Animation/docs/Animation__slideLeft.docs.js +0 -34
- package/es/Animation/docs/Animation__zoomIn.docs.js +0 -34
- package/es/AppContainer/docs/AppContainer__default.docs.js +0 -20
- package/es/Avatar/docs/Avatar__custom.docs.js +0 -29
- package/es/Avatar/docs/Avatar__default.docs.js +0 -29
- package/es/Avatar/docs/Avatar__palette.docs.js +0 -49
- package/es/Avatar/docs/Avatar__text.docs.js +0 -28
- package/es/AvatarTeam/docs/AvatarTeam__custom.docs.js +0 -73
- package/es/AvatarTeam/docs/AvatarTeam__default.docs.js +0 -31
- package/es/AvatarTeam/docs/AvatarTeam__palette.docs.js +0 -50
- package/es/AvatarTeam/docs/AvatarTeam__size.docs.js +0 -49
- package/es/Button/docs/Button__custom.docs.js +0 -771
- package/es/Button/docs/Button__default.docs.js +0 -536
- package/es/Buttongroup/docs/Buttongroup__custom.docs.js +0 -37
- package/es/Buttongroup/docs/Buttongroup__footer.docs.js +0 -33
- package/es/Buttongroup/docs/Buttongroup__header.docs.js +0 -42
- package/es/Card/docs/Card__Custom.docs.js +0 -34
- package/es/Card/docs/Card__Default.docs.js +0 -37
- package/es/Card/docs/Card__Scroll.docs.js +0 -59
- package/es/CheckBox/docs/CheckBox__custom.docs.js +0 -293
- package/es/CheckBox/docs/CheckBox__default.docs.js +0 -219
- package/es/DateTime/docs/DateTime__default.docs.js +0 -91
- package/es/DateTime/docs/DateWidget__default.docs.js +0 -183
- package/es/DateTime/docs/timezonedata.json +0 -1
- package/es/DropBox/docs/DropBox__custom.docs.js +0 -66
- package/es/DropBox/docs/DropBox__customOrder.docs.js +0 -92
- package/es/DropBox/docs/DropBox__fixedPosition.docs.js +0 -91
- package/es/DropBox/docs/DropBox__position.docs.js +0 -87
- package/es/DropBox/docs/DropBox__size.docs.js +0 -61
- package/es/DropDown/docs/DropDownHeading__custom.docs.js +0 -23
- package/es/DropDown/docs/DropDownHeading__default.docs.js +0 -21
- package/es/Heading/docs/Heading__default.docs.js +0 -21
- package/es/Label/docs/Label__clipped.docs.js +0 -27
- package/es/Label/docs/Label__custom.docs.js +0 -30
- package/es/Label/docs/Label__palette.docs.js +0 -42
- package/es/Label/docs/Label__size.docs.js +0 -29
- package/es/Label/docs/Label__type.docs.js +0 -37
- package/es/Layout/docs/Layout__Hidden.docs.js +0 -77
- package/es/Layout/docs/Layout__default.docs.js +0 -49
- package/es/Layout/docs/Layout__four_Column.docs.js +0 -79
- package/es/Layout/docs/Layout__three_Column.docs.js +0 -76
- package/es/Layout/docs/Layout__two_Column.docs.js +0 -69
- package/es/LightNightMode/Colors.json +0 -497
- package/es/LightNightMode/docs/AlternativeColors.docs.js +0 -94
- package/es/ListItem/docs/ListItemWithAvatar__custom.docs.js +0 -155
- package/es/ListItem/docs/ListItemWithAvatar__default.docs.js +0 -112
- package/es/ListItem/docs/ListItemWithCheckBox__custom.docs.js +0 -91
- package/es/ListItem/docs/ListItemWithCheckBox__default.docs.js +0 -65
- package/es/ListItem/docs/ListItemWithIcon__custom.docs.js +0 -68
- package/es/ListItem/docs/ListItemWithIcon__default.docs.js +0 -62
- package/es/ListItem/docs/ListItemWithRadio__custom.docs.js +0 -91
- package/es/ListItem/docs/ListItemWithRadio__default.docs.js +0 -65
- package/es/ListItem/docs/ListItem__custom.docs.js +0 -114
- package/es/ListItem/docs/ListItem__default.docs.js +0 -82
- package/es/Modal/__docs__/Modal__default.docs.js +0 -46
- package/es/MultiSelect/docs/AdvancedGroupMultiSelect__default.docs.js +0 -125
- package/es/MultiSelect/docs/AdvancedMultiSelect__default.docs.js +0 -114
- package/es/MultiSelect/docs/MultiSelectWithAvatar__default.docs.js +0 -141
- package/es/MultiSelect/docs/MultiSelect__default.docs.js +0 -161
- package/es/PopOver/docs/PopOver__default.docs.js +0 -32
- package/es/Provider/docs/Provider_Id__Class.docs.js +0 -29
- package/es/Provider/docs/Provider_Id__Function.docs.js +0 -18
- package/es/Provider/docs/Provider_Zindex__Class.docs.js +0 -32
- package/es/Provider/docs/Provider_Zindex__Function.docs.js +0 -23
- package/es/Provider.js +0 -95
- package/es/Radio/docs/Radio__custom.docs.js +0 -245
- package/es/Radio/docs/Radio__default.docs.js +0 -169
- package/es/Responsive/docs/Responsive__Custom.docs.js +0 -206
- package/es/Responsive/docs/Responsive__default.docs.js +0 -97
- package/es/Responsive/docs/style.module.css +0 -56
- package/es/Ribbon/docs/Ribbon__custom.docs.js +0 -386
- package/es/Ribbon/docs/Ribbon__default.docs.js +0 -342
- package/es/RippleEffect/docs/RippleEffect__default.docs.js +0 -435
- package/es/Select/docs/GroupSelect__default.docs.js +0 -149
- package/es/Select/docs/SelectWithAvatar__default.docs.js +0 -97
- package/es/Select/docs/SelectWithIcon__default.docs.js +0 -138
- package/es/Select/docs/Select__default.docs.js +0 -288
- package/es/Stencils/docs/Stencils__custom.docs.js +0 -45
- package/es/Stencils/docs/Stencils__default.docs.js +0 -50
- package/es/Switch/docs/Switch__custom.docs.js +0 -153
- package/es/Switch/docs/Switch__default.docs.js +0 -107
- package/es/Tab/docs/Tab__default.docs.js +0 -258
- package/es/Tab/docs/tabdocs.module.css +0 -29
- package/es/Tag/docs/Tag__custom.docs.js +0 -368
- package/es/Tag/docs/Tag__default.docs.js +0 -323
- package/es/TextBox/docs/TextBox__custom.docs.js +0 -43
- package/es/TextBox/docs/TextBox__default.docs.js +0 -40
- package/es/TextBox/docs/TextBox__size.docs.js +0 -38
- package/es/TextBox/docs/TextBox__variant.docs.js +0 -38
- package/es/TextBoxIcon/docs/TextBoxIcon__custom.docs.js +0 -89
- package/es/TextBoxIcon/docs/TextBoxIcon__default.docs.js +0 -61
- package/es/Textarea/docs/Textarea__animated.docs.js +0 -41
- package/es/Textarea/docs/Textarea__custom.docs.js +0 -82
- package/es/Textarea/docs/Textarea__default.docs.js +0 -76
- package/es/Textarea/docs/Textarea__disabled.docs.js +0 -29
- package/es/Tooltip/docs/Tooltip__default.docs.js +0 -371
- package/es/VelocityAnimation/VelocityAnimation/docs/VelocityAnimation__demo.docs.js +0 -97
- package/es/VelocityAnimation/VelocityAnimationGroup/docs/VelocityAnimationGroup__demo.docs.js +0 -150
- package/es/common/docStyle.module.css +0 -766
- package/es/deprecated/PortalLayer/docs/PortalLayer__default.docs.js +0 -72
- package/es/semantic/Button/docs/Button__default.docs.js +0 -20
- package/lib/Accordion/docs/Accordion__Demo.docs.js +0 -126
- package/lib/Animation/docs/Animation__default.docs.js +0 -85
- package/lib/Animation/docs/Animation__fadeIn.docs.js +0 -85
- package/lib/Animation/docs/Animation__scaleIn.docs.js +0 -85
- package/lib/Animation/docs/Animation__skewIn.docs.js +0 -85
- package/lib/Animation/docs/Animation__slideDown.docs.js +0 -85
- package/lib/Animation/docs/Animation__slideLeft.docs.js +0 -85
- package/lib/Animation/docs/Animation__zoomIn.docs.js +0 -85
- package/lib/AppContainer/docs/AppContainer__default.docs.js +0 -70
- package/lib/Avatar/docs/Avatar__custom.docs.js +0 -87
- package/lib/Avatar/docs/Avatar__default.docs.js +0 -83
- package/lib/Avatar/docs/Avatar__palette.docs.js +0 -107
- package/lib/Avatar/docs/Avatar__text.docs.js +0 -86
- package/lib/AvatarTeam/docs/AvatarTeam__custom.docs.js +0 -124
- package/lib/AvatarTeam/docs/AvatarTeam__default.docs.js +0 -82
- package/lib/AvatarTeam/docs/AvatarTeam__palette.docs.js +0 -101
- package/lib/AvatarTeam/docs/AvatarTeam__size.docs.js +0 -100
- package/lib/Button/docs/Button__custom.docs.js +0 -826
- package/lib/Button/docs/Button__default.docs.js +0 -590
- package/lib/Buttongroup/docs/Buttongroup__custom.docs.js +0 -89
- package/lib/Buttongroup/docs/Buttongroup__footer.docs.js +0 -85
- package/lib/Buttongroup/docs/Buttongroup__header.docs.js +0 -98
- package/lib/Card/docs/Card__Custom.docs.js +0 -90
- package/lib/Card/docs/Card__Default.docs.js +0 -92
- package/lib/Card/docs/Card__Scroll.docs.js +0 -114
- package/lib/CheckBox/docs/CheckBox__custom.docs.js +0 -348
- package/lib/CheckBox/docs/CheckBox__default.docs.js +0 -273
- package/lib/DateTime/docs/DateTime__default.docs.js +0 -142
- package/lib/DateTime/docs/DateWidget__default.docs.js +0 -240
- package/lib/DateTime/docs/timezonedata.json +0 -1
- package/lib/DropBox/docs/DropBox__custom.docs.js +0 -122
- package/lib/DropBox/docs/DropBox__customOrder.docs.js +0 -141
- package/lib/DropBox/docs/DropBox__fixedPosition.docs.js +0 -140
- package/lib/DropBox/docs/DropBox__position.docs.js +0 -142
- package/lib/DropBox/docs/DropBox__size.docs.js +0 -116
- package/lib/DropDown/docs/DropDownHeading__custom.docs.js +0 -73
- package/lib/DropDown/docs/DropDownHeading__default.docs.js +0 -70
- package/lib/Heading/docs/Heading__default.docs.js +0 -74
- package/lib/Label/docs/Label__clipped.docs.js +0 -81
- package/lib/Label/docs/Label__custom.docs.js +0 -85
- package/lib/Label/docs/Label__palette.docs.js +0 -96
- package/lib/Label/docs/Label__size.docs.js +0 -83
- package/lib/Label/docs/Label__type.docs.js +0 -91
- package/lib/Layout/docs/Layout__Hidden.docs.js +0 -127
- package/lib/Layout/docs/Layout__default.docs.js +0 -98
- package/lib/Layout/docs/Layout__four_Column.docs.js +0 -129
- package/lib/Layout/docs/Layout__three_Column.docs.js +0 -126
- package/lib/Layout/docs/Layout__two_Column.docs.js +0 -119
- package/lib/LightNightMode/Colors.json +0 -497
- package/lib/LightNightMode/docs/AlternativeColors.docs.js +0 -153
- package/lib/ListItem/docs/ListItemWithAvatar__custom.docs.js +0 -206
- package/lib/ListItem/docs/ListItemWithAvatar__default.docs.js +0 -162
- package/lib/ListItem/docs/ListItemWithCheckBox__custom.docs.js +0 -142
- package/lib/ListItem/docs/ListItemWithCheckBox__default.docs.js +0 -115
- package/lib/ListItem/docs/ListItemWithIcon__custom.docs.js +0 -119
- package/lib/ListItem/docs/ListItemWithIcon__default.docs.js +0 -112
- package/lib/ListItem/docs/ListItemWithRadio__custom.docs.js +0 -142
- package/lib/ListItem/docs/ListItemWithRadio__default.docs.js +0 -115
- package/lib/ListItem/docs/ListItem__custom.docs.js +0 -164
- package/lib/ListItem/docs/ListItem__default.docs.js +0 -131
- package/lib/Modal/__docs__/Modal__default.docs.js +0 -88
- package/lib/MultiSelect/docs/AdvancedGroupMultiSelect__default.docs.js +0 -177
- package/lib/MultiSelect/docs/AdvancedMultiSelect__default.docs.js +0 -165
- package/lib/MultiSelect/docs/MultiSelectWithAvatar__default.docs.js +0 -191
- package/lib/MultiSelect/docs/MultiSelect__default.docs.js +0 -214
- package/lib/PopOver/docs/PopOver__default.docs.js +0 -86
- package/lib/Provider/docs/Provider_Id__Class.docs.js +0 -77
- package/lib/Provider/docs/Provider_Id__Function.docs.js +0 -29
- package/lib/Provider/docs/Provider_Zindex__Class.docs.js +0 -80
- package/lib/Provider/docs/Provider_Zindex__Function.docs.js +0 -34
- package/lib/Provider.js +0 -175
- package/lib/Radio/docs/Radio__custom.docs.js +0 -299
- package/lib/Radio/docs/Radio__default.docs.js +0 -222
- package/lib/Responsive/docs/Responsive__Custom.docs.js +0 -272
- package/lib/Responsive/docs/Responsive__default.docs.js +0 -142
- package/lib/Responsive/docs/style.module.css +0 -56
- package/lib/Ribbon/docs/Ribbon__custom.docs.js +0 -437
- package/lib/Ribbon/docs/Ribbon__default.docs.js +0 -392
- package/lib/RippleEffect/docs/RippleEffect__default.docs.js +0 -484
- package/lib/Select/docs/GroupSelect__default.docs.js +0 -199
- package/lib/Select/docs/SelectWithAvatar__default.docs.js +0 -152
- package/lib/Select/docs/SelectWithIcon__default.docs.js +0 -190
- package/lib/Select/docs/Select__default.docs.js +0 -340
- package/lib/Stencils/docs/Stencils__custom.docs.js +0 -96
- package/lib/Stencils/docs/Stencils__default.docs.js +0 -101
- package/lib/Switch/docs/Switch__custom.docs.js +0 -203
- package/lib/Switch/docs/Switch__default.docs.js +0 -156
- package/lib/Tab/docs/Tab__default.docs.js +0 -308
- package/lib/Tab/docs/tabdocs.module.css +0 -29
- package/lib/Tag/docs/Tag__custom.docs.js +0 -423
- package/lib/Tag/docs/Tag__default.docs.js +0 -377
- package/lib/TextBox/docs/TextBox__custom.docs.js +0 -98
- package/lib/TextBox/docs/TextBox__default.docs.js +0 -95
- package/lib/TextBox/docs/TextBox__size.docs.js +0 -93
- package/lib/TextBox/docs/TextBox__variant.docs.js +0 -93
- package/lib/TextBoxIcon/docs/TextBoxIcon__custom.docs.js +0 -145
- package/lib/TextBoxIcon/docs/TextBoxIcon__default.docs.js +0 -117
- package/lib/Textarea/docs/Textarea__animated.docs.js +0 -95
- package/lib/Textarea/docs/Textarea__custom.docs.js +0 -137
- package/lib/Textarea/docs/Textarea__default.docs.js +0 -130
- package/lib/Textarea/docs/Textarea__disabled.docs.js +0 -83
- package/lib/Tooltip/docs/Tooltip__default.docs.js +0 -430
- package/lib/VelocityAnimation/VelocityAnimation/docs/VelocityAnimation__demo.docs.js +0 -150
- package/lib/VelocityAnimation/VelocityAnimationGroup/docs/VelocityAnimationGroup__demo.docs.js +0 -206
- package/lib/common/docStyle.module.css +0 -766
- package/lib/deprecated/PortalLayer/docs/PortalLayer__default.docs.js +0 -145
- package/lib/semantic/Button/docs/Button__default.docs.js +0 -66
package/es/index.js
CHANGED
|
@@ -1,155 +1,157 @@
|
|
|
1
|
-
export { default as React } from 'react';
|
|
2
|
-
export { default as ReactDOM } from 'react-dom';
|
|
3
|
-
export { renderToStaticMarkup } from 'react-dom/server';
|
|
4
|
-
import './common/reset.module.css';
|
|
5
|
-
export { default as _provider } from './Provider';
|
|
1
|
+
// export { default as React } from 'react';
|
|
2
|
+
// export { default as ReactDOM } from 'react-dom';
|
|
3
|
+
// export { renderToStaticMarkup } from 'react-dom/server';
|
|
6
4
|
export * from './Layout';
|
|
7
|
-
export { default as Layout__default } from './Layout/docs/Layout__default.docs';
|
|
8
|
-
export { default as Layout__two_Column } from './Layout/docs/Layout__two_Column.docs';
|
|
9
|
-
export { default as Layout__three_Column } from './Layout/docs/Layout__three_Column.docs';
|
|
10
|
-
export { default as Layout__four_Column } from './Layout/docs/Layout__four_Column.docs';
|
|
11
|
-
export { default as Layout__Hidden } from './Layout/docs/Layout__Hidden.docs';
|
|
5
|
+
// export { default as Layout__default } from './Layout/docs/Layout__default.docs';
|
|
6
|
+
// export { default as Layout__two_Column } from './Layout/docs/Layout__two_Column.docs';
|
|
7
|
+
// export { default as Layout__three_Column } from './Layout/docs/Layout__three_Column.docs';
|
|
8
|
+
// export { default as Layout__four_Column } from './Layout/docs/Layout__four_Column.docs';
|
|
9
|
+
// export { default as Layout__Hidden } from './Layout/docs/Layout__Hidden.docs';
|
|
12
10
|
export { default as AppContainer } from './AppContainer/AppContainer';
|
|
13
|
-
export { default as AppContainer__default } from './AppContainer/docs/AppContainer__default.docs';
|
|
11
|
+
// export { default as AppContainer__default } from './AppContainer/docs/AppContainer__default.docs';
|
|
14
12
|
export { default as Accordion } from './Accordion/Accordion';
|
|
15
|
-
export { default as Accordion__Demo } from './Accordion/docs/Accordion__Demo.docs';
|
|
13
|
+
// export { default as Accordion__Demo } from './Accordion/docs/Accordion__Demo.docs';
|
|
16
14
|
export { default as Animation } from './Animation/Animation';
|
|
17
|
-
export { default as Animation__default } from './Animation/docs/Animation__default.docs';
|
|
18
|
-
export { default as Animation__fadeIn } from './Animation/docs/Animation__fadeIn.docs';
|
|
19
|
-
export { default as Animation__scaleIn } from './Animation/docs/Animation__scaleIn.docs';
|
|
20
|
-
export { default as Animation__slideDown } from './Animation/docs/Animation__slideDown.docs';
|
|
21
|
-
export { default as Animation__slideLeft } from './Animation/docs/Animation__slideLeft.docs';
|
|
22
|
-
export { default as Animation__zoomIn } from './Animation/docs/Animation__zoomIn.docs';
|
|
23
|
-
export { default as Animation__skewIn } from './Animation/docs/Animation__skewIn.docs';
|
|
15
|
+
// export { default as Animation__default } from './Animation/docs/Animation__default.docs';
|
|
16
|
+
// export { default as Animation__fadeIn } from './Animation/docs/Animation__fadeIn.docs';
|
|
17
|
+
// export { default as Animation__scaleIn } from './Animation/docs/Animation__scaleIn.docs';
|
|
18
|
+
// export { default as Animation__slideDown } from './Animation/docs/Animation__slideDown.docs';
|
|
19
|
+
// export { default as Animation__slideLeft } from './Animation/docs/Animation__slideLeft.docs';
|
|
20
|
+
// export { default as Animation__zoomIn } from './Animation/docs/Animation__zoomIn.docs';
|
|
21
|
+
// export { default as Animation__skewIn } from './Animation/docs/Animation__skewIn.docs';
|
|
24
22
|
export { default as Card } from './Card/Card';
|
|
25
|
-
export { default as Card__Default } from './Card/docs/Card__Default.docs';
|
|
26
|
-
export { default as Card__Scroll } from './Card/docs/Card__Scroll.docs';
|
|
27
|
-
export { default as Card__Custom } from './Card/docs/Card__Custom.docs';
|
|
23
|
+
// export { default as Card__Default } from './Card/docs/Card__Default.docs';
|
|
24
|
+
// export { default as Card__Scroll } from './Card/docs/Card__Scroll.docs';
|
|
25
|
+
// export { default as Card__Custom } from './Card/docs/Card__Custom.docs';
|
|
28
26
|
export { default as Avatar } from './Avatar/Avatar';
|
|
29
|
-
export { default as Avatar__default } from './Avatar/docs/Avatar__default.docs';
|
|
30
|
-
export { default as Avatar__palette } from './Avatar/docs/Avatar__palette.docs';
|
|
31
|
-
export { default as Avatar__text } from './Avatar/docs/Avatar__text.docs';
|
|
32
|
-
export { default as Avatar__custom } from './Avatar/docs/Avatar__custom.docs';
|
|
27
|
+
// export { default as Avatar__default } from './Avatar/docs/Avatar__default.docs';
|
|
28
|
+
// export { default as Avatar__palette } from './Avatar/docs/Avatar__palette.docs';
|
|
29
|
+
// export { default as Avatar__text } from './Avatar/docs/Avatar__text.docs';
|
|
30
|
+
// export { default as Avatar__custom } from './Avatar/docs/Avatar__custom.docs';
|
|
33
31
|
export { default as AvatarTeam } from './AvatarTeam/AvatarTeam';
|
|
34
|
-
export { default as AvatarTeam__default } from './AvatarTeam/docs/AvatarTeam__default.docs';
|
|
35
|
-
export { default as AvatarTeam__size } from './AvatarTeam/docs/AvatarTeam__size.docs';
|
|
36
|
-
export { default as AvatarTeam__palette } from './AvatarTeam/docs/AvatarTeam__palette.docs';
|
|
37
|
-
export { default as AvatarTeam__custom } from './AvatarTeam/docs/AvatarTeam__custom.docs';
|
|
32
|
+
// export { default as AvatarTeam__default } from './AvatarTeam/docs/AvatarTeam__default.docs';
|
|
33
|
+
// export { default as AvatarTeam__size } from './AvatarTeam/docs/AvatarTeam__size.docs';
|
|
34
|
+
// export { default as AvatarTeam__palette } from './AvatarTeam/docs/AvatarTeam__palette.docs';
|
|
35
|
+
// export { default as AvatarTeam__custom } from './AvatarTeam/docs/AvatarTeam__custom.docs';
|
|
38
36
|
export { default as Button } from './Button/Button';
|
|
39
|
-
export { default as Button__default } from './Button/docs/Button__default.docs';
|
|
40
|
-
export { default as Button__custom } from './Button/docs/Button__custom.docs';
|
|
37
|
+
// export { default as Button__default } from './Button/docs/Button__default.docs';
|
|
38
|
+
// export { default as Button__custom } from './Button/docs/Button__custom.docs';
|
|
41
39
|
export { default as Buttongroup } from './Buttongroup/Buttongroup';
|
|
42
|
-
export { default as Buttongroup__footer } from './Buttongroup/docs/Buttongroup__footer.docs';
|
|
43
|
-
export { default as Buttongroup__header } from './Buttongroup/docs/Buttongroup__header.docs';
|
|
44
|
-
export { default as Buttongroup__custom } from './Buttongroup/docs/Buttongroup__custom.docs';
|
|
40
|
+
// export { default as Buttongroup__footer } from './Buttongroup/docs/Buttongroup__footer.docs';
|
|
41
|
+
// export { default as Buttongroup__header } from './Buttongroup/docs/Buttongroup__header.docs';
|
|
42
|
+
// export { default as Buttongroup__custom } from './Buttongroup/docs/Buttongroup__custom.docs';
|
|
45
43
|
export { default as Switch } from './Switch/Switch';
|
|
46
|
-
export { default as Switch__default } from './Switch/docs/Switch__default.docs';
|
|
47
|
-
export { default as Switch__custom } from './Switch/docs/Switch__custom.docs';
|
|
44
|
+
// export { default as Switch__default } from './Switch/docs/Switch__default.docs';
|
|
45
|
+
// export { default as Switch__custom } from './Switch/docs/Switch__custom.docs';
|
|
48
46
|
export { default as Radio } from './Radio/Radio';
|
|
49
|
-
export { default as Radio__default } from './Radio/docs/Radio__default.docs';
|
|
50
|
-
export { default as Radio__custom } from './Radio/docs/Radio__custom.docs';
|
|
47
|
+
// export { default as Radio__default } from './Radio/docs/Radio__default.docs';
|
|
48
|
+
// export { default as Radio__custom } from './Radio/docs/Radio__custom.docs';
|
|
51
49
|
export { default as Textarea } from './Textarea/Textarea';
|
|
52
|
-
export { default as Textarea__default } from './Textarea/docs/Textarea__default.docs';
|
|
53
|
-
export { default as Textarea__animated } from './Textarea/docs/Textarea__animated.docs';
|
|
54
|
-
export { default as Textarea__disabled } from './Textarea/docs/Textarea__disabled.docs';
|
|
55
|
-
export { default as Textarea__custom } from './Textarea/docs/Textarea__custom.docs';
|
|
50
|
+
// export { default as Textarea__default } from './Textarea/docs/Textarea__default.docs';
|
|
51
|
+
// export { default as Textarea__animated } from './Textarea/docs/Textarea__animated.docs';
|
|
52
|
+
// export { default as Textarea__disabled } from './Textarea/docs/Textarea__disabled.docs';
|
|
53
|
+
// export { default as Textarea__custom } from './Textarea/docs/Textarea__custom.docs';
|
|
56
54
|
export { default as Label } from './Label/Label';
|
|
57
|
-
export { default as Label__palette } from './Label/docs/Label__palette.docs';
|
|
58
|
-
export { default as Label__size } from './Label/docs/Label__size.docs';
|
|
59
|
-
export { default as Label__clipped } from './Label/docs/Label__clipped.docs';
|
|
60
|
-
export { default as Label__type } from './Label/docs/Label__type.docs';
|
|
61
|
-
export { default as Label__custom } from './Label/docs/Label__custom.docs';
|
|
55
|
+
// export { default as Label__palette } from './Label/docs/Label__palette.docs';
|
|
56
|
+
// export { default as Label__size } from './Label/docs/Label__size.docs';
|
|
57
|
+
// export { default as Label__clipped } from './Label/docs/Label__clipped.docs';
|
|
58
|
+
// export { default as Label__type } from './Label/docs/Label__type.docs';
|
|
59
|
+
// export { default as Label__custom } from './Label/docs/Label__custom.docs';
|
|
62
60
|
export { default as DropDownHeading } from './DropDown/DropDownHeading';
|
|
63
|
-
export { default as DropDownHeading__Heading } from './DropDown/docs/DropDownHeading__default.docs';
|
|
64
|
-
export { default as DropDownHeading__Custom } from './DropDown/docs/DropDownHeading__custom.docs';
|
|
61
|
+
// export { default as DropDownHeading__Heading } from './DropDown/docs/DropDownHeading__default.docs';
|
|
62
|
+
// export { default as DropDownHeading__Custom } from './DropDown/docs/DropDownHeading__custom.docs';
|
|
65
63
|
export { default as CheckBox } from './CheckBox/CheckBox';
|
|
66
|
-
export { default as CheckBox__default } from './CheckBox/docs/CheckBox__default.docs';
|
|
67
|
-
export { default as CheckBox__custom } from './CheckBox/docs/CheckBox__custom.docs';
|
|
64
|
+
// export { default as CheckBox__default } from './CheckBox/docs/CheckBox__default.docs';
|
|
65
|
+
// export { default as CheckBox__custom } from './CheckBox/docs/CheckBox__custom.docs';
|
|
68
66
|
export { default as Ribbon } from './Ribbon/Ribbon';
|
|
69
|
-
export { default as Ribbon__default } from './Ribbon/docs/Ribbon__default.docs';
|
|
70
|
-
export { default as Ribbon__custom } from './Ribbon/docs/Ribbon__custom.docs';
|
|
67
|
+
// export { default as Ribbon__default } from './Ribbon/docs/Ribbon__default.docs';
|
|
68
|
+
// export { default as Ribbon__custom } from './Ribbon/docs/Ribbon__custom.docs';
|
|
71
69
|
export { default as Tag } from './Tag/Tag';
|
|
72
|
-
export { default as Tag__default } from './Tag/docs/Tag__default.docs';
|
|
73
|
-
export { default as Tag__custom } from './Tag/docs/Tag__custom.docs';
|
|
70
|
+
// export { default as Tag__default } from './Tag/docs/Tag__default.docs';
|
|
71
|
+
// export { default as Tag__custom } from './Tag/docs/Tag__custom.docs';
|
|
74
72
|
export * from './Tab';
|
|
75
|
-
export { default as Tab__default } from './Tab/docs/Tab__default.docs';
|
|
73
|
+
// export { default as Tab__default } from './Tab/docs/Tab__default.docs';
|
|
76
74
|
export { default as TextBox } from './TextBox/TextBox';
|
|
77
|
-
export { default as TextBox__default } from './TextBox/docs/TextBox__default.docs';
|
|
78
|
-
export { default as TextBox__size } from './TextBox/docs/TextBox__size.docs';
|
|
79
|
-
export { default as TextBox__variant } from './TextBox/docs/TextBox__variant.docs';
|
|
80
|
-
export { default as TextBox__custom } from './TextBox/docs/TextBox__custom.docs';
|
|
75
|
+
// export { default as TextBox__default } from './TextBox/docs/TextBox__default.docs';
|
|
76
|
+
// export { default as TextBox__size } from './TextBox/docs/TextBox__size.docs';
|
|
77
|
+
// export { default as TextBox__variant } from './TextBox/docs/TextBox__variant.docs';
|
|
78
|
+
// export { default as TextBox__custom } from './TextBox/docs/TextBox__custom.docs';
|
|
81
79
|
export { default as TextBoxIcon } from './TextBoxIcon/TextBoxIcon';
|
|
82
|
-
export { default as TextBoxIcon__default } from './TextBoxIcon/docs/TextBoxIcon__default.docs';
|
|
83
|
-
export { default as TextBoxIcon__custom } from './TextBoxIcon/docs/TextBoxIcon__custom.docs';
|
|
80
|
+
// export { default as TextBoxIcon__default } from './TextBoxIcon/docs/TextBoxIcon__default.docs';
|
|
81
|
+
// export { default as TextBoxIcon__custom } from './TextBoxIcon/docs/TextBoxIcon__custom.docs';
|
|
84
82
|
export { default as Tooltip } from './Tooltip/Tooltip';
|
|
85
|
-
export { default as Tooltip__default } from './Tooltip/docs/Tooltip__default.docs';
|
|
83
|
+
// export { default as Tooltip__default } from './Tooltip/docs/Tooltip__default.docs';
|
|
86
84
|
export { default as Select } from './Select/Select';
|
|
87
|
-
export { default as Select__Select } from './Select/docs/Select__default.docs';
|
|
85
|
+
// export { default as Select__Select } from './Select/docs/Select__default.docs';
|
|
88
86
|
export { default as SelectWithIcon } from './Select/SelectWithIcon';
|
|
89
|
-
export { default as SelectWithIcon__SelectWithIcon } from './Select/docs/SelectWithIcon__default.docs';
|
|
87
|
+
// export { default as SelectWithIcon__SelectWithIcon } from './Select/docs/SelectWithIcon__default.docs';
|
|
90
88
|
export { default as GroupSelect } from './Select/GroupSelect';
|
|
91
|
-
export { default as GroupSelect__GroupSelect } from './Select/docs/GroupSelect__default.docs';
|
|
89
|
+
// export { default as GroupSelect__GroupSelect } from './Select/docs/GroupSelect__default.docs';
|
|
92
90
|
export { default as SelectWithAvatar } from './Select/SelectWithAvatar';
|
|
93
|
-
export { default as SelectWithAvatar__SelectWithAvatar } from './Select/docs/SelectWithAvatar__default.docs';
|
|
91
|
+
// export { default as SelectWithAvatar__SelectWithAvatar } from './Select/docs/SelectWithAvatar__default.docs';
|
|
94
92
|
export { default as MultiSelect } from './MultiSelect/MultiSelect';
|
|
95
|
-
export { default as MultiSelect__MultiSelect } from './MultiSelect/docs/MultiSelect__default.docs';
|
|
93
|
+
// export { default as MultiSelect__MultiSelect } from './MultiSelect/docs/MultiSelect__default.docs';
|
|
96
94
|
export { default as AdvancedMultiSelect } from './MultiSelect/AdvancedMultiSelect';
|
|
97
|
-
export { default as AdvancedMultiSelect__AdvancedMultiSelect } from './MultiSelect/docs/AdvancedMultiSelect__default.docs';
|
|
95
|
+
// export { default as AdvancedMultiSelect__AdvancedMultiSelect } from './MultiSelect/docs/AdvancedMultiSelect__default.docs';
|
|
98
96
|
export { default as AdvancedGroupMultiSelect } from './MultiSelect/AdvancedGroupMultiSelect';
|
|
99
|
-
export { default as AdvancedGroupMultiSelect__AdvancedGroupMultiSelect } from './MultiSelect/docs/AdvancedGroupMultiSelect__default.docs';
|
|
97
|
+
// export { default as AdvancedGroupMultiSelect__AdvancedGroupMultiSelect } from './MultiSelect/docs/AdvancedGroupMultiSelect__default.docs';
|
|
100
98
|
export { default as MultiSelectWithAvatar } from './MultiSelect/MultiSelectWithAvatar';
|
|
101
|
-
export { default as MultiSelectWithAvatar__MultiSelectWithAvatar } from './MultiSelect/docs/MultiSelectWithAvatar__default.docs';
|
|
99
|
+
// export { default as MultiSelectWithAvatar__MultiSelectWithAvatar } from './MultiSelect/docs/MultiSelectWithAvatar__default.docs';
|
|
102
100
|
export { default as DateWidget } from './DateTime/DateWidget';
|
|
103
|
-
export { default as DateWidget__dateWidget } from './DateTime/docs/DateWidget__default.docs';
|
|
104
|
-
export { default as DateWidget__datetime } from './DateTime/docs/DateTime__default.docs';
|
|
101
|
+
// export { default as DateWidget__dateWidget } from './DateTime/docs/DateWidget__default.docs';
|
|
102
|
+
// export { default as DateWidget__datetime } from './DateTime/docs/DateTime__default.docs';
|
|
105
103
|
export { default as ListItem } from './ListItem/ListItem';
|
|
106
|
-
export { default as ListItem__default } from './ListItem/docs/ListItem__default.docs';
|
|
107
|
-
export { default as ListItem__custom } from './ListItem/docs/ListItem__custom.docs';
|
|
104
|
+
// export { default as ListItem__default } from './ListItem/docs/ListItem__default.docs';
|
|
105
|
+
// export { default as ListItem__custom } from './ListItem/docs/ListItem__custom.docs';
|
|
108
106
|
export { default as ListItemWithIcon } from './ListItem/ListItemWithIcon';
|
|
109
|
-
export { default as ListItemWithIcon__default } from './ListItem/docs/ListItemWithIcon__default.docs';
|
|
110
|
-
export { default as ListItemWithIcon__custom } from './ListItem/docs/ListItemWithIcon__custom.docs';
|
|
107
|
+
// export { default as ListItemWithIcon__default } from './ListItem/docs/ListItemWithIcon__default.docs';
|
|
108
|
+
// export { default as ListItemWithIcon__custom } from './ListItem/docs/ListItemWithIcon__custom.docs';
|
|
111
109
|
export { default as ListItemWithCheckBox } from './ListItem/ListItemWithCheckBox';
|
|
112
|
-
export { default as ListItemWithCheckBox__default } from './ListItem/docs/ListItemWithCheckBox__default.docs';
|
|
113
|
-
export { default as ListItemWithCheckBox__custom } from './ListItem/docs/ListItemWithCheckBox__custom.docs';
|
|
110
|
+
// export { default as ListItemWithCheckBox__default } from './ListItem/docs/ListItemWithCheckBox__default.docs';
|
|
111
|
+
// export { default as ListItemWithCheckBox__custom } from './ListItem/docs/ListItemWithCheckBox__custom.docs';
|
|
114
112
|
export { default as ListItemWithRadio } from './ListItem/ListItemWithRadio';
|
|
115
|
-
export { default as ListItemWithRadio__default } from './ListItem/docs/ListItemWithRadio__default.docs';
|
|
116
|
-
export { default as ListItemWithRadio__custom } from './ListItem/docs/ListItemWithRadio__custom.docs';
|
|
113
|
+
// export { default as ListItemWithRadio__default } from './ListItem/docs/ListItemWithRadio__default.docs';
|
|
114
|
+
// export { default as ListItemWithRadio__custom } from './ListItem/docs/ListItemWithRadio__custom.docs';
|
|
117
115
|
export { default as ListItemWithAvatar } from './ListItem/ListItemWithAvatar';
|
|
118
|
-
export { default as ListItemWithAvatar__default } from './ListItem/docs/ListItemWithAvatar__default.docs';
|
|
119
|
-
export { default as ListItemWithAvatar__custom } from './ListItem/docs/ListItemWithAvatar__custom.docs';
|
|
116
|
+
// export { default as ListItemWithAvatar__default } from './ListItem/docs/ListItemWithAvatar__default.docs';
|
|
117
|
+
// export { default as ListItemWithAvatar__custom } from './ListItem/docs/ListItemWithAvatar__custom.docs';
|
|
120
118
|
export { default as DropBox } from './DropBox/DropBox';
|
|
121
|
-
export { default as DropBox__position } from './DropBox/docs/DropBox__position.docs';
|
|
122
|
-
export { default as DropBox__size } from './DropBox/docs/DropBox__size.docs';
|
|
123
|
-
export { default as DropBox__custom } from './DropBox/docs/DropBox__custom.docs';
|
|
124
|
-
export { default as DropBox__customOrder } from './DropBox/docs/DropBox__customOrder.docs.js';
|
|
125
|
-
export { default as DropBox__fixedPosition } from './DropBox/docs/DropBox__fixedPosition.docs.js';
|
|
119
|
+
// export { default as DropBox__position } from './DropBox/docs/DropBox__position.docs';
|
|
120
|
+
// export { default as DropBox__size } from './DropBox/docs/DropBox__size.docs';
|
|
121
|
+
// export { default as DropBox__custom } from './DropBox/docs/DropBox__custom.docs';
|
|
122
|
+
// export { default as DropBox__customOrder } from './DropBox/docs/DropBox__customOrder.docs.js';
|
|
123
|
+
// export { default as DropBox__fixedPosition } from './DropBox/docs/DropBox__fixedPosition.docs.js';
|
|
126
124
|
export { default as PopOver } from './PopOver/PopOver';
|
|
127
|
-
export { default as PopOver__default } from './PopOver/docs/PopOver__default.docs.js';
|
|
125
|
+
// export { default as PopOver__default } from './PopOver/docs/PopOver__default.docs.js';
|
|
128
126
|
export { default as Stencils } from './Stencils/Stencils';
|
|
129
|
-
export { default as Stencils__default } from './Stencils/docs/Stencils__default.docs';
|
|
130
|
-
export { default as Stencils__custom } from './Stencils/docs/Stencils__custom.docs';
|
|
127
|
+
// export { default as Stencils__default } from './Stencils/docs/Stencils__default.docs';
|
|
128
|
+
// export { default as Stencils__custom } from './Stencils/docs/Stencils__custom.docs';
|
|
131
129
|
export { default as Modal } from './Modal/Modal';
|
|
132
|
-
export { default as Modal__default } from './Modal/__docs__/Modal__default.docs';
|
|
130
|
+
// export { default as Modal__default } from './Modal/__docs__/Modal__default.docs';
|
|
133
131
|
export * from './Responsive';
|
|
134
|
-
export { default as Responsive__Custom } from './Responsive/docs/Responsive__Custom.docs';
|
|
135
|
-
export { default as Responsive__default } from './Responsive/docs/Responsive__default.docs';
|
|
132
|
+
// export { default as Responsive__Custom } from './Responsive/docs/Responsive__Custom.docs';
|
|
133
|
+
// export { default as Responsive__default } from './Responsive/docs/Responsive__default.docs';
|
|
136
134
|
export { default as RippleEffect } from './RippleEffect/RippleEffect';
|
|
137
|
-
export { default as RippleEffect__default } from './RippleEffect/docs/RippleEffect__default.docs';
|
|
135
|
+
// export { default as RippleEffect__default } from './RippleEffect/docs/RippleEffect__default.docs';
|
|
138
136
|
export { default as PortalLayer } from './deprecated/PortalLayer/PortalLayer';
|
|
139
|
-
export { default as PortalLayer__default } from './deprecated/PortalLayer/docs/PortalLayer__default.docs';
|
|
137
|
+
// export { default as PortalLayer__default } from './deprecated/PortalLayer/docs/PortalLayer__default.docs';
|
|
138
|
+
|
|
140
139
|
export { default as VelocityAnimation } from './VelocityAnimation/VelocityAnimation/VelocityAnimation';
|
|
141
|
-
export { default as VelocityAnimation__VelocityAnimation } from './VelocityAnimation/VelocityAnimation/docs/VelocityAnimation__demo.docs';
|
|
140
|
+
// export { default as VelocityAnimation__VelocityAnimation } from './VelocityAnimation/VelocityAnimation/docs/VelocityAnimation__demo.docs';
|
|
142
141
|
export { default as VelocityAnimationGroup } from './VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup';
|
|
143
|
-
export { default as VelocityAnimationGroup__VelocityAnimationGroup } from './VelocityAnimation/VelocityAnimationGroup/docs/VelocityAnimationGroup__demo.docs';
|
|
142
|
+
// export { default as VelocityAnimationGroup__VelocityAnimationGroup } from './VelocityAnimation/VelocityAnimationGroup/docs/VelocityAnimationGroup__demo.docs';
|
|
143
|
+
|
|
144
144
|
export { Provider } from './Provider/IdProvider';
|
|
145
|
-
export { default as Provider__Id_For_ClassComponent } from './Provider/docs/Provider_Id__Class.docs';
|
|
146
|
-
export { default as Provider__Id_For_FunctionComponent } from './Provider/docs/Provider_Id__Function.docs';
|
|
147
|
-
export { default as Provider__Zindex_For_ClassComponent } from './Provider/docs/Provider_Zindex__Class.docs';
|
|
148
|
-
export { default as Provider__Zindex_For_FunctionComponent } from './Provider/docs/Provider_Zindex__Function.docs';
|
|
145
|
+
// export { default as Provider__Id_For_ClassComponent } from './Provider/docs/Provider_Id__Class.docs';
|
|
146
|
+
// export { default as Provider__Id_For_FunctionComponent } from './Provider/docs/Provider_Id__Function.docs';
|
|
147
|
+
// export { default as Provider__Zindex_For_ClassComponent } from './Provider/docs/Provider_Zindex__Class.docs';
|
|
148
|
+
// export { default as Provider__Zindex_For_FunctionComponent } from './Provider/docs/Provider_Zindex__Function.docs';
|
|
149
149
|
|
|
150
|
+
//semantic//
|
|
150
151
|
export { default as SemanticButton } from './semantic/Button/Button';
|
|
151
|
-
export { default as SemanticButton__default } from './semantic/Button/docs/Button__default.docs.js';
|
|
152
|
-
|
|
152
|
+
// export { default as SemanticButton__default } from './semantic/Button/docs/Button__default.docs.js';
|
|
153
|
+
|
|
154
|
+
// export { default as LightNightMode__AlternativeColors } from './LightNightMode/docs/AlternativeColors.docs';
|
|
153
155
|
export { default as ResponsiveDropBox } from './ResponsiveDropBox/ResponsiveDropBox';
|
|
154
156
|
export { default as Heading } from './Heading/Heading';
|
|
155
|
-
export { default as Heading__default } from './Heading/docs/Heading__default.docs.js';
|
|
157
|
+
// export { default as Heading__default } from './Heading/docs/Heading__default.docs.js';
|
|
@@ -6,7 +6,6 @@ export default class Button extends React.Component {
|
|
|
6
6
|
constructor(props) {
|
|
7
7
|
super(props);
|
|
8
8
|
}
|
|
9
|
-
|
|
10
9
|
render() {
|
|
11
10
|
const {
|
|
12
11
|
value,
|
|
@@ -48,11 +47,9 @@ export default class Button extends React.Component {
|
|
|
48
47
|
"data-title": title
|
|
49
48
|
}, children ? children : text);
|
|
50
49
|
}
|
|
51
|
-
|
|
52
50
|
}
|
|
53
51
|
Button.defaultProps = defaultProps;
|
|
54
52
|
Button.propTypes = propTypes;
|
|
55
|
-
|
|
56
53
|
if (false) {
|
|
57
54
|
Button.docs = {
|
|
58
55
|
componentGroup: 'semantic',
|
package/es/utils/Common.js
CHANGED
|
@@ -12,7 +12,9 @@ export const getTotalDimension = (elem, align) => {
|
|
|
12
12
|
export const stopAllEventPropagation = e => {
|
|
13
13
|
e.stopPropagation && e.stopPropagation();
|
|
14
14
|
e.nativeEvent && e.nativeEvent.stopImmediatePropagation && e.nativeEvent.stopImmediatePropagation();
|
|
15
|
-
};
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
// export function getCommentsDetails(
|
|
16
18
|
// commentIds = [],
|
|
17
19
|
// comments = {},
|
|
18
20
|
// agents = {}
|
|
@@ -35,7 +37,6 @@ export function encodeForHtml(str) {
|
|
|
35
37
|
str = str.replace(/\\/g, '\');
|
|
36
38
|
str = str.replace(/'/g, ''');
|
|
37
39
|
}
|
|
38
|
-
|
|
39
40
|
return str;
|
|
40
41
|
}
|
|
41
42
|
export function getListOfDetails() {
|
|
@@ -47,7 +48,6 @@ export function getListOfDetails() {
|
|
|
47
48
|
export function capitalize() {
|
|
48
49
|
let value = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
49
50
|
let newValue = '';
|
|
50
|
-
|
|
51
51
|
for (let i = 0; i < value.length; i++) {
|
|
52
52
|
if (i == 0) {
|
|
53
53
|
newValue += value[i].toUpperCase();
|
|
@@ -55,14 +55,12 @@ export function capitalize() {
|
|
|
55
55
|
newValue += value[i].toLowerCase();
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
|
-
|
|
59
58
|
return newValue;
|
|
60
59
|
}
|
|
61
60
|
export function bind() {
|
|
62
61
|
for (var _len = arguments.length, handlers = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
63
62
|
handlers[_key] = arguments[_key];
|
|
64
63
|
}
|
|
65
|
-
|
|
66
64
|
handlers.forEach(handler => {
|
|
67
65
|
this[handler] = this[handler].bind(this);
|
|
68
66
|
});
|
|
@@ -71,15 +69,12 @@ export function getFullName() {
|
|
|
71
69
|
let firstName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
72
70
|
let lastName = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
73
71
|
let fullName = '';
|
|
74
|
-
|
|
75
72
|
if (firstName !== null && firstName !== '') {
|
|
76
73
|
fullName = firstName;
|
|
77
74
|
}
|
|
78
|
-
|
|
79
75
|
if (lastName !== null && lastName !== '') {
|
|
80
76
|
fullName = `${fullName}${lastName}`;
|
|
81
77
|
}
|
|
82
|
-
|
|
83
78
|
return fullName;
|
|
84
79
|
}
|
|
85
80
|
export function getStringifiedOutputForJson() {
|
|
@@ -87,7 +82,6 @@ export function getStringifiedOutputForJson() {
|
|
|
87
82
|
const keys = Object.keys(input);
|
|
88
83
|
const modifiedInput = keys.reduce((curr, next) => {
|
|
89
84
|
const values = input[next] || [];
|
|
90
|
-
|
|
91
85
|
if (values.length) {
|
|
92
86
|
const valueList = values.reduce((curr, next) => {
|
|
93
87
|
curr.push(next.id);
|
|
@@ -96,7 +90,6 @@ export function getStringifiedOutputForJson() {
|
|
|
96
90
|
curr[next] = valueList;
|
|
97
91
|
return curr;
|
|
98
92
|
}
|
|
99
|
-
|
|
100
93
|
return curr;
|
|
101
94
|
}, {});
|
|
102
95
|
return JSON.stringify(modifiedInput);
|
|
@@ -112,7 +105,6 @@ export function filterValue(obj, val) {
|
|
|
112
105
|
const ids = obj ? Object.keys(obj) : [];
|
|
113
106
|
ids.forEach(key => {
|
|
114
107
|
const value = obj[key] || {};
|
|
115
|
-
|
|
116
108
|
if (value.name === val && !value.isCustomField) {
|
|
117
109
|
result = value.id;
|
|
118
110
|
}
|
|
@@ -134,42 +126,34 @@ export function formatValue() {
|
|
|
134
126
|
let textField = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'name';
|
|
135
127
|
return values && values.map(value => {
|
|
136
128
|
let formattedValue = value;
|
|
137
|
-
|
|
138
129
|
if (typeof value === 'string' || typeof value === 'number') {
|
|
139
130
|
formattedValue = {};
|
|
140
131
|
formattedValue[valueField] = value;
|
|
141
132
|
formattedValue[textField] = value;
|
|
142
133
|
}
|
|
143
|
-
|
|
144
134
|
return formattedValue;
|
|
145
135
|
}) || [];
|
|
146
136
|
}
|
|
147
137
|
export function bytesToSize(bytes) {
|
|
148
138
|
bytes = parseInt(bytes, 10);
|
|
149
139
|
const sizes = ['B', 'KB', 'MB', 'GB', 'TB'];
|
|
150
|
-
|
|
151
140
|
if (bytes === 0) {
|
|
152
141
|
return '0 Byte';
|
|
153
142
|
}
|
|
154
|
-
|
|
155
143
|
const i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)), 10);
|
|
156
144
|
return `${Math.round(bytes / Math.pow(1024, i), 2)} ${sizes[i]}`;
|
|
157
145
|
}
|
|
158
146
|
export function getMemSize(bytes) {
|
|
159
147
|
let size = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : !0;
|
|
160
148
|
const thresh = size ? 1000 : 1024;
|
|
161
|
-
|
|
162
149
|
if (Math.abs(bytes) < thresh) {
|
|
163
150
|
return `${bytes} B`;
|
|
164
151
|
}
|
|
165
|
-
|
|
166
152
|
let units = size ? ['kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'] : ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'],
|
|
167
|
-
|
|
168
|
-
|
|
153
|
+
i = -1;
|
|
169
154
|
do {
|
|
170
155
|
bytes /= thresh, ++i;
|
|
171
156
|
} while (Math.abs(bytes) >= thresh && i < units.length - 1);
|
|
172
|
-
|
|
173
157
|
{
|
|
174
158
|
return `${bytes.toFixed(1)} ${units[i]}`;
|
|
175
159
|
}
|
|
@@ -178,24 +162,18 @@ export function checkIsImageFile(fileName) {
|
|
|
178
162
|
fileName = fileName || '';
|
|
179
163
|
return /jpeg|jpg|png|gif|bmp|tiff|tif|ico/gi.test(fileName.substr(fileName.lastIndexOf('.') + 1));
|
|
180
164
|
}
|
|
181
|
-
|
|
182
165
|
function getI18NValue(key, values) {
|
|
183
166
|
if (typeof i18n === 'undefined' || key === '' || typeof key === 'undefined') {
|
|
184
167
|
return key;
|
|
185
168
|
}
|
|
186
|
-
|
|
187
169
|
let i18nStr = i18n[key];
|
|
188
|
-
|
|
189
170
|
if (i18nStr === undefined) {
|
|
190
171
|
return key;
|
|
191
172
|
}
|
|
192
|
-
|
|
193
173
|
i18nStr = replaceI18NValuesWithRegex(i18nStr, values);
|
|
194
174
|
return unescapeUnicode(i18nStr);
|
|
195
175
|
}
|
|
196
|
-
|
|
197
176
|
global.getI18NValue = getI18NValue;
|
|
198
|
-
|
|
199
177
|
function replaceI18NValuesWithRegex(i18nStr, values) {
|
|
200
178
|
if (typeof values !== 'undefined') {
|
|
201
179
|
if (Array.isArray(values)) {
|
|
@@ -206,27 +184,22 @@ function replaceI18NValuesWithRegex(i18nStr, values) {
|
|
|
206
184
|
i18nStr = i18nStr.replace(new RegExp('\\{0\\}', 'g'), values);
|
|
207
185
|
}
|
|
208
186
|
}
|
|
209
|
-
|
|
210
187
|
return i18nStr;
|
|
211
188
|
}
|
|
212
|
-
|
|
213
189
|
function unescapeUnicode(str) {
|
|
214
190
|
return str.replace(/\\u([a-fA-F0-9]{4})/g, (g, m1) => String.fromCharCode(parseInt(m1, 16)));
|
|
215
191
|
}
|
|
216
|
-
|
|
217
192
|
export function getPortalName(portalList, portalId) {
|
|
218
193
|
return portalList && portalList.reduce((res, portal) => {
|
|
219
194
|
if (portal.orgId === portalId) {
|
|
220
195
|
return portal.orgName;
|
|
221
196
|
}
|
|
222
|
-
|
|
223
197
|
return res;
|
|
224
198
|
}, null);
|
|
225
199
|
}
|
|
226
200
|
export function getFullDateString(fullDateObj) {
|
|
227
201
|
let dateStr = '';
|
|
228
202
|
const monthArr = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
|
229
|
-
|
|
230
203
|
if (fullDateObj.toDateString() == new Date().toDateString()) {
|
|
231
204
|
dateStr = format12Hour(fullDateObj);
|
|
232
205
|
} else {
|
|
@@ -236,7 +209,6 @@ export function getFullDateString(fullDateObj) {
|
|
|
236
209
|
const time = format12Hour(fullDateObj);
|
|
237
210
|
dateStr = `${month} ${date} ${year} ${time}`;
|
|
238
211
|
}
|
|
239
|
-
|
|
240
212
|
return dateStr;
|
|
241
213
|
}
|
|
242
214
|
export function format12Hour(date) {
|
|
@@ -245,7 +217,6 @@ export function format12Hour(date) {
|
|
|
245
217
|
const ampm = hours >= 12 ? 'pm' : 'am';
|
|
246
218
|
hours %= 12;
|
|
247
219
|
hours = hours ? hours : 12; // the hour '0' should be '12'
|
|
248
|
-
|
|
249
220
|
minutes = minutes < 10 ? `0${minutes}` : minutes;
|
|
250
221
|
const strTime = `${hours}:${minutes} ${ampm}`;
|
|
251
222
|
return strTime;
|
|
@@ -253,7 +224,6 @@ export function format12Hour(date) {
|
|
|
253
224
|
export function getDateOnly(fullDateObj) {
|
|
254
225
|
let dateStr = '';
|
|
255
226
|
const monthArr = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
|
256
|
-
|
|
257
227
|
if (fullDateObj.toDateString() == new Date().toDateString()) {
|
|
258
228
|
dateStr = 'Today';
|
|
259
229
|
} else {
|
|
@@ -262,7 +232,6 @@ export function getDateOnly(fullDateObj) {
|
|
|
262
232
|
const date = fullDateObj.getDate();
|
|
263
233
|
dateStr = `${month} ${date} ${year}`;
|
|
264
234
|
}
|
|
265
|
-
|
|
266
235
|
return dateStr;
|
|
267
236
|
}
|
|
268
237
|
export function doAfterScrollEnd(element, callback) {
|
|
@@ -276,7 +245,6 @@ export function doAfterScrollEnd(element, callback) {
|
|
|
276
245
|
scrollHeight
|
|
277
246
|
} = element;
|
|
278
247
|
const scrollPercent = scrollTop / (scrollHeight - clientHeight) * 100;
|
|
279
|
-
|
|
280
248
|
if (scrollPercent > 80) {
|
|
281
249
|
callback && callback();
|
|
282
250
|
}
|
|
@@ -293,11 +261,9 @@ export const throttle = function (func, wait) {
|
|
|
293
261
|
for (var _len2 = arguments.length, args = new Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {
|
|
294
262
|
args[_key2 - 2] = arguments[_key2];
|
|
295
263
|
}
|
|
296
|
-
|
|
297
264
|
if (timerId) {
|
|
298
265
|
return;
|
|
299
266
|
}
|
|
300
|
-
|
|
301
267
|
timerId = setTimeout(() => {
|
|
302
268
|
try {
|
|
303
269
|
func(...args);
|
|
@@ -310,7 +276,6 @@ export const scrollTo = function (suggestionContainer, selSuggestion) {
|
|
|
310
276
|
if (!suggestionContainer || !selSuggestion) {
|
|
311
277
|
return;
|
|
312
278
|
}
|
|
313
|
-
|
|
314
279
|
const {
|
|
315
280
|
rectGap
|
|
316
281
|
} = frameRelativeRects(selSuggestion, suggestionContainer) || {};
|
|
@@ -318,11 +283,9 @@ export const scrollTo = function (suggestionContainer, selSuggestion) {
|
|
|
318
283
|
top = 0,
|
|
319
284
|
bottom = 0
|
|
320
285
|
} = rectGap || {};
|
|
321
|
-
|
|
322
286
|
if (top < 0 && bottom < 0) {
|
|
323
287
|
return;
|
|
324
288
|
}
|
|
325
|
-
|
|
326
289
|
const isElementInViewPort = top < 0 || bottom < 0 ? false : true;
|
|
327
290
|
const suggestionContainerScrollTop = suggestionContainer.scrollTop;
|
|
328
291
|
suggestionContainer.scrollTop = !isElementInViewPort ? bottom < 0 ? suggestionContainer.scrollTop + Math.abs(bottom) : top < 0 ? suggestionContainer.scrollTop - Math.abs(top) : suggestionContainerScrollTop : suggestionContainerScrollTop;
|
|
@@ -334,21 +297,17 @@ export function remConvert(val) {
|
|
|
334
297
|
}
|
|
335
298
|
export function isDescendant(parent, child) {
|
|
336
299
|
let node = child.parentNode;
|
|
337
|
-
|
|
338
300
|
while (node !== null) {
|
|
339
301
|
if (node === parent) {
|
|
340
302
|
return true;
|
|
341
303
|
}
|
|
342
|
-
|
|
343
304
|
node = node.parentNode;
|
|
344
305
|
}
|
|
345
|
-
|
|
346
306
|
return false;
|
|
347
307
|
}
|
|
348
308
|
export function getElementSpace(elementRef) {
|
|
349
309
|
let neededSpace = 0,
|
|
350
|
-
|
|
351
|
-
|
|
310
|
+
availableInsideSpace = 0;
|
|
352
311
|
if (elementRef) {
|
|
353
312
|
let getStyle = window.getComputedStyle(elementRef);
|
|
354
313
|
let margin = parseFloat(getStyle.marginLeft) + parseFloat(getStyle.marginRight);
|
|
@@ -357,7 +316,6 @@ export function getElementSpace(elementRef) {
|
|
|
357
316
|
neededSpace = width + margin;
|
|
358
317
|
availableInsideSpace = width - padding;
|
|
359
318
|
}
|
|
360
|
-
|
|
361
319
|
return {
|
|
362
320
|
neededSpace: neededSpace,
|
|
363
321
|
availableInsideSpace: availableInsideSpace
|
|
@@ -366,4 +324,22 @@ export function getElementSpace(elementRef) {
|
|
|
366
324
|
export function getSearchString() {
|
|
367
325
|
let charachers = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
368
326
|
return (charachers || '').toString().toLowerCase(); //.replace(/\s+/g, '');
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
export function findScrollEnd(element) {
|
|
330
|
+
let {
|
|
331
|
+
scrollHeight,
|
|
332
|
+
scrollTop,
|
|
333
|
+
offsetHeight,
|
|
334
|
+
clientHeight
|
|
335
|
+
} = element || {};
|
|
336
|
+
let isElementScrollable = scrollHeight > clientHeight;
|
|
337
|
+
if (isElementScrollable) {
|
|
338
|
+
if (scrollHeight <= Math.ceil(scrollTop + offsetHeight)) {
|
|
339
|
+
return true;
|
|
340
|
+
}
|
|
341
|
+
} else {
|
|
342
|
+
throw 'Is scroll not present in this element';
|
|
343
|
+
}
|
|
344
|
+
return false;
|
|
369
345
|
}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
/** ** Libraries *** */
|
|
2
2
|
import { useContext, useRef } from 'react';
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
|
-
import shallowEqual from './shallowEqual';
|
|
4
|
+
import shallowEqual from './shallowEqual';
|
|
5
|
+
|
|
6
|
+
// Please use this component with children as inline function for force this components rerender when parent rerender regardless of reason
|
|
5
7
|
// Because below componends only rerender when children or calculation are changed, unless no changes will update below
|
|
8
|
+
|
|
6
9
|
// this component logic based on return same children reference to stop rerender.
|
|
7
10
|
// Think before change logic
|
|
8
|
-
// eslint-disable-next-line import/prefer-default-export
|
|
9
11
|
|
|
12
|
+
// eslint-disable-next-line import/prefer-default-export
|
|
10
13
|
export function ContextOptimizer(props) {
|
|
11
14
|
const {
|
|
12
15
|
Context,
|
|
@@ -22,13 +25,11 @@ export function ContextOptimizer(props) {
|
|
|
22
25
|
data: null,
|
|
23
26
|
renderF: null
|
|
24
27
|
});
|
|
25
|
-
|
|
26
28
|
if (!shallowEqual(data, local.data) || local.renderF !== renderF) {
|
|
27
29
|
local.children = renderF(data);
|
|
28
30
|
local.data = data;
|
|
29
31
|
local.renderF = renderF;
|
|
30
32
|
}
|
|
31
|
-
|
|
32
33
|
return local.children;
|
|
33
34
|
}
|
|
34
35
|
ContextOptimizer.propTypes = {
|
|
@@ -6,8 +6,8 @@ describe('debounce specification', () => {
|
|
|
6
6
|
it('should call immediate', () => {
|
|
7
7
|
const mockfn = jest.fn();
|
|
8
8
|
const dMockfn = debounce(mockfn, 1000, true);
|
|
9
|
-
dMockfn();
|
|
10
|
-
|
|
9
|
+
dMockfn();
|
|
10
|
+
//expect(setTimeout).toHaveBeenCalledTimes(1);
|
|
11
11
|
expect(mockfn.mock.calls.length).toBe(1);
|
|
12
12
|
});
|
|
13
13
|
it('should call two times but it invoke multiple times', () => {
|