@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
package/dist/header/header.js
DELETED
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
import { a as _objectWithoutProperties, b as _extends, _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React, { Component } from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import classNames from 'classnames';
|
|
5
|
-
import compose from '../global/compose.js';
|
|
6
|
-
import Theme, { withTheme } from '../global/theme.js';
|
|
7
|
-
import { m as modules_47759f5e } from '../_helpers/header.js';
|
|
8
|
-
export { default as Logo } from './logo.js';
|
|
9
|
-
export { default as Tray } from './tray.js';
|
|
10
|
-
export { default as TrayIcon } from './tray-icon.js';
|
|
11
|
-
export { default as Profile } from './profile.js';
|
|
12
|
-
export { default as SmartProfile } from './smart-profile.js';
|
|
13
|
-
export { default as Services } from './services.js';
|
|
14
|
-
export { default as SmartServices } from './smart-services.js';
|
|
15
|
-
import '../icon/icon.js';
|
|
16
|
-
import 'util-deprecate';
|
|
17
|
-
import '../icon/icon__constants.js';
|
|
18
|
-
import '../_helpers/icon__svg.js';
|
|
19
|
-
import '../global/memoize.js';
|
|
20
|
-
import '../button/button.js';
|
|
21
|
-
import 'focus-visible';
|
|
22
|
-
import '@jetbrains/icons/chevron-10px';
|
|
23
|
-
import '../link/clickableLink.js';
|
|
24
|
-
import '../_helpers/button__classes.js';
|
|
25
|
-
import '../avatar/avatar.js';
|
|
26
|
-
import '../global/url.js';
|
|
27
|
-
import '../global/dom.js';
|
|
28
|
-
import '../dropdown/dropdown.js';
|
|
29
|
-
import '../global/data-tests.js';
|
|
30
|
-
import '../_helpers/anchor.js';
|
|
31
|
-
import '../popup-menu/popup-menu.js';
|
|
32
|
-
import '../popup/popup.js';
|
|
33
|
-
import 'react-dom';
|
|
34
|
-
import '../global/get-uid.js';
|
|
35
|
-
import '../global/schedule-raf.js';
|
|
36
|
-
import '../shortcuts/shortcuts.js';
|
|
37
|
-
import '../shortcuts/core.js';
|
|
38
|
-
import 'combokeys';
|
|
39
|
-
import '../global/sniffer.js';
|
|
40
|
-
import 'sniffr';
|
|
41
|
-
import '../tab-trap/tab-trap.js';
|
|
42
|
-
import '../popup/position.js';
|
|
43
|
-
import '../popup/popup.consts.js';
|
|
44
|
-
import '../popup/popup.target.js';
|
|
45
|
-
import '../list/list.js';
|
|
46
|
-
import 'react-virtualized/dist/es/List';
|
|
47
|
-
import 'react-virtualized/dist/es/AutoSizer';
|
|
48
|
-
import 'react-virtualized/dist/es/WindowScroller';
|
|
49
|
-
import 'react-virtualized/dist/es/CellMeasurer';
|
|
50
|
-
import 'memoize-one';
|
|
51
|
-
import '../global/create-stateful-context.js';
|
|
52
|
-
import '../list/list__link.js';
|
|
53
|
-
import '../link/link.js';
|
|
54
|
-
import '../_helpers/list.js';
|
|
55
|
-
import '../list/list__item.js';
|
|
56
|
-
import '../checkbox/checkbox.js';
|
|
57
|
-
import '@jetbrains/icons/checkmark';
|
|
58
|
-
import '@jetbrains/icons/remove-10px';
|
|
59
|
-
import '../list/list__custom.js';
|
|
60
|
-
import '../global/get-event-key.js';
|
|
61
|
-
import '../list/list__title.js';
|
|
62
|
-
import '../list/list__separator.js';
|
|
63
|
-
import '../list/list__hint.js';
|
|
64
|
-
import '../list/consts.js';
|
|
65
|
-
import '../auth/auth.js';
|
|
66
|
-
import '../auth/window-flow.js';
|
|
67
|
-
import '../auth/response-parser.js';
|
|
68
|
-
import 'es6-error';
|
|
69
|
-
import '../auth/down-notification.js';
|
|
70
|
-
import '../alert-service/alert-service.js';
|
|
71
|
-
import '../alert/alert.js';
|
|
72
|
-
import '@jetbrains/icons/exception';
|
|
73
|
-
import '@jetbrains/icons/warning';
|
|
74
|
-
import '@jetbrains/icons/close';
|
|
75
|
-
import '../loader-inline/loader-inline.js';
|
|
76
|
-
import '../_helpers/inject-styles.js';
|
|
77
|
-
import '../global/conic-gradient.js';
|
|
78
|
-
import 'conic-gradient';
|
|
79
|
-
import '../global/supports-css.js';
|
|
80
|
-
import '../global/inject-styles.js';
|
|
81
|
-
import '../global/radial-gradient-mask.js';
|
|
82
|
-
import '../alert/container.js';
|
|
83
|
-
import '../group/group.js';
|
|
84
|
-
import '../auth/auth__core.js';
|
|
85
|
-
import '../global/listeners.js';
|
|
86
|
-
import '../http/http.js';
|
|
87
|
-
import '../global/promise-with-timeout.js';
|
|
88
|
-
import '../auth/storage.js';
|
|
89
|
-
import '../storage/storage.js';
|
|
90
|
-
import '../storage/storage__local.js';
|
|
91
|
-
import '../storage/storage__fallback.js';
|
|
92
|
-
import 'deep-equal';
|
|
93
|
-
import '../auth/request-builder.js';
|
|
94
|
-
import 'simply-uuid';
|
|
95
|
-
import '../auth/background-flow.js';
|
|
96
|
-
import '../auth/token-validator.js';
|
|
97
|
-
import '@jetbrains/icons/services-20px';
|
|
98
|
-
import '../_helpers/services-link.js';
|
|
99
|
-
|
|
100
|
-
/**
|
|
101
|
-
* @name Header
|
|
102
|
-
*/
|
|
103
|
-
|
|
104
|
-
/**
|
|
105
|
-
* Displays a configurable page header. See available presentation options in the knobs panel.
|
|
106
|
-
*/
|
|
107
|
-
|
|
108
|
-
class Header extends Component {
|
|
109
|
-
render() {
|
|
110
|
-
const _this$props = this.props,
|
|
111
|
-
{
|
|
112
|
-
children,
|
|
113
|
-
className,
|
|
114
|
-
spaced,
|
|
115
|
-
theme
|
|
116
|
-
} = _this$props,
|
|
117
|
-
restProps = _objectWithoutProperties(_this$props, ["children", "className", "spaced", "theme"]);
|
|
118
|
-
|
|
119
|
-
const classes = classNames(modules_47759f5e.header, modules_47759f5e[theme], className, {
|
|
120
|
-
[modules_47759f5e.headerSpaced]: spaced
|
|
121
|
-
});
|
|
122
|
-
return /*#__PURE__*/React.createElement("header", _extends({}, restProps, {
|
|
123
|
-
className: classes
|
|
124
|
-
}), children);
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
_defineProperty(Header, "propTypes", {
|
|
130
|
-
theme: PropTypes.oneOf(['light', 'dark']),
|
|
131
|
-
className: PropTypes.string,
|
|
132
|
-
children: PropTypes.node,
|
|
133
|
-
spaced: PropTypes.bool
|
|
134
|
-
});
|
|
135
|
-
|
|
136
|
-
_defineProperty(Header, "defaultProps", {
|
|
137
|
-
spaced: true
|
|
138
|
-
});
|
|
139
|
-
|
|
140
|
-
var header = withTheme(Theme.DARK)(Header);
|
|
141
|
-
const RerenderableHeader = compose(withTheme(Theme.DARK))(Header);
|
|
142
|
-
|
|
143
|
-
export default header;
|
|
144
|
-
export { RerenderableHeader };
|
package/dist/header/logo.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { a as _objectWithoutProperties, _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React, { PureComponent } from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import classNames from 'classnames';
|
|
5
|
-
import Icon from '../icon/icon.js';
|
|
6
|
-
import { m as modules_47759f5e } from '../_helpers/header.js';
|
|
7
|
-
import { Size } from '../icon/icon__constants.js';
|
|
8
|
-
import 'util-deprecate';
|
|
9
|
-
import '../_helpers/icon__svg.js';
|
|
10
|
-
import '../global/memoize.js';
|
|
11
|
-
|
|
12
|
-
class Logo extends PureComponent {
|
|
13
|
-
render() {
|
|
14
|
-
const _this$props = this.props,
|
|
15
|
-
{
|
|
16
|
-
className
|
|
17
|
-
} = _this$props,
|
|
18
|
-
restProps = _objectWithoutProperties(_this$props, ["className"]);
|
|
19
|
-
|
|
20
|
-
const classes = classNames(modules_47759f5e.logo, className);
|
|
21
|
-
return /*#__PURE__*/React.createElement("div", {
|
|
22
|
-
className: classes
|
|
23
|
-
}, /*#__PURE__*/React.createElement(Icon, restProps));
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
_defineProperty(Logo, "propTypes", {
|
|
29
|
-
className: PropTypes.string
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
_defineProperty(Logo, "defaultProps", {
|
|
33
|
-
size: Size.Size48,
|
|
34
|
-
suppressSizeWarning: true
|
|
35
|
-
});
|
|
36
|
-
|
|
37
|
-
_defineProperty(Logo, "Size", Size);
|
|
38
|
-
|
|
39
|
-
export default Logo;
|
package/dist/header/profile.js
DELETED
|
@@ -1,212 +0,0 @@
|
|
|
1
|
-
import { a as _objectWithoutProperties, b as _extends, _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React, { PureComponent, Component } from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import classNames from 'classnames';
|
|
5
|
-
import Avatar, { Size } from '../avatar/avatar.js';
|
|
6
|
-
import Button from '../button/button.js';
|
|
7
|
-
import Dropdown from '../dropdown/dropdown.js';
|
|
8
|
-
import PopupMenu from '../popup-menu/popup-menu.js';
|
|
9
|
-
import { m as modules_47759f5e } from '../_helpers/header.js';
|
|
10
|
-
import '../global/url.js';
|
|
11
|
-
import '../global/dom.js';
|
|
12
|
-
import 'focus-visible';
|
|
13
|
-
import '@jetbrains/icons/chevron-10px';
|
|
14
|
-
import '../icon/icon.js';
|
|
15
|
-
import 'util-deprecate';
|
|
16
|
-
import '../icon/icon__constants.js';
|
|
17
|
-
import '../_helpers/icon__svg.js';
|
|
18
|
-
import '../global/memoize.js';
|
|
19
|
-
import '../global/theme.js';
|
|
20
|
-
import '../link/clickableLink.js';
|
|
21
|
-
import '../_helpers/button__classes.js';
|
|
22
|
-
import '../global/data-tests.js';
|
|
23
|
-
import '../_helpers/anchor.js';
|
|
24
|
-
import '../popup/popup.js';
|
|
25
|
-
import 'react-dom';
|
|
26
|
-
import '../global/get-uid.js';
|
|
27
|
-
import '../global/schedule-raf.js';
|
|
28
|
-
import '../shortcuts/shortcuts.js';
|
|
29
|
-
import '../shortcuts/core.js';
|
|
30
|
-
import 'combokeys';
|
|
31
|
-
import '../global/sniffer.js';
|
|
32
|
-
import 'sniffr';
|
|
33
|
-
import '../tab-trap/tab-trap.js';
|
|
34
|
-
import '../popup/position.js';
|
|
35
|
-
import '../popup/popup.consts.js';
|
|
36
|
-
import '../popup/popup.target.js';
|
|
37
|
-
import '../list/list.js';
|
|
38
|
-
import 'react-virtualized/dist/es/List';
|
|
39
|
-
import 'react-virtualized/dist/es/AutoSizer';
|
|
40
|
-
import 'react-virtualized/dist/es/WindowScroller';
|
|
41
|
-
import 'react-virtualized/dist/es/CellMeasurer';
|
|
42
|
-
import 'memoize-one';
|
|
43
|
-
import '../global/create-stateful-context.js';
|
|
44
|
-
import '../list/list__link.js';
|
|
45
|
-
import '../link/link.js';
|
|
46
|
-
import '../_helpers/list.js';
|
|
47
|
-
import '../list/list__item.js';
|
|
48
|
-
import '../checkbox/checkbox.js';
|
|
49
|
-
import '@jetbrains/icons/checkmark';
|
|
50
|
-
import '@jetbrains/icons/remove-10px';
|
|
51
|
-
import '../list/list__custom.js';
|
|
52
|
-
import '../global/get-event-key.js';
|
|
53
|
-
import '../list/list__title.js';
|
|
54
|
-
import '../list/list__separator.js';
|
|
55
|
-
import '../list/list__hint.js';
|
|
56
|
-
import '../list/consts.js';
|
|
57
|
-
|
|
58
|
-
const rgItemType = PopupMenu.ListProps.Type.LINK;
|
|
59
|
-
class Profile extends PureComponent {
|
|
60
|
-
render() {
|
|
61
|
-
const _this$props = this.props,
|
|
62
|
-
{
|
|
63
|
-
className,
|
|
64
|
-
closeOnSelect,
|
|
65
|
-
hasUpdates,
|
|
66
|
-
onLogout,
|
|
67
|
-
user,
|
|
68
|
-
profileUrl,
|
|
69
|
-
LinkComponent,
|
|
70
|
-
onSwitchUser,
|
|
71
|
-
renderPopupItems,
|
|
72
|
-
onRevertPostponement,
|
|
73
|
-
showApplyChangedUser,
|
|
74
|
-
showLogIn,
|
|
75
|
-
showLogOut,
|
|
76
|
-
showSwitchUser,
|
|
77
|
-
renderGuest,
|
|
78
|
-
translations,
|
|
79
|
-
size,
|
|
80
|
-
round,
|
|
81
|
-
loading,
|
|
82
|
-
onLogin
|
|
83
|
-
} = _this$props,
|
|
84
|
-
props = _objectWithoutProperties(_this$props, ["className", "closeOnSelect", "hasUpdates", "onLogout", "user", "profileUrl", "LinkComponent", "onSwitchUser", "renderPopupItems", "onRevertPostponement", "showApplyChangedUser", "showLogIn", "showLogOut", "showSwitchUser", "renderGuest", "translations", "size", "round", "loading", "onLogin"]);
|
|
85
|
-
|
|
86
|
-
if (!user) {
|
|
87
|
-
return /*#__PURE__*/React.createElement("div", _extends({}, props, {
|
|
88
|
-
className: classNames(modules_47759f5e.profileEmpty, className)
|
|
89
|
-
}), /*#__PURE__*/React.createElement(Avatar, {
|
|
90
|
-
size: size,
|
|
91
|
-
round: round
|
|
92
|
-
}));
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
if (user.guest) {
|
|
96
|
-
return renderGuest(this.props);
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
const anchorClassName = classNames(modules_47759f5e.avatarWrapper, {
|
|
100
|
-
[modules_47759f5e.hasUpdates]: hasUpdates
|
|
101
|
-
});
|
|
102
|
-
const anchor = /*#__PURE__*/React.createElement("button", {
|
|
103
|
-
type: "button",
|
|
104
|
-
className: anchorClassName
|
|
105
|
-
}, /*#__PURE__*/React.createElement(Avatar, {
|
|
106
|
-
url: user.profile && user.profile.avatar && user.profile.avatar.url,
|
|
107
|
-
size: size,
|
|
108
|
-
round: round
|
|
109
|
-
}));
|
|
110
|
-
const items = [showApplyChangedUser && {
|
|
111
|
-
rgItemType,
|
|
112
|
-
label: translations.applyChangedUser || 'Apply changed user',
|
|
113
|
-
className: modules_47759f5e.profileMenuItem,
|
|
114
|
-
onClick: onRevertPostponement
|
|
115
|
-
}, showLogIn && {
|
|
116
|
-
rgItemType,
|
|
117
|
-
label: translations.login || 'Log in',
|
|
118
|
-
className: modules_47759f5e.profileMenuItem,
|
|
119
|
-
onClick: onRevertPostponement
|
|
120
|
-
}, {
|
|
121
|
-
rgItemType: PopupMenu.ListProps.Type.LINK,
|
|
122
|
-
label: translations.profile || 'Profile',
|
|
123
|
-
target: '_self',
|
|
124
|
-
// Full page reload in Angular
|
|
125
|
-
href: profileUrl,
|
|
126
|
-
LinkComponent
|
|
127
|
-
}, showSwitchUser && {
|
|
128
|
-
rgItemType,
|
|
129
|
-
label: translations.switchUser || 'Switch user',
|
|
130
|
-
className: modules_47759f5e.profileMenuItem,
|
|
131
|
-
onClick: onSwitchUser
|
|
132
|
-
}, showLogOut && {
|
|
133
|
-
rgItemType,
|
|
134
|
-
label: translations.logout || 'Log out',
|
|
135
|
-
onClick: onLogout
|
|
136
|
-
}].filter(it => !!it);
|
|
137
|
-
return /*#__PURE__*/React.createElement(Dropdown, _extends({}, props, {
|
|
138
|
-
title: user.name,
|
|
139
|
-
anchor: anchor,
|
|
140
|
-
"data-test": "ring-profile",
|
|
141
|
-
className: classNames(modules_47759f5e.profile, className)
|
|
142
|
-
}), /*#__PURE__*/React.createElement(PopupMenu, {
|
|
143
|
-
closeOnSelect: closeOnSelect,
|
|
144
|
-
data: renderPopupItems(items),
|
|
145
|
-
left: -2,
|
|
146
|
-
top: -8,
|
|
147
|
-
sidePadding: 32
|
|
148
|
-
}));
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
_defineProperty(Profile, "propTypes", {
|
|
154
|
-
className: PropTypes.string,
|
|
155
|
-
closeOnSelect: PropTypes.bool,
|
|
156
|
-
hasUpdates: PropTypes.bool,
|
|
157
|
-
loading: PropTypes.bool,
|
|
158
|
-
onLogin: PropTypes.func,
|
|
159
|
-
onLogout: PropTypes.func,
|
|
160
|
-
onSwitchUser: PropTypes.func,
|
|
161
|
-
profileUrl: PropTypes.string,
|
|
162
|
-
renderPopupItems: PropTypes.func,
|
|
163
|
-
LinkComponent: PropTypes.oneOfType([PropTypes.instanceOf(Component), PropTypes.func, PropTypes.string]),
|
|
164
|
-
translations: PropTypes.shape({
|
|
165
|
-
profile: PropTypes.string,
|
|
166
|
-
login: PropTypes.string,
|
|
167
|
-
logout: PropTypes.string,
|
|
168
|
-
applyChangedUser: PropTypes.string,
|
|
169
|
-
switchUser: PropTypes.string
|
|
170
|
-
}),
|
|
171
|
-
user: PropTypes.shape({
|
|
172
|
-
guest: PropTypes.bool,
|
|
173
|
-
profile: PropTypes.object,
|
|
174
|
-
name: PropTypes.string
|
|
175
|
-
}),
|
|
176
|
-
size: PropTypes.number,
|
|
177
|
-
round: PropTypes.bool,
|
|
178
|
-
showLogIn: PropTypes.bool,
|
|
179
|
-
showLogOut: PropTypes.bool,
|
|
180
|
-
showSwitchUser: PropTypes.bool,
|
|
181
|
-
showApplyChangedUser: PropTypes.bool,
|
|
182
|
-
onRevertPostponement: PropTypes.func,
|
|
183
|
-
renderGuest: PropTypes.func
|
|
184
|
-
});
|
|
185
|
-
|
|
186
|
-
_defineProperty(Profile, "defaultProps", {
|
|
187
|
-
closeOnSelect: true,
|
|
188
|
-
renderPopupItems: items => items,
|
|
189
|
-
translations: {},
|
|
190
|
-
size: Size.Size32,
|
|
191
|
-
renderGuest: _ref => {
|
|
192
|
-
let {
|
|
193
|
-
loading,
|
|
194
|
-
onLogin,
|
|
195
|
-
className,
|
|
196
|
-
translations
|
|
197
|
-
} = _ref;
|
|
198
|
-
return /*#__PURE__*/React.createElement("div", {
|
|
199
|
-
className: classNames(modules_47759f5e.profileEmpty, className)
|
|
200
|
-
}, /*#__PURE__*/React.createElement(Button, {
|
|
201
|
-
primary: true,
|
|
202
|
-
"data-test": "ring-header-login-button",
|
|
203
|
-
disabled: loading,
|
|
204
|
-
loader: loading,
|
|
205
|
-
onClick: onLogin
|
|
206
|
-
}, translations.login || 'Log in...'));
|
|
207
|
-
}
|
|
208
|
-
});
|
|
209
|
-
|
|
210
|
-
_defineProperty(Profile, "Size", Size);
|
|
211
|
-
|
|
212
|
-
export default Profile;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import 'react';
|
|
3
|
-
import 'prop-types';
|
|
4
|
-
import '../link/link.js';
|
|
5
|
-
export { S as default } from '../_helpers/services-link.js';
|
|
6
|
-
import 'focus-visible';
|
|
7
|
-
import 'classnames';
|
|
8
|
-
import '../global/memoize.js';
|
|
9
|
-
import '../global/data-tests.js';
|
|
10
|
-
import '../link/clickableLink.js';
|
package/dist/header/services.js
DELETED
|
@@ -1,135 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty, a as _objectWithoutProperties, b as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import React, { PureComponent } from 'react';
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import servicesIcon from '@jetbrains/icons/services-20px';
|
|
5
|
-
import Dropdown from '../dropdown/dropdown.js';
|
|
6
|
-
import Popup from '../popup/popup.js';
|
|
7
|
-
import TrayIcon from './tray-icon.js';
|
|
8
|
-
import { m as modules_74a7bf8b, S as ServicesLink } from '../_helpers/services-link.js';
|
|
9
|
-
import 'classnames';
|
|
10
|
-
import '../global/data-tests.js';
|
|
11
|
-
import '../_helpers/anchor.js';
|
|
12
|
-
import '@jetbrains/icons/chevron-10px';
|
|
13
|
-
import '../icon/icon.js';
|
|
14
|
-
import 'util-deprecate';
|
|
15
|
-
import '../icon/icon__constants.js';
|
|
16
|
-
import '../_helpers/icon__svg.js';
|
|
17
|
-
import '../global/memoize.js';
|
|
18
|
-
import '../button/button.js';
|
|
19
|
-
import 'focus-visible';
|
|
20
|
-
import '../global/theme.js';
|
|
21
|
-
import '../link/clickableLink.js';
|
|
22
|
-
import '../_helpers/button__classes.js';
|
|
23
|
-
import 'react-dom';
|
|
24
|
-
import '../global/get-uid.js';
|
|
25
|
-
import '../global/schedule-raf.js';
|
|
26
|
-
import '../global/dom.js';
|
|
27
|
-
import '../shortcuts/shortcuts.js';
|
|
28
|
-
import '../shortcuts/core.js';
|
|
29
|
-
import 'combokeys';
|
|
30
|
-
import '../global/sniffer.js';
|
|
31
|
-
import 'sniffr';
|
|
32
|
-
import '../tab-trap/tab-trap.js';
|
|
33
|
-
import '../popup/position.js';
|
|
34
|
-
import '../popup/popup.consts.js';
|
|
35
|
-
import '../popup/popup.target.js';
|
|
36
|
-
import '../_helpers/header.js';
|
|
37
|
-
import '../link/link.js';
|
|
38
|
-
|
|
39
|
-
const makeAnchor = loading => {
|
|
40
|
-
const Anchor = _ref => {
|
|
41
|
-
let {
|
|
42
|
-
active
|
|
43
|
-
} = _ref;
|
|
44
|
-
return /*#__PURE__*/React.createElement(TrayIcon, {
|
|
45
|
-
loader: loading,
|
|
46
|
-
active: active,
|
|
47
|
-
icon: servicesIcon,
|
|
48
|
-
"aria-label": "Services"
|
|
49
|
-
});
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
Anchor.propTypes = {
|
|
53
|
-
active: PropTypes.bool
|
|
54
|
-
};
|
|
55
|
-
return Anchor;
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
class Services extends PureComponent {
|
|
59
|
-
constructor() {
|
|
60
|
-
super(...arguments);
|
|
61
|
-
|
|
62
|
-
_defineProperty(this, "serviceIsActive", service => service.id === this.props.clientId);
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
render() {
|
|
66
|
-
const _this$props = this.props,
|
|
67
|
-
{
|
|
68
|
-
clientId,
|
|
69
|
-
loading,
|
|
70
|
-
services,
|
|
71
|
-
initShown
|
|
72
|
-
} = _this$props,
|
|
73
|
-
props = _objectWithoutProperties(_this$props, ["clientId", "loading", "services", "initShown"]);
|
|
74
|
-
|
|
75
|
-
if (!services) {
|
|
76
|
-
return /*#__PURE__*/React.createElement(TrayIcon, _extends({}, props, {
|
|
77
|
-
loader: loading,
|
|
78
|
-
active: loading,
|
|
79
|
-
icon: servicesIcon,
|
|
80
|
-
"aria-label": "Services"
|
|
81
|
-
}));
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
const sortedServices = [...services].sort(Services.sort);
|
|
85
|
-
const servicesWithIcons = sortedServices.filter(service => service.iconUrl);
|
|
86
|
-
const servicesWithOutIcons = sortedServices.filter(service => !service.iconUrl);
|
|
87
|
-
const separatorIsRequired = servicesWithIcons.length !== 0 && servicesWithOutIcons.length !== 0;
|
|
88
|
-
return /*#__PURE__*/React.createElement(Dropdown, _extends({}, props, {
|
|
89
|
-
anchor: makeAnchor(loading),
|
|
90
|
-
initShown: initShown
|
|
91
|
-
}), /*#__PURE__*/React.createElement(Popup, {
|
|
92
|
-
className: modules_74a7bf8b.services,
|
|
93
|
-
top: -3
|
|
94
|
-
}, servicesWithIcons.map(service => {
|
|
95
|
-
const isActive = this.serviceIsActive(service);
|
|
96
|
-
return /*#__PURE__*/React.createElement(Services.Link, {
|
|
97
|
-
active: isActive,
|
|
98
|
-
className: isActive ? modules_74a7bf8b.activeItem : modules_74a7bf8b.item,
|
|
99
|
-
key: service.id,
|
|
100
|
-
service: service
|
|
101
|
-
});
|
|
102
|
-
}), separatorIsRequired && /*#__PURE__*/React.createElement("div", {
|
|
103
|
-
className: modules_74a7bf8b.line,
|
|
104
|
-
key: "separator"
|
|
105
|
-
}), servicesWithOutIcons.map(service => {
|
|
106
|
-
const isActive = this.serviceIsActive(service);
|
|
107
|
-
return /*#__PURE__*/React.createElement(Services.Link, {
|
|
108
|
-
active: isActive,
|
|
109
|
-
className: isActive ? modules_74a7bf8b.activeItemStacked : modules_74a7bf8b.itemStacked,
|
|
110
|
-
key: service.id,
|
|
111
|
-
service: service
|
|
112
|
-
});
|
|
113
|
-
})));
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
_defineProperty(Services, "sort", (a, b) => {
|
|
119
|
-
const aApplicationName = a.applicationName || '';
|
|
120
|
-
const bApplicationName = b.applicationName || '';
|
|
121
|
-
return aApplicationName.localeCompare(bApplicationName) || a.name.localeCompare(b.name);
|
|
122
|
-
});
|
|
123
|
-
|
|
124
|
-
_defineProperty(Services, "propTypes", {
|
|
125
|
-
className: PropTypes.string,
|
|
126
|
-
clientId: PropTypes.string,
|
|
127
|
-
initShown: PropTypes.bool,
|
|
128
|
-
loading: PropTypes.bool,
|
|
129
|
-
onClick: PropTypes.func,
|
|
130
|
-
services: PropTypes.arrayOf(ServicesLink.propTypes.service)
|
|
131
|
-
});
|
|
132
|
-
|
|
133
|
-
_defineProperty(Services, "Link", ServicesLink);
|
|
134
|
-
|
|
135
|
-
export default Services;
|