@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/http/http.js
DELETED
|
@@ -1,216 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty, a as _objectWithoutProperties, c as _objectSpread2 } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import ExtendableError from 'es6-error';
|
|
3
|
-
import { encodeURL, joinBaseURLAndPath } from '../global/url.js';
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @name HTTP
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
const TOKEN_TYPE = 'Bearer';
|
|
10
|
-
const STATUS_OK_IF_MORE_THAN = 200;
|
|
11
|
-
const STATUS_BAD_IF_MORE_THAN = 300;
|
|
12
|
-
const defaultFetchConfig = {
|
|
13
|
-
headers: {
|
|
14
|
-
'Content-Type': 'application/json',
|
|
15
|
-
Accept: 'application/json'
|
|
16
|
-
},
|
|
17
|
-
credentials: 'same-origin'
|
|
18
|
-
};
|
|
19
|
-
class HTTPError extends ExtendableError {
|
|
20
|
-
constructor(response) {
|
|
21
|
-
let data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
22
|
-
super(`${response.status} ${response.statusText || ''}`);
|
|
23
|
-
this.data = data;
|
|
24
|
-
this.status = response.status;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
const CODE = {
|
|
29
|
-
UNAUTHORIZED: 401
|
|
30
|
-
};
|
|
31
|
-
class HTTP {
|
|
32
|
-
constructor(_auth, _baseUrl) {
|
|
33
|
-
var _this = this;
|
|
34
|
-
|
|
35
|
-
let _fetchConfig = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
36
|
-
|
|
37
|
-
_defineProperty(this, "baseUrl", null);
|
|
38
|
-
|
|
39
|
-
_defineProperty(this, "_requestsMeta", new WeakMap());
|
|
40
|
-
|
|
41
|
-
_defineProperty(this, "setAuth", auth => {
|
|
42
|
-
this.requestToken = () => auth.requestToken();
|
|
43
|
-
|
|
44
|
-
this.shouldRefreshToken = auth.constructor.shouldRefreshToken;
|
|
45
|
-
|
|
46
|
-
this.forceTokenUpdate = () => auth.forceTokenUpdate();
|
|
47
|
-
});
|
|
48
|
-
|
|
49
|
-
_defineProperty(this, "setBaseUrl", baseUrl => {
|
|
50
|
-
this.baseUrl = baseUrl;
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
_defineProperty(this, "fetch", async function (url) {
|
|
54
|
-
let params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
55
|
-
|
|
56
|
-
const {
|
|
57
|
-
body,
|
|
58
|
-
query = {}
|
|
59
|
-
} = params,
|
|
60
|
-
fetchConfig = _objectWithoutProperties(params, ["body", "query"]);
|
|
61
|
-
|
|
62
|
-
const response = await _this._fetch(_this._makeRequestUrl(url, query), _objectSpread2(_objectSpread2({}, fetchConfig), {}, {
|
|
63
|
-
body: body ? JSON.stringify(body) : body
|
|
64
|
-
}));
|
|
65
|
-
return _this._processResponse(response);
|
|
66
|
-
});
|
|
67
|
-
|
|
68
|
-
_defineProperty(this, "request", async (url, params) => {
|
|
69
|
-
let token = await this.requestToken();
|
|
70
|
-
let response = await this._performRequest(url, token, params);
|
|
71
|
-
|
|
72
|
-
try {
|
|
73
|
-
// Wait for result to catch an HTTP error
|
|
74
|
-
return await this._processResponse(response);
|
|
75
|
-
} catch (error) {
|
|
76
|
-
if (!(error instanceof HTTPError)) {
|
|
77
|
-
throw error;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
const shouldRefreshToken = error.data.error !== undefined ? this.shouldRefreshToken(error.data.error) : false;
|
|
81
|
-
|
|
82
|
-
if (shouldRefreshToken) {
|
|
83
|
-
token = await this.forceTokenUpdate();
|
|
84
|
-
response = await this._performRequest(url, token, params);
|
|
85
|
-
return this._processResponse(response);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
throw error;
|
|
89
|
-
}
|
|
90
|
-
});
|
|
91
|
-
|
|
92
|
-
_defineProperty(this, "getMetaForResponse", response => this._requestsMeta.get(response));
|
|
93
|
-
|
|
94
|
-
_defineProperty(this, "get", (url, params) => this.request(url, _objectSpread2({
|
|
95
|
-
method: 'GET'
|
|
96
|
-
}, params)));
|
|
97
|
-
|
|
98
|
-
_defineProperty(this, "post", (url, params) => this.request(url, _objectSpread2({
|
|
99
|
-
method: 'POST'
|
|
100
|
-
}, params)));
|
|
101
|
-
|
|
102
|
-
if (_auth) {
|
|
103
|
-
this.setAuth(_auth);
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
this.setBaseUrl(_baseUrl);
|
|
107
|
-
|
|
108
|
-
const {
|
|
109
|
-
headers
|
|
110
|
-
} = defaultFetchConfig,
|
|
111
|
-
defaultConfig = _objectWithoutProperties(defaultFetchConfig, ["headers"]);
|
|
112
|
-
|
|
113
|
-
this.fetchConfig = _objectSpread2(_objectSpread2(_objectSpread2({}, defaultConfig), _fetchConfig), {}, {
|
|
114
|
-
headers: _objectSpread2(_objectSpread2({}, headers), _fetchConfig.headers)
|
|
115
|
-
});
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
_fetch() {
|
|
119
|
-
return fetch(...arguments);
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
_makeRequestUrl(url, queryObject) {
|
|
123
|
-
const urlWithQuery = encodeURL(url, queryObject);
|
|
124
|
-
return joinBaseURLAndPath(this.baseUrl, urlWithQuery);
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
_performRequest(url, token) {
|
|
128
|
-
let params = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
129
|
-
|
|
130
|
-
const {
|
|
131
|
-
headers,
|
|
132
|
-
body,
|
|
133
|
-
query = {},
|
|
134
|
-
sendRawBody
|
|
135
|
-
} = params,
|
|
136
|
-
fetchConfig = _objectWithoutProperties(params, ["headers", "body", "query", "sendRawBody"]);
|
|
137
|
-
|
|
138
|
-
const combinedHeaders = _objectSpread2(_objectSpread2(_objectSpread2({}, this.fetchConfig.headers), token ? {
|
|
139
|
-
Authorization: `${TOKEN_TYPE} ${token}`
|
|
140
|
-
} : {}), headers);
|
|
141
|
-
|
|
142
|
-
Object.keys(combinedHeaders).forEach(key => {
|
|
143
|
-
if (combinedHeaders[key] === null || combinedHeaders[key] === undefined) {
|
|
144
|
-
Reflect.deleteProperty(combinedHeaders, key);
|
|
145
|
-
}
|
|
146
|
-
});
|
|
147
|
-
return this._fetch(this._makeRequestUrl(url, query), _objectSpread2(_objectSpread2(_objectSpread2({}, this.fetchConfig), {}, {
|
|
148
|
-
headers: combinedHeaders
|
|
149
|
-
}, fetchConfig), {}, {
|
|
150
|
-
body: body && !sendRawBody ? JSON.stringify(body) : body
|
|
151
|
-
}));
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
_storeRequestMeta(parsedResponse, rawResponse) {
|
|
155
|
-
const {
|
|
156
|
-
headers,
|
|
157
|
-
ok,
|
|
158
|
-
redirected,
|
|
159
|
-
status,
|
|
160
|
-
statusText,
|
|
161
|
-
type,
|
|
162
|
-
url
|
|
163
|
-
} = rawResponse;
|
|
164
|
-
|
|
165
|
-
this._requestsMeta.set(parsedResponse, {
|
|
166
|
-
headers,
|
|
167
|
-
ok,
|
|
168
|
-
redirected,
|
|
169
|
-
status,
|
|
170
|
-
statusText,
|
|
171
|
-
type,
|
|
172
|
-
url
|
|
173
|
-
});
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
async _processResponse(response) {
|
|
177
|
-
const contentType = response.headers.get('content-type');
|
|
178
|
-
const isJson = contentType && contentType.indexOf('application/json') !== -1;
|
|
179
|
-
|
|
180
|
-
if (HTTP._isErrorStatus(response.status)) {
|
|
181
|
-
let resJson;
|
|
182
|
-
|
|
183
|
-
try {
|
|
184
|
-
resJson = await (isJson ? response.json() : response.text());
|
|
185
|
-
} catch (err) {// noop
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
throw new HTTPError(response, resJson);
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
try {
|
|
192
|
-
const parsedResponse = await (isJson ? response.json() : {
|
|
193
|
-
data: await response.text()
|
|
194
|
-
});
|
|
195
|
-
|
|
196
|
-
this._storeRequestMeta(parsedResponse, response);
|
|
197
|
-
|
|
198
|
-
return parsedResponse;
|
|
199
|
-
} catch (err) {
|
|
200
|
-
return response;
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
static _isErrorStatus(status) {
|
|
205
|
-
return status < STATUS_OK_IF_MORE_THAN || status >= STATUS_BAD_IF_MORE_THAN;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
async authorizedFetch() {
|
|
209
|
-
const response = await this._performRequest(...arguments);
|
|
210
|
-
return this._processResponse(response);
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
export default HTTP;
|
|
216
|
-
export { CODE, HTTPError, defaultFetchConfig };
|
package/dist/http/http.mock.js
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { c as _objectSpread2 } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
import HTTP from './http.js';
|
|
3
|
-
import 'es6-error';
|
|
4
|
-
import '../global/url.js';
|
|
5
|
-
|
|
6
|
-
const authMock = {
|
|
7
|
-
requestToken: () => 'mock token',
|
|
8
|
-
shouldRefreshToken: () => false,
|
|
9
|
-
forceTokenUpdate: async () => {}
|
|
10
|
-
};
|
|
11
|
-
class HTTPMock extends HTTP {
|
|
12
|
-
constructor() {
|
|
13
|
-
super(authMock);
|
|
14
|
-
this.defaultResponse = null;
|
|
15
|
-
this.requests = [];
|
|
16
|
-
this.responsesByUrlMap = new Map();
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
_fetch(url, params) {
|
|
20
|
-
this.requests = [...this.requests, {
|
|
21
|
-
url,
|
|
22
|
-
params: _objectSpread2(_objectSpread2({}, params), {}, {
|
|
23
|
-
body: params.body ? JSON.parse(params.body) : params.body
|
|
24
|
-
})
|
|
25
|
-
}];
|
|
26
|
-
return {
|
|
27
|
-
status: 200,
|
|
28
|
-
headers: new Headers({
|
|
29
|
-
'content-type': 'application/json'
|
|
30
|
-
}),
|
|
31
|
-
json: () => this._getResponseForUrl(url) || this.defaultResponse
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
respondDefault(response) {
|
|
36
|
-
this.defaultResponse = response;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
respondForUrl(url, response) {
|
|
40
|
-
this.responsesByUrlMap.set(url, response);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
_getResponseForUrl(urlToMatch) {
|
|
44
|
-
const urls = this.responsesByUrlMap.keys();
|
|
45
|
-
|
|
46
|
-
for (const url of urls) {
|
|
47
|
-
if (url === urlToMatch) {
|
|
48
|
-
return this.responsesByUrlMap.get(url);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
if (url.test && url.test(urlToMatch)) {
|
|
52
|
-
return this.responsesByUrlMap.get(url);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
return null;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
getRequestsByUrlPart(url) {
|
|
60
|
-
return this.requests.filter(it => it.url.indexOf(url) !== -1);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export default HTTPMock;
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
|
-
|
|
3
|
-
const defaultOptions = {
|
|
4
|
-
searchMax: 20,
|
|
5
|
-
searchSideThreshold: 100,
|
|
6
|
-
queryFormatter: query => `${query} or ${query}*`
|
|
7
|
-
};
|
|
8
|
-
/**
|
|
9
|
-
* HubSource is designed to speed up search requests for small installations.
|
|
10
|
-
* If there are less than "searchSideThreshold" items, it uses client-side filtering
|
|
11
|
-
* of cached results to greatly increase search speed. Useful for completion and
|
|
12
|
-
* select data source.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
class HubSource {
|
|
16
|
-
constructor(auth, relativeUrl, options) {
|
|
17
|
-
this.http = auth.http;
|
|
18
|
-
this.relativeUrl = relativeUrl;
|
|
19
|
-
this.options = Object.assign({}, defaultOptions, options);
|
|
20
|
-
this.storedData = null;
|
|
21
|
-
this.isClientSideSearch = null;
|
|
22
|
-
this.filterFn = null;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
makeRequest(queryParams) {
|
|
26
|
-
return this.http.get(this.relativeUrl, {
|
|
27
|
-
query: queryParams
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
async makeCachedRequest(params) {
|
|
32
|
-
if (this.storedData) {
|
|
33
|
-
return this.storedData;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
const res = await this.makeRequest(params);
|
|
37
|
-
this.storedData = res;
|
|
38
|
-
return res;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
static mergeParams(params, toMerge) {
|
|
42
|
-
return Object.assign({}, params, toMerge);
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
checkIsClientSideSearch(res) {
|
|
46
|
-
return res.total <= this.options.searchSideThreshold;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
getDefaultFilterFn(query) {
|
|
50
|
-
if (!query) {
|
|
51
|
-
return () => true;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
return it => it.name.toLowerCase().indexOf(query.toLowerCase()) !== -1;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
formatQuery(query) {
|
|
58
|
-
return query ? this.options.queryFormatter(query) : '';
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
static validateInputParams(params) {
|
|
62
|
-
if (params.top) {
|
|
63
|
-
throw new Error('HubSource: params.top should not be filled, configure "options.searchMax" instead');
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
if (params.query) {
|
|
67
|
-
throw new Error('HubSource: params.query should not be filled, configure "options.queryFormatter" instead');
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
processResults(res) {
|
|
72
|
-
const items = res[this.relativeUrl] || [];
|
|
73
|
-
|
|
74
|
-
if (this.isClientSideSearch) {
|
|
75
|
-
return items.filter(it => this.filterFn(it)).slice(0, this.options.searchMax);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
return items;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
async sideDetectionRequest(params, query) {
|
|
82
|
-
const res = await this.makeCachedRequest(HubSource.mergeParams(params, {
|
|
83
|
-
$top: this.options.searchSideThreshold
|
|
84
|
-
}));
|
|
85
|
-
this.isClientSideSearch = this.checkIsClientSideSearch(res);
|
|
86
|
-
|
|
87
|
-
if (!this.isClientSideSearch) {
|
|
88
|
-
return this.doServerSideSearch(params, query);
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
return res;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
doClientSideSearch(params) {
|
|
95
|
-
return this.makeCachedRequest(HubSource.mergeParams(params, {
|
|
96
|
-
$top: this.constructor.TOP_ALL
|
|
97
|
-
}));
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
doServerSideSearch(params, query) {
|
|
101
|
-
return this.makeRequest(HubSource.mergeParams(params, {
|
|
102
|
-
query: this.formatQuery(query),
|
|
103
|
-
$top: this.options.searchMax
|
|
104
|
-
}));
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
getValueFromSuitableSource(query, params) {
|
|
108
|
-
if (this.isClientSideSearch === null) {
|
|
109
|
-
return this.sideDetectionRequest(params, query);
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
if (this.isClientSideSearch) {
|
|
113
|
-
return this.doClientSideSearch(params);
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
return this.doServerSideSearch(params, query);
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
async get(query, params, filterFn) {
|
|
120
|
-
HubSource.validateInputParams(params);
|
|
121
|
-
this.filterFn = filterFn || this.getDefaultFilterFn(query);
|
|
122
|
-
const res = await this.getValueFromSuitableSource(query, params);
|
|
123
|
-
return this.processResults(res);
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
_defineProperty(HubSource, "TOP_ALL", -1);
|
|
129
|
-
|
|
130
|
-
export default HubSource;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import HTTP from '../http/http.js';
|
|
2
|
-
import '../_helpers/_rollupPluginBabelHelpers.js';
|
|
3
|
-
import 'es6-error';
|
|
4
|
-
import '../global/url.js';
|
|
5
|
-
|
|
6
|
-
const DEFAULT_FIELDS = 'id,name,login,banned,banReason,profile(email/email,avatar/url)';
|
|
7
|
-
function convertUserForCard(hubUser) {
|
|
8
|
-
let serverUri = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
9
|
-
return {
|
|
10
|
-
name: hubUser.name,
|
|
11
|
-
login: hubUser.login,
|
|
12
|
-
banned: hubUser.banned,
|
|
13
|
-
banReason: hubUser.banReason,
|
|
14
|
-
email: hubUser.profile.email && hubUser.profile.email.email,
|
|
15
|
-
avatarUrl: hubUser.profile.avatar.url,
|
|
16
|
-
href: `${serverUri}users/${hubUser.id}`
|
|
17
|
-
};
|
|
18
|
-
}
|
|
19
|
-
function createHubUserCardSource(auth, userId) {
|
|
20
|
-
let fields = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : DEFAULT_FIELDS;
|
|
21
|
-
const http = new HTTP(auth);
|
|
22
|
-
return async function getHubUser() {
|
|
23
|
-
const hubUser = await http.get(`${auth.config.serverUri}api/rest/users/${userId}?fields=${fields}`);
|
|
24
|
-
return convertUserForCard(hubUser, auth.config.serverUri);
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export { convertUserForCard, createHubUserCardSource };
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import HubSource from './hub-source.js';
|
|
2
|
-
import '../_helpers/_rollupPluginBabelHelpers.js';
|
|
3
|
-
|
|
4
|
-
const defaultOptions = {
|
|
5
|
-
searchMax: 20,
|
|
6
|
-
searchSideThreshold: 200
|
|
7
|
-
};
|
|
8
|
-
class HubSourceUsersGroups {
|
|
9
|
-
constructor(auth, options) {
|
|
10
|
-
this.auth = auth;
|
|
11
|
-
this.options = Object.assign({}, defaultOptions, options);
|
|
12
|
-
this.usersSource = new HubSource(auth, 'users', {
|
|
13
|
-
searchMax: this.options.searchMax,
|
|
14
|
-
searchSideThreshold: this.options.searchSideThreshold,
|
|
15
|
-
queryFormatter: query => `nameStartsWith: ${HubSourceUsersGroups.wrapMultiwordQuery(query)} or loginStartsWith: ${HubSourceUsersGroups.wrapMultiwordQuery(query)}`
|
|
16
|
-
});
|
|
17
|
-
this.groupsSource = new HubSource(auth, 'usergroups', {
|
|
18
|
-
searchMax: this.options.searchMax,
|
|
19
|
-
searchSideThreshold: this.options.searchSideThreshold
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
static wrapMultiwordQuery(query) {
|
|
24
|
-
if (query && query.indexOf(' ') !== -1) {
|
|
25
|
-
return `{${query}}`;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
return query;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
createUsersFilterFn(query) {
|
|
32
|
-
if (!query) {
|
|
33
|
-
return () => true;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
const normalizedQuery = query.toLowerCase();
|
|
37
|
-
return it => it.name.toLowerCase().indexOf(normalizedQuery) !== -1 || it.login.toLowerCase().indexOf(normalizedQuery) !== -1;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
getUsers() {
|
|
41
|
-
let query = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
42
|
-
return this.usersSource.get(query, {
|
|
43
|
-
fields: 'id,name,login,total,profile/avatar/url',
|
|
44
|
-
orderBy: 'name'
|
|
45
|
-
}, this.createUsersFilterFn(query));
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
getGroups() {
|
|
49
|
-
let query = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
50
|
-
return this.groupsSource.get(query, {
|
|
51
|
-
fields: 'id,name,total,userCount,iconUrl',
|
|
52
|
-
orderBy: 'name'
|
|
53
|
-
});
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
getUserAndGroups(query) {
|
|
57
|
-
return Promise.all([this.getUsers(query), this.getGroups(query)]);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
export default HubSourceUsersGroups;
|
package/dist/icon/icon.js
DELETED
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
import { a as _objectWithoutProperties, b as _extends, _ 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 deprecate from 'util-deprecate';
|
|
6
|
-
import { Color, Size } from './icon__constants.js';
|
|
7
|
-
export { Size } from './icon__constants.js';
|
|
8
|
-
import { m as modules_29747b80, I as IconSVG } from '../_helpers/icon__svg.js';
|
|
9
|
-
import '../global/memoize.js';
|
|
10
|
-
|
|
11
|
-
const warnSize = deprecate(() => {}, `\`size\`, \`width\` and \`height\` props are not recommended to use in Ring UI \`Icon\` component. The intrinsic sizes of SVG icon (\`width\` and \`height\` SVG attributes) are used instead.
|
|
12
|
-
|
|
13
|
-
We strongly recommend to use icons handcrafted for particular sizes. If your icon doesn't exist in the desired size, please ask your designer to draw one. "Responsive" checkmark should be unchecked when exporting icon.'`);
|
|
14
|
-
class Icon extends PureComponent {
|
|
15
|
-
warnSize() {
|
|
16
|
-
if (this.props.suppressSizeWarning) {
|
|
17
|
-
return;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
warnSize();
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
getStyle() {
|
|
24
|
-
const {
|
|
25
|
-
size,
|
|
26
|
-
width,
|
|
27
|
-
height
|
|
28
|
-
} = this.props;
|
|
29
|
-
|
|
30
|
-
if (width || height) {
|
|
31
|
-
this.warnSize();
|
|
32
|
-
return {
|
|
33
|
-
width,
|
|
34
|
-
height
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
if (size) {
|
|
39
|
-
this.warnSize();
|
|
40
|
-
return {
|
|
41
|
-
width: size,
|
|
42
|
-
height: size
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
return null;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
render() {
|
|
50
|
-
const _this$props = this.props,
|
|
51
|
-
{
|
|
52
|
-
className,
|
|
53
|
-
size,
|
|
54
|
-
color,
|
|
55
|
-
loading,
|
|
56
|
-
glyph: Glyph,
|
|
57
|
-
width,
|
|
58
|
-
height,
|
|
59
|
-
suppressSizeWarning
|
|
60
|
-
} = _this$props,
|
|
61
|
-
restProps = _objectWithoutProperties(_this$props, ["className", "size", "color", "loading", "glyph", "width", "height", "suppressSizeWarning"]);
|
|
62
|
-
|
|
63
|
-
if (!Glyph) {
|
|
64
|
-
return null;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
const classes = classNames(modules_29747b80.icon, {
|
|
68
|
-
[modules_29747b80[color]]: !!color,
|
|
69
|
-
[modules_29747b80.loading]: loading
|
|
70
|
-
}, className);
|
|
71
|
-
return /*#__PURE__*/React.createElement("span", _extends({}, restProps, {
|
|
72
|
-
className: classes
|
|
73
|
-
}), typeof Glyph === 'string' ? /*#__PURE__*/React.createElement(IconSVG, {
|
|
74
|
-
src: Glyph,
|
|
75
|
-
style: this.getStyle()
|
|
76
|
-
}) : /*#__PURE__*/React.createElement(Glyph, {
|
|
77
|
-
className: modules_29747b80.glyph,
|
|
78
|
-
style: this.getStyle()
|
|
79
|
-
}));
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
_defineProperty(Icon, "propTypes", {
|
|
85
|
-
className: PropTypes.string,
|
|
86
|
-
color: PropTypes.string,
|
|
87
|
-
glyph: PropTypes.oneOfType([PropTypes.string, PropTypes.elementType]).isRequired,
|
|
88
|
-
height: PropTypes.number,
|
|
89
|
-
size: PropTypes.number,
|
|
90
|
-
width: PropTypes.number,
|
|
91
|
-
loading: PropTypes.bool,
|
|
92
|
-
suppressSizeWarning: PropTypes.bool
|
|
93
|
-
});
|
|
94
|
-
|
|
95
|
-
_defineProperty(Icon, "defaultProps", {
|
|
96
|
-
className: '',
|
|
97
|
-
color: Color.DEFAULT,
|
|
98
|
-
glyph: ''
|
|
99
|
-
});
|
|
100
|
-
|
|
101
|
-
_defineProperty(Icon, "Color", Color);
|
|
102
|
-
|
|
103
|
-
_defineProperty(Icon, "Size", Size);
|
|
104
|
-
|
|
105
|
-
export default Icon;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Commonly used icon colors.
|
|
3
|
-
* @enum {string}
|
|
4
|
-
*/
|
|
5
|
-
const Color = {
|
|
6
|
-
BLUE: 'blue',
|
|
7
|
-
DEFAULT: '',
|
|
8
|
-
GRAY: 'gray',
|
|
9
|
-
GREEN: 'green',
|
|
10
|
-
MAGENTA: 'magenta',
|
|
11
|
-
RED: 'red',
|
|
12
|
-
WHITE: 'white'
|
|
13
|
-
};
|
|
14
|
-
/**
|
|
15
|
-
* @enum {number}
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
const Size = {
|
|
19
|
-
Size12: 12,
|
|
20
|
-
Size14: 14,
|
|
21
|
-
Size16: 16,
|
|
22
|
-
Size18: 18,
|
|
23
|
-
Size20: 20,
|
|
24
|
-
Size24: 24,
|
|
25
|
-
Size32: 32,
|
|
26
|
-
Size40: 40,
|
|
27
|
-
Size48: 48,
|
|
28
|
-
Size64: 64,
|
|
29
|
-
Size96: 96,
|
|
30
|
-
Size128: 128
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
export { Color, Size };
|
package/dist/icon/icon__svg.js
DELETED
package/dist/icon/index.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export { default } from './icon.js';
|
|
2
|
-
export { Size } from './icon__constants.js';
|
|
3
|
-
import '../_helpers/_rollupPluginBabelHelpers.js';
|
|
4
|
-
import 'react';
|
|
5
|
-
import 'prop-types';
|
|
6
|
-
import 'classnames';
|
|
7
|
-
import 'util-deprecate';
|
|
8
|
-
import '../_helpers/icon__svg.js';
|
|
9
|
-
import '../global/memoize.js';
|