@openedx/paragon 22.6.0 → 23.0.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +61 -21
- package/bin/paragon-scripts.js +128 -9
- package/dist/ActionRow/_index.scss +2 -4
- package/dist/Alert/index.scss +41 -32
- package/dist/Annotation/_mixins.scss +104 -0
- package/dist/Annotation/index.scss +130 -103
- package/dist/Avatar/index.scss +18 -20
- package/dist/AvatarButton/index.scss +3 -5
- package/dist/Badge/index.scss +112 -2
- package/dist/Breadcrumb/index.scss +14 -16
- package/dist/Bubble/index.scss +25 -12
- package/dist/Button/_mixins.scss +14 -0
- package/dist/Button/button-group.scss +126 -0
- package/dist/Button/index.js +15 -40
- package/dist/Button/index.js.map +1 -1
- package/dist/Button/index.scss +855 -372
- package/dist/Card/card-bootstrap.scss +168 -0
- package/dist/Card/index.scss +78 -79
- package/dist/Carousel/index.scss +168 -2
- package/dist/Chip/ChipIcon.d.ts +2 -2
- package/dist/Chip/ChipIcon.js.map +1 -1
- package/dist/Chip/index.d.ts +2 -2
- package/dist/Chip/index.js +2 -2
- package/dist/Chip/index.js.map +1 -1
- package/dist/Chip/index.scss +48 -38
- package/dist/Chip/mixins.scss +8 -3
- package/dist/ChipCarousel/index.scss +4 -4
- package/dist/CloseButton/index.scss +31 -2
- package/dist/Code/index.scss +47 -2
- package/dist/Collapsible/index.scss +15 -15
- package/dist/ColorPicker/index.scss +9 -11
- package/dist/DataTable/CollapsibleButtonGroup.js +2 -2
- package/dist/DataTable/CollapsibleButtonGroup.js.map +1 -1
- package/dist/DataTable/index.scss +48 -50
- package/dist/Dropdown/dropdown-bootstrap.scss +181 -0
- package/dist/Dropdown/index.js +0 -2
- package/dist/Dropdown/index.js.map +1 -1
- package/dist/Dropdown/index.scss +11 -12
- package/dist/Dropzone/index.scss +12 -14
- package/dist/Form/_FormText.scss +8 -8
- package/dist/Form/_bootstrap-custom-forms.scss +551 -0
- package/dist/Form/_bootstrap-forms.scss +381 -0
- package/dist/Form/_index.scss +168 -146
- package/dist/Form/_input-group.scss +188 -0
- package/dist/Form/_mixins.scss +216 -3
- package/dist/Hyperlink/index.js +32 -20
- package/dist/Hyperlink/index.js.map +1 -1
- package/dist/Hyperlink/index.scss +1 -1
- package/dist/Icon/index.d.ts +2 -4
- package/dist/Icon/index.js +1 -1
- package/dist/Icon/index.js.map +1 -1
- package/dist/Icon/index.scss +10 -12
- package/dist/IconButton/_mixins.scss +4 -0
- package/dist/IconButton/index.js +5 -11
- package/dist/IconButton/index.js.map +1 -1
- package/dist/IconButton/index.scss +387 -74
- package/dist/IconButtonToggle/index.scss +1 -1
- package/dist/Image/index.scss +53 -2
- package/dist/Menu/index.scss +25 -27
- package/dist/Modal/_ModalDialog.scss +52 -54
- package/dist/Modal/index.scss +6 -73
- package/dist/Nav/_mixins.scss +4 -4
- package/dist/Nav/index.scss +70 -66
- package/dist/Navbar/index.scss +276 -2
- package/dist/OverflowScroll/data/useOverflowScrollElementAttributes.js +3 -3
- package/dist/Overlay/index.js +2 -3
- package/dist/Overlay/index.js.map +1 -1
- package/dist/PageBanner/index.scss +17 -21
- package/dist/Pagination/index.scss +32 -34
- package/dist/Pagination/pagination-bootstrap.scss +83 -0
- package/dist/Popover/index.scss +9 -10
- package/dist/Popover/popover-bootstrap.scss +198 -0
- package/dist/ProductTour/Checkpoint.scss +71 -43
- package/dist/ProgressBar/_mixins.scss +22 -0
- package/dist/ProgressBar/bootstrap-progress.scss +49 -0
- package/dist/ProgressBar/index.scss +28 -36
- package/dist/Scrollable/index.scss +2 -2
- package/dist/SearchField/SearchFieldInput.js +2 -2
- package/dist/SearchField/SearchFieldInput.js.map +1 -1
- package/dist/SearchField/index.scss +15 -17
- package/dist/SelectableBox/index.scss +11 -13
- package/dist/Sheet/index.scss +10 -10
- package/dist/Spinner/index.scss +57 -2
- package/dist/Stack/index.scss +1 -3
- package/dist/Stepper/index.scss +20 -20
- package/dist/Sticky/index.scss +4 -6
- package/dist/Tabs/index.js +0 -2
- package/dist/Tabs/index.js.map +1 -1
- package/dist/Tabs/index.scss +29 -25
- package/dist/Toast/ToastContainer.scss +9 -11
- package/dist/Toast/bootstrap-toast.scss +46 -0
- package/dist/Toast/index.scss +9 -10
- package/dist/Tooltip/index.scss +136 -10
- package/dist/ValidationMessage/index.scss +1 -1
- package/dist/core.css +16777 -0
- package/dist/core.css.map +1 -0
- package/dist/core.min.css +2 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -18
- package/dist/index.scss +0 -4
- package/dist/light.css +4098 -0
- package/dist/light.css.map +1 -0
- package/dist/light.min.css +2 -0
- package/dist/theme-urls.json +21 -0
- package/dist/utils/breakpoints.js +1 -1
- package/lib/build-scss.js +188 -0
- package/lib/build-tokens.js +133 -0
- package/lib/help.js +36 -23
- package/lib/replace-variables.js +38 -0
- package/lib/utils.js +30 -0
- package/package.json +30 -14
- package/src/ActionRow/_index.scss +2 -4
- package/src/Alert/index.scss +41 -32
- package/src/Annotation/_mixins.scss +104 -0
- package/src/Annotation/index.scss +130 -103
- package/src/Avatar/index.scss +18 -20
- package/src/AvatarButton/index.scss +3 -5
- package/src/Badge/index.scss +112 -2
- package/src/Breadcrumb/index.scss +14 -16
- package/src/Bubble/index.scss +25 -12
- package/src/Button/{Button.test.tsx → Button.test.jsx} +2 -14
- package/src/Button/README.md +0 -84
- package/src/Button/__snapshots__/{Button.test.tsx.snap → Button.test.jsx.snap} +2 -19
- package/src/Button/_mixins.scss +14 -0
- package/src/Button/button-group.scss +126 -0
- package/src/Button/index.jsx +113 -0
- package/src/Button/index.scss +855 -372
- package/src/Card/card-bootstrap.scss +168 -0
- package/src/Card/index.scss +78 -79
- package/src/Carousel/index.scss +168 -2
- package/src/Chip/ChipIcon.tsx +1 -1
- package/src/Chip/index.scss +48 -38
- package/src/Chip/index.tsx +5 -5
- package/src/Chip/mixins.scss +8 -3
- package/src/ChipCarousel/index.scss +4 -4
- package/src/CloseButton/index.scss +31 -2
- package/src/Code/index.scss +47 -2
- package/src/Collapsible/index.scss +15 -15
- package/src/ColorPicker/index.scss +9 -11
- package/src/DataTable/CollapsibleButtonGroup.jsx +2 -2
- package/src/DataTable/index.scss +48 -50
- package/src/Dropdown/README.md +0 -93
- package/src/Dropdown/dropdown-bootstrap.scss +181 -0
- package/src/Dropdown/index.jsx +0 -2
- package/src/Dropdown/index.scss +11 -12
- package/src/Dropzone/index.scss +12 -14
- package/src/Form/_FormText.scss +8 -8
- package/src/Form/_bootstrap-custom-forms.scss +551 -0
- package/src/Form/_bootstrap-forms.scss +381 -0
- package/src/Form/_index.scss +168 -146
- package/src/Form/_input-group.scss +188 -0
- package/src/Form/_mixins.scss +216 -3
- package/src/Hyperlink/{Hyperlink.test.tsx → Hyperlink.test.jsx} +10 -21
- package/src/Hyperlink/{index.tsx → index.jsx} +37 -41
- package/src/Hyperlink/index.scss +1 -1
- package/src/Icon/index.d.ts +2 -4
- package/src/Icon/index.jsx +1 -1
- package/src/Icon/index.scss +10 -12
- package/src/IconButton/README.md +1 -15
- package/src/IconButton/__snapshots__/IconButton.test.jsx.snap +5 -28
- package/src/IconButton/_mixins.scss +4 -0
- package/src/IconButton/index.jsx +6 -13
- package/src/IconButton/index.scss +387 -74
- package/src/IconButtonToggle/index.scss +1 -1
- package/src/Image/index.scss +53 -2
- package/src/Menu/index.scss +25 -27
- package/src/Modal/_ModalDialog.scss +52 -54
- package/src/Modal/index.scss +6 -73
- package/src/Nav/_mixins.scss +4 -4
- package/src/Nav/index.scss +70 -66
- package/src/Navbar/index.scss +276 -2
- package/src/OverflowScroll/data/useOverflowScrollElementAttributes.js +3 -3
- package/src/Overlay/index.jsx +2 -3
- package/src/PageBanner/index.scss +17 -21
- package/src/Pagination/index.scss +32 -34
- package/src/Pagination/pagination-bootstrap.scss +83 -0
- package/src/Popover/index.scss +9 -10
- package/src/Popover/popover-bootstrap.scss +198 -0
- package/src/ProductTour/Checkpoint.scss +71 -43
- package/src/ProgressBar/_mixins.scss +22 -0
- package/src/ProgressBar/bootstrap-progress.scss +49 -0
- package/src/ProgressBar/index.scss +28 -36
- package/src/Scrollable/index.scss +2 -2
- package/src/SearchField/SearchFieldInput.jsx +2 -2
- package/src/SearchField/__snapshots__/SearchField.test.jsx.snap +12 -8
- package/src/SearchField/index.scss +15 -17
- package/src/SelectableBox/index.scss +11 -13
- package/src/Sheet/index.scss +10 -10
- package/src/Spinner/index.scss +57 -2
- package/src/Stack/index.scss +1 -3
- package/src/Stepper/index.scss +20 -20
- package/src/Sticky/index.scss +4 -6
- package/src/Tabs/README.md +1 -23
- package/src/Tabs/index.jsx +0 -3
- package/src/Tabs/index.scss +29 -25
- package/src/Toast/ToastContainer.scss +9 -11
- package/src/Toast/bootstrap-toast.scss +46 -0
- package/src/Toast/index.scss +9 -10
- package/src/Tooltip/index.scss +136 -10
- package/src/TransitionReplace/README.md +4 -4
- package/src/ValidationMessage/index.scss +1 -1
- package/src/index.d.ts +2 -2
- package/src/index.js +4 -18
- package/src/index.scss +0 -4
- package/src/{setupTest.ts → setupTest.js} +0 -7
- package/src/utils/breakpoints.js +1 -1
- package/styles/css/core/custom-media-breakpoints.css +17 -0
- package/styles/css/core/index.css +2 -0
- package/styles/css/core/variables.css +603 -0
- package/styles/css/themes/light/index.css +2 -0
- package/styles/css/themes/light/utility-classes.css +2454 -0
- package/styles/css/themes/light/variables.css +1644 -0
- package/{scss → styles/scss}/core/_functions.scss +1 -1
- package/styles/scss/core/_grid.scss +21 -0
- package/{scss → styles/scss}/core/_utilities.scss +17 -11
- package/styles/scss/core/_variables.scss +868 -0
- package/styles/scss/core/bootstrap-override/_functions.scss +104 -0
- package/styles/scss/core/bootstrap-override/_mixins.scss +4 -0
- package/styles/scss/core/bootstrap-override/_utilities.scss +4 -0
- package/styles/scss/core/bootstrap-override/bootstrap.scss +2 -0
- package/styles/scss/core/bootstrap-override/mixins/_grid-framework.scss +80 -0
- package/styles/scss/core/bootstrap-override/mixins/_grid.scss +69 -0
- package/styles/scss/core/bootstrap-override/mixins/_list-group.scss +22 -0
- package/styles/scss/core/bootstrap-override/utilities/_background.scss +7 -0
- package/styles/scss/core/bootstrap-override/utilities/_borders.scss +67 -0
- package/styles/scss/core/bootstrap-override/utilities/_spacing.scss +70 -0
- package/styles/scss/core/bootstrap-override/utilities/_text.scss +68 -0
- package/styles/scss/core/core.scss +21 -0
- package/{scss → styles/scss}/core/utilities-only.scss +1 -0
- package/tokens/README.md +157 -0
- package/tokens/css-utilities.js +56 -0
- package/tokens/map-scss-to-css.js +24 -0
- package/tokens/replace-variables.js +32 -0
- package/tokens/sass-helpers.js +98 -0
- package/tokens/src/core/alias/size.json +15 -0
- package/tokens/src/core/components/ActionRow.json +10 -0
- package/tokens/src/core/components/Alert.json +30 -0
- package/tokens/src/core/components/Annotation.json +25 -0
- package/tokens/src/core/components/Avatar.json +17 -0
- package/tokens/src/core/components/AvatarButton.json +11 -0
- package/tokens/src/core/components/Badge.json +33 -0
- package/tokens/src/core/components/Breadcrumb.json +23 -0
- package/tokens/src/core/components/Bubble.json +10 -0
- package/tokens/src/core/components/Button/core.json +105 -0
- package/tokens/src/core/components/Card.json +96 -0
- package/tokens/src/core/components/Carousel.json +37 -0
- package/tokens/src/core/components/Chip.json +41 -0
- package/tokens/src/core/components/ChipCarousel.json +15 -0
- package/tokens/src/core/components/CloseButton.json +14 -0
- package/tokens/src/core/components/Code.json +34 -0
- package/tokens/src/core/components/Collapsible.json +29 -0
- package/tokens/src/core/components/ColorPicker.json +8 -0
- package/tokens/src/core/components/Container.json +13 -0
- package/tokens/src/core/components/DataTable.json +27 -0
- package/tokens/src/core/components/Dropdown.json +67 -0
- package/tokens/src/core/components/Dropzone.json +21 -0
- package/tokens/src/core/components/Form/other.json +14 -0
- package/tokens/src/core/components/Form/size.json +229 -0
- package/tokens/src/core/components/Form/spacing.json +155 -0
- package/tokens/src/core/components/Form/transition.json +16 -0
- package/tokens/src/core/components/Form/typography.json +122 -0
- package/tokens/src/core/components/Icon.json +11 -0
- package/tokens/src/core/components/IconButton.json +15 -0
- package/tokens/src/core/components/Image.json +28 -0
- package/tokens/src/core/components/Menu.json +48 -0
- package/tokens/src/core/components/Modal.json +47 -0
- package/tokens/src/core/components/Nav.json +52 -0
- package/tokens/src/core/components/Navbar.json +70 -0
- package/tokens/src/core/components/Pagination.json +66 -0
- package/tokens/src/core/components/Popover.json +48 -0
- package/tokens/src/core/components/ProductTour.json +32 -0
- package/tokens/src/core/components/ProgressBar.json +39 -0
- package/tokens/src/core/components/SearchField.json +23 -0
- package/tokens/src/core/components/SelectableBox.json +9 -0
- package/tokens/src/core/components/Sheet.json +10 -0
- package/tokens/src/core/components/Spinner.json +19 -0
- package/tokens/src/core/components/Stack.json +7 -0
- package/tokens/src/core/components/Stepper.json +42 -0
- package/tokens/src/core/components/Sticky.json +7 -0
- package/tokens/src/core/components/Tab.json +19 -0
- package/tokens/src/core/components/Tabs.json +19 -0
- package/tokens/src/core/components/Toast.json +30 -0
- package/tokens/src/core/components/Tooltip.json +33 -0
- package/tokens/src/core/components/general/caret.json +13 -0
- package/tokens/src/core/components/general/headings.json +16 -0
- package/tokens/src/core/components/general/hr.json +10 -0
- package/tokens/src/core/components/general/input.json +51 -0
- package/tokens/src/core/components/general/link.json +30 -0
- package/tokens/src/core/components/general/list.json +26 -0
- package/tokens/src/core/components/general/text.json +24 -0
- package/tokens/src/core/global/breakpoints.json +12 -0
- package/tokens/src/core/global/display.json +22 -0
- package/tokens/src/core/global/elevation.json +19 -0
- package/tokens/src/core/global/other.json +4 -0
- package/tokens/src/core/global/spacing.json +37 -0
- package/tokens/src/core/global/transition.json +14 -0
- package/tokens/src/core/global/typography.json +91 -0
- package/tokens/src/core/utilities/color.json +12 -0
- package/tokens/src/themes/light/alias/color.json +114 -0
- package/tokens/src/themes/light/components/Alert.json +38 -0
- package/tokens/src/themes/light/components/Annotation.json +29 -0
- package/tokens/src/themes/light/components/Avatar.json +7 -0
- package/tokens/src/themes/light/components/Badge.json +186 -0
- package/tokens/src/themes/light/components/Breadcrumb.json +13 -0
- package/tokens/src/themes/light/components/Bubble.json +18 -0
- package/tokens/src/themes/light/components/Button/brand.json +260 -0
- package/tokens/src/themes/light/components/Button/core.json +24 -0
- package/tokens/src/themes/light/components/Button/danger.json +247 -0
- package/tokens/src/themes/light/components/Button/dark.json +230 -0
- package/tokens/src/themes/light/components/Button/info.json +238 -0
- package/tokens/src/themes/light/components/Button/light.json +236 -0
- package/tokens/src/themes/light/components/Button/primary.json +250 -0
- package/tokens/src/themes/light/components/Button/secondary.json +278 -0
- package/tokens/src/themes/light/components/Button/success.json +253 -0
- package/tokens/src/themes/light/components/Button/tertiary.json +109 -0
- package/tokens/src/themes/light/components/Button/warning.json +276 -0
- package/tokens/src/themes/light/components/Card.json +36 -0
- package/tokens/src/themes/light/components/Carousel.json +45 -0
- package/tokens/src/themes/light/components/Chip.json +50 -0
- package/tokens/src/themes/light/components/CloseButton.json +10 -0
- package/tokens/src/themes/light/components/Code.json +23 -0
- package/tokens/src/themes/light/components/DataTable.json +26 -0
- package/tokens/src/themes/light/components/Dropdown.json +41 -0
- package/tokens/src/themes/light/components/Dropzone.json +23 -0
- package/tokens/src/themes/light/components/Form/color.json +270 -0
- package/tokens/src/themes/light/components/Form/elevation.json +76 -0
- package/tokens/src/themes/light/components/Form/other.json +131 -0
- package/tokens/src/themes/light/components/IconButton.json +451 -0
- package/tokens/src/themes/light/components/Image.json +18 -0
- package/tokens/src/themes/light/components/Menu.json +30 -0
- package/tokens/src/themes/light/components/Modal.json +37 -0
- package/tokens/src/themes/light/components/Nav.json +166 -0
- package/tokens/src/themes/light/components/Navbar.json +136 -0
- package/tokens/src/themes/light/components/OverflowScroll.json +9 -0
- package/tokens/src/themes/light/components/PageBanner.json +24 -0
- package/tokens/src/themes/light/components/Pagination.json +45 -0
- package/tokens/src/themes/light/components/Popover.json +55 -0
- package/tokens/src/themes/light/components/ProductTour.json +35 -0
- package/tokens/src/themes/light/components/ProgressBar.json +20 -0
- package/tokens/src/themes/light/components/Scrollable.json +14 -0
- package/tokens/src/themes/light/components/SearchField.json +25 -0
- package/tokens/src/themes/light/components/Sheet.json +22 -0
- package/tokens/src/themes/light/components/Stepper.json +34 -0
- package/tokens/src/themes/light/components/Sticky.json +18 -0
- package/tokens/src/themes/light/components/Tab.json +62 -0
- package/tokens/src/themes/light/components/Toast.json +33 -0
- package/tokens/src/themes/light/components/Tooltip.json +30 -0
- package/tokens/src/themes/light/components/general/body.json +8 -0
- package/tokens/src/themes/light/components/general/headings.json +7 -0
- package/tokens/src/themes/light/components/general/hr.json +15 -0
- package/tokens/src/themes/light/components/general/input.json +18 -0
- package/tokens/src/themes/light/components/general/link.json +109 -0
- package/tokens/src/themes/light/components/general/list.json +38 -0
- package/tokens/src/themes/light/components/general/text.json +12 -0
- package/tokens/src/themes/light/global/color.json +1661 -0
- package/tokens/src/themes/light/global/elevation.json +201 -0
- package/tokens/src/themes/light/global/other.json +4 -0
- package/tokens/style-dictionary.js +229 -0
- package/tokens/utils.js +210 -0
- package/dist/ActionRow/_variables.scss +0 -2
- package/dist/Alert/_variables.scss +0 -24
- package/dist/Annotation/_variables.scss +0 -18
- package/dist/Avatar/_variables.scss +0 -10
- package/dist/AvatarButton/_variables.scss +0 -3
- package/dist/Badge/_variables.scss +0 -16
- package/dist/Breadcrumb/_variables.scss +0 -27
- package/dist/Bubble/_variables.scss +0 -8
- package/dist/Button/_variables.scss +0 -52
- package/dist/Button/deprecated/index.js +0 -149
- package/dist/Button/deprecated/index.js.map +0 -1
- package/dist/Button/index.d.ts +0 -35
- package/dist/Card/_variables.scss +0 -55
- package/dist/Carousel/_variables.scss +0 -27
- package/dist/CheckBox/index.js +0 -102
- package/dist/CheckBox/index.js.map +0 -1
- package/dist/CheckBoxGroup/index.js +0 -15
- package/dist/CheckBoxGroup/index.js.map +0 -1
- package/dist/Chip/_variables.scss +0 -28
- package/dist/ChipCarousel/_variables.scss +0 -3
- package/dist/CloseButton/_variables.scss +0 -6
- package/dist/Code/_variables.scss +0 -17
- package/dist/Collapsible/_variables.scss +0 -12
- package/dist/ColorPicker/_variables.scss +0 -2
- package/dist/Container/_variables.scss +0 -5
- package/dist/DataTable/_variables.scss +0 -11
- package/dist/Dropdown/_variables.scss +0 -33
- package/dist/Dropdown/deprecated/DropdownButton.js +0 -44
- package/dist/Dropdown/deprecated/DropdownButton.js.map +0 -1
- package/dist/Dropdown/deprecated/DropdownItem.js +0 -33
- package/dist/Dropdown/deprecated/DropdownItem.js.map +0 -1
- package/dist/Dropdown/deprecated/DropdownMenu.js +0 -46
- package/dist/Dropdown/deprecated/DropdownMenu.js.map +0 -1
- package/dist/Dropdown/deprecated/index.js +0 -241
- package/dist/Dropdown/deprecated/index.js.map +0 -1
- package/dist/Dropzone/_variables.scss +0 -9
- package/dist/Fieldset/index.js +0 -117
- package/dist/Fieldset/index.js.map +0 -1
- package/dist/Fieldset/index.scss +0 -12
- package/dist/Form/_variables.scss +0 -267
- package/dist/Hyperlink/index.d.ts +0 -24
- package/dist/Icon/_variables.scss +0 -7
- package/dist/Image/_variables.scss +0 -13
- package/dist/Input/index.js +0 -166
- package/dist/Input/index.js.map +0 -1
- package/dist/InputSelect/index.js +0 -105
- package/dist/InputSelect/index.js.map +0 -1
- package/dist/InputText/index.js +0 -45
- package/dist/InputText/index.js.map +0 -1
- package/dist/ListBox/index.js +0 -148
- package/dist/ListBox/index.js.map +0 -1
- package/dist/ListBoxOption/index.js +0 -94
- package/dist/ListBoxOption/index.js.map +0 -1
- package/dist/Menu/_variables.scss +0 -24
- package/dist/Modal/_variables.scss +0 -50
- package/dist/Modal/index.js +0 -292
- package/dist/Modal/index.js.map +0 -1
- package/dist/Nav/_variables.scss +0 -58
- package/dist/Navbar/_variables.scss +0 -40
- package/dist/OverflowScroll/_variables.scss +0 -5
- package/dist/OverflowScroll/index.scss +0 -1
- package/dist/Pagination/_variables.scss +0 -19
- package/dist/Popover/_variables.scss +0 -36
- package/dist/ProductTour/_variables.scss +0 -15
- package/dist/ProgressBar/_variables.scss +0 -23
- package/dist/RadioButtonGroup/index.js +0 -188
- package/dist/RadioButtonGroup/index.js.map +0 -1
- package/dist/SearchField/_variables.scss +0 -14
- package/dist/SelectableBox/_variables.scss +0 -5
- package/dist/Spinner/_variables.scss +0 -9
- package/dist/Stack/_variables.scss +0 -1
- package/dist/StatusAlert/index.js +0 -168
- package/dist/StatusAlert/index.js.map +0 -1
- package/dist/Stepper/_variables.scss +0 -18
- package/dist/Sticky/_variables.scss +0 -3
- package/dist/Table/_variables.scss +0 -34
- package/dist/Table/index.js +0 -267
- package/dist/Table/index.js.map +0 -1
- package/dist/Table/index.scss +0 -12
- package/dist/Tabs/_variables.scss +0 -24
- package/dist/Tabs/deprecated/Tabs.scss +0 -3
- package/dist/Tabs/deprecated/index.js +0 -123
- package/dist/Tabs/deprecated/index.js.map +0 -1
- package/dist/TextArea/index.js +0 -44
- package/dist/TextArea/index.js.map +0 -1
- package/dist/Toast/_variables.scss +0 -19
- package/dist/Tooltip/_variables.scss +0 -21
- package/dist/ValidationFormGroup/index.js +0 -106
- package/dist/ValidationFormGroup/index.js.map +0 -1
- package/dist/paragon.css +0 -45
- package/dist/setupTest.d.ts +0 -2
- package/dist/setupTest.js.map +0 -1
- package/dist/utils/types/bootstrap.d.ts +0 -39
- package/dist/utils/types/bootstrap.js +0 -2
- package/dist/utils/types/bootstrap.js.map +0 -1
- package/scss/core/_grid.scss +0 -21
- package/scss/core/_variables.scss +0 -875
- package/scss/core/core.scss +0 -21
- package/src/ActionRow/_variables.scss +0 -2
- package/src/Alert/_variables.scss +0 -24
- package/src/Annotation/_variables.scss +0 -18
- package/src/Avatar/_variables.scss +0 -10
- package/src/AvatarButton/_variables.scss +0 -3
- package/src/Badge/_variables.scss +0 -16
- package/src/Breadcrumb/_variables.scss +0 -27
- package/src/Bubble/_variables.scss +0 -8
- package/src/Button/_variables.scss +0 -52
- package/src/Button/deprecated/Button.test.jsx +0 -34
- package/src/Button/deprecated/index.jsx +0 -145
- package/src/Button/index.tsx +0 -159
- package/src/Card/_variables.scss +0 -55
- package/src/Carousel/_variables.scss +0 -27
- package/src/CheckBox/CheckBox.test.jsx +0 -65
- package/src/CheckBox/README.md +0 -93
- package/src/CheckBox/index.jsx +0 -80
- package/src/CheckBoxGroup/CheckBoxGroup.test.jsx +0 -33
- package/src/CheckBoxGroup/README.md +0 -35
- package/src/CheckBoxGroup/index.jsx +0 -19
- package/src/Chip/_variables.scss +0 -28
- package/src/ChipCarousel/_variables.scss +0 -3
- package/src/CloseButton/_variables.scss +0 -6
- package/src/Code/_variables.scss +0 -17
- package/src/Collapsible/_variables.scss +0 -12
- package/src/ColorPicker/_variables.scss +0 -2
- package/src/Container/_variables.scss +0 -5
- package/src/DataTable/_variables.scss +0 -11
- package/src/Dropdown/_variables.scss +0 -33
- package/src/Dropdown/deprecated/Dropdown.test.jsx +0 -238
- package/src/Dropdown/deprecated/DropdownButton.jsx +0 -52
- package/src/Dropdown/deprecated/DropdownItem.jsx +0 -34
- package/src/Dropdown/deprecated/DropdownMenu.jsx +0 -50
- package/src/Dropdown/deprecated/__snapshots__/Dropdown.test.jsx.snap +0 -229
- package/src/Dropdown/deprecated/index.jsx +0 -222
- package/src/Dropzone/_variables.scss +0 -9
- package/src/Fieldset/Fieldset.test.jsx +0 -101
- package/src/Fieldset/README.md +0 -146
- package/src/Fieldset/index.jsx +0 -107
- package/src/Fieldset/index.scss +0 -12
- package/src/Form/_variables.scss +0 -267
- package/src/Icon/_variables.scss +0 -7
- package/src/Image/_variables.scss +0 -13
- package/src/Input/README.md +0 -74
- package/src/Input/__snapshots__/input.test.jsx.snap +0 -53
- package/src/Input/index.jsx +0 -151
- package/src/Input/input.test.jsx +0 -85
- package/src/InputSelect/README.md +0 -136
- package/src/InputSelect/index.jsx +0 -92
- package/src/InputText/InputText.test.jsx +0 -74
- package/src/InputText/README.md +0 -293
- package/src/InputText/index.jsx +0 -49
- package/src/ListBox/ListBox.test.jsx +0 -161
- package/src/ListBox/README.md +0 -185
- package/src/ListBox/index.jsx +0 -115
- package/src/ListBoxOption/ListBoxOption.test.jsx +0 -154
- package/src/ListBoxOption/index.jsx +0 -78
- package/src/Menu/_variables.scss +0 -24
- package/src/Modal/README.md +0 -148
- package/src/Modal/_variables.scss +0 -50
- package/src/Modal/index.jsx +0 -319
- package/src/Modal/tests/Modal.test.jsx +0 -261
- package/src/Nav/_variables.scss +0 -58
- package/src/Navbar/_variables.scss +0 -40
- package/src/OverflowScroll/_variables.scss +0 -5
- package/src/OverflowScroll/index.scss +0 -1
- package/src/Pagination/_variables.scss +0 -19
- package/src/Popover/_variables.scss +0 -36
- package/src/ProductTour/_variables.scss +0 -15
- package/src/ProgressBar/_variables.scss +0 -23
- package/src/RadioButtonGroup/README.md +0 -50
- package/src/RadioButtonGroup/RadioButtonGroup.test.jsx +0 -127
- package/src/RadioButtonGroup/index.jsx +0 -185
- package/src/SearchField/_variables.scss +0 -14
- package/src/SelectableBox/_variables.scss +0 -5
- package/src/Spinner/_variables.scss +0 -9
- package/src/Stack/_variables.scss +0 -1
- package/src/StatusAlert/README.md +0 -149
- package/src/StatusAlert/StatusAlert.test.jsx +0 -150
- package/src/StatusAlert/index.jsx +0 -144
- package/src/Stepper/_variables.scss +0 -18
- package/src/Sticky/_variables.scss +0 -3
- package/src/Table/README.md +0 -506
- package/src/Table/Table.test.jsx +0 -367
- package/src/Table/_variables.scss +0 -34
- package/src/Table/index.jsx +0 -264
- package/src/Table/index.scss +0 -12
- package/src/Tabs/_variables.scss +0 -24
- package/src/Tabs/deprecated/Tabs.scss +0 -3
- package/src/Tabs/deprecated/Tabs.test.jsx +0 -50
- package/src/Tabs/deprecated/index.jsx +0 -117
- package/src/TextArea/README.md +0 -63
- package/src/TextArea/index.jsx +0 -48
- package/src/Toast/_variables.scss +0 -19
- package/src/Tooltip/_variables.scss +0 -21
- package/src/ValidationFormGroup/README.md +0 -116
- package/src/ValidationFormGroup/ValidationFormGroup.test.jsx +0 -146
- package/src/ValidationFormGroup/__snapshots__/ValidationFormGroup.test.jsx.snap +0 -161
- package/src/ValidationFormGroup/index.jsx +0 -114
- package/src/utils/types/bootstrap.test.tsx +0 -86
- package/src/utils/types/bootstrap.ts +0 -43
- /package/src/Button/{ButtonGroup.test.tsx → ButtonGroup.test.jsx} +0 -0
- /package/src/Button/{ButtonToolbar.test.tsx → ButtonToolbar.test.jsx} +0 -0
- /package/src/Button/__snapshots__/{ButtonGroup.test.tsx.snap → ButtonGroup.test.jsx.snap} +0 -0
- /package/src/Button/__snapshots__/{ButtonToolbar.test.tsx.snap → ButtonToolbar.test.jsx.snap} +0 -0
- /package/{scss → styles/scss}/core/_exports.module.scss +0 -0
- /package/{scss → styles/scss}/core/_typography.scss +0 -0
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
-
var _excluded = ["className", "inputRef"];
|
|
3
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
|
-
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
5
|
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
|
-
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
7
|
-
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
8
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
9
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
10
|
-
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
11
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
12
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
13
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
14
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
15
|
-
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
16
|
-
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
17
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
18
|
-
import React from 'react';
|
|
19
|
-
import PropTypes from 'prop-types';
|
|
20
|
-
import asInput from '../asInput';
|
|
21
|
-
import withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps';
|
|
22
|
-
var Select = /*#__PURE__*/function (_React$Component) {
|
|
23
|
-
_inherits(Select, _React$Component);
|
|
24
|
-
var _super = _createSuper(Select);
|
|
25
|
-
function Select() {
|
|
26
|
-
_classCallCheck(this, Select);
|
|
27
|
-
return _super.apply(this, arguments);
|
|
28
|
-
}
|
|
29
|
-
_createClass(Select, [{
|
|
30
|
-
key: "getOptions",
|
|
31
|
-
value: function getOptions() {
|
|
32
|
-
return this.props.options.map(function (option, i) {
|
|
33
|
-
var section;
|
|
34
|
-
if (option.options) {
|
|
35
|
-
var groupOpts = option.options.map(function (opt, j) {
|
|
36
|
-
return Select.getOption(opt, j);
|
|
37
|
-
});
|
|
38
|
-
section = /*#__PURE__*/React.createElement("optgroup", {
|
|
39
|
-
label: option.label,
|
|
40
|
-
key: option.label
|
|
41
|
-
}, groupOpts);
|
|
42
|
-
} else {
|
|
43
|
-
section = Select.getOption(option, i);
|
|
44
|
-
}
|
|
45
|
-
return section;
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
}, {
|
|
49
|
-
key: "render",
|
|
50
|
-
value: function render() {
|
|
51
|
-
var _this$props = this.props,
|
|
52
|
-
className = _this$props.className,
|
|
53
|
-
inputRef = _this$props.inputRef,
|
|
54
|
-
others = _objectWithoutProperties(_this$props, _excluded);
|
|
55
|
-
var options = this.getOptions();
|
|
56
|
-
return /*#__PURE__*/React.createElement("select", _extends({}, others, {
|
|
57
|
-
className: className,
|
|
58
|
-
type: "select",
|
|
59
|
-
ref: inputRef
|
|
60
|
-
}), options);
|
|
61
|
-
}
|
|
62
|
-
}], [{
|
|
63
|
-
key: "getOption",
|
|
64
|
-
value: function getOption(option, i) {
|
|
65
|
-
var disabled = option.disabled;
|
|
66
|
-
var label = option.label,
|
|
67
|
-
value = option.value;
|
|
68
|
-
if (typeof option === 'string') {
|
|
69
|
-
label = option;
|
|
70
|
-
value = option;
|
|
71
|
-
}
|
|
72
|
-
return /*#__PURE__*/React.createElement("option", {
|
|
73
|
-
key: "option-".concat(i),
|
|
74
|
-
value: value,
|
|
75
|
-
disabled: disabled
|
|
76
|
-
}, label);
|
|
77
|
-
}
|
|
78
|
-
}]);
|
|
79
|
-
return Select;
|
|
80
|
-
}(React.Component);
|
|
81
|
-
Select.propTypes = {
|
|
82
|
-
className: PropTypes.string,
|
|
83
|
-
inputRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({
|
|
84
|
-
current: PropTypes.instanceOf(PropTypes.element)
|
|
85
|
-
})]),
|
|
86
|
-
options: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.arrayOf(PropTypes.shape({}))]).isRequired
|
|
87
|
-
};
|
|
88
|
-
Select.defaultProps = {
|
|
89
|
-
className: undefined,
|
|
90
|
-
inputRef: undefined
|
|
91
|
-
};
|
|
92
|
-
var InputSelect = asInput(withDeprecatedProps(Select, 'InputSelect', {
|
|
93
|
-
className: {
|
|
94
|
-
deprType: DeprTypes.FORMAT,
|
|
95
|
-
expect: function expect(value) {
|
|
96
|
-
return typeof value === 'string';
|
|
97
|
-
},
|
|
98
|
-
transform: function transform(value) {
|
|
99
|
-
return Array.isArray(value) ? value.join(' ') : value;
|
|
100
|
-
},
|
|
101
|
-
message: 'It should be a string.'
|
|
102
|
-
}
|
|
103
|
-
}));
|
|
104
|
-
export default InputSelect;
|
|
105
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["React","PropTypes","asInput","withDeprecatedProps","DeprTypes","Select","_React$Component","_inherits","_super","_createSuper","_classCallCheck","apply","arguments","_createClass","key","value","getOptions","props","options","map","option","i","section","groupOpts","opt","j","getOption","createElement","label","render","_this$props","className","inputRef","others","_objectWithoutProperties","_excluded","_extends","type","ref","disabled","concat","Component","propTypes","string","oneOfType","func","shape","current","instanceOf","element","arrayOf","isRequired","defaultProps","undefined","InputSelect","deprType","FORMAT","expect","transform","Array","isArray","join","message"],"sources":["../../src/InputSelect/index.jsx"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\n\nimport asInput from '../asInput';\nimport withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps';\n\nclass Select extends React.Component {\n static getOption(option, i) {\n const { disabled } = option;\n let { label, value } = option;\n\n if (typeof option === 'string') {\n label = option;\n value = option;\n }\n\n return (\n <option\n key={`option-${i}`}\n value={value}\n disabled={disabled}\n >\n {label}\n </option>\n );\n }\n\n getOptions() {\n return this.props.options.map((option, i) => {\n let section;\n if (option.options) {\n const groupOpts = option.options.map((opt, j) => Select.getOption(opt, j));\n section = (\n <optgroup label={option.label} key={option.label}>\n {groupOpts}\n </optgroup>\n );\n } else {\n section = Select.getOption(option, i);\n }\n return section;\n });\n }\n\n render() {\n const {\n className,\n inputRef,\n ...others\n } = this.props;\n const options = this.getOptions();\n\n return (\n <select\n {...others}\n className={className}\n type=\"select\"\n ref={inputRef}\n >\n {options}\n </select>\n );\n }\n}\n\nSelect.propTypes = {\n className: PropTypes.string,\n inputRef: PropTypes.oneOfType([\n PropTypes.func,\n PropTypes.shape({ current: PropTypes.instanceOf(PropTypes.element) }),\n ]),\n options: PropTypes.oneOfType([\n PropTypes.arrayOf(PropTypes.string),\n PropTypes.arrayOf(PropTypes.shape({})),\n ]).isRequired,\n};\n\nSelect.defaultProps = {\n className: undefined,\n inputRef: undefined,\n};\n\nconst InputSelect = asInput(withDeprecatedProps(Select, 'InputSelect', {\n className: {\n deprType: DeprTypes.FORMAT,\n expect: value => typeof value === 'string',\n transform: value => (Array.isArray(value) ? value.join(' ') : value),\n message: 'It should be a string.',\n },\n}));\n\nexport default InputSelect;\n"],"mappings":"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","ignoreList":[]}
|
package/dist/InputText/index.js
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
var _excluded = ["className", "inputRef", "type"];
|
|
2
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
|
-
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
|
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
5
|
-
import React from 'react';
|
|
6
|
-
import PropTypes from 'prop-types';
|
|
7
|
-
import asInput from '../asInput';
|
|
8
|
-
import withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps';
|
|
9
|
-
function Text(props) {
|
|
10
|
-
var className = props.className,
|
|
11
|
-
inputRef = props.inputRef,
|
|
12
|
-
type = props.type,
|
|
13
|
-
others = _objectWithoutProperties(props, _excluded);
|
|
14
|
-
return /*#__PURE__*/React.createElement("input", _extends({}, others, {
|
|
15
|
-
className: className,
|
|
16
|
-
type: type || 'text',
|
|
17
|
-
ref: inputRef
|
|
18
|
-
}));
|
|
19
|
-
}
|
|
20
|
-
Text.propTypes = {
|
|
21
|
-
className: PropTypes.string,
|
|
22
|
-
inputRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({
|
|
23
|
-
current: PropTypes.instanceOf(PropTypes.element)
|
|
24
|
-
})]),
|
|
25
|
-
type: PropTypes.string
|
|
26
|
-
};
|
|
27
|
-
Text.defaultProps = {
|
|
28
|
-
className: undefined,
|
|
29
|
-
inputRef: undefined,
|
|
30
|
-
type: 'text'
|
|
31
|
-
};
|
|
32
|
-
var InputText = asInput(withDeprecatedProps(Text, 'InputText', {
|
|
33
|
-
className: {
|
|
34
|
-
deprType: DeprTypes.FORMAT,
|
|
35
|
-
expect: function expect(value) {
|
|
36
|
-
return typeof value === 'string';
|
|
37
|
-
},
|
|
38
|
-
transform: function transform(value) {
|
|
39
|
-
return Array.isArray(value) ? value.join(' ') : value;
|
|
40
|
-
},
|
|
41
|
-
message: 'It should be a string.'
|
|
42
|
-
}
|
|
43
|
-
}));
|
|
44
|
-
export default InputText;
|
|
45
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["React","PropTypes","asInput","withDeprecatedProps","DeprTypes","Text","props","className","inputRef","type","others","_objectWithoutProperties","_excluded","createElement","_extends","ref","propTypes","string","oneOfType","func","shape","current","instanceOf","element","defaultProps","undefined","InputText","deprType","FORMAT","expect","value","transform","Array","isArray","join","message"],"sources":["../../src/InputText/index.jsx"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\n\nimport asInput from '../asInput';\nimport withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps';\n\nfunction Text(props) {\n const {\n className,\n inputRef,\n type,\n ...others\n } = props;\n\n return (\n <input\n {...others}\n className={className}\n type={type || 'text'}\n ref={inputRef}\n />\n );\n}\n\nText.propTypes = {\n className: PropTypes.string,\n inputRef: PropTypes.oneOfType([\n PropTypes.func,\n PropTypes.shape({ current: PropTypes.instanceOf(PropTypes.element) }),\n ]),\n type: PropTypes.string,\n};\n\nText.defaultProps = {\n className: undefined,\n inputRef: undefined,\n type: 'text',\n};\n\nconst InputText = asInput(withDeprecatedProps(Text, 'InputText', {\n className: {\n deprType: DeprTypes.FORMAT,\n expect: value => typeof value === 'string',\n transform: value => (Array.isArray(value) ? value.join(' ') : value),\n message: 'It should be a string.',\n },\n}));\n\nexport default InputText;\n"],"mappings":";;;;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAOC,SAAS,MAAM,YAAY;AAElC,OAAOC,OAAO,MAAM,YAAY;AAChC,OAAOC,mBAAmB,IAAIC,SAAS,QAAQ,wBAAwB;AAEvE,SAASC,IAAIA,CAACC,KAAK,EAAE;EACnB,IACEC,SAAS,GAIPD,KAAK,CAJPC,SAAS;IACTC,QAAQ,GAGNF,KAAK,CAHPE,QAAQ;IACRC,IAAI,GAEFH,KAAK,CAFPG,IAAI;IACDC,MAAM,GAAAC,wBAAA,CACPL,KAAK,EAAAM,SAAA;EAET,oBACEZ,KAAA,CAAAa,aAAA,UAAAC,QAAA,KACMJ,MAAM;IACVH,SAAS,EAAEA,SAAU;IACrBE,IAAI,EAAEA,IAAI,IAAI,MAAO;IACrBM,GAAG,EAAEP;EAAS,EACf,CAAC;AAEN;AAEAH,IAAI,CAACW,SAAS,GAAG;EACfT,SAAS,EAAEN,SAAS,CAACgB,MAAM;EAC3BT,QAAQ,EAAEP,SAAS,CAACiB,SAAS,CAAC,CAC5BjB,SAAS,CAACkB,IAAI,EACdlB,SAAS,CAACmB,KAAK,CAAC;IAAEC,OAAO,EAAEpB,SAAS,CAACqB,UAAU,CAACrB,SAAS,CAACsB,OAAO;EAAE,CAAC,CAAC,CACtE,CAAC;EACFd,IAAI,EAAER,SAAS,CAACgB;AAClB,CAAC;AAEDZ,IAAI,CAACmB,YAAY,GAAG;EAClBjB,SAAS,EAAEkB,SAAS;EACpBjB,QAAQ,EAAEiB,SAAS;EACnBhB,IAAI,EAAE;AACR,CAAC;AAED,IAAMiB,SAAS,GAAGxB,OAAO,CAACC,mBAAmB,CAACE,IAAI,EAAE,WAAW,EAAE;EAC/DE,SAAS,EAAE;IACToB,QAAQ,EAAEvB,SAAS,CAACwB,MAAM;IAC1BC,MAAM,EAAE,SAAAA,OAAAC,KAAK;MAAA,OAAI,OAAOA,KAAK,KAAK,QAAQ;IAAA;IAC1CC,SAAS,EAAE,SAAAA,UAAAD,KAAK;MAAA,OAAKE,KAAK,CAACC,OAAO,CAACH,KAAK,CAAC,GAAGA,KAAK,CAACI,IAAI,CAAC,GAAG,CAAC,GAAGJ,KAAK;IAAA,CAAC;IACpEK,OAAO,EAAE;EACX;AACF,CAAC,CAAC,CAAC;AAEH,eAAeT,SAAS","ignoreList":[]}
|
package/dist/ListBox/index.js
DELETED
|
@@ -1,148 +0,0 @@
|
|
|
1
|
-
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
-
var _excluded = ["children", "className", "selectedOptionIndex", "tag"];
|
|
3
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
4
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
5
|
-
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
6
|
-
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7
|
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8
|
-
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
9
|
-
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
10
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
12
|
-
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
13
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
14
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
15
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
16
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
17
|
-
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
18
|
-
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
19
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
20
|
-
/* eslint-disable max-len */
|
|
21
|
-
import classNames from 'classnames';
|
|
22
|
-
import PropTypes from 'prop-types';
|
|
23
|
-
import React from 'react';
|
|
24
|
-
import { nonNegativeInteger } from '../utils/propTypes';
|
|
25
|
-
var ListBox = /*#__PURE__*/function (_React$Component) {
|
|
26
|
-
_inherits(ListBox, _React$Component);
|
|
27
|
-
var _super = _createSuper(ListBox);
|
|
28
|
-
function ListBox(props) {
|
|
29
|
-
var _this;
|
|
30
|
-
_classCallCheck(this, ListBox);
|
|
31
|
-
_this = _super.call(this, props);
|
|
32
|
-
_this.onFocus = _this.onFocus.bind(_assertThisInitialized(_this));
|
|
33
|
-
_this.onKeyDown = _this.onKeyDown.bind(_assertThisInitialized(_this));
|
|
34
|
-
_this.state = {
|
|
35
|
-
selectedOptionIndex: null
|
|
36
|
-
};
|
|
37
|
-
return _this;
|
|
38
|
-
}
|
|
39
|
-
_createClass(ListBox, [{
|
|
40
|
-
key: "onFocus",
|
|
41
|
-
value: function onFocus() {
|
|
42
|
-
// if no ListBoxOption is selected, select first ListBoxOption on ListBox focus
|
|
43
|
-
if (!this.state.selectedOptionIndex) {
|
|
44
|
-
this.setState({
|
|
45
|
-
selectedOptionIndex: 0
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}, {
|
|
50
|
-
key: "onKeyDown",
|
|
51
|
-
value: function onKeyDown(e) {
|
|
52
|
-
switch (e.key) {
|
|
53
|
-
case 'ArrowDown':
|
|
54
|
-
{
|
|
55
|
-
// prevent scrolling entire modal body with arrow keys
|
|
56
|
-
e.preventDefault();
|
|
57
|
-
if (this.state.selectedOptionIndex < React.Children.count(this.props.children) - 1) {
|
|
58
|
-
this.setState(function (state) {
|
|
59
|
-
return {
|
|
60
|
-
selectedOptionIndex: state.selectedOptionIndex + 1
|
|
61
|
-
};
|
|
62
|
-
});
|
|
63
|
-
}
|
|
64
|
-
break;
|
|
65
|
-
}
|
|
66
|
-
case 'ArrowUp':
|
|
67
|
-
{
|
|
68
|
-
// prevent scrolling entire modal body with arrow keys
|
|
69
|
-
e.preventDefault();
|
|
70
|
-
if (this.state.selectedOptionIndex > 0) {
|
|
71
|
-
this.setState(function (state) {
|
|
72
|
-
return {
|
|
73
|
-
selectedOptionIndex: state.selectedOptionIndex - 1
|
|
74
|
-
};
|
|
75
|
-
});
|
|
76
|
-
}
|
|
77
|
-
break;
|
|
78
|
-
}
|
|
79
|
-
default:
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}, {
|
|
83
|
-
key: "renderChildren",
|
|
84
|
-
value: function renderChildren() {
|
|
85
|
-
var _this2 = this;
|
|
86
|
-
return React.Children.map(this.props.children, function (child, index) {
|
|
87
|
-
return /*#__PURE__*/React.cloneElement(child, {
|
|
88
|
-
index: index,
|
|
89
|
-
isSelected: index === _this2.state.selectedOptionIndex,
|
|
90
|
-
onSelect: function onSelect() {
|
|
91
|
-
_this2.setState({
|
|
92
|
-
selectedOptionIndex: index
|
|
93
|
-
});
|
|
94
|
-
child.props.onSelect();
|
|
95
|
-
}
|
|
96
|
-
});
|
|
97
|
-
});
|
|
98
|
-
}
|
|
99
|
-
}, {
|
|
100
|
-
key: "render",
|
|
101
|
-
value: function render() {
|
|
102
|
-
var _this$props = this.props,
|
|
103
|
-
children = _this$props.children,
|
|
104
|
-
className = _this$props.className,
|
|
105
|
-
selectedOptionIndex = _this$props.selectedOptionIndex,
|
|
106
|
-
tag = _this$props.tag,
|
|
107
|
-
other = _objectWithoutProperties(_this$props, _excluded);
|
|
108
|
-
return /*#__PURE__*/React.createElement(this.props.tag, _objectSpread({
|
|
109
|
-
'aria-activedescendant': this.state.selectedOptionIndex === null ? null : "list-box-option-".concat(this.state.selectedOptionIndex),
|
|
110
|
-
className: classNames(['list-group', this.props.className]),
|
|
111
|
-
onFocus: this.onFocus,
|
|
112
|
-
onKeyDown: this.onKeyDown,
|
|
113
|
-
role: 'listbox',
|
|
114
|
-
tabIndex: 0
|
|
115
|
-
}, other), this.renderChildren());
|
|
116
|
-
}
|
|
117
|
-
}], [{
|
|
118
|
-
key: "getDerivedStateFromProps",
|
|
119
|
-
value: function getDerivedStateFromProps(nextProps, prevState) {
|
|
120
|
-
var selectedOptionIndex = nextProps.selectedOptionIndex;
|
|
121
|
-
if (selectedOptionIndex !== prevState.selectedOptionIndex && selectedOptionIndex !== undefined) {
|
|
122
|
-
return {
|
|
123
|
-
selectedOptionIndex: selectedOptionIndex
|
|
124
|
-
};
|
|
125
|
-
}
|
|
126
|
-
return null;
|
|
127
|
-
}
|
|
128
|
-
}]);
|
|
129
|
-
return ListBox;
|
|
130
|
-
}(React.Component);
|
|
131
|
-
export { ListBox as default };
|
|
132
|
-
ListBox.propTypes = {
|
|
133
|
-
/** specifies the ListBoxOption component(s) that will be displayed within the ListBox element. You can pass in one or more ListBoxOption components.
|
|
134
|
-
*/
|
|
135
|
-
children: PropTypes.node.isRequired,
|
|
136
|
-
/** specifies Bootstrap class names to apply to the ListBox component. The default is an empty string. */
|
|
137
|
-
className: PropTypes.string,
|
|
138
|
-
/** Although the ListBox component keeps track of which ListBoxOption is selected, `selectedOptionIndex` provides a mechanism for an override, if necessary. An example would be to clear the selectedOption when moving between views. Note that override is not permanent and that clicking on a ListBoxOption or interacting with the ListBox with the keyboard will change the selected ListBoxOption relative to the original override. The default is undefined. */
|
|
139
|
-
selectedOptionIndex: nonNegativeInteger,
|
|
140
|
-
/** used to specify the element type of the rendered ListBox component. The default is div. Example alternatives include ol, ul, span, etc. */
|
|
141
|
-
tag: PropTypes.string
|
|
142
|
-
};
|
|
143
|
-
ListBox.defaultProps = {
|
|
144
|
-
className: undefined,
|
|
145
|
-
selectedOptionIndex: undefined,
|
|
146
|
-
tag: 'div'
|
|
147
|
-
};
|
|
148
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["classNames","PropTypes","React","nonNegativeInteger","ListBox","_React$Component","_inherits","_super","_createSuper","props","_this","_classCallCheck","call","onFocus","bind","_assertThisInitialized","onKeyDown","state","selectedOptionIndex","_createClass","key","value","setState","e","preventDefault","Children","count","children","renderChildren","_this2","map","child","index","cloneElement","isSelected","onSelect","render","_this$props","className","tag","other","_objectWithoutProperties","_excluded","createElement","_objectSpread","concat","role","tabIndex","getDerivedStateFromProps","nextProps","prevState","undefined","Component","default","propTypes","node","isRequired","string","defaultProps"],"sources":["../../src/ListBox/index.jsx"],"sourcesContent":["/* eslint-disable max-len */\nimport classNames from 'classnames';\nimport PropTypes from 'prop-types';\nimport React from 'react';\nimport { nonNegativeInteger } from '../utils/propTypes';\n\nexport default class ListBox extends React.Component {\n constructor(props) {\n super(props);\n\n this.onFocus = this.onFocus.bind(this);\n this.onKeyDown = this.onKeyDown.bind(this);\n\n this.state = {\n selectedOptionIndex: null,\n };\n }\n\n static getDerivedStateFromProps(nextProps, prevState) {\n const { selectedOptionIndex } = nextProps;\n\n if (selectedOptionIndex !== prevState.selectedOptionIndex\n && selectedOptionIndex !== undefined) {\n return { selectedOptionIndex };\n }\n\n return null;\n }\n\n onFocus() {\n // if no ListBoxOption is selected, select first ListBoxOption on ListBox focus\n if (!this.state.selectedOptionIndex) {\n this.setState({\n selectedOptionIndex: 0,\n });\n }\n }\n\n onKeyDown(e) {\n switch (e.key) {\n case 'ArrowDown': {\n // prevent scrolling entire modal body with arrow keys\n e.preventDefault();\n if (this.state.selectedOptionIndex < React.Children.count(this.props.children) - 1) {\n this.setState(state => ({\n selectedOptionIndex: state.selectedOptionIndex + 1,\n }));\n }\n break;\n }\n case 'ArrowUp': {\n // prevent scrolling entire modal body with arrow keys\n e.preventDefault();\n\n if (this.state.selectedOptionIndex > 0) {\n this.setState(state => ({\n selectedOptionIndex: state.selectedOptionIndex - 1,\n }));\n }\n break;\n }\n default:\n }\n }\n\n renderChildren() {\n return React.Children.map(this.props.children, (child, index) => React.cloneElement(child, {\n index,\n isSelected: index === this.state.selectedOptionIndex,\n onSelect: () => { this.setState({ selectedOptionIndex: index }); child.props.onSelect(); },\n }));\n }\n\n render() {\n const {\n children,\n className,\n selectedOptionIndex,\n tag,\n ...other\n } = this.props;\n\n return React.createElement(\n this.props.tag,\n {\n 'aria-activedescendant': this.state.selectedOptionIndex === null ? null : `list-box-option-${this.state.selectedOptionIndex}`,\n className: classNames(['list-group', this.props.className]),\n onFocus: this.onFocus,\n onKeyDown: this.onKeyDown,\n role: 'listbox',\n tabIndex: 0,\n ...other,\n },\n this.renderChildren(),\n );\n }\n}\n\nListBox.propTypes = {\n /** specifies the ListBoxOption component(s) that will be displayed within the ListBox element. You can pass in one or more ListBoxOption components.\n */\n children: PropTypes.node.isRequired,\n /** specifies Bootstrap class names to apply to the ListBox component. The default is an empty string. */\n className: PropTypes.string,\n /** Although the ListBox component keeps track of which ListBoxOption is selected, `selectedOptionIndex` provides a mechanism for an override, if necessary. An example would be to clear the selectedOption when moving between views. Note that override is not permanent and that clicking on a ListBoxOption or interacting with the ListBox with the keyboard will change the selected ListBoxOption relative to the original override. The default is undefined. */\n selectedOptionIndex: nonNegativeInteger,\n /** used to specify the element type of the rendered ListBox component. The default is div. Example alternatives include ol, ul, span, etc. */\n tag: PropTypes.string,\n};\n\nListBox.defaultProps = {\n className: undefined,\n selectedOptionIndex: undefined,\n tag: 'div',\n};\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
-
var _excluded = ["children", "className", "index", "isSelected", "tag"];
|
|
3
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
4
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
5
|
-
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
6
|
-
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
7
|
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8
|
-
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
9
|
-
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
10
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
11
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
12
|
-
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
13
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
14
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
15
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
16
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
17
|
-
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
18
|
-
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
19
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
20
|
-
import React from 'react';
|
|
21
|
-
import classNames from 'classnames';
|
|
22
|
-
import PropTypes from 'prop-types';
|
|
23
|
-
var ListBoxOption = /*#__PURE__*/function (_React$Component) {
|
|
24
|
-
_inherits(ListBoxOption, _React$Component);
|
|
25
|
-
var _super = _createSuper(ListBoxOption);
|
|
26
|
-
function ListBoxOption(props) {
|
|
27
|
-
var _this;
|
|
28
|
-
_classCallCheck(this, ListBoxOption);
|
|
29
|
-
_this = _super.call(this, props);
|
|
30
|
-
_this.onMouseDown = _this.onMouseDown.bind(_assertThisInitialized(_this));
|
|
31
|
-
return _this;
|
|
32
|
-
}
|
|
33
|
-
_createClass(ListBoxOption, [{
|
|
34
|
-
key: "componentDidUpdate",
|
|
35
|
-
value: function componentDidUpdate(prevProps) {
|
|
36
|
-
if (this.props.isSelected && !prevProps.isSelected) {
|
|
37
|
-
this.props.onSelect();
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/**
|
|
42
|
-
* onMouseDown is used instead of onClick because onClick triggers the focus
|
|
43
|
-
* event before click event. This focus event bubbles up to the parent
|
|
44
|
-
* (since onFocus bubbles in React), which triggers the ListBox's onFocus function.
|
|
45
|
-
* This function will select the first ListBoxOption if one is not selected, and this
|
|
46
|
-
* causes the user to see the first option selected before their desired option is selected
|
|
47
|
-
* when the click event is fired shortly thereafter. The mouseDown event occurs before the
|
|
48
|
-
* focus event, which prevents this behavior.
|
|
49
|
-
*/
|
|
50
|
-
}, {
|
|
51
|
-
key: "onMouseDown",
|
|
52
|
-
value: function onMouseDown() {
|
|
53
|
-
this.props.onSelect();
|
|
54
|
-
}
|
|
55
|
-
}, {
|
|
56
|
-
key: "render",
|
|
57
|
-
value: function render() {
|
|
58
|
-
var _this$props = this.props,
|
|
59
|
-
children = _this$props.children,
|
|
60
|
-
className = _this$props.className,
|
|
61
|
-
index = _this$props.index,
|
|
62
|
-
isSelected = _this$props.isSelected,
|
|
63
|
-
tag = _this$props.tag,
|
|
64
|
-
other = _objectWithoutProperties(_this$props, _excluded);
|
|
65
|
-
return /*#__PURE__*/React.createElement(this.props.tag, _objectSpread({
|
|
66
|
-
'aria-selected': isSelected,
|
|
67
|
-
className: classNames('list-group-item', 'list-group-item-action', {
|
|
68
|
-
active: this.props.isSelected
|
|
69
|
-
}, className),
|
|
70
|
-
id: index === undefined ? null : "list-box-option-".concat(index),
|
|
71
|
-
onMouseDown: this.onMouseDown,
|
|
72
|
-
role: 'option'
|
|
73
|
-
}, other), children);
|
|
74
|
-
}
|
|
75
|
-
}]);
|
|
76
|
-
return ListBoxOption;
|
|
77
|
-
}(React.Component);
|
|
78
|
-
export { ListBoxOption as default };
|
|
79
|
-
ListBoxOption.propTypes = {
|
|
80
|
-
children: PropTypes.node.isRequired,
|
|
81
|
-
className: PropTypes.string,
|
|
82
|
-
index: PropTypes.number,
|
|
83
|
-
isSelected: PropTypes.bool,
|
|
84
|
-
tag: PropTypes.string,
|
|
85
|
-
onSelect: PropTypes.func
|
|
86
|
-
};
|
|
87
|
-
ListBoxOption.defaultProps = {
|
|
88
|
-
className: undefined,
|
|
89
|
-
index: undefined,
|
|
90
|
-
isSelected: false,
|
|
91
|
-
tag: 'div',
|
|
92
|
-
onSelect: function onSelect() {}
|
|
93
|
-
};
|
|
94
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["React","classNames","PropTypes","ListBoxOption","_React$Component","_inherits","_super","_createSuper","props","_this","_classCallCheck","call","onMouseDown","bind","_assertThisInitialized","_createClass","key","value","componentDidUpdate","prevProps","isSelected","onSelect","render","_this$props","children","className","index","tag","other","_objectWithoutProperties","_excluded","createElement","_objectSpread","active","id","undefined","concat","role","Component","default","propTypes","node","isRequired","string","number","bool","func","defaultProps"],"sources":["../../src/ListBoxOption/index.jsx"],"sourcesContent":["import React from 'react';\nimport classNames from 'classnames';\nimport PropTypes from 'prop-types';\n\nexport default class ListBoxOption extends React.Component {\n constructor(props) {\n super(props);\n\n this.onMouseDown = this.onMouseDown.bind(this);\n }\n\n componentDidUpdate(prevProps) {\n if (this.props.isSelected && !prevProps.isSelected) {\n this.props.onSelect();\n }\n }\n\n /**\n * onMouseDown is used instead of onClick because onClick triggers the focus\n * event before click event. This focus event bubbles up to the parent\n * (since onFocus bubbles in React), which triggers the ListBox's onFocus function.\n * This function will select the first ListBoxOption if one is not selected, and this\n * causes the user to see the first option selected before their desired option is selected\n * when the click event is fired shortly thereafter. The mouseDown event occurs before the\n * focus event, which prevents this behavior.\n */\n onMouseDown() {\n this.props.onSelect();\n }\n\n render() {\n const {\n children,\n className,\n index,\n isSelected,\n tag,\n ...other\n } = this.props;\n\n return React.createElement(\n this.props.tag,\n {\n 'aria-selected': isSelected,\n className: classNames(\n 'list-group-item',\n 'list-group-item-action',\n {\n active: this.props.isSelected,\n },\n className,\n ),\n id: index === undefined ? null : `list-box-option-${index}`,\n onMouseDown: this.onMouseDown,\n role: 'option',\n ...other,\n },\n children,\n );\n }\n}\n\nListBoxOption.propTypes = {\n children: PropTypes.node.isRequired,\n className: PropTypes.string,\n index: PropTypes.number,\n isSelected: PropTypes.bool,\n tag: PropTypes.string,\n onSelect: PropTypes.func,\n};\n\nListBoxOption.defaultProps = {\n className: undefined,\n index: undefined,\n isSelected: false,\n tag: 'div',\n onSelect: () => { },\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAOC,UAAU,MAAM,YAAY;AACnC,OAAOC,SAAS,MAAM,YAAY;AAAC,IAEdC,aAAa,0BAAAC,gBAAA;EAAAC,SAAA,CAAAF,aAAA,EAAAC,gBAAA;EAAA,IAAAE,MAAA,GAAAC,YAAA,CAAAJ,aAAA;EAChC,SAAAA,cAAYK,KAAK,EAAE;IAAA,IAAAC,KAAA;IAAAC,eAAA,OAAAP,aAAA;IACjBM,KAAA,GAAAH,MAAA,CAAAK,IAAA,OAAMH,KAAK;IAEXC,KAAA,CAAKG,WAAW,GAAGH,KAAA,CAAKG,WAAW,CAACC,IAAI,CAAAC,sBAAA,CAAAL,KAAA,CAAK,CAAC;IAAC,OAAAA,KAAA;EACjD;EAACM,YAAA,CAAAZ,aAAA;IAAAa,GAAA;IAAAC,KAAA,EAED,SAAAC,mBAAmBC,SAAS,EAAE;MAC5B,IAAI,IAAI,CAACX,KAAK,CAACY,UAAU,IAAI,CAACD,SAAS,CAACC,UAAU,EAAE;QAClD,IAAI,CAACZ,KAAK,CAACa,QAAQ,CAAC,CAAC;MACvB;IACF;;IAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EARE;IAAAL,GAAA;IAAAC,KAAA,EASA,SAAAL,YAAA,EAAc;MACZ,IAAI,CAACJ,KAAK,CAACa,QAAQ,CAAC,CAAC;IACvB;EAAC;IAAAL,GAAA;IAAAC,KAAA,EAED,SAAAK,OAAA,EAAS;MACP,IAAAC,WAAA,GAOI,IAAI,CAACf,KAAK;QANZgB,QAAQ,GAAAD,WAAA,CAARC,QAAQ;QACRC,SAAS,GAAAF,WAAA,CAATE,SAAS;QACTC,KAAK,GAAAH,WAAA,CAALG,KAAK;QACLN,UAAU,GAAAG,WAAA,CAAVH,UAAU;QACVO,GAAG,GAAAJ,WAAA,CAAHI,GAAG;QACAC,KAAK,GAAAC,wBAAA,CAAAN,WAAA,EAAAO,SAAA;MAGV,oBAAO9B,KAAK,CAAC+B,aAAa,CACxB,IAAI,CAACvB,KAAK,CAACmB,GAAG,EAAAK,aAAA;QAEZ,eAAe,EAAEZ,UAAU;QAC3BK,SAAS,EAAExB,UAAU,CACnB,iBAAiB,EACjB,wBAAwB,EACxB;UACEgC,MAAM,EAAE,IAAI,CAACzB,KAAK,CAACY;QACrB,CAAC,EACDK,SACF,CAAC;QACDS,EAAE,EAAER,KAAK,KAAKS,SAAS,GAAG,IAAI,sBAAAC,MAAA,CAAsBV,KAAK,CAAE;QAC3Dd,WAAW,EAAE,IAAI,CAACA,WAAW;QAC7ByB,IAAI,EAAE;MAAQ,GACXT,KAAK,GAEVJ,QACF,CAAC;IACH;EAAC;EAAA,OAAArB,aAAA;AAAA,EAvDwCH,KAAK,CAACsC,SAAS;AAAA,SAArCnC,aAAa,IAAAoC,OAAA;AA0DlCpC,aAAa,CAACqC,SAAS,GAAG;EACxBhB,QAAQ,EAAEtB,SAAS,CAACuC,IAAI,CAACC,UAAU;EACnCjB,SAAS,EAAEvB,SAAS,CAACyC,MAAM;EAC3BjB,KAAK,EAAExB,SAAS,CAAC0C,MAAM;EACvBxB,UAAU,EAAElB,SAAS,CAAC2C,IAAI;EAC1BlB,GAAG,EAAEzB,SAAS,CAACyC,MAAM;EACrBtB,QAAQ,EAAEnB,SAAS,CAAC4C;AACtB,CAAC;AAED3C,aAAa,CAAC4C,YAAY,GAAG;EAC3BtB,SAAS,EAAEU,SAAS;EACpBT,KAAK,EAAES,SAAS;EAChBf,UAAU,EAAE,KAAK;EACjBO,GAAG,EAAE,KAAK;EACVN,QAAQ,EAAE,SAAAA,SAAA,EAAM,CAAE;AACpB,CAAC","ignoreList":[]}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
$menu-box-shadow: $box-shadow !default;
|
|
2
|
-
$menu-border-radius: .25em !default;
|
|
3
|
-
$menu-bg: $white !default;
|
|
4
|
-
$menu-max-height: 16.813rem !default;
|
|
5
|
-
$menu-item-height: 3rem !default;
|
|
6
|
-
$menu-item-width: 19rem !default;
|
|
7
|
-
$menu-item-width-xs: 13.438rem !default;
|
|
8
|
-
$menu-item-color: $body-color !default;
|
|
9
|
-
$menu-item-bg: transparent !default;
|
|
10
|
-
$menu-item-border-color: $menu-item-bg !default;
|
|
11
|
-
$menu-item-border-width: $btn-border-width !default;
|
|
12
|
-
$menu-item-hover-border: $menu-item-bg !default;
|
|
13
|
-
$menu-item-padding-x: $btn-padding-x !default;
|
|
14
|
-
$menu-item-padding-y: $btn-padding-y !default;
|
|
15
|
-
$menu-item-hover-color: $btn-tertiary-color !default;
|
|
16
|
-
$menu-item-hover-border-color: $menu-item-bg !default;
|
|
17
|
-
$menu-item-hover-bg: $btn-tertiary-hover-bg !default;
|
|
18
|
-
$menu-item-icon-margin-left: .25em !default;
|
|
19
|
-
$menu-item-icon-margin-right: $menu-item-icon-margin-left !default;
|
|
20
|
-
$menu-item-focus-bg: $btn-tertiary-active-bg !default;
|
|
21
|
-
$menu-item-border: $menu-item-border-width solid $menu-item-border-color !default;
|
|
22
|
-
$menu-select-btn-link-color: $primary-500 !default;
|
|
23
|
-
$menu-select-btn-link-text-decoration-line: underline !default;
|
|
24
|
-
$menu-select-btn-link-text-decoration-thickness: .125rem !default;
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
// Modals
|
|
2
|
-
|
|
3
|
-
// Padding applied to the modal body
|
|
4
|
-
$modal-inner-padding: 1.5rem !default;
|
|
5
|
-
$modal-inner-padding-bottom: .7rem !default;
|
|
6
|
-
|
|
7
|
-
// Margin between elements in footer, must be lower than or equal to 2 * $modal-inner-padding
|
|
8
|
-
$modal-footer-margin-between: .5rem !default;
|
|
9
|
-
|
|
10
|
-
$modal-dialog-margin: 1.5rem !default;
|
|
11
|
-
$modal-dialog-margin-y-sm-up: 1.75rem !default;
|
|
12
|
-
|
|
13
|
-
$modal-title-line-height: $line-height-base !default;
|
|
14
|
-
|
|
15
|
-
$modal-content-color: null !default;
|
|
16
|
-
$modal-content-bg: $white !default;
|
|
17
|
-
$modal-content-border-color: rgba($black, .2) !default;
|
|
18
|
-
$modal-content-border-width: 0 !default;
|
|
19
|
-
$modal-content-border-radius: $border-radius-lg !default;
|
|
20
|
-
$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;
|
|
21
|
-
$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;
|
|
22
|
-
$modal-content-box-shadow-sm-up: 0 10px 20px rgba($black, .15), 0 8px 20px rgba($black, .15) !default;
|
|
23
|
-
|
|
24
|
-
$modal-backdrop-bg: $black !default;
|
|
25
|
-
$modal-backdrop-opacity: .5 !default;
|
|
26
|
-
$modal-header-border-color: $border-color !default;
|
|
27
|
-
$modal-footer-border-color: $modal-header-border-color !default;
|
|
28
|
-
$modal-header-border-width: $modal-content-border-width !default;
|
|
29
|
-
$modal-footer-border-width: $modal-header-border-width !default;
|
|
30
|
-
$modal-header-padding-y: 1rem !default;
|
|
31
|
-
$modal-header-padding-x: 1.5rem !default;
|
|
32
|
-
$modal-close-container-top: .625rem !default;
|
|
33
|
-
|
|
34
|
-
// Keep this for backwards compatibility
|
|
35
|
-
$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default;
|
|
36
|
-
$modal-footer-padding-y: 1rem !default;
|
|
37
|
-
$modal-footer-padding-x: 1.5rem !default;
|
|
38
|
-
|
|
39
|
-
// Keep this for backwards compatibility
|
|
40
|
-
$modal-footer-padding: $modal-footer-padding-y $modal-footer-padding-x !default;
|
|
41
|
-
|
|
42
|
-
$modal-xl: 1140px !default;
|
|
43
|
-
$modal-lg: 800px !default;
|
|
44
|
-
$modal-md: 500px !default;
|
|
45
|
-
$modal-sm: 400px !default;
|
|
46
|
-
|
|
47
|
-
$modal-fade-transform: translate(0, -50px) !default;
|
|
48
|
-
$modal-show-transform: none !default;
|
|
49
|
-
$modal-transition: transform .3s ease-out !default;
|
|
50
|
-
$modal-scale-transform: scale(1.02) !default;
|