@jetbrains/ring-ui-built 6.0.13 → 6.0.15
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/_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 +1 -1
- package/components/_helpers/card.js +1 -1
- 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/heading.js +1 -1
- package/components/_helpers/icon__svg.js +1 -1
- package/components/_helpers/input.js +1 -1
- package/components/_helpers/island.js +1 -1
- package/components/_helpers/link.js +1 -1
- package/components/_helpers/list.js +1 -1
- package/components/_helpers/query-assist__suggestions.js +1 -1
- package/components/_helpers/select__filter.js +1 -1
- package/components/_helpers/services-link.js +1 -1
- package/components/_helpers/sidebar.js +1 -1
- package/components/_helpers/tab-link.js +1 -1
- package/components/_helpers/table.js +1 -1
- package/components/_helpers/theme.js +1 -1
- package/components/_helpers/title.js +1 -1
- package/components/alert/alert.js +1 -1
- package/components/alert/container.js +1 -1
- package/components/auth/down-notification.js +1 -1
- package/components/auth-dialog/auth-dialog.js +1 -1
- package/components/avatar/avatar.js +1 -1
- package/components/button-set/button-set.js +1 -1
- package/components/button-toolbar/button-toolbar.js +1 -1
- package/components/checkbox/checkbox.js +1 -1
- package/components/code/code.js +2 -2
- package/components/collapse/collapse-content.js +1 -1
- package/components/confirm/confirm.js +1 -1
- package/components/control-label/control-label.js +1 -1
- package/components/data-list/data-list.d.ts +1 -1
- package/components/editable-heading/editable-heading.js +1 -1
- package/components/error-bubble/error-bubble.js +1 -1
- package/components/error-message/error-message.js +1 -1
- package/components/footer/footer.js +1 -1
- package/components/global/url.js +1 -2
- package/components/group/group.js +1 -1
- package/components/header/profile.d.ts +4 -0
- package/components/header/profile.js +8 -2
- package/components/http/http.d.ts +2 -2
- package/components/island/adaptive-island-hoc.d.ts +1 -1
- package/components/island/island.d.ts +1 -1
- package/components/link/link.d.ts +2 -2
- package/components/list/list__item.js +1 -1
- package/components/loader/loader__core.js +1 -1
- package/components/loader-inline/loader-inline.js +1 -1
- package/components/loader-screen/loader-screen.js +1 -1
- package/components/login-dialog/login-dialog.js +1 -1
- package/components/markdown/markdown.js +1 -1
- package/components/message/message.js +1 -1
- package/components/old-browsers-message/white-list.js +2 -2
- package/components/pager/pager.js +1 -1
- package/components/panel/panel.js +1 -1
- package/components/popup/popup.js +1 -1
- package/components/progress-bar/progress-bar.js +1 -1
- package/components/radio/radio__item.js +1 -1
- package/components/select/select.js +1 -1
- package/components/shortcuts/shortcuts-hoc.d.ts +1 -1
- package/components/slider/slider.js +1 -1
- package/components/style.css +1 -1
- package/components/tab-trap/tab-trap.js +1 -1
- package/components/table/disable-hover-hoc.d.ts +1 -1
- package/components/table/table.d.ts +1 -1
- package/components/tag/tag.js +1 -1
- package/components/tags-input/tags-input.js +1 -1
- package/components/text/text.js +1 -1
- package/components/toggle/toggle.js +1 -1
- package/components/tooltip/tooltip.js +1 -1
- package/components/user-agreement/user-agreement.js +1 -1
- package/package.json +2 -2
@@ -36,6 +36,8 @@ export interface ProfileProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onSe
|
|
36
36
|
onRevertPostponement?: (() => void) | null | undefined;
|
37
37
|
menuProps?: PopupMenuAttrs | null | undefined;
|
38
38
|
activeClassName?: string | null | undefined;
|
39
|
+
onShow?: (() => void);
|
40
|
+
onHide?: (() => void);
|
39
41
|
}
|
40
42
|
export default class Profile extends PureComponent<ProfileProps> {
|
41
43
|
static propTypes: {
|
@@ -72,6 +74,8 @@ export default class Profile extends PureComponent<ProfileProps> {
|
|
72
74
|
onRevertPostponement: PropTypes.Requireable<(...args: any[]) => any>;
|
73
75
|
renderGuest: PropTypes.Requireable<(...args: any[]) => any>;
|
74
76
|
menuProps: PropTypes.Requireable<object>;
|
77
|
+
onShow: PropTypes.Requireable<(...args: any[]) => any>;
|
78
|
+
onHide: PropTypes.Requireable<(...args: any[]) => any>;
|
75
79
|
};
|
76
80
|
static defaultProps: ProfileProps;
|
77
81
|
static contextType: React.Context<import("../i18n/i18n-context").I18nContextProps>;
|
@@ -92,7 +92,7 @@ import '../popup/popup.consts.js';
|
|
92
92
|
import '../popup/popup.target.js';
|
93
93
|
import '../i18n/i18n.js';
|
94
94
|
|
95
|
-
var _excluded = ["className", "activeClassName", "closeOnSelect", "hasUpdates", "onLogout", "user", "profileUrl", "LinkComponent", "onSwitchUser", "renderPopupItems", "onRevertPostponement", "showApplyChangedUser", "showName", "showLogIn", "showLogOut", "showSwitchUser", "renderGuest", "translations", "size", "round", "loading", "onLogin", "menuProps"];
|
95
|
+
var _excluded = ["className", "activeClassName", "closeOnSelect", "hasUpdates", "onLogout", "user", "profileUrl", "LinkComponent", "onSwitchUser", "renderPopupItems", "onRevertPostponement", "showApplyChangedUser", "showName", "showLogIn", "showLogOut", "showSwitchUser", "renderGuest", "translations", "size", "round", "loading", "onLogin", "menuProps", "onShow", "onHide"];
|
96
96
|
var rgItemType = PopupMenu.ListProps.Type.LINK;
|
97
97
|
var Profile = /*#__PURE__*/function (_PureComponent) {
|
98
98
|
_inherits(Profile, _PureComponent);
|
@@ -129,6 +129,8 @@ var Profile = /*#__PURE__*/function (_PureComponent) {
|
|
129
129
|
_this$props.loading;
|
130
130
|
_this$props.onLogin;
|
131
131
|
var menuProps = _this$props.menuProps,
|
132
|
+
onShow = _this$props.onShow,
|
133
|
+
onHide = _this$props.onHide,
|
132
134
|
props = _objectWithoutProperties(_this$props, _excluded);
|
133
135
|
var translate = this.context.translate;
|
134
136
|
if (!user) {
|
@@ -183,6 +185,8 @@ var Profile = /*#__PURE__*/function (_PureComponent) {
|
|
183
185
|
onClick: onLogout
|
184
186
|
}].filter(isTruthy);
|
185
187
|
return /*#__PURE__*/React.createElement(DropdownMenu, _extends({}, props, {
|
188
|
+
onShow: onShow,
|
189
|
+
onHide: onHide,
|
186
190
|
title: user.name,
|
187
191
|
anchor: anchor,
|
188
192
|
data: renderPopupItems(items),
|
@@ -233,7 +237,9 @@ _defineProperty(Profile, "propTypes", {
|
|
233
237
|
showApplyChangedUser: PropTypes.bool,
|
234
238
|
onRevertPostponement: PropTypes.func,
|
235
239
|
renderGuest: PropTypes.func,
|
236
|
-
menuProps: PropTypes.object
|
240
|
+
menuProps: PropTypes.object,
|
241
|
+
onShow: PropTypes.func,
|
242
|
+
onHide: PropTypes.func
|
237
243
|
});
|
238
244
|
_defineProperty(Profile, "defaultProps", {
|
239
245
|
closeOnSelect: true,
|
@@ -53,9 +53,9 @@ export default class HTTP implements Partial<HTTPAuth> {
|
|
53
53
|
* Usage: const {promise, abort} = http.abortify(http.get<{id: string}>)('http://test.com');
|
54
54
|
* @param method
|
55
55
|
*/
|
56
|
-
abortify: <T>(method: Method<T>) => (
|
56
|
+
abortify: <T>(method: Method<T>) => ((...p: Parameters<Method<T>>) => ({
|
57
57
|
promise: Promise<T>;
|
58
58
|
abort: () => void;
|
59
|
-
});
|
59
|
+
}));
|
60
60
|
}
|
61
61
|
export {};
|
@@ -3,7 +3,7 @@ export declare const PhaseContext: React.Context<number | null>;
|
|
3
3
|
type ScrollHandler = (element: Element) => void;
|
4
4
|
export declare const ScrollHandlerContext: React.Context<ScrollHandler | null>;
|
5
5
|
export default function adaptiveIslandHOC<P>(ComposedComponent: ComponentType<P>): {
|
6
|
-
new (props: P
|
6
|
+
new (props: P): {
|
7
7
|
state: {
|
8
8
|
phase: null;
|
9
9
|
};
|
@@ -14,7 +14,7 @@ export interface LinkBaseProps {
|
|
14
14
|
}
|
15
15
|
export type LinkProps<P extends ClickableLinkProps = ClickableLinkProps> = Omit<P, keyof LinkBaseProps> & LinkBaseProps;
|
16
16
|
export declare function linkHOC<P extends ClickableLinkProps>(ComposedComponent: ComponentType<P> | string): {
|
17
|
-
new (props: LinkProps<P>
|
17
|
+
new (props: LinkProps<P>): {
|
18
18
|
render(): React.JSX.Element;
|
19
19
|
context: unknown;
|
20
20
|
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<LinkProps<P>>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
@@ -75,7 +75,7 @@ export declare function linkHOC<P extends ClickableLinkProps>(ComposedComponent:
|
|
75
75
|
contextType?: React.Context<any> | undefined;
|
76
76
|
};
|
77
77
|
declare const _default: {
|
78
|
-
new (props: LinkProps<ClickableLinkProps>
|
78
|
+
new (props: LinkProps<ClickableLinkProps>): {
|
79
79
|
render(): React.JSX.Element;
|
80
80
|
context: unknown;
|
81
81
|
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<LinkProps<ClickableLinkProps>>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
@@ -44,7 +44,7 @@ import '../global/memoize.js';
|
|
44
44
|
import 'core-js/modules/es.map.js';
|
45
45
|
import 'core-js/modules/es.weak-map.js';
|
46
46
|
|
47
|
-
var modules_5b0fb3e8 = {"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)","clearfix":"
|
47
|
+
var modules_5b0fb3e8 = {"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)","clearfix":"clearfix_rui_f295","font":"font_rui_f295","font-lower":"font-lower_rui_f295 font_rui_f295","font-smaller":"font-smaller_rui_f295 font-lower_rui_f295 font_rui_f295","font-smaller-lower":"font-smaller-lower_rui_f295 font-smaller_rui_f295 font-lower_rui_f295 font_rui_f295","font-larger-lower":"font-larger-lower_rui_f295 font-lower_rui_f295 font_rui_f295","font-larger":"font-larger_rui_f295 font-larger-lower_rui_f295 font-lower_rui_f295 font_rui_f295","thin-font":"thin-font_rui_f295","monospace-font":"monospace-font_rui_f295","ellipsis":"ellipsis_rui_f295","resetButton":"resetButton_rui_f295"};
|
48
48
|
|
49
49
|
var _excluded = ["scrolling", "className", "disabled", "checkbox", "avatar", "subavatar", "glyph", "icon", "rightGlyph", "description", "label", "title", "details", "hover", "rgItemType", "level", "tabIndex", "compact", "onClick", "onCheckboxChange", "onMouseOver", "onMouseDown", "onMouseUp", "rightNodes", "leftNodes", "showGeneratedAvatar", "username", "labelWrapper"];
|
50
50
|
/**
|
@@ -13,7 +13,7 @@ import 'core-js/modules/es.array.iterator.js';
|
|
13
13
|
import 'core-js/modules/es.set.js';
|
14
14
|
import 'core-js/modules/web.dom-collections.iterator.js';
|
15
15
|
|
16
|
-
var modules_00b5ad26 = {"light":"light_rui_2ac4","canvas":"
|
16
|
+
var modules_00b5ad26 = {"light":"light_rui_2ac4","canvas":"canvas_rui_eff2","animate":"animate_rui_eff2","rotation-keyframes":"rotation-keyframes_rui_eff2","text":"text_rui_eff2"};
|
17
17
|
|
18
18
|
var INITIAL_TICKS = 100;
|
19
19
|
var Particle = /*#__PURE__*/function () {
|
@@ -8,7 +8,7 @@ import 'core-js/modules/es.object.to-string.js';
|
|
8
8
|
import 'core-js/modules/es.object.entries.js';
|
9
9
|
import 'core-js/modules/es.array.concat.js';
|
10
10
|
|
11
|
-
var modules_e49a3529 = {"dark":"
|
11
|
+
var modules_e49a3529 = {"dark":"dark_rui_f090","light":"light_rui_2ac4","loader":"loader_rui_092a","spin":"spin_rui_092a","pulse":"pulse_rui_092a","children":"children_rui_092a"};
|
12
12
|
|
13
13
|
var _excluded = ["className", "data-test", "children"];
|
14
14
|
/**
|
@@ -20,7 +20,7 @@ import 'core-js/modules/es.array.iterator.js';
|
|
20
20
|
import 'core-js/modules/es.set.js';
|
21
21
|
import 'core-js/modules/web.dom-collections.iterator.js';
|
22
22
|
|
23
|
-
var modules_122a82e9 = {"light":"light_rui_2ac4","loaderScreen":"
|
23
|
+
var modules_122a82e9 = {"light":"light_rui_2ac4","loaderScreen":"loaderScreen_rui_90dd","loader":"loader_rui_90dd","loaderWithoutSpacing":"loaderWithoutSpacing_rui_90dd"};
|
24
24
|
|
25
25
|
var _excluded = ["message", "className", "containerClassName"];
|
26
26
|
/**
|
@@ -70,7 +70,7 @@ import 'core-js/modules/es.array.index-of.js';
|
|
70
70
|
import 'es6-error';
|
71
71
|
import '../global/url.js';
|
72
72
|
|
73
|
-
var modules_45da1992 = {"light":"light_rui_2ac4","iFrame":"
|
73
|
+
var modules_45da1992 = {"light":"light_rui_2ac4","iFrame":"iFrame_rui_2d2e","dialogContent":"dialogContent_rui_2d2e","nonOpaqueLoader":"nonOpaqueLoader_rui_2d2e","fallbackLinkContainer":"fallbackLinkContainer_rui_2d2e"};
|
74
74
|
|
75
75
|
var HUB_AUTH_PAGE_LOGIN_STARTED = 'HUB_AUTH_PAGE_LOGIN_STARTED';
|
76
76
|
var HUB_AUTH_PAGE_LOGIN_DIMENSIONS = 'HUB_AUTH_PAGE_LOGIN_DIMENSIONS';
|
@@ -5,7 +5,7 @@ import classNames from 'classnames';
|
|
5
5
|
import { m as modules_901b77ec } from '../_helpers/heading.js';
|
6
6
|
import { m as modules_607b0772 } from '../_helpers/link.js';
|
7
7
|
|
8
|
-
var modules_9c709e64 = {"p-margin":"10px","light":"light_rui_2ac4","inline":"
|
8
|
+
var modules_9c709e64 = {"p-margin":"10px","light":"light_rui_2ac4","inline":"inline_rui_9a22","markdown":"markdown_rui_9a22 font_rui_f295"};
|
9
9
|
|
10
10
|
/**
|
11
11
|
* @name Markdown
|
@@ -59,7 +59,7 @@ import '../global/controls-height.js';
|
|
59
59
|
import '../_helpers/button__classes.js';
|
60
60
|
import '../i18n/i18n.js';
|
61
61
|
|
62
|
-
var modules_8b837449 = {"light":"light_rui_2ac4","container":"
|
62
|
+
var modules_8b837449 = {"light":"light_rui_2ac4","container":"container_rui_a216","message":"message_rui_a216","icon":"icon_rui_a216","title":"title_rui_a216 font-lower_rui_f295 font_rui_f295","description":"description_rui_a216","button":"button_rui_a216","tail":"tail_rui_a216"};
|
63
63
|
|
64
64
|
/**
|
65
65
|
* @name Message
|
@@ -11,11 +11,11 @@ var MAJOR_VERSION_INDEX = 0;
|
|
11
11
|
/**
|
12
12
|
* SUPPORTED_BROWSERS are defined by Babel plugin, see babel config
|
13
13
|
*/
|
14
|
-
if (!["and_chr
|
14
|
+
if (!["and_chr 123", "chrome 123", "chrome 122", "chrome 121", "chrome 109", "edge 122", "firefox 123", "ios_saf 17.4", "ios_saf 17.3", "ios_saf 16.6-16.7", "op_mob 80", "safari 17.3", "samsung 24", "samsung 23"]) {
|
15
15
|
// eslint-disable-next-line no-console
|
16
16
|
console.warn('Ring UI: no SUPPORTED_BROWSERS passed. Please check babel config.');
|
17
17
|
}
|
18
|
-
var SUPPORTED = ["and_chr
|
18
|
+
var SUPPORTED = ["and_chr 123", "chrome 123", "chrome 122", "chrome 121", "chrome 109", "edge 122", "firefox 123", "ios_saf 17.4", "ios_saf 17.3", "ios_saf 16.6-16.7", "op_mob 80", "safari 17.3", "samsung 24", "samsung 23"] || [];
|
19
19
|
var WHITE_LISTED_BROWSERS = ['chrome', 'firefox', 'safari', 'edge'];
|
20
20
|
var WHITE_LIST = SUPPORTED.reduce(function (acc, item) {
|
21
21
|
var _item$match;
|
@@ -113,7 +113,7 @@ import '../text/text.js';
|
|
113
113
|
import '../_helpers/select__filter.js';
|
114
114
|
import '../i18n/i18n.js';
|
115
115
|
|
116
|
-
var modules_1a5f0d42 = {"light":"light_rui_2ac4","pager":"
|
116
|
+
var modules_1a5f0d42 = {"light":"light_rui_2ac4","pager":"pager_rui_ad65","links":"links_rui_ad65","link":"link_rui_ad65","linkDisabled":"linkDisabled_rui_ad65"};
|
117
117
|
|
118
118
|
var Pager = /*#__PURE__*/function (_PureComponent) {
|
119
119
|
_inherits(Pager, _PureComponent);
|
@@ -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_cf670408 = {"light":"light_rui_2ac4","panel":"
|
6
|
+
var modules_cf670408 = {"light":"light_rui_2ac4","panel":"panel_rui_e32c panel_rui_027b"};
|
7
7
|
|
8
8
|
var _excluded = ["className", "children"];
|
9
9
|
/**
|
@@ -39,7 +39,7 @@ import 'sniffr';
|
|
39
39
|
import 'core-js/modules/es.array.reduce.js';
|
40
40
|
import 'core-js/modules/es.array.sort.js';
|
41
41
|
|
42
|
-
var modules_2f69e2e2 = {"light":"light_rui_2ac4","popup":"
|
42
|
+
var modules_2f69e2e2 = {"light":"light_rui_2ac4","popup":"popup_rui_871b font_rui_f295","hidden":"hidden_rui_871b","showing":"showing_rui_871b","attached":"attached_rui_871b"};
|
43
43
|
|
44
44
|
var stop = function stop(e) {
|
45
45
|
return e.stopPropagation();
|
@@ -4,7 +4,7 @@ import React, { PureComponent } from 'react';
|
|
4
4
|
import PropTypes from 'prop-types';
|
5
5
|
import classNames from 'classnames';
|
6
6
|
|
7
|
-
var modules_fb7af416 = {"dark":"
|
7
|
+
var modules_fb7af416 = {"dark":"dark_rui_f090","light":"light_rui_2ac4","progressBar":"progressBar_rui_7662","globalMode":"globalMode_rui_7662","line":"line_rui_7662","progress-bar":"progress-bar_rui_7662","staticLineColor":"staticLineColor_rui_7662"};
|
8
8
|
|
9
9
|
var _excluded = ["className", "global", "max", "value", "label", "staticColor"];
|
10
10
|
/**
|
@@ -7,7 +7,7 @@ import getUID from '../global/get-uid.js';
|
|
7
7
|
import 'core-js/modules/es.object.to-string.js';
|
8
8
|
import 'core-js/modules/es.regexp.to-string.js';
|
9
9
|
|
10
|
-
var modules_df92307a = {"light":"light_rui_2ac4","radio":"
|
10
|
+
var modules_df92307a = {"light":"light_rui_2ac4","radio":"radio_rui_798a","circle":"circle_rui_798a","input":"input_rui_798a","focus":"focus_rui_798a","label":"label_rui_798a"};
|
11
11
|
|
12
12
|
var _excluded = ["className", "children"],
|
13
13
|
_excluded2 = ["value", "onChange"];
|
@@ -107,7 +107,7 @@ import '../caret/caret.js';
|
|
107
107
|
import '../text/text.js';
|
108
108
|
import '../_helpers/select__filter.js';
|
109
109
|
|
110
|
-
var modules_9d0de074 = {"button-shadow":"i__const_button_shadow_0","select":"
|
110
|
+
var modules_9d0de074 = {"button-shadow":"i__const_button_shadow_0","select":"select_rui_e9c2","value":"value_rui_e9c2 ellipsis_rui_f295 font_rui_f295","icons":"icons_rui_e9c2","light":"light_rui_2ac4","toolbar":"toolbar_rui_e9c2","button":"button_rui_e9c2","buttonSpaced":"buttonSpaced_rui_e9c2","inputMode":"inputMode_rui_e9c2","selectedIcon":"selectedIcon_rui_e9c2 resetButton_rui_f295","clearIcon":"clearIcon_rui_e9c2","sizeS":"sizeS_rui_e9c2","sizeM":"sizeM_rui_e9c2","sizeL":"sizeL_rui_e9c2","sizeFULL":"sizeFULL_rui_e9c2","sizeAUTO":"sizeAUTO_rui_e9c2","buttonMode":"buttonMode_rui_e9c2","open":"open_rui_e9c2","buttonContainer":"buttonContainer_rui_e9c2","buttonValue":"buttonValue_rui_e9c2 ellipsis_rui_f295","buttonValueOpen":"buttonValueOpen_rui_e9c2","buttonValueEmpty":"buttonValueEmpty_rui_e9c2","heightS":"heightS_rui_e9c2","label":"label_rui_e9c2","disabled":"disabled_rui_e9c2","avatar":"avatar_rui_e9c2","popup":"popup_rui_e9c2","chevron":"chevron_rui_e9c2","chevronIcon":"chevronIcon_rui_e9c2"};
|
111
111
|
|
112
112
|
/**
|
113
113
|
* @name Select
|
@@ -9,7 +9,7 @@ export interface ShortcutsHOCProps {
|
|
9
9
|
rgShortcutsMap: ShortcutsMap;
|
10
10
|
}
|
11
11
|
export default function shortcutsHOC<P extends {}>(ComposedComponent: ComponentType<P> | string): {
|
12
|
-
new (props:
|
12
|
+
new (props: P & ShortcutsHOCProps): {
|
13
13
|
_shortcutsScopeUid: string;
|
14
14
|
render(): React.JSX.Element;
|
15
15
|
context: unknown;
|
@@ -25,7 +25,7 @@ import 'core-js/modules/es.object.to-string.js';
|
|
25
25
|
import 'core-js/modules/es.regexp.to-string.js';
|
26
26
|
import 'core-js/modules/es.array.from.js';
|
27
27
|
|
28
|
-
var modules_b653e84a = {"dark":"
|
28
|
+
var modules_b653e84a = {"dark":"dark_rui_f090","slider":"slider_rui_35ea","disabled":"disabled_rui_35ea","marked":"marked_rui_35ea","rail":"rail_rui_35ea","rounded":"rounded_rui_35ea","track":"track_rui_35ea","thumb":"thumb_rui_35ea resetButton_rui_f295","dragged":"dragged_rui_35ea","tick":"tick_rui_35ea","active":"active_rui_35ea","markValue":"markValue_rui_35ea","tag":"tag_rui_35ea"};
|
29
29
|
|
30
30
|
var Slider = function Slider(_ref) {
|
31
31
|
var defaultValue = _ref.defaultValue,
|