@gympass/yoga 7.87.1 → 7.88.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/Accordion/web/Accordion.js +300 -150
- package/cjs/Accordion/web/Accordion.test.js +139 -0
- package/cjs/Accordion/web/Content.js +47 -19
- package/cjs/Accordion/web/Small.js +56 -20
- package/cjs/Accordion/web/Summary.js +52 -19
- package/cjs/Accordion/web/index.js +40 -19
- package/cjs/ActionRequirement/native/ActionRequirement.js +85 -1
- package/cjs/ActionRequirement/native/ActionRequirement.test.js +72 -0
- package/cjs/ActionRequirement/native/ActionRequirementStyles.js +106 -1
- package/cjs/ActionRequirement/native/index.js +39 -1
- package/cjs/ActionRequirement/web/ActionRequirement.js +120 -68
- package/cjs/ActionRequirement/web/ActionRequirement.test.js +66 -0
- package/cjs/ActionRequirement/web/ActionRequirementStyles.js +104 -43
- package/cjs/ActionRequirement/web/index.js +38 -15
- package/cjs/AutoComplete/web/AutoComplete.js +350 -213
- package/cjs/AutoComplete/web/AutoComplete.test.js +158 -0
- package/cjs/AutoComplete/web/index.js +34 -10
- package/cjs/Avatar/native/Avatar.js +169 -1
- package/cjs/Avatar/native/Avatar.test.js +62 -0
- package/cjs/Avatar/native/AvatarCircle.js +82 -1
- package/cjs/Avatar/web/Avatar.js +144 -134
- package/cjs/Avatar/web/Avatar.test.js +79 -0
- package/cjs/Avatar/web/AvatarCircle.js +81 -40
- package/cjs/Banner/native/Banner.js +181 -1
- package/cjs/Banner/native/Banner.test.js +136 -0
- package/cjs/Banner/native/index.js +35 -1
- package/cjs/Banner/web/Banner.js +162 -129
- package/cjs/Banner/web/Banner.test.js +136 -0
- package/cjs/Banner/web/index.js +34 -10
- package/cjs/BottomSheet/web/BottomSheet.js +81 -35
- package/cjs/BottomSheet/web/BottomSheet.test.js +70 -0
- package/cjs/BottomSheet/web/Content.js +50 -25
- package/cjs/BottomSheet/web/Footer.js +47 -20
- package/cjs/BottomSheet/web/Header.js +49 -24
- package/cjs/BottomSheet/web/index.js +40 -19
- package/cjs/Box/native/Box.js +37 -1
- package/cjs/Box/native/Box.test.js +44 -0
- package/cjs/Box/native/index.js +35 -1
- package/cjs/Box/web/Box.js +36 -14
- package/cjs/Box/web/Box.test.js +44 -0
- package/cjs/Box/web/index.js +34 -10
- package/cjs/Button/native/Button.js +231 -1
- package/cjs/Button/native/Button.test.js +365 -0
- package/cjs/Button/native/Icon.js +184 -1
- package/cjs/Button/native/Link.js +92 -1
- package/cjs/Button/native/Text.js +158 -1
- package/cjs/Button/native/withTouchable.js +117 -1
- package/cjs/Button/web/Button.js +140 -88
- package/cjs/Button/web/Button.test.js +971 -0
- package/cjs/Button/web/Icon.js +138 -72
- package/cjs/Button/web/Link.js +134 -48
- package/cjs/Button/web/Outline.js +134 -21
- package/cjs/Button/web/StyledButton.js +151 -22
- package/cjs/Button/web/Text.js +149 -46
- package/cjs/Card/native/Card/Actions.js +41 -1
- package/cjs/Card/native/Card/Card.js +209 -1
- package/cjs/Card/native/Card/Card.test.js +43 -0
- package/cjs/Card/native/Card/Content.js +37 -1
- package/cjs/Card/native/Card/Header.js +37 -1
- package/cjs/Card/native/Card/index.js +41 -1
- package/cjs/Card/native/EventCard/EventCard.js +240 -1
- package/cjs/Card/native/EventCard/EventCard.test.js +94 -0
- package/cjs/Card/native/EventCard/index.js +35 -1
- package/cjs/Card/native/GymCard/CheckIn/Avatar.js +82 -1
- package/cjs/Card/native/GymCard/CheckIn/CheckIn.js +141 -1
- package/cjs/Card/native/GymCard/CheckIn/CheckIn.test.js +69 -0
- package/cjs/Card/native/GymCard/CheckIn/Content.js +51 -1
- package/cjs/Card/native/GymCard/CheckIn/Header.js +54 -1
- package/cjs/Card/native/GymCard/CheckIn/index.js +35 -1
- package/cjs/Card/native/GymCard/index.js +38 -1
- package/cjs/Card/native/PlanCard/Actions.js +63 -1
- package/cjs/Card/native/PlanCard/Content.js +162 -1
- package/cjs/Card/native/PlanCard/List.js +146 -1
- package/cjs/Card/native/PlanCard/PlanCard.js +146 -1
- package/cjs/Card/native/PlanCard/PlanCard.test.js +123 -0
- package/cjs/Card/native/PlanCard/Subtitle.js +55 -1
- package/cjs/Card/native/PlanCard/Tag.js +90 -1
- package/cjs/Card/native/PlanCard/index.js +48 -1
- package/cjs/Card/native/index.js +47 -1
- package/cjs/Card/web/Card/Actions.js +39 -23
- package/cjs/Card/web/Card/Card.js +149 -63
- package/cjs/Card/web/Card/Card.test.js +42 -0
- package/cjs/Card/web/Card/Content.js +36 -12
- package/cjs/Card/web/Card/Header.js +37 -20
- package/cjs/Card/web/Card/index.js +40 -19
- package/cjs/Card/web/EventCard/EventCard.js +205 -85
- package/cjs/Card/web/EventCard/EventCard.test.js +48 -0
- package/cjs/Card/web/EventCard/index.js +34 -10
- package/cjs/Card/web/PlanCard/Actions.js +60 -32
- package/cjs/Card/web/PlanCard/Content.js +177 -99
- package/cjs/Card/web/PlanCard/List.js +175 -91
- package/cjs/Card/web/PlanCard/List.test.js +62 -0
- package/cjs/Card/web/PlanCard/PlanCard.js +204 -89
- package/cjs/Card/web/PlanCard/PlanCard.test.js +177 -0
- package/cjs/Card/web/PlanCard/Subtitle.js +53 -28
- package/cjs/Card/web/PlanCard/Tag.js +50 -30
- package/cjs/Card/web/PlanCard/index.js +47 -28
- package/cjs/Card/web/index.js +43 -16
- package/cjs/Checkbox/native/Checkbox.js +304 -1
- package/cjs/Checkbox/native/Checkbox.test.js +129 -0
- package/cjs/Checkbox/native/Switch.js +196 -1
- package/cjs/Checkbox/native/Switch.test.js +73 -0
- package/cjs/Checkbox/native/index.js +41 -1
- package/cjs/Checkbox/web/Checkbox.js +339 -175
- package/cjs/Checkbox/web/Checkbox.test.js +160 -0
- package/cjs/Checkbox/web/Switch.js +190 -76
- package/cjs/Checkbox/web/Switch.test.js +66 -0
- package/cjs/Checkbox/web/index.js +40 -12
- package/cjs/Chips/native/Chips.js +210 -1
- package/cjs/Chips/native/Chips.test.js +131 -0
- package/cjs/Chips/native/Counter.js +66 -1
- package/cjs/Chips/native/index.js +35 -1
- package/cjs/Chips/web/Chips.js +238 -116
- package/cjs/Chips/web/Chips.test.js +125 -0
- package/cjs/Chips/web/Counter.js +57 -24
- package/cjs/Chips/web/index.js +34 -10
- package/cjs/Datepicker/web/Calendar.js +320 -289
- package/cjs/Datepicker/web/Datepicker.js +349 -251
- package/cjs/Datepicker/web/Datepicker.test.js +246 -0
- package/cjs/Datepicker/web/index.js +34 -10
- package/cjs/Dialog/web/Content.js +56 -20
- package/cjs/Dialog/web/Dialog.js +171 -108
- package/cjs/Dialog/web/Dialog.test.js +92 -0
- package/cjs/Dialog/web/Footer.js +51 -23
- package/cjs/Dialog/web/Header.js +56 -20
- package/cjs/Dialog/web/index.js +40 -19
- package/cjs/Divider/native/Divider.js +63 -1
- package/cjs/Divider/native/Divider.test.js +67 -0
- package/cjs/Divider/native/index.js +35 -1
- package/cjs/Divider/web/Divider.js +84 -51
- package/cjs/Divider/web/Divider.test.js +49 -0
- package/cjs/Divider/web/index.js +34 -10
- package/cjs/Drawer/web/Content.js +43 -18
- package/cjs/Drawer/web/Drawer.js +83 -34
- package/cjs/Drawer/web/Drawer.test.js +56 -0
- package/cjs/Drawer/web/Footer.js +52 -21
- package/cjs/Drawer/web/Header.js +51 -22
- package/cjs/Drawer/web/index.js +40 -19
- package/cjs/Dropdown/native/Backdrop.js +180 -1
- package/cjs/Dropdown/native/Backdrop.test.js +45 -0
- package/cjs/Dropdown/native/Dropdown.js +240 -1
- package/cjs/Dropdown/native/Dropdown.test.js +97 -0
- package/cjs/Dropdown/native/Options.android.js +111 -1
- package/cjs/Dropdown/native/Options.ios.js +125 -1
- package/cjs/Dropdown/native/index.js +35 -1
- package/cjs/Dropdown/web/Dropdown.js +395 -208
- package/cjs/Dropdown/web/Dropdown.test.js +114 -0
- package/cjs/Dropdown/web/index.js +34 -10
- package/cjs/Feedback/web/Feedback.js +130 -85
- package/cjs/Feedback/web/Feedback.test.js +96 -0
- package/cjs/Feedback/web/StyledFeedback.js +125 -52
- package/cjs/Feedback/web/index.js +38 -15
- package/cjs/Grid/web/Col.js +93 -80
- package/cjs/Grid/web/Col.test.js +62 -0
- package/cjs/Grid/web/Container.js +92 -40
- package/cjs/Grid/web/Container.test.js +38 -0
- package/cjs/Grid/web/Hide.js +73 -66
- package/cjs/Grid/web/Hide.test.js +44 -0
- package/cjs/Grid/web/Row.js +63 -25
- package/cjs/Grid/web/Row.test.js +38 -0
- package/cjs/Grid/web/index.js +46 -20
- package/cjs/Header/web/GympassLogo.js +97 -41
- package/cjs/Header/web/Header.js +106 -64
- package/cjs/Header/web/Header.test.js +61 -0
- package/cjs/Header/web/Logo.js +38 -19
- package/cjs/Header/web/index.js +34 -10
- package/cjs/Heading/web/BackButton.js +86 -44
- package/cjs/Heading/web/Heading.js +96 -64
- package/cjs/Heading/web/Heading.test.js +76 -0
- package/cjs/Heading/web/RightButton.js +88 -48
- package/cjs/Heading/web/StyledHeading.js +75 -26
- package/cjs/Heading/web/Title.js +72 -36
- package/cjs/Heading/web/index.js +40 -19
- package/cjs/Icon/native/Icon.test.js +90 -0
- package/cjs/Icon/native/index.js +35 -1
- package/cjs/Icon/web/Icon.test.js +90 -0
- package/cjs/Icon/web/index.js +34 -10
- package/cjs/Input/native/Email.js +65 -1
- package/cjs/Input/native/Email.test.js +37 -0
- package/cjs/Input/native/Helper.js +117 -1
- package/cjs/Input/native/Input.js +385 -1
- package/cjs/Input/native/Input.test.js +155 -0
- package/cjs/Input/native/Number.js +57 -1
- package/cjs/Input/native/Number.test.js +37 -0
- package/cjs/Input/native/Password.js +194 -1
- package/cjs/Input/native/Password.test.js +132 -0
- package/cjs/Input/native/Tel.js +64 -1
- package/cjs/Input/native/Tel.test.js +37 -0
- package/cjs/Input/native/index.js +50 -1
- package/cjs/Input/web/Email.js +55 -21
- package/cjs/Input/web/Email.test.js +37 -0
- package/cjs/Input/web/Field.js +142 -29
- package/cjs/Input/web/Fieldset.js +69 -18
- package/cjs/Input/web/Helper.js +121 -70
- package/cjs/Input/web/Input.js +310 -215
- package/cjs/Input/web/Input.test.js +152 -0
- package/cjs/Input/web/Label.js +60 -21
- package/cjs/Input/web/Legend.js +102 -40
- package/cjs/Input/web/Number.js +55 -21
- package/cjs/Input/web/Number.test.js +37 -0
- package/cjs/Input/web/Password.js +162 -96
- package/cjs/Input/web/Password.test.js +107 -0
- package/cjs/Input/web/Phone.js +171 -121
- package/cjs/Input/web/Phone.style.js +320 -26
- package/cjs/Input/web/Phone.test.js +112 -0
- package/cjs/Input/web/Tel.js +53 -21
- package/cjs/Input/web/Tel.test.js +37 -0
- package/cjs/Input/web/data-images.js +43 -9
- package/cjs/Input/web/index.js +52 -28
- package/cjs/List/native/List.js +71 -1
- package/cjs/List/native/List.test.js +111 -0
- package/cjs/List/native/ListItem.js +137 -1
- package/cjs/List/native/index.js +41 -1
- package/cjs/List/web/LinkItem.js +86 -25
- package/cjs/List/web/List.js +94 -44
- package/cjs/List/web/List.test.js +87 -0
- package/cjs/List/web/ListItem.js +81 -27
- package/cjs/List/web/index.js +43 -16
- package/cjs/Menu/web/Menu.js +44 -42
- package/cjs/Menu/web/Menu.test.js +147 -0
- package/cjs/Menu/web/MenuAction.js +39 -22
- package/cjs/Menu/web/MenuItem.js +179 -86
- package/cjs/Menu/web/MenuList.js +89 -67
- package/cjs/Popover/web/Popover.js +165 -110
- package/cjs/Popover/web/Popover.test.js +63 -0
- package/cjs/Popover/web/index.js +34 -10
- package/cjs/Popover/web/styles.js +141 -72
- package/cjs/Progress/native/Progress.js +219 -1
- package/cjs/Progress/native/Progress.test.js +157 -0
- package/cjs/Progress/native/index.js +35 -1
- package/cjs/Progress/web/Progress.js +211 -88
- package/cjs/Progress/web/Progress.test.js +157 -0
- package/cjs/Progress/web/index.js +34 -10
- package/cjs/RadioGroup/native/Button/RadioButton.js +141 -1
- package/cjs/RadioGroup/native/Button/RadioButton.test.js +93 -0
- package/cjs/RadioGroup/native/Radio/Radio.js +199 -1
- package/cjs/RadioGroup/native/Radio/Radio.test.js +97 -0
- package/cjs/RadioGroup/native/RadioGroup.js +135 -1
- package/cjs/RadioGroup/native/RadioGroup.test.js +79 -0
- package/cjs/RadioGroup/native/index.js +44 -1
- package/cjs/RadioGroup/web/Button/RadioButton.js +175 -78
- package/cjs/RadioGroup/web/Button/RadioButton.test.js +110 -0
- package/cjs/RadioGroup/web/Radio/Radio.js +238 -83
- package/cjs/RadioGroup/web/Radio/Radio.test.js +96 -0
- package/cjs/RadioGroup/web/RadioGroup.js +116 -62
- package/cjs/RadioGroup/web/RadioGroup.test.js +105 -0
- package/cjs/RadioGroup/web/index.js +43 -16
- package/cjs/Rating/native/Rating.js +225 -1
- package/cjs/Rating/native/Rating.test.js +112 -0
- package/cjs/Rating/native/index.js +35 -1
- package/cjs/Rating/web/Rating.js +216 -162
- package/cjs/Rating/web/Rating.test.js +169 -0
- package/cjs/Rating/web/index.js +34 -10
- package/cjs/Result/native/Attendances.js +84 -1
- package/cjs/Result/native/Details.js +149 -1
- package/cjs/Result/native/Rate.js +69 -1
- package/cjs/Result/native/Result.js +128 -1
- package/cjs/Result/native/Result.test.js +151 -0
- package/cjs/Result/native/ResultButton.js +50 -1
- package/cjs/Result/native/Tags.js +93 -1
- package/cjs/Result/native/TinyTextIcon.js +57 -1
- package/cjs/Result/native/index.js +35 -1
- package/cjs/Skeleton/native/Skeleton.js +170 -1
- package/cjs/Skeleton/native/Skeleton.test.js +63 -0
- package/cjs/Skeleton/native/index.js +35 -1
- package/cjs/Skeleton/web/Skeleton.js +126 -57
- package/cjs/Skeleton/web/Skeleton.test.js +63 -0
- package/cjs/Skeleton/web/index.js +34 -10
- package/cjs/Slider/native/Label.js +68 -1
- package/cjs/Slider/native/Marker.js +114 -1
- package/cjs/Slider/native/Slider.js +197 -1
- package/cjs/Slider/native/Slider.test.js +128 -0
- package/cjs/Slider/native/Step.js +57 -1
- package/cjs/Slider/native/Tooltip.js +205 -1
- package/cjs/Slider/web/Marker.js +109 -67
- package/cjs/Slider/web/Slider.js +209 -155
- package/cjs/Slider/web/Slider.test.js +100 -0
- package/cjs/Slider/web/Tooltip.js +196 -76
- package/cjs/Snackbar/native/Snackbar.js +268 -1
- package/cjs/Snackbar/native/Snackbar.test.js +129 -0
- package/cjs/Snackbar/native/SnackbarAnimationWrapper.js +138 -1
- package/cjs/Snackbar/native/index.js +35 -1
- package/cjs/Snackbar/web/Snackbar.js +233 -141
- package/cjs/Snackbar/web/Snackbar.test.js +149 -0
- package/cjs/Snackbar/web/index.js +34 -10
- package/cjs/Spinner/web/Spinner.js +121 -59
- package/cjs/Spinner/web/Spinner.test.js +35 -0
- package/cjs/Spinner/web/index.js +34 -10
- package/cjs/Stepper/native/Dots.js +105 -1
- package/cjs/Stepper/native/Line.js +98 -1
- package/cjs/Stepper/native/Step.js +61 -1
- package/cjs/Stepper/native/Stepper.js +125 -1
- package/cjs/Stepper/native/Stepper.test.js +87 -0
- package/cjs/Stepper/native/index.js +41 -1
- package/cjs/Stepper/web/Dots.js +121 -62
- package/cjs/Stepper/web/Line.js +59 -23
- package/cjs/Stepper/web/Step.js +56 -25
- package/cjs/Stepper/web/Stepper.js +117 -66
- package/cjs/Stepper/web/Stepper.test.js +86 -0
- package/cjs/Stepper/web/index.js +40 -12
- package/cjs/Tag/native/Informative.js +155 -1
- package/cjs/Tag/native/Tag.js +154 -1
- package/cjs/Tag/native/Tag.test.js +97 -0
- package/cjs/Tag/native/index.js +35 -1
- package/cjs/Tag/web/Informative.js +135 -82
- package/cjs/Tag/web/Tag.js +111 -48
- package/cjs/Tag/web/Tag.test.js +104 -0
- package/cjs/Tag/web/index.js +34 -10
- package/cjs/Text/native/Text.js +169 -1
- package/cjs/Text/native/Text.test.js +173 -0
- package/cjs/Text/native/index.js +56 -1
- package/cjs/Text/web/Text.js +163 -93
- package/cjs/Text/web/Text.test.js +174 -0
- package/cjs/Text/web/index.js +55 -20
- package/cjs/TextArea/native/TextArea.js +92 -1
- package/cjs/TextArea/native/TextArea.test.js +35 -0
- package/cjs/TextArea/native/index.js +35 -1
- package/cjs/TextArea/web/TextArea.js +195 -140
- package/cjs/TextArea/web/TextArea.test.js +35 -0
- package/cjs/TextArea/web/index.js +34 -10
- package/esm/Accordion/web/Accordion.js +268 -125
- package/esm/Accordion/web/Accordion.test.js +90 -96
- package/esm/Accordion/web/Content.js +19 -11
- package/esm/Accordion/web/Small.js +27 -10
- package/esm/Accordion/web/Summary.js +25 -11
- package/esm/Accordion/web/index.js +8 -5
- package/esm/ActionRequirement/web/ActionRequirement.js +90 -44
- package/esm/ActionRequirement/web/ActionRequirement.test.js +37 -30
- package/esm/ActionRequirement/web/ActionRequirementStyles.js +70 -26
- package/esm/ActionRequirement/web/index.js +10 -3
- package/esm/AutoComplete/web/AutoComplete.js +315 -185
- package/esm/AutoComplete/web/AutoComplete.test.js +114 -131
- package/esm/AutoComplete/web/index.js +5 -2
- package/esm/Avatar/web/Avatar.js +107 -107
- package/esm/Avatar/web/Avatar.test.js +42 -49
- package/esm/Avatar/web/AvatarCircle.js +52 -24
- package/esm/Banner/web/Banner.js +135 -99
- package/esm/Banner/web/Banner.test.js +98 -94
- package/esm/Banner/web/index.js +5 -2
- package/esm/BottomSheet/web/BottomSheet.js +54 -22
- package/esm/BottomSheet/web/BottomSheet.test.js +39 -40
- package/esm/BottomSheet/web/Content.js +22 -17
- package/esm/BottomSheet/web/Footer.js +19 -12
- package/esm/BottomSheet/web/Header.js +21 -16
- package/esm/BottomSheet/web/index.js +8 -5
- package/esm/Box/web/Box.js +7 -4
- package/esm/Box/web/Box.test.js +19 -14
- package/esm/Box/web/index.js +5 -2
- package/esm/Button/web/Button.js +103 -61
- package/esm/Button/web/Button.test.js +826 -1253
- package/esm/Button/web/Icon.js +103 -45
- package/esm/Button/web/Link.js +112 -37
- package/esm/Button/web/Outline.js +113 -19
- package/esm/Button/web/StyledButton.js +130 -20
- package/esm/Button/web/Text.js +128 -36
- package/esm/Card/web/Card/Actions.js +9 -12
- package/esm/Card/web/Card/Card.js +115 -42
- package/esm/Card/web/Card/Card.test.js +16 -11
- package/esm/Card/web/Card/Content.js +7 -4
- package/esm/Card/web/Card/Header.js +8 -11
- package/esm/Card/web/Card/index.js +8 -5
- package/esm/Card/web/EventCard/EventCard.js +169 -53
- package/esm/Card/web/EventCard/EventCard.test.js +20 -22
- package/esm/Card/web/EventCard/index.js +5 -2
- package/esm/Card/web/PlanCard/Actions.js +25 -20
- package/esm/Card/web/PlanCard/Content.js +138 -66
- package/esm/Card/web/PlanCard/List.js +135 -59
- package/esm/Card/web/PlanCard/List.test.js +33 -24
- package/esm/Card/web/PlanCard/PlanCard.js +166 -62
- package/esm/Card/web/PlanCard/PlanCard.test.js +134 -139
- package/esm/Card/web/PlanCard/Subtitle.js +23 -13
- package/esm/Card/web/PlanCard/Tag.js +21 -16
- package/esm/Card/web/PlanCard/index.js +10 -7
- package/esm/Card/web/index.js +8 -4
- package/esm/Checkbox/web/Checkbox.js +305 -144
- package/esm/Checkbox/web/Checkbox.test.js +100 -122
- package/esm/Checkbox/web/Switch.js +160 -56
- package/esm/Checkbox/web/Switch.test.js +31 -44
- package/esm/Checkbox/web/index.js +6 -3
- package/esm/Chips/web/Chips.js +198 -80
- package/esm/Chips/web/Chips.test.js +77 -103
- package/esm/Chips/web/Counter.js +27 -12
- package/esm/Chips/web/index.js +5 -2
- package/esm/Datepicker/web/Calendar.js +281 -259
- package/esm/Datepicker/web/Datepicker.js +304 -212
- package/esm/Datepicker/web/Datepicker.test.js +174 -198
- package/esm/Datepicker/web/index.js +5 -2
- package/esm/Dialog/web/Content.js +28 -11
- package/esm/Dialog/web/Dialog.js +133 -79
- package/esm/Dialog/web/Dialog.test.js +56 -59
- package/esm/Dialog/web/Footer.js +24 -15
- package/esm/Dialog/web/Header.js +28 -11
- package/esm/Dialog/web/index.js +8 -5
- package/esm/Divider/web/Divider.js +56 -32
- package/esm/Divider/web/Divider.test.js +22 -25
- package/esm/Divider/web/index.js +5 -2
- package/esm/Drawer/web/Content.js +14 -9
- package/esm/Drawer/web/Drawer.js +55 -20
- package/esm/Drawer/web/Drawer.test.js +27 -27
- package/esm/Drawer/web/Footer.js +25 -13
- package/esm/Drawer/web/Header.js +24 -14
- package/esm/Drawer/web/index.js +8 -5
- package/esm/Dropdown/web/Dropdown.js +371 -176
- package/esm/Dropdown/web/Dropdown.test.js +74 -74
- package/esm/Dropdown/web/index.js +5 -2
- package/esm/Feedback/web/Feedback.js +102 -62
- package/esm/Feedback/web/Feedback.test.js +61 -82
- package/esm/Feedback/web/StyledFeedback.js +90 -32
- package/esm/Feedback/web/index.js +6 -3
- package/esm/Grid/web/Col.js +57 -61
- package/esm/Grid/web/Col.test.js +28 -37
- package/esm/Grid/web/Container.js +64 -26
- package/esm/Grid/web/Container.test.js +12 -11
- package/esm/Grid/web/Hide.js +37 -46
- package/esm/Grid/web/Hide.test.js +16 -26
- package/esm/Grid/web/Row.js +35 -14
- package/esm/Grid/web/Row.test.js +12 -11
- package/esm/Grid/web/index.js +10 -5
- package/esm/Header/web/GympassLogo.js +67 -33
- package/esm/Header/web/Header.js +76 -44
- package/esm/Header/web/Header.test.js +32 -32
- package/esm/Header/web/Logo.js +9 -10
- package/esm/Header/web/index.js +5 -2
- package/esm/Heading/web/BackButton.js +59 -32
- package/esm/Heading/web/Heading.js +68 -46
- package/esm/Heading/web/Heading.test.js +43 -48
- package/esm/Heading/web/RightButton.js +59 -31
- package/esm/Heading/web/StyledHeading.js +44 -15
- package/esm/Heading/web/Title.js +44 -25
- package/esm/Heading/web/index.js +8 -5
- package/esm/Icon/web/Icon.test.js +60 -51
- package/esm/Icon/web/index.js +5 -2
- package/esm/Input/web/Email.js +28 -11
- package/esm/Input/web/Email.test.js +11 -10
- package/esm/Input/web/Field.js +122 -26
- package/esm/Input/web/Fieldset.js +47 -16
- package/esm/Input/web/Helper.js +84 -51
- package/esm/Input/web/Input.js +273 -171
- package/esm/Input/web/Input.test.js +94 -138
- package/esm/Input/web/Label.js +35 -14
- package/esm/Input/web/Legend.js +75 -27
- package/esm/Input/web/Number.js +28 -11
- package/esm/Input/web/Number.test.js +11 -10
- package/esm/Input/web/Password.js +130 -73
- package/esm/Input/web/Password.test.js +68 -74
- package/esm/Input/web/Phone.js +133 -91
- package/esm/Input/web/Phone.style.js +294 -21
- package/esm/Input/web/Phone.test.js +95 -92
- package/esm/Input/web/Tel.js +27 -12
- package/esm/Input/web/Tel.test.js +11 -10
- package/esm/Input/web/data-images.js +18 -3
- package/esm/Input/web/index.js +14 -7
- package/esm/List/web/LinkItem.js +59 -16
- package/esm/List/web/List.js +65 -30
- package/esm/List/web/List.test.js +48 -46
- package/esm/List/web/ListItem.js +55 -19
- package/esm/List/web/index.js +8 -4
- package/esm/Menu/web/Menu.js +13 -31
- package/esm/Menu/web/Menu.test.js +112 -97
- package/esm/Menu/web/MenuAction.js +10 -13
- package/esm/Menu/web/MenuItem.js +139 -54
- package/esm/Menu/web/MenuList.js +57 -48
- package/esm/Popover/web/Popover.js +130 -87
- package/esm/Popover/web/Popover.test.js +34 -33
- package/esm/Popover/web/index.js +5 -2
- package/esm/Popover/web/styles.js +108 -57
- package/esm/Progress/web/Progress.js +187 -68
- package/esm/Progress/web/Progress.test.js +116 -204
- package/esm/Progress/web/index.js +5 -2
- package/esm/RadioGroup/web/Button/RadioButton.js +139 -50
- package/esm/RadioGroup/web/Button/RadioButton.test.js +64 -98
- package/esm/RadioGroup/web/Radio/Radio.js +209 -60
- package/esm/RadioGroup/web/Radio/Radio.test.js +54 -89
- package/esm/RadioGroup/web/RadioGroup.js +83 -45
- package/esm/RadioGroup/web/RadioGroup.test.js +65 -66
- package/esm/RadioGroup/web/index.js +8 -4
- package/esm/Rating/web/Rating.js +178 -135
- package/esm/Rating/web/Rating.test.js +115 -151
- package/esm/Rating/web/index.js +5 -2
- package/esm/Skeleton/web/Skeleton.js +97 -40
- package/esm/Skeleton/web/Skeleton.test.js +32 -69
- package/esm/Skeleton/web/index.js +5 -2
- package/esm/Slider/web/Marker.js +80 -52
- package/esm/Slider/web/Slider.js +180 -134
- package/esm/Slider/web/Slider.test.js +59 -68
- package/esm/Slider/web/Tooltip.js +161 -53
- package/esm/Snackbar/web/Snackbar.js +198 -106
- package/esm/Snackbar/web/Snackbar.test.js +127 -110
- package/esm/Snackbar/web/index.js +5 -2
- package/esm/Spinner/web/Spinner.js +91 -39
- package/esm/Spinner/web/Spinner.test.js +10 -12
- package/esm/Spinner/web/index.js +5 -2
- package/esm/Stepper/web/Dots.js +89 -40
- package/esm/Stepper/web/Line.js +30 -11
- package/esm/Stepper/web/Step.js +28 -14
- package/esm/Stepper/web/Stepper.js +86 -42
- package/esm/Stepper/web/Stepper.test.js +54 -73
- package/esm/Stepper/web/index.js +6 -3
- package/esm/Tag/web/Informative.js +101 -56
- package/esm/Tag/web/Tag.js +83 -35
- package/esm/Tag/web/Tag.test.js +63 -88
- package/esm/Tag/web/index.js +5 -2
- package/esm/Text/web/Text.js +114 -64
- package/esm/Text/web/Text.test.js +148 -160
- package/esm/Text/web/index.js +34 -2
- package/esm/TextArea/web/TextArea.js +157 -108
- package/esm/TextArea/web/TextArea.test.js +10 -9
- package/esm/TextArea/web/index.js +5 -2
- package/package.json +3 -3
- package/typings/index.d.ts +434 -0
- package/cjs/Accordion/Accordion.theme.js +0 -35
- package/cjs/Accordion/index.js +0 -11
- package/cjs/ActionRequirement/ActionRequirement.theme.js +0 -11
- package/cjs/ActionRequirement/index.js +0 -11
- package/cjs/ActionRequirement/index.native.js +0 -1
- package/cjs/AutoComplete/AutoComplete.theme.js +0 -41
- package/cjs/AutoComplete/index.js +0 -11
- package/cjs/Avatar/Avatar.theme.js +0 -11
- package/cjs/Avatar/index.js +0 -14
- package/cjs/Avatar/index.native.js +0 -1
- package/cjs/Banner/Banner.theme.js +0 -18
- package/cjs/Banner/index.js +0 -11
- package/cjs/Banner/index.native.js +0 -1
- package/cjs/BottomSheet/BottomSheet.theme.js +0 -32
- package/cjs/BottomSheet/index.js +0 -11
- package/cjs/Box/index.js +0 -11
- package/cjs/Box/index.native.js +0 -1
- package/cjs/Button/Button.theme.js +0 -143
- package/cjs/Button/index.js +0 -23
- package/cjs/Button/index.native.js +0 -1
- package/cjs/Card/Card.native.theme.js +0 -53
- package/cjs/Card/Card.theme.js +0 -162
- package/cjs/Card/Card.web.theme.js +0 -49
- package/cjs/Card/index.js +0 -9
- package/cjs/Card/index.native.js +0 -1
- package/cjs/Checkbox/CheckIcon.js +0 -7
- package/cjs/Checkbox/Checkbox.theme.js +0 -59
- package/cjs/Checkbox/CheckboxSwitch.theme.js +0 -76
- package/cjs/Checkbox/index.js +0 -10
- package/cjs/Checkbox/index.native.js +0 -1
- package/cjs/Chips/index.js +0 -11
- package/cjs/Chips/index.native.js +0 -1
- package/cjs/Datepicker/Datepicker.theme.js +0 -18
- package/cjs/Datepicker/index.js +0 -11
- package/cjs/Dialog/Dialog.theme.js +0 -31
- package/cjs/Dialog/index.js +0 -11
- package/cjs/Divider/Divider.theme.js +0 -11
- package/cjs/Divider/index.js +0 -11
- package/cjs/Divider/index.native.js +0 -1
- package/cjs/Drawer/Drawer.theme.js +0 -22
- package/cjs/Drawer/index.js +0 -11
- package/cjs/Dropdown/Dropdown.theme.js +0 -191
- package/cjs/Dropdown/index.js +0 -11
- package/cjs/Dropdown/index.native.js +0 -1
- package/cjs/Feedback/Feedback.theme.js +0 -15
- package/cjs/Feedback/index.js +0 -11
- package/cjs/Grid/Grid.theme.js +0 -29
- package/cjs/Grid/index.js +0 -10
- package/cjs/Header/Header.theme.js +0 -21
- package/cjs/Header/index.js +0 -11
- package/cjs/Heading/Heading.theme.js +0 -26
- package/cjs/Heading/index.js +0 -11
- package/cjs/Icon/Icon.js +0 -148
- package/cjs/Icon/Icon.theme.js +0 -11
- package/cjs/Icon/index.js +0 -11
- package/cjs/Icon/index.native.js +0 -1
- package/cjs/Input/Input.theme.js +0 -71
- package/cjs/Input/index.js +0 -14
- package/cjs/Input/index.native.js +0 -1
- package/cjs/List/List.theme.js +0 -38
- package/cjs/List/index.js +0 -11
- package/cjs/List/index.native.js +0 -1
- package/cjs/Menu/Menu.theme.js +0 -53
- package/cjs/Menu/index.js +0 -20
- package/cjs/Popover/Popover.theme.js +0 -11
- package/cjs/Popover/index.js +0 -11
- package/cjs/Progress/Progress.theme.js +0 -28
- package/cjs/Progress/index.js +0 -11
- package/cjs/Progress/index.native.js +0 -1
- package/cjs/RadioGroup/RadioGroup.theme.js +0 -61
- package/cjs/RadioGroup/RadioGroupContext.js +0 -10
- package/cjs/RadioGroup/index.js +0 -11
- package/cjs/RadioGroup/index.native.js +0 -1
- package/cjs/Rating/Rating.theme.js +0 -19
- package/cjs/Rating/index.js +0 -11
- package/cjs/Rating/index.native.js +0 -1
- package/cjs/Result/Result.theme.js +0 -11
- package/cjs/Result/index.native.js +0 -1
- package/cjs/Skeleton/Skeleton.theme.js +0 -30
- package/cjs/Skeleton/index.js +0 -11
- package/cjs/Skeleton/index.native.js +0 -1
- package/cjs/Slider/Slider.theme.js +0 -80
- package/cjs/Slider/index.js +0 -11
- package/cjs/Slider/index.native.js +0 -1
- package/cjs/Snackbar/Snackbar.theme.js +0 -72
- package/cjs/Snackbar/index.js +0 -11
- package/cjs/Snackbar/index.native.js +0 -1
- package/cjs/Spinner/Spinner.theme.js +0 -11
- package/cjs/Spinner/index.js +0 -11
- package/cjs/Stepper/Stepper.theme.js +0 -47
- package/cjs/Stepper/activeDot.js +0 -11
- package/cjs/Stepper/index.js +0 -10
- package/cjs/Stepper/index.native.js +0 -1
- package/cjs/Tag/Tag.theme.js +0 -49
- package/cjs/Tag/index.js +0 -14
- package/cjs/Tag/index.native.js +0 -1
- package/cjs/Text/Text.theme.js +0 -82
- package/cjs/Text/index.js +0 -23
- package/cjs/Text/index.native.js +0 -1
- package/cjs/Text/sharedTextStyle.js +0 -42
- package/cjs/Text/textStyle.android.js +0 -30
- package/cjs/Text/textStyle.ios.js +0 -23
- package/cjs/Text/textStyle.web.js +0 -26
- package/cjs/TextArea/TextArea.theme.js +0 -12
- package/cjs/TextArea/index.js +0 -11
- package/cjs/TextArea/index.native.js +0 -1
- package/cjs/Theme/Provider/Provider.js +0 -95
- package/cjs/Theme/Provider/index.js +0 -8
- package/cjs/Theme/Provider/index.native.js +0 -1
- package/cjs/Theme/Provider/native/index.js +0 -1
- package/cjs/Theme/Provider/web/FontLoader.js +0 -31
- package/cjs/Theme/Provider/web/GlobalStyle.js +0 -17
- package/cjs/Theme/Provider/web/ThemeProvider.js +0 -32
- package/cjs/Theme/Provider/web/expectCssMatches.js +0 -26
- package/cjs/Theme/Provider/web/index.js +0 -13
- package/cjs/Theme/helpers/themeGenerator/index.js +0 -11
- package/cjs/Theme/helpers/themeGenerator/themeGenerator.js +0 -25
- package/cjs/Theme/helpers/themeGenerator/themeGenerator.test.js +0 -34
- package/cjs/Theme/helpers/themeReader/base.test.js +0 -82
- package/cjs/Theme/helpers/themeReader/index.js +0 -45
- package/cjs/Theme/index.js +0 -22
- package/cjs/Theme/index.native.js +0 -1
- package/cjs/Theme/theme/index.js +0 -11
- package/cjs/Theme/theme/theme.js +0 -210
- package/cjs/hooks/index.js +0 -27
- package/cjs/hooks/useCombinedRefs.js +0 -32
- package/cjs/hooks/useKeyPress.js +0 -40
- package/cjs/hooks/usePortal.js +0 -61
- package/cjs/index.js +0 -166
- package/cjs/index.native.js +0 -1
- package/cjs/shared/HiddenInput.js +0 -17
- package/cjs/shared/index.js +0 -17
- package/cjs/shared/index.native.js +0 -1
- package/cjs/shared/propTypes/charLength.js +0 -25
- package/cjs/shared/propTypes/deprecated.js +0 -23
- package/cjs/shared/propTypes/index.js +0 -25
- package/cjs/shared/propTypes/limitChildren.js +0 -23
- package/cjs/shared/propTypes/max.js +0 -28
- package/cjs/shared/propTypes/typeof.js +0 -27
- package/esm/Accordion/Accordion.theme.js +0 -29
- package/esm/Accordion/index.js +0 -2
- package/esm/ActionRequirement/ActionRequirement.theme.js +0 -5
- package/esm/ActionRequirement/index.js +0 -2
- package/esm/ActionRequirement/index.native.js +0 -2
- package/esm/ActionRequirement/native/ActionRequirement.js +0 -48
- package/esm/ActionRequirement/native/ActionRequirement.test.js +0 -45
- package/esm/ActionRequirement/native/ActionRequirementStyles.js +0 -25
- package/esm/ActionRequirement/native/index.js +0 -6
- package/esm/AutoComplete/AutoComplete.theme.js +0 -33
- package/esm/AutoComplete/index.js +0 -2
- package/esm/Avatar/Avatar.theme.js +0 -5
- package/esm/Avatar/index.js +0 -4
- package/esm/Avatar/index.native.js +0 -4
- package/esm/Avatar/native/Avatar.js +0 -124
- package/esm/Avatar/native/Avatar.test.js +0 -46
- package/esm/Avatar/native/AvatarCircle.js +0 -24
- package/esm/Banner/Banner.theme.js +0 -12
- package/esm/Banner/index.js +0 -2
- package/esm/Banner/index.native.js +0 -2
- package/esm/Banner/native/Banner.js +0 -129
- package/esm/Banner/native/Banner.test.js +0 -103
- package/esm/Banner/native/index.js +0 -2
- package/esm/BottomSheet/BottomSheet.theme.js +0 -26
- package/esm/BottomSheet/index.js +0 -2
- package/esm/Box/index.js +0 -2
- package/esm/Box/index.native.js +0 -2
- package/esm/Box/native/Box.js +0 -4
- package/esm/Box/native/Box.test.js +0 -16
- package/esm/Box/native/index.js +0 -2
- package/esm/Button/Button.theme.js +0 -137
- package/esm/Button/index.js +0 -10
- package/esm/Button/index.native.js +0 -8
- package/esm/Button/native/Button.js +0 -110
- package/esm/Button/native/Button.test.js +0 -475
- package/esm/Button/native/Icon.js +0 -83
- package/esm/Button/native/Link.js +0 -35
- package/esm/Button/native/Text.js +0 -74
- package/esm/Button/native/withTouchable.js +0 -63
- package/esm/Card/Card.native.theme.js +0 -47
- package/esm/Card/Card.theme.js +0 -156
- package/esm/Card/Card.web.theme.js +0 -43
- package/esm/Card/index.js +0 -2
- package/esm/Card/index.native.js +0 -2
- package/esm/Card/native/Card/Actions.js +0 -12
- package/esm/Card/native/Card/Card.js +0 -92
- package/esm/Card/native/Card/Card.test.js +0 -15
- package/esm/Card/native/Card/Content.js +0 -8
- package/esm/Card/native/Card/Header.js +0 -8
- package/esm/Card/native/Card/index.js +0 -8
- package/esm/Card/native/EventCard/EventCard.js +0 -169
- package/esm/Card/native/EventCard/EventCard.test.js +0 -65
- package/esm/Card/native/EventCard/index.js +0 -2
- package/esm/Card/native/GymCard/CheckIn/Avatar.js +0 -17
- package/esm/Card/native/GymCard/CheckIn/CheckIn.js +0 -66
- package/esm/Card/native/GymCard/CheckIn/CheckIn.test.js +0 -39
- package/esm/Card/native/GymCard/CheckIn/Content.js +0 -11
- package/esm/Card/native/GymCard/CheckIn/Header.js +0 -11
- package/esm/Card/native/GymCard/CheckIn/index.js +0 -2
- package/esm/Card/native/GymCard/index.js +0 -5
- package/esm/Card/native/PlanCard/Actions.js +0 -22
- package/esm/Card/native/PlanCard/Content.js +0 -75
- package/esm/Card/native/PlanCard/List.js +0 -73
- package/esm/Card/native/PlanCard/PlanCard.js +0 -51
- package/esm/Card/native/PlanCard/PlanCard.test.js +0 -84
- package/esm/Card/native/PlanCard/Subtitle.js +0 -15
- package/esm/Card/native/PlanCard/Tag.js +0 -34
- package/esm/Card/native/PlanCard/index.js +0 -15
- package/esm/Card/native/index.js +0 -5
- package/esm/Checkbox/CheckIcon.js +0 -2
- package/esm/Checkbox/Checkbox.theme.js +0 -53
- package/esm/Checkbox/CheckboxSwitch.theme.js +0 -70
- package/esm/Checkbox/index.js +0 -3
- package/esm/Checkbox/index.native.js +0 -3
- package/esm/Checkbox/native/Checkbox.js +0 -179
- package/esm/Checkbox/native/Checkbox.test.js +0 -115
- package/esm/Checkbox/native/Switch.js +0 -115
- package/esm/Checkbox/native/Switch.test.js +0 -54
- package/esm/Checkbox/native/index.js +0 -3
- package/esm/Chips/index.js +0 -2
- package/esm/Chips/index.native.js +0 -2
- package/esm/Chips/native/Chips.js +0 -105
- package/esm/Chips/native/Chips.test.js +0 -143
- package/esm/Chips/native/Counter.js +0 -20
- package/esm/Chips/native/index.js +0 -2
- package/esm/Datepicker/Datepicker.theme.js +0 -12
- package/esm/Datepicker/index.js +0 -2
- package/esm/Dialog/Dialog.theme.js +0 -25
- package/esm/Dialog/index.js +0 -2
- package/esm/Divider/Divider.theme.js +0 -5
- package/esm/Divider/index.js +0 -2
- package/esm/Divider/index.native.js +0 -2
- package/esm/Divider/native/Divider.js +0 -29
- package/esm/Divider/native/Divider.test.js +0 -29
- package/esm/Divider/native/index.js +0 -2
- package/esm/Drawer/Drawer.theme.js +0 -16
- package/esm/Drawer/index.js +0 -2
- package/esm/Dropdown/Dropdown.theme.js +0 -185
- package/esm/Dropdown/index.js +0 -2
- package/esm/Dropdown/index.native.js +0 -2
- package/esm/Dropdown/native/Backdrop.js +0 -93
- package/esm/Dropdown/native/Backdrop.test.js +0 -26
- package/esm/Dropdown/native/Dropdown.js +0 -142
- package/esm/Dropdown/native/Dropdown.test.js +0 -78
- package/esm/Dropdown/native/Options.android.js +0 -66
- package/esm/Dropdown/native/Options.ios.js +0 -71
- package/esm/Dropdown/native/index.js +0 -2
- package/esm/Feedback/Feedback.theme.js +0 -9
- package/esm/Feedback/index.js +0 -2
- package/esm/Grid/Grid.theme.js +0 -23
- package/esm/Grid/index.js +0 -2
- package/esm/Header/Header.theme.js +0 -15
- package/esm/Header/index.js +0 -2
- package/esm/Heading/Heading.theme.js +0 -20
- package/esm/Heading/index.js +0 -2
- package/esm/Icon/Icon.js +0 -129
- package/esm/Icon/Icon.theme.js +0 -5
- package/esm/Icon/index.js +0 -2
- package/esm/Icon/index.native.js +0 -2
- package/esm/Icon/native/Icon.test.js +0 -60
- package/esm/Icon/native/index.js +0 -2
- package/esm/Input/Input.theme.js +0 -65
- package/esm/Input/index.js +0 -7
- package/esm/Input/index.native.js +0 -6
- package/esm/Input/native/Email.js +0 -15
- package/esm/Input/native/Email.test.js +0 -13
- package/esm/Input/native/Helper.js +0 -62
- package/esm/Input/native/Input.js +0 -234
- package/esm/Input/native/Input.test.js +0 -181
- package/esm/Input/native/Number.js +0 -12
- package/esm/Input/native/Number.test.js +0 -13
- package/esm/Input/native/Password.js +0 -112
- package/esm/Input/native/Password.test.js +0 -125
- package/esm/Input/native/Tel.js +0 -14
- package/esm/Input/native/Tel.test.js +0 -13
- package/esm/Input/native/index.js +0 -6
- package/esm/List/List.theme.js +0 -32
- package/esm/List/index.js +0 -4
- package/esm/List/index.native.js +0 -3
- package/esm/List/native/List.js +0 -22
- package/esm/List/native/List.test.js +0 -106
- package/esm/List/native/ListItem.js +0 -51
- package/esm/List/native/index.js +0 -3
- package/esm/Menu/Menu.theme.js +0 -47
- package/esm/Menu/index.js +0 -8
- package/esm/Popover/Popover.theme.js +0 -5
- package/esm/Popover/index.js +0 -2
- package/esm/Progress/Progress.theme.js +0 -22
- package/esm/Progress/index.js +0 -2
- package/esm/Progress/index.native.js +0 -2
- package/esm/Progress/native/Progress.js +0 -103
- package/esm/Progress/native/Progress.test.js +0 -222
- package/esm/Progress/native/index.js +0 -2
- package/esm/RadioGroup/RadioGroup.theme.js +0 -55
- package/esm/RadioGroup/RadioGroupContext.js +0 -3
- package/esm/RadioGroup/index.js +0 -4
- package/esm/RadioGroup/index.native.js +0 -4
- package/esm/RadioGroup/native/Button/RadioButton.js +0 -64
- package/esm/RadioGroup/native/Button/RadioButton.test.js +0 -96
- package/esm/RadioGroup/native/Radio/Radio.js +0 -88
- package/esm/RadioGroup/native/Radio/Radio.test.js +0 -112
- package/esm/RadioGroup/native/RadioGroup.js +0 -66
- package/esm/RadioGroup/native/RadioGroup.test.js +0 -50
- package/esm/RadioGroup/native/index.js +0 -4
- package/esm/Rating/Rating.theme.js +0 -13
- package/esm/Rating/index.js +0 -2
- package/esm/Rating/index.native.js +0 -2
- package/esm/Rating/native/Rating.js +0 -186
- package/esm/Rating/native/Rating.test.js +0 -121
- package/esm/Rating/native/index.js +0 -2
- package/esm/Result/Result.theme.js +0 -5
- package/esm/Result/index.native.js +0 -8
- package/esm/Result/native/Attendances.js +0 -55
- package/esm/Result/native/Details.js +0 -97
- package/esm/Result/native/Rate.js +0 -35
- package/esm/Result/native/Result.js +0 -86
- package/esm/Result/native/Result.test.js +0 -107
- package/esm/Result/native/ResultButton.js +0 -13
- package/esm/Result/native/Tags.js +0 -41
- package/esm/Result/native/TinyTextIcon.js +0 -18
- package/esm/Result/native/index.js +0 -2
- package/esm/Skeleton/Skeleton.theme.js +0 -24
- package/esm/Skeleton/index.js +0 -2
- package/esm/Skeleton/index.native.js +0 -2
- package/esm/Skeleton/native/Skeleton.js +0 -94
- package/esm/Skeleton/native/Skeleton.test.js +0 -78
- package/esm/Skeleton/native/index.js +0 -2
- package/esm/Slider/Slider.theme.js +0 -74
- package/esm/Slider/index.js +0 -2
- package/esm/Slider/index.native.js +0 -2
- package/esm/Slider/native/Label.js +0 -19
- package/esm/Slider/native/Marker.js +0 -69
- package/esm/Slider/native/Slider.js +0 -156
- package/esm/Slider/native/Slider.test.js +0 -122
- package/esm/Slider/native/Step.js +0 -14
- package/esm/Slider/native/Tooltip.js +0 -90
- package/esm/Snackbar/Snackbar.theme.js +0 -66
- package/esm/Snackbar/index.js +0 -2
- package/esm/Snackbar/index.native.js +0 -2
- package/esm/Snackbar/native/Snackbar.js +0 -200
- package/esm/Snackbar/native/Snackbar.test.js +0 -100
- package/esm/Snackbar/native/SnackbarAnimationWrapper.js +0 -124
- package/esm/Snackbar/native/index.js +0 -2
- package/esm/Spinner/Spinner.theme.js +0 -5
- package/esm/Spinner/index.js +0 -2
- package/esm/Stepper/Stepper.theme.js +0 -41
- package/esm/Stepper/activeDot.js +0 -5
- package/esm/Stepper/index.js +0 -3
- package/esm/Stepper/index.native.js +0 -3
- package/esm/Stepper/native/Dots.js +0 -54
- package/esm/Stepper/native/Line.js +0 -40
- package/esm/Stepper/native/Step.js +0 -19
- package/esm/Stepper/native/Stepper.js +0 -60
- package/esm/Stepper/native/Stepper.test.js +0 -83
- package/esm/Stepper/native/index.js +0 -3
- package/esm/Tag/Tag.theme.js +0 -43
- package/esm/Tag/index.js +0 -4
- package/esm/Tag/index.native.js +0 -4
- package/esm/Tag/native/Informative.js +0 -72
- package/esm/Tag/native/Tag.js +0 -75
- package/esm/Tag/native/Tag.test.js +0 -94
- package/esm/Tag/native/index.js +0 -2
- package/esm/Text/Text.theme.js +0 -76
- package/esm/Text/index.js +0 -16
- package/esm/Text/index.native.js +0 -16
- package/esm/Text/native/Text.js +0 -72
- package/esm/Text/native/Text.test.js +0 -163
- package/esm/Text/native/index.js +0 -2
- package/esm/Text/sharedTextStyle.js +0 -36
- package/esm/Text/textStyle.android.js +0 -21
- package/esm/Text/textStyle.ios.js +0 -14
- package/esm/Text/textStyle.web.js +0 -17
- package/esm/TextArea/TextArea.theme.js +0 -3
- package/esm/TextArea/index.js +0 -2
- package/esm/TextArea/index.native.js +0 -2
- package/esm/TextArea/native/TextArea.js +0 -59
- package/esm/TextArea/native/TextArea.test.js +0 -11
- package/esm/TextArea/native/index.js +0 -2
- package/esm/Theme/Provider/Provider.js +0 -79
- package/esm/Theme/Provider/index.js +0 -2
- package/esm/Theme/Provider/index.native.js +0 -2
- package/esm/Theme/Provider/native/index.js +0 -2
- package/esm/Theme/Provider/web/FontLoader.js +0 -20
- package/esm/Theme/Provider/web/FontLoader.test.js +0 -11
- package/esm/Theme/Provider/web/GlobalStyle.js +0 -10
- package/esm/Theme/Provider/web/GlobalStyle.test.js +0 -17
- package/esm/Theme/Provider/web/ThemeProvider.js +0 -21
- package/esm/Theme/Provider/web/expectCssMatches.js +0 -20
- package/esm/Theme/Provider/web/index.js +0 -3
- package/esm/Theme/helpers/themeGenerator/index.js +0 -2
- package/esm/Theme/helpers/themeGenerator/themeGenerator.js +0 -19
- package/esm/Theme/helpers/themeGenerator/themeGenerator.test.js +0 -24
- package/esm/Theme/helpers/themeReader/base.test.js +0 -76
- package/esm/Theme/helpers/themeReader/index.js +0 -33
- package/esm/Theme/helpers/themeReader/native/native.test.js +0 -53
- package/esm/Theme/helpers/themeReader/web/web.test.js +0 -41
- package/esm/Theme/index.js +0 -5
- package/esm/Theme/index.native.js +0 -6
- package/esm/Theme/theme/index.js +0 -2
- package/esm/Theme/theme/theme.js +0 -164
- package/esm/hooks/index.js +0 -3
- package/esm/hooks/useCombinedRefs.js +0 -25
- package/esm/hooks/useKeyPress.js +0 -32
- package/esm/hooks/usePortal.js +0 -54
- package/esm/index.js +0 -38
- package/esm/index.native.js +0 -26
- package/esm/shared/HiddenInput.js +0 -7
- package/esm/shared/index.js +0 -3
- package/esm/shared/index.native.js +0 -2
- package/esm/shared/propTypes/charLength.js +0 -19
- package/esm/shared/propTypes/deprecated.js +0 -17
- package/esm/shared/propTypes/index.js +0 -6
- package/esm/shared/propTypes/limitChildren.js +0 -17
- package/esm/shared/propTypes/max.js +0 -22
- package/esm/shared/propTypes/typeof.js +0 -17
|
@@ -1,1375 +1,948 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { render, fireEvent, screen, within } from "@testing-library/react";
|
|
4
|
+
import { Booking, Close } from "@gympass/yoga-icons";
|
|
5
|
+
import ThemeProvider from "../../Theme";
|
|
6
|
+
import Button from "..";
|
|
7
|
+
describe("<Button />", () => {
|
|
8
|
+
describe("Snapshots", () => {
|
|
9
|
+
describe("primary buttons", () => {
|
|
10
|
+
describe("Without props", () => {
|
|
11
|
+
it("should match snapshot with default Button", () => {
|
|
12
|
+
const { container } = render(
|
|
13
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, {}) })
|
|
14
|
+
);
|
|
14
15
|
expect(container).toMatchSnapshot();
|
|
15
16
|
});
|
|
16
|
-
it(
|
|
17
|
-
|
|
18
|
-
icon: Booking
|
|
19
|
-
|
|
20
|
-
container = _render2.container;
|
|
21
|
-
|
|
17
|
+
it("should match snapshot with default Button with Icon", () => {
|
|
18
|
+
const { container } = render(
|
|
19
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { icon: Booking }) })
|
|
20
|
+
);
|
|
22
21
|
expect(container).toMatchSnapshot();
|
|
23
22
|
});
|
|
24
|
-
it(
|
|
25
|
-
|
|
26
|
-
isLoading: true
|
|
27
|
-
|
|
28
|
-
container = _render3.container;
|
|
29
|
-
|
|
23
|
+
it("should match snapshot with default Button and Loading", () => {
|
|
24
|
+
const { container } = render(
|
|
25
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { isLoading: true }) })
|
|
26
|
+
);
|
|
30
27
|
expect(container).toMatchSnapshot();
|
|
31
28
|
});
|
|
32
|
-
it(
|
|
33
|
-
|
|
34
|
-
icon: Booking,
|
|
35
|
-
|
|
36
|
-
}))),
|
|
37
|
-
container = _render4.container;
|
|
38
|
-
|
|
29
|
+
it("should match snapshot with default Button with Icon and Loading", () => {
|
|
30
|
+
const { container } = render(
|
|
31
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { icon: Booking, isLoading: true }) })
|
|
32
|
+
);
|
|
39
33
|
expect(container).toMatchSnapshot();
|
|
40
34
|
});
|
|
41
|
-
it(
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
35
|
+
it("should match snapshot with outline Button", () => {
|
|
36
|
+
const { container } = render(
|
|
37
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, {}) })
|
|
38
|
+
);
|
|
45
39
|
expect(container).toMatchSnapshot();
|
|
46
40
|
});
|
|
47
|
-
it(
|
|
48
|
-
|
|
49
|
-
icon: Booking
|
|
50
|
-
|
|
51
|
-
container = _render6.container;
|
|
52
|
-
|
|
41
|
+
it("should match snapshot with outline Button with Icon", () => {
|
|
42
|
+
const { container } = render(
|
|
43
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { icon: Booking }) })
|
|
44
|
+
);
|
|
53
45
|
expect(container).toMatchSnapshot();
|
|
54
46
|
});
|
|
55
|
-
it(
|
|
56
|
-
|
|
57
|
-
isLoading: true
|
|
58
|
-
|
|
59
|
-
container = _render7.container;
|
|
60
|
-
|
|
47
|
+
it("should match snapshot with outline Button and Loading", () => {
|
|
48
|
+
const { container } = render(
|
|
49
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { isLoading: true }) })
|
|
50
|
+
);
|
|
61
51
|
expect(container).toMatchSnapshot();
|
|
62
52
|
});
|
|
63
|
-
it(
|
|
64
|
-
|
|
65
|
-
icon: Booking,
|
|
66
|
-
|
|
67
|
-
}))),
|
|
68
|
-
container = _render8.container;
|
|
69
|
-
|
|
53
|
+
it("should match snapshot with outline Button with Icon and Loading", () => {
|
|
54
|
+
const { container } = render(
|
|
55
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { icon: Booking, isLoading: true }) })
|
|
56
|
+
);
|
|
70
57
|
expect(container).toMatchSnapshot();
|
|
71
58
|
});
|
|
72
|
-
it(
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
59
|
+
it("should match snapshot with text Button", () => {
|
|
60
|
+
const { container } = render(
|
|
61
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, {}) })
|
|
62
|
+
);
|
|
76
63
|
expect(container).toMatchSnapshot();
|
|
77
64
|
});
|
|
78
|
-
it(
|
|
79
|
-
|
|
80
|
-
icon: Booking
|
|
81
|
-
|
|
82
|
-
container = _render10.container;
|
|
83
|
-
|
|
65
|
+
it("should match snapshot with text Button with Icon", () => {
|
|
66
|
+
const { container } = render(
|
|
67
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { icon: Booking }) })
|
|
68
|
+
);
|
|
84
69
|
expect(container).toMatchSnapshot();
|
|
85
70
|
});
|
|
86
|
-
it(
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
71
|
+
it("should match snapshot with link Button", () => {
|
|
72
|
+
const { container } = render(
|
|
73
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Link, {}) })
|
|
74
|
+
);
|
|
90
75
|
expect(container).toMatchSnapshot();
|
|
91
76
|
});
|
|
92
|
-
it(
|
|
93
|
-
|
|
94
|
-
icon: Booking
|
|
95
|
-
|
|
96
|
-
container = _render12.container;
|
|
97
|
-
|
|
77
|
+
it("should match snapshot with icon Button", () => {
|
|
78
|
+
const { container } = render(
|
|
79
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking }) })
|
|
80
|
+
);
|
|
98
81
|
expect(container).toMatchSnapshot();
|
|
99
82
|
});
|
|
100
|
-
it(
|
|
101
|
-
|
|
102
|
-
icon: Booking,
|
|
103
|
-
|
|
104
|
-
}))),
|
|
105
|
-
container = _render13.container;
|
|
106
|
-
|
|
83
|
+
it("should match snapshot with text icon and Loading", () => {
|
|
84
|
+
const { container } = render(
|
|
85
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking, isLoading: true }) })
|
|
86
|
+
);
|
|
107
87
|
expect(container).toMatchSnapshot();
|
|
108
88
|
});
|
|
109
89
|
});
|
|
110
|
-
describe(
|
|
111
|
-
it(
|
|
112
|
-
|
|
113
|
-
inverted: true
|
|
114
|
-
|
|
115
|
-
container = _render14.container;
|
|
116
|
-
|
|
90
|
+
describe("With inverted prop", () => {
|
|
91
|
+
it("should match snapshot with default Button", () => {
|
|
92
|
+
const { container } = render(
|
|
93
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { inverted: true }) })
|
|
94
|
+
);
|
|
117
95
|
expect(container).toMatchSnapshot();
|
|
118
96
|
});
|
|
119
|
-
it(
|
|
120
|
-
|
|
121
|
-
inverted: true,
|
|
122
|
-
|
|
123
|
-
}))),
|
|
124
|
-
container = _render15.container;
|
|
125
|
-
|
|
97
|
+
it("should match snapshot with default Button and Loading", () => {
|
|
98
|
+
const { container } = render(
|
|
99
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { inverted: true, isLoading: true }) })
|
|
100
|
+
);
|
|
126
101
|
expect(container).toMatchSnapshot();
|
|
127
102
|
});
|
|
128
|
-
it(
|
|
129
|
-
|
|
130
|
-
inverted: true,
|
|
131
|
-
|
|
132
|
-
}))),
|
|
133
|
-
container = _render16.container;
|
|
134
|
-
|
|
103
|
+
it("should match snapshot with default Button with Icon", () => {
|
|
104
|
+
const { container } = render(
|
|
105
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { inverted: true, icon: Booking }) })
|
|
106
|
+
);
|
|
135
107
|
expect(container).toMatchSnapshot();
|
|
136
108
|
});
|
|
137
|
-
it(
|
|
138
|
-
|
|
139
|
-
inverted: true,
|
|
140
|
-
|
|
141
|
-
isLoading: true
|
|
142
|
-
}))),
|
|
143
|
-
container = _render17.container;
|
|
144
|
-
|
|
109
|
+
it("should match snapshot with default Button with Icon and Loading", () => {
|
|
110
|
+
const { container } = render(
|
|
111
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { inverted: true, icon: Booking, isLoading: true }) })
|
|
112
|
+
);
|
|
145
113
|
expect(container).toMatchSnapshot();
|
|
146
114
|
});
|
|
147
|
-
it(
|
|
148
|
-
|
|
149
|
-
inverted: true
|
|
150
|
-
|
|
151
|
-
container = _render18.container;
|
|
152
|
-
|
|
115
|
+
it("should match snapshot with outline Button", () => {
|
|
116
|
+
const { container } = render(
|
|
117
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { inverted: true }) })
|
|
118
|
+
);
|
|
153
119
|
expect(container).toMatchSnapshot();
|
|
154
120
|
});
|
|
155
|
-
it(
|
|
156
|
-
|
|
157
|
-
inverted: true,
|
|
158
|
-
|
|
159
|
-
}))),
|
|
160
|
-
container = _render19.container;
|
|
161
|
-
|
|
121
|
+
it("should match snapshot with outline Button and Loading", () => {
|
|
122
|
+
const { container } = render(
|
|
123
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { inverted: true, isLoading: true }) })
|
|
124
|
+
);
|
|
162
125
|
expect(container).toMatchSnapshot();
|
|
163
126
|
});
|
|
164
|
-
it(
|
|
165
|
-
|
|
166
|
-
inverted: true,
|
|
167
|
-
|
|
168
|
-
}))),
|
|
169
|
-
container = _render20.container;
|
|
170
|
-
|
|
127
|
+
it("should match snapshot with outline Button with Icon", () => {
|
|
128
|
+
const { container } = render(
|
|
129
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { inverted: true, icon: Booking }) })
|
|
130
|
+
);
|
|
171
131
|
expect(container).toMatchSnapshot();
|
|
172
132
|
});
|
|
173
|
-
it(
|
|
174
|
-
|
|
175
|
-
inverted: true,
|
|
176
|
-
|
|
177
|
-
isLoading: true
|
|
178
|
-
}))),
|
|
179
|
-
container = _render21.container;
|
|
180
|
-
|
|
133
|
+
it("should match snapshot with outline Button with Icon and Loading", () => {
|
|
134
|
+
const { container } = render(
|
|
135
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { inverted: true, icon: Booking, isLoading: true }) })
|
|
136
|
+
);
|
|
181
137
|
expect(container).toMatchSnapshot();
|
|
182
138
|
});
|
|
183
|
-
it(
|
|
184
|
-
|
|
185
|
-
inverted: true
|
|
186
|
-
|
|
187
|
-
container = _render22.container;
|
|
188
|
-
|
|
139
|
+
it("should match snapshot with text Button", () => {
|
|
140
|
+
const { container } = render(
|
|
141
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { inverted: true }) })
|
|
142
|
+
);
|
|
189
143
|
expect(container).toMatchSnapshot();
|
|
190
144
|
});
|
|
191
|
-
it(
|
|
192
|
-
|
|
193
|
-
inverted: true,
|
|
194
|
-
|
|
195
|
-
}))),
|
|
196
|
-
container = _render23.container;
|
|
197
|
-
|
|
145
|
+
it("should match snapshot with icon Button", () => {
|
|
146
|
+
const { container } = render(
|
|
147
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { inverted: true, icon: Booking }) })
|
|
148
|
+
);
|
|
198
149
|
expect(container).toMatchSnapshot();
|
|
199
150
|
});
|
|
200
|
-
it(
|
|
201
|
-
|
|
202
|
-
inverted: true,
|
|
203
|
-
|
|
204
|
-
isLoading: true
|
|
205
|
-
}))),
|
|
206
|
-
container = _render24.container;
|
|
207
|
-
|
|
151
|
+
it("should match snapshot with icon Button and Loading", () => {
|
|
152
|
+
const { container } = render(
|
|
153
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { inverted: true, icon: Booking, isLoading: true }) })
|
|
154
|
+
);
|
|
208
155
|
expect(container).toMatchSnapshot();
|
|
209
156
|
});
|
|
210
|
-
describe(
|
|
211
|
-
it(
|
|
212
|
-
|
|
213
|
-
small: true
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
expect(container).toMatchSnapshot();
|
|
252
|
-
});
|
|
253
|
-
it(
|
|
254
|
-
|
|
255
|
-
small: true
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
it('should match snapshot with outline Button with Icon and Loading', function () {
|
|
282
|
-
var _render33 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Outline, {
|
|
283
|
-
icon: Booking,
|
|
284
|
-
small: true,
|
|
285
|
-
isLoading: true
|
|
286
|
-
}))),
|
|
287
|
-
container = _render33.container;
|
|
288
|
-
|
|
289
|
-
expect(container).toMatchSnapshot();
|
|
290
|
-
});
|
|
291
|
-
it('should match snapshot with text Button with Icon', function () {
|
|
292
|
-
var _render34 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Text, {
|
|
293
|
-
icon: Booking,
|
|
294
|
-
small: true
|
|
295
|
-
}))),
|
|
296
|
-
container = _render34.container;
|
|
297
|
-
|
|
298
|
-
expect(container).toMatchSnapshot();
|
|
299
|
-
});
|
|
300
|
-
it('should match snapshot with icon Button', function () {
|
|
301
|
-
var _render35 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
302
|
-
icon: Booking,
|
|
303
|
-
small: true
|
|
304
|
-
}))),
|
|
305
|
-
container = _render35.container;
|
|
306
|
-
|
|
307
|
-
expect(container).toMatchSnapshot();
|
|
308
|
-
});
|
|
309
|
-
it('should match snapshot with icon Button and Loading', function () {
|
|
310
|
-
var _render36 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
311
|
-
icon: Booking,
|
|
312
|
-
small: true,
|
|
313
|
-
isLoading: true
|
|
314
|
-
}))),
|
|
315
|
-
container = _render36.container;
|
|
316
|
-
|
|
157
|
+
describe("With small prop", () => {
|
|
158
|
+
it("should match snapshot with default Button", () => {
|
|
159
|
+
const { container } = render(
|
|
160
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { small: true }) })
|
|
161
|
+
);
|
|
162
|
+
expect(container).toMatchSnapshot();
|
|
163
|
+
});
|
|
164
|
+
it("should match snapshot with default Button when is Loading", () => {
|
|
165
|
+
const { container } = render(
|
|
166
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { small: true, isLoading: true }) })
|
|
167
|
+
);
|
|
168
|
+
expect(container).toMatchSnapshot();
|
|
169
|
+
});
|
|
170
|
+
it("should match snapshot with outline Button", () => {
|
|
171
|
+
const { container } = render(
|
|
172
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { small: true }) })
|
|
173
|
+
);
|
|
174
|
+
expect(container).toMatchSnapshot();
|
|
175
|
+
});
|
|
176
|
+
it("should match snapshot with outline Button when is Loading", () => {
|
|
177
|
+
const { container } = render(
|
|
178
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { small: true, isLoading: true }) })
|
|
179
|
+
);
|
|
180
|
+
expect(container).toMatchSnapshot();
|
|
181
|
+
});
|
|
182
|
+
it("should match snapshot with text Button", () => {
|
|
183
|
+
const { container } = render(
|
|
184
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { small: true }) })
|
|
185
|
+
);
|
|
186
|
+
expect(container).toMatchSnapshot();
|
|
187
|
+
});
|
|
188
|
+
it("should match snapshot with default Button with Icon", () => {
|
|
189
|
+
const { container } = render(
|
|
190
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { small: true, icon: Booking }) })
|
|
191
|
+
);
|
|
192
|
+
expect(container).toMatchSnapshot();
|
|
193
|
+
});
|
|
194
|
+
it("should match snapshot with default Button with Icon and Loading", () => {
|
|
195
|
+
const { container } = render(
|
|
196
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { small: true, icon: Booking, isLoading: true }) })
|
|
197
|
+
);
|
|
198
|
+
expect(container).toMatchSnapshot();
|
|
199
|
+
});
|
|
200
|
+
it("should match snapshot with outline Button with Icon", () => {
|
|
201
|
+
const { container } = render(
|
|
202
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { icon: Booking, small: true }) })
|
|
203
|
+
);
|
|
204
|
+
expect(container).toMatchSnapshot();
|
|
205
|
+
});
|
|
206
|
+
it("should match snapshot with outline Button with Icon and Loading", () => {
|
|
207
|
+
const { container } = render(
|
|
208
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { icon: Booking, small: true, isLoading: true }) })
|
|
209
|
+
);
|
|
210
|
+
expect(container).toMatchSnapshot();
|
|
211
|
+
});
|
|
212
|
+
it("should match snapshot with text Button with Icon", () => {
|
|
213
|
+
const { container } = render(
|
|
214
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { icon: Booking, small: true }) })
|
|
215
|
+
);
|
|
216
|
+
expect(container).toMatchSnapshot();
|
|
217
|
+
});
|
|
218
|
+
it("should match snapshot with icon Button", () => {
|
|
219
|
+
const { container } = render(
|
|
220
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking, small: true }) })
|
|
221
|
+
);
|
|
222
|
+
expect(container).toMatchSnapshot();
|
|
223
|
+
});
|
|
224
|
+
it("should match snapshot with icon Button and Loading", () => {
|
|
225
|
+
const { container } = render(
|
|
226
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking, small: true, isLoading: true }) })
|
|
227
|
+
);
|
|
317
228
|
expect(container).toMatchSnapshot();
|
|
318
229
|
});
|
|
319
230
|
});
|
|
320
|
-
describe(
|
|
321
|
-
it(
|
|
322
|
-
|
|
323
|
-
full: true
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
expect(container).toMatchSnapshot();
|
|
362
|
-
});
|
|
363
|
-
it(
|
|
364
|
-
|
|
365
|
-
full: true,
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
expect(container).toMatchSnapshot();
|
|
381
|
-
});
|
|
382
|
-
it('should match snapshot with outline Button with Icon', function () {
|
|
383
|
-
var _render44 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Outline, {
|
|
384
|
-
full: true,
|
|
385
|
-
icon: Booking
|
|
386
|
-
}))),
|
|
387
|
-
container = _render44.container;
|
|
388
|
-
|
|
389
|
-
expect(container).toMatchSnapshot();
|
|
390
|
-
});
|
|
391
|
-
it('should match snapshot with outline Button with Icon and Loading', function () {
|
|
392
|
-
var _render45 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Outline, {
|
|
393
|
-
full: true,
|
|
394
|
-
icon: Booking,
|
|
395
|
-
isLoading: true
|
|
396
|
-
}))),
|
|
397
|
-
container = _render45.container;
|
|
398
|
-
|
|
399
|
-
expect(container).toMatchSnapshot();
|
|
400
|
-
});
|
|
401
|
-
it('should match snapshot with text Button with Icon', function () {
|
|
402
|
-
var _render46 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Text, {
|
|
403
|
-
full: true,
|
|
404
|
-
icon: Booking
|
|
405
|
-
}))),
|
|
406
|
-
container = _render46.container;
|
|
407
|
-
|
|
231
|
+
describe("With full prop", () => {
|
|
232
|
+
it("should match snapshot with default Button", () => {
|
|
233
|
+
const { container } = render(
|
|
234
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { full: true }) })
|
|
235
|
+
);
|
|
236
|
+
expect(container).toMatchSnapshot();
|
|
237
|
+
});
|
|
238
|
+
it("should match snapshot with default Button and Loading", () => {
|
|
239
|
+
const { container } = render(
|
|
240
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { full: true, isLoading: true }) })
|
|
241
|
+
);
|
|
242
|
+
expect(container).toMatchSnapshot();
|
|
243
|
+
});
|
|
244
|
+
it("should match snapshot with outline Button", () => {
|
|
245
|
+
const { container } = render(
|
|
246
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { full: true }) })
|
|
247
|
+
);
|
|
248
|
+
expect(container).toMatchSnapshot();
|
|
249
|
+
});
|
|
250
|
+
it("should match snapshot with outline Button and Loading", () => {
|
|
251
|
+
const { container } = render(
|
|
252
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { full: true, isLoading: true }) })
|
|
253
|
+
);
|
|
254
|
+
expect(container).toMatchSnapshot();
|
|
255
|
+
});
|
|
256
|
+
it("should match snapshot with text Button", () => {
|
|
257
|
+
const { container } = render(
|
|
258
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { full: true }) })
|
|
259
|
+
);
|
|
260
|
+
expect(container).toMatchSnapshot();
|
|
261
|
+
});
|
|
262
|
+
it("should match snapshot with default Button with Icon", () => {
|
|
263
|
+
const { container } = render(
|
|
264
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { full: true, icon: Booking }) })
|
|
265
|
+
);
|
|
266
|
+
expect(container).toMatchSnapshot();
|
|
267
|
+
});
|
|
268
|
+
it("should match snapshot with default Button with Icon and Loading", () => {
|
|
269
|
+
const { container } = render(
|
|
270
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { full: true, icon: Booking, isLoading: true }) })
|
|
271
|
+
);
|
|
272
|
+
expect(container).toMatchSnapshot();
|
|
273
|
+
});
|
|
274
|
+
it("should match snapshot with outline Button with Icon", () => {
|
|
275
|
+
const { container } = render(
|
|
276
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { full: true, icon: Booking }) })
|
|
277
|
+
);
|
|
278
|
+
expect(container).toMatchSnapshot();
|
|
279
|
+
});
|
|
280
|
+
it("should match snapshot with outline Button with Icon and Loading", () => {
|
|
281
|
+
const { container } = render(
|
|
282
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { full: true, icon: Booking, isLoading: true }) })
|
|
283
|
+
);
|
|
284
|
+
expect(container).toMatchSnapshot();
|
|
285
|
+
});
|
|
286
|
+
it("should match snapshot with text Button with Icon", () => {
|
|
287
|
+
const { container } = render(
|
|
288
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { full: true, icon: Booking }) })
|
|
289
|
+
);
|
|
408
290
|
expect(container).toMatchSnapshot();
|
|
409
291
|
});
|
|
410
292
|
});
|
|
411
|
-
describe(
|
|
412
|
-
it(
|
|
413
|
-
|
|
414
|
-
disabled: true
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
expect(container).toMatchSnapshot();
|
|
453
|
-
});
|
|
454
|
-
it(
|
|
455
|
-
|
|
456
|
-
disabled: true
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
icon: Booking
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
expect(container).toMatchSnapshot();
|
|
489
|
-
});
|
|
490
|
-
it('should match snapshot with outline Button with Icon and Loading', function () {
|
|
491
|
-
var _render56 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Outline, {
|
|
492
|
-
disabled: true,
|
|
493
|
-
icon: Booking,
|
|
494
|
-
isLoading: true
|
|
495
|
-
}))),
|
|
496
|
-
container = _render56.container;
|
|
497
|
-
|
|
498
|
-
expect(container).toMatchSnapshot();
|
|
499
|
-
});
|
|
500
|
-
it('should match snapshot with text Button with Icon', function () {
|
|
501
|
-
var _render57 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Text, {
|
|
502
|
-
disabled: true,
|
|
503
|
-
icon: Booking
|
|
504
|
-
}))),
|
|
505
|
-
container = _render57.container;
|
|
506
|
-
|
|
507
|
-
expect(container).toMatchSnapshot();
|
|
508
|
-
});
|
|
509
|
-
it('should match snapshot with icon Button', function () {
|
|
510
|
-
var _render58 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
511
|
-
disabled: true,
|
|
512
|
-
icon: Booking
|
|
513
|
-
}))),
|
|
514
|
-
container = _render58.container;
|
|
515
|
-
|
|
516
|
-
expect(container).toMatchSnapshot();
|
|
517
|
-
});
|
|
518
|
-
it('should match snapshot with icon Button and Loading', function () {
|
|
519
|
-
var _render59 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
520
|
-
disabled: true,
|
|
521
|
-
icon: Booking,
|
|
522
|
-
isLoading: true
|
|
523
|
-
}))),
|
|
524
|
-
container = _render59.container;
|
|
525
|
-
|
|
293
|
+
describe("With disabled prop", () => {
|
|
294
|
+
it("should match snapshot with default Button", () => {
|
|
295
|
+
const { container } = render(
|
|
296
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { disabled: true }) })
|
|
297
|
+
);
|
|
298
|
+
expect(container).toMatchSnapshot();
|
|
299
|
+
});
|
|
300
|
+
it("should match snapshot with default Button", () => {
|
|
301
|
+
const { container } = render(
|
|
302
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { disabled: true, isLoading: true }) })
|
|
303
|
+
);
|
|
304
|
+
expect(container).toMatchSnapshot();
|
|
305
|
+
});
|
|
306
|
+
it("should match snapshot with outline Button", () => {
|
|
307
|
+
const { container } = render(
|
|
308
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { disabled: true }) })
|
|
309
|
+
);
|
|
310
|
+
expect(container).toMatchSnapshot();
|
|
311
|
+
});
|
|
312
|
+
it("should match snapshot with outline Button and Loading", () => {
|
|
313
|
+
const { container } = render(
|
|
314
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { disabled: true, isLoading: true }) })
|
|
315
|
+
);
|
|
316
|
+
expect(container).toMatchSnapshot();
|
|
317
|
+
});
|
|
318
|
+
it("should match snapshot with text Button", () => {
|
|
319
|
+
const { container } = render(
|
|
320
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { disabled: true }) })
|
|
321
|
+
);
|
|
322
|
+
expect(container).toMatchSnapshot();
|
|
323
|
+
});
|
|
324
|
+
it("should match snapshot with link Button", () => {
|
|
325
|
+
const { container } = render(
|
|
326
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Link, { disabled: true }) })
|
|
327
|
+
);
|
|
328
|
+
expect(container).toMatchSnapshot();
|
|
329
|
+
});
|
|
330
|
+
it("should match snapshot with default Button with Icon", () => {
|
|
331
|
+
const { container } = render(
|
|
332
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { disabled: true, icon: Booking }) })
|
|
333
|
+
);
|
|
334
|
+
expect(container).toMatchSnapshot();
|
|
335
|
+
});
|
|
336
|
+
it("should match snapshot with default Button with Icon and Loading", () => {
|
|
337
|
+
const { container } = render(
|
|
338
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { disabled: true, icon: Booking, isLoading: true }) })
|
|
339
|
+
);
|
|
340
|
+
expect(container).toMatchSnapshot();
|
|
341
|
+
});
|
|
342
|
+
it("should match snapshot with outline Button with Icon", () => {
|
|
343
|
+
const { container } = render(
|
|
344
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { disabled: true, icon: Booking }) })
|
|
345
|
+
);
|
|
346
|
+
expect(container).toMatchSnapshot();
|
|
347
|
+
});
|
|
348
|
+
it("should match snapshot with outline Button with Icon and Loading", () => {
|
|
349
|
+
const { container } = render(
|
|
350
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { disabled: true, icon: Booking, isLoading: true }) })
|
|
351
|
+
);
|
|
352
|
+
expect(container).toMatchSnapshot();
|
|
353
|
+
});
|
|
354
|
+
it("should match snapshot with text Button with Icon", () => {
|
|
355
|
+
const { container } = render(
|
|
356
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { disabled: true, icon: Booking }) })
|
|
357
|
+
);
|
|
358
|
+
expect(container).toMatchSnapshot();
|
|
359
|
+
});
|
|
360
|
+
it("should match snapshot with icon Button", () => {
|
|
361
|
+
const { container } = render(
|
|
362
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { disabled: true, icon: Booking }) })
|
|
363
|
+
);
|
|
364
|
+
expect(container).toMatchSnapshot();
|
|
365
|
+
});
|
|
366
|
+
it("should match snapshot with icon Button and Loading", () => {
|
|
367
|
+
const { container } = render(
|
|
368
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { disabled: true, icon: Booking, isLoading: true }) })
|
|
369
|
+
);
|
|
526
370
|
expect(container).toMatchSnapshot();
|
|
527
371
|
});
|
|
528
372
|
});
|
|
529
373
|
});
|
|
530
|
-
describe(
|
|
531
|
-
it(
|
|
532
|
-
|
|
533
|
-
href: "http://www.gympass.com",
|
|
534
|
-
|
|
535
|
-
}, "Default Button as an anchor"))),
|
|
536
|
-
container = _render60.container;
|
|
537
|
-
|
|
374
|
+
describe("buttons rendering as an anchor", () => {
|
|
375
|
+
it("Default Button with href prop", () => {
|
|
376
|
+
const { container } = render(
|
|
377
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { href: "http://www.gympass.com", target: "blank", children: "Default Button as an anchor" }) })
|
|
378
|
+
);
|
|
538
379
|
expect(container).toMatchSnapshot();
|
|
539
380
|
});
|
|
540
|
-
it(
|
|
541
|
-
|
|
542
|
-
href: "http://www.gympass.com",
|
|
543
|
-
|
|
544
|
-
isLoading: true
|
|
545
|
-
}, "Default Button as an anchor"))),
|
|
546
|
-
container = _render61.container;
|
|
547
|
-
|
|
381
|
+
it("Default Button with href prop and Loading", () => {
|
|
382
|
+
const { container } = render(
|
|
383
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { href: "http://www.gympass.com", target: "blank", isLoading: true, children: "Default Button as an anchor" }) })
|
|
384
|
+
);
|
|
548
385
|
expect(container).toMatchSnapshot();
|
|
549
386
|
});
|
|
550
|
-
it(
|
|
551
|
-
|
|
552
|
-
href: "http://www.gympass.com",
|
|
553
|
-
|
|
554
|
-
}, "Link as an anchor"))),
|
|
555
|
-
container = _render62.container;
|
|
556
|
-
|
|
387
|
+
it("Link Button with href prop", () => {
|
|
388
|
+
const { container } = render(
|
|
389
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Link, { href: "http://www.gympass.com", target: "blank", children: "Link as an anchor" }) })
|
|
390
|
+
);
|
|
557
391
|
expect(container).toMatchSnapshot();
|
|
558
392
|
});
|
|
559
|
-
it(
|
|
560
|
-
|
|
561
|
-
href: "http://www.gympass.com",
|
|
562
|
-
|
|
563
|
-
}, "Outline as an anchor"))),
|
|
564
|
-
container = _render63.container;
|
|
565
|
-
|
|
393
|
+
it("Outline Button with href prop", () => {
|
|
394
|
+
const { container } = render(
|
|
395
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { href: "http://www.gympass.com", target: "blank", children: "Outline as an anchor" }) })
|
|
396
|
+
);
|
|
566
397
|
expect(container).toMatchSnapshot();
|
|
567
398
|
});
|
|
568
|
-
it(
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
399
|
+
it("Outline Button with href prop and Loading", () => {
|
|
400
|
+
const { container } = render(
|
|
401
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(
|
|
402
|
+
Button.Outline,
|
|
403
|
+
{
|
|
404
|
+
href: "http://www.gympass.com",
|
|
405
|
+
target: "blank",
|
|
406
|
+
isLoading: true,
|
|
407
|
+
children: "Outline as an anchor"
|
|
408
|
+
}
|
|
409
|
+
) })
|
|
410
|
+
);
|
|
576
411
|
expect(container).toMatchSnapshot();
|
|
577
412
|
});
|
|
578
|
-
it(
|
|
579
|
-
|
|
580
|
-
href: "http://www.gympass.com",
|
|
581
|
-
|
|
582
|
-
}, "Text as an anchor"))),
|
|
583
|
-
container = _render65.container;
|
|
584
|
-
|
|
413
|
+
it("Text Button with href prop", () => {
|
|
414
|
+
const { container } = render(
|
|
415
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { href: "http://www.gympass.com", target: "blank", children: "Text as an anchor" }) })
|
|
416
|
+
);
|
|
585
417
|
expect(container).toMatchSnapshot();
|
|
586
418
|
});
|
|
587
419
|
});
|
|
588
|
-
describe(
|
|
589
|
-
describe(
|
|
590
|
-
it(
|
|
591
|
-
|
|
592
|
-
secondary: true
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
icon: Booking
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
}
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
expect(container).toMatchSnapshot();
|
|
625
|
-
});
|
|
626
|
-
it(
|
|
627
|
-
|
|
628
|
-
secondary: true
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
secondary: true
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
expect(container).toMatchSnapshot();
|
|
661
|
-
});
|
|
662
|
-
it(
|
|
663
|
-
|
|
664
|
-
secondary: true
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
secondary: true,
|
|
673
|
-
icon: Booking
|
|
674
|
-
}))),
|
|
675
|
-
container = _render75.container;
|
|
676
|
-
|
|
677
|
-
expect(container).toMatchSnapshot();
|
|
678
|
-
});
|
|
679
|
-
it('should match snapshot with link Button', function () {
|
|
680
|
-
var _render76 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Link, {
|
|
681
|
-
secondary: true
|
|
682
|
-
}))),
|
|
683
|
-
container = _render76.container;
|
|
684
|
-
|
|
685
|
-
expect(container).toMatchSnapshot();
|
|
686
|
-
});
|
|
687
|
-
it('should match snapshot with link Button with Icon', function () {
|
|
688
|
-
var _render77 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Link, {
|
|
689
|
-
icon: Booking
|
|
690
|
-
}))),
|
|
691
|
-
container = _render77.container;
|
|
692
|
-
|
|
693
|
-
expect(container).toMatchSnapshot();
|
|
694
|
-
});
|
|
695
|
-
it('should match snapshot with icon Button', function () {
|
|
696
|
-
var _render78 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
697
|
-
icon: Booking,
|
|
698
|
-
secondary: true
|
|
699
|
-
}))),
|
|
700
|
-
container = _render78.container;
|
|
701
|
-
|
|
702
|
-
expect(container).toMatchSnapshot();
|
|
703
|
-
});
|
|
704
|
-
it('should match snapshot with icon Button and Loading', function () {
|
|
705
|
-
var _render79 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
706
|
-
icon: Booking,
|
|
707
|
-
secondary: true,
|
|
708
|
-
isLoading: true
|
|
709
|
-
}))),
|
|
710
|
-
container = _render79.container;
|
|
711
|
-
|
|
420
|
+
describe("secondary buttons", () => {
|
|
421
|
+
describe("Without props", () => {
|
|
422
|
+
it("should match snapshot with default Button", () => {
|
|
423
|
+
const { container } = render(
|
|
424
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { secondary: true }) })
|
|
425
|
+
);
|
|
426
|
+
expect(container).toMatchSnapshot();
|
|
427
|
+
});
|
|
428
|
+
it("should match snapshot with default Button and Loading", () => {
|
|
429
|
+
const { container } = render(
|
|
430
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { secondary: true, isLoading: true }) })
|
|
431
|
+
);
|
|
432
|
+
expect(container).toMatchSnapshot();
|
|
433
|
+
});
|
|
434
|
+
it("should match snapshot with default Button with Icon", () => {
|
|
435
|
+
const { container } = render(
|
|
436
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { secondary: true, icon: Booking }) })
|
|
437
|
+
);
|
|
438
|
+
expect(container).toMatchSnapshot();
|
|
439
|
+
});
|
|
440
|
+
it("should match snapshot with default Button with Icon and Loading", () => {
|
|
441
|
+
const { container } = render(
|
|
442
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { secondary: true, icon: Booking, isLoading: true }) })
|
|
443
|
+
);
|
|
444
|
+
expect(container).toMatchSnapshot();
|
|
445
|
+
});
|
|
446
|
+
it("should match snapshot with outline Button", () => {
|
|
447
|
+
const { container } = render(
|
|
448
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { secondary: true }) })
|
|
449
|
+
);
|
|
450
|
+
expect(container).toMatchSnapshot();
|
|
451
|
+
});
|
|
452
|
+
it("should match snapshot with outline Button and Loading", () => {
|
|
453
|
+
const { container } = render(
|
|
454
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { secondary: true, isLoading: true }) })
|
|
455
|
+
);
|
|
456
|
+
expect(container).toMatchSnapshot();
|
|
457
|
+
});
|
|
458
|
+
it("should match snapshot with outline Button with Icon", () => {
|
|
459
|
+
const { container } = render(
|
|
460
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { icon: Booking, secondary: true }) })
|
|
461
|
+
);
|
|
462
|
+
expect(container).toMatchSnapshot();
|
|
463
|
+
});
|
|
464
|
+
it("should match snapshot with outline Button with Icon and Loading", () => {
|
|
465
|
+
const { container } = render(
|
|
466
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { icon: Booking, secondary: true, isLoading: true }) })
|
|
467
|
+
);
|
|
468
|
+
expect(container).toMatchSnapshot();
|
|
469
|
+
});
|
|
470
|
+
it("should match snapshot with text Button", () => {
|
|
471
|
+
const { container } = render(
|
|
472
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { secondary: true }) })
|
|
473
|
+
);
|
|
474
|
+
expect(container).toMatchSnapshot();
|
|
475
|
+
});
|
|
476
|
+
it("should match snapshot with text Button with Icon", () => {
|
|
477
|
+
const { container } = render(
|
|
478
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { secondary: true, icon: Booking }) })
|
|
479
|
+
);
|
|
480
|
+
expect(container).toMatchSnapshot();
|
|
481
|
+
});
|
|
482
|
+
it("should match snapshot with link Button", () => {
|
|
483
|
+
const { container } = render(
|
|
484
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Link, { secondary: true }) })
|
|
485
|
+
);
|
|
486
|
+
expect(container).toMatchSnapshot();
|
|
487
|
+
});
|
|
488
|
+
it("should match snapshot with link Button with Icon", () => {
|
|
489
|
+
const { container } = render(
|
|
490
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Link, { icon: Booking }) })
|
|
491
|
+
);
|
|
492
|
+
expect(container).toMatchSnapshot();
|
|
493
|
+
});
|
|
494
|
+
it("should match snapshot with icon Button", () => {
|
|
495
|
+
const { container } = render(
|
|
496
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking, secondary: true }) })
|
|
497
|
+
);
|
|
498
|
+
expect(container).toMatchSnapshot();
|
|
499
|
+
});
|
|
500
|
+
it("should match snapshot with icon Button and Loading", () => {
|
|
501
|
+
const { container } = render(
|
|
502
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking, secondary: true, isLoading: true }) })
|
|
503
|
+
);
|
|
712
504
|
expect(container).toMatchSnapshot();
|
|
713
505
|
});
|
|
714
506
|
});
|
|
715
|
-
describe(
|
|
716
|
-
it(
|
|
717
|
-
|
|
718
|
-
inverted: true,
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
icon: Booking,
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
isLoading: true
|
|
791
|
-
|
|
792
|
-
container = _render87.container;
|
|
793
|
-
|
|
794
|
-
expect(container).toMatchSnapshot();
|
|
795
|
-
});
|
|
796
|
-
it('should match snapshot with text Button', function () {
|
|
797
|
-
var _render88 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Text, {
|
|
798
|
-
inverted: true,
|
|
799
|
-
secondary: true
|
|
800
|
-
}))),
|
|
801
|
-
container = _render88.container;
|
|
802
|
-
|
|
803
|
-
expect(container).toMatchSnapshot();
|
|
804
|
-
});
|
|
805
|
-
it('should match snapshot with text Button with Icon', function () {
|
|
806
|
-
var _render89 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Text, {
|
|
807
|
-
inverted: true,
|
|
808
|
-
icon: Booking,
|
|
809
|
-
secondary: true
|
|
810
|
-
}))),
|
|
811
|
-
container = _render89.container;
|
|
812
|
-
|
|
813
|
-
expect(container).toMatchSnapshot();
|
|
814
|
-
});
|
|
815
|
-
it('should match snapshot with text Button with Icon', function () {
|
|
816
|
-
var _render90 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Text, {
|
|
817
|
-
inverted: true,
|
|
818
|
-
icon: Booking,
|
|
819
|
-
secondary: true
|
|
820
|
-
}))),
|
|
821
|
-
container = _render90.container;
|
|
822
|
-
|
|
823
|
-
expect(container).toMatchSnapshot();
|
|
824
|
-
});
|
|
825
|
-
it('should match snapshot with icon Button', function () {
|
|
826
|
-
var _render91 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
827
|
-
inverted: true,
|
|
828
|
-
icon: Booking,
|
|
829
|
-
secondary: true
|
|
830
|
-
}))),
|
|
831
|
-
container = _render91.container;
|
|
832
|
-
|
|
833
|
-
expect(container).toMatchSnapshot();
|
|
834
|
-
});
|
|
835
|
-
it('should match snapshot with icon Button and Loading', function () {
|
|
836
|
-
var _render92 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
837
|
-
inverted: true,
|
|
838
|
-
icon: Booking,
|
|
839
|
-
secondary: true,
|
|
840
|
-
isLoading: true
|
|
841
|
-
}))),
|
|
842
|
-
container = _render92.container;
|
|
843
|
-
|
|
507
|
+
describe("With inverted prop", () => {
|
|
508
|
+
it("should match snapshot with default Button", () => {
|
|
509
|
+
const { container } = render(
|
|
510
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { inverted: true, secondary: true }) })
|
|
511
|
+
);
|
|
512
|
+
expect(container).toMatchSnapshot();
|
|
513
|
+
});
|
|
514
|
+
it("should match snapshot with default Button and Loading", () => {
|
|
515
|
+
const { container } = render(
|
|
516
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { inverted: true, secondary: true, isLoading: true }) })
|
|
517
|
+
);
|
|
518
|
+
expect(container).toMatchSnapshot();
|
|
519
|
+
});
|
|
520
|
+
it("should match snapshot with default Button with Icon", () => {
|
|
521
|
+
const { container } = render(
|
|
522
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { inverted: true, icon: Booking, secondary: true }) })
|
|
523
|
+
);
|
|
524
|
+
expect(container).toMatchSnapshot();
|
|
525
|
+
});
|
|
526
|
+
it("should match snapshot with default Button with Icon and Loading", () => {
|
|
527
|
+
const { container } = render(
|
|
528
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { inverted: true, icon: Booking, secondary: true, isLoading: true }) })
|
|
529
|
+
);
|
|
530
|
+
expect(container).toMatchSnapshot();
|
|
531
|
+
});
|
|
532
|
+
it("should match snapshot with outline Button", () => {
|
|
533
|
+
const { container } = render(
|
|
534
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { inverted: true, secondary: true }) })
|
|
535
|
+
);
|
|
536
|
+
expect(container).toMatchSnapshot();
|
|
537
|
+
});
|
|
538
|
+
it("should match snapshot with outline Button and Loading", () => {
|
|
539
|
+
const { container } = render(
|
|
540
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { inverted: true, secondary: true, isLoading: true }) })
|
|
541
|
+
);
|
|
542
|
+
expect(container).toMatchSnapshot();
|
|
543
|
+
});
|
|
544
|
+
it("should match snapshot with outline Button with Icon", () => {
|
|
545
|
+
const { container } = render(
|
|
546
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { inverted: true, icon: Booking, secondary: true }) })
|
|
547
|
+
);
|
|
548
|
+
expect(container).toMatchSnapshot();
|
|
549
|
+
});
|
|
550
|
+
it("should match snapshot with outline Button with Icon and Loading", () => {
|
|
551
|
+
const { container } = render(
|
|
552
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { inverted: true, icon: Booking, secondary: true, isLoading: true }) })
|
|
553
|
+
);
|
|
554
|
+
expect(container).toMatchSnapshot();
|
|
555
|
+
});
|
|
556
|
+
it("should match snapshot with text Button", () => {
|
|
557
|
+
const { container } = render(
|
|
558
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { inverted: true, secondary: true }) })
|
|
559
|
+
);
|
|
560
|
+
expect(container).toMatchSnapshot();
|
|
561
|
+
});
|
|
562
|
+
it("should match snapshot with text Button with Icon", () => {
|
|
563
|
+
const { container } = render(
|
|
564
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { inverted: true, icon: Booking, secondary: true }) })
|
|
565
|
+
);
|
|
566
|
+
expect(container).toMatchSnapshot();
|
|
567
|
+
});
|
|
568
|
+
it("should match snapshot with text Button with Icon", () => {
|
|
569
|
+
const { container } = render(
|
|
570
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { inverted: true, icon: Booking, secondary: true }) })
|
|
571
|
+
);
|
|
572
|
+
expect(container).toMatchSnapshot();
|
|
573
|
+
});
|
|
574
|
+
it("should match snapshot with icon Button", () => {
|
|
575
|
+
const { container } = render(
|
|
576
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { inverted: true, icon: Booking, secondary: true }) })
|
|
577
|
+
);
|
|
578
|
+
expect(container).toMatchSnapshot();
|
|
579
|
+
});
|
|
580
|
+
it("should match snapshot with icon Button and Loading", () => {
|
|
581
|
+
const { container } = render(
|
|
582
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { inverted: true, icon: Booking, secondary: true, isLoading: true }) })
|
|
583
|
+
);
|
|
844
584
|
expect(container).toMatchSnapshot();
|
|
845
585
|
});
|
|
846
586
|
});
|
|
847
|
-
describe(
|
|
848
|
-
it(
|
|
849
|
-
|
|
850
|
-
small: true,
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
icon: Booking,
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
icon: Booking,
|
|
919
|
-
small: true,
|
|
920
|
-
secondary: true
|
|
921
|
-
}))),
|
|
922
|
-
container = _render100.container;
|
|
923
|
-
|
|
924
|
-
expect(container).toMatchSnapshot();
|
|
925
|
-
});
|
|
926
|
-
it('should match snapshot with outline Button with Icon and Loading', function () {
|
|
927
|
-
var _render101 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Outline, {
|
|
928
|
-
icon: Booking,
|
|
929
|
-
small: true,
|
|
930
|
-
secondary: true,
|
|
931
|
-
isLoading: true
|
|
932
|
-
}))),
|
|
933
|
-
container = _render101.container;
|
|
934
|
-
|
|
935
|
-
expect(container).toMatchSnapshot();
|
|
936
|
-
});
|
|
937
|
-
it('should match snapshot with text Button with Icon', function () {
|
|
938
|
-
var _render102 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Text, {
|
|
939
|
-
icon: Booking,
|
|
940
|
-
small: true,
|
|
941
|
-
secondary: true
|
|
942
|
-
}))),
|
|
943
|
-
container = _render102.container;
|
|
944
|
-
|
|
945
|
-
expect(container).toMatchSnapshot();
|
|
946
|
-
});
|
|
947
|
-
it('should match snapshot with icon Button', function () {
|
|
948
|
-
var _render103 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
949
|
-
icon: Booking,
|
|
950
|
-
small: true,
|
|
951
|
-
secondary: true
|
|
952
|
-
}))),
|
|
953
|
-
container = _render103.container;
|
|
954
|
-
|
|
955
|
-
expect(container).toMatchSnapshot();
|
|
956
|
-
});
|
|
957
|
-
it('should match snapshot with icon Button and Loading', function () {
|
|
958
|
-
var _render104 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
959
|
-
icon: Booking,
|
|
960
|
-
small: true,
|
|
961
|
-
secondary: true,
|
|
962
|
-
isLoading: true
|
|
963
|
-
}))),
|
|
964
|
-
container = _render104.container;
|
|
965
|
-
|
|
587
|
+
describe("With small prop", () => {
|
|
588
|
+
it("should match snapshot with default Button", () => {
|
|
589
|
+
const { container } = render(
|
|
590
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { small: true, secondary: true }) })
|
|
591
|
+
);
|
|
592
|
+
expect(container).toMatchSnapshot();
|
|
593
|
+
});
|
|
594
|
+
it("should match snapshot with default Button and Loading", () => {
|
|
595
|
+
const { container } = render(
|
|
596
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { small: true, secondary: true, isLoading: true }) })
|
|
597
|
+
);
|
|
598
|
+
expect(container).toMatchSnapshot();
|
|
599
|
+
});
|
|
600
|
+
it("should match snapshot with outline Button", () => {
|
|
601
|
+
const { container } = render(
|
|
602
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { small: true, secondary: true }) })
|
|
603
|
+
);
|
|
604
|
+
expect(container).toMatchSnapshot();
|
|
605
|
+
});
|
|
606
|
+
it("should match snapshot with outline Button and Loading", () => {
|
|
607
|
+
const { container } = render(
|
|
608
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { small: true, secondary: true, isLoading: true }) })
|
|
609
|
+
);
|
|
610
|
+
expect(container).toMatchSnapshot();
|
|
611
|
+
});
|
|
612
|
+
it("should match snapshot with text Button", () => {
|
|
613
|
+
const { container } = render(
|
|
614
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { small: true, secondary: true }) })
|
|
615
|
+
);
|
|
616
|
+
expect(container).toMatchSnapshot();
|
|
617
|
+
});
|
|
618
|
+
it("should match snapshot with default Button with Icon", () => {
|
|
619
|
+
const { container } = render(
|
|
620
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { small: true, icon: Booking, secondary: true }) })
|
|
621
|
+
);
|
|
622
|
+
expect(container).toMatchSnapshot();
|
|
623
|
+
});
|
|
624
|
+
it("should match snapshot with default Button with Icon and Loading", () => {
|
|
625
|
+
const { container } = render(
|
|
626
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { small: true, icon: Booking, secondary: true, isLoading: true }) })
|
|
627
|
+
);
|
|
628
|
+
expect(container).toMatchSnapshot();
|
|
629
|
+
});
|
|
630
|
+
it("should match snapshot with outline Button with Icon", () => {
|
|
631
|
+
const { container } = render(
|
|
632
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { icon: Booking, small: true, secondary: true }) })
|
|
633
|
+
);
|
|
634
|
+
expect(container).toMatchSnapshot();
|
|
635
|
+
});
|
|
636
|
+
it("should match snapshot with outline Button with Icon and Loading", () => {
|
|
637
|
+
const { container } = render(
|
|
638
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { icon: Booking, small: true, secondary: true, isLoading: true }) })
|
|
639
|
+
);
|
|
640
|
+
expect(container).toMatchSnapshot();
|
|
641
|
+
});
|
|
642
|
+
it("should match snapshot with text Button with Icon", () => {
|
|
643
|
+
const { container } = render(
|
|
644
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { icon: Booking, small: true, secondary: true }) })
|
|
645
|
+
);
|
|
646
|
+
expect(container).toMatchSnapshot();
|
|
647
|
+
});
|
|
648
|
+
it("should match snapshot with icon Button", () => {
|
|
649
|
+
const { container } = render(
|
|
650
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking, small: true, secondary: true }) })
|
|
651
|
+
);
|
|
652
|
+
expect(container).toMatchSnapshot();
|
|
653
|
+
});
|
|
654
|
+
it("should match snapshot with icon Button and Loading", () => {
|
|
655
|
+
const { container } = render(
|
|
656
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking, small: true, secondary: true, isLoading: true }) })
|
|
657
|
+
);
|
|
966
658
|
expect(container).toMatchSnapshot();
|
|
967
659
|
});
|
|
968
660
|
});
|
|
969
|
-
describe(
|
|
970
|
-
it(
|
|
971
|
-
|
|
972
|
-
full: true,
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
icon: Booking,
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
var _render111 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button, {
|
|
1029
|
-
full: true,
|
|
1030
|
-
icon: Booking,
|
|
1031
|
-
secondary: true,
|
|
1032
|
-
isLoading: true
|
|
1033
|
-
}))),
|
|
1034
|
-
container = _render111.container;
|
|
1035
|
-
|
|
1036
|
-
expect(container).toMatchSnapshot();
|
|
1037
|
-
});
|
|
1038
|
-
it('should match snapshot with outline Button with Icon', function () {
|
|
1039
|
-
var _render112 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Outline, {
|
|
1040
|
-
full: true,
|
|
1041
|
-
icon: Booking,
|
|
1042
|
-
secondary: true
|
|
1043
|
-
}))),
|
|
1044
|
-
container = _render112.container;
|
|
1045
|
-
|
|
1046
|
-
expect(container).toMatchSnapshot();
|
|
1047
|
-
});
|
|
1048
|
-
it('should match snapshot with outline Button with Icon and Loading', function () {
|
|
1049
|
-
var _render113 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Outline, {
|
|
1050
|
-
full: true,
|
|
1051
|
-
icon: Booking,
|
|
1052
|
-
secondary: true,
|
|
1053
|
-
isLoading: true
|
|
1054
|
-
}))),
|
|
1055
|
-
container = _render113.container;
|
|
1056
|
-
|
|
1057
|
-
expect(container).toMatchSnapshot();
|
|
1058
|
-
});
|
|
1059
|
-
it('should match snapshot with text Button with Icon', function () {
|
|
1060
|
-
var _render114 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Text, {
|
|
1061
|
-
full: true,
|
|
1062
|
-
icon: Booking,
|
|
1063
|
-
secondary: true
|
|
1064
|
-
}))),
|
|
1065
|
-
container = _render114.container;
|
|
1066
|
-
|
|
661
|
+
describe("With full prop", () => {
|
|
662
|
+
it("should match snapshot with default Button", () => {
|
|
663
|
+
const { container } = render(
|
|
664
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { full: true, secondary: true }) })
|
|
665
|
+
);
|
|
666
|
+
expect(container).toMatchSnapshot();
|
|
667
|
+
});
|
|
668
|
+
it("should match snapshot with default Button and Loading", () => {
|
|
669
|
+
const { container } = render(
|
|
670
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { full: true, secondary: true, isLoading: true }) })
|
|
671
|
+
);
|
|
672
|
+
expect(container).toMatchSnapshot();
|
|
673
|
+
});
|
|
674
|
+
it("should match snapshot with outline Button", () => {
|
|
675
|
+
const { container } = render(
|
|
676
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { full: true, secondary: true }) })
|
|
677
|
+
);
|
|
678
|
+
expect(container).toMatchSnapshot();
|
|
679
|
+
});
|
|
680
|
+
it("should match snapshot with outline Button and Loading", () => {
|
|
681
|
+
const { container } = render(
|
|
682
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { full: true, secondary: true, isLoading: true }) })
|
|
683
|
+
);
|
|
684
|
+
expect(container).toMatchSnapshot();
|
|
685
|
+
});
|
|
686
|
+
it("should match snapshot with text Button", () => {
|
|
687
|
+
const { container } = render(
|
|
688
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { full: true, secondary: true }) })
|
|
689
|
+
);
|
|
690
|
+
expect(container).toMatchSnapshot();
|
|
691
|
+
});
|
|
692
|
+
it("should match snapshot with default Button with Icon", () => {
|
|
693
|
+
const { container } = render(
|
|
694
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { full: true, icon: Booking, secondary: true }) })
|
|
695
|
+
);
|
|
696
|
+
expect(container).toMatchSnapshot();
|
|
697
|
+
});
|
|
698
|
+
it("should match snapshot with default Button with Icon and Loading", () => {
|
|
699
|
+
const { container } = render(
|
|
700
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { full: true, icon: Booking, secondary: true, isLoading: true }) })
|
|
701
|
+
);
|
|
702
|
+
expect(container).toMatchSnapshot();
|
|
703
|
+
});
|
|
704
|
+
it("should match snapshot with outline Button with Icon", () => {
|
|
705
|
+
const { container } = render(
|
|
706
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { full: true, icon: Booking, secondary: true }) })
|
|
707
|
+
);
|
|
708
|
+
expect(container).toMatchSnapshot();
|
|
709
|
+
});
|
|
710
|
+
it("should match snapshot with outline Button with Icon and Loading", () => {
|
|
711
|
+
const { container } = render(
|
|
712
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { full: true, icon: Booking, secondary: true, isLoading: true }) })
|
|
713
|
+
);
|
|
714
|
+
expect(container).toMatchSnapshot();
|
|
715
|
+
});
|
|
716
|
+
it("should match snapshot with text Button with Icon", () => {
|
|
717
|
+
const { container } = render(
|
|
718
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { full: true, icon: Booking, secondary: true }) })
|
|
719
|
+
);
|
|
1067
720
|
expect(container).toMatchSnapshot();
|
|
1068
721
|
});
|
|
1069
722
|
});
|
|
1070
723
|
});
|
|
1071
|
-
describe(
|
|
1072
|
-
describe(
|
|
1073
|
-
it(
|
|
1074
|
-
|
|
1075
|
-
disabled: true
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
expect(container).toMatchSnapshot();
|
|
1114
|
-
});
|
|
1115
|
-
it(
|
|
1116
|
-
|
|
1117
|
-
disabled: true
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
icon: Booking
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
}
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
expect(container).toMatchSnapshot();
|
|
1150
|
-
});
|
|
1151
|
-
it('should match snapshot with outline Button with Icon and Loading', function () {
|
|
1152
|
-
var _render124 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Outline, {
|
|
1153
|
-
disabled: true,
|
|
1154
|
-
icon: Booking,
|
|
1155
|
-
isLoading: true
|
|
1156
|
-
}))),
|
|
1157
|
-
container = _render124.container;
|
|
1158
|
-
|
|
1159
|
-
expect(container).toMatchSnapshot();
|
|
1160
|
-
});
|
|
1161
|
-
it('should match snapshot with text Button with Icon', function () {
|
|
1162
|
-
var _render125 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Text, {
|
|
1163
|
-
disabled: true,
|
|
1164
|
-
icon: Booking
|
|
1165
|
-
}))),
|
|
1166
|
-
container = _render125.container;
|
|
1167
|
-
|
|
1168
|
-
expect(container).toMatchSnapshot();
|
|
1169
|
-
});
|
|
1170
|
-
it('should match snapshot with icon Button', function () {
|
|
1171
|
-
var _render126 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
1172
|
-
disabled: true,
|
|
1173
|
-
icon: Booking
|
|
1174
|
-
}))),
|
|
1175
|
-
container = _render126.container;
|
|
1176
|
-
|
|
1177
|
-
expect(container).toMatchSnapshot();
|
|
1178
|
-
});
|
|
1179
|
-
it('should match snapshot with icon Button and Loading', function () {
|
|
1180
|
-
var _render127 = render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Icon, {
|
|
1181
|
-
disabled: true,
|
|
1182
|
-
icon: Booking,
|
|
1183
|
-
isLoading: true
|
|
1184
|
-
}))),
|
|
1185
|
-
container = _render127.container;
|
|
1186
|
-
|
|
724
|
+
describe("disabled buttons", () => {
|
|
725
|
+
describe("With disabled prop", () => {
|
|
726
|
+
it("should match snapshot with default Button", () => {
|
|
727
|
+
const { container } = render(
|
|
728
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { disabled: true }) })
|
|
729
|
+
);
|
|
730
|
+
expect(container).toMatchSnapshot();
|
|
731
|
+
});
|
|
732
|
+
it("should match snapshot with default Button and Loading", () => {
|
|
733
|
+
const { container } = render(
|
|
734
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { disabled: true, isLoading: true }) })
|
|
735
|
+
);
|
|
736
|
+
expect(container).toMatchSnapshot();
|
|
737
|
+
});
|
|
738
|
+
it("should match snapshot with outline Button", () => {
|
|
739
|
+
const { container } = render(
|
|
740
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { disabled: true }) })
|
|
741
|
+
);
|
|
742
|
+
expect(container).toMatchSnapshot();
|
|
743
|
+
});
|
|
744
|
+
it("should match snapshot with outline Button and Loading", () => {
|
|
745
|
+
const { container } = render(
|
|
746
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { disabled: true, isLoading: true }) })
|
|
747
|
+
);
|
|
748
|
+
expect(container).toMatchSnapshot();
|
|
749
|
+
});
|
|
750
|
+
it("should match snapshot with text Button", () => {
|
|
751
|
+
const { container } = render(
|
|
752
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { disabled: true }) })
|
|
753
|
+
);
|
|
754
|
+
expect(container).toMatchSnapshot();
|
|
755
|
+
});
|
|
756
|
+
it("should match snapshot with link Button", () => {
|
|
757
|
+
const { container } = render(
|
|
758
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Link, { disabled: true }) })
|
|
759
|
+
);
|
|
760
|
+
expect(container).toMatchSnapshot();
|
|
761
|
+
});
|
|
762
|
+
it("should match snapshot with default Button with Icon", () => {
|
|
763
|
+
const { container } = render(
|
|
764
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { disabled: true, icon: Booking }) })
|
|
765
|
+
);
|
|
766
|
+
expect(container).toMatchSnapshot();
|
|
767
|
+
});
|
|
768
|
+
it("should match snapshot with default Button with Icon and Loading", () => {
|
|
769
|
+
const { container } = render(
|
|
770
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { disabled: true, icon: Booking, isLoading: true }) })
|
|
771
|
+
);
|
|
772
|
+
expect(container).toMatchSnapshot();
|
|
773
|
+
});
|
|
774
|
+
it("should match snapshot with outline Button with Icon", () => {
|
|
775
|
+
const { container } = render(
|
|
776
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { disabled: true, icon: Booking }) })
|
|
777
|
+
);
|
|
778
|
+
expect(container).toMatchSnapshot();
|
|
779
|
+
});
|
|
780
|
+
it("should match snapshot with outline Button with Icon and Loading", () => {
|
|
781
|
+
const { container } = render(
|
|
782
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { disabled: true, icon: Booking, isLoading: true }) })
|
|
783
|
+
);
|
|
784
|
+
expect(container).toMatchSnapshot();
|
|
785
|
+
});
|
|
786
|
+
it("should match snapshot with text Button with Icon", () => {
|
|
787
|
+
const { container } = render(
|
|
788
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { disabled: true, icon: Booking }) })
|
|
789
|
+
);
|
|
790
|
+
expect(container).toMatchSnapshot();
|
|
791
|
+
});
|
|
792
|
+
it("should match snapshot with icon Button", () => {
|
|
793
|
+
const { container } = render(
|
|
794
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { disabled: true, icon: Booking }) })
|
|
795
|
+
);
|
|
796
|
+
expect(container).toMatchSnapshot();
|
|
797
|
+
});
|
|
798
|
+
it("should match snapshot with icon Button and Loading", () => {
|
|
799
|
+
const { container } = render(
|
|
800
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { disabled: true, icon: Booking, isLoading: true }) })
|
|
801
|
+
);
|
|
1187
802
|
expect(container).toMatchSnapshot();
|
|
1188
803
|
});
|
|
1189
804
|
});
|
|
1190
805
|
});
|
|
1191
806
|
});
|
|
1192
|
-
describe(
|
|
1193
|
-
it(
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
getByText = _render128.getByText;
|
|
1200
|
-
|
|
1201
|
-
fireEvent.click(getByText('Button'));
|
|
807
|
+
describe("onClick prop", () => {
|
|
808
|
+
it("should call onClick function when click on Button", () => {
|
|
809
|
+
const onClickMock = jest.fn();
|
|
810
|
+
const { getByText } = render(
|
|
811
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { onClick: onClickMock, children: "Button" }) })
|
|
812
|
+
);
|
|
813
|
+
fireEvent.click(getByText("Button"));
|
|
1202
814
|
expect(onClickMock).toHaveBeenCalled();
|
|
1203
815
|
});
|
|
1204
|
-
it(
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
getByText = _render129.getByText;
|
|
1211
|
-
|
|
1212
|
-
fireEvent.click(getByText('Button.Outline'));
|
|
816
|
+
it("should call onClick function when click on Button.Outline", () => {
|
|
817
|
+
const onClickMock = jest.fn();
|
|
818
|
+
const { getByText } = render(
|
|
819
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { onClick: onClickMock, children: "Button.Outline" }) })
|
|
820
|
+
);
|
|
821
|
+
fireEvent.click(getByText("Button.Outline"));
|
|
1213
822
|
expect(onClickMock).toHaveBeenCalled();
|
|
1214
823
|
});
|
|
1215
|
-
it(
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
getByText = _render130.getByText;
|
|
1222
|
-
|
|
1223
|
-
fireEvent.click(getByText('Button.Text'));
|
|
824
|
+
it("should call onClick function when click on Button.Text", () => {
|
|
825
|
+
const onClickMock = jest.fn();
|
|
826
|
+
const { getByText } = render(
|
|
827
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Text, { onClick: onClickMock, children: "Button.Text" }) })
|
|
828
|
+
);
|
|
829
|
+
fireEvent.click(getByText("Button.Text"));
|
|
1224
830
|
expect(onClickMock).toHaveBeenCalled();
|
|
1225
831
|
});
|
|
1226
|
-
it(
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
}))),
|
|
1233
|
-
getByRole = _render131.getByRole;
|
|
1234
|
-
|
|
1235
|
-
fireEvent.click(getByRole('button'));
|
|
832
|
+
it("should call onClick function when click on Button.Icon", () => {
|
|
833
|
+
const onClickMock = jest.fn();
|
|
834
|
+
const { getByRole } = render(
|
|
835
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Close, onClick: onClickMock }) })
|
|
836
|
+
);
|
|
837
|
+
fireEvent.click(getByRole("button"));
|
|
1236
838
|
expect(onClickMock).toHaveBeenCalled();
|
|
1237
839
|
});
|
|
1238
|
-
it(
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
}, "Button"))),
|
|
1245
|
-
getByText = _render132.getByText;
|
|
1246
|
-
|
|
1247
|
-
fireEvent.click(getByText('Button'));
|
|
840
|
+
it("should not call onClick function when click on Button disabled", () => {
|
|
841
|
+
const onClickMock = jest.fn();
|
|
842
|
+
const { getByText } = render(
|
|
843
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { disabled: true, onClick: onClickMock, children: "Button" }) })
|
|
844
|
+
);
|
|
845
|
+
fireEvent.click(getByText("Button"));
|
|
1248
846
|
expect(onClickMock).not.toHaveBeenCalled();
|
|
1249
847
|
});
|
|
1250
|
-
it(
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
}, "Button"))),
|
|
1257
|
-
getByText = _render133.getByText;
|
|
1258
|
-
|
|
1259
|
-
fireEvent.click(getByText('Button'));
|
|
848
|
+
it("should not call onClick function when click on Button is loading", () => {
|
|
849
|
+
const onClickMock = jest.fn();
|
|
850
|
+
const { getByText } = render(
|
|
851
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { isLoading: true, onClick: onClickMock, children: "Button" }) })
|
|
852
|
+
);
|
|
853
|
+
fireEvent.click(getByText("Button"));
|
|
1260
854
|
expect(onClickMock).not.toHaveBeenCalled();
|
|
1261
855
|
});
|
|
1262
856
|
});
|
|
1263
|
-
describe(
|
|
1264
|
-
describe(
|
|
1265
|
-
it(
|
|
1266
|
-
render(
|
|
1267
|
-
isLoading: true
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
expect(text).toHaveStyle(
|
|
1271
|
-
});
|
|
1272
|
-
it(
|
|
1273
|
-
render(
|
|
1274
|
-
icon: Booking,
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button, {
|
|
1286
|
-
isLoading: true
|
|
1287
|
-
}, "Button")));
|
|
1288
|
-
var spinner = screen.getByLabelText('loading-icon');
|
|
857
|
+
describe("Loading prop", () => {
|
|
858
|
+
describe("Default Button", () => {
|
|
859
|
+
it("Text should not to be visible", () => {
|
|
860
|
+
render(
|
|
861
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { isLoading: true, children: "Button" }) })
|
|
862
|
+
);
|
|
863
|
+
const text = screen.getByText("Button");
|
|
864
|
+
expect(text).toHaveStyle("color: transparent");
|
|
865
|
+
});
|
|
866
|
+
it("Icon should not to be visible", () => {
|
|
867
|
+
render(
|
|
868
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { icon: Booking, isLoading: true, "aria-label": "button", children: "Button" }) })
|
|
869
|
+
);
|
|
870
|
+
const button = screen.getByRole("button", { name: "button" });
|
|
871
|
+
const svg = within(button).getByRole("img");
|
|
872
|
+
expect(svg).toHaveStyle("fill: transparent");
|
|
873
|
+
});
|
|
874
|
+
it("Spinner should to be rendered", () => {
|
|
875
|
+
render(
|
|
876
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { isLoading: true, children: "Button" }) })
|
|
877
|
+
);
|
|
878
|
+
const spinner = screen.getByLabelText("loading-icon");
|
|
1289
879
|
expect(spinner).toBeVisible();
|
|
1290
880
|
});
|
|
1291
|
-
it(
|
|
1292
|
-
render(
|
|
1293
|
-
isLoading: true,
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
var button = screen.getByRole('button', {
|
|
1297
|
-
name: 'button'
|
|
1298
|
-
});
|
|
881
|
+
it("Button should to be disabled", () => {
|
|
882
|
+
render(
|
|
883
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button, { isLoading: true, "aria-label": "button", children: "Button" }) })
|
|
884
|
+
);
|
|
885
|
+
const button = screen.getByRole("button", { name: "button" });
|
|
1299
886
|
expect(button).toBeDisabled();
|
|
1300
887
|
});
|
|
1301
888
|
});
|
|
1302
|
-
describe(
|
|
1303
|
-
it(
|
|
1304
|
-
render(
|
|
1305
|
-
isLoading: true
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
expect(text).toHaveStyle(
|
|
1309
|
-
});
|
|
1310
|
-
it(
|
|
1311
|
-
render(
|
|
1312
|
-
icon: Booking,
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
render( /*#__PURE__*/React.createElement(ThemeProvider, null, /*#__PURE__*/React.createElement(Button.Outline, {
|
|
1324
|
-
isLoading: true
|
|
1325
|
-
}, "Button")));
|
|
1326
|
-
var spinner = screen.getByLabelText('loading-icon');
|
|
889
|
+
describe("Outline Button", () => {
|
|
890
|
+
it("Text should not to be visible", () => {
|
|
891
|
+
render(
|
|
892
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { isLoading: true, children: "Button" }) })
|
|
893
|
+
);
|
|
894
|
+
const text = screen.getByText("Button");
|
|
895
|
+
expect(text).toHaveStyle("color: transparent");
|
|
896
|
+
});
|
|
897
|
+
it("Icon should not to be visible", () => {
|
|
898
|
+
render(
|
|
899
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { icon: Booking, isLoading: true, "aria-label": "button", children: "Button" }) })
|
|
900
|
+
);
|
|
901
|
+
const button = screen.getByRole("button", { name: "button" });
|
|
902
|
+
const svg = within(button).getByRole("img");
|
|
903
|
+
expect(svg).toHaveStyle("fill: transparent");
|
|
904
|
+
});
|
|
905
|
+
it("Spinner should to be rendered", () => {
|
|
906
|
+
render(
|
|
907
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { isLoading: true, children: "Button" }) })
|
|
908
|
+
);
|
|
909
|
+
const spinner = screen.getByLabelText("loading-icon");
|
|
1327
910
|
expect(spinner).toBeVisible();
|
|
1328
911
|
});
|
|
1329
|
-
it(
|
|
1330
|
-
render(
|
|
1331
|
-
isLoading: true,
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
var button = screen.getByRole('button', {
|
|
1335
|
-
name: 'button'
|
|
1336
|
-
});
|
|
912
|
+
it("Button should to be disabled", () => {
|
|
913
|
+
render(
|
|
914
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Outline, { isLoading: true, "aria-label": "button", children: "Button" }) })
|
|
915
|
+
);
|
|
916
|
+
const button = screen.getByRole("button", { name: "button" });
|
|
1337
917
|
expect(button).toBeDisabled();
|
|
1338
918
|
});
|
|
1339
919
|
});
|
|
1340
|
-
describe(
|
|
1341
|
-
it(
|
|
1342
|
-
render(
|
|
1343
|
-
icon: Booking,
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
});
|
|
1350
|
-
var svg = within(button).queryByRole('img');
|
|
920
|
+
describe("Icon Button", () => {
|
|
921
|
+
it("Icon should not to be visible", () => {
|
|
922
|
+
render(
|
|
923
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking, isLoading: true, "aria-label": "button" }) })
|
|
924
|
+
);
|
|
925
|
+
const button = screen.getByRole("button", {
|
|
926
|
+
name: "button"
|
|
927
|
+
});
|
|
928
|
+
const svg = within(button).queryByRole("img");
|
|
1351
929
|
expect(svg).toBeNull();
|
|
1352
930
|
});
|
|
1353
|
-
it(
|
|
1354
|
-
render(
|
|
1355
|
-
icon: Booking,
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
var spinner = screen.getByLabelText('loading-icon');
|
|
931
|
+
it("Spinner should to be rendered", () => {
|
|
932
|
+
render(
|
|
933
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking, isLoading: true }) })
|
|
934
|
+
);
|
|
935
|
+
const spinner = screen.getByLabelText("loading-icon");
|
|
1359
936
|
expect(spinner).toBeVisible();
|
|
1360
937
|
});
|
|
1361
|
-
it(
|
|
1362
|
-
render(
|
|
1363
|
-
icon: Booking,
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
})));
|
|
1367
|
-
var button = screen.getByRole('button', {
|
|
1368
|
-
name: 'button'
|
|
1369
|
-
});
|
|
938
|
+
it("Button should to be disabled", () => {
|
|
939
|
+
render(
|
|
940
|
+
/* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(Button.Icon, { icon: Booking, isLoading: true, "aria-label": "button" }) })
|
|
941
|
+
);
|
|
942
|
+
const button = screen.getByRole("button", { name: "button" });
|
|
1370
943
|
expect(button).toBeDisabled();
|
|
1371
944
|
});
|
|
1372
945
|
});
|
|
1373
946
|
});
|
|
1374
947
|
});
|
|
1375
|
-
});
|
|
948
|
+
});
|