@jetbrains/ring-ui 6.0.6-beta.0 → 6.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/components/alert/alert.css +146 -0
- package/components/alert/alert.d.ts +113 -0
- package/components/alert/alert.js +186 -0
- package/components/alert/container.css +26 -0
- package/components/alert/container.d.ts +15 -0
- package/components/alert/container.js +30 -0
- package/components/alert-service/alert-service.d.ts +36 -0
- package/components/alert-service/alert-service.js +108 -0
- package/components/alert-service/alert-service.stories.css +17 -0
- package/components/analytics/analytics.d.ts +18 -0
- package/components/analytics/analytics.js +18 -0
- package/components/analytics/analytics__custom-plugin.d.ts +28 -0
- package/components/analytics/analytics__custom-plugin.js +58 -0
- package/components/auth/auth.d.ts +3 -0
- package/components/auth/auth.js +42 -0
- package/components/auth/auth__core.d.ts +236 -0
- package/components/auth/auth__core.js +834 -0
- package/components/auth/background-flow.d.ts +31 -0
- package/components/auth/background-flow.js +97 -0
- package/components/auth/down-notification.css +15 -0
- package/components/auth/down-notification.d.ts +15 -0
- package/components/auth/down-notification.js +52 -0
- package/components/auth/iframe-flow.d.ts +20 -0
- package/components/auth/iframe-flow.js +81 -0
- package/components/auth/request-builder.d.ts +48 -0
- package/components/auth/request-builder.js +64 -0
- package/components/auth/response-parser.d.ts +70 -0
- package/components/auth/response-parser.js +99 -0
- package/components/auth/storage.d.ts +112 -0
- package/components/auth/storage.js +224 -0
- package/components/auth/token-validator.d.ts +93 -0
- package/components/auth/token-validator.js +169 -0
- package/components/auth/window-flow.d.ts +26 -0
- package/components/auth/window-flow.js +102 -0
- package/components/auth-dialog/auth-dialog.css +54 -0
- package/components/auth-dialog/auth-dialog.d.ts +60 -0
- package/components/auth-dialog/auth-dialog.js +93 -0
- package/components/auth-dialog-service/auth-dialog-service.d.ts +6 -0
- package/components/auth-dialog-service/auth-dialog-service.js +26 -0
- package/components/avatar/avatar-example-datauri.d.ts +1 -0
- package/components/avatar/avatar-example-datauri.js +24 -0
- package/components/avatar/avatar.css +27 -0
- package/components/avatar/avatar.d.ts +52 -0
- package/components/avatar/avatar.js +98 -0
- package/components/avatar/fallback-avatar.d.ts +17 -0
- package/components/avatar/fallback-avatar.js +113 -0
- package/components/badge/badge.css +42 -0
- package/components/badge/badge.d.ts +24 -0
- package/components/badge/badge.js +35 -0
- package/components/button/button.css +397 -0
- package/components/button/button.d.ts +67 -0
- package/components/button/button.js +70 -0
- package/components/button/button__classes.d.ts +2 -0
- package/components/button/button__classes.js +18 -0
- package/components/button-group/button-group.css +236 -0
- package/components/button-group/button-group.d.ts +18 -0
- package/components/button-group/button-group.js +21 -0
- package/components/button-group/caption.d.ts +8 -0
- package/components/button-group/caption.js +14 -0
- package/components/button-set/button-set.css +21 -0
- package/components/button-set/button-set.d.ts +16 -0
- package/components/button-set/button-set.js +22 -0
- package/components/button-toolbar/button-toolbar.css +25 -0
- package/components/button-toolbar/button-toolbar.d.ts +16 -0
- package/components/button-toolbar/button-toolbar.js +20 -0
- package/components/caret/caret.d.ts +66 -0
- package/components/caret/caret.js +216 -0
- package/components/checkbox/checkbox.css +146 -0
- package/components/checkbox/checkbox.d.ts +45 -0
- package/components/checkbox/checkbox.js +72 -0
- package/components/clipboard/clipboard-fallback.d.ts +2 -0
- package/components/clipboard/clipboard-fallback.js +44 -0
- package/components/clipboard/clipboard.d.ts +5 -0
- package/components/clipboard/clipboard.js +41 -0
- package/components/code/code.css +29 -0
- package/components/code/code.d.ts +44 -0
- package/components/code/code.js +94 -0
- package/components/code/highlight.css +112 -0
- package/components/collapse/collapse-content.d.ts +11 -0
- package/components/collapse/collapse-content.js +72 -0
- package/components/collapse/collapse-context.d.ts +10 -0
- package/components/collapse/collapse-context.js +10 -0
- package/components/collapse/collapse-control.d.ts +11 -0
- package/components/collapse/collapse-control.js +22 -0
- package/components/collapse/collapse.css +40 -0
- package/components/collapse/collapse.d.ts +12 -0
- package/components/collapse/collapse.js +26 -0
- package/components/collapse/collapse.stories.css +25 -0
- package/components/collapse/consts.d.ts +4 -0
- package/components/collapse/consts.js +4 -0
- package/components/collapse/utils.d.ts +1 -0
- package/components/collapse/utils.js +1 -0
- package/components/confirm/confirm.css +7 -0
- package/components/confirm/confirm.d.ts +48 -0
- package/components/confirm/confirm.js +59 -0
- package/components/confirm-service/confirm-service.d.ts +21 -0
- package/components/confirm-service/confirm-service.js +52 -0
- package/components/content-layout/content-layout.css +108 -0
- package/components/content-layout/content-layout.d.ts +26 -0
- package/components/content-layout/content-layout.js +45 -0
- package/components/content-layout/sidebar.d.ts +31 -0
- package/components/content-layout/sidebar.js +76 -0
- package/components/contenteditable/contenteditable.d.ts +47 -0
- package/components/contenteditable/contenteditable.js +47 -0
- package/components/control-label/control-label.css +23 -0
- package/components/control-label/control-label.d.ts +11 -0
- package/components/control-label/control-label.js +22 -0
- package/components/data-list/data-list.css +97 -0
- package/components/data-list/data-list.d.ts +85 -0
- package/components/data-list/data-list.js +119 -0
- package/components/data-list/data-list.mock.d.ts +16 -0
- package/components/data-list/data-list.mock.js +207 -0
- package/components/data-list/item.d.ts +50 -0
- package/components/data-list/item.js +114 -0
- package/components/data-list/selection.d.ts +16 -0
- package/components/data-list/selection.js +81 -0
- package/components/data-list/title.d.ts +26 -0
- package/components/data-list/title.js +65 -0
- package/components/date-picker/consts.d.ts +98 -0
- package/components/date-picker/consts.js +44 -0
- package/components/date-picker/date-input.d.ts +47 -0
- package/components/date-picker/date-input.js +91 -0
- package/components/date-picker/date-picker.css +602 -0
- package/components/date-picker/date-picker.d.ts +77 -0
- package/components/date-picker/date-picker.js +218 -0
- package/components/date-picker/date-popup.d.ts +55 -0
- package/components/date-picker/date-popup.js +347 -0
- package/components/date-picker/day.d.ts +30 -0
- package/components/date-picker/day.js +88 -0
- package/components/date-picker/formats.d.ts +2 -0
- package/components/date-picker/formats.js +1 -0
- package/components/date-picker/month-names.d.ts +13 -0
- package/components/date-picker/month-names.js +62 -0
- package/components/date-picker/month-slider.d.ts +29 -0
- package/components/date-picker/month-slider.js +56 -0
- package/components/date-picker/month.d.ts +14 -0
- package/components/date-picker/month.js +33 -0
- package/components/date-picker/months.d.ts +11 -0
- package/components/date-picker/months.js +101 -0
- package/components/date-picker/weekdays.d.ts +13 -0
- package/components/date-picker/weekdays.js +24 -0
- package/components/date-picker/years.d.ts +25 -0
- package/components/date-picker/years.js +87 -0
- package/components/dialog/dialog.css +137 -0
- package/components/dialog/dialog.d.ts +64 -0
- package/components/dialog/dialog.js +128 -0
- package/components/dialog/dialog__body-scroll-preventer.d.ts +9 -0
- package/components/dialog/dialog__body-scroll-preventer.js +43 -0
- package/components/dropdown/anchor.d.ts +11 -0
- package/components/dropdown/anchor.js +16 -0
- package/components/dropdown/dropdown.css +18 -0
- package/components/dropdown/dropdown.d.ts +87 -0
- package/components/dropdown/dropdown.js +159 -0
- package/components/dropdown-menu/dropdown-menu.d.ts +36 -0
- package/components/dropdown-menu/dropdown-menu.js +56 -0
- package/components/editable-heading/editable-heading.css +198 -0
- package/components/editable-heading/editable-heading.d.ts +32 -0
- package/components/editable-heading/editable-heading.js +141 -0
- package/components/error-bubble/error-bubble-legacy.css +77 -0
- package/components/error-bubble/error-bubble.css +54 -0
- package/components/error-bubble/error-bubble.d.ts +18 -0
- package/components/error-bubble/error-bubble.js +28 -0
- package/components/error-message/error-message.css +37 -0
- package/components/error-message/error-message.d.ts +27 -0
- package/components/error-message/error-message.js +37 -0
- package/components/error-page/error-page.css +24 -0
- package/components/error-page/error-page.gif +0 -0
- package/components/footer/footer.css +83 -0
- package/components/footer/footer.d.ts +28 -0
- package/components/footer/footer.js +97 -0
- package/components/form/form.css +266 -0
- package/components/form/form.stories.js +138 -0
- package/components/global/compose.d.ts +7 -0
- package/components/global/compose.js +4 -0
- package/components/global/composeRefs.d.ts +3 -0
- package/components/global/composeRefs.js +8 -0
- package/components/global/controls-height.d.ts +9 -0
- package/components/global/controls-height.js +16 -0
- package/components/global/create-stateful-context.d.ts +27 -0
- package/components/global/create-stateful-context.js +38 -0
- package/components/global/data-tests.d.ts +3 -0
- package/components/global/data-tests.js +17 -0
- package/components/global/dom.d.ts +37 -0
- package/components/global/dom.js +83 -0
- package/components/global/focus-sensor-hoc.d.ts +19 -0
- package/components/global/focus-sensor-hoc.js +102 -0
- package/components/global/fuzzy-highlight.d.ts +11 -0
- package/components/global/fuzzy-highlight.js +58 -0
- package/components/global/get-event-key.d.ts +2 -0
- package/components/global/get-event-key.js +100 -0
- package/components/global/get-uid.d.ts +1 -0
- package/components/global/get-uid.js +16 -0
- package/components/global/global.css +101 -0
- package/components/global/inject-styles.d.ts +3 -0
- package/components/global/inject-styles.js +12 -0
- package/components/global/linear-function.d.ts +6 -0
- package/components/global/linear-function.js +13 -0
- package/components/global/listeners.d.ts +8 -0
- package/components/global/listeners.js +27 -0
- package/components/global/memoize.d.ts +1 -0
- package/components/global/memoize.js +15 -0
- package/components/global/normalize-indent.d.ts +1 -0
- package/components/global/normalize-indent.js +30 -0
- package/components/global/promise-with-timeout.d.ts +5 -0
- package/components/global/promise-with-timeout.js +11 -0
- package/components/global/prop-types.d.ts +4 -0
- package/components/global/prop-types.js +4 -0
- package/components/global/react-dom-renderer.d.ts +16 -0
- package/components/global/react-dom-renderer.js +25 -0
- package/components/global/react-render-adapter.d.ts +1 -0
- package/components/global/react-render-adapter.js +3 -0
- package/components/global/rerender-hoc.d.ts +10 -0
- package/components/global/rerender-hoc.js +14 -0
- package/components/global/schedule-raf.d.ts +1 -0
- package/components/global/schedule-raf.js +27 -0
- package/components/global/sniffer.d.ts +3 -0
- package/components/global/sniffer.js +4 -0
- package/components/global/theme.d.ts +21 -0
- package/components/global/theme.js +70 -0
- package/components/global/trivial-template-tag.d.ts +1 -0
- package/components/global/trivial-template-tag.js +9 -0
- package/components/global/typescript-utils.d.ts +2 -0
- package/components/global/typescript-utils.js +2 -0
- package/components/global/url.d.ts +57 -0
- package/components/global/url.js +136 -0
- package/components/global/use-event-callback.d.ts +1 -0
- package/components/global/use-event-callback.js +14 -0
- package/components/global/variables.css +179 -0
- package/components/global/variables.d.ts +89 -0
- package/components/global/variables.js +1 -0
- package/components/global/variables_dark.css +132 -0
- package/components/grid/col.d.ts +31 -0
- package/components/grid/col.js +49 -0
- package/components/grid/grid.css +915 -0
- package/components/grid/grid.d.ts +14 -0
- package/components/grid/grid.js +22 -0
- package/components/grid/row.d.ts +40 -0
- package/components/grid/row.js +51 -0
- package/components/group/group.css +7 -0
- package/components/group/group.d.ts +12 -0
- package/components/group/group.js +20 -0
- package/components/header/header.css +169 -0
- package/components/header/header.d.ts +34 -0
- package/components/header/header.js +46 -0
- package/components/header/logo.d.ts +14 -0
- package/components/header/logo.js +22 -0
- package/components/header/profile.d.ts +75 -0
- package/components/header/profile.js +119 -0
- package/components/header/services-link.d.ts +25 -0
- package/components/header/services-link.js +26 -0
- package/components/header/services.css +97 -0
- package/components/header/services.d.ts +33 -0
- package/components/header/services.js +62 -0
- package/components/header/smart-profile.d.ts +36 -0
- package/components/header/smart-profile.js +86 -0
- package/components/header/smart-services.d.ts +26 -0
- package/components/header/smart-services.js +49 -0
- package/components/header/tray-icon.d.ts +32 -0
- package/components/header/tray-icon.js +20 -0
- package/components/header/tray.d.ts +9 -0
- package/components/header/tray.js +18 -0
- package/components/heading/heading.css +68 -0
- package/components/heading/heading.d.ts +25 -0
- package/components/heading/heading.js +52 -0
- package/components/http/http.d.ts +61 -0
- package/components/http/http.js +192 -0
- package/components/http/http.mock.d.ts +20 -0
- package/components/http/http.mock.js +52 -0
- package/components/hub-source/hub-source.d.ts +44 -0
- package/components/hub-source/hub-source.js +107 -0
- package/components/hub-source/hub-source__user.d.ts +4 -0
- package/components/hub-source/hub-source__user.js +20 -0
- package/components/hub-source/hub-source__users-groups.d.ts +24 -0
- package/components/hub-source/hub-source__users-groups.js +53 -0
- package/components/i18n/README.md +46 -0
- package/components/i18n/i18n-context.d.ts +13 -0
- package/components/i18n/i18n-context.js +14 -0
- package/components/i18n/i18n.d.ts +59 -0
- package/components/i18n/i18n.js +26 -0
- package/components/i18n/messages.json +53 -0
- package/components/icon/icon.css +100 -0
- package/components/icon/icon.d.ts +43 -0
- package/components/icon/icon.js +69 -0
- package/components/icon/icon__constants.d.ts +30 -0
- package/components/icon/icon__constants.js +32 -0
- package/components/icon/icon__svg.d.ts +15 -0
- package/components/icon/icon__svg.js +58 -0
- package/components/icon/index.d.ts +2 -0
- package/components/icon/index.js +2 -0
- package/components/input/input-legacy.css +123 -0
- package/components/input/input.css +194 -0
- package/components/input/input.d.ts +77 -0
- package/components/input/input.js +165 -0
- package/components/input-size/input-size.css +82 -0
- package/components/input-size/input-size.stories.js +73 -0
- package/components/island/adaptive-island-hoc.d.ts +61 -0
- package/components/island/adaptive-island-hoc.js +28 -0
- package/components/island/content.d.ts +43 -0
- package/components/island/content.js +100 -0
- package/components/island/header.d.ts +8 -0
- package/components/island/header.js +78 -0
- package/components/island/island.css +131 -0
- package/components/island/island.d.ts +78 -0
- package/components/island/island.js +31 -0
- package/components/island-legacy/content-legacy.d.ts +10 -0
- package/components/island-legacy/content-legacy.js +17 -0
- package/components/island-legacy/header-legacy.d.ts +10 -0
- package/components/island-legacy/header-legacy.js +19 -0
- package/components/island-legacy/island-legacy.css +98 -0
- package/components/island-legacy/island-legacy.d.ts +12 -0
- package/components/island-legacy/island-legacy.js +19 -0
- package/components/line/line.css +14 -0
- package/components/link/clickableLink.d.ts +20 -0
- package/components/link/clickableLink.js +33 -0
- package/components/link/link.css +64 -0
- package/components/link/link.d.ts +138 -0
- package/components/link/link.js +44 -0
- package/components/list/consts.d.ts +77 -0
- package/components/list/consts.js +25 -0
- package/components/list/list.css +298 -0
- package/components/list/list.d.ts +205 -0
- package/components/list/list.js +590 -0
- package/components/list/list.stories.css +3 -0
- package/components/list/list__custom.d.ts +6 -0
- package/components/list/list__custom.js +52 -0
- package/components/list/list__hint.d.ts +15 -0
- package/components/list/list__hint.js +16 -0
- package/components/list/list__item.d.ts +8 -0
- package/components/list/list__item.js +130 -0
- package/components/list/list__link.d.ts +9 -0
- package/components/list/list__link.js +43 -0
- package/components/list/list__separator.d.ts +5 -0
- package/components/list/list__separator.js +21 -0
- package/components/list/list__title.d.ts +5 -0
- package/components/list/list__title.js +28 -0
- package/components/list/list__users-groups-source.d.ts +27 -0
- package/components/list/list__users-groups-source.js +74 -0
- package/components/loader/loader.css +27 -0
- package/components/loader/loader.d.ts +28 -0
- package/components/loader/loader.js +44 -0
- package/components/loader/loader__core.d.ts +75 -0
- package/components/loader/loader__core.js +219 -0
- package/components/loader-inline/loader-inline.css +73 -0
- package/components/loader-inline/loader-inline.d.ts +18 -0
- package/components/loader-inline/loader-inline.js +27 -0
- package/components/loader-screen/loader-screen.css +29 -0
- package/components/loader-screen/loader-screen.d.ts +17 -0
- package/components/loader-screen/loader-screen.js +25 -0
- package/components/login-dialog/login-dialog.css +23 -0
- package/components/login-dialog/login-dialog.d.ts +47 -0
- package/components/login-dialog/login-dialog.js +84 -0
- package/components/login-dialog/service.d.ts +2 -0
- package/components/login-dialog/service.js +24 -0
- package/components/markdown/markdown.css +126 -0
- package/components/markdown/markdown.d.ts +12 -0
- package/components/markdown/markdown.js +25 -0
- package/components/message/message.css +61 -0
- package/components/message/message.d.ts +55 -0
- package/components/message/message.js +129 -0
- package/components/old-browsers-message/old-browsers-message.css +26 -0
- package/components/old-browsers-message/old-browsers-message.d.ts +2 -0
- package/components/old-browsers-message/old-browsers-message.js +83 -0
- package/components/old-browsers-message/old-browsers-message__stop.d.ts +1 -0
- package/components/old-browsers-message/old-browsers-message__stop.js +2 -0
- package/components/old-browsers-message/white-list.d.ts +2 -0
- package/components/old-browsers-message/white-list.js +25 -0
- package/components/pager/pager.css +19 -0
- package/components/pager/pager.d.ts +78 -0
- package/components/pager/pager.js +223 -0
- package/components/palette/palette.css +216 -0
- package/components/panel/panel.css +20 -0
- package/components/panel/panel.d.ts +12 -0
- package/components/panel/panel.js +20 -0
- package/components/permissions/permissions.d.ts +111 -0
- package/components/permissions/permissions.js +177 -0
- package/components/permissions/permissions__cache.d.ts +93 -0
- package/components/permissions/permissions__cache.js +228 -0
- package/components/popup/popup.consts.d.ts +37 -0
- package/components/popup/popup.consts.js +45 -0
- package/components/popup/popup.css +34 -0
- package/components/popup/popup.d.ts +147 -0
- package/components/popup/popup.js +312 -0
- package/components/popup/popup.target.d.ts +7 -0
- package/components/popup/popup.target.js +15 -0
- package/components/popup/position.d.ts +30 -0
- package/components/popup/position.js +202 -0
- package/components/popup-menu/popup-menu.d.ts +80 -0
- package/components/popup-menu/popup-menu.js +41 -0
- package/components/progress-bar/progress-bar.css +82 -0
- package/components/progress-bar/progress-bar.d.ts +64 -0
- package/components/progress-bar/progress-bar.js +76 -0
- package/components/query-assist/query-assist.css +275 -0
- package/components/query-assist/query-assist.d.ts +306 -0
- package/components/query-assist/query-assist.js +847 -0
- package/components/query-assist/query-assist__suggestions.d.ts +29 -0
- package/components/query-assist/query-assist__suggestions.js +60 -0
- package/components/radio/radio.css +122 -0
- package/components/radio/radio.d.ts +18 -0
- package/components/radio/radio.js +27 -0
- package/components/radio/radio__item.d.ts +28 -0
- package/components/radio/radio__item.js +41 -0
- package/components/select/select-popup.css +103 -0
- package/components/select/select.css +235 -0
- package/components/select/select.d.ts +276 -0
- package/components/select/select.js +957 -0
- package/components/select/select__filter.d.ts +19 -0
- package/components/select/select__filter.js +49 -0
- package/components/select/select__popup.d.ts +166 -0
- package/components/select/select__popup.js +408 -0
- package/components/shortcuts/core.d.ts +74 -0
- package/components/shortcuts/core.js +191 -0
- package/components/shortcuts/shortcut-title.d.ts +1 -0
- package/components/shortcuts/shortcut-title.js +50 -0
- package/components/shortcuts/shortcuts-hoc.d.ts +65 -0
- package/components/shortcuts/shortcuts-hoc.js +19 -0
- package/components/shortcuts/shortcuts.d.ts +28 -0
- package/components/shortcuts/shortcuts.js +50 -0
- package/components/sidebar/sidebar.css +157 -0
- package/components/storage/storage.d.ts +18 -0
- package/components/storage/storage.js +22 -0
- package/components/storage/storage__fallback.d.ts +79 -0
- package/components/storage/storage__fallback.js +181 -0
- package/components/storage/storage__local.d.ts +38 -0
- package/components/storage/storage__local.js +119 -0
- package/components/tab-trap/tab-trap.css +6 -0
- package/components/tab-trap/tab-trap.d.ts +43 -0
- package/components/tab-trap/tab-trap.js +125 -0
- package/components/table/cell.d.ts +13 -0
- package/components/table/cell.js +16 -0
- package/components/table/disable-hover-hoc.d.ts +64 -0
- package/components/table/disable-hover-hoc.js +32 -0
- package/components/table/header-cell.d.ts +43 -0
- package/components/table/header-cell.js +56 -0
- package/components/table/header.d.ts +56 -0
- package/components/table/header.js +67 -0
- package/components/table/multitable.d.ts +25 -0
- package/components/table/multitable.js +81 -0
- package/components/table/row-with-focus-sensor.d.ts +18 -0
- package/components/table/row-with-focus-sensor.js +25 -0
- package/components/table/row.d.ts +59 -0
- package/components/table/row.js +154 -0
- package/components/table/selection-adapter.d.ts +5 -0
- package/components/table/selection-adapter.js +10 -0
- package/components/table/selection-shortcuts-hoc.d.ts +17 -0
- package/components/table/selection-shortcuts-hoc.js +146 -0
- package/components/table/selection.d.ts +47 -0
- package/components/table/selection.js +150 -0
- package/components/table/smart-table.d.ts +64 -0
- package/components/table/smart-table.js +40 -0
- package/components/table/table.css +259 -0
- package/components/table/table.d.ts +159 -0
- package/components/table/table.examples2.json +19 -0
- package/components/table/table.js +231 -0
- package/components/table/table.stories.json +45 -0
- package/components/table-legacy/table-legacy.css +346 -0
- package/components/table-legacy/table-legacy__toolbar.css +25 -0
- package/components/tabs/collapsible-more.d.ts +29 -0
- package/components/tabs/collapsible-more.js +97 -0
- package/components/tabs/collapsible-tab.d.ts +16 -0
- package/components/tabs/collapsible-tab.js +34 -0
- package/components/tabs/collapsible-tabs.d.ts +43 -0
- package/components/tabs/collapsible-tabs.js +196 -0
- package/components/tabs/custom-item.d.ts +9 -0
- package/components/tabs/custom-item.js +5 -0
- package/components/tabs/dumb-tabs.d.ts +35 -0
- package/components/tabs/dumb-tabs.js +56 -0
- package/components/tabs/smart-tabs.d.ts +20 -0
- package/components/tabs/smart-tabs.js +25 -0
- package/components/tabs/tab-link.d.ts +18 -0
- package/components/tabs/tab-link.js +24 -0
- package/components/tabs/tab.d.ts +27 -0
- package/components/tabs/tab.js +19 -0
- package/components/tabs/tabs.css +223 -0
- package/components/tabs/tabs.d.ts +7 -0
- package/components/tabs/tabs.js +7 -0
- package/components/tag/tag.css +184 -0
- package/components/tag/tag.d.ts +64 -0
- package/components/tag/tag.js +130 -0
- package/components/tags-input/tags-input.css +100 -0
- package/components/tags-input/tags-input.d.ts +138 -0
- package/components/tags-input/tags-input.js +275 -0
- package/components/tags-list/tags-list.d.ts +46 -0
- package/components/tags-list/tags-list.js +45 -0
- package/components/text/text.css +21 -0
- package/components/text/text.d.ts +23 -0
- package/components/text/text.js +31 -0
- package/components/toggle/toggle.css +198 -0
- package/components/toggle/toggle.d.ts +39 -0
- package/components/toggle/toggle.js +46 -0
- package/components/tooltip/tooltip.css +17 -0
- package/components/tooltip/tooltip.d.ts +65 -0
- package/components/tooltip/tooltip.js +126 -0
- package/components/user-agreement/service.d.ts +69 -0
- package/components/user-agreement/service.js +242 -0
- package/components/user-agreement/toolbox.eula.d.ts +2 -0
- package/components/user-agreement/toolbox.eula.js +160 -0
- package/components/user-agreement/user-agreement.css +29 -0
- package/components/user-agreement/user-agreement.d.ts +60 -0
- package/components/user-agreement/user-agreement.js +80 -0
- package/components/user-card/card.d.ts +70 -0
- package/components/user-card/card.js +89 -0
- package/components/user-card/smart-user-card-tooltip.d.ts +20 -0
- package/components/user-card/smart-user-card-tooltip.js +47 -0
- package/components/user-card/tooltip.d.ts +36 -0
- package/components/user-card/tooltip.js +43 -0
- package/components/user-card/user-card.css +123 -0
- package/components/user-card/user-card.d.ts +11 -0
- package/components/user-card/user-card.js +11 -0
- package/package.json +61 -61
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import React, { Component } from 'react';
|
|
2
|
+
import classNames from 'classnames';
|
|
3
|
+
import PropTypes from 'prop-types';
|
|
4
|
+
import Dropdown from '../dropdown/dropdown';
|
|
5
|
+
import Popup from '../popup/popup';
|
|
6
|
+
import UserCard from './card';
|
|
7
|
+
import styles from './user-card.css';
|
|
8
|
+
const DEFAULT_TIMEOUT = 300;
|
|
9
|
+
export default class UserCardTooltip extends Component {
|
|
10
|
+
static propTypes = {
|
|
11
|
+
className: PropTypes.string,
|
|
12
|
+
children: PropTypes.oneOfType([PropTypes.node, PropTypes.func]),
|
|
13
|
+
dropdownProps: PropTypes.object,
|
|
14
|
+
user: PropTypes.object,
|
|
15
|
+
renderUserCard: PropTypes.func,
|
|
16
|
+
renderNoUser: PropTypes.func
|
|
17
|
+
};
|
|
18
|
+
static defaultProps = {
|
|
19
|
+
renderUserCard: (props) => {
|
|
20
|
+
const { user, ...restProps } = props;
|
|
21
|
+
return user && (<UserCard user={user} {...restProps}/>);
|
|
22
|
+
},
|
|
23
|
+
renderNoUser: () => '',
|
|
24
|
+
dropdownProps: {
|
|
25
|
+
hoverShowTimeOut: DEFAULT_TIMEOUT,
|
|
26
|
+
hoverHideTimeOut: DEFAULT_TIMEOUT
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
render() {
|
|
30
|
+
const { children, renderUserCard, renderNoUser, dropdownProps, user, ...restProps } = this.props;
|
|
31
|
+
return (<Dropdown anchor={children} hoverMode clickMode={false} {...dropdownProps}>
|
|
32
|
+
<Popup attached={false}>
|
|
33
|
+
{user
|
|
34
|
+
? renderUserCard({
|
|
35
|
+
...restProps,
|
|
36
|
+
user,
|
|
37
|
+
className: classNames(styles.userCardSpaced, this.props.className)
|
|
38
|
+
})
|
|
39
|
+
: renderNoUser()}
|
|
40
|
+
</Popup>
|
|
41
|
+
</Dropdown>);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
@import "../global/variables.css";
|
|
2
|
+
|
|
3
|
+
.userCardSpaced {
|
|
4
|
+
padding: calc(var(--ring-unit) * 2) calc(var(--ring-unit) * 2);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.userInformationContainer {
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: flex-start;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.userAvatar {
|
|
13
|
+
position: relative;
|
|
14
|
+
|
|
15
|
+
display: flex;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.userInformation {
|
|
19
|
+
padding-left: 12px;
|
|
20
|
+
|
|
21
|
+
text-align: left;
|
|
22
|
+
|
|
23
|
+
color: var(--ring-text-color);
|
|
24
|
+
|
|
25
|
+
font-size: 13px;
|
|
26
|
+
line-height: 18px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.userInformationGeneral {
|
|
30
|
+
display: flex;
|
|
31
|
+
flex-direction: column;
|
|
32
|
+
justify-content: center;
|
|
33
|
+
|
|
34
|
+
height: 56px;
|
|
35
|
+
padding-top: 1px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.userNameLine {
|
|
39
|
+
height: var(--ring-line-height-lowest);
|
|
40
|
+
|
|
41
|
+
white-space: nowrap;
|
|
42
|
+
|
|
43
|
+
line-height: var(--ring-line-height-lowest);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.userName {
|
|
47
|
+
display: inline-block;
|
|
48
|
+
|
|
49
|
+
margin-right: 4px;
|
|
50
|
+
|
|
51
|
+
font-size: 16px;
|
|
52
|
+
font-weight: 600;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.userLogin {
|
|
56
|
+
margin-bottom: 7px;
|
|
57
|
+
|
|
58
|
+
color: var(--ring-secondary-color);
|
|
59
|
+
|
|
60
|
+
font-size: var(--ring-font-size-smaller);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.userEmail {
|
|
64
|
+
margin-right: 4px;
|
|
65
|
+
|
|
66
|
+
font-size: var(--ring-font-size);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.userCopyIcon {
|
|
70
|
+
cursor: pointer;
|
|
71
|
+
|
|
72
|
+
opacity: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.userCopyIcon svg {
|
|
76
|
+
margin-left: 4px;
|
|
77
|
+
|
|
78
|
+
color: var(--ring-icon-color);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.userCopyIcon:hover svg {
|
|
82
|
+
color: var(--ring-link-hover-color);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.userEmailWrapper:hover .userCopyIcon {
|
|
86
|
+
transition: opacity 300ms ease-out;
|
|
87
|
+
|
|
88
|
+
opacity: 1;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
:has(.userCopyIcon:hover) > .userEmail {
|
|
92
|
+
color: var(--ring-link-hover-color);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.unverifiedLabel {
|
|
96
|
+
margin: 0 4px;
|
|
97
|
+
|
|
98
|
+
color: var(--ring-secondary-color);
|
|
99
|
+
|
|
100
|
+
font-size: var(--ring-font-size-smaller);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.userNameInfo {
|
|
104
|
+
display: inline-block;
|
|
105
|
+
|
|
106
|
+
margin-bottom: 3px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.userActiveStatus {
|
|
110
|
+
display: inline-block;
|
|
111
|
+
|
|
112
|
+
width: var(--ring-unit);
|
|
113
|
+
height: var(--ring-unit);
|
|
114
|
+
margin-right: var(--ring-unit);
|
|
115
|
+
margin-left: 6px;
|
|
116
|
+
|
|
117
|
+
border-radius: 50%;
|
|
118
|
+
background-color: var(--ring-icon-secondary-color);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.userActiveStatus.online {
|
|
122
|
+
background-color: var(--ring-icon-success-color);
|
|
123
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @name User Card
|
|
3
|
+
* @category Components
|
|
4
|
+
* @tags Ring UI Language
|
|
5
|
+
* @framework React
|
|
6
|
+
* @constructor
|
|
7
|
+
* @description A component that displays user details.
|
|
8
|
+
*/
|
|
9
|
+
export { default as UserCard } from './card';
|
|
10
|
+
export { default as UserCardTooltip } from './tooltip';
|
|
11
|
+
export { default as SmartUserCardTooltip } from './smart-user-card-tooltip';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @name User Card
|
|
3
|
+
* @category Components
|
|
4
|
+
* @tags Ring UI Language
|
|
5
|
+
* @framework React
|
|
6
|
+
* @constructor
|
|
7
|
+
* @description A component that displays user details.
|
|
8
|
+
*/
|
|
9
|
+
export { default as UserCard } from './card';
|
|
10
|
+
export { default as UserCardTooltip } from './tooltip';
|
|
11
|
+
export { default as SmartUserCardTooltip } from './smart-user-card-tooltip';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetbrains/ring-ui",
|
|
3
|
-
"version": "6.0.6
|
|
3
|
+
"version": "6.0.6",
|
|
4
4
|
"description": "JetBrains UI library",
|
|
5
5
|
"author": "JetBrains",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
"babel.config.js",
|
|
10
10
|
"components",
|
|
11
|
-
"dist",
|
|
12
11
|
"postcss.config.js",
|
|
13
12
|
"webpack.config.js",
|
|
14
13
|
"jslint-xml.js",
|
|
@@ -77,67 +76,68 @@
|
|
|
77
76
|
},
|
|
78
77
|
"readmeFilename": "README.md",
|
|
79
78
|
"devDependencies": {
|
|
80
|
-
"@babel/cli": "^7.23.
|
|
81
|
-
"@babel/eslint-parser": "^7.23.
|
|
82
|
-
"@csstools/stylelint-no-at-nest-rule": "^
|
|
79
|
+
"@babel/cli": "^7.23.9",
|
|
80
|
+
"@babel/eslint-parser": "^7.23.10",
|
|
81
|
+
"@csstools/stylelint-no-at-nest-rule": "^2.0.0",
|
|
82
|
+
"@csstools/css-parser-algorithms": "^2.5.0",
|
|
83
83
|
"@jetbrains/eslint-config": "^5.4.1",
|
|
84
|
-
"@jetbrains/stylelint-config": "^4.0.
|
|
84
|
+
"@jetbrains/stylelint-config": "^4.0.2",
|
|
85
85
|
"@primer/octicons": "^19.8.0",
|
|
86
86
|
"@rollup/plugin-babel": "^6.0.4",
|
|
87
|
-
"@rollup/plugin-json": "^6.0
|
|
87
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
88
88
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
89
89
|
"@rollup/plugin-replace": "^5.0.5",
|
|
90
|
-
"@storybook/addon-a11y": "7.6.
|
|
91
|
-
"@storybook/addon-docs": "7.6.
|
|
92
|
-
"@storybook/addon-essentials": "7.6.
|
|
93
|
-
"@storybook/addon-storyshots": "7.6.
|
|
94
|
-
"@storybook/addon-storyshots-puppeteer": "7.6.
|
|
95
|
-
"@storybook/addon-storysource": "7.6.
|
|
96
|
-
"@storybook/addons": "7.6.
|
|
97
|
-
"@storybook/preview-api": "7.6.
|
|
98
|
-
"@storybook/react": "7.6.
|
|
99
|
-
"@storybook/react-webpack5": "7.6.
|
|
100
|
-
"@storybook/source-loader": "7.6.
|
|
101
|
-
"@storybook/theming": "7.6.
|
|
102
|
-
"@testing-library/react": "^14.1
|
|
103
|
-
"@testing-library/user-event": "^14.5.
|
|
90
|
+
"@storybook/addon-a11y": "7.6.15",
|
|
91
|
+
"@storybook/addon-docs": "7.6.15",
|
|
92
|
+
"@storybook/addon-essentials": "7.6.15",
|
|
93
|
+
"@storybook/addon-storyshots": "7.6.10",
|
|
94
|
+
"@storybook/addon-storyshots-puppeteer": "7.6.15",
|
|
95
|
+
"@storybook/addon-storysource": "7.6.15",
|
|
96
|
+
"@storybook/addons": "7.6.15",
|
|
97
|
+
"@storybook/preview-api": "7.6.10",
|
|
98
|
+
"@storybook/react": "7.6.10",
|
|
99
|
+
"@storybook/react-webpack5": "7.6.15",
|
|
100
|
+
"@storybook/source-loader": "7.6.15",
|
|
101
|
+
"@storybook/theming": "7.6.15",
|
|
102
|
+
"@testing-library/react": "^14.2.1",
|
|
103
|
+
"@testing-library/user-event": "^14.5.2",
|
|
104
104
|
"@types/chai": "^4.3.11",
|
|
105
105
|
"@types/chai-as-promised": "^7.1.8",
|
|
106
106
|
"@types/chai-dom": "0.0.10",
|
|
107
107
|
"@types/chai-enzyme": "^0.6.13",
|
|
108
|
-
"@types/enzyme": "^3.10.
|
|
109
|
-
"@types/markdown-it": "^13.0.
|
|
110
|
-
"@types/react": "^18.2.
|
|
111
|
-
"@types/react-dom": "^18.2.
|
|
112
|
-
"@types/sinon": "^17.0.
|
|
108
|
+
"@types/enzyme": "^3.10.18",
|
|
109
|
+
"@types/markdown-it": "^13.0.7",
|
|
110
|
+
"@types/react": "^18.2.55",
|
|
111
|
+
"@types/react-dom": "^18.2.19",
|
|
112
|
+
"@types/sinon": "^17.0.3",
|
|
113
113
|
"@types/sinon-chai": "^3.2.12",
|
|
114
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
115
|
-
"@typescript-eslint/parser": "^
|
|
114
|
+
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
|
115
|
+
"@typescript-eslint/parser": "^7.0.1",
|
|
116
116
|
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
|
|
117
|
-
"acorn": "^8.11.
|
|
117
|
+
"acorn": "^8.11.3",
|
|
118
118
|
"babel-plugin-require-context-hook": "^1.0.0",
|
|
119
|
-
"caniuse-lite": "^1.0.
|
|
120
|
-
"chai": "^
|
|
119
|
+
"caniuse-lite": "^1.0.30001587",
|
|
120
|
+
"chai": "^5.1.0",
|
|
121
121
|
"chai-as-promised": "^7.1.1",
|
|
122
122
|
"chai-dom": "^1.10.0",
|
|
123
123
|
"chai-enzyme": "1.0.0-beta.1",
|
|
124
124
|
"cheerio": "^1.0.0-rc.12",
|
|
125
|
-
"core-js": "^3.
|
|
125
|
+
"core-js": "^3.36.0",
|
|
126
126
|
"cpy-cli": "^3.1.1",
|
|
127
127
|
"enzyme": "^3.11.0",
|
|
128
|
-
"eslint": "^8.
|
|
128
|
+
"eslint": "^8.56.0",
|
|
129
129
|
"eslint-import-resolver-webpack": "^0.13.8",
|
|
130
130
|
"eslint-plugin-bdd": "^2.1.1",
|
|
131
|
-
"eslint-plugin-import": "^2.29.
|
|
131
|
+
"eslint-plugin-import": "^2.29.1",
|
|
132
132
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
133
133
|
"eslint-plugin-react": "^7.33.2",
|
|
134
134
|
"eslint-plugin-storybook": "^0.6.15",
|
|
135
135
|
"events": "^3.3.0",
|
|
136
136
|
"glob": "^10.3.10",
|
|
137
|
-
"html-webpack-plugin": "^5.
|
|
138
|
-
"husky": "^
|
|
137
|
+
"html-webpack-plugin": "^5.6.0",
|
|
138
|
+
"husky": "^9.0.11",
|
|
139
139
|
"identity-obj-proxy": "^3.0.0",
|
|
140
|
-
"imports-loader": "^
|
|
140
|
+
"imports-loader": "^5.0.0",
|
|
141
141
|
"jest": "~29.7.0",
|
|
142
142
|
"jest-environment-jsdom": "^29.7.0",
|
|
143
143
|
"jest-teamcity": "^1.10.0",
|
|
@@ -146,35 +146,35 @@
|
|
|
146
146
|
"karma-mocha": "^2.0.1",
|
|
147
147
|
"karma-sourcemap-loader": "^0.4.0",
|
|
148
148
|
"karma-teamcity-reporter": "^2.0.0",
|
|
149
|
-
"karma-webpack": "^5.0.
|
|
150
|
-
"lint-staged": "^
|
|
151
|
-
"markdown-it": "^
|
|
149
|
+
"karma-webpack": "^5.0.1",
|
|
150
|
+
"lint-staged": "^15.2.2",
|
|
151
|
+
"markdown-it": "^14.0.0",
|
|
152
152
|
"merge-options": "^3.0.4",
|
|
153
153
|
"mocha": "^10.2.0",
|
|
154
154
|
"pinst": "^3.0.0",
|
|
155
|
-
"prettier": "^3.
|
|
156
|
-
"puppeteer": "^
|
|
155
|
+
"prettier": "^3.2.5",
|
|
156
|
+
"puppeteer": "^22.0.0",
|
|
157
157
|
"raw-loader": "^4.0.2",
|
|
158
158
|
"react": "^18.2.0",
|
|
159
159
|
"react-dom": "^18.2.0",
|
|
160
160
|
"react-test-renderer": "^18.2.0",
|
|
161
|
-
"regenerator-runtime": "^0.14.
|
|
161
|
+
"regenerator-runtime": "^0.14.1",
|
|
162
162
|
"rimraf": "^5.0.5",
|
|
163
|
-
"rollup": "^
|
|
163
|
+
"rollup": "^4.11.0",
|
|
164
164
|
"rollup-plugin-clear": "^2.0.7",
|
|
165
165
|
"rollup-plugin-styles": "^4.0.0",
|
|
166
166
|
"sinon": "^17.0.1",
|
|
167
167
|
"sinon-chai": "^3.7.0",
|
|
168
168
|
"storage-mock": "^2.1.0",
|
|
169
|
-
"storybook": "
|
|
169
|
+
"storybook": "7.6.15",
|
|
170
170
|
"storybook-addon-themes": "^6.1.0",
|
|
171
|
-
"stylelint": "^
|
|
171
|
+
"stylelint": "^16.2.1",
|
|
172
172
|
"svg-inline-loader": "^0.8.2",
|
|
173
173
|
"teamcity-service-messages": "^0.1.14",
|
|
174
|
-
"terser-webpack-plugin": "^5.3.
|
|
175
|
-
"typescript": "~5.3.
|
|
174
|
+
"terser-webpack-plugin": "^5.3.10",
|
|
175
|
+
"typescript": "~5.3.3",
|
|
176
176
|
"wallaby-webpack": "^3.9.16",
|
|
177
|
-
"webpack": "^5.
|
|
177
|
+
"webpack": "^5.90.1",
|
|
178
178
|
"webpack-cli": "^5.1.4",
|
|
179
179
|
"xmlappend": "^1.0.4"
|
|
180
180
|
},
|
|
@@ -198,28 +198,28 @@
|
|
|
198
198
|
}
|
|
199
199
|
},
|
|
200
200
|
"dependencies": {
|
|
201
|
-
"@babel/core": "^7.23.
|
|
201
|
+
"@babel/core": "^7.23.9",
|
|
202
202
|
"@babel/preset-typescript": "^7.23.3",
|
|
203
203
|
"@jetbrains/babel-preset-jetbrains": "^2.3.2",
|
|
204
|
-
"@jetbrains/icons": "^3.
|
|
205
|
-
"@jetbrains/logos": "^2.2.
|
|
204
|
+
"@jetbrains/icons": "^3.24.0",
|
|
205
|
+
"@jetbrains/logos": "^2.2.25",
|
|
206
206
|
"@jetbrains/postcss-require-hover": "^0.1.2",
|
|
207
207
|
"@types/combokeys": "^2.4.9",
|
|
208
208
|
"@types/deep-equal": "^1.0.4",
|
|
209
209
|
"@types/element-resize-detector": "^1.1.6",
|
|
210
210
|
"@types/prop-types": "^15.7.11",
|
|
211
|
-
"@types/react-virtualized": "9.21.
|
|
211
|
+
"@types/react-virtualized": "9.21.29",
|
|
212
212
|
"@types/util-deprecate": "^1.0.3",
|
|
213
213
|
"@ungap/url-search-params": "^0.2.2",
|
|
214
214
|
"babel-loader": "9.1.3",
|
|
215
215
|
"babel-plugin-transform-define": "^2.1.4",
|
|
216
|
-
"browserslist": "^4.
|
|
216
|
+
"browserslist": "^4.23.0",
|
|
217
217
|
"change-case": "^4.1.1",
|
|
218
|
-
"classnames": "^2.
|
|
218
|
+
"classnames": "^2.5.1",
|
|
219
219
|
"combokeys": "^3.0.1",
|
|
220
|
-
"css-loader": "^6.
|
|
221
|
-
"csstype": "^3.1.
|
|
222
|
-
"date-fns": "^
|
|
220
|
+
"css-loader": "^6.10.0",
|
|
221
|
+
"csstype": "^3.1.3",
|
|
222
|
+
"date-fns": "^3.3.1",
|
|
223
223
|
"deep-equal": "^2.2.3",
|
|
224
224
|
"element-resize-detector": "^1.2.4",
|
|
225
225
|
"es6-error": "^4.1.1",
|
|
@@ -230,11 +230,11 @@
|
|
|
230
230
|
"highlight.js": "^10.7.2",
|
|
231
231
|
"just-debounce-it": "^3.2.0",
|
|
232
232
|
"memoize-one": "^6.0.0",
|
|
233
|
-
"postcss": "^8.4.
|
|
233
|
+
"postcss": "^8.4.35",
|
|
234
234
|
"postcss-calc": "^9.0.1",
|
|
235
235
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
236
236
|
"postcss-font-family-system-ui": "^5.0.0",
|
|
237
|
-
"postcss-loader": "^
|
|
237
|
+
"postcss-loader": "^8.1.0",
|
|
238
238
|
"postcss-modules-values-replace": "^4.1.0",
|
|
239
239
|
"postcss-preset-env": "^9.3.0",
|
|
240
240
|
"prop-types": "^15.8.1",
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
"simply-uuid": "^1.0.1",
|
|
246
246
|
"sniffr": "^1.3.1",
|
|
247
247
|
"style-inject": "^0.3.0",
|
|
248
|
-
"style-loader": "~3.3.
|
|
248
|
+
"style-loader": "~3.3.4",
|
|
249
249
|
"url-loader": "^4.1.1",
|
|
250
250
|
"util-deprecate": "^1.0.2"
|
|
251
251
|
},
|