@jetbrains/ring-ui 5.0.123 → 5.0.125
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/components/auth-dialog-service/auth-dialog-service.js +4 -1
- package/components/avatar/avatar.d.ts +1 -1
- package/components/button/button.d.ts +2 -2
- package/components/confirm/confirm.js +3 -3
- package/components/confirm-service/confirm-service.js +2 -2
- package/components/global/controls-height.d.ts +2 -0
- package/components/global/controls-height.js +8 -0
- package/components/icon/icon.d.ts +1 -1
- package/components/login-dialog/service.js +4 -1
- package/components/user-agreement/service.js +4 -1
- package/dist/_helpers/badge.js +1 -1
- package/dist/_helpers/button-group.js +1 -1
- package/dist/_helpers/button-set.js +1 -1
- package/dist/_helpers/button-toolbar.js +1 -1
- package/dist/_helpers/button__classes.js +1 -1
- package/dist/_helpers/card.js +1 -1
- package/dist/_helpers/checkbox.js +1 -1
- package/dist/_helpers/date-picker.js +1 -1
- package/dist/_helpers/dialog__body-scroll-preventer.js +1 -1
- package/dist/_helpers/footer.js +1 -1
- package/dist/_helpers/grid.js +1 -1
- package/dist/_helpers/group.js +1 -1
- package/dist/_helpers/header.js +1 -1
- package/dist/_helpers/icon.js +1 -1
- package/dist/_helpers/input.js +1 -1
- package/dist/_helpers/island.js +1 -1
- package/dist/_helpers/list.js +1 -1
- package/dist/_helpers/loader-inline.js +1 -1
- package/dist/_helpers/panel.js +1 -1
- package/dist/_helpers/query-assist__suggestions.js +1 -1
- package/dist/_helpers/radio.js +1 -1
- package/dist/_helpers/select__filter.js +1 -1
- package/dist/_helpers/services-link.js +1 -1
- package/dist/_helpers/sidebar.js +1 -1
- package/dist/_helpers/table.js +1 -1
- package/dist/_helpers/tabs.js +1 -1
- package/dist/_helpers/title.js +1 -1
- package/dist/alert/alert.js +1 -1
- package/dist/alert/container.js +1 -1
- package/dist/auth/down-notification.js +1 -1
- package/dist/auth/iframe-flow.js +1 -1
- package/dist/auth-dialog/auth-dialog.js +1 -1
- package/dist/auth-dialog-service/auth-dialog-service.js +4 -2
- package/dist/avatar/avatar.d.ts +1 -1
- package/dist/breadcrumb-ng/breadcrumb-ng.js +1 -1
- package/dist/button/button.d.ts +2 -2
- package/dist/code/code.js +1 -1
- package/dist/confirm/confirm.js +2 -2
- package/dist/confirm-service/confirm-service.js +2 -2
- package/dist/dialog-ng/dialog-ng.js +1 -1
- package/dist/docked-panel-ng/docked-panel-ng.js +1 -1
- package/dist/editable-heading/editable-heading.js +1 -1
- package/dist/error-bubble/error-bubble.js +1 -1
- package/dist/global/controls-height.d.ts +2 -0
- package/dist/global/controls-height.js +9 -1
- package/dist/icon/icon.d.ts +1 -1
- package/dist/loader/loader__core.js +1 -1
- package/dist/login-dialog/login-dialog.js +1 -1
- package/dist/login-dialog/service.js +4 -2
- package/dist/markdown/markdown.js +1 -1
- package/dist/message/message.js +1 -1
- package/dist/old-browsers-message/white-list.js +2 -2
- package/dist/pager/pager.js +1 -1
- package/dist/progress-bar/progress-bar.js +1 -1
- package/dist/select/select.js +1 -1
- package/dist/tag/tag.js +1 -1
- package/dist/tags-input/tags-input.js +1 -1
- package/dist/toggle/toggle.js +1 -1
- package/dist/tooltip/tooltip.js +1 -1
- package/dist/user-agreement/service.js +4 -2
- package/dist/user-agreement/user-agreement.js +1 -1
- package/package.json +14 -14
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { ControlsHeightContext, getGlobalControlsHeight } from '../global/controls-height';
|
|
2
3
|
import { render } from '../global/react-render-adapter';
|
|
3
4
|
import AuthDialog from '../auth-dialog/auth-dialog';
|
|
4
5
|
/**
|
|
@@ -9,7 +10,9 @@ const containerElement = document.createElement('div');
|
|
|
9
10
|
* Renders AuthDialog into virtual node to skip maintaining container
|
|
10
11
|
*/
|
|
11
12
|
function renderAuthDialog(props) {
|
|
12
|
-
render(<
|
|
13
|
+
render((<ControlsHeightContext.Provider value={getGlobalControlsHeight()}>
|
|
14
|
+
<AuthDialog {...props}/>
|
|
15
|
+
</ControlsHeightContext.Provider>), containerElement);
|
|
13
16
|
}
|
|
14
17
|
export default function showAuthDialog(props = {}) {
|
|
15
18
|
renderAuthDialog({
|
|
@@ -15,7 +15,7 @@ export declare enum Size {
|
|
|
15
15
|
}
|
|
16
16
|
export interface AvatarProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
17
17
|
dpr: number;
|
|
18
|
-
size: Size;
|
|
18
|
+
size: Size | number;
|
|
19
19
|
subavatarSize: number;
|
|
20
20
|
url?: string | null | undefined;
|
|
21
21
|
round?: boolean | null | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'focus-visible';
|
|
2
2
|
import React, { PureComponent, ButtonHTMLAttributes } from 'react';
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
|
-
import { IconType, Size } from '../icon/icon';
|
|
4
|
+
import { IconProps, IconType, Size } from '../icon/icon';
|
|
5
5
|
import { ClickableLinkProps } from '../link/clickableLink';
|
|
6
6
|
import { ControlsHeight, ControlsHeightContext } from '../global/controls-height';
|
|
7
7
|
export interface ButtonBaseProps {
|
|
@@ -17,7 +17,7 @@ export interface ButtonBaseProps {
|
|
|
17
17
|
dropdown?: boolean | null | undefined;
|
|
18
18
|
disabled?: boolean | undefined;
|
|
19
19
|
icon?: string | IconType | null | undefined;
|
|
20
|
-
iconSize?:
|
|
20
|
+
iconSize?: IconProps['size'];
|
|
21
21
|
iconClassName?: string | null | undefined;
|
|
22
22
|
iconSuppressSizeWarning?: boolean | null | undefined;
|
|
23
23
|
}
|
|
@@ -43,9 +43,9 @@ export default class Confirm extends PureComponent {
|
|
|
43
43
|
const { show, className, inProgress, cancelIsDefault, text, description, confirmLabel, rejectLabel, onConfirm, onReject } = this.props;
|
|
44
44
|
return (<Dialog label={text || (typeof description === 'string' ? description : undefined)} className={className} onEscPress={this.onEscPress} show={show} trapFocus data-test="ring-confirm">
|
|
45
45
|
{text && <Header>{text}</Header>}
|
|
46
|
-
<Content>
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
{description && (<Content>
|
|
47
|
+
<div className={styles.description}>{description}</div>
|
|
48
|
+
</Content>)}
|
|
49
49
|
<Panel>
|
|
50
50
|
<Button data-test="confirm-ok-button" primary={!cancelIsDefault} loader={inProgress} disabled={inProgress} onClick={onConfirm}>
|
|
51
51
|
{confirmLabel}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { render } from '../global/react-render-adapter';
|
|
3
3
|
import Confirm from '../confirm/confirm';
|
|
4
|
-
import {
|
|
4
|
+
import { ControlsHeightContext, getGlobalControlsHeight } from '../global/controls-height';
|
|
5
5
|
export const containerElement = document.createElement('div');
|
|
6
6
|
/**
|
|
7
7
|
* Renders Confirm into virtual node to skip maintaining container
|
|
8
8
|
*/
|
|
9
9
|
function renderConfirm(props) {
|
|
10
|
-
const { buttonsHeight =
|
|
10
|
+
const { buttonsHeight = getGlobalControlsHeight(), ...restProps } = props;
|
|
11
11
|
render((<ControlsHeightContext.Provider value={buttonsHeight}>
|
|
12
12
|
<Confirm {...restProps}/>
|
|
13
13
|
</ControlsHeightContext.Provider>), containerElement);
|
|
@@ -5,3 +5,5 @@ export declare enum ControlsHeight {
|
|
|
5
5
|
L = "L"
|
|
6
6
|
}
|
|
7
7
|
export declare const ControlsHeightContext: import("react").Context<ControlsHeight>;
|
|
8
|
+
export declare function configureGlobalControlsHeight(value: ControlsHeight): void;
|
|
9
|
+
export declare function getGlobalControlsHeight(): ControlsHeight;
|
|
@@ -6,3 +6,11 @@ export var ControlsHeight;
|
|
|
6
6
|
ControlsHeight["L"] = "L";
|
|
7
7
|
})(ControlsHeight || (ControlsHeight = {}));
|
|
8
8
|
export const ControlsHeightContext = createContext(ControlsHeight.M);
|
|
9
|
+
let globalControlsHeight = ControlsHeight.M;
|
|
10
|
+
// This can be used if React Context is not applicable, for example for alertService or Auth dialog
|
|
11
|
+
export function configureGlobalControlsHeight(value) {
|
|
12
|
+
globalControlsHeight = value;
|
|
13
|
+
}
|
|
14
|
+
export function getGlobalControlsHeight() {
|
|
15
|
+
return globalControlsHeight;
|
|
16
|
+
}
|
|
@@ -9,7 +9,7 @@ export interface IconProps extends HTMLAttributes<HTMLElement> {
|
|
|
9
9
|
color: Color;
|
|
10
10
|
glyph: string | IconType | null;
|
|
11
11
|
height?: number | undefined;
|
|
12
|
-
size?: Size | null | undefined;
|
|
12
|
+
size?: Size | number | null | undefined;
|
|
13
13
|
width?: number | undefined;
|
|
14
14
|
loading?: boolean | null | undefined;
|
|
15
15
|
suppressSizeWarning?: boolean | null | undefined;
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { render, unmountComponentAtNode } from '../global/react-render-adapter';
|
|
3
|
+
import { ControlsHeightContext, getGlobalControlsHeight } from '../global/controls-height';
|
|
3
4
|
import LoginDialog from './login-dialog';
|
|
4
5
|
const containerElement = document.createElement('div');
|
|
5
6
|
/**
|
|
6
7
|
* Renders LoginDialog into virtual node to skip maintaining container
|
|
7
8
|
*/
|
|
8
9
|
function renderLoginDialog(props) {
|
|
9
|
-
render(<
|
|
10
|
+
render((<ControlsHeightContext.Provider value={getGlobalControlsHeight()}>
|
|
11
|
+
<LoginDialog {...props}/>
|
|
12
|
+
</ControlsHeightContext.Provider>), containerElement);
|
|
10
13
|
}
|
|
11
14
|
function noop() { }
|
|
12
15
|
export default function showAuthDialog(props = { onCancel: noop }) {
|
|
@@ -5,6 +5,7 @@ import alertService from '../alert-service/alert-service';
|
|
|
5
5
|
import Link from '../link/link';
|
|
6
6
|
import Alert from '../alert/alert';
|
|
7
7
|
import Group from '../group/group';
|
|
8
|
+
import { ControlsHeightContext, getGlobalControlsHeight } from '../global/controls-height';
|
|
8
9
|
import UserAgreement from './user-agreement';
|
|
9
10
|
const GUEST_SESSION_KEY = 'end-user-agreement-consent';
|
|
10
11
|
const ONE_HOUR = 60 * 60 * 1000; // eslint-disable-line @typescript-eslint/no-magic-numbers
|
|
@@ -181,7 +182,9 @@ export default class UserAgreementService {
|
|
|
181
182
|
translations,
|
|
182
183
|
preview, ...restOptions
|
|
183
184
|
};
|
|
184
|
-
render(<
|
|
185
|
+
render((<ControlsHeightContext.Provider value={getGlobalControlsHeight()}>
|
|
186
|
+
<UserAgreement {...props}/>
|
|
187
|
+
</ControlsHeightContext.Provider>), this.container);
|
|
185
188
|
if (onDialogShow) {
|
|
186
189
|
onDialogShow();
|
|
187
190
|
}
|
package/dist/_helpers/badge.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_6c9187df = {"unit":"
|
|
1
|
+
var modules_6c9187df = {"unit":"i__const_unit_0","light":"light_rui_4b7d","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,3 +1,3 @@
|
|
|
1
|
-
var modules_1068e447 = {"unit":"
|
|
1
|
+
var modules_1068e447 = {"unit":"i__const_unit_0","button":"button_rui_0b90","active":"active_rui_0b90","primary":"primary_rui_0b90","button-shadow":"i__const_button_shadow_4","buttonGroup":"buttonGroup_rui_bbca common_rui_bbca buttonGroup_rui_f4fc","light":"light_rui_bbca","common":"common_rui_bbca","split":"split_rui_bbca common_rui_bbca buttonGroup_rui_f4fc","caption":"caption_rui_bbca font_rui_8bff"};
|
|
2
2
|
|
|
3
3
|
export { modules_1068e447 as m };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_fd849143 = {"unit":"
|
|
1
|
+
var modules_fd849143 = {"unit":"i__const_unit_0","button":"button_rui_0b90","light":"light_rui_b2a9","buttonSet":"buttonSet_rui_b2a9"};
|
|
2
2
|
|
|
3
3
|
export { modules_fd849143 as m };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_34154ec0 = {"unit":"
|
|
1
|
+
var modules_34154ec0 = {"unit":"i__const_unit_0","button":"button_rui_0b90","light":"light_rui_f4fc","buttonToolbar":"buttonToolbar_rui_f4fc","buttonGroup":"buttonGroup_rui_f4fc","split":"split_rui_f4fc"};
|
|
2
2
|
|
|
3
3
|
export { modules_34154ec0 as m };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import classNames from 'classnames';
|
|
2
2
|
|
|
3
|
-
var modules_e81895c9 = {"unit":"
|
|
3
|
+
var modules_e81895c9 = {"unit":"i__const_unit_0","button-shadow":"inset 0 0 0 1px","height":"var(--ring-button-height)","loaderWidth":"64px","light":"light_rui_0b90","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
|
let {
|
package/dist/_helpers/card.js
CHANGED
|
@@ -10,7 +10,7 @@ import { m as modules_6c9187df } from './badge.js';
|
|
|
10
10
|
import Icon from '../icon/icon.js';
|
|
11
11
|
import { Size as Size$1 } from '../icon/icon__constants.js';
|
|
12
12
|
|
|
13
|
-
var modules_a4196c17 = {"unit":"
|
|
13
|
+
var modules_a4196c17 = {"unit":"i__const_unit_0","light":"light_rui_6e59","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"};
|
|
14
14
|
|
|
15
15
|
class UserCard extends PureComponent {
|
|
16
16
|
constructor() {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_3199090e = {"unit":"
|
|
1
|
+
var modules_3199090e = {"unit":"i__const_unit_0","checkboxSize":"14px","light":"light_rui_d990","checkbox":"checkbox_rui_d990","cell":"cell_rui_d990","icon":"icon_rui_d990","check":"check_rui_d990 icon_rui_d990","minus":"minus_rui_d990 icon_rui_d990","input":"input_rui_d990","focus":"focus_rui_d990","label":"label_rui_d990"};
|
|
2
2
|
|
|
3
3
|
export { modules_3199090e as m };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_0c7b7d96 = {"unit":"
|
|
1
|
+
var modules_0c7b7d96 = {"unit":"i__const_unit_0","footer-height":"64px","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":"24px","calHeight":"288px","calWidth":"296px","yearHeight":"32px","yearWidth":"48px","light":"light_rui_e0bd","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 };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import scrollbarWidth from 'scrollbar-width';
|
|
2
2
|
|
|
3
|
-
var modules_5e9b8c03 = {"unit":"
|
|
3
|
+
var modules_5e9b8c03 = {"unit":"i__const_unit_0","header":"header_rui_1d72","light":"light_rui_381e","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"};
|
|
4
4
|
|
|
5
5
|
const isPrevented = new Set();
|
|
6
6
|
let previousDocumentWidth = null;
|
package/dist/_helpers/footer.js
CHANGED
|
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
|
|
|
3
3
|
import classNames from 'classnames';
|
|
4
4
|
import Link from '../link/link.js';
|
|
5
5
|
|
|
6
|
-
var modules_7385b3fd = {"unit":"
|
|
6
|
+
var modules_7385b3fd = {"unit":"i__const_unit_0","footer-height":"i__const_footer_height_1","light":"light_rui_fade","footer":"footer_rui_fade font_rui_8bff","footerFloating":"footerFloating_rui_fade footer_rui_fade font_rui_8bff","column":"column_rui_fade","columnItem":"columnItem_rui_fade","columnLeft":"columnLeft_rui_fade column_rui_fade","columnCenter":"columnCenter_rui_fade column_rui_fade","line":"line_rui_fade","columnRight":"columnRight_rui_fade column_rui_fade","lineCenter":"lineCenter_rui_fade"};
|
|
7
7
|
|
|
8
8
|
const FooterColumn = /*#__PURE__*/memo(function FooterColumn(_ref) {
|
|
9
9
|
let {
|
package/dist/_helpers/grid.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_855170c0 = {"unit":"
|
|
1
|
+
var modules_855170c0 = {"unit":"i__const_unit_0","breakpoint-small":"i__const_breakpoint_small_1","breakpoint-middle":"i__const_breakpoint_middle_2","breakpoint-large":"i__const_breakpoint_large_3","large-screen-media":"i__const_large_screen_media_4","middle-screen-media":"i__const_middle_screen_media_5","small-screen-media":"i__const_small_screen_media_6","gutterWidth":"(8px*2)","gutterCompensation":"-8px","outerMargin":"16px","containerSmall":"656px","containerMedium":"976px","containerLarge":"1216px","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_a74c","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 };
|
package/dist/_helpers/group.js
CHANGED
package/dist/_helpers/header.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_47759f5e = {"dark":"dark_rui_eb55","unit":"
|
|
1
|
+
var modules_47759f5e = {"dark":"dark_rui_eb55","unit":"i__const_unit_1","link":"link_rui_d382","active":"active_rui_d382","height":"64px","compensate":"3px","compensated":"61px","light":"light_rui_1238","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 };
|
package/dist/_helpers/icon.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_29747b80 = {"unit":"
|
|
1
|
+
var modules_29747b80 = {"unit":"i__const_unit_0","light":"light_rui_2d39","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"};
|
|
2
2
|
|
|
3
3
|
export { modules_29747b80 as m };
|
package/dist/_helpers/input.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_88cfaf40 = {"unit":"
|
|
1
|
+
var modules_88cfaf40 = {"unit":"i__const_unit_1","button-shadow":"inset 0 0 0 1px","height":"var(--ring-button-height)","loaderWidth":"64px","light":"light_rui_e356","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","label":"label_rui_e356","disabledLabel":"disabledLabel_rui_e356","errorText":"errorText_rui_e356","sizeS":"sizeS_rui_e356","sizeM":"sizeM_rui_e356","sizeL":"sizeL_rui_e356","sizeFULL":"sizeFULL_rui_e356"};
|
|
2
2
|
|
|
3
3
|
export { modules_88cfaf40 as m };
|
package/dist/_helpers/island.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_e6a056e1 = {"unit":"
|
|
1
|
+
var modules_e6a056e1 = {"unit":"i__const_unit_0","gradientStart":"rgba(255, 255, 255, 0)","gradientStop":"var(--ring-content-background-color)","light":"light_rui_1d72","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 };
|
package/dist/_helpers/list.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_3b67a421 = {"unit":"
|
|
1
|
+
var modules_3b67a421 = {"unit":"i__const_unit_0","listSpacing":"8px","light":"light_rui_93ef","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,3 +1,3 @@
|
|
|
1
|
-
var modules_e49a3529 = {"dark":"dark_rui_eb55","unit":"
|
|
1
|
+
var modules_e49a3529 = {"dark":"dark_rui_eb55","unit":"i__const_unit_1","light":"light_rui_e6f2","loader":"loader_rui_e6f2","spin":"spin_rui_e6f2","pulse":"pulse_rui_e6f2","children":"children_rui_e6f2"};
|
|
2
2
|
|
|
3
3
|
export { modules_e49a3529 as m };
|
package/dist/_helpers/panel.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import List from '../list/list.js';
|
|
3
3
|
|
|
4
|
-
var modules_da7ab055 = {"unit":"
|
|
4
|
+
var modules_da7ab055 = {"unit":"i__const_unit_1","button-shadow":"inset 0 0 0 1px","height":"var(--ring-button-height)","loaderWidth":"64px","overInputZIndex":"2","inputGap":"24px","light":"light_rui_d22e","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"};
|
|
5
5
|
|
|
6
6
|
const ICON_ID_LENGTH = 44;
|
|
7
7
|
class QueryAssistSuggestions {
|
package/dist/_helpers/radio.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_df92307a = {"unit":"
|
|
1
|
+
var modules_df92307a = {"unit":"i__const_unit_0","radio-size":"16px","light":"light_rui_370b","radio":"radio_rui_370b","circle":"circle_rui_370b","input":"input_rui_370b","focus":"focus_rui_370b","label":"label_rui_370b"};
|
|
2
2
|
|
|
3
3
|
export { modules_df92307a as m };
|
|
@@ -6,7 +6,7 @@ import { Input } from '../input/input.js';
|
|
|
6
6
|
import sniffr from '../global/sniffer.js';
|
|
7
7
|
import { ActiveItemContext } from '../list/list.js';
|
|
8
8
|
|
|
9
|
-
var modules_b607bec2 = {"unit":"
|
|
9
|
+
var modules_b607bec2 = {"unit":"i__const_unit_0","filterWithTagsFocused":"filterWithTagsFocused_rui_531d","light":"light_rui_531d","filterWithTags":"filterWithTags_rui_531d","filterWrapper":"filterWrapper_rui_531d","filterWithTagsInput":"filterWithTagsInput_rui_531d","filter":"filter_rui_531d","filterIcon":"filterIcon_rui_531d","bottomLine":"bottomLine_rui_531d","message":"message_rui_531d","selectAll":"selectAll_rui_531d"};
|
|
10
10
|
|
|
11
11
|
function noop() {}
|
|
12
12
|
class SelectFilter extends Component {
|
|
@@ -3,7 +3,7 @@ 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 = {"unit":"
|
|
6
|
+
var modules_74a7bf8b = {"unit":"i__const_unit_0","light":"light_rui_e0d5","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
|
class ServicesLink extends PureComponent {
|
|
9
9
|
render() {
|
package/dist/_helpers/sidebar.js
CHANGED
|
@@ -4,7 +4,7 @@ import PropTypes from 'prop-types';
|
|
|
4
4
|
import classNames from 'classnames';
|
|
5
5
|
import { Waypoint } from 'react-waypoint';
|
|
6
6
|
|
|
7
|
-
var modules_b8a9dd4f = {"unit":"
|
|
7
|
+
var modules_b8a9dd4f = {"unit":"i__const_unit_0","extra-small-screen-media":"i__const_extra_small_screen_media_1","small-screen-media":"i__const_small_screen_media_2","sidebarWidth":"240px","light":"light_rui_8468","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"};
|
|
8
8
|
|
|
9
9
|
const ABOVE = 'above';
|
|
10
10
|
const INSIDE = 'inside';
|
package/dist/_helpers/table.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_1db4bbca = {"unit":"
|
|
1
|
+
var modules_1db4bbca = {"unit":"i__const_unit_0","height":"32px","compensate":"2px","compensated":"30px","top":"-3px","row":"row_rui_23fe","dragHandle":"dragHandle_rui_23fe","light":"light_rui_23fe","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","subHeaderFixed":"subHeaderFixed_rui_23fe","subHeader":"subHeader_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 };
|
package/dist/_helpers/tabs.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_02138f4a = {"dark":"dark_rui_eb55","unit":"
|
|
1
|
+
var modules_02138f4a = {"dark":"dark_rui_eb55","unit":"i__const_unit_1","line-shadow":"inset 0 -1px 0 0","selected-line-shadow":"inset 0 -2px 0 0","light":"light_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"};
|
|
2
2
|
|
|
3
3
|
export { modules_02138f4a as m };
|
package/dist/_helpers/title.js
CHANGED
|
@@ -7,7 +7,7 @@ import Checkbox from '../checkbox/checkbox.js';
|
|
|
7
7
|
import getUID from '../global/get-uid.js';
|
|
8
8
|
import { refObject } from '../global/prop-types.js';
|
|
9
9
|
|
|
10
|
-
var modules_09d014b4 = {"unit":"
|
|
10
|
+
var modules_09d014b4 = {"unit":"i__const_unit_0","height":"i__const_height_1","compensate":"i__const_compensate_2","light":"light_rui_9f76","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"};
|
|
11
11
|
|
|
12
12
|
class Title extends PureComponent {
|
|
13
13
|
constructor() {
|
package/dist/alert/alert.js
CHANGED
|
@@ -38,7 +38,7 @@ import '../tab-trap/tab-trap.js';
|
|
|
38
38
|
import '../popup/position.js';
|
|
39
39
|
import '../popup/popup.consts.js';
|
|
40
40
|
|
|
41
|
-
var modules_e02b3280 = {"link":"link_rui_d382","unit":"
|
|
41
|
+
var modules_e02b3280 = {"link":"link_rui_d382","unit":"i__const_unit_1","animation-duration":"300ms","animation-easing":"ease-out","light":"light_rui_2b32","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"};
|
|
42
42
|
|
|
43
43
|
const ANIMATION_TIME = 500;
|
|
44
44
|
/**
|
package/dist/alert/container.js
CHANGED
|
@@ -4,7 +4,7 @@ import { createPortal } from 'react-dom';
|
|
|
4
4
|
import classNames from 'classnames';
|
|
5
5
|
import PropTypes from 'prop-types';
|
|
6
6
|
|
|
7
|
-
var modules_fc8df42d = {"unit":"
|
|
7
|
+
var modules_fc8df42d = {"unit":"i__const_unit_0","light":"light_rui_a9a3","alertContainer":"alertContainer_rui_a9a3","alertInContainer":"alertInContainer_rui_a9a3 alert_rui_2b32"};
|
|
8
8
|
|
|
9
9
|
class Alerts extends PureComponent {
|
|
10
10
|
render() {
|
|
@@ -45,7 +45,7 @@ import '../popup/popup.consts.js';
|
|
|
45
45
|
import '../_helpers/link.js';
|
|
46
46
|
import '../_helpers/group.js';
|
|
47
47
|
|
|
48
|
-
var modules_c87dd562 = {"unit":"
|
|
48
|
+
var modules_c87dd562 = {"unit":"i__const_unit_0","light":"light_rui_b890","title":"title_rui_b890","error":"error_rui_b890"};
|
|
49
49
|
|
|
50
50
|
let key = null;
|
|
51
51
|
function renderAlert(message) {
|
package/dist/auth/iframe-flow.js
CHANGED
|
@@ -5,6 +5,7 @@ import Link from '../link/link.js';
|
|
|
5
5
|
import AuthResponseParser from './response-parser.js';
|
|
6
6
|
import '../global/react-render-adapter.js';
|
|
7
7
|
import 'react-dom';
|
|
8
|
+
import '../global/controls-height.js';
|
|
8
9
|
import '../login-dialog/login-dialog.js';
|
|
9
10
|
import 'prop-types';
|
|
10
11
|
import '../dialog/dialog.js';
|
|
@@ -37,7 +38,6 @@ import '../_helpers/icon.js';
|
|
|
37
38
|
import '../icon/icon__svg.js';
|
|
38
39
|
import '../global/memoize.js';
|
|
39
40
|
import '../link/clickableLink.js';
|
|
40
|
-
import '../global/controls-height.js';
|
|
41
41
|
import '../_helpers/button__classes.js';
|
|
42
42
|
import '../popup/popup.target.js';
|
|
43
43
|
import '../_helpers/dialog__body-scroll-preventer.js';
|
|
@@ -39,7 +39,7 @@ import '../link/clickableLink.js';
|
|
|
39
39
|
import '../global/controls-height.js';
|
|
40
40
|
import '../_helpers/button__classes.js';
|
|
41
41
|
|
|
42
|
-
var modules_ae521deb = {"unit":"
|
|
42
|
+
var modules_ae521deb = {"unit":"i__const_unit_0","light":"light_rui_159b","dialog":"dialog_rui_159b","content":"content_rui_159b font_rui_8bff","button":"button_rui_159b","firstButton":"firstButton_rui_159b button_rui_159b","title":"title_rui_159b","logo":"logo_rui_159b","error":"error_rui_159b"};
|
|
43
43
|
|
|
44
44
|
class AuthDialog extends Component {
|
|
45
45
|
constructor() {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { ControlsHeightContext, getGlobalControlsHeight } from '../global/controls-height.js';
|
|
2
3
|
import { render } from '../global/react-render-adapter.js';
|
|
3
4
|
import AuthDialog from '../auth-dialog/auth-dialog.js';
|
|
4
5
|
import 'react-dom';
|
|
@@ -34,7 +35,6 @@ import '../_helpers/icon.js';
|
|
|
34
35
|
import '../icon/icon__svg.js';
|
|
35
36
|
import '../global/memoize.js';
|
|
36
37
|
import '../link/clickableLink.js';
|
|
37
|
-
import '../global/controls-height.js';
|
|
38
38
|
import '../_helpers/button__classes.js';
|
|
39
39
|
import '../popup/popup.target.js';
|
|
40
40
|
import '../_helpers/dialog__body-scroll-preventer.js';
|
|
@@ -49,7 +49,9 @@ const containerElement = document.createElement('div');
|
|
|
49
49
|
* Renders AuthDialog into virtual node to skip maintaining container
|
|
50
50
|
*/
|
|
51
51
|
function renderAuthDialog(props) {
|
|
52
|
-
render( /*#__PURE__*/React.createElement(
|
|
52
|
+
render( /*#__PURE__*/React.createElement(ControlsHeightContext.Provider, {
|
|
53
|
+
value: getGlobalControlsHeight()
|
|
54
|
+
}, /*#__PURE__*/React.createElement(AuthDialog, props)), containerElement);
|
|
53
55
|
}
|
|
54
56
|
function showAuthDialog() {
|
|
55
57
|
let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
package/dist/avatar/avatar.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare enum Size {
|
|
|
15
15
|
}
|
|
16
16
|
export interface AvatarProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
17
17
|
dpr: number;
|
|
18
|
-
size: Size;
|
|
18
|
+
size: Size | number;
|
|
19
19
|
subavatarSize: number;
|
|
20
20
|
url?: string | null | undefined;
|
|
21
21
|
round?: boolean | null | undefined;
|
|
@@ -9,7 +9,7 @@ import '../_helpers/_rollupPluginBabelHelpers.js';
|
|
|
9
9
|
import '../global/ring-angular-component.js';
|
|
10
10
|
import '../_helpers/icon.js';
|
|
11
11
|
|
|
12
|
-
var modules_2c17c81e = {"unit":"
|
|
12
|
+
var modules_2c17c81e = {"unit":"i__const_unit_0","light":"light_rui_91a4","breadcrumb":"breadcrumb_rui_91a4","header":"header_rui_91a4","breadcrumbSmall":"breadcrumbSmall_rui_91a4","breadcrumbElement":"breadcrumbElement_rui_91a4","active":"active_rui_91a4","elementDescription":"elementDescription_rui_91a4","separatorIcon":"separatorIcon_rui_91a4"};
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* @name Breadcrumb Ng
|
package/dist/button/button.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'focus-visible';
|
|
2
2
|
import React, { PureComponent, ButtonHTMLAttributes } from 'react';
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
|
-
import { IconType, Size } from '../icon/icon';
|
|
4
|
+
import { IconProps, IconType, Size } from '../icon/icon';
|
|
5
5
|
import { ClickableLinkProps } from '../link/clickableLink';
|
|
6
6
|
import { ControlsHeight, ControlsHeightContext } from '../global/controls-height';
|
|
7
7
|
export interface ButtonBaseProps {
|
|
@@ -17,7 +17,7 @@ export interface ButtonBaseProps {
|
|
|
17
17
|
dropdown?: boolean | null | undefined;
|
|
18
18
|
disabled?: boolean | undefined;
|
|
19
19
|
icon?: string | IconType | null | undefined;
|
|
20
|
-
iconSize?:
|
|
20
|
+
iconSize?: IconProps['size'];
|
|
21
21
|
iconClassName?: string | null | undefined;
|
|
22
22
|
iconSuppressSizeWarning?: boolean | null | undefined;
|
|
23
23
|
}
|
package/dist/code/code.js
CHANGED
|
@@ -8,7 +8,7 @@ import normalizeIndent from '../global/normalize-indent.js';
|
|
|
8
8
|
import trivialTemplateTag from '../global/trivial-template-tag.js';
|
|
9
9
|
import memoize from '../global/memoize.js';
|
|
10
10
|
|
|
11
|
-
var modules_66c414ea = {"unit":"
|
|
11
|
+
var modules_66c414ea = {"unit":"i__const_unit_0","light":"light_rui_7185","code":"code_rui_7185","inline":"inline_rui_7185","softWrap":"softWrap_rui_7185"};
|
|
12
12
|
|
|
13
13
|
var modules_39cf09e8 = {"highlightContainer":"highlightContainer_rui_6e02"};
|
|
14
14
|
|
package/dist/confirm/confirm.js
CHANGED
|
@@ -40,7 +40,7 @@ import '../global/controls-height.js';
|
|
|
40
40
|
import '../_helpers/button__classes.js';
|
|
41
41
|
import '../_helpers/panel.js';
|
|
42
42
|
|
|
43
|
-
var modules_4c9c3a3a = {"unit":"
|
|
43
|
+
var modules_4c9c3a3a = {"unit":"i__const_unit_0","light":"light_rui_2cda","description":"description_rui_2cda"};
|
|
44
44
|
|
|
45
45
|
/**
|
|
46
46
|
* @name Confirm
|
|
@@ -74,7 +74,7 @@ class Confirm extends PureComponent {
|
|
|
74
74
|
show: show,
|
|
75
75
|
trapFocus: true,
|
|
76
76
|
"data-test": "ring-confirm"
|
|
77
|
-
}, text && /*#__PURE__*/React.createElement(HeaderWrapper, null, text), /*#__PURE__*/React.createElement(ContentWrapper, null,
|
|
77
|
+
}, text && /*#__PURE__*/React.createElement(HeaderWrapper, null, text), description && /*#__PURE__*/React.createElement(ContentWrapper, null, /*#__PURE__*/React.createElement("div", {
|
|
78
78
|
className: modules_4c9c3a3a.description
|
|
79
79
|
}, description)), /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Button, {
|
|
80
80
|
"data-test": "confirm-ok-button",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { render } from '../global/react-render-adapter.js';
|
|
3
3
|
import Confirm from '../confirm/confirm.js';
|
|
4
|
-
import {
|
|
4
|
+
import { ControlsHeightContext, getGlobalControlsHeight } from '../global/controls-height.js';
|
|
5
5
|
import 'react-dom';
|
|
6
6
|
import '../_helpers/_rollupPluginBabelHelpers.js';
|
|
7
7
|
import 'prop-types';
|
|
@@ -48,7 +48,7 @@ const containerElement = document.createElement('div');
|
|
|
48
48
|
*/
|
|
49
49
|
function renderConfirm(props) {
|
|
50
50
|
const {
|
|
51
|
-
buttonsHeight =
|
|
51
|
+
buttonsHeight = getGlobalControlsHeight(),
|
|
52
52
|
...restProps
|
|
53
53
|
} = props;
|
|
54
54
|
render( /*#__PURE__*/React.createElement(ControlsHeightContext.Provider, {
|
|
@@ -23,7 +23,7 @@ import '../global/controls-height.js';
|
|
|
23
23
|
import 'react';
|
|
24
24
|
import 'scrollbar-width';
|
|
25
25
|
|
|
26
|
-
var modules_b378ce5a = {"unit":"
|
|
26
|
+
var modules_b378ce5a = {"unit":"i__const_unit_0","light":"light_rui_0b63","dialogContainer":"dialogContainer_rui_0b63","wide":"wide_rui_0b63","autoWidth":"autoWidth_rui_0b63","header":"header_rui_0b63","inSidebar":"inSidebar_rui_0b63","scrollableWrapper":"scrollableWrapper_rui_0b63","content":"content_rui_0b63","error":"error_rui_0b63","footer":"footer_rui_0b63","footerDescription":"footerDescription_rui_0b63","footerItems":"footerItems_rui_0b63","footerItem":"footerItem_rui_0b63"};
|
|
27
27
|
|
|
28
28
|
rgDialogContentDirective.$inject = ["$compile", "$q"];
|
|
29
29
|
rgDialogDirective.$inject = ["$timeout"];
|
|
@@ -3,7 +3,7 @@ import scheduleRAF from '../global/schedule-raf.js';
|
|
|
3
3
|
import { getDocumentScrollTop, getWindowHeight } from '../global/dom.js';
|
|
4
4
|
import '../_helpers/_rollupPluginBabelHelpers.js';
|
|
5
5
|
|
|
6
|
-
var modules_655b40c7 = {"unit":"
|
|
6
|
+
var modules_655b40c7 = {"unit":"i__const_unit_0","light":"light_rui_f45d","dockedPanel":"dockedPanel_rui_f45d","fixed":"fixed_rui_f45d"};
|
|
7
7
|
|
|
8
8
|
const scheduleAction = scheduleRAF();
|
|
9
9
|
|
|
@@ -28,7 +28,7 @@ import 'combokeys';
|
|
|
28
28
|
import '../global/sniffer.js';
|
|
29
29
|
import 'sniffr';
|
|
30
30
|
|
|
31
|
-
var modules_6e69b0fe = {"unit":"
|
|
31
|
+
var modules_6e69b0fe = {"unit":"i__const_unit_0","editableHeading":"editableHeading_rui_0870","fullSize":"fullSize_rui_0870","isEditing":"isEditing_rui_0870","headingWrapperButton":"headingWrapperButton_rui_0870","disabled":"disabled_rui_0870","heading":"heading_rui_0870","multiline":"multiline_rui_0870","input":"input_rui_0870","error":"error_rui_0870","button":"button_rui_0870","errorText":"errorText_rui_0870","level1":"level1_rui_0870","level2":"level2_rui_0870","level3":"level3_rui_0870","sizeS":"sizeS_rui_0870","sizeM":"sizeM_rui_0870","sizeL":"sizeL_rui_0870","sizeFULL":"sizeFULL_rui_0870"};
|
|
32
32
|
|
|
33
33
|
function noop() {}
|
|
34
34
|
const EditableHeading = props => {
|
|
@@ -18,7 +18,7 @@ import '../tab-trap/tab-trap.js';
|
|
|
18
18
|
import '../popup/position.js';
|
|
19
19
|
import '../popup/popup.target.js';
|
|
20
20
|
|
|
21
|
-
var modules_ee284100 = {"unit":"
|
|
21
|
+
var modules_ee284100 = {"unit":"i__const_unit_0","light":"light_rui_b075","errorBubblePopup":"errorBubblePopup_rui_b075","errorBubbleWrapper":"errorBubbleWrapper_rui_b075","errorBubble":"errorBubble_rui_b075"};
|
|
22
22
|
|
|
23
23
|
/**
|
|
24
24
|
* @name Error Bubble
|
|
@@ -5,3 +5,5 @@ export declare enum ControlsHeight {
|
|
|
5
5
|
L = "L"
|
|
6
6
|
}
|
|
7
7
|
export declare const ControlsHeightContext: import("react").Context<ControlsHeight>;
|
|
8
|
+
export declare function configureGlobalControlsHeight(value: ControlsHeight): void;
|
|
9
|
+
export declare function getGlobalControlsHeight(): ControlsHeight;
|
|
@@ -7,5 +7,13 @@ var ControlsHeight;
|
|
|
7
7
|
ControlsHeight["L"] = "L";
|
|
8
8
|
})(ControlsHeight || (ControlsHeight = {}));
|
|
9
9
|
const ControlsHeightContext = /*#__PURE__*/createContext(ControlsHeight.M);
|
|
10
|
+
let globalControlsHeight = ControlsHeight.M;
|
|
11
|
+
// This can be used if React Context is not applicable, for example for alertService or Auth dialog
|
|
12
|
+
function configureGlobalControlsHeight(value) {
|
|
13
|
+
globalControlsHeight = value;
|
|
14
|
+
}
|
|
15
|
+
function getGlobalControlsHeight() {
|
|
16
|
+
return globalControlsHeight;
|
|
17
|
+
}
|
|
10
18
|
|
|
11
|
-
export { ControlsHeight, ControlsHeightContext };
|
|
19
|
+
export { ControlsHeight, ControlsHeightContext, configureGlobalControlsHeight, getGlobalControlsHeight };
|
package/dist/icon/icon.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export interface IconProps extends HTMLAttributes<HTMLElement> {
|
|
|
9
9
|
color: Color;
|
|
10
10
|
glyph: string | IconType | null;
|
|
11
11
|
height?: number | undefined;
|
|
12
|
-
size?: Size | null | undefined;
|
|
12
|
+
size?: Size | number | null | undefined;
|
|
13
13
|
width?: number | undefined;
|
|
14
14
|
loading?: boolean | null | undefined;
|
|
15
15
|
suppressSizeWarning?: boolean | null | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { _ as _defineProperty } from '../_helpers/_rollupPluginBabelHelpers.js';
|
|
2
2
|
import { getPixelRatio } from '../global/dom.js';
|
|
3
3
|
|
|
4
|
-
var modules_00b5ad26 = {"unit":"
|
|
4
|
+
var modules_00b5ad26 = {"unit":"i__const_unit_0","light":"light_rui_47a4","canvas":"canvas_rui_47a4","animate":"animate_rui_47a4","rotation-keyframes":"rotation-keyframes_rui_47a4","text":"text_rui_47a4"};
|
|
5
5
|
|
|
6
6
|
const INITIAL_TICKS = 100;
|
|
7
7
|
class Particle {
|
|
@@ -46,7 +46,7 @@ import '../auth/response-parser.js';
|
|
|
46
46
|
import 'es6-error';
|
|
47
47
|
import '../global/url.js';
|
|
48
48
|
|
|
49
|
-
var modules_45da1992 = {"unit":"
|
|
49
|
+
var modules_45da1992 = {"unit":"i__const_unit_0","light":"light_rui_ea70","iFrame":"iFrame_rui_ea70","dialogContent":"dialogContent_rui_ea70","nonOpaqueLoader":"nonOpaqueLoader_rui_ea70","fallbackLinkContainer":"fallbackLinkContainer_rui_ea70"};
|
|
50
50
|
|
|
51
51
|
const HUB_AUTH_PAGE_LOGIN_STARTED = 'HUB_AUTH_PAGE_LOGIN_STARTED';
|
|
52
52
|
const HUB_AUTH_PAGE_LOGIN_DIMENSIONS = 'HUB_AUTH_PAGE_LOGIN_DIMENSIONS';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { unmountComponentAtNode, render } from '../global/react-render-adapter.js';
|
|
3
|
+
import { ControlsHeightContext, getGlobalControlsHeight } from '../global/controls-height.js';
|
|
3
4
|
import LoginDialog from './login-dialog.js';
|
|
4
5
|
import 'react-dom';
|
|
5
6
|
import '../_helpers/_rollupPluginBabelHelpers.js';
|
|
@@ -34,7 +35,6 @@ import '../_helpers/icon.js';
|
|
|
34
35
|
import '../icon/icon__svg.js';
|
|
35
36
|
import '../global/memoize.js';
|
|
36
37
|
import '../link/clickableLink.js';
|
|
37
|
-
import '../global/controls-height.js';
|
|
38
38
|
import '../_helpers/button__classes.js';
|
|
39
39
|
import '../popup/popup.target.js';
|
|
40
40
|
import '../_helpers/dialog__body-scroll-preventer.js';
|
|
@@ -53,7 +53,9 @@ const containerElement = document.createElement('div');
|
|
|
53
53
|
* Renders LoginDialog into virtual node to skip maintaining container
|
|
54
54
|
*/
|
|
55
55
|
function renderLoginDialog(props) {
|
|
56
|
-
render( /*#__PURE__*/React.createElement(
|
|
56
|
+
render( /*#__PURE__*/React.createElement(ControlsHeightContext.Provider, {
|
|
57
|
+
value: getGlobalControlsHeight()
|
|
58
|
+
}, /*#__PURE__*/React.createElement(LoginDialog, props)), containerElement);
|
|
57
59
|
}
|
|
58
60
|
function noop() {}
|
|
59
61
|
function showAuthDialog() {
|
|
@@ -21,7 +21,7 @@ import '../_helpers/link.js';
|
|
|
21
21
|
import '../heading/heading.js';
|
|
22
22
|
import 'util-deprecate';
|
|
23
23
|
|
|
24
|
-
var modules_9c709e64 = {"unit":"
|
|
24
|
+
var modules_9c709e64 = {"unit":"i__const_unit_0","p-margin":"10px","light":"light_rui_e3b3","inline":"inline_rui_e3b3","markdown":"markdown_rui_e3b3 font_rui_8bff"};
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* @name Markdown
|
package/dist/message/message.js
CHANGED
|
@@ -32,7 +32,7 @@ import '../link/clickableLink.js';
|
|
|
32
32
|
import '../global/controls-height.js';
|
|
33
33
|
import '../_helpers/button__classes.js';
|
|
34
34
|
|
|
35
|
-
var modules_8b837449 = {"unit":"
|
|
35
|
+
var modules_8b837449 = {"unit":"i__const_unit_0","padding":"12px","light":"light_rui_f3db","container":"container_rui_f3db","message":"message_rui_f3db","icon":"icon_rui_f3db","title":"title_rui_f3db font-lower_rui_8bff font_rui_8bff","description":"description_rui_f3db","button":"button_rui_f3db","tail":"tail_rui_f3db"};
|
|
36
36
|
|
|
37
37
|
/**
|
|
38
38
|
* @name Message
|
|
@@ -5,11 +5,11 @@ const MAJOR_VERSION_INDEX = 0;
|
|
|
5
5
|
/**
|
|
6
6
|
* SUPPORTED_BROWSERS are defined by Babel plugin, see babel config
|
|
7
7
|
*/
|
|
8
|
-
if (!["and_chr
|
|
8
|
+
if (!["and_chr 111", "chrome 110", "chrome 109", "edge 110", "edge 109", "firefox 109", "ios_saf 16.3", "ios_saf 16.2", "ios_saf 16.1", "ios_saf 16.0", "ios_saf 15.6", "samsung 19.0"]) {
|
|
9
9
|
// eslint-disable-next-line no-console
|
|
10
10
|
console.warn('Ring UI: no SUPPORTED_BROWSERS passed. Please check babel config.');
|
|
11
11
|
}
|
|
12
|
-
const SUPPORTED = ["and_chr
|
|
12
|
+
const SUPPORTED = ["and_chr 111", "chrome 110", "chrome 109", "edge 110", "edge 109", "firefox 109", "ios_saf 16.3", "ios_saf 16.2", "ios_saf 16.1", "ios_saf 16.0", "ios_saf 15.6", "samsung 19.0"] || [];
|
|
13
13
|
const WHITE_LISTED_BROWSERS = ['chrome', 'firefox', 'safari', 'edge'];
|
|
14
14
|
const WHITE_LIST = SUPPORTED.reduce((acc, item) => {
|
|
15
15
|
var _item$match;
|
package/dist/pager/pager.js
CHANGED
|
@@ -87,7 +87,7 @@ import '../caret/caret.js';
|
|
|
87
87
|
import '../text/text.js';
|
|
88
88
|
import '../_helpers/select__filter.js';
|
|
89
89
|
|
|
90
|
-
var modules_1a5f0d42 = {"unit":"
|
|
90
|
+
var modules_1a5f0d42 = {"unit":"i__const_unit_0","light":"light_rui_2db7","pager":"pager_rui_2db7","links":"links_rui_2db7","link":"link_rui_2db7","linkDisabled":"linkDisabled_rui_2db7"};
|
|
91
91
|
|
|
92
92
|
class Pager extends PureComponent {
|
|
93
93
|
constructor() {
|
|
@@ -3,7 +3,7 @@ import React, { PureComponent } from 'react';
|
|
|
3
3
|
import PropTypes from 'prop-types';
|
|
4
4
|
import classNames from 'classnames';
|
|
5
5
|
|
|
6
|
-
var modules_fb7af416 = {"dark":"dark_rui_eb55","unit":"
|
|
6
|
+
var modules_fb7af416 = {"dark":"dark_rui_eb55","unit":"i__const_unit_1","light":"light_rui_5875","progressBar":"progressBar_rui_5875","globalMode":"globalMode_rui_5875","line":"line_rui_5875","progress-bar":"progress-bar_rui_5875"};
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @name Progress Bar
|
package/dist/select/select.js
CHANGED
|
@@ -79,7 +79,7 @@ import '../caret/caret.js';
|
|
|
79
79
|
import '../text/text.js';
|
|
80
80
|
import '../_helpers/select__filter.js';
|
|
81
81
|
|
|
82
|
-
var modules_9d0de074 = {"unit":"
|
|
82
|
+
var modules_9d0de074 = {"unit":"i__const_unit_0","button-shadow":"i__const_button_shadow_1","select":"select_rui_11de","value":"value_rui_11de ellipsis_rui_8bff font_rui_8bff","icons":"icons_rui_11de","light":"light_rui_11de","toolbar":"toolbar_rui_11de","button":"button_rui_11de","buttonSpaced":"buttonSpaced_rui_11de","inputMode":"inputMode_rui_11de","selectedIcon":"selectedIcon_rui_11de resetButton_rui_8bff","clearIcon":"clearIcon_rui_11de","sizeS":"sizeS_rui_11de","sizeM":"sizeM_rui_11de","sizeL":"sizeL_rui_11de","sizeFULL":"sizeFULL_rui_11de","sizeAUTO":"sizeAUTO_rui_11de","buttonMode":"buttonMode_rui_11de","open":"open_rui_11de","buttonContainer":"buttonContainer_rui_11de","buttonValue":"buttonValue_rui_11de ellipsis_rui_8bff","buttonValueOpen":"buttonValueOpen_rui_11de","buttonValueEmpty":"buttonValueEmpty_rui_11de","heightS":"heightS_rui_11de","label":"label_rui_11de","disabled":"disabled_rui_11de","avatar":"avatar_rui_11de","popup":"popup_rui_11de","chevron":"chevron_rui_11de","chevronIcon":"chevronIcon_rui_11de"};
|
|
83
83
|
|
|
84
84
|
/**
|
|
85
85
|
* @name Select
|
package/dist/tag/tag.js
CHANGED
|
@@ -16,7 +16,7 @@ import '@jetbrains/icons/chevron-10px';
|
|
|
16
16
|
import '../link/clickableLink.js';
|
|
17
17
|
import '../_helpers/button__classes.js';
|
|
18
18
|
|
|
19
|
-
var modules_2f9be069 = {"unit":"
|
|
19
|
+
var modules_2f9be069 = {"unit":"i__const_unit_0","max-height":"20px","tag":"tag_rui_2f49 resetButton_rui_8bff","tagAngled":"tagAngled_rui_2f49","light":"light_rui_2f49","withRemove":"withRemove_rui_2f49","container":"container_rui_2f49","focused":"focused_rui_2f49","content":"content_rui_2f49 ellipsis_rui_8bff","disabled":"disabled_rui_2f49","remove":"remove_rui_2f49","removeIcon":"removeIcon_rui_2f49","icon":"icon_rui_2f49","avatarContainer":"avatarContainer_rui_2f49","customIcon":"customIcon_rui_2f49","avatarIcon":"avatarIcon_rui_2f49"};
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
22
|
* @name Tag
|
|
@@ -80,7 +80,7 @@ import '../_helpers/select__filter.js';
|
|
|
80
80
|
import '../tag/tag.js';
|
|
81
81
|
import '../global/react-render-adapter.js';
|
|
82
82
|
|
|
83
|
-
var modules_5aa8aaf3 = {"unit":"
|
|
83
|
+
var modules_5aa8aaf3 = {"unit":"i__const_unit_0","outerContainer":"outerContainer_rui_e356","container":"container_rui_e356","input":"input_rui_e356","light":"light_rui_1a67","tagsInput":"tagsInput_rui_1a67","tagsInputDisabled":"tagsInputDisabled_rui_1a67","tagsInputFocused":"tagsInputFocused_rui_1a67","tagsList":"tagsList_rui_1a67","tagsSelect":"tagsSelect_rui_1a67"};
|
|
84
84
|
|
|
85
85
|
function noop() {}
|
|
86
86
|
/**
|
package/dist/toggle/toggle.js
CHANGED
|
@@ -4,7 +4,7 @@ import PropTypes from 'prop-types';
|
|
|
4
4
|
import classNames from 'classnames';
|
|
5
5
|
import joinDataTestAttributes from '../global/data-tests.js';
|
|
6
6
|
|
|
7
|
-
var modules_331c5aa7 = {"unit":"
|
|
7
|
+
var modules_331c5aa7 = {"unit":"i__const_unit_0","padding":"2px","disabled-line-color":"rgba(255, 255, 255, 0.9)","duration":"300ms","timing-function":"cubic-bezier(0.23, 1, 0.32, 1)","light":"light_rui_773f","toggle":"toggle_rui_773f","switch":"switch_rui_773f","disabled":"disabled_rui_773f","label":"label_rui_773f","leftLabel":"leftLabel_rui_773f","switchWrapper":"switchWrapper_rui_773f","input":"input_rui_773f","size16":"size16_rui_773f","size14":"size14_rui_773f","size20":"size20_rui_773f","paleSwitch":"paleSwitch_rui_773f"};
|
|
8
8
|
|
|
9
9
|
const Size = {
|
|
10
10
|
Size14: modules_331c5aa7.size14,
|
package/dist/tooltip/tooltip.js
CHANGED
|
@@ -18,7 +18,7 @@ import '../popup/position.js';
|
|
|
18
18
|
import '../popup/popup.consts.js';
|
|
19
19
|
import '../popup/popup.target.js';
|
|
20
20
|
|
|
21
|
-
var modules_cd5e45a9 = {"unit":"
|
|
21
|
+
var modules_cd5e45a9 = {"unit":"i__const_unit_0","light":"light_rui_64ba","tooltip":"tooltip_rui_64ba","long":"long_rui_64ba"};
|
|
22
22
|
|
|
23
23
|
const scheduleScroll = scheduleRAF();
|
|
24
24
|
const TooltipContext = /*#__PURE__*/createContext(undefined);
|
|
@@ -6,6 +6,7 @@ import alertService from '../alert-service/alert-service.js';
|
|
|
6
6
|
import Link from '../link/link.js';
|
|
7
7
|
import Alert from '../alert/alert.js';
|
|
8
8
|
import Group from '../group/group.js';
|
|
9
|
+
import { ControlsHeightContext, getGlobalControlsHeight } from '../global/controls-height.js';
|
|
9
10
|
import UserAgreement from './user-agreement.js';
|
|
10
11
|
import 'react-dom';
|
|
11
12
|
import '../storage/storage__local.js';
|
|
@@ -34,7 +35,6 @@ import '../_helpers/loader-inline.js';
|
|
|
34
35
|
import '../global/dom.js';
|
|
35
36
|
import '../button/button.js';
|
|
36
37
|
import '@jetbrains/icons/chevron-10px';
|
|
37
|
-
import '../global/controls-height.js';
|
|
38
38
|
import '../_helpers/button__classes.js';
|
|
39
39
|
import '../_helpers/theme.js';
|
|
40
40
|
import '../popup/popup.target.js';
|
|
@@ -267,7 +267,9 @@ class UserAgreementService {
|
|
|
267
267
|
preview,
|
|
268
268
|
...restOptions
|
|
269
269
|
};
|
|
270
|
-
render( /*#__PURE__*/React.createElement(
|
|
270
|
+
render( /*#__PURE__*/React.createElement(ControlsHeightContext.Provider, {
|
|
271
|
+
value: getGlobalControlsHeight()
|
|
272
|
+
}, /*#__PURE__*/React.createElement(UserAgreement, props)), _this.container);
|
|
271
273
|
if (onDialogShow) {
|
|
272
274
|
onDialogShow();
|
|
273
275
|
}
|
|
@@ -54,7 +54,7 @@ import '../heading/heading.js';
|
|
|
54
54
|
import 'element-resize-detector';
|
|
55
55
|
import '../global/schedule-raf.js';
|
|
56
56
|
|
|
57
|
-
var modules_f5ed85cf = {"unit":"
|
|
57
|
+
var modules_f5ed85cf = {"unit":"i__const_unit_0","extra-small-screen-media":"i__const_extra_small_screen_media_1","light":"light_rui_a19e","agreementDialog":"agreementDialog_rui_a19e","dialogContent":"dialogContent_rui_a19e","suggestion":"suggestion_rui_a19e","remindLaterButton":"remindLaterButton_rui_a19e"};
|
|
58
58
|
|
|
59
59
|
function noop() {}
|
|
60
60
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetbrains/ring-ui",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.125",
|
|
4
4
|
"description": "JetBrains UI library",
|
|
5
5
|
"author": "JetBrains",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"@babel/eslint-parser": "^7.21.3",
|
|
79
79
|
"@jetbrains/eslint-config": "^5.4.1",
|
|
80
80
|
"@jetbrains/stylelint-config": "^3.0.2",
|
|
81
|
-
"@primer/octicons": "^18.
|
|
81
|
+
"@primer/octicons": "^18.3.0",
|
|
82
82
|
"@rollup/plugin-babel": "^6.0.3",
|
|
83
83
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
84
84
|
"@rollup/plugin-replace": "^5.0.2",
|
|
@@ -108,15 +108,15 @@
|
|
|
108
108
|
"@types/react-dom": "^18.0.11",
|
|
109
109
|
"@types/sinon": "^10.0.13",
|
|
110
110
|
"@types/sinon-chai": "^3.2.9",
|
|
111
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
112
|
-
"@typescript-eslint/parser": "^5.
|
|
111
|
+
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
112
|
+
"@typescript-eslint/parser": "^5.56.0",
|
|
113
113
|
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
|
|
114
114
|
"angular": "^1.8.3",
|
|
115
115
|
"angular-mocks": "^1.8.3",
|
|
116
116
|
"angular-route": "^1.8.3",
|
|
117
117
|
"babel-plugin-react-docgen": "^4.2.1",
|
|
118
118
|
"babel-plugin-require-context-hook": "^1.0.0",
|
|
119
|
-
"caniuse-lite": "^1.0.
|
|
119
|
+
"caniuse-lite": "^1.0.30001469",
|
|
120
120
|
"chai": "^4.3.7",
|
|
121
121
|
"chai-as-promised": "^7.1.1",
|
|
122
122
|
"chai-dom": "^1.10.0",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
134
134
|
"eslint-plugin-react": "^7.32.2",
|
|
135
135
|
"events": "^3.3.0",
|
|
136
|
-
"glob": "^9.3.
|
|
136
|
+
"glob": "^9.3.2",
|
|
137
137
|
"html-webpack-plugin": "^5.5.0",
|
|
138
138
|
"husky": "^8.0.3",
|
|
139
139
|
"identity-obj-proxy": "^3.0.0",
|
|
@@ -157,21 +157,22 @@
|
|
|
157
157
|
"react-dom": "^18.2.0",
|
|
158
158
|
"react-test-renderer": "^18.2.0",
|
|
159
159
|
"regenerator-runtime": "^0.13.11",
|
|
160
|
-
"rimraf": "^4.4.
|
|
161
|
-
"rollup": "^3.
|
|
160
|
+
"rimraf": "^4.4.1",
|
|
161
|
+
"rollup": "^3.20.2",
|
|
162
162
|
"rollup-plugin-clear": "^2.0.7",
|
|
163
163
|
"rollup-plugin-styles": "^4.0.0",
|
|
164
164
|
"sinon": "^15.0.2",
|
|
165
165
|
"sinon-chai": "^3.7.0",
|
|
166
166
|
"storage-mock": "^2.1.0",
|
|
167
167
|
"storybook-addon-themes": "^6.1.0",
|
|
168
|
-
"
|
|
168
|
+
"storybook-zeplin": "^1.7.3",
|
|
169
|
+
"stylelint": "^15.3.0",
|
|
169
170
|
"svg-inline-loader": "^0.8.2",
|
|
170
171
|
"teamcity-service-messages": "^0.1.14",
|
|
171
172
|
"terser-webpack-plugin": "^5.3.7",
|
|
172
173
|
"typescript": "~4.9.5",
|
|
173
174
|
"wallaby-webpack": "^3.9.16",
|
|
174
|
-
"webpack": "^5.76.
|
|
175
|
+
"webpack": "^5.76.3",
|
|
175
176
|
"webpack-cli": "^5.0.1",
|
|
176
177
|
"xmlappend": "^1.0.4",
|
|
177
178
|
"yo": "^4.3.1"
|
|
@@ -238,11 +239,11 @@
|
|
|
238
239
|
"postcss-calc": "^8.2.4",
|
|
239
240
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
240
241
|
"postcss-font-family-system-ui": "^5.0.0",
|
|
241
|
-
"postcss-loader": "^7.0
|
|
242
|
-
"postcss-modules-values-replace": "^
|
|
242
|
+
"postcss-loader": "^7.1.0",
|
|
243
|
+
"postcss-modules-values-replace": "^4.1.0",
|
|
243
244
|
"postcss-preset-env": "^8.0.1",
|
|
244
245
|
"prop-types": "^15.8.1",
|
|
245
|
-
"react-markdown": "^8.0.
|
|
246
|
+
"react-markdown": "^8.0.6",
|
|
246
247
|
"react-movable": "^3.0.4",
|
|
247
248
|
"react-virtualized": "^9.22.3",
|
|
248
249
|
"react-waypoint": "^10.3.0",
|
|
@@ -251,7 +252,6 @@
|
|
|
251
252
|
"scrollbar-width": "^3.1.1",
|
|
252
253
|
"simply-uuid": "^1.0.1",
|
|
253
254
|
"sniffr": "^1.2.0",
|
|
254
|
-
"storybook-zeplin": "^1.7.3",
|
|
255
255
|
"style-inject": "^0.3.0",
|
|
256
256
|
"style-loader": "~3.3.2",
|
|
257
257
|
"url-loader": "^4.1.1",
|