@jetbrains/ring-ui 4.1.0-beta.9 → 4.1.1
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/CHANGELOG.md +13 -0
- package/README.md +17 -15
- package/babel.config.js +3 -2
- package/components/alert/alert.js +9 -3
- package/components/alert/container.css +1 -1
- package/components/alert-service/alert-service.examples.css +18 -0
- package/components/alert-service/alert-service.examples.js +21 -0
- package/components/alert-service/alert-service.js +10 -3
- package/components/analytics/analytics__fus-plugin.js +1 -1
- package/components/auth/auth.test.js +14 -7
- package/components/auth/auth__core.js +64 -33
- package/components/auth-dialog/auth-dialog.js +1 -0
- package/components/avatar/avatar.css +4 -1
- package/components/avatar/avatar.examples.js +3 -2
- package/components/avatar/avatar.js +31 -6
- package/components/avatar/fallback-avatar.js +136 -0
- package/components/avatar-editor-ng/avatar-editor-ng.css +2 -2
- package/components/avatar-editor-ng/avatar-editor-ng.js +2 -1
- package/components/avatar-editor-ng/{avatar-editor-ng.html → avatar-editor-ng__template.js} +2 -2
- package/components/button/button.css +2 -2
- package/components/button/button.js +4 -1
- package/components/button-group/button-group.js +1 -1
- package/components/button-group/caption.js +1 -1
- package/components/button-ng/button-ng.js +1 -1
- package/components/button-set-ng/button-set-ng.js +3 -1
- package/components/checkbox/checkbox.css +1 -1
- package/components/code/code.js +1 -1
- package/components/confirm/confirm.js +1 -0
- package/components/confirm-service/confirm-service.js +5 -5
- package/components/content-layout/content-layout.css +1 -1
- package/components/data-list/data-list.css +1 -1
- package/components/date-picker/date-input.js +5 -4
- package/components/date-picker/date-picker.css +34 -22
- package/components/date-picker/date-picker.js +16 -14
- package/components/date-picker/date-popup.js +22 -7
- package/components/date-picker/month-names.js +8 -5
- package/components/date-picker/month.js +6 -2
- package/components/date-picker/weekdays.js +10 -2
- package/components/dialog/dialog.examples.js +3 -1
- package/components/dialog/dialog.js +5 -2
- package/components/dialog/dialog.test.js +1 -1
- package/components/dialog/dialog__body-scroll-preventer.js +2 -2
- package/components/dialog-ng/dialog-ng.js +7 -8
- package/components/dialog-ng/{dialog-ng.html → dialog-ng__template.js} +2 -2
- package/components/dropdown/dropdown.examples.js +36 -1
- package/components/dropdown-menu/dropdown-menu.examples.js +47 -0
- package/components/dropdown-menu/dropdown-menu.js +117 -0
- package/components/dropdown-menu/dropdown-menu.test.js +76 -0
- package/components/error-bubble/error-bubble-legacy.css +1 -1
- package/components/error-bubble/error-bubble.css +1 -1
- package/components/error-bubble/error-bubble.examples.js +1 -1
- package/components/error-page/error-page.css +2 -2
- package/components/footer-ng/footer-ng.js +13 -3
- package/components/form/form.css +2 -2
- package/components/form-ng/form-ng.js +3 -1
- package/components/global/global.css +1 -1
- package/components/global/theme.js +1 -1
- package/components/global/variables.css +8 -1
- package/components/grid/grid.css +10 -9
- package/components/header/header.css +1 -1
- package/components/header/header.examples.js +7 -8
- package/components/header/profile.js +10 -11
- package/components/http/http.js +1 -1
- package/components/icon/icon.css +5 -4
- package/components/island/island.css +4 -3
- package/components/island-legacy/island-legacy.css +3 -1
- package/components/list/list.js +6 -1
- package/components/list/list__custom.js +9 -3
- package/components/list/list__item.js +8 -2
- package/components/list/list__link.js +2 -1
- package/components/loader-inline/loader-inline.css +1 -1
- package/components/loader-screen/loader-screen.css +1 -1
- package/components/message/message.css +1 -1
- package/components/message/message.examples.js +8 -5
- package/components/pager/pager.js +5 -3
- package/components/permissions/permissions.js +1 -1
- package/components/progress-bar/progress-bar.css +1 -1
- package/components/progress-bar/progress-bar.examples.js +3 -3
- package/components/progress-bar/progress-bar.js +5 -2
- package/components/progress-bar/progress-bar.test.js +12 -13
- package/components/progress-bar-ng/progress-bar-ng.examples.js +3 -3
- package/components/query-assist/query-assist.css +13 -3
- package/components/query-assist/query-assist.examples.js +3 -1
- package/components/query-assist/query-assist.js +56 -12
- package/components/query-assist/query-assist.test.js +37 -5
- package/components/save-field-ng/save-field-ng.css +0 -3
- package/components/save-field-ng/save-field-ng.js +3 -1
- package/components/save-field-ng/{save-field-ng.html → save-field-ng__template.js} +2 -2
- package/components/select/select.css +12 -7
- package/components/select/select.examples.js +13 -0
- package/components/select/select.js +30 -43
- package/components/select/select.test.js +4 -5
- package/components/shortcuts-hint-ng/shortcuts-hint-ng.css +1 -1
- package/components/shortcuts-hint-ng/shortcuts-hint-ng.js +1 -1
- package/components/shortcuts-hint-ng/{shortcuts-hint-ng.html → shortcuts-hint-ng__template.js} +2 -2
- package/components/sidebar/sidebar.css +1 -0
- package/components/sidebar-ng/sidebar-ng.js +6 -2
- package/components/sidebar-ng/{sidebar-ng__button.html → sidebar-ng__button-template.js} +2 -2
- package/components/sidebar-ng/{sidebar-ng.html → sidebar-ng__template.js} +2 -2
- package/components/table/row.js +2 -1
- package/components/table/table.css +2 -1
- package/components/table-legacy/table-legacy.css +2 -2
- package/components/table-legacy/table-legacy__toolbar.css +2 -2
- package/components/table-legacy-ng/table-legacy-ng.js +38 -5
- package/components/table-legacy-ng/table-legacy-ng__pager.js +7 -1
- package/components/tabs/collapsible-tab.js +2 -2
- package/components/tabs/collapsible-tabs.js +4 -8
- package/components/tabs/tab-link.js +4 -2
- package/components/tabs/tabs.css +27 -0
- package/components/tabs-ng/tabs-ng.js +4 -2
- package/components/tabs-ng/{tabs-ng.html → tabs-ng__template.js} +6 -2
- package/components/tag/tag.css +5 -2
- package/components/tag/tag.examples.js +3 -0
- package/components/tag/tag.js +19 -16
- package/components/tags-input/tag-input.examples.js +1 -1
- package/components/tags-input/tags-input.js +5 -2
- package/components/template-ng/template-ng.js +1 -1
- package/components/tooltip/tooltip.js +7 -2
- package/components/user-agreement/user-agreement.css +1 -1
- package/components/user-agreement/user-agreement.examples.js +7 -4
- package/components/user-agreement/user-agreement.js +1 -0
- package/package.json +75 -78
- package/webpack.config.js +14 -10
- package/components/button-set-ng/button-set-ng.html +0 -1
- package/components/footer-ng/footer-ng.html +0 -13
- package/components/form-ng/form-ng__error-bubble.html +0 -3
- package/components/table-legacy-ng/table-legacy-ng.html +0 -4
- package/components/table-legacy-ng/table-legacy-ng__column.html +0 -12
- package/components/table-legacy-ng/table-legacy-ng__header.html +0 -4
- package/components/table-legacy-ng/table-legacy-ng__pager.html +0 -7
- package/components/table-legacy-ng/table-legacy-ng__row.html +0 -12
- package/components/table-legacy-ng/table-legacy-ng__title.html +0 -9
- package/dist/_helpers/_rollupPluginBabelHelpers.js +0 -127
- package/dist/_helpers/anchor.js +0 -33
- package/dist/_helpers/badge.js +0 -3
- package/dist/_helpers/button__classes.js +0 -39
- package/dist/_helpers/caption.js +0 -25
- package/dist/_helpers/card.js +0 -77
- package/dist/_helpers/date-picker.js +0 -3
- package/dist/_helpers/dialog__body-scroll-preventer.js +0 -56
- package/dist/_helpers/grid.js +0 -3
- package/dist/_helpers/header.js +0 -3
- package/dist/_helpers/icon__svg.js +0 -83
- package/dist/_helpers/inject-styles.js +0 -22
- package/dist/_helpers/island.js +0 -3
- package/dist/_helpers/list.js +0 -3
- package/dist/_helpers/query-assist__suggestions.js +0 -95
- package/dist/_helpers/select__filter.js +0 -78
- package/dist/_helpers/services-link.js +0 -42
- package/dist/_helpers/sidebar.js +0 -127
- package/dist/_helpers/table.js +0 -3
- package/dist/_helpers/tabs.js +0 -3
- package/dist/_helpers/title.js +0 -99
- package/dist/alert/alert.js +0 -254
- package/dist/alert/container.js +0 -50
- package/dist/alert-service/alert-service.js +0 -159
- package/dist/analytics/analytics.js +0 -116
- package/dist/analytics/analytics__custom-plugin.js +0 -127
- package/dist/analytics/analytics__fus-plugin.js +0 -101
- package/dist/analytics/analytics__ga-plugin.js +0 -66
- package/dist/analytics/analytics__plugin-utils.js +0 -79
- package/dist/auth/auth.js +0 -90
- package/dist/auth/auth__core.js +0 -987
- package/dist/auth/background-flow.js +0 -123
- package/dist/auth/down-notification.js +0 -111
- package/dist/auth/iframe-flow.js +0 -147
- package/dist/auth/landing-entry.js +0 -5
- package/dist/auth/landing.js +0 -84
- package/dist/auth/request-builder.js +0 -75
- package/dist/auth/response-parser.js +0 -117
- package/dist/auth/storage.js +0 -279
- package/dist/auth/token-validator.js +0 -176
- package/dist/auth/window-flow.js +0 -133
- package/dist/auth-dialog/auth-dialog.js +0 -132
- package/dist/auth-dialog-service/auth-dialog-service.js +0 -67
- package/dist/avatar/avatar-example-datauri.js +0 -26
- package/dist/avatar/avatar.js +0 -155
- package/dist/badge/badge.js +0 -52
- package/dist/button/button.js +0 -117
- package/dist/button/button__classes.js +0 -5
- package/dist/button-group/button-group.js +0 -30
- package/dist/button-group/caption.js +0 -5
- package/dist/button-set/button-set.js +0 -27
- package/dist/button-toolbar/button-toolbar.js +0 -30
- package/dist/caret/caret.js +0 -264
- package/dist/checkbox/checkbox.js +0 -110
- package/dist/confirm/confirm.js +0 -122
- package/dist/confirm-service/confirm-service.js +0 -112
- package/dist/content-layout/content-layout.js +0 -67
- package/dist/content-layout/sidebar.js +0 -6
- package/dist/contenteditable/contenteditable.js +0 -81
- package/dist/data-list/data-list.js +0 -203
- package/dist/data-list/data-list.mock.js +0 -190
- package/dist/data-list/item.js +0 -225
- package/dist/data-list/selection.js +0 -101
- package/dist/data-list/title.js +0 -16
- package/dist/date-picker/consts.js +0 -70
- package/dist/date-picker/date-input.js +0 -169
- package/dist/date-picker/date-picker.js +0 -356
- package/dist/date-picker/date-popup.js +0 -459
- package/dist/date-picker/day.js +0 -119
- package/dist/date-picker/formats.js +0 -3
- package/dist/date-picker/month-names.js +0 -92
- package/dist/date-picker/month-slider.js +0 -83
- package/dist/date-picker/month.js +0 -48
- package/dist/date-picker/months.js +0 -121
- package/dist/date-picker/weekdays.js +0 -24
- package/dist/date-picker/years.js +0 -109
- package/dist/dialog/dialog.js +0 -197
- package/dist/dialog/dialog__body-scroll-preventer.js +0 -2
- package/dist/dropdown/anchor.js +0 -16
- package/dist/dropdown/dropdown.js +0 -236
- package/dist/error-bubble/error-bubble.js +0 -59
- package/dist/error-message/error-message.js +0 -55
- package/dist/footer/footer.js +0 -127
- package/dist/global/angular-component-factory.js +0 -83
- package/dist/global/compose.js +0 -9
- package/dist/global/composeRefs.js +0 -15
- package/dist/global/conic-gradient.js +0 -37
- package/dist/global/create-stateful-context.js +0 -54
- package/dist/global/data-tests.js +0 -22
- package/dist/global/dom.js +0 -124
- package/dist/global/focus-sensor-hoc.js +0 -147
- package/dist/global/fuzzy-highlight.js +0 -67
- package/dist/global/get-event-key.js +0 -111
- package/dist/global/get-uid.js +0 -15
- package/dist/global/inject-styles.js +0 -17
- package/dist/global/linear-function.js +0 -18
- package/dist/global/listeners.js +0 -42
- package/dist/global/memoize.js +0 -18
- package/dist/global/normalize-indent.js +0 -28
- package/dist/global/promise-with-timeout.js +0 -13
- package/dist/global/radial-gradient-mask.js +0 -49
- package/dist/global/react-dom-renderer.js +0 -45
- package/dist/global/rerender-hoc.js +0 -53
- package/dist/global/ring-angular-component.js +0 -24
- package/dist/global/schedule-raf.js +0 -31
- package/dist/global/sniffer.js +0 -6
- package/dist/global/supports-css.js +0 -20
- package/dist/global/theme.js +0 -56
- package/dist/global/trivial-template-tag.js +0 -15
- package/dist/global/url.js +0 -163
- package/dist/global/variables_dark.js +0 -57
- package/dist/grid/col.js +0 -62
- package/dist/grid/grid.js +0 -35
- package/dist/grid/row.js +0 -66
- package/dist/group/group.js +0 -34
- package/dist/header/header.js +0 -144
- package/dist/header/logo.js +0 -39
- package/dist/header/profile.js +0 -212
- package/dist/header/services-link.js +0 -10
- package/dist/header/services.js +0 -135
- package/dist/header/smart-profile.js +0 -227
- package/dist/header/smart-services.js +0 -159
- package/dist/header/tray-icon.js +0 -45
- package/dist/header/tray.js +0 -33
- package/dist/heading/heading.js +0 -76
- package/dist/http/http.js +0 -216
- package/dist/http/http.mock.js +0 -65
- package/dist/hub-source/hub-source.js +0 -130
- package/dist/hub-source/hub-source__user.js +0 -28
- package/dist/hub-source/hub-source__users-groups.js +0 -62
- package/dist/icon/icon.js +0 -105
- package/dist/icon/icon__constants.js +0 -33
- package/dist/icon/icon__svg.js +0 -6
- package/dist/icon/index.js +0 -9
- package/dist/input/input.js +0 -231
- package/dist/island/adaptive-island-hoc.js +0 -48
- package/dist/island/content.js +0 -158
- package/dist/island/header.js +0 -85
- package/dist/island/island.js +0 -53
- package/dist/island-legacy/content-legacy.js +0 -28
- package/dist/island-legacy/header-legacy.js +0 -30
- package/dist/island-legacy/island-legacy.js +0 -30
- package/dist/link/clickableLink.js +0 -65
- package/dist/link/link.js +0 -118
- package/dist/list/consts.js +0 -26
- package/dist/list/list.js +0 -800
- package/dist/list/list__custom.js +0 -82
- package/dist/list/list__hint.js +0 -26
- package/dist/list/list__item.js +0 -197
- package/dist/list/list__link.js +0 -65
- package/dist/list/list__separator.js +0 -30
- package/dist/list/list__title.js +0 -39
- package/dist/list/list__users-groups-source.js +0 -124
- package/dist/loader/loader.js +0 -72
- package/dist/loader/loader__core.js +0 -272
- package/dist/loader-inline/inject-styles.js +0 -11
- package/dist/loader-inline/loader-inline.js +0 -58
- package/dist/loader-screen/loader-screen.js +0 -46
- package/dist/login-dialog/login-dialog.js +0 -184
- package/dist/login-dialog/service.js +0 -67
- package/dist/message/message.js +0 -232
- package/dist/old-browsers-message/old-browsers-message.js +0 -101
- package/dist/old-browsers-message/old-browsers-message__stop.js +0 -5
- package/dist/old-browsers-message/white-list.js +0 -34
- package/dist/pager/pager.js +0 -352
- package/dist/panel/panel.js +0 -34
- package/dist/permissions/permissions.js +0 -200
- package/dist/permissions/permissions__cache.js +0 -272
- package/dist/popup/popup.consts.js +0 -41
- package/dist/popup/popup.js +0 -389
- package/dist/popup/popup.target.js +0 -27
- package/dist/popup/position.js +0 -280
- package/dist/popup-menu/popup-menu.js +0 -108
- package/dist/progress-bar/progress-bar.js +0 -111
- package/dist/proxy-attrs/proxy-attrs.js +0 -19
- package/dist/query-assist/query-assist.js +0 -1023
- package/dist/query-assist/query-assist__suggestions.js +0 -43
- package/dist/radio/radio.js +0 -39
- package/dist/radio/radio__item.js +0 -82
- package/dist/select/select.js +0 -1335
- package/dist/select/select__filter.js +0 -49
- package/dist/select/select__popup.js +0 -541
- package/dist/shortcuts/core.js +0 -245
- package/dist/shortcuts/shortcut-title.js +0 -51
- package/dist/shortcuts/shortcuts-hoc.js +0 -43
- package/dist/shortcuts/shortcuts.js +0 -72
- package/dist/storage/storage.js +0 -55
- package/dist/storage/storage__fallback.js +0 -214
- package/dist/storage/storage__local.js +0 -150
- package/dist/style.css +0 -1
- package/dist/tab-trap/tab-trap.js +0 -178
- package/dist/table/cell.js +0 -25
- package/dist/table/disable-hover-hoc.js +0 -53
- package/dist/table/header-cell.js +0 -91
- package/dist/table/header.js +0 -189
- package/dist/table/multitable.js +0 -140
- package/dist/table/row-with-focus-sensor.js +0 -79
- package/dist/table/row.js +0 -270
- package/dist/table/selection-adapter.js +0 -14
- package/dist/table/selection-shortcuts-hoc.js +0 -212
- package/dist/table/selection.js +0 -221
- package/dist/table/smart-table.js +0 -113
- package/dist/table/table.js +0 -405
- package/dist/tabs/collapsible-more.js +0 -193
- package/dist/tabs/collapsible-tab.js +0 -90
- package/dist/tabs/collapsible-tabs.js +0 -361
- package/dist/tabs/custom-item.js +0 -13
- package/dist/tabs/dumb-tabs.js +0 -159
- package/dist/tabs/smart-tabs.js +0 -102
- package/dist/tabs/tab-link.js +0 -35
- package/dist/tabs/tab.js +0 -32
- package/dist/tabs/tabs.js +0 -65
- package/dist/tag/tag.js +0 -190
- package/dist/tags-input/tags-input.js +0 -474
- package/dist/tags-list/tags-list.js +0 -94
- package/dist/text/text.js +0 -38
- package/dist/toggle/toggle.js +0 -80
- package/dist/tooltip/tooltip.js +0 -205
- package/dist/user-card/card.js +0 -14
- package/dist/user-card/smart-user-card-tooltip.js +0 -112
- package/dist/user-card/tooltip.js +0 -91
- package/dist/user-card/user-card.js +0 -46
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty, a as _objectWithoutProperties, b as _extends } from './_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React, { Component } from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import classNames from 'classnames';
|
|
5
|
-
import Input from '../input/input.js';
|
|
6
|
-
import sniffr from '../global/sniffer.js';
|
|
7
|
-
import { ActiveItemContext } from '../list/list.js';
|
|
8
|
-
|
|
9
|
-
var modules_b607bec2 = {"unit":"8px","filterWithTags":"selectPopup_filterWithTags__7e997a1d","filterWrapper":"selectPopup_filterWrapper__7e997a1d","filterWithTagsFocused":"selectPopup_filterWithTagsFocused__7e997a1d","filter":"selectPopup_filter__7e997a1d","filterIcon":"selectPopup_filterIcon__7e997a1d","bottomLine":"selectPopup_bottomLine__7e997a1d","message":"selectPopup_message__7e997a1d","selectAll":"selectPopup_selectAll__7e997a1d"};
|
|
10
|
-
|
|
11
|
-
function noop() {}
|
|
12
|
-
|
|
13
|
-
class SelectFilter extends Component {
|
|
14
|
-
constructor() {
|
|
15
|
-
super(...arguments);
|
|
16
|
-
|
|
17
|
-
_defineProperty(this, "inputRef", el => {
|
|
18
|
-
this.input = el;
|
|
19
|
-
this.props.inputRef(el);
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
componentWillUnmount() {
|
|
24
|
-
this.blur();
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
focus() {
|
|
28
|
-
const {
|
|
29
|
-
input
|
|
30
|
-
} = this;
|
|
31
|
-
|
|
32
|
-
if (input && input !== document.activeElement) {
|
|
33
|
-
sniffr.browser.name === 'firefox' ? input.select() : input.focus();
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
blur() {
|
|
38
|
-
if (this.input && this.input === document.activeElement) {
|
|
39
|
-
this.input.blur();
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
render() {
|
|
44
|
-
const _this$props = this.props,
|
|
45
|
-
{
|
|
46
|
-
className,
|
|
47
|
-
listId
|
|
48
|
-
} = _this$props,
|
|
49
|
-
restProps = _objectWithoutProperties(_this$props, ["className", "listId"]);
|
|
50
|
-
|
|
51
|
-
const classes = classNames(modules_b607bec2.filter, className);
|
|
52
|
-
return /*#__PURE__*/React.createElement(ActiveItemContext.ValueContext.Consumer, null, activeItemId => /*#__PURE__*/React.createElement(Input, _extends({}, restProps, {
|
|
53
|
-
"aria-owns": listId,
|
|
54
|
-
"aria-activedescendant": activeItemId,
|
|
55
|
-
autoComplete: "off",
|
|
56
|
-
autoFocus: true,
|
|
57
|
-
borderless: true,
|
|
58
|
-
inputRef: this.inputRef,
|
|
59
|
-
className: classes
|
|
60
|
-
})));
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
_defineProperty(SelectFilter, "propTypes", {
|
|
66
|
-
placeholder: PropTypes.string,
|
|
67
|
-
className: PropTypes.string,
|
|
68
|
-
inputRef: PropTypes.func,
|
|
69
|
-
listId: PropTypes.string,
|
|
70
|
-
activeItemId: PropTypes.string
|
|
71
|
-
});
|
|
72
|
-
|
|
73
|
-
_defineProperty(SelectFilter, "defaultProps", {
|
|
74
|
-
placeholder: 'Filter items',
|
|
75
|
-
inputRef: noop
|
|
76
|
-
});
|
|
77
|
-
|
|
78
|
-
export { SelectFilter as S, modules_b607bec2 as m };
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { a as _objectWithoutProperties, b as _extends, _ as _defineProperty } from './_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React, { PureComponent } from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import Link from '../link/link.js';
|
|
5
|
-
|
|
6
|
-
var modules_74a7bf8b = {"unit":"8px","services":"services_services__58797e59","active":"services_active__58797e59","item":"services_item__58797e59","itemLogo":"services_itemLogo__58797e59","activeItem":"services_activeItem__58797e59 services_item__58797e59 services_active__58797e59","line":"services_line__58797e59","itemStacked":"services_itemStacked__58797e59","activeItemStacked":"services_activeItemStacked__58797e59 services_itemStacked__58797e59 services_active__58797e59"};
|
|
7
|
-
|
|
8
|
-
class ServicesLink extends PureComponent {
|
|
9
|
-
render() {
|
|
10
|
-
const _this$props = this.props,
|
|
11
|
-
{
|
|
12
|
-
service
|
|
13
|
-
} = _this$props,
|
|
14
|
-
props = _objectWithoutProperties(_this$props, ["service"]);
|
|
15
|
-
|
|
16
|
-
return /*#__PURE__*/React.createElement(Link, _extends({
|
|
17
|
-
target: "_self",
|
|
18
|
-
href: service.homeUrl
|
|
19
|
-
}, props), WrapText => service.iconUrl ? [/*#__PURE__*/React.createElement("span", {
|
|
20
|
-
key: "icon",
|
|
21
|
-
className: modules_74a7bf8b.itemLogo,
|
|
22
|
-
style: {
|
|
23
|
-
backgroundImage: `url(${service.iconUrl})`
|
|
24
|
-
}
|
|
25
|
-
}), /*#__PURE__*/React.createElement("div", {
|
|
26
|
-
key: "text"
|
|
27
|
-
}, /*#__PURE__*/React.createElement(WrapText, null, service.name))] : /*#__PURE__*/React.createElement(WrapText, null, service.name));
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
_defineProperty(ServicesLink, "propTypes", {
|
|
33
|
-
isActive: PropTypes.bool,
|
|
34
|
-
service: PropTypes.shape({
|
|
35
|
-
applicationName: PropTypes.string,
|
|
36
|
-
iconUrl: PropTypes.string,
|
|
37
|
-
homeUrl: PropTypes.string,
|
|
38
|
-
name: PropTypes.string
|
|
39
|
-
})
|
|
40
|
-
});
|
|
41
|
-
|
|
42
|
-
export { ServicesLink as S, modules_74a7bf8b as m };
|
package/dist/_helpers/sidebar.js
DELETED
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty, a as _objectWithoutProperties, b as _extends } from './_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React, { Component } from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import classNames from 'classnames';
|
|
5
|
-
import { Waypoint } from 'react-waypoint';
|
|
6
|
-
|
|
7
|
-
var modules_b8a9dd4f = {"unit":"8px","extra-small-screen-media":"(max-width:639px)","small-screen-media":"(min-width:640px) and (max-width:959px)","sidebarWidth":"240px","contentLayout":"contentLayout_contentLayout__0703f946","contentLayoutContent":"contentLayout_contentLayoutContent__0703f946","sidebarContainer":"contentLayout_sidebarContainer__0703f946","sidebarContainerRight":"contentLayout_sidebarContainerRight__0703f946","sidebar":"contentLayout_sidebar__0703f946","sidebarRight":"contentLayout_sidebarRight__0703f946","sidebarFixedTop":"contentLayout_sidebarFixedTop__0703f946","sidebarFixedBottom":"contentLayout_sidebarFixedBottom__0703f946","bottomMarker":"contentLayout_bottomMarker__0703f946","contentLayoutResponsive":"contentLayout_contentLayoutResponsive__0703f946"};
|
|
8
|
-
|
|
9
|
-
const ABOVE = 'above';
|
|
10
|
-
const INSIDE = 'inside';
|
|
11
|
-
class Sidebar extends Component {
|
|
12
|
-
constructor() {
|
|
13
|
-
super(...arguments);
|
|
14
|
-
|
|
15
|
-
_defineProperty(this, "state", {
|
|
16
|
-
topIsOutside: true,
|
|
17
|
-
bottomIsOutside: true
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
_defineProperty(this, "handleTopWaypoint", _ref => {
|
|
21
|
-
let {
|
|
22
|
-
currentPosition
|
|
23
|
-
} = _ref;
|
|
24
|
-
this.setState({
|
|
25
|
-
topIsOutside: currentPosition === ABOVE
|
|
26
|
-
});
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
_defineProperty(this, "handleBottomWaypoint", _ref2 => {
|
|
30
|
-
let {
|
|
31
|
-
currentPosition,
|
|
32
|
-
waypointTop
|
|
33
|
-
} = _ref2;
|
|
34
|
-
this.setState({
|
|
35
|
-
sidebarVisibleHeight: waypointTop,
|
|
36
|
-
bottomIsOutside: currentPosition !== INSIDE
|
|
37
|
-
});
|
|
38
|
-
});
|
|
39
|
-
|
|
40
|
-
_defineProperty(this, "sidebarRef", node => {
|
|
41
|
-
this.sidebarNode = node;
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
shouldUseFixation() {
|
|
46
|
-
const {
|
|
47
|
-
contentNode
|
|
48
|
-
} = this.props;
|
|
49
|
-
const {
|
|
50
|
-
sidebarNode
|
|
51
|
-
} = this;
|
|
52
|
-
|
|
53
|
-
if (!contentNode || !sidebarNode) {
|
|
54
|
-
return false;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
return contentNode.offsetHeight >= sidebarNode.offsetHeight;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
shouldFixateBottom() {
|
|
61
|
-
const {
|
|
62
|
-
topIsOutside,
|
|
63
|
-
bottomIsOutside
|
|
64
|
-
} = this.state;
|
|
65
|
-
return !bottomIsOutside && topIsOutside && this.shouldUseFixation();
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
render() {
|
|
69
|
-
const _this$props = this.props,
|
|
70
|
-
{
|
|
71
|
-
right,
|
|
72
|
-
children,
|
|
73
|
-
className,
|
|
74
|
-
containerClassName,
|
|
75
|
-
fixedClassName,
|
|
76
|
-
contentNode
|
|
77
|
-
} = _this$props,
|
|
78
|
-
restProps = _objectWithoutProperties(_this$props, ["right", "children", "className", "containerClassName", "fixedClassName", "contentNode"]);
|
|
79
|
-
|
|
80
|
-
const {
|
|
81
|
-
topIsOutside,
|
|
82
|
-
bottomIsOutside,
|
|
83
|
-
sidebarVisibleHeight
|
|
84
|
-
} = this.state;
|
|
85
|
-
const shouldFixateTop = bottomIsOutside && topIsOutside && this.shouldUseFixation();
|
|
86
|
-
const shouldFixateBottom = this.shouldFixateBottom();
|
|
87
|
-
const containerClasses = classNames(modules_b8a9dd4f.sidebarContainer, containerClassName, {
|
|
88
|
-
[modules_b8a9dd4f.sidebarContainerRight]: right
|
|
89
|
-
});
|
|
90
|
-
const classes = classNames(modules_b8a9dd4f.sidebar, className, {
|
|
91
|
-
[modules_b8a9dd4f.sidebarRight]: right,
|
|
92
|
-
[modules_b8a9dd4f.sidebarFixedTop]: shouldFixateTop,
|
|
93
|
-
[modules_b8a9dd4f.sidebarFixedBottom]: shouldFixateBottom,
|
|
94
|
-
[fixedClassName]: shouldFixateTop || shouldFixateBottom
|
|
95
|
-
});
|
|
96
|
-
const style = {
|
|
97
|
-
maxHeight: shouldFixateBottom && sidebarVisibleHeight ? `${sidebarVisibleHeight}px` : null
|
|
98
|
-
};
|
|
99
|
-
return /*#__PURE__*/React.createElement("aside", {
|
|
100
|
-
className: containerClasses,
|
|
101
|
-
ref: this.sidebarRef
|
|
102
|
-
}, /*#__PURE__*/React.createElement(Waypoint, {
|
|
103
|
-
onEnter: this.handleTopWaypoint,
|
|
104
|
-
onLeave: this.handleTopWaypoint
|
|
105
|
-
}), /*#__PURE__*/React.createElement("div", _extends({}, restProps, {
|
|
106
|
-
style: style,
|
|
107
|
-
className: classes
|
|
108
|
-
}), children), /*#__PURE__*/React.createElement("div", {
|
|
109
|
-
className: modules_b8a9dd4f.bottomMarker
|
|
110
|
-
}, /*#__PURE__*/React.createElement(Waypoint, {
|
|
111
|
-
onEnter: this.handleBottomWaypoint,
|
|
112
|
-
onLeave: this.handleBottomWaypoint
|
|
113
|
-
})));
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
_defineProperty(Sidebar, "propTypes", {
|
|
119
|
-
right: PropTypes.bool,
|
|
120
|
-
children: PropTypes.node,
|
|
121
|
-
className: PropTypes.string,
|
|
122
|
-
containerClassName: PropTypes.string,
|
|
123
|
-
fixedClassName: PropTypes.string,
|
|
124
|
-
contentNode: PropTypes.object
|
|
125
|
-
});
|
|
126
|
-
|
|
127
|
-
export { Sidebar as S, modules_b8a9dd4f as m };
|
package/dist/_helpers/table.js
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
var modules_1db4bbca = {"unit":"8px","height":"32px","compensate":"2px","compensated":"30px","top":"-3px","row":"table_row__5765cfc6","dragHandle":"table_dragHandle__5765cfc6","tableWrapper":"table_tableWrapper__5765cfc6","table":"table_table__5765cfc6","userSelectNone":"table_userSelectNone__5765cfc6","headerCell":"table_headerCell__5765cfc6 global_fontSmallerLower__0f8f4370 global_fontSmaller__0f8f4370 global_fontLower__0f8f4370 global_font__0f8f4370","headerCellSorted":"table_headerCellSorted__5765cfc6","headerCellSortable":"table_headerCellSortable__5765cfc6","sorter":"table_sorter__5765cfc6","sortedUp":"table_sortedUp__5765cfc6","icon":"table_icon__5765cfc6","caption":"table_caption__5765cfc6","tableHead":"table_tableHead__5765cfc6","subHeaderFixed":"table_subHeaderFixed__5765cfc6","subHeader":"table_subHeader__5765cfc6","rowSelected":"table_rowSelected__5765cfc6","rowFocused":"table_rowFocused__5765cfc6","cell":"table_cell__5765cfc6 global_ellipsis__0f8f4370","loadingOverlay":"table_loadingOverlay__5765cfc6","cellUnlimited":"table_cellUnlimited__5765cfc6","cellRight":"table_cellRight__5765cfc6","metaColumn":"table_metaColumn__5765cfc6","headerMetaColumn":"table_headerMetaColumn__5765cfc6","visibleDragHandle":"table_visibleDragHandle__5765cfc6","rowCollapseExpandButton":"table_rowCollapseExpandButton__5765cfc6","draggingRow":"table_draggingRow__5765cfc6","tableMessage":"table_tableMessage__5765cfc6"};
|
|
2
|
-
|
|
3
|
-
export { modules_1db4bbca as m };
|
package/dist/_helpers/tabs.js
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
var modules_02138f4a = {"unit":"8px","line-shadow":"inset 0 -1px 0 0","selected-line-shadow":"inset 0 -3px 0 0","title":"tabs_title__f35e0ee6 global_font__0f8f4370","selected":"tabs_selected__f35e0ee6","collapsed":"tabs_collapsed__f35e0ee6","tabs":"tabs_tabs__f35e0ee6 global_font__0f8f4370","titles":"tabs_titles__f35e0ee6","light":"tabs_light__f35e0ee6","dark":"tabs_dark__f35e0ee6","visible":"tabs_visible__f35e0ee6","hidden":"tabs_hidden__f35e0ee6","tabCounter":"tabs_tabCounter__f35e0ee6","autoCollapseContainer":"tabs_autoCollapseContainer__f35e0ee6","autoCollapse":"tabs_autoCollapse__f35e0ee6","rendered":"tabs_rendered__f35e0ee6","adjusted":"tabs_adjusted__f35e0ee6","measure":"tabs_measure__f35e0ee6","morePopup":"tabs_morePopup__f35e0ee6","chevron":"tabs_chevron__f35e0ee6","morePopupBeforeEnd":"tabs_morePopupBeforeEnd__f35e0ee6"};
|
|
2
|
-
|
|
3
|
-
export { modules_02138f4a as m };
|
package/dist/_helpers/title.js
DELETED
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty } from './_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React, { PureComponent } from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import classNames from 'classnames';
|
|
5
|
-
import focusSensorHOC from '../global/focus-sensor-hoc.js';
|
|
6
|
-
import Checkbox from '../checkbox/checkbox.js';
|
|
7
|
-
import getUID from '../global/get-uid.js';
|
|
8
|
-
|
|
9
|
-
var modules_09d014b4 = {"unit":"8px","height":"32px","compensate":"2px","dataListWrapper":"dataList_dataListWrapper__b7146dba","dataList":"dataList_dataList__b7146dba","itemContent":"dataList_itemContent__b7146dba","title":"dataList_title__b7146dba","disabledHover":"dataList_disabledHover__b7146dba","titleSelected":"dataList_titleSelected__b7146dba","titleFocused":"dataList_titleFocused__b7146dba","showMore":"dataList_showMore__b7146dba","boxes":"dataList_boxes__b7146dba","checkboxBox":"dataList_checkboxBox__b7146dba","collapseButton":"dataList_collapseButton__b7146dba","collapseIcon":"dataList_collapseIcon__b7146dba","loadingOverlay":"dataList_loadingOverlay__b7146dba","showMoreLoader":"dataList_showMoreLoader__b7146dba"};
|
|
10
|
-
|
|
11
|
-
class Title extends PureComponent {
|
|
12
|
-
constructor() {
|
|
13
|
-
super(...arguments);
|
|
14
|
-
|
|
15
|
-
_defineProperty(this, "id", getUID('data-list-title'));
|
|
16
|
-
|
|
17
|
-
_defineProperty(this, "onCheckboxFocus", () => {
|
|
18
|
-
this.props.onFocusRestore();
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
_defineProperty(this, "onCheckboxChange", () => {
|
|
22
|
-
this.toggleSelection();
|
|
23
|
-
});
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
toggleSelection() {
|
|
27
|
-
const {
|
|
28
|
-
selectable,
|
|
29
|
-
selected,
|
|
30
|
-
onSelect
|
|
31
|
-
} = this.props;
|
|
32
|
-
|
|
33
|
-
if (selectable) {
|
|
34
|
-
onSelect(!selected);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
render() {
|
|
39
|
-
const {
|
|
40
|
-
className,
|
|
41
|
-
title,
|
|
42
|
-
offset,
|
|
43
|
-
showFocus,
|
|
44
|
-
innerRef,
|
|
45
|
-
selectable,
|
|
46
|
-
selected,
|
|
47
|
-
collapserExpander
|
|
48
|
-
} = this.props;
|
|
49
|
-
const classes = classNames(className, {
|
|
50
|
-
[modules_09d014b4.title]: true,
|
|
51
|
-
[modules_09d014b4.titleFocused]: showFocus,
|
|
52
|
-
[modules_09d014b4.titleSelected]: selected
|
|
53
|
-
});
|
|
54
|
-
return /*#__PURE__*/React.createElement("div", {
|
|
55
|
-
id: this.id,
|
|
56
|
-
className: classes,
|
|
57
|
-
style: {
|
|
58
|
-
paddingLeft: offset
|
|
59
|
-
},
|
|
60
|
-
ref: innerRef
|
|
61
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
62
|
-
className: modules_09d014b4.boxes
|
|
63
|
-
}, selectable && /*#__PURE__*/React.createElement("div", {
|
|
64
|
-
className: modules_09d014b4.checkboxBox
|
|
65
|
-
}, /*#__PURE__*/React.createElement(Checkbox, {
|
|
66
|
-
"aria-labelledby": this.id,
|
|
67
|
-
className: showFocus ? 'ring-checkbox_focus' : '',
|
|
68
|
-
checked: selected,
|
|
69
|
-
onFocus: this.onCheckboxFocus,
|
|
70
|
-
onChange: this.onCheckboxChange,
|
|
71
|
-
tabIndex: "-1"
|
|
72
|
-
})), collapserExpander), title);
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
_defineProperty(Title, "propTypes", {
|
|
78
|
-
className: PropTypes.string,
|
|
79
|
-
title: PropTypes.node,
|
|
80
|
-
offset: PropTypes.number,
|
|
81
|
-
selectable: PropTypes.bool,
|
|
82
|
-
selected: PropTypes.bool,
|
|
83
|
-
onSelect: PropTypes.func,
|
|
84
|
-
showFocus: PropTypes.bool,
|
|
85
|
-
collapserExpander: PropTypes.node,
|
|
86
|
-
innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.string, PropTypes.func]),
|
|
87
|
-
// focusSensorHOC
|
|
88
|
-
onFocusRestore: PropTypes.func
|
|
89
|
-
});
|
|
90
|
-
|
|
91
|
-
_defineProperty(Title, "defaultProps", {
|
|
92
|
-
selectable: false,
|
|
93
|
-
selected: false,
|
|
94
|
-
showFocus: false
|
|
95
|
-
});
|
|
96
|
-
|
|
97
|
-
var Title$1 = focusSensorHOC(Title);
|
|
98
|
-
|
|
99
|
-
export { Title$1 as T, modules_09d014b4 as m };
|
package/dist/alert/alert.js
DELETED
|
@@ -1,254 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React, { PureComponent } from 'react';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
import PropTypes from 'prop-types';
|
|
5
|
-
import exceptionIcon from '@jetbrains/icons/exception';
|
|
6
|
-
import checkmarkIcon from '@jetbrains/icons/checkmark';
|
|
7
|
-
import warningIcon from '@jetbrains/icons/warning';
|
|
8
|
-
import closeIcon from '@jetbrains/icons/close';
|
|
9
|
-
import Icon from '../icon/icon.js';
|
|
10
|
-
import LoaderInline from '../loader-inline/loader-inline.js';
|
|
11
|
-
import { getRect } from '../global/dom.js';
|
|
12
|
-
import joinDataTestAttributes from '../global/data-tests.js';
|
|
13
|
-
export { default as Container } from './container.js';
|
|
14
|
-
import 'util-deprecate';
|
|
15
|
-
import '../icon/icon__constants.js';
|
|
16
|
-
import '../_helpers/icon__svg.js';
|
|
17
|
-
import '../global/memoize.js';
|
|
18
|
-
import '../global/theme.js';
|
|
19
|
-
import '../_helpers/inject-styles.js';
|
|
20
|
-
import '../global/conic-gradient.js';
|
|
21
|
-
import 'conic-gradient';
|
|
22
|
-
import '../global/supports-css.js';
|
|
23
|
-
import '../global/inject-styles.js';
|
|
24
|
-
import '../global/radial-gradient-mask.js';
|
|
25
|
-
import '../global/get-uid.js';
|
|
26
|
-
import 'react-dom';
|
|
27
|
-
|
|
28
|
-
var modules_e02b3280 = {"unit":"8px","animation-duration":".3s","animation-easing":"ease-out","close":"alert_close__9b217ed4","alert":"alert_alert__9b217ed4","alertInline":"alert_alertInline__9b217ed4","error":"alert_error__9b217ed4","icon":"alert_icon__9b217ed4","caption":"alert_caption__9b217ed4","link":"alert_link__9b217ed4","withCloseButton":"alert_withCloseButton__9b217ed4","badge":"alert_badge__9b217ed4","loader":"alert_loader__9b217ed4","animationOpen":"alert_animationOpen__9b217ed4","show":"alert_show__9b217ed4","animationClosing":"alert_animationClosing__9b217ed4","animationShaking":"alert_animationShaking__9b217ed4","shaking":"alert_shaking__9b217ed4"};
|
|
29
|
-
|
|
30
|
-
const ANIMATION_TIME = 500;
|
|
31
|
-
/**
|
|
32
|
-
* @name Alert
|
|
33
|
-
*/
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* List of available alert types.
|
|
37
|
-
* @enum {string}
|
|
38
|
-
*/
|
|
39
|
-
|
|
40
|
-
const Type = {
|
|
41
|
-
ERROR: 'error',
|
|
42
|
-
MESSAGE: 'message',
|
|
43
|
-
SUCCESS: 'success',
|
|
44
|
-
WARNING: 'warning',
|
|
45
|
-
LOADING: 'loading'
|
|
46
|
-
};
|
|
47
|
-
/**
|
|
48
|
-
* Lookup table of alert type to icon modifier.
|
|
49
|
-
* @type {Object.<Type, string>}
|
|
50
|
-
*/
|
|
51
|
-
|
|
52
|
-
const TypeToIcon = {
|
|
53
|
-
[Type.ERROR]: exceptionIcon,
|
|
54
|
-
[Type.SUCCESS]: checkmarkIcon,
|
|
55
|
-
[Type.WARNING]: warningIcon
|
|
56
|
-
};
|
|
57
|
-
/**
|
|
58
|
-
* Lookup table of alert type to icon color.
|
|
59
|
-
* @type {Object.<Type, Icon.Color>}
|
|
60
|
-
*/
|
|
61
|
-
|
|
62
|
-
const TypeToIconColor = {
|
|
63
|
-
[Type.ERROR]: Icon.Color.RED,
|
|
64
|
-
[Type.SUCCESS]: Icon.Color.GREEN,
|
|
65
|
-
[Type.WARNING]: Icon.Color.WHITE
|
|
66
|
-
};
|
|
67
|
-
/**
|
|
68
|
-
* @constructor
|
|
69
|
-
* @name Alert
|
|
70
|
-
* @extends {ReactComponent}
|
|
71
|
-
*/
|
|
72
|
-
|
|
73
|
-
/**
|
|
74
|
-
* **Alert** is a component for displaying contextual notifications. If you want to display a stack of notifications, use **Alerts** instead.
|
|
75
|
-
*/
|
|
76
|
-
|
|
77
|
-
class Alert extends PureComponent {
|
|
78
|
-
constructor() {
|
|
79
|
-
var _this;
|
|
80
|
-
|
|
81
|
-
super(...arguments);
|
|
82
|
-
_this = this;
|
|
83
|
-
|
|
84
|
-
_defineProperty(this, "state", {
|
|
85
|
-
height: null
|
|
86
|
-
});
|
|
87
|
-
|
|
88
|
-
_defineProperty(this, "closeRequest", function () {
|
|
89
|
-
const height = getRect(_this.node).height;
|
|
90
|
-
|
|
91
|
-
_this.setState({
|
|
92
|
-
height
|
|
93
|
-
});
|
|
94
|
-
|
|
95
|
-
return _this.props.onCloseRequest(...arguments);
|
|
96
|
-
});
|
|
97
|
-
|
|
98
|
-
_defineProperty(this, "_handleCaptionsLinksClick", evt => {
|
|
99
|
-
if (evt.target.matches('a')) {
|
|
100
|
-
this.closeRequest(evt);
|
|
101
|
-
}
|
|
102
|
-
});
|
|
103
|
-
|
|
104
|
-
_defineProperty(this, "storeAlertRef", node => {
|
|
105
|
-
this.node = node;
|
|
106
|
-
});
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
componentDidMount() {
|
|
110
|
-
if (this.props.timeout > 0) {
|
|
111
|
-
this.hideTimeout = setTimeout(this.closeRequest, this.props.timeout);
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
componentDidUpdate() {
|
|
116
|
-
if (this.props.isClosing) {
|
|
117
|
-
this._close();
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
componentWillUnmount() {
|
|
122
|
-
clearTimeout(this.hideTimeout);
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
_close() {
|
|
126
|
-
setTimeout(() => {
|
|
127
|
-
this.props.onClose();
|
|
128
|
-
}, ANIMATION_TIME);
|
|
129
|
-
}
|
|
130
|
-
/**
|
|
131
|
-
* @param {SyntheticEvent} evt
|
|
132
|
-
* @private
|
|
133
|
-
*/
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
/**
|
|
137
|
-
* @private
|
|
138
|
-
*/
|
|
139
|
-
_getCaption() {
|
|
140
|
-
return /*#__PURE__*/React.createElement("span", {
|
|
141
|
-
className: classNames(modules_e02b3280.caption, this.props.captionClassName, {
|
|
142
|
-
[modules_e02b3280.withCloseButton]: this.props.closeable
|
|
143
|
-
}),
|
|
144
|
-
onClick: this._handleCaptionsLinksClick // We only process clicks on `a` elements, see above
|
|
145
|
-
,
|
|
146
|
-
role: "presentation"
|
|
147
|
-
}, this.props.children);
|
|
148
|
-
}
|
|
149
|
-
/**
|
|
150
|
-
* @private
|
|
151
|
-
* @return {XML|string}
|
|
152
|
-
*/
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
_getIcon() {
|
|
156
|
-
const glyph = TypeToIcon[this.props.type];
|
|
157
|
-
|
|
158
|
-
if (glyph) {
|
|
159
|
-
return /*#__PURE__*/React.createElement(Icon, {
|
|
160
|
-
glyph: glyph,
|
|
161
|
-
className: modules_e02b3280.icon,
|
|
162
|
-
color: TypeToIconColor[this.props.type] || Icon.Color.DEFAULT
|
|
163
|
-
});
|
|
164
|
-
} else if (this.props.type === Type.LOADING) {
|
|
165
|
-
return /*#__PURE__*/React.createElement(LoaderInline, {
|
|
166
|
-
className: modules_e02b3280.loader,
|
|
167
|
-
theme: LoaderInline.Theme.DARK
|
|
168
|
-
});
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
return '';
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
render() {
|
|
175
|
-
const {
|
|
176
|
-
type,
|
|
177
|
-
inline,
|
|
178
|
-
isClosing,
|
|
179
|
-
isShaking,
|
|
180
|
-
showWithAnimation,
|
|
181
|
-
className,
|
|
182
|
-
'data-test': dataTest
|
|
183
|
-
} = this.props;
|
|
184
|
-
const classes = classNames(className, {
|
|
185
|
-
[modules_e02b3280.alert]: true,
|
|
186
|
-
[modules_e02b3280.animationOpen]: showWithAnimation,
|
|
187
|
-
[modules_e02b3280.error]: type === 'error',
|
|
188
|
-
[modules_e02b3280.alertInline]: inline,
|
|
189
|
-
[modules_e02b3280.animationClosing]: isClosing,
|
|
190
|
-
[modules_e02b3280.animationShaking]: isShaking
|
|
191
|
-
});
|
|
192
|
-
const style = this.state.height ? {
|
|
193
|
-
marginBottom: -this.state.height
|
|
194
|
-
} : null;
|
|
195
|
-
return /*#__PURE__*/React.createElement("div", {
|
|
196
|
-
className: classes,
|
|
197
|
-
"data-test": joinDataTestAttributes('alert', dataTest),
|
|
198
|
-
"data-test-type": type,
|
|
199
|
-
style: style,
|
|
200
|
-
ref: this.storeAlertRef
|
|
201
|
-
}, this._getIcon(), this._getCaption(), this.props.closeable ? /*#__PURE__*/React.createElement("button", {
|
|
202
|
-
type: "button",
|
|
203
|
-
className: modules_e02b3280.close,
|
|
204
|
-
"data-test": "alert-close",
|
|
205
|
-
"aria-label": "close alert",
|
|
206
|
-
onClick: this.closeRequest
|
|
207
|
-
}, /*#__PURE__*/React.createElement(Icon, {
|
|
208
|
-
glyph: closeIcon
|
|
209
|
-
})) : '');
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
_defineProperty(Alert, "propTypes", {
|
|
215
|
-
timeout: PropTypes.number,
|
|
216
|
-
|
|
217
|
-
/**
|
|
218
|
-
* Fires when alert starts closing if timeout is out or user clicks "Close" button
|
|
219
|
-
*/
|
|
220
|
-
onCloseRequest: PropTypes.func,
|
|
221
|
-
onClose: PropTypes.func,
|
|
222
|
-
isShaking: PropTypes.bool,
|
|
223
|
-
isClosing: PropTypes.bool,
|
|
224
|
-
|
|
225
|
-
/**
|
|
226
|
-
* Whether an alert is rendered inside an **Alerts** container
|
|
227
|
-
* or standalone.
|
|
228
|
-
*/
|
|
229
|
-
inline: PropTypes.bool,
|
|
230
|
-
showWithAnimation: PropTypes.bool,
|
|
231
|
-
closeable: PropTypes.bool,
|
|
232
|
-
type: PropTypes.oneOf(Object.values(Type)),
|
|
233
|
-
children: PropTypes.node,
|
|
234
|
-
className: PropTypes.string,
|
|
235
|
-
captionClassName: PropTypes.string,
|
|
236
|
-
'data-test': PropTypes.string
|
|
237
|
-
});
|
|
238
|
-
|
|
239
|
-
_defineProperty(Alert, "defaultProps", {
|
|
240
|
-
closeable: true,
|
|
241
|
-
showWithAnimation: true,
|
|
242
|
-
type: Type.MESSAGE,
|
|
243
|
-
inline: true,
|
|
244
|
-
isClosing: false,
|
|
245
|
-
isShaking: false,
|
|
246
|
-
timeout: 0,
|
|
247
|
-
onClose: () => {},
|
|
248
|
-
onCloseRequest: () => {}
|
|
249
|
-
});
|
|
250
|
-
|
|
251
|
-
_defineProperty(Alert, "Type", Type);
|
|
252
|
-
|
|
253
|
-
export default Alert;
|
|
254
|
-
export { ANIMATION_TIME };
|
package/dist/alert/container.js
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { a as _objectWithoutProperties, b as _extends, _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React, { PureComponent, Children, cloneElement } from 'react';
|
|
3
|
-
import { createPortal } from 'react-dom';
|
|
4
|
-
import classNames from 'classnames';
|
|
5
|
-
import PropTypes from 'prop-types';
|
|
6
|
-
|
|
7
|
-
var modules_fc8df42d = {"unit":"8px","alert":"alert_alert__9b217ed4","alertContainer":"container_alertContainer__127d32bc","alertInContainer":"container_alertInContainer__127d32bc alert_alert__9b217ed4"};
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* @name Alert Container
|
|
11
|
-
* @description Displays a stack of alerts on top of the page.
|
|
12
|
-
* @extends {PureComponent}
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
class Alerts extends PureComponent {
|
|
16
|
-
render() {
|
|
17
|
-
const _this$props = this.props,
|
|
18
|
-
{
|
|
19
|
-
children,
|
|
20
|
-
className
|
|
21
|
-
} = _this$props,
|
|
22
|
-
restProps = _objectWithoutProperties(_this$props, ["children", "className"]);
|
|
23
|
-
|
|
24
|
-
const classes = classNames(modules_fc8df42d.alertContainer, className);
|
|
25
|
-
const show = Children.count(children) > 0;
|
|
26
|
-
|
|
27
|
-
if (!show) {
|
|
28
|
-
return null;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
return /*#__PURE__*/createPortal( /*#__PURE__*/React.createElement("div", _extends({
|
|
32
|
-
"data-test": "alert-container",
|
|
33
|
-
className: classes,
|
|
34
|
-
"aria-live": "polite"
|
|
35
|
-
}, restProps), Children.map(children, child => {
|
|
36
|
-
const alertClassNames = classNames(modules_fc8df42d.alertInContainer, child.props.className);
|
|
37
|
-
return /*#__PURE__*/cloneElement(child, {
|
|
38
|
-
className: alertClassNames
|
|
39
|
-
});
|
|
40
|
-
})), document.body);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
_defineProperty(Alerts, "propTypes", {
|
|
46
|
-
children: PropTypes.node,
|
|
47
|
-
className: PropTypes.string
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
export default Alerts;
|