@doist/reactist 10.0.0 → 11.2.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/dist/reactist.cjs.development.js +3031 -1700
- package/dist/reactist.cjs.development.js.map +1 -1
- package/dist/reactist.cjs.production.min.js +1 -1
- package/dist/reactist.cjs.production.min.js.map +1 -1
- package/es/_virtual/_rollupPluginBabelHelpers.js +34 -20
- package/es/_virtual/_rollupPluginBabelHelpers.js.map +1 -1
- package/es/components/{button/button.js → deprecated-button/deprecated-button.js} +8 -3
- package/es/components/deprecated-button/deprecated-button.js.map +1 -0
- package/es/components/{button → deprecated-button}/index.js +1 -1
- package/es/components/{avatar → deprecated-button}/index.js.map +0 -0
- package/es/components/{loading/loading.js → deprecated-loading/deprecated-loading.js} +3 -1
- package/es/components/deprecated-loading/deprecated-loading.js.map +1 -0
- package/es/components/{modal/modal.js → deprecated-modal/deprecated-modal.js} +14 -6
- package/es/components/deprecated-modal/deprecated-modal.js.map +1 -0
- package/es/components/{modal → deprecated-modal}/index.js +1 -1
- package/es/components/deprecated-modal/index.js.map +1 -0
- package/es/components/dropdown/dropdown.js +5 -3
- package/es/components/dropdown/dropdown.js.map +1 -1
- package/es/components/key-capturer/key-capturer.js +1 -1
- package/es/components/key-capturer/key-capturer.js.map +1 -1
- package/es/components/keyboard-shortcut/keyboard-shortcut.js +3 -2
- package/es/components/keyboard-shortcut/keyboard-shortcut.js.map +1 -1
- package/es/components/menu/menu.js +53 -30
- package/es/components/menu/menu.js.map +1 -1
- package/es/components/notification/notification.js +9 -4
- package/es/components/notification/notification.js.map +1 -1
- package/es/components/popover/popover.js +1 -1
- package/es/components/popover/popover.js.map +1 -1
- package/es/components/popover/positioning-utils.js.map +1 -1
- package/es/components/progress-bar/progress-bar.js +8 -2
- package/es/components/progress-bar/progress-bar.js.map +1 -1
- package/es/components/select/select.js +4 -2
- package/es/components/select/select.js.map +1 -1
- package/es/components/time/time-utils.js.map +1 -1
- package/es/components/time/time.js +1 -1
- package/es/components/time/time.js.map +1 -1
- package/es/components/tooltip/tooltip.js +4 -2
- package/es/components/tooltip/tooltip.js.map +1 -1
- package/es/hooks/use-previous/use-previous.js +26 -0
- package/es/hooks/use-previous/use-previous.js.map +1 -0
- package/es/index.js +32 -13
- package/es/index.js.map +1 -1
- package/es/new-components/alert/alert.js +48 -0
- package/es/new-components/alert/alert.js.map +1 -0
- package/es/new-components/alert/alert.module.css.js +4 -0
- package/es/new-components/alert/alert.module.css.js.map +1 -0
- package/es/{components → new-components}/avatar/avatar.js +14 -8
- package/es/new-components/avatar/avatar.js.map +1 -0
- package/es/new-components/avatar/avatar.module.css.js +4 -0
- package/es/new-components/avatar/avatar.module.css.js.map +1 -0
- package/es/{components → new-components}/avatar/utils.js +0 -0
- package/es/new-components/avatar/utils.js.map +1 -0
- package/es/new-components/base-button/base-button.js +74 -0
- package/es/new-components/base-button/base-button.js.map +1 -0
- package/es/new-components/base-button/base-button.module.css.js +4 -0
- package/es/new-components/base-button/base-button.module.css.js.map +1 -0
- package/es/new-components/base-field/base-field.js +65 -0
- package/es/new-components/base-field/base-field.js.map +1 -0
- package/es/new-components/base-field/base-field.module.css.js +4 -0
- package/es/new-components/base-field/base-field.module.css.js.map +1 -0
- package/es/new-components/box/box.js +74 -0
- package/es/new-components/box/box.js.map +1 -0
- package/es/new-components/box/box.module.css.js +4 -0
- package/es/new-components/box/box.module.css.js.map +1 -0
- package/es/new-components/box/margin.module.css.js +4 -0
- package/es/new-components/box/margin.module.css.js.map +1 -0
- package/es/new-components/box/padding.module.css.js +4 -0
- package/es/new-components/box/padding.module.css.js.map +1 -0
- package/es/new-components/box/width.module.css.js +4 -0
- package/es/new-components/box/width.module.css.js.map +1 -0
- package/es/new-components/button/button.js +41 -0
- package/es/new-components/button/button.js.map +1 -0
- package/es/new-components/button-link/button-link.js +42 -0
- package/es/new-components/button-link/button-link.js.map +1 -0
- package/es/new-components/checkbox-field/checkbox-field.js +88 -0
- package/es/new-components/checkbox-field/checkbox-field.js.map +1 -0
- package/es/new-components/checkbox-field/checkbox-field.module.css.js +4 -0
- package/es/new-components/checkbox-field/checkbox-field.module.css.js.map +1 -0
- package/es/new-components/checkbox-field/checkbox-icon.js +61 -0
- package/es/new-components/checkbox-field/checkbox-icon.js.map +1 -0
- package/es/new-components/columns/columns.js +59 -0
- package/es/new-components/columns/columns.js.map +1 -0
- package/es/new-components/columns/columns.module.css.js +4 -0
- package/es/new-components/columns/columns.module.css.js.map +1 -0
- package/es/new-components/common-helpers.js +24 -0
- package/es/new-components/common-helpers.js.map +1 -0
- package/es/new-components/divider/divider.js +21 -0
- package/es/new-components/divider/divider.js.map +1 -0
- package/es/new-components/divider/divider.module.css.js +4 -0
- package/es/new-components/divider/divider.module.css.js.map +1 -0
- package/es/new-components/heading/heading.js +37 -0
- package/es/new-components/heading/heading.js.map +1 -0
- package/es/new-components/heading/heading.module.css.js +4 -0
- package/es/new-components/heading/heading.module.css.js.map +1 -0
- package/es/new-components/hidden/hidden.js +55 -0
- package/es/new-components/hidden/hidden.js.map +1 -0
- package/es/new-components/hidden/hidden.module.css.js +4 -0
- package/es/new-components/hidden/hidden.module.css.js.map +1 -0
- package/es/new-components/hidden-visually/hidden-visually.js +22 -0
- package/es/new-components/hidden-visually/hidden-visually.js.map +1 -0
- package/es/new-components/hidden-visually/hidden-visually.module.css.js +4 -0
- package/es/new-components/hidden-visually/hidden-visually.module.css.js.map +1 -0
- package/es/new-components/icons/alert-icon.js +77 -0
- package/es/new-components/icons/alert-icon.js.map +1 -0
- package/es/new-components/icons/close-icon.js +15 -0
- package/es/new-components/icons/close-icon.js.map +1 -0
- package/es/new-components/icons/password-hidden-icon.js +29 -0
- package/es/new-components/icons/password-hidden-icon.js.map +1 -0
- package/es/new-components/icons/password-visible-icon.js +22 -0
- package/es/new-components/icons/password-visible-icon.js.map +1 -0
- package/es/new-components/inline/inline.js +36 -0
- package/es/new-components/inline/inline.js.map +1 -0
- package/es/new-components/inline/inline.module.css.js +4 -0
- package/es/new-components/inline/inline.module.css.js.map +1 -0
- package/es/new-components/loading/loading.js +37 -0
- package/es/new-components/loading/loading.js.map +1 -0
- package/es/new-components/modal/modal.js +220 -0
- package/es/new-components/modal/modal.js.map +1 -0
- package/es/new-components/modal/modal.module.css.js +4 -0
- package/es/new-components/modal/modal.module.css.js.map +1 -0
- package/es/new-components/notice/notice.js +30 -0
- package/es/new-components/notice/notice.js.map +1 -0
- package/es/new-components/notice/notice.module.css.js +4 -0
- package/es/new-components/notice/notice.module.css.js.map +1 -0
- package/es/new-components/password-field/password-field.js +76 -0
- package/es/new-components/password-field/password-field.js.map +1 -0
- package/es/new-components/password-field/password-field.module.css.js +4 -0
- package/es/new-components/password-field/password-field.module.css.js.map +1 -0
- package/es/new-components/responsive-props.js +75 -0
- package/es/new-components/responsive-props.js.map +1 -0
- package/es/new-components/select-field/select-field.js +53 -0
- package/es/new-components/select-field/select-field.js.map +1 -0
- package/es/new-components/select-field/select-field.module.css.js +4 -0
- package/es/new-components/select-field/select-field.module.css.js.map +1 -0
- package/es/new-components/spinner/spinner.js +26 -0
- package/es/new-components/spinner/spinner.js.map +1 -0
- package/es/new-components/spinner/spinner.module.css.js +4 -0
- package/es/new-components/spinner/spinner.module.css.js.map +1 -0
- package/es/new-components/stack/stack.js +42 -0
- package/es/new-components/stack/stack.js.map +1 -0
- package/es/new-components/stack/stack.module.css.js +4 -0
- package/es/new-components/stack/stack.module.css.js.map +1 -0
- package/es/new-components/switch-field/switch-field.js +96 -0
- package/es/new-components/switch-field/switch-field.js.map +1 -0
- package/es/new-components/switch-field/switch-field.module.css.js +4 -0
- package/es/new-components/switch-field/switch-field.module.css.js.map +1 -0
- package/es/new-components/tabs/tabs.js +147 -0
- package/es/new-components/tabs/tabs.js.map +1 -0
- package/es/new-components/tabs/tabs.module.css.js +4 -0
- package/es/new-components/tabs/tabs.module.css.js.map +1 -0
- package/es/new-components/text/text.js +36 -0
- package/es/new-components/text/text.js.map +1 -0
- package/es/new-components/text/text.module.css.js +4 -0
- package/es/new-components/text/text.module.css.js.map +1 -0
- package/es/new-components/text-area/text-area.js +34 -0
- package/es/new-components/text-area/text-area.js.map +1 -0
- package/es/new-components/text-area/text-area.module.css.js +4 -0
- package/es/new-components/text-area/text-area.module.css.js.map +1 -0
- package/es/new-components/text-field/text-field.js +41 -0
- package/es/new-components/text-field/text-field.js.map +1 -0
- package/es/new-components/text-field/text-field.module.css.js +4 -0
- package/es/new-components/text-field/text-field.module.css.js.map +1 -0
- package/es/new-components/text-link/text-link.js +27 -0
- package/es/new-components/text-link/text-link.js.map +1 -0
- package/es/new-components/text-link/text-link.module.css.js +4 -0
- package/es/new-components/text-link/text-link.module.css.js.map +1 -0
- package/es/utils/polymorphism.js +17 -0
- package/es/utils/polymorphism.js.map +1 -0
- package/lib/_virtual/_rollupPluginBabelHelpers.js +1 -1
- package/lib/components/{avatar/utils.test.d.ts → checkbox/checkbox.test.d.ts} +0 -0
- package/lib/components/color-picker/color-picker.test.d.ts +1 -0
- package/lib/components/{button/button.d.ts → deprecated-button/deprecated-button.d.ts} +7 -1
- package/lib/components/deprecated-button/deprecated-button.js +2 -0
- package/lib/components/deprecated-button/deprecated-button.js.map +1 -0
- package/lib/components/deprecated-button/deprecated-button.test.d.ts +1 -0
- package/lib/components/deprecated-button/index.d.ts +4 -0
- package/lib/components/{avatar → deprecated-button}/index.js +1 -1
- package/lib/components/{avatar → deprecated-button}/index.js.map +0 -0
- package/lib/components/{loading/loading.d.ts → deprecated-loading/deprecated-loading.d.ts} +2 -1
- package/lib/components/{loading/loading.js → deprecated-loading/deprecated-loading.js} +1 -1
- package/lib/components/deprecated-loading/deprecated-loading.js.map +1 -0
- package/lib/components/deprecated-loading/deprecated-loading.test.d.ts +1 -0
- package/lib/components/deprecated-loading/index.d.ts +1 -0
- package/lib/components/{modal/modal.d.ts → deprecated-modal/deprecated-modal.d.ts} +7 -2
- package/lib/components/deprecated-modal/deprecated-modal.js +2 -0
- package/lib/components/deprecated-modal/deprecated-modal.js.map +1 -0
- package/lib/components/deprecated-modal/deprecated-modal.test.d.ts +1 -0
- package/lib/components/{modal → deprecated-modal}/index.d.ts +2 -2
- package/lib/components/deprecated-modal/index.js +2 -0
- package/lib/components/deprecated-modal/index.js.map +1 -0
- package/lib/components/dropdown/dropdown.js +1 -1
- package/lib/components/dropdown/dropdown.js.map +1 -1
- package/lib/components/dropdown/dropdown.test.d.ts +1 -0
- package/lib/components/input/input.test.d.ts +1 -0
- package/lib/components/key-capturer/key-capturer.js +1 -1
- package/lib/components/key-capturer/key-capturer.test.d.ts +1 -0
- package/lib/components/keyboard-shortcut/keyboard-shortcut.js +1 -1
- package/lib/components/keyboard-shortcut/keyboard-shortcut.js.map +1 -1
- package/lib/components/keyboard-shortcut/keyboard-shortcut.test.d.ts +1 -0
- package/lib/components/menu/menu.d.ts +8 -10
- package/lib/components/menu/menu.js +1 -1
- package/lib/components/menu/menu.js.map +1 -1
- package/lib/components/menu/menu.test.d.ts +1 -0
- package/lib/components/notification/notification.d.ts +4 -2
- package/lib/components/notification/notification.js +1 -1
- package/lib/components/notification/notification.js.map +1 -1
- package/lib/components/notification/notification.test.d.ts +1 -0
- package/lib/components/popover/popover.js +1 -1
- package/lib/components/popover/popover.test.d.ts +1 -0
- package/lib/components/progress-bar/progress-bar.d.ts +3 -1
- package/lib/components/progress-bar/progress-bar.js +1 -1
- package/lib/components/progress-bar/progress-bar.js.map +1 -1
- package/lib/components/progress-bar/progress-bar.test.d.ts +1 -0
- package/lib/components/select/select.js +1 -1
- package/lib/components/select/select.js.map +1 -1
- package/lib/components/select/select.test.d.ts +1 -0
- package/lib/components/time/time.js +1 -1
- package/lib/components/time/time.test.d.ts +1 -0
- package/lib/components/tooltip/tooltip.js +1 -1
- package/lib/components/tooltip/tooltip.js.map +1 -1
- package/lib/components/tooltip/tooltip.test.d.ts +1 -0
- package/lib/hooks/use-previous/index.d.ts +1 -0
- package/lib/hooks/use-previous/use-previous.d.ts +15 -0
- package/lib/hooks/use-previous/use-previous.js +2 -0
- package/lib/hooks/use-previous/use-previous.js.map +1 -0
- package/lib/index.d.ts +33 -13
- package/lib/index.js +1 -1
- package/lib/new-components/alert/alert.d.ts +17 -0
- package/lib/new-components/alert/alert.js +2 -0
- package/lib/new-components/alert/alert.js.map +1 -0
- package/lib/new-components/alert/alert.module.css.js +2 -0
- package/lib/new-components/alert/alert.module.css.js.map +1 -0
- package/lib/new-components/alert/alert.test.d.ts +1 -0
- package/lib/new-components/alert/index.d.ts +1 -0
- package/lib/{components → new-components}/avatar/avatar.d.ts +6 -3
- package/lib/new-components/avatar/avatar.js +2 -0
- package/lib/new-components/avatar/avatar.js.map +1 -0
- package/lib/new-components/avatar/avatar.module.css.js +2 -0
- package/lib/new-components/avatar/avatar.module.css.js.map +1 -0
- package/lib/new-components/avatar/avatar.test.d.ts +1 -0
- package/lib/new-components/avatar/index.d.ts +1 -0
- package/lib/{components → new-components}/avatar/utils.d.ts +0 -0
- package/lib/{components → new-components}/avatar/utils.js +0 -0
- package/lib/new-components/avatar/utils.js.map +1 -0
- package/lib/new-components/avatar/utils.test.d.ts +1 -0
- package/lib/new-components/base-button/base-button.d.ts +69 -0
- package/lib/new-components/base-button/base-button.js +2 -0
- package/lib/new-components/base-button/base-button.js.map +1 -0
- package/lib/new-components/base-button/base-button.module.css.js +2 -0
- package/lib/new-components/base-button/base-button.module.css.js.map +1 -0
- package/lib/new-components/base-button/index.d.ts +1 -0
- package/lib/new-components/base-field/base-field.d.ts +64 -0
- package/lib/new-components/base-field/base-field.js +2 -0
- package/lib/new-components/base-field/base-field.js.map +1 -0
- package/lib/new-components/base-field/base-field.module.css.js +2 -0
- package/lib/new-components/base-field/base-field.module.css.js.map +1 -0
- package/lib/new-components/base-field/index.d.ts +1 -0
- package/lib/new-components/box/box.d.ts +58 -0
- package/lib/new-components/box/box.js +2 -0
- package/lib/new-components/box/box.js.map +1 -0
- package/lib/new-components/box/box.module.css.js +2 -0
- package/lib/new-components/box/box.module.css.js.map +1 -0
- package/lib/new-components/box/box.test.d.ts +1 -0
- package/lib/new-components/box/index.d.ts +1 -0
- package/lib/new-components/box/margin.module.css.js +2 -0
- package/lib/new-components/box/margin.module.css.js.map +1 -0
- package/lib/new-components/box/padding.module.css.js +2 -0
- package/lib/new-components/box/padding.module.css.js.map +1 -0
- package/lib/new-components/box/width.module.css.js +2 -0
- package/lib/new-components/box/width.module.css.js.map +1 -0
- package/lib/new-components/button/button.d.ts +50 -0
- package/lib/new-components/button/button.js +2 -0
- package/lib/new-components/button/button.js.map +1 -0
- package/lib/new-components/button/button.test.d.ts +1 -0
- package/lib/new-components/button/index.d.ts +1 -0
- package/lib/new-components/button-link/button-link-story-wrapper.d.ts +7 -0
- package/lib/new-components/button-link/button-link.d.ts +15 -0
- package/lib/new-components/button-link/button-link.js +2 -0
- package/lib/new-components/button-link/button-link.js.map +1 -0
- package/lib/new-components/button-link/button-link.test.d.ts +1 -0
- package/lib/new-components/button-link/index.d.ts +1 -0
- package/lib/new-components/checkbox-field/checkbox-field.d.ts +21 -0
- package/lib/new-components/checkbox-field/checkbox-field.js +2 -0
- package/lib/new-components/checkbox-field/checkbox-field.js.map +1 -0
- package/lib/new-components/checkbox-field/checkbox-field.module.css.js +2 -0
- package/lib/new-components/checkbox-field/checkbox-field.module.css.js.map +1 -0
- package/lib/new-components/checkbox-field/checkbox-field.test.d.ts +1 -0
- package/lib/new-components/checkbox-field/checkbox-icon.d.ts +8 -0
- package/lib/new-components/checkbox-field/checkbox-icon.js +2 -0
- package/lib/new-components/checkbox-field/checkbox-icon.js.map +1 -0
- package/lib/new-components/checkbox-field/index.d.ts +1 -0
- package/lib/new-components/columns/columns.d.ts +20 -0
- package/lib/new-components/columns/columns.js +2 -0
- package/lib/new-components/columns/columns.js.map +1 -0
- package/lib/new-components/columns/columns.module.css.js +2 -0
- package/lib/new-components/columns/columns.module.css.js.map +1 -0
- package/lib/new-components/columns/columns.test.d.ts +1 -0
- package/lib/new-components/columns/index.d.ts +1 -0
- package/lib/new-components/common-helpers.d.ts +2 -0
- package/lib/new-components/common-helpers.js +2 -0
- package/lib/new-components/common-helpers.js.map +1 -0
- package/lib/new-components/common-types.d.ts +23 -0
- package/lib/new-components/divider/divider.d.ts +8 -0
- package/lib/new-components/divider/divider.js +2 -0
- package/lib/new-components/divider/divider.js.map +1 -0
- package/lib/new-components/divider/divider.module.css.js +2 -0
- package/lib/new-components/divider/divider.module.css.js.map +1 -0
- package/lib/new-components/divider/index.d.ts +1 -0
- package/lib/new-components/heading/heading.d.ts +115 -0
- package/lib/new-components/heading/heading.js +2 -0
- package/lib/new-components/heading/heading.js.map +1 -0
- package/lib/new-components/heading/heading.module.css.js +2 -0
- package/lib/new-components/heading/heading.module.css.js.map +1 -0
- package/lib/new-components/heading/heading.test.d.ts +1 -0
- package/lib/new-components/heading/index.d.ts +1 -0
- package/lib/new-components/hidden/hidden.d.ts +49 -0
- package/lib/new-components/hidden/hidden.js +2 -0
- package/lib/new-components/hidden/hidden.js.map +1 -0
- package/lib/new-components/hidden/hidden.module.css.js +2 -0
- package/lib/new-components/hidden/hidden.module.css.js.map +1 -0
- package/lib/new-components/hidden/hidden.test.d.ts +1 -0
- package/lib/new-components/hidden/index.d.ts +1 -0
- package/lib/new-components/hidden-visually/hidden-visually.d.ts +11 -0
- package/lib/new-components/hidden-visually/hidden-visually.js +2 -0
- package/lib/new-components/hidden-visually/hidden-visually.js.map +1 -0
- package/lib/new-components/hidden-visually/hidden-visually.module.css.js +2 -0
- package/lib/new-components/hidden-visually/hidden-visually.module.css.js.map +1 -0
- package/lib/new-components/hidden-visually/hidden-visually.test.d.ts +1 -0
- package/lib/new-components/hidden-visually/index.d.ts +1 -0
- package/lib/new-components/icons/alert-icon.d.ts +6 -0
- package/lib/new-components/icons/alert-icon.js +2 -0
- package/lib/new-components/icons/alert-icon.js.map +1 -0
- package/lib/new-components/icons/close-icon.d.ts +3 -0
- package/lib/new-components/icons/close-icon.js +2 -0
- package/lib/new-components/icons/close-icon.js.map +1 -0
- package/lib/new-components/icons/password-hidden-icon.d.ts +3 -0
- package/lib/new-components/icons/password-hidden-icon.js +2 -0
- package/lib/new-components/icons/password-hidden-icon.js.map +1 -0
- package/lib/new-components/icons/password-visible-icon.d.ts +3 -0
- package/lib/new-components/icons/password-visible-icon.js +2 -0
- package/lib/new-components/icons/password-visible-icon.js.map +1 -0
- package/lib/new-components/inline/index.d.ts +1 -0
- package/lib/new-components/inline/inline.d.ts +12 -0
- package/lib/new-components/inline/inline.js +2 -0
- package/lib/new-components/inline/inline.js.map +1 -0
- package/lib/new-components/inline/inline.module.css.js +2 -0
- package/lib/new-components/inline/inline.module.css.js.map +1 -0
- package/lib/new-components/inline/inline.test.d.ts +1 -0
- package/lib/new-components/loading/index.d.ts +1 -0
- package/lib/new-components/loading/loading.d.ts +27 -0
- package/lib/new-components/loading/loading.js +2 -0
- package/lib/new-components/loading/loading.js.map +1 -0
- package/lib/new-components/loading/loading.test.d.ts +1 -0
- package/lib/new-components/modal/index.d.ts +1 -0
- package/lib/new-components/modal/modal-stories-components.d.ts +35 -0
- package/lib/new-components/modal/modal.d.ts +156 -0
- package/lib/new-components/modal/modal.js +2 -0
- package/lib/new-components/modal/modal.js.map +1 -0
- package/lib/new-components/modal/modal.module.css.js +2 -0
- package/lib/new-components/modal/modal.module.css.js.map +1 -0
- package/lib/new-components/modal/modal.test.d.ts +1 -0
- package/lib/new-components/notice/index.d.ts +1 -0
- package/lib/new-components/notice/notice.d.ts +10 -0
- package/lib/new-components/notice/notice.js +2 -0
- package/lib/new-components/notice/notice.js.map +1 -0
- package/lib/new-components/notice/notice.module.css.js +2 -0
- package/lib/new-components/notice/notice.module.css.js.map +1 -0
- package/lib/new-components/notice/notice.test.d.ts +1 -0
- package/lib/new-components/password-field/index.d.ts +1 -0
- package/lib/new-components/password-field/password-field.d.ts +8 -0
- package/lib/new-components/password-field/password-field.js +2 -0
- package/lib/new-components/password-field/password-field.js.map +1 -0
- package/lib/new-components/password-field/password-field.module.css.js +2 -0
- package/lib/new-components/password-field/password-field.module.css.js.map +1 -0
- package/lib/new-components/password-field/password-field.test.d.ts +1 -0
- package/lib/new-components/responsive-props.d.ts +44 -0
- package/lib/new-components/responsive-props.js +2 -0
- package/lib/new-components/responsive-props.js.map +1 -0
- package/lib/new-components/select-field/index.d.ts +1 -0
- package/lib/new-components/select-field/select-field.d.ts +6 -0
- package/lib/new-components/select-field/select-field.js +2 -0
- package/lib/new-components/select-field/select-field.js.map +1 -0
- package/lib/new-components/select-field/select-field.module.css.js +2 -0
- package/lib/new-components/select-field/select-field.module.css.js.map +1 -0
- package/lib/new-components/select-field/select-field.test.d.ts +1 -0
- package/lib/new-components/spinner/index.d.ts +1 -0
- package/lib/new-components/spinner/spinner.d.ts +5 -0
- package/lib/new-components/spinner/spinner.js +2 -0
- package/lib/new-components/spinner/spinner.js.map +1 -0
- package/lib/new-components/spinner/spinner.module.css.js +2 -0
- package/lib/new-components/spinner/spinner.module.css.js.map +1 -0
- package/lib/new-components/stack/index.d.ts +1 -0
- package/lib/new-components/stack/stack.d.ts +15 -0
- package/lib/new-components/stack/stack.js +2 -0
- package/lib/new-components/stack/stack.js.map +1 -0
- package/lib/new-components/stack/stack.module.css.js +2 -0
- package/lib/new-components/stack/stack.module.css.js.map +1 -0
- package/lib/new-components/stack/stack.test.d.ts +1 -0
- package/lib/new-components/switch-field/index.d.ts +1 -0
- package/lib/new-components/switch-field/switch-field.d.ts +13 -0
- package/lib/new-components/switch-field/switch-field.js +2 -0
- package/lib/new-components/switch-field/switch-field.js.map +1 -0
- package/lib/new-components/switch-field/switch-field.module.css.js +2 -0
- package/lib/new-components/switch-field/switch-field.module.css.js.map +1 -0
- package/lib/new-components/switch-field/switch-field.test.d.ts +1 -0
- package/lib/new-components/tabs/index.d.ts +1 -0
- package/lib/new-components/tabs/tabs.d.ts +92 -0
- package/lib/new-components/tabs/tabs.js +2 -0
- package/lib/new-components/tabs/tabs.js.map +1 -0
- package/lib/new-components/tabs/tabs.module.css.js +2 -0
- package/lib/new-components/tabs/tabs.module.css.js.map +1 -0
- package/lib/new-components/tabs/tabs.test.d.ts +1 -0
- package/lib/new-components/test-helpers.d.ts +9 -0
- package/lib/new-components/text/index.d.ts +1 -0
- package/lib/new-components/text/text.d.ts +47 -0
- package/lib/new-components/text/text.js +2 -0
- package/lib/new-components/text/text.js.map +1 -0
- package/lib/new-components/text/text.module.css.js +2 -0
- package/lib/new-components/text/text.module.css.js.map +1 -0
- package/lib/new-components/text/text.test.d.ts +1 -0
- package/lib/new-components/text-area/index.d.ts +1 -0
- package/lib/new-components/text-area/text-area.d.ts +8 -0
- package/lib/new-components/text-area/text-area.js +2 -0
- package/lib/new-components/text-area/text-area.js.map +1 -0
- package/lib/new-components/text-area/text-area.module.css.js +2 -0
- package/lib/new-components/text-area/text-area.module.css.js.map +1 -0
- package/lib/new-components/text-field/index.d.ts +1 -0
- package/lib/new-components/text-field/text-field.d.ts +9 -0
- package/lib/new-components/text-field/text-field.js +2 -0
- package/lib/new-components/text-field/text-field.js.map +1 -0
- package/lib/new-components/text-field/text-field.module.css.js +2 -0
- package/lib/new-components/text-field/text-field.module.css.js.map +1 -0
- package/lib/new-components/text-field/text-field.test.d.ts +1 -0
- package/lib/new-components/text-link/index.d.ts +1 -0
- package/lib/new-components/text-link/text-link.d.ts +5 -0
- package/lib/new-components/text-link/text-link.js +2 -0
- package/lib/new-components/text-link/text-link.js.map +1 -0
- package/lib/new-components/text-link/text-link.module.css.js +2 -0
- package/lib/new-components/text-link/text-link.module.css.js.map +1 -0
- package/lib/utils/polymorphism.d.ts +151 -0
- package/lib/utils/polymorphism.js +2 -0
- package/lib/utils/polymorphism.js.map +1 -0
- package/package.json +25 -16
- package/styles/alert.css +9 -0
- package/styles/alert.module.css.css +1 -0
- package/styles/avatar.css +5 -1
- package/styles/avatar.module.css.css +1 -0
- package/styles/base-button.css +7 -0
- package/styles/base-button.module.css.css +1 -0
- package/styles/base-field.css +8 -0
- package/styles/base-field.module.css.css +1 -0
- package/styles/box.css +4 -0
- package/styles/box.module.css.css +1 -0
- package/styles/checkbox-field.css +6 -0
- package/styles/checkbox-field.module.css.css +1 -0
- package/styles/color-picker.css +2 -2
- package/styles/columns.css +5 -0
- package/styles/columns.module.css.css +1 -0
- package/styles/{button.css → deprecated-button.css} +2 -2
- package/styles/deprecated-loading.css +1 -0
- package/styles/deprecated-modal.css +1 -0
- package/styles/divider.css +5 -0
- package/styles/divider.module.css.css +1 -0
- package/styles/dropdown.css +3 -3
- package/styles/heading.css +5 -0
- package/styles/heading.module.css.css +1 -0
- package/styles/hidden-visually.css +5 -0
- package/styles/hidden-visually.module.css.css +1 -0
- package/styles/hidden.css +5 -0
- package/styles/hidden.module.css.css +1 -0
- package/styles/inline.css +5 -0
- package/styles/inline.module.css.css +1 -0
- package/styles/loading.css +5 -1
- package/styles/margin.module.css.css +1 -0
- package/styles/menu.css +1 -1
- package/styles/modal.css +11 -1
- package/styles/modal.module.css.css +1 -0
- package/styles/notice.css +6 -0
- package/styles/notice.module.css.css +1 -0
- package/styles/padding.module.css.css +1 -0
- package/styles/password-field.css +11 -0
- package/styles/password-field.module.css.css +1 -0
- package/styles/progress-bar.css +5 -0
- package/styles/reactist.css +34 -12
- package/styles/select-field.css +9 -0
- package/styles/select-field.module.css.css +1 -0
- package/styles/spinner.module.css.css +1 -0
- package/styles/stack.css +6 -0
- package/styles/stack.module.css.css +1 -0
- package/styles/switch-field.css +10 -0
- package/styles/switch-field.module.css.css +1 -0
- package/styles/tabs.css +6 -1
- package/styles/tabs.module.css.css +1 -0
- package/styles/text-area.css +9 -0
- package/styles/text-area.module.css.css +1 -0
- package/styles/text-field.css +9 -0
- package/styles/text-field.module.css.css +1 -0
- package/styles/text-link.css +5 -0
- package/styles/text-link.module.css.css +1 -0
- package/styles/text.css +5 -0
- package/styles/text.module.css.css +1 -0
- package/styles/time.css +2 -2
- package/styles/width.module.css.css +1 -0
- package/es/components/avatar/avatar.js.map +0 -1
- package/es/components/avatar/index.js +0 -6
- package/es/components/avatar/utils.js.map +0 -1
- package/es/components/button/button.js.map +0 -1
- package/es/components/button/index.js.map +0 -1
- package/es/components/error-message/error-message.js +0 -90
- package/es/components/error-message/error-message.js.map +0 -1
- package/es/components/error-message/index.js +0 -6
- package/es/components/error-message/index.js.map +0 -1
- package/es/components/icon/icon.js +0 -96
- package/es/components/icon/icon.js.map +0 -1
- package/es/components/icon/index.js +0 -6
- package/es/components/icon/index.js.map +0 -1
- package/es/components/icons/ThinQuestionMarkIcon.svg.js +0 -24
- package/es/components/icons/ThinQuestionMarkIcon.svg.js.map +0 -1
- package/es/components/icons/ThreeDotsIcon.svg.js +0 -40
- package/es/components/icons/ThreeDotsIcon.svg.js.map +0 -1
- package/es/components/loading/index.js +0 -6
- package/es/components/loading/index.js.map +0 -1
- package/es/components/loading/loading.js.map +0 -1
- package/es/components/menu/type-helpers.js +0 -9
- package/es/components/menu/type-helpers.js.map +0 -1
- package/es/components/modal/index.js.map +0 -1
- package/es/components/modal/modal.js.map +0 -1
- package/es/components/range-input/index.js +0 -6
- package/es/components/range-input/index.js.map +0 -1
- package/es/components/range-input/range-input.js +0 -55
- package/es/components/range-input/range-input.js.map +0 -1
- package/es/components/tabs/tabs.js +0 -123
- package/es/components/tabs/tabs.js.map +0 -1
- package/es/components/tip/index.js +0 -6
- package/es/components/tip/index.js.map +0 -1
- package/es/components/tip/tip.js +0 -30
- package/es/components/tip/tip.js.map +0 -1
- package/lib/components/avatar/avatar.js +0 -2
- package/lib/components/avatar/avatar.js.map +0 -1
- package/lib/components/avatar/index.d.ts +0 -2
- package/lib/components/avatar/utils.js.map +0 -1
- package/lib/components/button/button.js +0 -2
- package/lib/components/button/button.js.map +0 -1
- package/lib/components/button/index.d.ts +0 -4
- package/lib/components/button/index.js +0 -2
- package/lib/components/button/index.js.map +0 -1
- package/lib/components/error-message/error-message.d.ts +0 -23
- package/lib/components/error-message/error-message.js +0 -2
- package/lib/components/error-message/error-message.js.map +0 -1
- package/lib/components/error-message/index.d.ts +0 -2
- package/lib/components/error-message/index.js +0 -2
- package/lib/components/error-message/index.js.map +0 -1
- package/lib/components/icon/icon.d.ts +0 -31
- package/lib/components/icon/icon.js +0 -2
- package/lib/components/icon/icon.js.map +0 -1
- package/lib/components/icon/index.d.ts +0 -2
- package/lib/components/icon/index.js +0 -2
- package/lib/components/icon/index.js.map +0 -1
- package/lib/components/icons/ThinQuestionMarkIcon.svg.js +0 -2
- package/lib/components/icons/ThinQuestionMarkIcon.svg.js.map +0 -1
- package/lib/components/icons/ThreeDotsIcon.svg.js +0 -2
- package/lib/components/icons/ThreeDotsIcon.svg.js.map +0 -1
- package/lib/components/loading/index.d.ts +0 -2
- package/lib/components/loading/index.js +0 -2
- package/lib/components/loading/index.js.map +0 -1
- package/lib/components/loading/loading.js.map +0 -1
- package/lib/components/menu/type-helpers.d.ts +0 -25
- package/lib/components/menu/type-helpers.js +0 -2
- package/lib/components/menu/type-helpers.js.map +0 -1
- package/lib/components/modal/index.js +0 -2
- package/lib/components/modal/index.js.map +0 -1
- package/lib/components/modal/modal.js +0 -2
- package/lib/components/modal/modal.js.map +0 -1
- package/lib/components/range-input/index.d.ts +0 -2
- package/lib/components/range-input/index.js +0 -2
- package/lib/components/range-input/index.js.map +0 -1
- package/lib/components/range-input/range-input.d.ts +0 -25
- package/lib/components/range-input/range-input.js +0 -2
- package/lib/components/range-input/range-input.js.map +0 -1
- package/lib/components/tabs/index.d.ts +0 -1
- package/lib/components/tabs/tabs.d.ts +0 -33
- package/lib/components/tabs/tabs.js +0 -2
- package/lib/components/tabs/tabs.js.map +0 -1
- package/lib/components/tip/index.d.ts +0 -2
- package/lib/components/tip/index.js +0 -2
- package/lib/components/tip/index.js.map +0 -1
- package/lib/components/tip/tip.d.ts +0 -20
- package/lib/components/tip/tip.js +0 -2
- package/lib/components/tip/tip.js.map +0 -1
- package/styles/error-message.css +0 -1
- package/styles/icon.css +0 -2
- package/styles/range-input.css +0 -1
- package/styles/tip.css +0 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._5a579f96 textarea{padding:var(--reactist-spacing-small);width:100%;box-sizing:border-box;border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-divider-secondary)}._5a579f96 textarea:focus{border-color:var(--reactist-divider-primary)}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
.c5028ea8{font-family:var(--reactist-font-family);font-size:var(--reactist-font-size-body);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}._05d3a546{font-size:var(--reactist-font-size-caption)}._100565e3{font-size:var(--reactist-font-size-copy)}.b8f72625{font-size:var(--reactist-font-size-subtitle)}._398ecda1{font-weight:var(--reactist-font-weight-medium)}._8054cd6b{font-weight:var(--reactist-font-weight-strong)}._6abd56b1{color:var(--reactist-content-secondary)}._274b4a47{color:#d1453b}._724b0054{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}._51ac6ee4{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.b0742803{-webkit-line-clamp:2}.dd664c95{-webkit-line-clamp:3}.b02775b5{-webkit-line-clamp:4}.da91b300{-webkit-line-clamp:5}
|
|
2
|
+
.ed7d894c{font-family:var(--reactist-font-family)}._22213081{font-weight:var(--reactist-font-weight-strong)}.be8637dd{color:var(--reactist-content-secondary)}._72b46ad5{text-align:right}
|
|
3
|
+
._3f3a401c{border-bottom:1px solid var(--reactist-divider-primary)}._03b05b70{border-bottom:1px solid var(--reactist-divider-secondary)}.b6f67ff8{border-bottom:1px solid var(--reactist-divider-tertiary)}
|
|
4
|
+
._7b475ead>:not(:first-child){margin-top:var(--reactist-spacing-xsmall)}._5641699f>:not(:first-child){margin-top:var(--reactist-spacing-small)}._1a1c63e4>:not(:first-child){margin-top:var(--reactist-spacing-medium)}._560f80a0>:not(:first-child){margin-top:var(--reactist-spacing-large)}._84ffebbc>:not(:first-child){margin-top:var(--reactist-spacing-xlarge)}.b60a65cb>:not(:first-child){margin-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.d808f5c3>:not(:first-child){margin-top:var(--reactist-spacing-xsmall)}.a51c76b3>:not(:first-child){margin-top:var(--reactist-spacing-small)}._7185a7aa>:not(:first-child){margin-top:var(--reactist-spacing-medium)}.af82e610>:not(:first-child){margin-top:var(--reactist-spacing-large)}._88b4ff46>:not(:first-child){margin-top:var(--reactist-spacing-xlarge)}._9de15321>:not(:first-child){margin-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._6fb32d20>:not(:first-child){margin-top:var(--reactist-spacing-xsmall)}._07ee315a>:not(:first-child){margin-top:var(--reactist-spacing-small)}.a270d7ec>:not(:first-child){margin-top:var(--reactist-spacing-medium)}.ea6ebb29>:not(:first-child){margin-top:var(--reactist-spacing-large)}._35b36178>:not(:first-child){margin-top:var(--reactist-spacing-xlarge)}._56c7dc23>:not(:first-child){margin-top:var(--reactist-spacing-xxlarge)}}
|
|
5
|
+
._2a8ae321{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-body);font-family:inherit;vertical-align:baseline;background-color:transparent;list-style:none}pre._2a8ae321{font-family:monospace}._2a8ae321[hidden]{display:none!important}._29e047b9{position:absolute}.fe54fea9{position:fixed}._6a95a38d{position:relative}.ccc689fe{position:-webkit-sticky;position:sticky}@media (min-width:768px){.aad88ae1{position:absolute}._2044ccd3{position:fixed}.a0904035{position:relative}._770506a5{position:-webkit-sticky;position:sticky}}@media (min-width:992px){._5a954855{position:absolute}._2dc73359{position:fixed}._6ab005ed{position:relative}.fa60c726{position:-webkit-sticky;position:sticky}}._221ad6a3{display:block}._6764f5bc{display:flex}._50c37dba{display:inline}._16546fe0{display:inline-block}._2782a687{display:inline-flex}.b70b4fb7{display:none}@media (min-width:768px){._5b3547cc{display:block}._099432e6{display:flex}.d99fcd80{display:inline}._8f160568{display:inline-block}._5b7b4be4{display:inline-flex}._553721f8{display:none}}@media (min-width:992px){._6b86b317{display:block}.eb20eda4{display:flex}.be19d1e9{display:inline}.dcf7c80a{display:inline-block}.e4f02b1f{display:inline-flex}._3974e6d8{display:none}}.daf5e366{flex-direction:column}._47f2ddb7{flex-direction:row}@media (min-width:768px){._27490d54{flex-direction:column}._0317f51b{flex-direction:row}}@media (min-width:992px){._97590faa{flex-direction:column}.bf5d416e{flex-direction:row}}._210c1f9e{flex-wrap:wrap}._2c775d07{flex-wrap:nowrap}._25cae61d{flex-shrink:0}._6068a9cf{flex-grow:0}.c63f682c{flex-grow:1}._0e774dfc{align-items:flex-start}._5695a5d5{align-items:center}._139515d8{align-items:flex-end}.cea92f0a{align-items:baseline}@media (min-width:768px){._3dc7ec16{align-items:flex-start}._7993a7fa{align-items:center}.b90d7edc{align-items:flex-end}._7bd633f1{align-items:baseline}}@media (min-width:992px){._260d232b{align-items:flex-start}._9e2e0a07{align-items:center}.fc97448b{align-items:flex-end}._0f76a529{align-items:baseline}}._21d759bf{justify-content:flex-start}.ff70e049{justify-content:center}.ae15d5ad{justify-content:flex-end}._84374266{justify-content:space-around}.e72a8ca2{justify-content:space-between}._86224cb5{justify-content:space-evenly}@media (min-width:768px){.dceedee0{justify-content:flex-start}._34ab3dab{justify-content:center}.d5da2eb9{justify-content:flex-end}._1677560d{justify-content:space-around}.ef77b2e7{justify-content:space-between}._685ef848{justify-content:space-evenly}}@media (min-width:992px){._695667f2{justify-content:flex-start}.ebb180cc{justify-content:center}.bd5bb675{justify-content:flex-end}._1677560d{justify-content:space-around}.ae08a70c{justify-content:space-between}._685ef848{justify-content:space-evenly}}._4afa6fac{overflow:hidden}.d8d342e4{overflow:auto}.c104da68{overflow:visible}._2d6bc0d0{overflow:scroll}._99458759{height:100%}.aadb417c{background-color:var(--reactist-bg-default)}._36dca662{background-color:var(--reactist-bg-aside)}.a1054115{background-color:var(--reactist-bg-highlight)}.d17b4e9a{background-color:var(--reactist-bg-selected)}.e3a3ee05{border-radius:var(--reactist-border-radius-small)}.be0cb60b{border-radius:var(--reactist-border-radius-large)}.b9999f44{border:1px solid var(--reactist-divider-primary)}._91063996{border:1px solid var(--reactist-divider-secondary)}._0902977e{border:1px solid var(--reactist-divider-tertiary)}.a7c58898{text-align:start}._2c9a262a{text-align:center}._46f07e93{text-align:end}.e526003e{text-align:justify}@media (min-width:768px){._26864fce{text-align:start}.e8f51d21{text-align:center}.c1dc8b90{text-align:end}._36bb3fa9{text-align:justify}}@media (min-width:992px){._942e35b0{text-align:start}._92da5c98{text-align:center}._2b0ecaf6{text-align:end}._3dd24641{text-align:justify}}
|
|
6
|
+
.c4803194{padding-top:var(--reactist-spacing-xsmall)}._4e9ab24b{padding-top:var(--reactist-spacing-small)}._1d226e27{padding-top:var(--reactist-spacing-medium)}.eb6097f1{padding-top:var(--reactist-spacing-large)}.d3229ba4{padding-top:var(--reactist-spacing-xlarge)}._47978ba4{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f987719c{padding-top:var(--reactist-spacing-xsmall)}._8dbc4b4d{padding-top:var(--reactist-spacing-small)}.ae44fe07{padding-top:var(--reactist-spacing-medium)}.ffe9548d{padding-top:var(--reactist-spacing-large)}.f2b76a44{padding-top:var(--reactist-spacing-xlarge)}.c6eb8f43{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._8699b560{padding-top:var(--reactist-spacing-xsmall)}._02c374b7{padding-top:var(--reactist-spacing-small)}._0dd0332f{padding-top:var(--reactist-spacing-medium)}.da55f1f6{padding-top:var(--reactist-spacing-large)}._8ef2a278{padding-top:var(--reactist-spacing-xlarge)}._8b493b28{padding-top:var(--reactist-spacing-xxlarge)}}._211eebc7{padding-right:var(--reactist-spacing-xsmall)}.ad0ccf15{padding-right:var(--reactist-spacing-small)}.a03e39af{padding-right:var(--reactist-spacing-medium)}.f0941ead{padding-right:var(--reactist-spacing-large)}.e47c5a43{padding-right:var(--reactist-spacing-xlarge)}.e849a5cf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._85374228{padding-right:var(--reactist-spacing-xsmall)}._89df37b9{padding-right:var(--reactist-spacing-small)}._1cc50ebe{padding-right:var(--reactist-spacing-medium)}._1060982b{padding-right:var(--reactist-spacing-large)}.be58847d{padding-right:var(--reactist-spacing-xlarge)}._45093484{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.f8d99d6a{padding-right:var(--reactist-spacing-xsmall)}.efa076d9{padding-right:var(--reactist-spacing-small)}.e59caa64{padding-right:var(--reactist-spacing-medium)}.da42f46a{padding-right:var(--reactist-spacing-large)}.b3ee2580{padding-right:var(--reactist-spacing-xlarge)}._3ef94658{padding-right:var(--reactist-spacing-xxlarge)}}.b0e6eab4{padding-bottom:var(--reactist-spacing-xsmall)}._9510d053{padding-bottom:var(--reactist-spacing-small)}.d7af60c9{padding-bottom:var(--reactist-spacing-medium)}.b75f86cd{padding-bottom:var(--reactist-spacing-large)}.fbd4ce29{padding-bottom:var(--reactist-spacing-xlarge)}._33e3ad63{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f0302da7{padding-bottom:var(--reactist-spacing-xsmall)}._4f9b8012{padding-bottom:var(--reactist-spacing-small)}._4333e20e{padding-bottom:var(--reactist-spacing-medium)}._30bbc76c{padding-bottom:var(--reactist-spacing-large)}.ba5a4008{padding-bottom:var(--reactist-spacing-xlarge)}._423a3b1a{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b40139b7{padding-bottom:var(--reactist-spacing-xsmall)}.f96071fa{padding-bottom:var(--reactist-spacing-small)}.fe803c9a{padding-bottom:var(--reactist-spacing-medium)}._01686eb9{padding-bottom:var(--reactist-spacing-large)}.afa763d8{padding-bottom:var(--reactist-spacing-xlarge)}.a95785f1{padding-bottom:var(--reactist-spacing-xxlarge)}}.cad4e2ec{padding-left:var(--reactist-spacing-xsmall)}.d70b3c17{padding-left:var(--reactist-spacing-small)}._8c851bd6{padding-left:var(--reactist-spacing-medium)}._078feb3c{padding-left:var(--reactist-spacing-large)}._76ab968c{padding-left:var(--reactist-spacing-xlarge)}.aaca85d7{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._5eb0e5aa{padding-left:var(--reactist-spacing-xsmall)}._0384fb4f{padding-left:var(--reactist-spacing-small)}.edffff6f{padding-left:var(--reactist-spacing-medium)}._873b9a46{padding-left:var(--reactist-spacing-large)}._89105db5{padding-left:var(--reactist-spacing-xlarge)}.db1966fe{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b17f826b{padding-left:var(--reactist-spacing-xsmall)}._6dc83610{padding-left:var(--reactist-spacing-small)}._3421b8b2{padding-left:var(--reactist-spacing-medium)}._68cec7a6{padding-left:var(--reactist-spacing-large)}._94bde020{padding-left:var(--reactist-spacing-xlarge)}.b94ee579{padding-left:var(--reactist-spacing-xxlarge)}}
|
|
7
|
+
.c7813d79{margin-top:var(--reactist-spacing-xsmall)}.d3449da6{margin-top:var(--reactist-spacing-small)}._4ea254c1{margin-top:var(--reactist-spacing-medium)}.c0844f64{margin-top:var(--reactist-spacing-large)}._213145b4{margin-top:var(--reactist-spacing-xlarge)}.df61c84c{margin-top:var(--reactist-spacing-xxlarge)}.efe72b13{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}._870c2768{margin-top:calc(var(--reactist-spacing-small)*-1)}._0b927c57{margin-top:calc(var(--reactist-spacing-medium)*-1)}._461db014{margin-top:calc(var(--reactist-spacing-large)*-1)}._2a3a8cb8{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}._9bcda921{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6add01e4{margin-top:var(--reactist-spacing-xsmall)}._735ef86b{margin-top:var(--reactist-spacing-small)}._0477d068{margin-top:var(--reactist-spacing-medium)}._2c90af97{margin-top:var(--reactist-spacing-large)}._63a82db6{margin-top:var(--reactist-spacing-xlarge)}._03cd7726{margin-top:var(--reactist-spacing-xxlarge)}.c986a62a{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.be2bdcdd{margin-top:calc(var(--reactist-spacing-small)*-1)}._47d2686b{margin-top:calc(var(--reactist-spacing-medium)*-1)}._25e5af9d{margin-top:calc(var(--reactist-spacing-large)*-1)}.ee82f441{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.a6f9d404{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._4d8d9a36{margin-top:var(--reactist-spacing-xsmall)}.e813cee7{margin-top:var(--reactist-spacing-small)}._56975b7d{margin-top:var(--reactist-spacing-medium)}._53b367f6{margin-top:var(--reactist-spacing-large)}.d69e7311{margin-top:var(--reactist-spacing-xlarge)}._92f57c7e{margin-top:var(--reactist-spacing-xxlarge)}._96880d3e{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.dc3f3555{margin-top:calc(var(--reactist-spacing-small)*-1)}._86dd06bb{margin-top:calc(var(--reactist-spacing-medium)*-1)}.c93ef12e{margin-top:calc(var(--reactist-spacing-large)*-1)}.bc8fd4a2{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.b12a9124{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}._6016f4fb{margin-right:var(--reactist-spacing-xsmall)}.b85e3dfa{margin-right:var(--reactist-spacing-small)}._297575f4{margin-right:var(--reactist-spacing-medium)}.b401ac6c{margin-right:var(--reactist-spacing-large)}.dc3ec387{margin-right:var(--reactist-spacing-xlarge)}._24694604{margin-right:var(--reactist-spacing-xxlarge)}._8e9bf2ee{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.ae9d1115{margin-right:calc(var(--reactist-spacing-small)*-1)}._14e46fc3{margin-right:calc(var(--reactist-spacing-medium)*-1)}._3370631b{margin-right:calc(var(--reactist-spacing-large)*-1)}._3f0e9b50{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}.bc13e010{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6fa1aae3{margin-right:var(--reactist-spacing-xsmall)}._2976c5cb{margin-right:var(--reactist-spacing-small)}._38d94802{margin-right:var(--reactist-spacing-medium)}.db9569b5{margin-right:var(--reactist-spacing-large)}._4a52f06d{margin-right:var(--reactist-spacing-xlarge)}._8a0f0410{margin-right:var(--reactist-spacing-xxlarge)}.e7d40e9d{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}._680fde91{margin-right:calc(var(--reactist-spacing-small)*-1)}._021010ca{margin-right:calc(var(--reactist-spacing-medium)*-1)}._9e52c87c{margin-right:calc(var(--reactist-spacing-large)*-1)}._4d602613{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._21b1b65a{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._7321bc07{margin-right:var(--reactist-spacing-xsmall)}.fa1721f4{margin-right:var(--reactist-spacing-small)}._3fd7b4b8{margin-right:var(--reactist-spacing-medium)}._4fdc2f74{margin-right:var(--reactist-spacing-large)}.c0254761{margin-right:var(--reactist-spacing-xlarge)}._710a5f09{margin-right:var(--reactist-spacing-xxlarge)}.e08bee7f{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.e5ab73d2{margin-right:calc(var(--reactist-spacing-small)*-1)}._5e731477{margin-right:calc(var(--reactist-spacing-medium)*-1)}._0f57a22e{margin-right:calc(var(--reactist-spacing-large)*-1)}._25f26ed3{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._11a3b4e0{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}._6a4f69f7{margin-bottom:var(--reactist-spacing-xsmall)}.db26b033{margin-bottom:var(--reactist-spacing-small)}.c7313022{margin-bottom:var(--reactist-spacing-medium)}.a5885889{margin-bottom:var(--reactist-spacing-large)}._33dfbd8e{margin-bottom:var(--reactist-spacing-xlarge)}._795ad2de{margin-bottom:var(--reactist-spacing-xxlarge)}.a329dbd3{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._85e739fb{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._681f65ff{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.caf50d8f{margin-bottom:calc(var(--reactist-spacing-large)*-1)}._1e084cbf{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._3dfb1c7e{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){.ef4735be{margin-bottom:var(--reactist-spacing-xsmall)}.de55afba{margin-bottom:var(--reactist-spacing-small)}._0e33ce88{margin-bottom:var(--reactist-spacing-medium)}._8ca391fc{margin-bottom:var(--reactist-spacing-large)}._3a609d23{margin-bottom:var(--reactist-spacing-xlarge)}._3e1177e4{margin-bottom:var(--reactist-spacing-xxlarge)}.d384884d{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._75254cec{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._5d9f127d{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}._835f1089{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.dad52a72{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._8703a4bf{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._90fd20e9{margin-bottom:var(--reactist-spacing-xsmall)}.f3769191{margin-bottom:var(--reactist-spacing-small)}._156410f8{margin-bottom:var(--reactist-spacing-medium)}._7fed74d0{margin-bottom:var(--reactist-spacing-large)}._477dc10e{margin-bottom:var(--reactist-spacing-xlarge)}._85c82d89{margin-bottom:var(--reactist-spacing-xxlarge)}._4f09c1e0{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._9523e048{margin-bottom:calc(var(--reactist-spacing-small)*-1)}.efe10240{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.c43971e6{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.f9b4da15{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}.a10fdf70{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}.f9be90b4{margin-left:var(--reactist-spacing-xsmall)}.f53218d5{margin-left:var(--reactist-spacing-small)}.c4a9b3ab{margin-left:var(--reactist-spacing-medium)}._5755e2c3{margin-left:var(--reactist-spacing-large)}._33fc9354{margin-left:var(--reactist-spacing-xlarge)}._4749a3bf{margin-left:var(--reactist-spacing-xxlarge)}.c76cb3c7{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}._96003c07{margin-left:calc(var(--reactist-spacing-small)*-1)}._09988d07{margin-left:calc(var(--reactist-spacing-medium)*-1)}.b4a486f6{margin-left:calc(var(--reactist-spacing-large)*-1)}.f396e75e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._81d1f26d{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._0a46e8f1{margin-left:var(--reactist-spacing-xsmall)}._57c970af{margin-left:var(--reactist-spacing-small)}._4b6099d3{margin-left:var(--reactist-spacing-medium)}._378fcff5{margin-left:var(--reactist-spacing-large)}.f8785663{margin-left:var(--reactist-spacing-xlarge)}._72f957ee{margin-left:var(--reactist-spacing-xxlarge)}._2288c7e1{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.b27c1c05{margin-left:calc(var(--reactist-spacing-small)*-1)}._702cbb13{margin-left:calc(var(--reactist-spacing-medium)*-1)}._1a2748b4{margin-left:calc(var(--reactist-spacing-large)*-1)}.b8c043a5{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._8dc8ff63{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){.c2af646d{margin-left:var(--reactist-spacing-xsmall)}.c03d07be{margin-left:var(--reactist-spacing-small)}._915fb1d3{margin-left:var(--reactist-spacing-medium)}._64214ee1{margin-left:var(--reactist-spacing-large)}._7be4a22c{margin-left:var(--reactist-spacing-xlarge)}._5ec0a401{margin-left:var(--reactist-spacing-xxlarge)}.ea29f1ee{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.c26652c7{margin-left:calc(var(--reactist-spacing-small)*-1)}.c24f6af9{margin-left:calc(var(--reactist-spacing-medium)*-1)}.c2671f27{margin-left:calc(var(--reactist-spacing-large)*-1)}.cc51a04e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}.fd581f54{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}
|
|
8
|
+
._68ab48ca{min-width:0}._6fa2b565{min-width:var(--reactist-width-xsmall)}.dd50fabd{min-width:var(--reactist-width-small)}.e7e2c808{min-width:var(--reactist-width-medium)}._6abbe25e{min-width:var(--reactist-width-large)}._54f479ac{min-width:var(--reactist-width-xlarge)}._148492bc{max-width:var(--reactist-width-xsmall)}.bd023b96{max-width:var(--reactist-width-small)}.e102903f{max-width:var(--reactist-width-medium)}._0e8d76d7{max-width:var(--reactist-width-large)}._47a031d0{max-width:var(--reactist-width-xlarge)}.cd4c8183{max-width:100%}._5f5959e8{width:0}._8c75067a{width:100%}._56a651f6{width:auto}._26f87bb8{width:-moz-max-content;width:-webkit-max-content;width:max-content}._07a6ab44{width:-moz-min-content;width:-webkit-min-content;width:min-content}.a87016fa{width:-moz-fit-content;width:-webkit-fit-content;width:fit-content}._1a972e50{width:var(--reactist-width-xsmall)}.c96d8261{width:var(--reactist-width-small)}.f3829d42{width:var(--reactist-width-medium)}._2caef228{width:var(--reactist-width-large)}._069e1491{width:var(--reactist-width-xlarge)}
|
|
9
|
+
.dd9ffeab{border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-divider-secondary);overflow:clip}.dd9ffeab:focus-within{border-color:var(--reactist-divider-primary)}.dd9ffeab input{color:var(--reactist-content-primary);flex:1;outline:none;box-sizing:border-box;width:100%;background:transparent;border:none;--tmp-desired-height:30px;--tmp-line-height-increase:4px;--tmp-vertical-padding:calc((var(--tmp-desired-height) - var(--reactist-font-size-body) - var(--tmp-line-height-increase))/2);font-size:var(--reactist-font-size-body);line-height:calc(var(--reactist-font-size-body) + 4px);padding:var(--tmp-vertical-padding) 10px;margin:0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.dd9ffeab{border-radius:var(--reactist-border-radius-small);border:1px solid var(--reactist-divider-secondary);overflow:clip}.dd9ffeab:focus-within{border-color:var(--reactist-divider-primary)}.dd9ffeab input{color:var(--reactist-content-primary);flex:1;outline:none;box-sizing:border-box;width:100%;background:transparent;border:none;--tmp-desired-height:30px;--tmp-line-height-increase:4px;--tmp-vertical-padding:calc((var(--tmp-desired-height) - var(--reactist-font-size-body) - var(--tmp-line-height-increase))/2);font-size:var(--reactist-font-size-body);line-height:calc(var(--reactist-font-size-body) + 4px);padding:var(--tmp-vertical-padding) 10px;margin:0}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
._2a8ae321{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-body);font-family:inherit;vertical-align:baseline;background-color:transparent;list-style:none}pre._2a8ae321{font-family:monospace}._2a8ae321[hidden]{display:none!important}._29e047b9{position:absolute}.fe54fea9{position:fixed}._6a95a38d{position:relative}.ccc689fe{position:-webkit-sticky;position:sticky}@media (min-width:768px){.aad88ae1{position:absolute}._2044ccd3{position:fixed}.a0904035{position:relative}._770506a5{position:-webkit-sticky;position:sticky}}@media (min-width:992px){._5a954855{position:absolute}._2dc73359{position:fixed}._6ab005ed{position:relative}.fa60c726{position:-webkit-sticky;position:sticky}}._221ad6a3{display:block}._6764f5bc{display:flex}._50c37dba{display:inline}._16546fe0{display:inline-block}._2782a687{display:inline-flex}.b70b4fb7{display:none}@media (min-width:768px){._5b3547cc{display:block}._099432e6{display:flex}.d99fcd80{display:inline}._8f160568{display:inline-block}._5b7b4be4{display:inline-flex}._553721f8{display:none}}@media (min-width:992px){._6b86b317{display:block}.eb20eda4{display:flex}.be19d1e9{display:inline}.dcf7c80a{display:inline-block}.e4f02b1f{display:inline-flex}._3974e6d8{display:none}}.daf5e366{flex-direction:column}._47f2ddb7{flex-direction:row}@media (min-width:768px){._27490d54{flex-direction:column}._0317f51b{flex-direction:row}}@media (min-width:992px){._97590faa{flex-direction:column}.bf5d416e{flex-direction:row}}._210c1f9e{flex-wrap:wrap}._2c775d07{flex-wrap:nowrap}._25cae61d{flex-shrink:0}._6068a9cf{flex-grow:0}.c63f682c{flex-grow:1}._0e774dfc{align-items:flex-start}._5695a5d5{align-items:center}._139515d8{align-items:flex-end}.cea92f0a{align-items:baseline}@media (min-width:768px){._3dc7ec16{align-items:flex-start}._7993a7fa{align-items:center}.b90d7edc{align-items:flex-end}._7bd633f1{align-items:baseline}}@media (min-width:992px){._260d232b{align-items:flex-start}._9e2e0a07{align-items:center}.fc97448b{align-items:flex-end}._0f76a529{align-items:baseline}}._21d759bf{justify-content:flex-start}.ff70e049{justify-content:center}.ae15d5ad{justify-content:flex-end}._84374266{justify-content:space-around}.e72a8ca2{justify-content:space-between}._86224cb5{justify-content:space-evenly}@media (min-width:768px){.dceedee0{justify-content:flex-start}._34ab3dab{justify-content:center}.d5da2eb9{justify-content:flex-end}._1677560d{justify-content:space-around}.ef77b2e7{justify-content:space-between}._685ef848{justify-content:space-evenly}}@media (min-width:992px){._695667f2{justify-content:flex-start}.ebb180cc{justify-content:center}.bd5bb675{justify-content:flex-end}._1677560d{justify-content:space-around}.ae08a70c{justify-content:space-between}._685ef848{justify-content:space-evenly}}._4afa6fac{overflow:hidden}.d8d342e4{overflow:auto}.c104da68{overflow:visible}._2d6bc0d0{overflow:scroll}._99458759{height:100%}.aadb417c{background-color:var(--reactist-bg-default)}._36dca662{background-color:var(--reactist-bg-aside)}.a1054115{background-color:var(--reactist-bg-highlight)}.d17b4e9a{background-color:var(--reactist-bg-selected)}.e3a3ee05{border-radius:var(--reactist-border-radius-small)}.be0cb60b{border-radius:var(--reactist-border-radius-large)}.b9999f44{border:1px solid var(--reactist-divider-primary)}._91063996{border:1px solid var(--reactist-divider-secondary)}._0902977e{border:1px solid var(--reactist-divider-tertiary)}.a7c58898{text-align:start}._2c9a262a{text-align:center}._46f07e93{text-align:end}.e526003e{text-align:justify}@media (min-width:768px){._26864fce{text-align:start}.e8f51d21{text-align:center}.c1dc8b90{text-align:end}._36bb3fa9{text-align:justify}}@media (min-width:992px){._942e35b0{text-align:start}._92da5c98{text-align:center}._2b0ecaf6{text-align:end}._3dd24641{text-align:justify}}
|
|
2
|
+
.c4803194{padding-top:var(--reactist-spacing-xsmall)}._4e9ab24b{padding-top:var(--reactist-spacing-small)}._1d226e27{padding-top:var(--reactist-spacing-medium)}.eb6097f1{padding-top:var(--reactist-spacing-large)}.d3229ba4{padding-top:var(--reactist-spacing-xlarge)}._47978ba4{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f987719c{padding-top:var(--reactist-spacing-xsmall)}._8dbc4b4d{padding-top:var(--reactist-spacing-small)}.ae44fe07{padding-top:var(--reactist-spacing-medium)}.ffe9548d{padding-top:var(--reactist-spacing-large)}.f2b76a44{padding-top:var(--reactist-spacing-xlarge)}.c6eb8f43{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._8699b560{padding-top:var(--reactist-spacing-xsmall)}._02c374b7{padding-top:var(--reactist-spacing-small)}._0dd0332f{padding-top:var(--reactist-spacing-medium)}.da55f1f6{padding-top:var(--reactist-spacing-large)}._8ef2a278{padding-top:var(--reactist-spacing-xlarge)}._8b493b28{padding-top:var(--reactist-spacing-xxlarge)}}._211eebc7{padding-right:var(--reactist-spacing-xsmall)}.ad0ccf15{padding-right:var(--reactist-spacing-small)}.a03e39af{padding-right:var(--reactist-spacing-medium)}.f0941ead{padding-right:var(--reactist-spacing-large)}.e47c5a43{padding-right:var(--reactist-spacing-xlarge)}.e849a5cf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._85374228{padding-right:var(--reactist-spacing-xsmall)}._89df37b9{padding-right:var(--reactist-spacing-small)}._1cc50ebe{padding-right:var(--reactist-spacing-medium)}._1060982b{padding-right:var(--reactist-spacing-large)}.be58847d{padding-right:var(--reactist-spacing-xlarge)}._45093484{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.f8d99d6a{padding-right:var(--reactist-spacing-xsmall)}.efa076d9{padding-right:var(--reactist-spacing-small)}.e59caa64{padding-right:var(--reactist-spacing-medium)}.da42f46a{padding-right:var(--reactist-spacing-large)}.b3ee2580{padding-right:var(--reactist-spacing-xlarge)}._3ef94658{padding-right:var(--reactist-spacing-xxlarge)}}.b0e6eab4{padding-bottom:var(--reactist-spacing-xsmall)}._9510d053{padding-bottom:var(--reactist-spacing-small)}.d7af60c9{padding-bottom:var(--reactist-spacing-medium)}.b75f86cd{padding-bottom:var(--reactist-spacing-large)}.fbd4ce29{padding-bottom:var(--reactist-spacing-xlarge)}._33e3ad63{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f0302da7{padding-bottom:var(--reactist-spacing-xsmall)}._4f9b8012{padding-bottom:var(--reactist-spacing-small)}._4333e20e{padding-bottom:var(--reactist-spacing-medium)}._30bbc76c{padding-bottom:var(--reactist-spacing-large)}.ba5a4008{padding-bottom:var(--reactist-spacing-xlarge)}._423a3b1a{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b40139b7{padding-bottom:var(--reactist-spacing-xsmall)}.f96071fa{padding-bottom:var(--reactist-spacing-small)}.fe803c9a{padding-bottom:var(--reactist-spacing-medium)}._01686eb9{padding-bottom:var(--reactist-spacing-large)}.afa763d8{padding-bottom:var(--reactist-spacing-xlarge)}.a95785f1{padding-bottom:var(--reactist-spacing-xxlarge)}}.cad4e2ec{padding-left:var(--reactist-spacing-xsmall)}.d70b3c17{padding-left:var(--reactist-spacing-small)}._8c851bd6{padding-left:var(--reactist-spacing-medium)}._078feb3c{padding-left:var(--reactist-spacing-large)}._76ab968c{padding-left:var(--reactist-spacing-xlarge)}.aaca85d7{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._5eb0e5aa{padding-left:var(--reactist-spacing-xsmall)}._0384fb4f{padding-left:var(--reactist-spacing-small)}.edffff6f{padding-left:var(--reactist-spacing-medium)}._873b9a46{padding-left:var(--reactist-spacing-large)}._89105db5{padding-left:var(--reactist-spacing-xlarge)}.db1966fe{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b17f826b{padding-left:var(--reactist-spacing-xsmall)}._6dc83610{padding-left:var(--reactist-spacing-small)}._3421b8b2{padding-left:var(--reactist-spacing-medium)}._68cec7a6{padding-left:var(--reactist-spacing-large)}._94bde020{padding-left:var(--reactist-spacing-xlarge)}.b94ee579{padding-left:var(--reactist-spacing-xxlarge)}}
|
|
3
|
+
.c7813d79{margin-top:var(--reactist-spacing-xsmall)}.d3449da6{margin-top:var(--reactist-spacing-small)}._4ea254c1{margin-top:var(--reactist-spacing-medium)}.c0844f64{margin-top:var(--reactist-spacing-large)}._213145b4{margin-top:var(--reactist-spacing-xlarge)}.df61c84c{margin-top:var(--reactist-spacing-xxlarge)}.efe72b13{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}._870c2768{margin-top:calc(var(--reactist-spacing-small)*-1)}._0b927c57{margin-top:calc(var(--reactist-spacing-medium)*-1)}._461db014{margin-top:calc(var(--reactist-spacing-large)*-1)}._2a3a8cb8{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}._9bcda921{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6add01e4{margin-top:var(--reactist-spacing-xsmall)}._735ef86b{margin-top:var(--reactist-spacing-small)}._0477d068{margin-top:var(--reactist-spacing-medium)}._2c90af97{margin-top:var(--reactist-spacing-large)}._63a82db6{margin-top:var(--reactist-spacing-xlarge)}._03cd7726{margin-top:var(--reactist-spacing-xxlarge)}.c986a62a{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.be2bdcdd{margin-top:calc(var(--reactist-spacing-small)*-1)}._47d2686b{margin-top:calc(var(--reactist-spacing-medium)*-1)}._25e5af9d{margin-top:calc(var(--reactist-spacing-large)*-1)}.ee82f441{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.a6f9d404{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._4d8d9a36{margin-top:var(--reactist-spacing-xsmall)}.e813cee7{margin-top:var(--reactist-spacing-small)}._56975b7d{margin-top:var(--reactist-spacing-medium)}._53b367f6{margin-top:var(--reactist-spacing-large)}.d69e7311{margin-top:var(--reactist-spacing-xlarge)}._92f57c7e{margin-top:var(--reactist-spacing-xxlarge)}._96880d3e{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.dc3f3555{margin-top:calc(var(--reactist-spacing-small)*-1)}._86dd06bb{margin-top:calc(var(--reactist-spacing-medium)*-1)}.c93ef12e{margin-top:calc(var(--reactist-spacing-large)*-1)}.bc8fd4a2{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.b12a9124{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}._6016f4fb{margin-right:var(--reactist-spacing-xsmall)}.b85e3dfa{margin-right:var(--reactist-spacing-small)}._297575f4{margin-right:var(--reactist-spacing-medium)}.b401ac6c{margin-right:var(--reactist-spacing-large)}.dc3ec387{margin-right:var(--reactist-spacing-xlarge)}._24694604{margin-right:var(--reactist-spacing-xxlarge)}._8e9bf2ee{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.ae9d1115{margin-right:calc(var(--reactist-spacing-small)*-1)}._14e46fc3{margin-right:calc(var(--reactist-spacing-medium)*-1)}._3370631b{margin-right:calc(var(--reactist-spacing-large)*-1)}._3f0e9b50{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}.bc13e010{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6fa1aae3{margin-right:var(--reactist-spacing-xsmall)}._2976c5cb{margin-right:var(--reactist-spacing-small)}._38d94802{margin-right:var(--reactist-spacing-medium)}.db9569b5{margin-right:var(--reactist-spacing-large)}._4a52f06d{margin-right:var(--reactist-spacing-xlarge)}._8a0f0410{margin-right:var(--reactist-spacing-xxlarge)}.e7d40e9d{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}._680fde91{margin-right:calc(var(--reactist-spacing-small)*-1)}._021010ca{margin-right:calc(var(--reactist-spacing-medium)*-1)}._9e52c87c{margin-right:calc(var(--reactist-spacing-large)*-1)}._4d602613{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._21b1b65a{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._7321bc07{margin-right:var(--reactist-spacing-xsmall)}.fa1721f4{margin-right:var(--reactist-spacing-small)}._3fd7b4b8{margin-right:var(--reactist-spacing-medium)}._4fdc2f74{margin-right:var(--reactist-spacing-large)}.c0254761{margin-right:var(--reactist-spacing-xlarge)}._710a5f09{margin-right:var(--reactist-spacing-xxlarge)}.e08bee7f{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.e5ab73d2{margin-right:calc(var(--reactist-spacing-small)*-1)}._5e731477{margin-right:calc(var(--reactist-spacing-medium)*-1)}._0f57a22e{margin-right:calc(var(--reactist-spacing-large)*-1)}._25f26ed3{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._11a3b4e0{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}._6a4f69f7{margin-bottom:var(--reactist-spacing-xsmall)}.db26b033{margin-bottom:var(--reactist-spacing-small)}.c7313022{margin-bottom:var(--reactist-spacing-medium)}.a5885889{margin-bottom:var(--reactist-spacing-large)}._33dfbd8e{margin-bottom:var(--reactist-spacing-xlarge)}._795ad2de{margin-bottom:var(--reactist-spacing-xxlarge)}.a329dbd3{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._85e739fb{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._681f65ff{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.caf50d8f{margin-bottom:calc(var(--reactist-spacing-large)*-1)}._1e084cbf{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._3dfb1c7e{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){.ef4735be{margin-bottom:var(--reactist-spacing-xsmall)}.de55afba{margin-bottom:var(--reactist-spacing-small)}._0e33ce88{margin-bottom:var(--reactist-spacing-medium)}._8ca391fc{margin-bottom:var(--reactist-spacing-large)}._3a609d23{margin-bottom:var(--reactist-spacing-xlarge)}._3e1177e4{margin-bottom:var(--reactist-spacing-xxlarge)}.d384884d{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._75254cec{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._5d9f127d{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}._835f1089{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.dad52a72{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._8703a4bf{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._90fd20e9{margin-bottom:var(--reactist-spacing-xsmall)}.f3769191{margin-bottom:var(--reactist-spacing-small)}._156410f8{margin-bottom:var(--reactist-spacing-medium)}._7fed74d0{margin-bottom:var(--reactist-spacing-large)}._477dc10e{margin-bottom:var(--reactist-spacing-xlarge)}._85c82d89{margin-bottom:var(--reactist-spacing-xxlarge)}._4f09c1e0{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._9523e048{margin-bottom:calc(var(--reactist-spacing-small)*-1)}.efe10240{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.c43971e6{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.f9b4da15{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}.a10fdf70{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}.f9be90b4{margin-left:var(--reactist-spacing-xsmall)}.f53218d5{margin-left:var(--reactist-spacing-small)}.c4a9b3ab{margin-left:var(--reactist-spacing-medium)}._5755e2c3{margin-left:var(--reactist-spacing-large)}._33fc9354{margin-left:var(--reactist-spacing-xlarge)}._4749a3bf{margin-left:var(--reactist-spacing-xxlarge)}.c76cb3c7{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}._96003c07{margin-left:calc(var(--reactist-spacing-small)*-1)}._09988d07{margin-left:calc(var(--reactist-spacing-medium)*-1)}.b4a486f6{margin-left:calc(var(--reactist-spacing-large)*-1)}.f396e75e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._81d1f26d{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._0a46e8f1{margin-left:var(--reactist-spacing-xsmall)}._57c970af{margin-left:var(--reactist-spacing-small)}._4b6099d3{margin-left:var(--reactist-spacing-medium)}._378fcff5{margin-left:var(--reactist-spacing-large)}.f8785663{margin-left:var(--reactist-spacing-xlarge)}._72f957ee{margin-left:var(--reactist-spacing-xxlarge)}._2288c7e1{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.b27c1c05{margin-left:calc(var(--reactist-spacing-small)*-1)}._702cbb13{margin-left:calc(var(--reactist-spacing-medium)*-1)}._1a2748b4{margin-left:calc(var(--reactist-spacing-large)*-1)}.b8c043a5{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._8dc8ff63{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){.c2af646d{margin-left:var(--reactist-spacing-xsmall)}.c03d07be{margin-left:var(--reactist-spacing-small)}._915fb1d3{margin-left:var(--reactist-spacing-medium)}._64214ee1{margin-left:var(--reactist-spacing-large)}._7be4a22c{margin-left:var(--reactist-spacing-xlarge)}._5ec0a401{margin-left:var(--reactist-spacing-xxlarge)}.ea29f1ee{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.c26652c7{margin-left:calc(var(--reactist-spacing-small)*-1)}.c24f6af9{margin-left:calc(var(--reactist-spacing-medium)*-1)}.c2671f27{margin-left:calc(var(--reactist-spacing-large)*-1)}.cc51a04e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}.fd581f54{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}
|
|
4
|
+
._68ab48ca{min-width:0}._6fa2b565{min-width:var(--reactist-width-xsmall)}.dd50fabd{min-width:var(--reactist-width-small)}.e7e2c808{min-width:var(--reactist-width-medium)}._6abbe25e{min-width:var(--reactist-width-large)}._54f479ac{min-width:var(--reactist-width-xlarge)}._148492bc{max-width:var(--reactist-width-xsmall)}.bd023b96{max-width:var(--reactist-width-small)}.e102903f{max-width:var(--reactist-width-medium)}._0e8d76d7{max-width:var(--reactist-width-large)}._47a031d0{max-width:var(--reactist-width-xlarge)}.cd4c8183{max-width:100%}._5f5959e8{width:0}._8c75067a{width:100%}._56a651f6{width:auto}._26f87bb8{width:-moz-max-content;width:-webkit-max-content;width:max-content}._07a6ab44{width:-moz-min-content;width:-webkit-min-content;width:min-content}.a87016fa{width:-moz-fit-content;width:-webkit-fit-content;width:fit-content}._1a972e50{width:var(--reactist-width-xsmall)}.c96d8261{width:var(--reactist-width-small)}.f3829d42{width:var(--reactist-width-medium)}._2caef228{width:var(--reactist-width-large)}._069e1491{width:var(--reactist-width-xlarge)}
|
|
5
|
+
.b55607a1{font-size:inherit;font-weight:inherit;font-family:inherit;text-decoration:none;color:#246fe0;cursor:pointer}.b55607a1:hover{text-decoration:underline}.b55607a1 svg{display:inline-block;width:1em;height:1em;font-size:inherit;color:inherit;vertical-align:-.125em;fill:currentColor;padding:0 6px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.b55607a1{font-size:inherit;font-weight:inherit;font-family:inherit;text-decoration:none;color:#246fe0;cursor:pointer}.b55607a1:hover{text-decoration:underline}.b55607a1 svg{display:inline-block;width:1em;height:1em;font-size:inherit;color:inherit;vertical-align:-.125em;fill:currentColor;padding:0 6px}
|
package/styles/text.css
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
._2a8ae321{box-sizing:border-box;border:0;margin:0;padding:0;font-size:var(--reactist-font-size-body);font-family:inherit;vertical-align:baseline;background-color:transparent;list-style:none}pre._2a8ae321{font-family:monospace}._2a8ae321[hidden]{display:none!important}._29e047b9{position:absolute}.fe54fea9{position:fixed}._6a95a38d{position:relative}.ccc689fe{position:-webkit-sticky;position:sticky}@media (min-width:768px){.aad88ae1{position:absolute}._2044ccd3{position:fixed}.a0904035{position:relative}._770506a5{position:-webkit-sticky;position:sticky}}@media (min-width:992px){._5a954855{position:absolute}._2dc73359{position:fixed}._6ab005ed{position:relative}.fa60c726{position:-webkit-sticky;position:sticky}}._221ad6a3{display:block}._6764f5bc{display:flex}._50c37dba{display:inline}._16546fe0{display:inline-block}._2782a687{display:inline-flex}.b70b4fb7{display:none}@media (min-width:768px){._5b3547cc{display:block}._099432e6{display:flex}.d99fcd80{display:inline}._8f160568{display:inline-block}._5b7b4be4{display:inline-flex}._553721f8{display:none}}@media (min-width:992px){._6b86b317{display:block}.eb20eda4{display:flex}.be19d1e9{display:inline}.dcf7c80a{display:inline-block}.e4f02b1f{display:inline-flex}._3974e6d8{display:none}}.daf5e366{flex-direction:column}._47f2ddb7{flex-direction:row}@media (min-width:768px){._27490d54{flex-direction:column}._0317f51b{flex-direction:row}}@media (min-width:992px){._97590faa{flex-direction:column}.bf5d416e{flex-direction:row}}._210c1f9e{flex-wrap:wrap}._2c775d07{flex-wrap:nowrap}._25cae61d{flex-shrink:0}._6068a9cf{flex-grow:0}.c63f682c{flex-grow:1}._0e774dfc{align-items:flex-start}._5695a5d5{align-items:center}._139515d8{align-items:flex-end}.cea92f0a{align-items:baseline}@media (min-width:768px){._3dc7ec16{align-items:flex-start}._7993a7fa{align-items:center}.b90d7edc{align-items:flex-end}._7bd633f1{align-items:baseline}}@media (min-width:992px){._260d232b{align-items:flex-start}._9e2e0a07{align-items:center}.fc97448b{align-items:flex-end}._0f76a529{align-items:baseline}}._21d759bf{justify-content:flex-start}.ff70e049{justify-content:center}.ae15d5ad{justify-content:flex-end}._84374266{justify-content:space-around}.e72a8ca2{justify-content:space-between}._86224cb5{justify-content:space-evenly}@media (min-width:768px){.dceedee0{justify-content:flex-start}._34ab3dab{justify-content:center}.d5da2eb9{justify-content:flex-end}._1677560d{justify-content:space-around}.ef77b2e7{justify-content:space-between}._685ef848{justify-content:space-evenly}}@media (min-width:992px){._695667f2{justify-content:flex-start}.ebb180cc{justify-content:center}.bd5bb675{justify-content:flex-end}._1677560d{justify-content:space-around}.ae08a70c{justify-content:space-between}._685ef848{justify-content:space-evenly}}._4afa6fac{overflow:hidden}.d8d342e4{overflow:auto}.c104da68{overflow:visible}._2d6bc0d0{overflow:scroll}._99458759{height:100%}.aadb417c{background-color:var(--reactist-bg-default)}._36dca662{background-color:var(--reactist-bg-aside)}.a1054115{background-color:var(--reactist-bg-highlight)}.d17b4e9a{background-color:var(--reactist-bg-selected)}.e3a3ee05{border-radius:var(--reactist-border-radius-small)}.be0cb60b{border-radius:var(--reactist-border-radius-large)}.b9999f44{border:1px solid var(--reactist-divider-primary)}._91063996{border:1px solid var(--reactist-divider-secondary)}._0902977e{border:1px solid var(--reactist-divider-tertiary)}.a7c58898{text-align:start}._2c9a262a{text-align:center}._46f07e93{text-align:end}.e526003e{text-align:justify}@media (min-width:768px){._26864fce{text-align:start}.e8f51d21{text-align:center}.c1dc8b90{text-align:end}._36bb3fa9{text-align:justify}}@media (min-width:992px){._942e35b0{text-align:start}._92da5c98{text-align:center}._2b0ecaf6{text-align:end}._3dd24641{text-align:justify}}
|
|
2
|
+
.c4803194{padding-top:var(--reactist-spacing-xsmall)}._4e9ab24b{padding-top:var(--reactist-spacing-small)}._1d226e27{padding-top:var(--reactist-spacing-medium)}.eb6097f1{padding-top:var(--reactist-spacing-large)}.d3229ba4{padding-top:var(--reactist-spacing-xlarge)}._47978ba4{padding-top:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f987719c{padding-top:var(--reactist-spacing-xsmall)}._8dbc4b4d{padding-top:var(--reactist-spacing-small)}.ae44fe07{padding-top:var(--reactist-spacing-medium)}.ffe9548d{padding-top:var(--reactist-spacing-large)}.f2b76a44{padding-top:var(--reactist-spacing-xlarge)}.c6eb8f43{padding-top:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){._8699b560{padding-top:var(--reactist-spacing-xsmall)}._02c374b7{padding-top:var(--reactist-spacing-small)}._0dd0332f{padding-top:var(--reactist-spacing-medium)}.da55f1f6{padding-top:var(--reactist-spacing-large)}._8ef2a278{padding-top:var(--reactist-spacing-xlarge)}._8b493b28{padding-top:var(--reactist-spacing-xxlarge)}}._211eebc7{padding-right:var(--reactist-spacing-xsmall)}.ad0ccf15{padding-right:var(--reactist-spacing-small)}.a03e39af{padding-right:var(--reactist-spacing-medium)}.f0941ead{padding-right:var(--reactist-spacing-large)}.e47c5a43{padding-right:var(--reactist-spacing-xlarge)}.e849a5cf{padding-right:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._85374228{padding-right:var(--reactist-spacing-xsmall)}._89df37b9{padding-right:var(--reactist-spacing-small)}._1cc50ebe{padding-right:var(--reactist-spacing-medium)}._1060982b{padding-right:var(--reactist-spacing-large)}.be58847d{padding-right:var(--reactist-spacing-xlarge)}._45093484{padding-right:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.f8d99d6a{padding-right:var(--reactist-spacing-xsmall)}.efa076d9{padding-right:var(--reactist-spacing-small)}.e59caa64{padding-right:var(--reactist-spacing-medium)}.da42f46a{padding-right:var(--reactist-spacing-large)}.b3ee2580{padding-right:var(--reactist-spacing-xlarge)}._3ef94658{padding-right:var(--reactist-spacing-xxlarge)}}.b0e6eab4{padding-bottom:var(--reactist-spacing-xsmall)}._9510d053{padding-bottom:var(--reactist-spacing-small)}.d7af60c9{padding-bottom:var(--reactist-spacing-medium)}.b75f86cd{padding-bottom:var(--reactist-spacing-large)}.fbd4ce29{padding-bottom:var(--reactist-spacing-xlarge)}._33e3ad63{padding-bottom:var(--reactist-spacing-xxlarge)}@media (min-width:768px){.f0302da7{padding-bottom:var(--reactist-spacing-xsmall)}._4f9b8012{padding-bottom:var(--reactist-spacing-small)}._4333e20e{padding-bottom:var(--reactist-spacing-medium)}._30bbc76c{padding-bottom:var(--reactist-spacing-large)}.ba5a4008{padding-bottom:var(--reactist-spacing-xlarge)}._423a3b1a{padding-bottom:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b40139b7{padding-bottom:var(--reactist-spacing-xsmall)}.f96071fa{padding-bottom:var(--reactist-spacing-small)}.fe803c9a{padding-bottom:var(--reactist-spacing-medium)}._01686eb9{padding-bottom:var(--reactist-spacing-large)}.afa763d8{padding-bottom:var(--reactist-spacing-xlarge)}.a95785f1{padding-bottom:var(--reactist-spacing-xxlarge)}}.cad4e2ec{padding-left:var(--reactist-spacing-xsmall)}.d70b3c17{padding-left:var(--reactist-spacing-small)}._8c851bd6{padding-left:var(--reactist-spacing-medium)}._078feb3c{padding-left:var(--reactist-spacing-large)}._76ab968c{padding-left:var(--reactist-spacing-xlarge)}.aaca85d7{padding-left:var(--reactist-spacing-xxlarge)}@media (min-width:768px){._5eb0e5aa{padding-left:var(--reactist-spacing-xsmall)}._0384fb4f{padding-left:var(--reactist-spacing-small)}.edffff6f{padding-left:var(--reactist-spacing-medium)}._873b9a46{padding-left:var(--reactist-spacing-large)}._89105db5{padding-left:var(--reactist-spacing-xlarge)}.db1966fe{padding-left:var(--reactist-spacing-xxlarge)}}@media (min-width:992px){.b17f826b{padding-left:var(--reactist-spacing-xsmall)}._6dc83610{padding-left:var(--reactist-spacing-small)}._3421b8b2{padding-left:var(--reactist-spacing-medium)}._68cec7a6{padding-left:var(--reactist-spacing-large)}._94bde020{padding-left:var(--reactist-spacing-xlarge)}.b94ee579{padding-left:var(--reactist-spacing-xxlarge)}}
|
|
3
|
+
.c7813d79{margin-top:var(--reactist-spacing-xsmall)}.d3449da6{margin-top:var(--reactist-spacing-small)}._4ea254c1{margin-top:var(--reactist-spacing-medium)}.c0844f64{margin-top:var(--reactist-spacing-large)}._213145b4{margin-top:var(--reactist-spacing-xlarge)}.df61c84c{margin-top:var(--reactist-spacing-xxlarge)}.efe72b13{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}._870c2768{margin-top:calc(var(--reactist-spacing-small)*-1)}._0b927c57{margin-top:calc(var(--reactist-spacing-medium)*-1)}._461db014{margin-top:calc(var(--reactist-spacing-large)*-1)}._2a3a8cb8{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}._9bcda921{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6add01e4{margin-top:var(--reactist-spacing-xsmall)}._735ef86b{margin-top:var(--reactist-spacing-small)}._0477d068{margin-top:var(--reactist-spacing-medium)}._2c90af97{margin-top:var(--reactist-spacing-large)}._63a82db6{margin-top:var(--reactist-spacing-xlarge)}._03cd7726{margin-top:var(--reactist-spacing-xxlarge)}.c986a62a{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.be2bdcdd{margin-top:calc(var(--reactist-spacing-small)*-1)}._47d2686b{margin-top:calc(var(--reactist-spacing-medium)*-1)}._25e5af9d{margin-top:calc(var(--reactist-spacing-large)*-1)}.ee82f441{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.a6f9d404{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._4d8d9a36{margin-top:var(--reactist-spacing-xsmall)}.e813cee7{margin-top:var(--reactist-spacing-small)}._56975b7d{margin-top:var(--reactist-spacing-medium)}._53b367f6{margin-top:var(--reactist-spacing-large)}.d69e7311{margin-top:var(--reactist-spacing-xlarge)}._92f57c7e{margin-top:var(--reactist-spacing-xxlarge)}._96880d3e{margin-top:calc(var(--reactist-spacing-xsmall)*-1)}.dc3f3555{margin-top:calc(var(--reactist-spacing-small)*-1)}._86dd06bb{margin-top:calc(var(--reactist-spacing-medium)*-1)}.c93ef12e{margin-top:calc(var(--reactist-spacing-large)*-1)}.bc8fd4a2{margin-top:calc(var(--reactist-spacing-xlarge)*-1)}.b12a9124{margin-top:calc(var(--reactist-spacing-xxlarge)*-1)}}._6016f4fb{margin-right:var(--reactist-spacing-xsmall)}.b85e3dfa{margin-right:var(--reactist-spacing-small)}._297575f4{margin-right:var(--reactist-spacing-medium)}.b401ac6c{margin-right:var(--reactist-spacing-large)}.dc3ec387{margin-right:var(--reactist-spacing-xlarge)}._24694604{margin-right:var(--reactist-spacing-xxlarge)}._8e9bf2ee{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.ae9d1115{margin-right:calc(var(--reactist-spacing-small)*-1)}._14e46fc3{margin-right:calc(var(--reactist-spacing-medium)*-1)}._3370631b{margin-right:calc(var(--reactist-spacing-large)*-1)}._3f0e9b50{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}.bc13e010{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._6fa1aae3{margin-right:var(--reactist-spacing-xsmall)}._2976c5cb{margin-right:var(--reactist-spacing-small)}._38d94802{margin-right:var(--reactist-spacing-medium)}.db9569b5{margin-right:var(--reactist-spacing-large)}._4a52f06d{margin-right:var(--reactist-spacing-xlarge)}._8a0f0410{margin-right:var(--reactist-spacing-xxlarge)}.e7d40e9d{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}._680fde91{margin-right:calc(var(--reactist-spacing-small)*-1)}._021010ca{margin-right:calc(var(--reactist-spacing-medium)*-1)}._9e52c87c{margin-right:calc(var(--reactist-spacing-large)*-1)}._4d602613{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._21b1b65a{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._7321bc07{margin-right:var(--reactist-spacing-xsmall)}.fa1721f4{margin-right:var(--reactist-spacing-small)}._3fd7b4b8{margin-right:var(--reactist-spacing-medium)}._4fdc2f74{margin-right:var(--reactist-spacing-large)}.c0254761{margin-right:var(--reactist-spacing-xlarge)}._710a5f09{margin-right:var(--reactist-spacing-xxlarge)}.e08bee7f{margin-right:calc(var(--reactist-spacing-xsmall)*-1)}.e5ab73d2{margin-right:calc(var(--reactist-spacing-small)*-1)}._5e731477{margin-right:calc(var(--reactist-spacing-medium)*-1)}._0f57a22e{margin-right:calc(var(--reactist-spacing-large)*-1)}._25f26ed3{margin-right:calc(var(--reactist-spacing-xlarge)*-1)}._11a3b4e0{margin-right:calc(var(--reactist-spacing-xxlarge)*-1)}}._6a4f69f7{margin-bottom:var(--reactist-spacing-xsmall)}.db26b033{margin-bottom:var(--reactist-spacing-small)}.c7313022{margin-bottom:var(--reactist-spacing-medium)}.a5885889{margin-bottom:var(--reactist-spacing-large)}._33dfbd8e{margin-bottom:var(--reactist-spacing-xlarge)}._795ad2de{margin-bottom:var(--reactist-spacing-xxlarge)}.a329dbd3{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._85e739fb{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._681f65ff{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.caf50d8f{margin-bottom:calc(var(--reactist-spacing-large)*-1)}._1e084cbf{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._3dfb1c7e{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){.ef4735be{margin-bottom:var(--reactist-spacing-xsmall)}.de55afba{margin-bottom:var(--reactist-spacing-small)}._0e33ce88{margin-bottom:var(--reactist-spacing-medium)}._8ca391fc{margin-bottom:var(--reactist-spacing-large)}._3a609d23{margin-bottom:var(--reactist-spacing-xlarge)}._3e1177e4{margin-bottom:var(--reactist-spacing-xxlarge)}.d384884d{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._75254cec{margin-bottom:calc(var(--reactist-spacing-small)*-1)}._5d9f127d{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}._835f1089{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.dad52a72{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}._8703a4bf{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){._90fd20e9{margin-bottom:var(--reactist-spacing-xsmall)}.f3769191{margin-bottom:var(--reactist-spacing-small)}._156410f8{margin-bottom:var(--reactist-spacing-medium)}._7fed74d0{margin-bottom:var(--reactist-spacing-large)}._477dc10e{margin-bottom:var(--reactist-spacing-xlarge)}._85c82d89{margin-bottom:var(--reactist-spacing-xxlarge)}._4f09c1e0{margin-bottom:calc(var(--reactist-spacing-xsmall)*-1)}._9523e048{margin-bottom:calc(var(--reactist-spacing-small)*-1)}.efe10240{margin-bottom:calc(var(--reactist-spacing-medium)*-1)}.c43971e6{margin-bottom:calc(var(--reactist-spacing-large)*-1)}.f9b4da15{margin-bottom:calc(var(--reactist-spacing-xlarge)*-1)}.a10fdf70{margin-bottom:calc(var(--reactist-spacing-xxlarge)*-1)}}.f9be90b4{margin-left:var(--reactist-spacing-xsmall)}.f53218d5{margin-left:var(--reactist-spacing-small)}.c4a9b3ab{margin-left:var(--reactist-spacing-medium)}._5755e2c3{margin-left:var(--reactist-spacing-large)}._33fc9354{margin-left:var(--reactist-spacing-xlarge)}._4749a3bf{margin-left:var(--reactist-spacing-xxlarge)}.c76cb3c7{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}._96003c07{margin-left:calc(var(--reactist-spacing-small)*-1)}._09988d07{margin-left:calc(var(--reactist-spacing-medium)*-1)}.b4a486f6{margin-left:calc(var(--reactist-spacing-large)*-1)}.f396e75e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._81d1f26d{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}@media (min-width:768px){._0a46e8f1{margin-left:var(--reactist-spacing-xsmall)}._57c970af{margin-left:var(--reactist-spacing-small)}._4b6099d3{margin-left:var(--reactist-spacing-medium)}._378fcff5{margin-left:var(--reactist-spacing-large)}.f8785663{margin-left:var(--reactist-spacing-xlarge)}._72f957ee{margin-left:var(--reactist-spacing-xxlarge)}._2288c7e1{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.b27c1c05{margin-left:calc(var(--reactist-spacing-small)*-1)}._702cbb13{margin-left:calc(var(--reactist-spacing-medium)*-1)}._1a2748b4{margin-left:calc(var(--reactist-spacing-large)*-1)}.b8c043a5{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}._8dc8ff63{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}@media (min-width:992px){.c2af646d{margin-left:var(--reactist-spacing-xsmall)}.c03d07be{margin-left:var(--reactist-spacing-small)}._915fb1d3{margin-left:var(--reactist-spacing-medium)}._64214ee1{margin-left:var(--reactist-spacing-large)}._7be4a22c{margin-left:var(--reactist-spacing-xlarge)}._5ec0a401{margin-left:var(--reactist-spacing-xxlarge)}.ea29f1ee{margin-left:calc(var(--reactist-spacing-xsmall)*-1)}.c26652c7{margin-left:calc(var(--reactist-spacing-small)*-1)}.c24f6af9{margin-left:calc(var(--reactist-spacing-medium)*-1)}.c2671f27{margin-left:calc(var(--reactist-spacing-large)*-1)}.cc51a04e{margin-left:calc(var(--reactist-spacing-xlarge)*-1)}.fd581f54{margin-left:calc(var(--reactist-spacing-xxlarge)*-1)}}
|
|
4
|
+
._68ab48ca{min-width:0}._6fa2b565{min-width:var(--reactist-width-xsmall)}.dd50fabd{min-width:var(--reactist-width-small)}.e7e2c808{min-width:var(--reactist-width-medium)}._6abbe25e{min-width:var(--reactist-width-large)}._54f479ac{min-width:var(--reactist-width-xlarge)}._148492bc{max-width:var(--reactist-width-xsmall)}.bd023b96{max-width:var(--reactist-width-small)}.e102903f{max-width:var(--reactist-width-medium)}._0e8d76d7{max-width:var(--reactist-width-large)}._47a031d0{max-width:var(--reactist-width-xlarge)}.cd4c8183{max-width:100%}._5f5959e8{width:0}._8c75067a{width:100%}._56a651f6{width:auto}._26f87bb8{width:-moz-max-content;width:-webkit-max-content;width:max-content}._07a6ab44{width:-moz-min-content;width:-webkit-min-content;width:min-content}.a87016fa{width:-moz-fit-content;width:-webkit-fit-content;width:fit-content}._1a972e50{width:var(--reactist-width-xsmall)}.c96d8261{width:var(--reactist-width-small)}.f3829d42{width:var(--reactist-width-medium)}._2caef228{width:var(--reactist-width-large)}._069e1491{width:var(--reactist-width-xlarge)}
|
|
5
|
+
.c5028ea8{font-family:var(--reactist-font-family);font-size:var(--reactist-font-size-body);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}._05d3a546{font-size:var(--reactist-font-size-caption)}._100565e3{font-size:var(--reactist-font-size-copy)}.b8f72625{font-size:var(--reactist-font-size-subtitle)}._398ecda1{font-weight:var(--reactist-font-weight-medium)}._8054cd6b{font-weight:var(--reactist-font-weight-strong)}._6abd56b1{color:var(--reactist-content-secondary)}._274b4a47{color:#d1453b}._724b0054{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}._51ac6ee4{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.b0742803{-webkit-line-clamp:2}.dd664c95{-webkit-line-clamp:3}.b02775b5{-webkit-line-clamp:4}.da91b300{-webkit-line-clamp:5}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.c5028ea8{font-family:var(--reactist-font-family);font-size:var(--reactist-font-size-body);font-weight:var(--reactist-font-weight-regular);color:var(--reactist-content-primary)}._05d3a546{font-size:var(--reactist-font-size-caption)}._100565e3{font-size:var(--reactist-font-size-copy)}.b8f72625{font-size:var(--reactist-font-size-subtitle)}._398ecda1{font-weight:var(--reactist-font-weight-medium)}._8054cd6b{font-weight:var(--reactist-font-weight-strong)}._6abd56b1{color:var(--reactist-content-secondary)}._274b4a47{color:#d1453b}._724b0054{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}._51ac6ee4{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.b0742803{-webkit-line-clamp:2}.dd664c95{-webkit-line-clamp:3}.b02775b5{-webkit-line-clamp:4}.da91b300{-webkit-line-clamp:5}
|
package/styles/time.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
.
|
|
2
|
-
.
|
|
1
|
+
.reactist_tooltip{font-size:.81rem;color:#202020;font-weight:400;line-height:1.6;text-align:center;text-overflow:ellipsis;overflow:hidden;max-width:100%;padding:5px 10px;background-color:#333;color:#fff;border:none;border-radius:3px;z-index:1000}
|
|
2
|
+
.reactist_time{font-size:.75rem;color:grey;font-weight:400;line-height:1.8}.reactist_tooltip .reactist_time:hover{text-decoration:underline}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._68ab48ca{min-width:0}._6fa2b565{min-width:var(--reactist-width-xsmall)}.dd50fabd{min-width:var(--reactist-width-small)}.e7e2c808{min-width:var(--reactist-width-medium)}._6abbe25e{min-width:var(--reactist-width-large)}._54f479ac{min-width:var(--reactist-width-xlarge)}._148492bc{max-width:var(--reactist-width-xsmall)}.bd023b96{max-width:var(--reactist-width-small)}.e102903f{max-width:var(--reactist-width-medium)}._0e8d76d7{max-width:var(--reactist-width-large)}._47a031d0{max-width:var(--reactist-width-xlarge)}.cd4c8183{max-width:100%}._5f5959e8{width:0}._8c75067a{width:100%}._56a651f6{width:auto}._26f87bb8{width:-moz-max-content;width:-webkit-max-content;width:max-content}._07a6ab44{width:-moz-min-content;width:-webkit-min-content;width:min-content}.a87016fa{width:-moz-fit-content;width:-webkit-fit-content;width:fit-content}._1a972e50{width:var(--reactist-width-xsmall)}.c96d8261{width:var(--reactist-width-small)}.f3829d42{width:var(--reactist-width-medium)}._2caef228{width:var(--reactist-width-large)}._069e1491{width:var(--reactist-width-xlarge)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"avatar.js","sources":["../../../src/components/avatar/avatar.tsx"],"sourcesContent":["import React from 'react'\nimport classNames from 'classnames'\n\nimport { getInitials, emailToIndex } from './utils'\n\nimport './avatar.less'\n\nconst AVATAR_COLORS = [\n '#fcc652',\n '#e9952c',\n '#e16b2d',\n '#d84b40',\n '#e8435a',\n '#e5198a',\n '#ad3889',\n '#86389c',\n '#a8a8a8',\n '#98be2f',\n '#5d9d50',\n '#5f9f85',\n '#5bbcb6',\n '#32a3bf',\n '#2bafeb',\n '#2d88c3',\n '#3863cc',\n '#5e5e5e',\n]\n\ntype AvatarSize = 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | 'xxxl'\n\nconst AVATAR_SIZES: AvatarSize[] = ['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl', 'xxxl']\n\ntype Props = {\n className?: string\n colorList?: string[]\n size?: AvatarSize\n avatarUrl?: string\n user: { name?: string; email: string }\n}\n\nfunction Avatar({ user, avatarUrl, size = 'l', className, colorList = AVATAR_COLORS }: Props) {\n const userInitials = getInitials(user.name) || getInitials(user.email)\n const avatarSize = size && AVATAR_SIZES.includes(size) ? size : 'l'\n const avatarClass = classNames(`reactist_avatar reactist_avatar_size--${avatarSize}`, className)\n\n const style = avatarUrl\n ? {\n backgroundImage: `url(${avatarUrl})`,\n textIndent: '-9999px', // hide the initials\n }\n : {\n backgroundColor: colorList[emailToIndex(user.email, colorList.length)],\n }\n\n return (\n <div className={avatarClass} style={style}>\n {userInitials}\n </div>\n )\n}\nAvatar.displayName = 'Avatar'\n\nexport { Avatar }\n"],"names":["AVATAR_COLORS","AVATAR_SIZES","Avatar","user","avatarUrl","size","className","colorList","userInitials","getInitials","name","email","avatarSize","includes","avatarClass","classNames","style","backgroundImage","textIndent","backgroundColor","emailToIndex","length","React","displayName"],"mappings":";;;;AAOA,IAAMA,aAAa,GAAG,CAClB,SADkB,EAElB,SAFkB,EAGlB,SAHkB,EAIlB,SAJkB,EAKlB,SALkB,EAMlB,SANkB,EAOlB,SAPkB,EAQlB,SARkB,EASlB,SATkB,EAUlB,SAVkB,EAWlB,SAXkB,EAYlB,SAZkB,EAalB,SAbkB,EAclB,SAdkB,EAelB,SAfkB,EAgBlB,SAhBkB,EAiBlB,SAjBkB,EAkBlB,SAlBkB,CAAtB;AAuBA,IAAMC,YAAY,GAAiB,CAAC,KAAD,EAAQ,IAAR,EAAc,GAAd,EAAmB,GAAnB,EAAwB,GAAxB,EAA6B,IAA7B,EAAmC,KAAnC,EAA0C,MAA1C,CAAnC;;AAUA,SAASC,MAAT;MAAkBC,YAAAA;MAAMC,iBAAAA;uBAAWC;MAAAA,8BAAO;MAAKC,iBAAAA;4BAAWC;MAAAA,wCAAYP;AAClE,MAAMQ,YAAY,GAAGC,WAAW,CAACN,IAAI,CAACO,IAAN,CAAX,IAA0BD,WAAW,CAACN,IAAI,CAACQ,KAAN,CAA1D;AACA,MAAMC,UAAU,GAAGP,IAAI,IAAIJ,YAAY,CAACY,QAAb,CAAsBR,IAAtB,CAAR,GAAsCA,IAAtC,GAA6C,GAAhE;AACA,MAAMS,WAAW,GAAGC,UAAU,4CAA0CH,UAA1C,EAAwDN,SAAxD,CAA9B;AAEA,MAAMU,KAAK,GAAGZ,SAAS,GACjB;AACIa,IAAAA,eAAe,WAASb,SAAT,MADnB;AAEIc,IAAAA,UAAU,EAAE;AAFhB,GADiB,GAKjB;AACIC,IAAAA,eAAe,EAAEZ,SAAS,CAACa,YAAY,CAACjB,IAAI,CAACQ,KAAN,EAAaJ,SAAS,CAACc,MAAvB,CAAb;AAD9B,GALN;AASA,sBACIC,4BAAA,MAAA;AAAKhB,IAAAA,SAAS,EAAEQ;AAAaE,IAAAA,KAAK,EAAEA;GAApC,EACKR,YADL,CADJ;AAKH;;AACDN,MAAM,CAACqB,WAAP,GAAqB,QAArB;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sources":["../../../src/components/avatar/utils.ts"],"sourcesContent":["function getInitials(name?: string) {\n if (!name) {\n return ''\n }\n\n const seed = name.trim().split(' ')\n const firstInitial = seed[0]\n const lastInitial = seed[seed.length - 1]\n\n let initials = firstInitial[0]\n // Better readable this way.\n // eslint-disable-next-line @typescript-eslint/prefer-string-starts-ends-with\n if (firstInitial[0] !== lastInitial[0]) {\n initials += lastInitial[0]\n }\n return initials.toUpperCase()\n}\n\nfunction emailToIndex(email: string, maxIndex: number) {\n const seed = email.split('@')[0]\n const hash = seed.charCodeAt(0) + seed.charCodeAt(seed.length - 1) || 0\n return hash % maxIndex\n}\n\nexport { getInitials, emailToIndex }\n"],"names":["getInitials","name","seed","trim","split","firstInitial","lastInitial","length","initials","toUpperCase","emailToIndex","email","maxIndex","hash","charCodeAt"],"mappings":"AAAA,SAASA,WAAT,CAAqBC,IAArB;AACI,MAAI,CAACA,IAAL,EAAW;AACP,WAAO,EAAP;AACH;;AAED,MAAMC,IAAI,GAAGD,IAAI,CAACE,IAAL,GAAYC,KAAZ,CAAkB,GAAlB,CAAb;AACA,MAAMC,YAAY,GAAGH,IAAI,CAAC,CAAD,CAAzB;AACA,MAAMI,WAAW,GAAGJ,IAAI,CAACA,IAAI,CAACK,MAAL,GAAc,CAAf,CAAxB;AAEA,MAAIC,QAAQ,GAAGH,YAAY,CAAC,CAAD,CAA3B;AAEA;;AACA,MAAIA,YAAY,CAAC,CAAD,CAAZ,KAAoBC,WAAW,CAAC,CAAD,CAAnC,EAAwC;AACpCE,IAAAA,QAAQ,IAAIF,WAAW,CAAC,CAAD,CAAvB;AACH;;AACD,SAAOE,QAAQ,CAACC,WAAT,EAAP;AACH;;AAED,SAASC,YAAT,CAAsBC,KAAtB,EAAqCC,QAArC;AACI,MAAMV,IAAI,GAAGS,KAAK,CAACP,KAAN,CAAY,GAAZ,EAAiB,CAAjB,CAAb;AACA,MAAMS,IAAI,GAAGX,IAAI,CAACY,UAAL,CAAgB,CAAhB,IAAqBZ,IAAI,CAACY,UAAL,CAAgBZ,IAAI,CAACK,MAAL,GAAc,CAA9B,CAArB,IAAyD,CAAtE;AACA,SAAOM,IAAI,GAAGD,QAAd;AACH;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"button.js","sources":["../../../src/components/button/button.tsx"],"sourcesContent":["import React from 'react'\nimport classNames from 'classnames'\n\nimport { Tooltip } from '../tooltip'\n\nimport './button.less'\n\ntype NativeButtonProps = React.DetailedHTMLProps<\n React.ButtonHTMLAttributes<HTMLButtonElement>,\n HTMLButtonElement\n>\n\nexport type ButtonVariant = 'primary' | 'secondary' | 'danger' | 'link'\n\nexport type ButtonSize = 'default' | 'small' | 'large'\n\nexport type ButtonProps = Omit<NativeButtonProps, 'title' | 'ref'> & {\n /**\n * Loading style. When true it disables the button, but it also adds a visual indication of\n * some in-progress operation going on.\n */\n loading?: boolean\n /**\n * Controls visually how the button shows up from a predefined set of kinds of buttons.\n */\n variant?: ButtonVariant\n /**\n * The size of the button. If not provided it shows up in a normal size.\n */\n size?: ButtonSize\n /**\n * Tooltip that is displayed on hover.\n *\n * This replaces `title` which is not supported for these buttons to avoid confusion.\n */\n tooltip?: React.ReactNode\n}\n\nconst Button = React.forwardRef<HTMLButtonElement, ButtonProps>(function Button(\n {\n type = 'button',\n variant,\n size = 'default',\n loading = false,\n disabled = false,\n tooltip,\n onClick,\n children,\n ...props\n },\n ref,\n) {\n const className = classNames(\n 'reactist_button',\n variant ? `reactist_button--${variant}` : null,\n size !== 'default' ? `reactist_button--${size}` : null,\n { 'reactist_button--loading': loading },\n props.className,\n )\n\n const button = (\n <button\n {...props}\n ref={ref}\n type={type}\n className={className}\n aria-disabled={disabled || loading}\n onClick={disabled || loading ? undefined : onClick}\n >\n {children}\n </button>\n )\n\n return tooltip ? <Tooltip content={tooltip}>{button}</Tooltip> : button\n})\n\nButton.displayName = 'Button'\n\nButton.defaultProps = {\n size: 'default',\n loading: false,\n disabled: false,\n}\n\nexport { Button }\n"],"names":["Button","React","forwardRef","ref","type","variant","size","loading","disabled","tooltip","onClick","children","props","className","classNames","button","undefined","Tooltip","content","displayName","defaultProps"],"mappings":";;;;;IAsCMA,MAAM,gBAAGC,cAAK,CAACC,UAAN,CAAiD,SAASF,MAAT,OAY5DG,GAZ4D;uBAExDC;MAAAA,8BAAO;MACPC,eAAAA;uBACAC;MAAAA,8BAAO;0BACPC;MAAAA,oCAAU;2BACVC;MAAAA,sCAAW;MACXC,eAAAA;MACAC,eAAAA;MACAC,gBAAAA;MACGC;;AAIP,MAAMC,SAAS,GAAGC,UAAU,CACxB,iBADwB,EAExBT,OAAO,yBAAuBA,OAAvB,GAAmC,IAFlB,EAGxBC,IAAI,KAAK,SAAT,yBAAyCA,IAAzC,GAAkD,IAH1B,EAIxB;AAAE,gCAA4BC;AAA9B,GAJwB,EAKxBK,KAAK,CAACC,SALkB,CAA5B;AAQA,MAAME,MAAM,gBACRd,4BAAA,SAAA,oBACQW;AACJT,IAAAA,GAAG,EAAEA;AACLC,IAAAA,IAAI,EAAEA;AACNS,IAAAA,SAAS,EAAEA;qBACIL,QAAQ,IAAID;AAC3BG,IAAAA,OAAO,EAAEF,QAAQ,IAAID,OAAZ,GAAsBS,SAAtB,GAAkCN;IAN/C,EAQKC,QARL,CADJ;AAaA,SAAOF,OAAO,gBAAGR,4BAAA,CAACgB,OAAD;AAASC,IAAAA,OAAO,EAAET;GAAlB,EAA4BM,MAA5B,CAAH,GAAmDA,MAAjE;AACH,CApCc;AAsCff,MAAM,CAACmB,WAAP,GAAqB,QAArB;AAEAnB,MAAM,CAACoB,YAAP,GAAsB;AAClBd,EAAAA,IAAI,EAAE,SADY;AAElBC,EAAAA,OAAO,EAAE,KAFS;AAGlBC,EAAAA,QAAQ,EAAE;AAHQ,CAAtB;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
import React__default from 'react';
|
|
2
|
-
import { inheritsLoose as _inheritsLoose } from '../../_virtual/_rollupPluginBabelHelpers.js';
|
|
3
|
-
|
|
4
|
-
var ErrorMessage = /*#__PURE__*/function (_React$Component) {
|
|
5
|
-
_inheritsLoose(ErrorMessage, _React$Component);
|
|
6
|
-
|
|
7
|
-
function ErrorMessage(props, context) {
|
|
8
|
-
var _this;
|
|
9
|
-
|
|
10
|
-
_this = _React$Component.call(this, props, context) || this;
|
|
11
|
-
|
|
12
|
-
_this._clearTimeout = function () {
|
|
13
|
-
_this.timeout && clearTimeout(_this.timeout);
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
_this._triggerDelayedHide = function () {
|
|
17
|
-
_this._clearTimeout();
|
|
18
|
-
|
|
19
|
-
_this.timeout = setTimeout(_this._hide, _this.props.timeout);
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
_this._hide = function () {
|
|
23
|
-
var _this$props$onHide, _this$props;
|
|
24
|
-
|
|
25
|
-
_this._clearTimeout();
|
|
26
|
-
|
|
27
|
-
_this.setState(function () {
|
|
28
|
-
return {
|
|
29
|
-
visible: false
|
|
30
|
-
};
|
|
31
|
-
});
|
|
32
|
-
|
|
33
|
-
(_this$props$onHide = (_this$props = _this.props).onHide) === null || _this$props$onHide === void 0 ? void 0 : _this$props$onHide.call(_this$props);
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
var isValidMessage = _this._isValidMessage(props.message);
|
|
37
|
-
|
|
38
|
-
if (isValidMessage) {
|
|
39
|
-
_this._triggerDelayedHide();
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
_this.state = {
|
|
43
|
-
visible: isValidMessage
|
|
44
|
-
};
|
|
45
|
-
return _this;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
var _proto = ErrorMessage.prototype;
|
|
49
|
-
|
|
50
|
-
_proto.UNSAFE_componentWillReceiveProps = function UNSAFE_componentWillReceiveProps(nextProps) {
|
|
51
|
-
if (this._isValidMessage(nextProps.message)) {
|
|
52
|
-
this.setState(function () {
|
|
53
|
-
return {
|
|
54
|
-
visible: true
|
|
55
|
-
};
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
this._triggerDelayedHide();
|
|
59
|
-
}
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
_proto._isValidMessage = function _isValidMessage(message) {
|
|
63
|
-
return typeof message === 'string' && message.length > 0;
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
_proto.render = function render() {
|
|
67
|
-
var message = this.props.message;
|
|
68
|
-
|
|
69
|
-
if (!this.state.visible || !this._isValidMessage(message)) {
|
|
70
|
-
return false;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
return /*#__PURE__*/React__default.createElement("div", {
|
|
74
|
-
className: "reactist_error_message"
|
|
75
|
-
}, /*#__PURE__*/React__default.createElement("p", null, message), /*#__PURE__*/React__default.createElement("div", {
|
|
76
|
-
onClick: this._hide,
|
|
77
|
-
className: "dismiss_icon"
|
|
78
|
-
}));
|
|
79
|
-
};
|
|
80
|
-
|
|
81
|
-
return ErrorMessage;
|
|
82
|
-
}(React__default.Component);
|
|
83
|
-
|
|
84
|
-
ErrorMessage.displayName = 'ErrorMessage';
|
|
85
|
-
ErrorMessage.defaultProps = {
|
|
86
|
-
timeout: 2500
|
|
87
|
-
};
|
|
88
|
-
|
|
89
|
-
export { ErrorMessage };
|
|
90
|
-
//# sourceMappingURL=error-message.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"error-message.js","sources":["../../../src/components/error-message/error-message.tsx"],"sourcesContent":["import React from 'react'\n\nimport './error-message.less'\n\ntype Props = {\n timeout?: number\n onHide?: () => void\n message?: string\n}\n\ntype State = {\n visible: boolean\n}\n\nclass ErrorMessage extends React.Component<Props, State> {\n public static displayName: string\n public static defaultProps: Props\n\n constructor(props: Props, context: unknown) {\n super(props, context)\n\n const isValidMessage = this._isValidMessage(props.message)\n if (isValidMessage) {\n this._triggerDelayedHide()\n }\n this.state = { visible: isValidMessage }\n }\n\n UNSAFE_componentWillReceiveProps(nextProps: Props) {\n if (this._isValidMessage(nextProps.message)) {\n this.setState(() => ({ visible: true }))\n this._triggerDelayedHide()\n }\n }\n\n timeout?: number\n\n _isValidMessage(message?: string) {\n return typeof message === 'string' && message.length > 0\n }\n\n _clearTimeout = () => {\n this.timeout && clearTimeout(this.timeout)\n }\n\n _triggerDelayedHide = () => {\n this._clearTimeout()\n this.timeout = setTimeout(this._hide, this.props.timeout)\n }\n\n _hide = () => {\n this._clearTimeout()\n this.setState(() => ({ visible: false }))\n this.props.onHide?.()\n }\n\n render() {\n const { message } = this.props\n if (!this.state.visible || !this._isValidMessage(message)) {\n return false\n }\n\n return (\n <div className=\"reactist_error_message\">\n <p>{message}</p>\n <div onClick={this._hide} className=\"dismiss_icon\" />\n </div>\n )\n }\n}\nErrorMessage.displayName = 'ErrorMessage'\nErrorMessage.defaultProps = {\n timeout: 2500,\n}\n\nexport { ErrorMessage }\n"],"names":["ErrorMessage","props","context","timeout","clearTimeout","_clearTimeout","setTimeout","_hide","setState","visible","onHide","isValidMessage","_isValidMessage","message","_triggerDelayedHide","state","UNSAFE_componentWillReceiveProps","nextProps","length","render","React","className","onClick","Component","displayName","defaultProps"],"mappings":";;;IAcMA;;;AAIF,wBAAYC,KAAZ,EAA0BC,OAA1B;;;AACI,wCAAMD,KAAN,EAAaC,OAAb;;AAsBJ,uBAAA,GAAgB;AACZ,YAAKC,OAAL,IAAgBC,YAAY,CAAC,MAAKD,OAAN,CAA5B;AACH,KAFD;;AAIA,6BAAA,GAAsB;AAClB,YAAKE,aAAL;;AACA,YAAKF,OAAL,GAAeG,UAAU,CAAC,MAAKC,KAAN,EAAa,MAAKN,KAAL,CAAWE,OAAxB,CAAzB;AACH,KAHD;;AAKA,eAAA,GAAQ;;;AACJ,YAAKE,aAAL;;AACA,YAAKG,QAAL,CAAc;AAAA,eAAO;AAAEC,UAAAA,OAAO,EAAE;AAAX,SAAP;AAAA,OAAd;;AACA,iDAAKR,KAAL,EAAWS,MAAX;AACH,KAJD;;AA7BI,QAAMC,cAAc,GAAG,MAAKC,eAAL,CAAqBX,KAAK,CAACY,OAA3B,CAAvB;;AACA,QAAIF,cAAJ,EAAoB;AAChB,YAAKG,mBAAL;AACH;;AACD,UAAKC,KAAL,GAAa;AAAEN,MAAAA,OAAO,EAAEE;AAAX,KAAb;;AACH;;;;SAEDK,mCAAA,0CAAiCC,SAAjC;AACI,QAAI,KAAKL,eAAL,CAAqBK,SAAS,CAACJ,OAA/B,CAAJ,EAA6C;AACzC,WAAKL,QAAL,CAAc;AAAA,eAAO;AAAEC,UAAAA,OAAO,EAAE;AAAX,SAAP;AAAA,OAAd;;AACA,WAAKK,mBAAL;AACH;AACJ;;SAIDF,kBAAA,yBAAgBC,OAAhB;AACI,WAAO,OAAOA,OAAP,KAAmB,QAAnB,IAA+BA,OAAO,CAACK,MAAR,GAAiB,CAAvD;AACH;;SAiBDC,SAAA;QACYN,UAAY,KAAKZ,MAAjBY;;AACR,QAAI,CAAC,KAAKE,KAAL,CAAWN,OAAZ,IAAuB,CAAC,KAAKG,eAAL,CAAqBC,OAArB,CAA5B,EAA2D;AACvD,aAAO,KAAP;AACH;;AAED,wBACIO,4BAAA,MAAA;AAAKC,MAAAA,SAAS,EAAC;KAAf,eACID,4BAAA,IAAA,MAAA,EAAIP,OAAJ,CADJ,eAEIO,4BAAA,MAAA;AAAKE,MAAAA,OAAO,EAAE,KAAKf;AAAOc,MAAAA,SAAS,EAAC;KAApC,CAFJ,CADJ;AAMH;;;EAtDsBD,cAAK,CAACG;;AAwDjCvB,YAAY,CAACwB,WAAb,GAA2B,cAA3B;AACAxB,YAAY,CAACyB,YAAb,GAA4B;AACxBtB,EAAAA,OAAO,EAAE;AADe,CAA5B;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
import React__default from 'react';
|
|
2
|
-
import classNames from 'classnames';
|
|
3
|
-
import { inheritsLoose as _inheritsLoose } from '../../_virtual/_rollupPluginBabelHelpers.js';
|
|
4
|
-
import { Tooltip } from '../tooltip/tooltip.js';
|
|
5
|
-
import ThreeDotsIcon from '../icons/ThreeDotsIcon.svg.js';
|
|
6
|
-
|
|
7
|
-
var Icon = /*#__PURE__*/function (_React$Component) {
|
|
8
|
-
_inheritsLoose(Icon, _React$Component);
|
|
9
|
-
|
|
10
|
-
function Icon(props, context) {
|
|
11
|
-
var _this;
|
|
12
|
-
|
|
13
|
-
_this = _React$Component.call(this, props, context) || this;
|
|
14
|
-
|
|
15
|
-
_this._onClick = function (event) {
|
|
16
|
-
event.preventDefault();
|
|
17
|
-
|
|
18
|
-
if (_this.props.onClick && !_this.props.disabled) {
|
|
19
|
-
_this.props.onClick();
|
|
20
|
-
}
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
_this._hover = function () {
|
|
24
|
-
_this.setState(function () {
|
|
25
|
-
return {
|
|
26
|
-
hovered: true
|
|
27
|
-
};
|
|
28
|
-
});
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
_this._unhover = function () {
|
|
32
|
-
_this.setState(function () {
|
|
33
|
-
return {
|
|
34
|
-
hovered: false
|
|
35
|
-
};
|
|
36
|
-
});
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
_this.state = {
|
|
40
|
-
hovered: false
|
|
41
|
-
};
|
|
42
|
-
return _this;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
var _proto = Icon.prototype;
|
|
46
|
-
|
|
47
|
-
_proto.render = function render() {
|
|
48
|
-
var _this$props = this.props,
|
|
49
|
-
image = _this$props.image,
|
|
50
|
-
hoveredImage = _this$props.hoveredImage,
|
|
51
|
-
icon = _this$props.icon,
|
|
52
|
-
tooltip = _this$props.tooltip,
|
|
53
|
-
disabled = _this$props.disabled;
|
|
54
|
-
var className = classNames('reactist_icon', {
|
|
55
|
-
'reactist_icon--component': !image,
|
|
56
|
-
disabled: disabled
|
|
57
|
-
}, this.props.className);
|
|
58
|
-
var style = typeof image === 'string' ? this.state.hovered && hoveredImage ? {
|
|
59
|
-
backgroundImage: "url(" + hoveredImage + ")"
|
|
60
|
-
} : {
|
|
61
|
-
backgroundImage: "url(" + image + ")"
|
|
62
|
-
} : undefined; // only apply style for image components
|
|
63
|
-
|
|
64
|
-
var iconComponent = !image && (icon ? icon : /*#__PURE__*/React__default.createElement(ThreeDotsIcon, {
|
|
65
|
-
color: this.state.hovered ? '#474747' : undefined
|
|
66
|
-
})); // only set icon component for non-image components
|
|
67
|
-
|
|
68
|
-
var component =
|
|
69
|
-
/*#__PURE__*/
|
|
70
|
-
|
|
71
|
-
/* eslint-disable jsx-a11y/anchor-is-valid */
|
|
72
|
-
React__default.createElement("a", {
|
|
73
|
-
href: "#",
|
|
74
|
-
style: style,
|
|
75
|
-
onClick: this._onClick,
|
|
76
|
-
className: className,
|
|
77
|
-
onMouseEnter: this._hover,
|
|
78
|
-
onMouseLeave: this._unhover
|
|
79
|
-
}, iconComponent && iconComponent)
|
|
80
|
-
/* eslint-enable jsx-a11y/anchor-is-valid */
|
|
81
|
-
;
|
|
82
|
-
return tooltip ? /*#__PURE__*/React__default.createElement(Tooltip, {
|
|
83
|
-
content: tooltip
|
|
84
|
-
}, component) : component;
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
return Icon;
|
|
88
|
-
}(React__default.Component);
|
|
89
|
-
|
|
90
|
-
Icon.displayName = 'Icon';
|
|
91
|
-
Icon.defaultProps = {
|
|
92
|
-
disabled: false
|
|
93
|
-
};
|
|
94
|
-
|
|
95
|
-
export { Icon };
|
|
96
|
-
//# sourceMappingURL=icon.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"icon.js","sources":["../../../src/components/icon/icon.tsx"],"sourcesContent":["import React from 'react'\nimport classNames from 'classnames'\n\nimport { Tooltip } from '../tooltip'\nimport ThreeDotsIcon from '../icons/ThreeDotsIcon.svg'\n\nimport './icon.less'\n\ntype Props = {\n /** Callback that is called when icon is clicked. */\n onClick?: () => void\n /** Whether hte icon is disabled. Disabled icons can't be clicked and displayed with less opacity. */\n disabled?: boolean\n /** Additional css class that is applied to the icon */\n className?: string\n /** URL to the image that should be displayed as icon. */\n image?: string\n /** Optional URL to the image that should be displayed when the icon is hovered. */\n hoveredImage?: string\n /** Icon component to render, defaults to three dots. */\n icon?: React.ReactNode\n /** Text of the tooltip of the icon. */\n tooltip?: React.ReactNode\n}\n\ntype State = {\n hovered: boolean\n}\n\nclass Icon extends React.Component<Props, State> {\n public static displayName: string\n public static defaultProps: Props\n\n constructor(props: Props, context: unknown) {\n super(props, context)\n\n this.state = { hovered: false }\n }\n\n _onClick = (event: React.MouseEvent) => {\n event.preventDefault()\n\n if (this.props.onClick && !this.props.disabled) {\n this.props.onClick()\n }\n }\n\n _hover = () => {\n this.setState(() => ({ hovered: true }))\n }\n _unhover = () => {\n this.setState(() => ({ hovered: false }))\n }\n\n render() {\n const { image, hoveredImage, icon, tooltip, disabled } = this.props\n const className = classNames(\n 'reactist_icon',\n {\n 'reactist_icon--component': !image,\n disabled,\n },\n this.props.className,\n )\n\n const style: React.CSSProperties | undefined =\n typeof image === 'string'\n ? this.state.hovered && hoveredImage\n ? { backgroundImage: `url(${hoveredImage})` }\n : { backgroundImage: `url(${image})` }\n : undefined // only apply style for image components\n const iconComponent =\n !image &&\n (icon ? icon : <ThreeDotsIcon color={this.state.hovered ? '#474747' : undefined} />) // only set icon component for non-image components\n\n const component = (\n /* eslint-disable jsx-a11y/anchor-is-valid */\n <a\n href=\"#\"\n style={style}\n onClick={this._onClick}\n className={className}\n onMouseEnter={this._hover}\n onMouseLeave={this._unhover}\n >\n {iconComponent && iconComponent}\n </a>\n /* eslint-enable jsx-a11y/anchor-is-valid */\n )\n return tooltip ? <Tooltip content={tooltip}>{component}</Tooltip> : component\n }\n}\nIcon.displayName = 'Icon'\nIcon.defaultProps = {\n disabled: false,\n}\n\nexport { Icon }\n"],"names":["Icon","props","context","event","preventDefault","onClick","disabled","setState","hovered","state","render","image","hoveredImage","icon","tooltip","className","classNames","style","backgroundImage","undefined","iconComponent","React","ThreeDotsIcon","color","component","href","_onClick","onMouseEnter","_hover","onMouseLeave","_unhover","Tooltip","content","Component","displayName","defaultProps"],"mappings":";;;;;;IA6BMA;;;AAIF,gBAAYC,KAAZ,EAA0BC,OAA1B;;;AACI,wCAAMD,KAAN,EAAaC,OAAb;;AAKJ,kBAAA,GAAW,UAACC,KAAD;AACPA,MAAAA,KAAK,CAACC,cAAN;;AAEA,UAAI,MAAKH,KAAL,CAAWI,OAAX,IAAsB,CAAC,MAAKJ,KAAL,CAAWK,QAAtC,EAAgD;AAC5C,cAAKL,KAAL,CAAWI,OAAX;AACH;AACJ,KAND;;AAQA,gBAAA,GAAS;AACL,YAAKE,QAAL,CAAc;AAAA,eAAO;AAAEC,UAAAA,OAAO,EAAE;AAAX,SAAP;AAAA,OAAd;AACH,KAFD;;AAGA,kBAAA,GAAW;AACP,YAAKD,QAAL,CAAc;AAAA,eAAO;AAAEC,UAAAA,OAAO,EAAE;AAAX,SAAP;AAAA,OAAd;AACH,KAFD;;AAdI,UAAKC,KAAL,GAAa;AAAED,MAAAA,OAAO,EAAE;AAAX,KAAb;;AACH;;;;SAiBDE,SAAA;sBAC6D,KAAKT;QAAtDU,oBAAAA;QAAOC,2BAAAA;QAAcC,mBAAAA;QAAMC,sBAAAA;QAASR,uBAAAA;AAC5C,QAAMS,SAAS,GAAGC,UAAU,CACxB,eADwB,EAExB;AACI,kCAA4B,CAACL,KADjC;AAEIL,MAAAA,QAAQ,EAARA;AAFJ,KAFwB,EAMxB,KAAKL,KAAL,CAAWc,SANa,CAA5B;AASA,QAAME,KAAK,GACP,OAAON,KAAP,KAAiB,QAAjB,GACM,KAAKF,KAAL,CAAWD,OAAX,IAAsBI,YAAtB,GACI;AAAEM,MAAAA,eAAe,WAASN,YAAT;AAAjB,KADJ,GAEI;AAAEM,MAAAA,eAAe,WAASP,KAAT;AAAjB,KAHV,GAIMQ,SALV;;AAMA,QAAMC,aAAa,GACf,CAACT,KAAD,KACCE,IAAI,GAAGA,IAAH,gBAAUQ,4BAAA,CAACC,aAAD;AAAeC,MAAAA,KAAK,EAAE,KAAKd,KAAL,CAAWD,OAAX,GAAqB,SAArB,GAAiCW;KAAvD,CADf,CADJ;;AAIA,QAAMK,SAAS;AAAA;;AACX;AACAH,IAAAA,4BAAA,IAAA;AACII,MAAAA,IAAI,EAAC;AACLR,MAAAA,KAAK,EAAEA;AACPZ,MAAAA,OAAO,EAAE,KAAKqB;AACdX,MAAAA,SAAS,EAAEA;AACXY,MAAAA,YAAY,EAAE,KAAKC;AACnBC,MAAAA,YAAY,EAAE,KAAKC;KANvB,EAQKV,aAAa,IAAIA,aARtB;AAUA;AAZJ;AAcA,WAAON,OAAO,gBAAGO,4BAAA,CAACU,OAAD;AAASC,MAAAA,OAAO,EAAElB;KAAlB,EAA4BU,SAA5B,CAAH,GAAsDA,SAApE;AACH;;;EA7DcH,cAAK,CAACY;;AA+DzBjC,IAAI,CAACkC,WAAL,GAAmB,MAAnB;AACAlC,IAAI,CAACmC,YAAL,GAAoB;AAChB7B,EAAAA,QAAQ,EAAE;AADM,CAApB;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import React__default from 'react';
|
|
2
|
-
|
|
3
|
-
var ThinQuestionMark = function ThinQuestionMark() {
|
|
4
|
-
return /*#__PURE__*/React__default.createElement("svg", {
|
|
5
|
-
width: "18px",
|
|
6
|
-
height: "18px",
|
|
7
|
-
viewBox: "0 0 18 18"
|
|
8
|
-
}, /*#__PURE__*/React__default.createElement("g", {
|
|
9
|
-
stroke: "none",
|
|
10
|
-
strokeWidth: "1",
|
|
11
|
-
fill: "none",
|
|
12
|
-
fillRule: "evenodd"
|
|
13
|
-
}, /*#__PURE__*/React__default.createElement("g", {
|
|
14
|
-
fill: "#979797"
|
|
15
|
-
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16
|
-
d: "M9,17 C13.418278,17 17,13.418278 17,9 C17,4.581722 13.418278,1 9,1 C4.581722,1 1,4.581722 1,9 C1,13.418278 4.581722,17 9,17 Z M9,18 C4.02943725,18 0,13.9705627 0,9 C0,4.02943725 4.02943725,0 9,0 C13.9705627,0 18,4.02943725 18,9 C18,13.9705627 13.9705627,18 9,18 Z",
|
|
17
|
-
fillRule: "nonzero"
|
|
18
|
-
}), /*#__PURE__*/React__default.createElement("path", {
|
|
19
|
-
d: "M5.625,6.671875 L6.9609375,6.671875 C7.046875,5.5546875 7.796875,4.859375 8.9765625,4.859375 C10.140625,4.859375 10.890625,5.5703125 10.890625,6.5390625 C10.890625,7.375 10.5390625,7.8671875 9.6328125,8.421875 C8.5625,9.0625 8.0625,9.765625 8.0703125,10.796875 L8.0703125,11.515625 L9.4375,11.515625 L9.4375,11.0078125 C9.4375,10.1875 9.71875,9.75 10.7109375,9.1640625 C11.7109375,8.5625 12.34375,7.6953125 12.34375,6.46875 C12.34375,4.859375 11,3.640625 9.03125,3.640625 C6.8359375,3.640625 5.7109375,4.984375 5.625,6.671875 Z M8.859375,15.140625 C9.4921875,15.140625 9.9375,14.6875 9.9375,14.0546875 C9.9375,13.4140625 9.4921875,12.9609375 8.859375,12.9609375 C8.2265625,12.9609375 7.7734375,13.4140625 7.7734375,14.0546875 C7.7734375,14.6875 8.2265625,15.140625 8.859375,15.140625 Z"
|
|
20
|
-
}))));
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
export default ThinQuestionMark;
|
|
24
|
-
//# sourceMappingURL=ThinQuestionMarkIcon.svg.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ThinQuestionMarkIcon.svg.js","sources":["../../../src/components/icons/ThinQuestionMarkIcon.svg.tsx"],"sourcesContent":["import React from 'react'\n\nconst ThinQuestionMark = () => (\n <svg width=\"18px\" height=\"18px\" viewBox=\"0 0 18 18\">\n <g stroke=\"none\" strokeWidth=\"1\" fill=\"none\" fillRule=\"evenodd\">\n <g fill=\"#979797\">\n <path\n d=\"M9,17 C13.418278,17 17,13.418278 17,9 C17,4.581722 13.418278,1 9,1 C4.581722,1 1,4.581722 1,9 C1,13.418278 4.581722,17 9,17 Z M9,18 C4.02943725,18 0,13.9705627 0,9 C0,4.02943725 4.02943725,0 9,0 C13.9705627,0 18,4.02943725 18,9 C18,13.9705627 13.9705627,18 9,18 Z\"\n fillRule=\"nonzero\"\n />\n <path d=\"M5.625,6.671875 L6.9609375,6.671875 C7.046875,5.5546875 7.796875,4.859375 8.9765625,4.859375 C10.140625,4.859375 10.890625,5.5703125 10.890625,6.5390625 C10.890625,7.375 10.5390625,7.8671875 9.6328125,8.421875 C8.5625,9.0625 8.0625,9.765625 8.0703125,10.796875 L8.0703125,11.515625 L9.4375,11.515625 L9.4375,11.0078125 C9.4375,10.1875 9.71875,9.75 10.7109375,9.1640625 C11.7109375,8.5625 12.34375,7.6953125 12.34375,6.46875 C12.34375,4.859375 11,3.640625 9.03125,3.640625 C6.8359375,3.640625 5.7109375,4.984375 5.625,6.671875 Z M8.859375,15.140625 C9.4921875,15.140625 9.9375,14.6875 9.9375,14.0546875 C9.9375,13.4140625 9.4921875,12.9609375 8.859375,12.9609375 C8.2265625,12.9609375 7.7734375,13.4140625 7.7734375,14.0546875 C7.7734375,14.6875 8.2265625,15.140625 8.859375,15.140625 Z\" />\n </g>\n </g>\n </svg>\n)\n\nexport default ThinQuestionMark\n"],"names":["ThinQuestionMark","React","width","height","viewBox","stroke","strokeWidth","fill","fillRule","d"],"mappings":";;AAEA,IAAMA,gBAAgB,GAAG,SAAnBA,gBAAmB;AAAA,sBACrBC,4BAAA,MAAA;AAAKC,IAAAA,KAAK,EAAC;AAAOC,IAAAA,MAAM,EAAC;AAAOC,IAAAA,OAAO,EAAC;GAAxC,eACIH,4BAAA,IAAA;AAAGI,IAAAA,MAAM,EAAC;AAAOC,IAAAA,WAAW,EAAC;AAAIC,IAAAA,IAAI,EAAC;AAAOC,IAAAA,QAAQ,EAAC;GAAtD,eACIP,4BAAA,IAAA;AAAGM,IAAAA,IAAI,EAAC;GAAR,eACIN,4BAAA,OAAA;AACIQ,IAAAA,CAAC,EAAC;AACFD,IAAAA,QAAQ,EAAC;GAFb,CADJ,eAKIP,4BAAA,OAAA;AAAMQ,IAAAA,CAAC,EAAC;GAAR,CALJ,CADJ,CADJ,CADqB;AAAA,CAAzB;;;;"}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import React__default from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
|
|
4
|
-
var ThreeDotsIcon = function ThreeDotsIcon(_ref) {
|
|
5
|
-
var _ref$color = _ref.color,
|
|
6
|
-
color = _ref$color === void 0 ? '#A5A5A5' : _ref$color;
|
|
7
|
-
return /*#__PURE__*/React__default.createElement("svg", {
|
|
8
|
-
width: "26px",
|
|
9
|
-
height: "26px",
|
|
10
|
-
viewBox: "0 0 26 26"
|
|
11
|
-
}, /*#__PURE__*/React__default.createElement("g", {
|
|
12
|
-
stroke: "none",
|
|
13
|
-
strokeWidth: "1",
|
|
14
|
-
fill: "none",
|
|
15
|
-
fillRule: "evenodd"
|
|
16
|
-
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
17
|
-
fill: color,
|
|
18
|
-
cx: "19",
|
|
19
|
-
cy: "13",
|
|
20
|
-
r: "2"
|
|
21
|
-
}), /*#__PURE__*/React__default.createElement("circle", {
|
|
22
|
-
fill: color,
|
|
23
|
-
cx: "13",
|
|
24
|
-
cy: "13",
|
|
25
|
-
r: "2"
|
|
26
|
-
}), /*#__PURE__*/React__default.createElement("circle", {
|
|
27
|
-
fill: color,
|
|
28
|
-
cx: "7",
|
|
29
|
-
cy: "13",
|
|
30
|
-
r: "2"
|
|
31
|
-
})));
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
ThreeDotsIcon.propTypes = {
|
|
35
|
-
/** Color of the icon. */
|
|
36
|
-
color: PropTypes.string
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
export default ThreeDotsIcon;
|
|
40
|
-
//# sourceMappingURL=ThreeDotsIcon.svg.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ThreeDotsIcon.svg.js","sources":["../../../src/components/icons/ThreeDotsIcon.svg.tsx"],"sourcesContent":["import React from 'react'\nimport PropTypes from 'prop-types'\n\nconst ThreeDotsIcon = ({ color = '#A5A5A5' }) => (\n <svg width=\"26px\" height=\"26px\" viewBox=\"0 0 26 26\">\n <g stroke=\"none\" strokeWidth=\"1\" fill=\"none\" fillRule=\"evenodd\">\n <circle fill={color} cx=\"19\" cy=\"13\" r=\"2\" />\n <circle fill={color} cx=\"13\" cy=\"13\" r=\"2\" />\n <circle fill={color} cx=\"7\" cy=\"13\" r=\"2\" />\n </g>\n </svg>\n)\nThreeDotsIcon.propTypes = {\n /** Color of the icon. */\n color: PropTypes.string,\n}\n\nexport default ThreeDotsIcon\n"],"names":["ThreeDotsIcon","color","React","width","height","viewBox","stroke","strokeWidth","fill","fillRule","cx","cy","r","propTypes","PropTypes","string"],"mappings":";;;AAGA,IAAMA,aAAa,GAAG,SAAhBA,aAAgB;AAAA,wBAAGC,KAAH;AAAA,MAAGA,KAAH,2BAAW,SAAX;AAAA,sBAClBC,4BAAA,MAAA;AAAKC,IAAAA,KAAK,EAAC;AAAOC,IAAAA,MAAM,EAAC;AAAOC,IAAAA,OAAO,EAAC;GAAxC,eACIH,4BAAA,IAAA;AAAGI,IAAAA,MAAM,EAAC;AAAOC,IAAAA,WAAW,EAAC;AAAIC,IAAAA,IAAI,EAAC;AAAOC,IAAAA,QAAQ,EAAC;GAAtD,eACIP,4BAAA,SAAA;AAAQM,IAAAA,IAAI,EAAEP;AAAOS,IAAAA,EAAE,EAAC;AAAKC,IAAAA,EAAE,EAAC;AAAKC,IAAAA,CAAC,EAAC;GAAvC,CADJ,eAEIV,4BAAA,SAAA;AAAQM,IAAAA,IAAI,EAAEP;AAAOS,IAAAA,EAAE,EAAC;AAAKC,IAAAA,EAAE,EAAC;AAAKC,IAAAA,CAAC,EAAC;GAAvC,CAFJ,eAGIV,4BAAA,SAAA;AAAQM,IAAAA,IAAI,EAAEP;AAAOS,IAAAA,EAAE,EAAC;AAAIC,IAAAA,EAAE,EAAC;AAAKC,IAAAA,CAAC,EAAC;GAAtC,CAHJ,CADJ,CADkB;AAAA,CAAtB;;AASAZ,aAAa,CAACa,SAAd,GAA0B;AACtB;AACAZ,EAAAA,KAAK,EAAEa,SAAS,CAACC;AAFK,CAA1B;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"loading.js","sources":["../../../src/components/loading/loading.tsx"],"sourcesContent":["import React from 'react'\nimport classNames from 'classnames'\n\nimport './loading.less'\n\ntype Props = {\n /** Additional css class that is applied to Loading. */\n className?: string\n /** Hex code of the spinner color. */\n spinnerColor?: string\n /** Hex code of the background color. */\n bgColor?: string\n /** Circle diameter in pixels. */\n size?: string | number\n\n 'aria-label'?: string\n}\n\nfunction Loading({\n className,\n spinnerColor = '#3F82EF',\n bgColor = '#D9E6FB',\n size = 24,\n 'aria-label': ariaLabel = 'Loading',\n}: Props) {\n return (\n <div\n className={classNames('reactist_loading', className)}\n aria-label={ariaLabel}\n aria-live=\"assertive\"\n role=\"alert\"\n >\n <span className=\"reactist_loading--spinner\">\n <svg width={size} height={size} viewBox={'0 0 24 24'}>\n <g fill=\"none\" fillRule=\"nonzero\">\n <path\n fill={spinnerColor}\n d=\"M17.945 3.958A9.955 9.955 0 0 0 12 2c-2.19 0-4.217.705-5.865 1.9L5.131 2.16A11.945 11.945 0 0 1 12 0c2.59 0 4.99.82 6.95 2.217l-1.005 1.741z\"\n />\n <path\n fill={bgColor}\n d=\"M5.13 2.16L6.136 3.9A9.987 9.987 0 0 0 2 12c0 5.523 4.477 10 10 10s10-4.477 10-10a9.986 9.986 0 0 0-4.055-8.042l1.006-1.741A11.985 11.985 0 0 1 24 12c0 6.627-5.373 12-12 12S0 18.627 0 12c0-4.073 2.029-7.671 5.13-9.84z\"\n />\n </g>\n </svg>\n </span>\n </div>\n )\n}\nLoading.displayName = 'Loading'\n\nexport { Loading }\n"],"names":["Loading","className","spinnerColor","bgColor","size","ariaLabel","React","classNames","role","width","height","viewBox","fill","fillRule","d","displayName"],"mappings":";;;AAkBA,SAASA,OAAT;MACIC,iBAAAA;+BACAC;MAAAA,8CAAe;0BACfC;MAAAA,oCAAU;uBACVC;MAAAA,8BAAO;4BACP;MAAcC,wCAAY;AAE1B,sBACIC,4BAAA,MAAA;AACIL,IAAAA,SAAS,EAAEM,UAAU,CAAC,kBAAD,EAAqBN,SAArB;kBACTI;iBACF;AACVG,IAAAA,IAAI,EAAC;GAJT,eAMIF,4BAAA,OAAA;AAAML,IAAAA,SAAS,EAAC;GAAhB,eACIK,4BAAA,MAAA;AAAKG,IAAAA,KAAK,EAAEL;AAAMM,IAAAA,MAAM,EAAEN;AAAMO,IAAAA,OAAO,EAAE;GAAzC,eACIL,4BAAA,IAAA;AAAGM,IAAAA,IAAI,EAAC;AAAOC,IAAAA,QAAQ,EAAC;GAAxB,eACIP,4BAAA,OAAA;AACIM,IAAAA,IAAI,EAAEV;AACNY,IAAAA,CAAC,EAAC;GAFN,CADJ,eAKIR,4BAAA,OAAA;AACIM,IAAAA,IAAI,EAAET;AACNW,IAAAA,CAAC,EAAC;GAFN,CALJ,CADJ,CADJ,CANJ,CADJ;AAuBH;;AACDd,OAAO,CAACe,WAAR,GAAsB,SAAtB;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"type-helpers.js","sources":["../../../src/components/menu/type-helpers.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/ban-types */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\n//\n// The content of this file is heavily influenced by the similar and even more extensive type\n// definitions found in https://github.com/reach/reach-ui/tree/develop/packages/utils/src. That\n// library is said to not be kept stable and meant to be used internally by other reach-ui libs, so\n// instead of using it as a dependency we copied over the bits that we needed. The amount of copied\n// code was small but substantial enough to merit including here the copyright notice.\n//\n// The MIT License (MIT)\n//\n// Copyright (c) 2018-present, React Training LLC\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and\n// associated documentation files (the \"Software\"), to deal in the Software without restriction,\n// including without limitation the rights to use, copy, modify, merge, publish, distribute,\n// sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in all copies or\n// substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT\n// NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n//\n\nimport * as React from 'react'\nimport { PropsWithAs as ReakitPropsWithAs, As } from 'reakit-utils/types'\n\n/**\n * We revert here the order from how reakit declares it. This is to be more aligned with how\n * React.fowardRef generic arguments order is defined (element type first, props last).\n */\ntype PropsWithAs<ComponentType extends As, ComponentProps = {}> = ReakitPropsWithAs<\n ComponentProps,\n ComponentType\n>\n\ntype PropsFromAs<ComponentType extends As, ComponentProps> = (PropsWithAs<\n ComponentType,\n ComponentProps\n> & { as: ComponentType }) &\n PropsWithAs<ComponentType, ComponentProps>\n\ntype ElementTagNameMap = HTMLElementTagNameMap &\n Pick<SVGElementTagNameMap, Exclude<keyof SVGElementTagNameMap, keyof HTMLElementTagNameMap>>\n\ntype ElementByTag<TagName extends keyof ElementTagNameMap> = ElementTagNameMap[TagName]\n\ninterface ForwardRefFunction<ComponentType extends As, ComponentProps = {}> {\n (\n props: React.PropsWithChildren<PropsFromAs<ComponentType, ComponentProps>>,\n ref:\n | ((\n instance:\n | (ComponentType extends keyof ElementTagNameMap\n ? ElementByTag<ComponentType>\n : any)\n | null,\n ) => void)\n | React.MutableRefObject<\n | (ComponentType extends keyof ElementTagNameMap\n ? ElementByTag<ComponentType>\n : any)\n | null\n >\n | null,\n ): React.ReactElement | null\n displayName?: string\n}\n\nexport interface ForwardRefComponentWithAs<ComponentType extends As, ComponentProps> {\n <TT extends As = ComponentType>(\n props: PropsWithAs<TT, ComponentProps>,\n ): React.ReactElement | null\n readonly $$typeof: symbol\n defaultProps?: Partial<PropsWithAs<ComponentType, ComponentProps>>\n propTypes?: React.WeakValidationMap<PropsWithAs<ComponentType, ComponentProps>>\n displayName?: string\n}\n\nexport function forwardRefWithAs<ComponentType extends As = 'div', ComponentProps = {}>(\n render: ForwardRefFunction<ComponentType, ComponentProps>,\n) {\n return React.forwardRef(render) as ForwardRefComponentWithAs<ComponentType, ComponentProps>\n}\n"],"names":["forwardRefWithAs","render","React"],"mappings":";;AAAA;SAqFgBA,iBACZC;AAEA,sBAAOC,UAAA,CAAiBD,MAAjB,CAAP;AACH;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/components/modal/index.ts"],"sourcesContent":["import { Box, Header, Body, Actions } from './modal'\nimport type { Modal } from './modal'\n\nexport default { Box, Header, Body, Actions }\nexport type { Modal }\n"],"names":["Box","Header","Body","Actions"],"mappings":";;AAGA,YAAe;AAAEA,EAAAA,GAAG,EAAHA,GAAF;AAAOC,EAAAA,MAAM,EAANA,MAAP;AAAeC,EAAAA,IAAI,EAAJA,IAAf;AAAqBC,EAAAA,OAAO,EAAPA;AAArB,CAAf;;;;"}
|