@jetbrains/ring-ui-built 6.0.5-beta.0 → 6.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -6
- package/components/_helpers/_rollupPluginBabelHelpers.js +23 -26
- package/components/_helpers/anchor.js +1 -1
- package/components/_helpers/badge.js +1 -1
- package/components/_helpers/button__classes.js +1 -1
- package/components/_helpers/caption.js +2 -2
- package/components/_helpers/card.js +2 -2
- package/components/_helpers/date-picker.js +1 -1
- package/components/_helpers/dialog__body-scroll-preventer.js +1 -1
- package/components/_helpers/grid.js +1 -1
- package/components/_helpers/header.js +1 -1
- package/components/_helpers/icon__svg.js +2 -2
- package/components/_helpers/input.js +4 -4
- package/components/_helpers/island.js +1 -1
- package/components/_helpers/list.js +1 -1
- package/components/_helpers/query-assist__suggestions.js +2 -2
- package/components/_helpers/select__filter.js +2 -2
- package/components/_helpers/services-link.js +2 -2
- package/components/_helpers/sidebar.js +2 -2
- package/components/_helpers/tab-link.js +2 -2
- package/components/_helpers/table.js +1 -1
- package/components/_helpers/theme.js +1 -1
- package/components/_helpers/title.js +2 -2
- package/components/alert/alert.js +4 -2
- package/components/alert/container.js +2 -2
- package/components/alert-service/alert-service.js +3 -1
- package/components/analytics/analytics.js +1 -1
- package/components/analytics/analytics__custom-plugin.js +2 -3
- package/components/auth/auth.js +4 -1
- package/components/auth/auth__core.js +39 -36
- package/components/auth/background-flow.js +4 -3
- package/components/auth/down-notification.js +4 -2
- package/components/auth/iframe-flow.js +8 -4
- package/components/auth/request-builder.d.ts +1 -0
- package/components/auth/request-builder.js +5 -2
- package/components/auth/response-parser.js +2 -1
- package/components/auth/storage.js +12 -5
- package/components/auth/token-validator.js +6 -4
- package/components/auth/window-flow.js +5 -4
- package/components/auth-dialog/auth-dialog.js +4 -2
- package/components/auth-dialog-service/auth-dialog-service.js +3 -1
- package/components/avatar/avatar.js +4 -1
- package/components/avatar/fallback-avatar.js +2 -1
- package/components/badge/badge.js +1 -1
- package/components/button/button.js +1 -1
- package/components/button-group/button-group.js +1 -1
- package/components/button-set/button-set.js +2 -2
- package/components/button-toolbar/button-toolbar.js +2 -2
- package/components/caret/caret.js +6 -5
- package/components/checkbox/checkbox.js +2 -2
- package/components/clipboard/clipboard-fallback.js +3 -3
- package/components/clipboard/clipboard.js +3 -1
- package/components/code/code.d.ts +1 -0
- package/components/code/code.js +2 -3
- package/components/collapse/collapse-content.d.ts +11 -0
- package/components/collapse/collapse-content.js +121 -0
- package/components/collapse/collapse-context.d.ts +10 -0
- package/components/collapse/collapse-context.js +12 -0
- package/components/collapse/collapse-control.d.ts +11 -0
- package/components/collapse/collapse-control.js +38 -0
- package/components/collapse/collapse.d.ts +12 -0
- package/components/collapse/collapse.js +41 -0
- package/components/collapse/consts.d.ts +4 -0
- package/components/collapse/consts.js +6 -0
- package/components/collapse/utils.d.ts +1 -0
- package/components/collapse/utils.js +5 -0
- package/components/confirm/confirm.js +4 -2
- package/components/confirm-service/confirm-service.js +3 -1
- package/components/content-layout/content-layout.js +1 -1
- package/components/contenteditable/contenteditable.js +1 -1
- package/components/control-label/control-label.js +1 -1
- package/components/data-list/data-list.js +8 -3
- package/components/data-list/item.js +2 -1
- package/components/data-list/selection.js +3 -1
- package/components/date-picker/consts.js +1 -1
- package/components/date-picker/date-input.js +1 -1
- package/components/date-picker/date-picker.js +11 -9
- package/components/date-picker/date-popup.js +7 -7
- package/components/date-picker/day.js +10 -10
- package/components/date-picker/month-names.js +7 -7
- package/components/date-picker/month-slider.js +4 -4
- package/components/date-picker/month.js +6 -6
- package/components/date-picker/months.js +7 -7
- package/components/date-picker/weekdays.js +4 -4
- package/components/date-picker/years.js +12 -12
- package/components/dialog/dialog.js +3 -1
- package/components/dropdown/dropdown.js +3 -3
- package/components/dropdown-menu/dropdown-menu.js +6 -1
- package/components/editable-heading/editable-heading.d.ts +1 -1
- package/components/editable-heading/editable-heading.js +69 -38
- package/components/error-bubble/error-bubble.js +4 -2
- package/components/error-message/error-message.js +1 -1
- package/components/footer/footer.js +1 -1
- package/components/global/create-stateful-context.js +1 -1
- package/components/global/data-tests.js +1 -1
- package/components/global/dom.js +2 -1
- package/components/global/focus-sensor-hoc.js +7 -7
- package/components/global/inject-styles.js +1 -1
- package/components/global/listeners.js +1 -1
- package/components/global/normalize-indent.js +0 -1
- package/components/global/react-dom-renderer.js +2 -1
- package/components/global/rerender-hoc.js +1 -1
- package/components/global/schedule-raf.js +1 -1
- package/components/global/theme.js +2 -0
- package/components/global/url.js +1 -0
- package/components/grid/col.js +1 -2
- package/components/grid/grid.js +1 -2
- package/components/grid/row.js +8 -3
- package/components/group/group.js +2 -2
- package/components/header/header.js +6 -1
- package/components/header/logo.js +1 -1
- package/components/header/profile.js +7 -1
- package/components/header/services.js +3 -1
- package/components/header/smart-profile.js +6 -1
- package/components/header/smart-services.js +6 -3
- package/components/header/tray-icon.js +1 -1
- package/components/header/tray.js +1 -1
- package/components/heading/heading.js +1 -1
- package/components/http/http.js +2 -1
- package/components/http/http.mock.js +2 -1
- package/components/hub-source/hub-source.js +3 -1
- package/components/hub-source/hub-source__user.js +2 -1
- package/components/hub-source/hub-source__users-groups.js +3 -1
- package/components/i18n/i18n.js +1 -1
- package/components/icon/icon.js +1 -1
- package/components/island/adaptive-island-hoc.js +1 -1
- package/components/island/content.js +2 -2
- package/components/island/header.js +2 -1
- package/components/island/island.js +1 -1
- package/components/island-legacy/content-legacy.js +1 -1
- package/components/island-legacy/header-legacy.js +1 -1
- package/components/island-legacy/island-legacy.js +1 -1
- package/components/link/clickableLink.js +1 -1
- package/components/link/link.d.ts +2 -2
- package/components/link/link.js +2 -2
- package/components/list/list.d.ts +0 -1
- package/components/list/list.js +11 -4
- package/components/list/list__custom.js +1 -1
- package/components/list/list__hint.js +1 -1
- package/components/list/list__item.js +5 -2
- package/components/list/list__link.js +1 -1
- package/components/list/list__separator.js +1 -1
- package/components/list/list__title.js +1 -1
- package/components/list/list__users-groups-source.js +6 -1
- package/components/loader/loader.js +4 -2
- package/components/loader/loader__core.js +23 -9
- package/components/loader-inline/loader-inline.js +2 -2
- package/components/loader-screen/loader-screen.js +3 -1
- package/components/login-dialog/login-dialog.js +6 -2
- package/components/login-dialog/service.js +5 -1
- package/components/markdown/markdown.js +2 -2
- package/components/message/message.js +4 -2
- package/components/old-browsers-message/white-list.js +3 -3
- package/components/pager/pager.js +11 -6
- package/components/panel/panel.js +2 -2
- package/components/permissions/permissions.js +2 -1
- package/components/permissions/permissions__cache.js +1 -1
- package/components/popup/popup.js +6 -1
- package/components/popup/popup.target.js +1 -1
- package/components/popup/position.js +2 -1
- package/components/popup-menu/popup-menu.js +6 -1
- package/components/progress-bar/progress-bar.d.ts +6 -0
- package/components/progress-bar/progress-bar.js +12 -5
- package/components/query-assist/query-assist.js +19 -13
- package/components/query-assist/query-assist__suggestions.js +5 -0
- package/components/radio/radio.js +1 -1
- package/components/radio/radio__item.js +2 -2
- package/components/select/select.js +29 -4
- package/components/select/select__filter.js +5 -0
- package/components/select/select__popup.js +10 -5
- package/components/shortcuts/core.js +3 -1
- package/components/shortcuts/shortcuts-hoc.js +3 -1
- package/components/shortcuts/shortcuts.js +3 -1
- package/components/storage/storage.js +3 -0
- package/components/storage/storage__fallback.js +6 -3
- package/components/storage/storage__local.js +3 -1
- package/components/style.css +1 -1
- package/components/tab-trap/tab-trap.js +3 -2
- package/components/table/cell.js +1 -1
- package/components/table/disable-hover-hoc.js +1 -1
- package/components/table/header-cell.js +1 -1
- package/components/table/header.js +1 -1
- package/components/table/multitable.js +9 -8
- package/components/table/row-with-focus-sensor.js +7 -5
- package/components/table/row.js +3 -1
- package/components/table/selection-shortcuts-hoc.js +13 -12
- package/components/table/selection.js +2 -1
- package/components/table/smart-table.js +5 -1
- package/components/table/table.js +5 -1
- package/components/tabs/collapsible-more.js +6 -1
- package/components/tabs/collapsible-tab.js +1 -1
- package/components/tabs/collapsible-tabs.js +6 -1
- package/components/tabs/dumb-tabs.js +6 -1
- package/components/tabs/smart-tabs.js +6 -1
- package/components/tabs/tab.js +1 -1
- package/components/tabs/tabs.js +5 -0
- package/components/tag/tag.js +3 -3
- package/components/tags-input/tags-input.js +15 -10
- package/components/tags-list/tags-list.js +1 -1
- package/components/text/text.js +1 -1
- package/components/toggle/toggle.js +2 -2
- package/components/tooltip/tooltip.js +6 -4
- package/components/user-agreement/service.js +4 -1
- package/components/user-agreement/user-agreement.js +4 -2
- package/components/user-card/card.js +4 -0
- package/components/user-card/smart-user-card-tooltip.js +47 -43
- package/components/user-card/tooltip.js +5 -1
- package/components/user-card/user-card.js +4 -0
- package/package.json +8 -17
- package/typings.d.ts +0 -54
- package/babel.config.js +0 -25
- package/jslint-xml.js +0 -38
- package/postcss.config.js +0 -20
- package/webpack.config.js +0 -118
package/README.md
CHANGED
@@ -1,27 +1,31 @@
|
|
1
1
|
# Ring UI — JetBrains Web UI components
|
2
2
|
[![Storybook][storybook-img]][docsite] [![Build Status][ci-img]][ci-bt] [![Storybook][browserstack-img]][browserstack-build-page] [![NPM version][npm-version-img]][npm-package] [![NPM downloads][npm-count-img]][npm-package]
|
3
3
|
|
4
|
-
[](https://
|
4
|
+
[](https://github.com/JetBrains#jetbrains-on-github)
|
5
5
|
|
6
6
|
This collection of UI components aims to provide all the necessary building blocks for web-based products built inside JetBrains, as well as third-party plugins developed for JetBrains' products.
|
7
7
|
|
8
8
|
## Try now
|
9
|
-
* Try the [codesandbox](https://codesandbox.io/
|
9
|
+
* Try the [codesandbox](https://codesandbox.io/p/devbox/ring-ui-6-0-demo-l5v5fk), based on `create-react-app` tooling, to see and try the UI components
|
10
10
|
* Check out [list of examples](https://jetbrains.github.io/ring-ui/master/index.html) for each component
|
11
11
|
|
12
12
|
## Installation
|
13
13
|
|
14
|
-
|
14
|
+
* For Quick Start, use pre-built version:
|
15
|
+
`npm install @jetbrains/ring-ui-built`
|
16
|
+
* For complex projects, use "sources" version
|
17
|
+
`npm install @jetbrains/ring-ui`
|
18
|
+
You will then need to include building Ring UI into your WebPack build (see "Building Ring UI from source via Webpack" below)
|
15
19
|
|
16
20
|
### Quick start
|
17
21
|
|
18
22
|
The easiest way is to import necessary components as ES modules:
|
19
23
|
```js
|
20
24
|
// You need to import RingUI styles once
|
21
|
-
import '@jetbrains/ring-ui/
|
25
|
+
import '@jetbrains/ring-ui-built/components/style.css';
|
22
26
|
|
23
|
-
import alertService from '@jetbrains/ring-ui/
|
24
|
-
import Button from '@jetbrains/ring-ui/
|
27
|
+
import alertService from '@jetbrains/ring-ui-built/components/alert-service/alert-service';
|
28
|
+
import Button from '@jetbrains/ring-ui-built/components/button/button';
|
25
29
|
|
26
30
|
...
|
27
31
|
|
@@ -1,3 +1,11 @@
|
|
1
|
+
function _isNativeReflectConstruct() {
|
2
|
+
try {
|
3
|
+
var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
4
|
+
} catch (t) {}
|
5
|
+
return (_isNativeReflectConstruct = function () {
|
6
|
+
return !!t;
|
7
|
+
})();
|
8
|
+
}
|
1
9
|
function _iterableToArrayLimit(r, l) {
|
2
10
|
var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
3
11
|
if (null != t) {
|
@@ -347,6 +355,20 @@ function _regeneratorRuntime() {
|
|
347
355
|
}
|
348
356
|
}, e;
|
349
357
|
}
|
358
|
+
function _toPrimitive(t, r) {
|
359
|
+
if ("object" != typeof t || !t) return t;
|
360
|
+
var e = t[Symbol.toPrimitive];
|
361
|
+
if (void 0 !== e) {
|
362
|
+
var i = e.call(t, r || "default");
|
363
|
+
if ("object" != typeof i) return i;
|
364
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
365
|
+
}
|
366
|
+
return ("string" === r ? String : Number)(t);
|
367
|
+
}
|
368
|
+
function _toPropertyKey(t) {
|
369
|
+
var i = _toPrimitive(t, "string");
|
370
|
+
return "symbol" == typeof i ? i : String(i);
|
371
|
+
}
|
350
372
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
351
373
|
try {
|
352
374
|
var info = gen[key](arg);
|
@@ -456,17 +478,6 @@ function _setPrototypeOf(o, p) {
|
|
456
478
|
};
|
457
479
|
return _setPrototypeOf(o, p);
|
458
480
|
}
|
459
|
-
function _isNativeReflectConstruct() {
|
460
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
461
|
-
if (Reflect.construct.sham) return false;
|
462
|
-
if (typeof Proxy === "function") return true;
|
463
|
-
try {
|
464
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
465
|
-
return true;
|
466
|
-
} catch (e) {
|
467
|
-
return false;
|
468
|
-
}
|
469
|
-
}
|
470
481
|
function _objectWithoutPropertiesLoose(source, excluded) {
|
471
482
|
if (source == null) return {};
|
472
483
|
var target = {};
|
@@ -630,19 +641,5 @@ function _createForOfIteratorHelper(o, allowArrayLike) {
|
|
630
641
|
}
|
631
642
|
};
|
632
643
|
}
|
633
|
-
function _toPrimitive(input, hint) {
|
634
|
-
if (typeof input !== "object" || input === null) return input;
|
635
|
-
var prim = input[Symbol.toPrimitive];
|
636
|
-
if (prim !== undefined) {
|
637
|
-
var res = prim.call(input, hint || "default");
|
638
|
-
if (typeof res !== "object") return res;
|
639
|
-
throw new TypeError("@@toPrimitive must return a primitive value.");
|
640
|
-
}
|
641
|
-
return (hint === "string" ? String : Number)(input);
|
642
|
-
}
|
643
|
-
function _toPropertyKey(arg) {
|
644
|
-
var key = _toPrimitive(arg, "string");
|
645
|
-
return typeof key === "symbol" ? key : String(key);
|
646
|
-
}
|
647
644
|
|
648
|
-
export { _defineProperty as _, _inherits as a, _createSuper as b, _classCallCheck as c,
|
645
|
+
export { _defineProperty as _, _inherits as a, _createSuper as b, _classCallCheck as c, _assertThisInitialized as d, _asyncToGenerator as e, _createClass as f, _objectWithoutProperties as g, _objectSpread2 as h, _extends as i, _regeneratorRuntime as j, _slicedToArray as k, _toConsumableArray as l, _createForOfIteratorHelper as m, _get as n, _getPrototypeOf as o, _toPropertyKey as p };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { g as _objectWithoutProperties, i as _extends } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import React, { memo } from 'react';
|
3
3
|
import PropTypes from 'prop-types';
|
4
4
|
import chevronDown from '@jetbrains/icons/chevron-10px';
|
@@ -1,3 +1,3 @@
|
|
1
|
-
var modules_6c9187df = {"
|
1
|
+
var modules_6c9187df = {"light":"light_rui_2ac4","badge":"badge_rui_4b7d","gray":"gray_rui_4b7d","valid":"valid_rui_4b7d","invalid":"invalid_rui_4b7d","disabled":"disabled_rui_4b7d"};
|
2
2
|
|
3
3
|
export { modules_6c9187df as m };
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import classNames from 'classnames';
|
2
2
|
|
3
|
-
var modules_e81895c9 = {"
|
3
|
+
var modules_e81895c9 = {"button-shadow":"inset 0 0 0 1px","loaderWidth":"calc(var(--ring-unit)*8)","light":"light_rui_2ac4","heightS":"heightS_rui_0b90","heightM":"heightM_rui_0b90","heightL":"heightL_rui_0b90","button":"button_rui_0b90","active":"active_rui_0b90","withIcon":"withIcon_rui_0b90","icon":"icon_rui_0b90","primary":"primary_rui_0b90","loader":"loader_rui_0b90","loaderBackground":"loaderBackground_rui_0b90","danger":"danger_rui_0b90","text":"text_rui_0b90","content":"content_rui_0b90","text-loading":"text-loading_rui_0b90","inline":"inline_rui_0b90","withNormalIcon":"withNormalIcon_rui_0b90","withDangerIcon":"withDangerIcon_rui_0b90","progress":"progress_rui_0b90","delayed":"delayed_rui_0b90","short":"short_rui_0b90","dropdownIcon":"dropdownIcon_rui_0b90"};
|
4
4
|
|
5
5
|
function getButtonClasses(_ref) {
|
6
6
|
var className = _ref.className,
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck,
|
1
|
+
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, f as _createClass, i as _extends } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import React, { PureComponent } from 'react';
|
3
3
|
import PropTypes from 'prop-types';
|
4
4
|
import classNames from 'classnames';
|
5
5
|
|
6
|
-
var modules_1068e447 = {"
|
6
|
+
var modules_1068e447 = {"button":"button_rui_0b90","active":"active_rui_0b90","primary":"primary_rui_0b90","button-shadow":"i__const_button_shadow_3","buttonGroup":"buttonGroup_rui_bbca common_rui_bbca buttonGroup_rui_f4fc","light":"light_rui_2ac4","common":"common_rui_bbca","split":"split_rui_bbca common_rui_bbca buttonGroup_rui_f4fc","caption":"caption_rui_bbca font_rui_8bff"};
|
7
7
|
|
8
8
|
var Caption = /*#__PURE__*/function (_PureComponent) {
|
9
9
|
_inherits(Caption, _PureComponent);
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck,
|
1
|
+
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass, g as _objectWithoutProperties, i as _extends } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.array.concat.js';
|
3
3
|
import React, { PureComponent } from 'react';
|
4
4
|
import PropTypes from 'prop-types';
|
@@ -12,7 +12,7 @@ import Icon from '../icon/icon.js';
|
|
12
12
|
import { I18nContext } from '../i18n/i18n-context.js';
|
13
13
|
import { Size as Size$1 } from '../icon/icon__constants.js';
|
14
14
|
|
15
|
-
var modules_a4196c17 = {"
|
15
|
+
var modules_a4196c17 = {"light":"light_rui_2ac4","userCardSpaced":"userCardSpaced_rui_6e59","userInformationContainer":"userInformationContainer_rui_6e59","userAvatar":"userAvatar_rui_6e59","userInformation":"userInformation_rui_6e59","userInformationGeneral":"userInformationGeneral_rui_6e59","userNameLine":"userNameLine_rui_6e59","userName":"userName_rui_6e59","userLogin":"userLogin_rui_6e59","userEmail":"userEmail_rui_6e59","userCopyIcon":"userCopyIcon_rui_6e59","userEmailWrapper":"userEmailWrapper_rui_6e59","unverifiedLabel":"unverifiedLabel_rui_6e59","userNameInfo":"userNameInfo_rui_6e59","userActiveStatus":"userActiveStatus_rui_6e59","online":"online_rui_6e59"};
|
16
16
|
|
17
17
|
var _excluded = ["children", "info", "className", "user", "avatarInfo"];
|
18
18
|
var translationsShape = PropTypes.shape({
|
@@ -1,3 +1,3 @@
|
|
1
|
-
var modules_0c7b7d96 = {"
|
1
|
+
var modules_0c7b7d96 = {"footer-height":"calc(var(--ring-unit)*8)","breakpoint-small":"640px","breakpoint-middle":"960px","breakpoint-large":"1200px","extra-small-screen-media":"(max-width: 639px)","small-screen-media":"(min-width: 640px) and (max-width: 959px)","middle-screen-media":"(min-width: 960px) and (max-width: 1199px)","large-screen-media":"(min-width: 1200px)","cellSize":"calc(var(--ring-unit)*3)","calHeight":"calc(var(--ring-unit)*36)","calWidth":"calc(var(--ring-unit)*37)","yearHeight":"calc(var(--ring-unit)*4)","yearWidth":"calc(var(--ring-unit)*6)","light":"light_rui_2ac4","clearfix":"clearfix_rui_e0bd","font":"font_rui_e0bd","font-lower":"font-lower_rui_e0bd font_rui_e0bd","font-smaller":"font-smaller_rui_e0bd font-lower_rui_e0bd font_rui_e0bd","font-smaller-lower":"font-smaller-lower_rui_e0bd font-smaller_rui_e0bd font-lower_rui_e0bd font_rui_e0bd","font-larger-lower":"font-larger-lower_rui_e0bd font-lower_rui_e0bd font_rui_e0bd","font-larger":"font-larger_rui_e0bd font-larger-lower_rui_e0bd font-lower_rui_e0bd font_rui_e0bd","thin-font":"thin-font_rui_e0bd","monospace-font":"monospace-font_rui_e0bd","ellipsis":"ellipsis_rui_e0bd","resetButton":"resetButton_rui_e0bd","container":"container_rui_e0bd","hoverable":"hoverable_rui_e0bd","datePicker":"datePicker_rui_e0bd","inline":"inline_rui_e0bd","sizeS":"sizeS_rui_e0bd","sizeM":"sizeM_rui_e0bd","sizeL":"sizeL_rui_e0bd","sizeFULL":"sizeFULL_rui_e0bd","sizeAUTO":"sizeAUTO_rui_e0bd","displayDate":"displayDate_rui_e0bd","displayRange":"displayRange_rui_e0bd","clear":"clear_rui_e0bd","datePopup":"datePopup_rui_e0bd","filterWrapper":"filterWrapper_rui_e0bd filterWrapper_rui_531d","filter":"filter_rui_e0bd filter_rui_531d","calendarIcon":"calendarIcon_rui_e0bd","anchor":"anchor_rui_e0bd","anchorContent":"anchorContent_rui_e0bd","chevronDownIcon":"chevronDownIcon_rui_e0bd","fromInput":"fromInput_rui_e0bd","fromInputWithDivider":"fromInputWithDivider_rui_e0bd","toInput":"toInput_rui_e0bd","dateInput":"dateInput_rui_e0bd","timeInputWithDivider":"timeInputWithDivider_rui_e0bd","weekdays":"weekdays_rui_e0bd","weekday":"weekday_rui_e0bd","weekend":"weekend_rui_e0bd","calendar":"calendar_rui_e0bd","months":"months_rui_e0bd","days":"days_rui_e0bd","month":"month_rui_e0bd","monthTitle":"monthTitle_rui_e0bd","day":"day_rui_e0bd resetButton_rui_8bff","between":"between_rui_e0bd","activeBetween":"activeBetween_rui_e0bd","current":"current_rui_e0bd","active":"active_rui_e0bd","disabled":"disabled_rui_e0bd","from":"from_rui_e0bd","to":"to_rui_e0bd","Monday":"Monday_rui_e0bd","spread":"spread_rui_e0bd","activeSpread":"activeSpread_rui_e0bd","first":"first_rui_e0bd","Tuesday":"Tuesday_rui_e0bd","Friday":"Friday_rui_e0bd","Saturday":"Saturday_rui_e0bd","Sunday":"Sunday_rui_e0bd","empty":"empty_rui_e0bd","today":"today_rui_e0bd","year":"year_rui_e0bd hoverable_rui_e0bd resetButton_rui_8bff","monthNames":"monthNames_rui_e0bd","monthName":"monthName_rui_e0bd hoverable_rui_e0bd resetButton_rui_8bff","monthSlider":"monthSlider_rui_e0bd resetButton_rui_8bff","dragging":"dragging_rui_e0bd","range":"range_rui_e0bd","years":"years_rui_e0bd","currentYear":"currentYear_rui_e0bd"};
|
2
2
|
|
3
3
|
export { modules_0c7b7d96 as m };
|
@@ -4,7 +4,7 @@ import 'core-js/modules/es.set.js';
|
|
4
4
|
import 'core-js/modules/web.dom-collections.iterator.js';
|
5
5
|
import scrollbarWidth from 'scrollbar-width';
|
6
6
|
|
7
|
-
var modules_5e9b8c03 = {"
|
7
|
+
var modules_5e9b8c03 = {"header":"header_rui_1d72","light":"light_rui_2ac4","container":"container_rui_381e","innerContainer":"innerContainer_rui_381e","content":"content_rui_381e","panel":"panel_rui_381e","clickableOverlay":"clickableOverlay_rui_381e","closeIcon":"closeIcon_rui_381e","closeButton":"closeButton_rui_381e","closeButtonOutside":"closeButtonOutside_rui_381e","closeButtonInside":"closeButtonInside_rui_381e","documentWithoutScroll":"documentWithoutScroll_rui_381e","popupTarget":"popupTarget_rui_381e","dense":"dense_rui_381e"};
|
8
8
|
|
9
9
|
var isPrevented = new Set();
|
10
10
|
var previousDocumentWidth = null;
|
@@ -1,3 +1,3 @@
|
|
1
|
-
var modules_855170c0 = {"
|
1
|
+
var modules_855170c0 = {"breakpoint-small":"i__const_breakpoint_small_0","breakpoint-middle":"i__const_breakpoint_middle_1","breakpoint-large":"i__const_breakpoint_large_2","large-screen-media":"i__const_large_screen_media_3","middle-screen-media":"i__const_middle_screen_media_4","small-screen-media":"i__const_small_screen_media_5","gutterWidth":"(var(--ring-unit) * 2)","gutterCompensation":"calc((var(--ring-unit)*2)/-2)","outerMargin":"calc(var(--ring-unit)*2)","containerSmall":"calc(640px + var(--ring-unit)*2)","containerMedium":"calc(960px + var(--ring-unit)*2)","containerLarge":"calc(1200px + var(--ring-unit)*2)","width-1":"8.3333%","width-2":"16.6667%","width-3":"25%","width-4":"33.3333%","width-5":"41.6667%","width-6":"50%","width-7":"58.3333%","width-8":"66.6667%","width-9":"75%","width-10":"83.3333%","width-11":"91.6667%","width-12":"100%","light":"light_rui_2ac4","container-fluid":"container-fluid_rui_a74c","container":"container_rui_a74c","row":"row_rui_a74c","reverse":"reverse_rui_a74c","col":"col_rui_a74c","col-xs":"col-xs_rui_a74c","col-xs-1":"col-xs-1_rui_a74c","col-xs-2":"col-xs-2_rui_a74c","col-xs-3":"col-xs-3_rui_a74c","col-xs-4":"col-xs-4_rui_a74c","col-xs-5":"col-xs-5_rui_a74c","col-xs-6":"col-xs-6_rui_a74c","col-xs-7":"col-xs-7_rui_a74c","col-xs-8":"col-xs-8_rui_a74c","col-xs-9":"col-xs-9_rui_a74c","col-xs-10":"col-xs-10_rui_a74c","col-xs-11":"col-xs-11_rui_a74c","col-xs-12":"col-xs-12_rui_a74c","col-xs-offset-0":"col-xs-offset-0_rui_a74c","col-xs-offset-1":"col-xs-offset-1_rui_a74c","col-xs-offset-2":"col-xs-offset-2_rui_a74c","col-xs-offset-3":"col-xs-offset-3_rui_a74c","col-xs-offset-4":"col-xs-offset-4_rui_a74c","col-xs-offset-5":"col-xs-offset-5_rui_a74c","col-xs-offset-6":"col-xs-offset-6_rui_a74c","col-xs-offset-7":"col-xs-offset-7_rui_a74c","col-xs-offset-8":"col-xs-offset-8_rui_a74c","col-xs-offset-9":"col-xs-offset-9_rui_a74c","col-xs-offset-10":"col-xs-offset-10_rui_a74c","col-xs-offset-11":"col-xs-offset-11_rui_a74c","col-xs-offset-12":"col-xs-offset-12_rui_a74c","start-xs":"start-xs_rui_a74c","center-xs":"center-xs_rui_a74c","end-xs":"end-xs_rui_a74c","top-xs":"top-xs_rui_a74c","middle-xs":"middle-xs_rui_a74c","baseline-xs":"baseline-xs_rui_a74c","bottom-xs":"bottom-xs_rui_a74c","around-xs":"around-xs_rui_a74c","between-xs":"between-xs_rui_a74c","first-xs":"first-xs_rui_a74c","last-xs":"last-xs_rui_a74c","col-sm":"col-sm_rui_a74c","col-sm-1":"col-sm-1_rui_a74c","col-sm-2":"col-sm-2_rui_a74c","col-sm-3":"col-sm-3_rui_a74c","col-sm-4":"col-sm-4_rui_a74c","col-sm-5":"col-sm-5_rui_a74c","col-sm-6":"col-sm-6_rui_a74c","col-sm-7":"col-sm-7_rui_a74c","col-sm-8":"col-sm-8_rui_a74c","col-sm-9":"col-sm-9_rui_a74c","col-sm-10":"col-sm-10_rui_a74c","col-sm-11":"col-sm-11_rui_a74c","col-sm-12":"col-sm-12_rui_a74c","col-sm-offset-0":"col-sm-offset-0_rui_a74c","col-sm-offset-1":"col-sm-offset-1_rui_a74c","col-sm-offset-2":"col-sm-offset-2_rui_a74c","col-sm-offset-3":"col-sm-offset-3_rui_a74c","col-sm-offset-4":"col-sm-offset-4_rui_a74c","col-sm-offset-5":"col-sm-offset-5_rui_a74c","col-sm-offset-6":"col-sm-offset-6_rui_a74c","col-sm-offset-7":"col-sm-offset-7_rui_a74c","col-sm-offset-8":"col-sm-offset-8_rui_a74c","col-sm-offset-9":"col-sm-offset-9_rui_a74c","col-sm-offset-10":"col-sm-offset-10_rui_a74c","col-sm-offset-11":"col-sm-offset-11_rui_a74c","col-sm-offset-12":"col-sm-offset-12_rui_a74c","start-sm":"start-sm_rui_a74c","center-sm":"center-sm_rui_a74c","end-sm":"end-sm_rui_a74c","top-sm":"top-sm_rui_a74c","middle-sm":"middle-sm_rui_a74c","baseline-sm":"baseline-sm_rui_a74c","bottom-sm":"bottom-sm_rui_a74c","around-sm":"around-sm_rui_a74c","between-sm":"between-sm_rui_a74c","first-sm":"first-sm_rui_a74c","last-sm":"last-sm_rui_a74c","col-md":"col-md_rui_a74c","col-md-1":"col-md-1_rui_a74c","col-md-2":"col-md-2_rui_a74c","col-md-3":"col-md-3_rui_a74c","col-md-4":"col-md-4_rui_a74c","col-md-5":"col-md-5_rui_a74c","col-md-6":"col-md-6_rui_a74c","col-md-7":"col-md-7_rui_a74c","col-md-8":"col-md-8_rui_a74c","col-md-9":"col-md-9_rui_a74c","col-md-10":"col-md-10_rui_a74c","col-md-11":"col-md-11_rui_a74c","col-md-12":"col-md-12_rui_a74c","col-md-offset-0":"col-md-offset-0_rui_a74c","col-md-offset-1":"col-md-offset-1_rui_a74c","col-md-offset-2":"col-md-offset-2_rui_a74c","col-md-offset-3":"col-md-offset-3_rui_a74c","col-md-offset-4":"col-md-offset-4_rui_a74c","col-md-offset-5":"col-md-offset-5_rui_a74c","col-md-offset-6":"col-md-offset-6_rui_a74c","col-md-offset-7":"col-md-offset-7_rui_a74c","col-md-offset-8":"col-md-offset-8_rui_a74c","col-md-offset-9":"col-md-offset-9_rui_a74c","col-md-offset-10":"col-md-offset-10_rui_a74c","col-md-offset-11":"col-md-offset-11_rui_a74c","col-md-offset-12":"col-md-offset-12_rui_a74c","start-md":"start-md_rui_a74c","center-md":"center-md_rui_a74c","end-md":"end-md_rui_a74c","top-md":"top-md_rui_a74c","middle-md":"middle-md_rui_a74c","baseline-md":"baseline-md_rui_a74c","bottom-md":"bottom-md_rui_a74c","around-md":"around-md_rui_a74c","between-md":"between-md_rui_a74c","first-md":"first-md_rui_a74c","last-md":"last-md_rui_a74c","col-lg":"col-lg_rui_a74c","col-lg-1":"col-lg-1_rui_a74c","col-lg-2":"col-lg-2_rui_a74c","col-lg-3":"col-lg-3_rui_a74c","col-lg-4":"col-lg-4_rui_a74c","col-lg-5":"col-lg-5_rui_a74c","col-lg-6":"col-lg-6_rui_a74c","col-lg-7":"col-lg-7_rui_a74c","col-lg-8":"col-lg-8_rui_a74c","col-lg-9":"col-lg-9_rui_a74c","col-lg-10":"col-lg-10_rui_a74c","col-lg-11":"col-lg-11_rui_a74c","col-lg-12":"col-lg-12_rui_a74c","col-lg-offset-0":"col-lg-offset-0_rui_a74c","col-lg-offset-1":"col-lg-offset-1_rui_a74c","col-lg-offset-2":"col-lg-offset-2_rui_a74c","col-lg-offset-3":"col-lg-offset-3_rui_a74c","col-lg-offset-4":"col-lg-offset-4_rui_a74c","col-lg-offset-5":"col-lg-offset-5_rui_a74c","col-lg-offset-6":"col-lg-offset-6_rui_a74c","col-lg-offset-7":"col-lg-offset-7_rui_a74c","col-lg-offset-8":"col-lg-offset-8_rui_a74c","col-lg-offset-9":"col-lg-offset-9_rui_a74c","col-lg-offset-10":"col-lg-offset-10_rui_a74c","col-lg-offset-11":"col-lg-offset-11_rui_a74c","col-lg-offset-12":"col-lg-offset-12_rui_a74c","start-lg":"start-lg_rui_a74c","center-lg":"center-lg_rui_a74c","end-lg":"end-lg_rui_a74c","top-lg":"top-lg_rui_a74c","middle-lg":"middle-lg_rui_a74c","baseline-lg":"baseline-lg_rui_a74c","bottom-lg":"bottom-lg_rui_a74c","around-lg":"around-lg_rui_a74c","between-lg":"between-lg_rui_a74c","first-lg":"first-lg_rui_a74c","last-lg":"last-lg_rui_a74c"};
|
2
2
|
|
3
3
|
export { modules_855170c0 as m };
|
@@ -1,3 +1,3 @@
|
|
1
|
-
var modules_47759f5e = {"dark":"dark_rui_eb55","
|
1
|
+
var modules_47759f5e = {"dark":"dark_rui_eb55","link":"link_rui_d382","active":"active_rui_d382","compensate":"3px","compensated":"calc(var(--ring-unit)*8 - 3px)","light":"light_rui_2ac4","header":"header_rui_1238","headerSpaced":"headerSpaced_rui_1238","logo":"logo_rui_1238","tray":"tray_rui_1238","trayItemContent":"trayItemContent_rui_1238","icon":"icon_rui_1238","main":"main_rui_1238","rotatable":"rotatable_rui_1238","rotated":"rotated_rui_1238","profileEmpty":"profileEmpty_rui_1238","profile":"profile_rui_1238 profileEmpty_rui_1238","avatarWrapper":"avatarWrapper_rui_1238 resetButton_rui_8bff","hasUpdates":"hasUpdates_rui_1238"};
|
2
2
|
|
3
3
|
export { modules_47759f5e as m };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { g as _objectWithoutProperties, i as _extends } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.regexp.exec.js';
|
3
3
|
import 'core-js/modules/es.string.replace.js';
|
4
4
|
import 'core-js/modules/es.string.starts-with.js';
|
@@ -7,7 +7,7 @@ import classNames from 'classnames';
|
|
7
7
|
import PropTypes from 'prop-types';
|
8
8
|
import memoize from '../global/memoize.js';
|
9
9
|
|
10
|
-
var modules_29747b80 = {"
|
10
|
+
var modules_29747b80 = {"light":"light_rui_2ac4","icon":"icon_rui_2d39","glyph":"glyph_rui_2d39","compatibilityMode":"compatibilityMode_rui_2d39","gray":"gray_rui_2d39","hover":"hover_rui_2d39","green":"green_rui_2d39","magenta":"magenta_rui_2d39","red":"red_rui_2d39","blue":"blue_rui_2d39","white":"white_rui_2d39","loading":"loading_rui_2d39","icon-loading":"icon-loading_rui_2d39"};
|
11
11
|
|
12
12
|
var _excluded = ["src", "className"];
|
13
13
|
function convertReactSVGDOMProperty(str) {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck,
|
1
|
+
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass, g as _objectWithoutProperties, i as _extends } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.array.concat.js';
|
3
3
|
import 'core-js/modules/es.object.values.js';
|
4
4
|
import React, { PureComponent } from 'react';
|
@@ -14,7 +14,7 @@ import composeRefs from '../global/composeRefs.js';
|
|
14
14
|
import { ControlsHeightContext } from '../global/controls-height.js';
|
15
15
|
import { ControlLabel } from '../control-label/control-label.js';
|
16
16
|
|
17
|
-
var modules_88cfaf40 = {"
|
17
|
+
var modules_88cfaf40 = {"button-shadow":"inset 0 0 0 1px","loaderWidth":"calc(var(--ring-unit)*8)","light":"light_rui_2ac4","heightS":"heightS_rui_e356","heightM":"heightM_rui_e356","heightL":"heightL_rui_e356","button":"button_rui_e356","active":"active_rui_e356","withIcon":"withIcon_rui_e356","icon":"icon_rui_e356","primary":"primary_rui_e356","loader":"loader_rui_e356","loaderBackground":"loaderBackground_rui_e356","danger":"danger_rui_e356","text":"text_rui_e356","content":"content_rui_e356","text-loading":"text-loading_rui_e356","inline":"inline_rui_e356","withNormalIcon":"withNormalIcon_rui_e356","withDangerIcon":"withDangerIcon_rui_e356","progress":"progress_rui_e356","delayed":"delayed_rui_e356","short":"short_rui_e356","dropdownIcon":"dropdownIcon_rui_e356","outerContainer":"outerContainer_rui_e356","borderless":"borderless_rui_e356","container":"container_rui_e356","input":"input_rui_e356","error":"error_rui_e356","clearable":"clearable_rui_e356","clear":"clear_rui_e356","empty":"empty_rui_e356","errorText":"errorText_rui_e356","sizeS":"sizeS_rui_e356","sizeM":"sizeM_rui_e356","sizeL":"sizeL_rui_e356","sizeFULL":"sizeFULL_rui_e356"};
|
18
18
|
|
19
19
|
var _excluded = ["size", "active", "multiline", "borderless", "label", "labelType", "error", "className", "inputClassName", "children", "value", "onClear", "disabled", "inputRef", "onChange", "enableShortcuts", "id", "placeholder", "icon", "translations", "height", "afterInput"];
|
20
20
|
function noop() {}
|
@@ -54,14 +54,14 @@ var Input = /*#__PURE__*/function (_PureComponent) {
|
|
54
54
|
_defineProperty(_assertThisInitialized(_this), "handleInputChange", function (e) {
|
55
55
|
if (!_this.props.multiline) {
|
56
56
|
var _this$props$onChange, _this$props;
|
57
|
-
(_this$props$onChange = (_this$props = _this.props).onChange) === null || _this$props$onChange === void 0
|
57
|
+
(_this$props$onChange = (_this$props = _this.props).onChange) === null || _this$props$onChange === void 0 || _this$props$onChange.call(_this$props, e);
|
58
58
|
_this.checkValue();
|
59
59
|
}
|
60
60
|
});
|
61
61
|
_defineProperty(_assertThisInitialized(_this), "handleTextareaChange", function (e) {
|
62
62
|
if (_this.props.multiline) {
|
63
63
|
var _this$props$onChange2, _this$props2;
|
64
|
-
(_this$props$onChange2 = (_this$props2 = _this.props).onChange) === null || _this$props$onChange2 === void 0
|
64
|
+
(_this$props$onChange2 = (_this$props2 = _this.props).onChange) === null || _this$props$onChange2 === void 0 || _this$props$onChange2.call(_this$props2, e);
|
65
65
|
_this.checkValue();
|
66
66
|
}
|
67
67
|
});
|
@@ -1,3 +1,3 @@
|
|
1
|
-
var modules_e6a056e1 = {"
|
1
|
+
var modules_e6a056e1 = {"gradientStart":"rgba(255, 255, 255, 0)","gradientStop":"var(--ring-content-background-color)","light":"light_rui_2ac4","island":"island_rui_1d72","withTransparentBottomBorder":"withTransparentBottomBorder_rui_1d72","header":"header_rui_1d72","withBottomBorder":"withBottomBorder_rui_1d72","title":"title_rui_1d72","narrowIsland":"narrowIsland_rui_1d72","content":"content_rui_1d72","scrollableWrapper":"scrollableWrapper_rui_1d72","withoutPaddings":"withoutPaddings_rui_1d72","contentWithTopFade":"contentWithTopFade_rui_1d72","contentWithBottomFade":"contentWithBottomFade_rui_1d72"};
|
2
2
|
|
3
3
|
export { modules_e6a056e1 as m };
|
@@ -1,3 +1,3 @@
|
|
1
|
-
var modules_3b67a421 = {"
|
1
|
+
var modules_3b67a421 = {"light":"light_rui_2ac4","list":"list_rui_93ef","simpleInner":"simpleInner_rui_93ef","scrolling":"scrolling_rui_93ef","separator":"separator_rui_93ef","separator_first":"separator_first_rui_93ef","item":"item_rui_93ef","itemContainer":"itemContainer_rui_93ef","compact":"compact_rui_93ef","error":"error_rui_93ef","add":"add_rui_93ef","top":"top_rui_93ef","left":"left_rui_93ef","label":"label_rui_93ef","description":"description_rui_93ef","right":"right_rui_93ef","details":"details_rui_93ef","padded":"padded_rui_93ef","hint":"hint_rui_93ef","action":"action_rui_93ef","actionLink":"actionLink_rui_93ef","hover":"hover_rui_93ef","icon":"icon_rui_93ef","highlight":"highlight_rui_93ef","service":"service_rui_93ef","glyph":"glyph_rui_93ef","avatar":"avatar_rui_93ef glyph_rui_93ef","rightGlyph":"rightGlyph_rui_93ef glyph_rui_93ef","checkboxContainer":"checkboxContainer_rui_93ef","title":"title_rui_93ef","title_first":"title_first_rui_93ef","text":"text_rui_93ef","fade":"fade_rui_93ef","disabled":"disabled_rui_93ef"};
|
2
2
|
|
3
3
|
export { modules_3b67a421 as m };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { f as _createClass, c as _classCallCheck } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.symbol.js';
|
3
3
|
import 'core-js/modules/es.symbol.description.js';
|
4
4
|
import 'core-js/modules/es.object.to-string.js';
|
@@ -6,7 +6,7 @@ import 'core-js/modules/web.dom-collections.for-each.js';
|
|
6
6
|
import React from 'react';
|
7
7
|
import List from '../list/list.js';
|
8
8
|
|
9
|
-
var modules_da7ab055 = {"
|
9
|
+
var modules_da7ab055 = {"button-shadow":"inset 0 0 0 1px","loaderWidth":"calc(var(--ring-unit)*8)","overInputZIndex":"2","inputGap":"calc(var(--ring-unit)*3)","light":"light_rui_2ac4","heightS":"heightS_rui_d22e","heightM":"heightM_rui_d22e","heightL":"heightL_rui_d22e","button":"button_rui_d22e","active":"active_rui_d22e","withIcon":"withIcon_rui_d22e","icon":"icon_rui_d22e","primary":"primary_rui_d22e","loader":"loader_rui_d22e","loaderBackground":"loaderBackground_rui_d22e","danger":"danger_rui_d22e","text":"text_rui_d22e","content":"content_rui_d22e","text-loading":"text-loading_rui_d22e","inline":"inline_rui_d22e","withNormalIcon":"withNormalIcon_rui_d22e","withDangerIcon":"withDangerIcon_rui_d22e","progress":"progress_rui_d22e","delayed":"delayed_rui_d22e","short":"short_rui_d22e","dropdownIcon":"dropdownIcon_rui_d22e","queryAssist":"queryAssist_rui_d22e","error":"error_rui_d22e","queryAssistDisabled":"queryAssistDisabled_rui_d22e","huge":"huge_rui_d22e","actions":"actions_rui_d22e","input":"input_rui_d22e","letter-text":"letter-text_rui_d22e","letterDefault":"letterDefault_rui_d22e","letter-field-name":"letter-field-name_rui_d22e","letter-field-value":"letter-field-value_rui_d22e","letter-operator":"letter-operator_rui_d22e","letter-error":"letter-error_rui_d22e","highlight":"highlight_rui_d22e","service":"service_rui_d22e","placeholder":"placeholder_rui_d22e resetButton_rui_8bff","hugePlaceholder":"hugePlaceholder_rui_d22e","letter":"letter_rui_d22e","rightSearchButton":"rightSearchButton_rui_d22e","clear":"clear_rui_d22e","withoutGlass":"withoutGlass_rui_d22e","loaderActive":"loaderActive_rui_d22e","loaderOnTheRight":"loaderOnTheRight_rui_d22e","inputRevertOrder":"inputRevertOrder_rui_d22e"};
|
10
10
|
|
11
11
|
var ICON_ID_LENGTH = 44;
|
12
12
|
var QueryAssistSuggestions = /*#__PURE__*/function () {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck,
|
1
|
+
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass, g as _objectWithoutProperties, i as _extends } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.array.concat.js';
|
3
3
|
import 'core-js/modules/es.array.filter.js';
|
4
4
|
import 'core-js/modules/es.object.to-string.js';
|
@@ -10,7 +10,7 @@ import sniffr from '../global/sniffer.js';
|
|
10
10
|
import { ActiveItemContext } from '../list/list.js';
|
11
11
|
import { I18nContext } from '../i18n/i18n-context.js';
|
12
12
|
|
13
|
-
var modules_b607bec2 = {"
|
13
|
+
var modules_b607bec2 = {"filterWithTagsFocused":"filterWithTagsFocused_rui_531d","light":"light_rui_2ac4","filterWithTags":"filterWithTags_rui_531d","filterWrapper":"filterWrapper_rui_531d","filterWithTagsInput":"filterWithTagsInput_rui_531d","filter":"filter_rui_531d","popup":"popup_rui_531d","filterIcon":"filterIcon_rui_531d","bottomLine":"bottomLine_rui_531d","bottomLineOverItem":"bottomLineOverItem_rui_531d","message":"message_rui_531d","selectAll":"selectAll_rui_531d"};
|
14
14
|
|
15
15
|
var _excluded = ["className", "listId"];
|
16
16
|
function noop() {}
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck,
|
1
|
+
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, f as _createClass, g as _objectWithoutProperties, i as _extends } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import React, { PureComponent } from 'react';
|
3
3
|
import PropTypes from 'prop-types';
|
4
4
|
import Link from '../link/link.js';
|
5
5
|
|
6
|
-
var modules_74a7bf8b = {"
|
6
|
+
var modules_74a7bf8b = {"light":"light_rui_2ac4","services":"services_rui_e0d5","active":"active_rui_e0d5","item":"item_rui_e0d5","itemLogo":"itemLogo_rui_e0d5","activeItem":"activeItem_rui_e0d5 item_rui_e0d5 active_rui_e0d5","line":"line_rui_e0d5","itemStacked":"itemStacked_rui_e0d5","activeItemStacked":"activeItemStacked_rui_e0d5 itemStacked_rui_e0d5 active_rui_e0d5"};
|
7
7
|
|
8
8
|
var _excluded = ["service"];
|
9
9
|
var ServicesLink = /*#__PURE__*/function (_PureComponent) {
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck,
|
1
|
+
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass, g as _objectWithoutProperties, i as _extends } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.array.concat.js';
|
3
3
|
import React, { Component } from 'react';
|
4
4
|
import PropTypes from 'prop-types';
|
5
5
|
import classNames from 'classnames';
|
6
6
|
import { Waypoint } from 'react-waypoint';
|
7
7
|
|
8
|
-
var modules_b8a9dd4f = {"
|
8
|
+
var modules_b8a9dd4f = {"extra-small-screen-media":"i__const_extra_small_screen_media_0","small-screen-media":"i__const_small_screen_media_1","sidebarWidth":"calc(var(--ring-unit)*30)","light":"light_rui_2ac4","contentLayout":"contentLayout_rui_8468","contentLayoutContent":"contentLayoutContent_rui_8468","sidebarContainer":"sidebarContainer_rui_8468","sidebarContainerRight":"sidebarContainerRight_rui_8468","sidebar":"sidebar_rui_8468","sidebarRight":"sidebarRight_rui_8468","sidebarFixedTop":"sidebarFixedTop_rui_8468","sidebarFixedBottom":"sidebarFixedBottom_rui_8468","bottomMarker":"bottomMarker_rui_8468","contentLayoutResponsive":"contentLayoutResponsive_rui_8468"};
|
9
9
|
|
10
10
|
var _excluded = ["right", "children", "className", "containerClassName", "fixedClassName", "contentNode"];
|
11
11
|
var ABOVE = 'above';
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import {
|
1
|
+
import { g as _objectWithoutProperties } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import React, { memo } from 'react';
|
3
3
|
import PropTypes from 'prop-types';
|
4
4
|
import Link from '../link/link.js';
|
5
5
|
|
6
|
-
var modules_02138f4a = {"dark":"dark_rui_eb55","
|
6
|
+
var modules_02138f4a = {"dark":"dark_rui_eb55","line-shadow":"inset 0 -1px 0 0","selected-line-shadow":"inset 0 -2px 0 0","light":"light_rui_2ac4","link":"link_rui_aa34","withLinks":"withLinks_rui_aa34","hover":"hover_rui_aa34","pseudo":"pseudo_rui_aa34","active":"active_rui_aa34","inherit":"inherit_rui_aa34","tabs":"tabs_rui_aa34 font_rui_8bff","titles":"titles_rui_aa34","title":"title_rui_aa34 font_rui_8bff","selected":"selected_rui_aa34","collapsed":"collapsed_rui_aa34","titleLegacy":"titleLegacy_rui_aa34","visible":"visible_rui_aa34","container":"container_rui_aa34","hidden":"hidden_rui_aa34","hiddenBold":"hiddenBold_rui_aa34","hiddenRegular":"hiddenRegular_rui_aa34","tabCounter":"tabCounter_rui_aa34","autoCollapseContainer":"autoCollapseContainer_rui_aa34","autoCollapse":"autoCollapse_rui_aa34","rendered":"rendered_rui_aa34","adjusted":"adjusted_rui_aa34","measure":"measure_rui_aa34","morePopup":"morePopup_rui_aa34","chevron":"chevron_rui_aa34","morePopupBeforeEnd":"morePopupBeforeEnd_rui_aa34"};
|
7
7
|
|
8
8
|
var _excluded = ["isSelected", "title", "collapsed"];
|
9
9
|
function TabLink(_ref) {
|
@@ -1,3 +1,3 @@
|
|
1
|
-
var modules_1db4bbca = {"
|
1
|
+
var modules_1db4bbca = {"compensate":"2px","compensated":"calc(var(--ring-unit)*4 - 2px)","top":"-3px","row":"row_rui_23fe","dragHandle":"dragHandle_rui_23fe","light":"light_rui_2ac4","tableWrapper":"tableWrapper_rui_23fe","table":"table_rui_23fe","userSelectNone":"userSelectNone_rui_23fe","headerCell":"headerCell_rui_23fe font-smaller-lower_rui_8bff font-smaller_rui_8bff font-lower_rui_8bff font_rui_8bff","headerCellSorted":"headerCellSorted_rui_23fe","headerCellSortable":"headerCellSortable_rui_23fe","sorter":"sorter_rui_23fe","sortedUp":"sortedUp_rui_23fe","icon":"icon_rui_23fe","caption":"caption_rui_23fe","tableHead":"tableHead_rui_23fe","subHeaderSticky":"subHeaderSticky_rui_23fe","disabledHover":"disabledHover_rui_23fe","rowSelected":"rowSelected_rui_23fe","rowFocused":"rowFocused_rui_23fe","cell":"cell_rui_23fe ellipsis_rui_8bff","loadingOverlay":"loadingOverlay_rui_23fe","cellUnlimited":"cellUnlimited_rui_23fe","cellRight":"cellRight_rui_23fe","metaColumn":"metaColumn_rui_23fe","headerMetaColumn":"headerMetaColumn_rui_23fe","visibleDragHandle":"visibleDragHandle_rui_23fe","rowCollapseExpandButton":"rowCollapseExpandButton_rui_23fe","draggingRow":"draggingRow_rui_23fe","draggingTable":"draggingTable_rui_23fe","tableMessage":"tableMessage_rui_23fe"};
|
2
2
|
|
3
3
|
export { modules_1db4bbca as m };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { k as _slicedToArray, g as _objectWithoutProperties, i as _extends } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import React, { useState, useEffect, forwardRef, useMemo, useContext } from 'react';
|
3
3
|
import classNames from 'classnames';
|
4
4
|
import { createPortal } from 'react-dom';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck,
|
1
|
+
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.array.concat.js';
|
3
3
|
import React, { PureComponent } from 'react';
|
4
4
|
import PropTypes from 'prop-types';
|
@@ -8,7 +8,7 @@ import Checkbox from '../checkbox/checkbox.js';
|
|
8
8
|
import getUID from '../global/get-uid.js';
|
9
9
|
import { refObject } from '../global/prop-types.js';
|
10
10
|
|
11
|
-
var modules_09d014b4 = {"
|
11
|
+
var modules_09d014b4 = {"height":"i__const_height_0","compensate":"i__const_compensate_1","light":"light_rui_2ac4","dataListWrapper":"dataListWrapper_rui_9f76","dataList":"dataList_rui_9f76","itemContent":"itemContent_rui_9f76","title":"title_rui_9f76","disabledHover":"disabledHover_rui_9f76","titleSelected":"titleSelected_rui_9f76","titleFocused":"titleFocused_rui_9f76","showMore":"showMore_rui_9f76","boxes":"boxes_rui_9f76","checkboxBox":"checkboxBox_rui_9f76","collapseButton":"collapseButton_rui_9f76","collapseIcon":"collapseIcon_rui_9f76","loadingOverlay":"loadingOverlay_rui_9f76","showMoreLoader":"showMoreLoader_rui_9f76"};
|
12
12
|
|
13
13
|
var Title = /*#__PURE__*/function (_PureComponent) {
|
14
14
|
_inherits(Title, _PureComponent);
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck,
|
1
|
+
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, d as _assertThisInitialized, f as _createClass } from '../_helpers/_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.array.concat.js';
|
3
3
|
import 'core-js/modules/es.object.values.js';
|
4
4
|
import React, { PureComponent } from 'react';
|
@@ -29,6 +29,7 @@ import 'core-js/modules/web.dom-collections.iterator.js';
|
|
29
29
|
import 'core-js/modules/es.weak-map.js';
|
30
30
|
import 'core-js/modules/es.array.reduce.js';
|
31
31
|
import 'core-js/modules/es.object.entries.js';
|
32
|
+
import 'core-js/modules/es.object.assign.js';
|
32
33
|
import 'core-js/modules/web.dom-collections.for-each.js';
|
33
34
|
import 'core-js/modules/es.array.filter.js';
|
34
35
|
import 'core-js/modules/es.string.split.js';
|
@@ -51,6 +52,7 @@ import 'core-js/modules/es.string.includes.js';
|
|
51
52
|
import 'core-js/modules/es.array.slice.js';
|
52
53
|
import 'core-js/modules/es.array.splice.js';
|
53
54
|
import 'core-js/modules/es.string.match.js';
|
55
|
+
import 'core-js/modules/es.array.find-index.js';
|
54
56
|
import 'combokeys';
|
55
57
|
import '../global/sniffer.js';
|
56
58
|
import 'sniffr';
|
@@ -59,7 +61,7 @@ import '../popup/position.js';
|
|
59
61
|
import 'core-js/modules/es.array.sort.js';
|
60
62
|
import '../popup/popup.consts.js';
|
61
63
|
|
62
|
-
var modules_e02b3280 = {"link":"link_rui_d382","
|
64
|
+
var modules_e02b3280 = {"link":"link_rui_d382","animation-duration":"300ms","animation-easing":"ease-out","light":"light_rui_2ac4","alert":"alert_rui_2b32","alertInline":"alertInline_rui_2b32","error":"error_rui_2b32","icon":"icon_rui_2b32","caption":"caption_rui_2b32","withCloseButton":"withCloseButton_rui_2b32","badge":"badge_rui_2b32","loader":"loader_rui_2b32","close":"close_rui_2b32","animationOpen":"animationOpen_rui_2b32","show":"show_rui_2b32","animationClosing":"animationClosing_rui_2b32","animationShaking":"animationShaking_rui_2b32","shaking":"shaking_rui_2b32"};
|
63
65
|
|
64
66
|
var ANIMATION_TIME = 500;
|
65
67
|
/**
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck,
|
1
|
+
import { _ as _defineProperty, a as _inherits, b as _createSuper, c as _classCallCheck, f as _createClass, g as _objectWithoutProperties, i as _extends } from '../_helpers/_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.array.map.js';
|
3
3
|
import React, { Children, isValidElement, cloneElement, PureComponent } from 'react';
|
4
4
|
import { createPortal } from 'react-dom';
|
5
5
|
import classNames from 'classnames';
|
6
6
|
import PropTypes from 'prop-types';
|
7
7
|
|
8
|
-
var modules_fc8df42d = {"
|
8
|
+
var modules_fc8df42d = {"light":"light_rui_2ac4","alertContainer":"alertContainer_rui_a9a3","alertInContainer":"alertInContainer_rui_a9a3 alert_rui_2b32"};
|
9
9
|
|
10
10
|
var _excluded = ["children", "className"];
|
11
11
|
var Alerts = /*#__PURE__*/function (_PureComponent) {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { f as _createClass, l as _toConsumableArray, g as _objectWithoutProperties, i as _extends, h as _objectSpread2, c as _classCallCheck, _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.array.map.js';
|
3
3
|
import 'core-js/modules/es.array.filter.js';
|
4
4
|
import 'core-js/modules/es.object.to-string.js';
|
@@ -33,6 +33,7 @@ import '../global/data-tests.js';
|
|
33
33
|
import 'core-js/modules/es.array.reduce.js';
|
34
34
|
import 'core-js/modules/es.object.entries.js';
|
35
35
|
import '../global/dom.js';
|
36
|
+
import 'core-js/modules/es.object.assign.js';
|
36
37
|
import 'core-js/modules/web.dom-collections.for-each.js';
|
37
38
|
import 'core-js/modules/es.string.split.js';
|
38
39
|
import 'core-js/modules/es.set.js';
|
@@ -53,6 +54,7 @@ import 'core-js/modules/es.string.includes.js';
|
|
53
54
|
import 'core-js/modules/es.array.slice.js';
|
54
55
|
import 'core-js/modules/es.array.splice.js';
|
55
56
|
import 'core-js/modules/es.string.match.js';
|
57
|
+
import 'core-js/modules/es.array.find-index.js';
|
56
58
|
import 'combokeys';
|
57
59
|
import '../global/sniffer.js';
|
58
60
|
import 'sniffr';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { f as _createClass, c as _classCallCheck, _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
2
2
|
import 'core-js/modules/es.object.to-string.js';
|
3
3
|
import 'core-js/modules/web.dom-collections.for-each.js';
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { f as _createClass, h as _objectSpread2, c as _classCallCheck, _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
2
2
|
|
3
3
|
var DEFAULT_FLUSH_INTERVAL = 10000;
|
4
4
|
var DEFAULT_FLUSH_MAX_PACK_SIZE = 100;
|
@@ -64,7 +64,6 @@ var AnalyticsCustomPlugin = /*#__PURE__*/function () {
|
|
64
64
|
if (this._isDevelopment) {
|
65
65
|
console.log('TRACKING DATA = ', category, action, data); // eslint-disable-line no-console
|
66
66
|
}
|
67
|
-
|
68
67
|
var baseSendingData = {
|
69
68
|
category,
|
70
69
|
action,
|
@@ -80,7 +79,7 @@ var AnalyticsCustomPlugin = /*#__PURE__*/function () {
|
|
80
79
|
this._data.push(sendingData);
|
81
80
|
if (this._flushMaxPackSize != null && this._data.length >= this._flushMaxPackSize) {
|
82
81
|
var _this$_flush;
|
83
|
-
(_this$_flush = this._flush) === null || _this$_flush === void 0
|
82
|
+
(_this$_flush = this._flush) === null || _this$_flush === void 0 || _this$_flush.call(this);
|
84
83
|
}
|
85
84
|
}
|
86
85
|
}]);
|