@jetbrains/ring-ui 4.1.4 → 4.1.8
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 +1 -13
- package/components/alert/container.css +1 -2
- package/components/auth-dialog/auth-dialog.examples.js +2 -3
- package/components/date-picker/date-picker.css +5 -5
- package/components/header/header.css +2 -2
- package/components/query-assist/query-assist.css +2 -2
- package/components/select/select.css +2 -2
- package/components/select/select.js +8 -0
- package/components/select-ng/select-ng__lazy.js +1 -2
- package/components/table/row.js +2 -2
- package/components/tag/tag.css +2 -2
- package/dist/_helpers/anchor.js +1 -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/error-message.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/inject-styles.js +1 -1
- package/dist/_helpers/input.js +1 -1
- package/dist/_helpers/island.js +1 -1
- package/dist/_helpers/link.js +1 -1
- package/dist/_helpers/list.js +1 -1
- package/dist/_helpers/loader-screen.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-dialog/auth-dialog.js +1 -1
- package/dist/avatar/avatar.js +1 -1
- package/dist/breadcrumb-ng/breadcrumb-ng.js +1 -1
- package/dist/button-ng/button-ng.js +1 -1
- package/dist/code/code.js +2 -2
- package/dist/confirm/confirm.js +1 -1
- package/dist/dialog-ng/dialog-ng.js +1 -1
- package/dist/docked-panel-ng/docked-panel-ng.js +1 -1
- package/dist/error-bubble/error-bubble.js +1 -1
- package/dist/heading/heading.js +1 -1
- package/dist/list/list__item.js +1 -1
- package/dist/loader/loader__core.js +1 -1
- package/dist/login-dialog/login-dialog.js +1 -1
- package/dist/markdown/markdown.js +1 -1
- package/dist/message/message.js +1 -1
- package/dist/pager/pager.js +1 -1
- package/dist/popup/popup.js +1 -1
- package/dist/progress-bar/progress-bar.js +1 -1
- package/dist/select/select.js +11 -1
- package/dist/select-ng/select-ng__lazy.js +3 -3
- package/dist/style.css +1 -1
- package/dist/tab-trap/tab-trap.js +1 -1
- package/dist/table/row.js +2 -2
- package/dist/tag/tag.js +1 -1
- package/dist/tags-input/tags-input.js +1 -1
- package/dist/text/text.js +1 -1
- package/dist/toggle/toggle.js +1 -1
- package/dist/tooltip/tooltip.js +1 -1
- package/dist/user-agreement/user-agreement.js +1 -1
- package/package.json +40 -40
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ export const Demo = () => {
|
|
|
37
37
|
|
|
38
38
|
The bundle size will depend on the amount of components you imported.
|
|
39
39
|
|
|
40
|
-
### Generating app
|
|
40
|
+
### Generating app (deprecated)
|
|
41
41
|
|
|
42
42
|
1. Install Yeoman and Ring UI generator: `npm install -g yo@next-4 @jetbrains/generator-ring-ui`
|
|
43
43
|
2. Go to the root directory of your project (create one if necessary), run `yo @jetbrains/ring-ui` and enter the name of the project. Then run `npm install` to install all the necessary npm dependencies.
|
|
@@ -86,18 +86,6 @@ in a same build process, you can use the following configuration:
|
|
|
86
86
|
module.exports = webpackConfig;
|
|
87
87
|
```
|
|
88
88
|
|
|
89
|
-
### Yeoman scaffolding
|
|
90
|
-
|
|
91
|
-
1. Install Yeoman and Ring UI generator: `npm install -g yo @jetbrains/generator-ring-ui`
|
|
92
|
-
2. Go to the root directory of your project (create one if necessary) and run `yo @jetbrains/ring-ui`. After you enter the name of the project all the necessary npm dependencies will be installed.
|
|
93
|
-
3. Your project is ready to be developed. The following commands are available:
|
|
94
|
-
- `npm start` to run a local development server
|
|
95
|
-
- `npm test` to launch karma tests
|
|
96
|
-
- `npm run lint` to lint your code
|
|
97
|
-
- `npm run build` to build a production bundle
|
|
98
|
-
- `npm run create-component` to create a new component template with styles and tests
|
|
99
|
-
|
|
100
|
-
|
|
101
89
|
## Contributing
|
|
102
90
|
|
|
103
91
|
See [CONTRIBUTING.md](./CONTRIBUTING.md)
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
@import "../global/variables.css";
|
|
2
2
|
|
|
3
3
|
@value unit from "../global/global.css";
|
|
4
|
-
@value alert from "./alert.css";
|
|
5
4
|
|
|
6
5
|
.alertContainer {
|
|
7
6
|
position: fixed;
|
|
@@ -18,7 +17,7 @@
|
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
.alertInContainer {
|
|
21
|
-
composes: alert;
|
|
20
|
+
composes: alert from "./alert.css";
|
|
22
21
|
|
|
23
22
|
min-width: calc(unit * 30);
|
|
24
23
|
max-width: calc(unit * 50);
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
+
import youtrackLogo from '!file-loader!@jetbrains/logos/youtrack/youtrack.svg';
|
|
4
|
+
|
|
3
5
|
import reactDecorator from '../../.storybook/react-decorator';
|
|
4
6
|
|
|
5
7
|
import Button from '@jetbrains/ring-ui/components/button/button';
|
|
6
8
|
|
|
7
9
|
import AuthDialog from '@jetbrains/ring-ui/components/auth-dialog/auth-dialog';
|
|
8
10
|
|
|
9
|
-
import youtrackLogo from '!file-loader!@jetbrains/logos/youtrack/youtrack.svg';
|
|
10
|
-
|
|
11
|
-
|
|
12
11
|
export default {
|
|
13
12
|
title: 'Components/Auth Dialog',
|
|
14
13
|
decorators: [reactDecorator()],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@import "../global/variables.css";
|
|
2
2
|
|
|
3
|
-
@value unit
|
|
3
|
+
@value unit from "../global/global.css";
|
|
4
4
|
@value cellSize: calc(unit * 3);
|
|
5
5
|
@value calHeight: calc(unit * 36);
|
|
6
6
|
@value calWidth: calc(unit * 37);
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
.day {
|
|
213
|
-
composes: resetButton;
|
|
213
|
+
composes: resetButton from "../global/global.css";
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
.day.day {
|
|
@@ -444,7 +444,7 @@
|
|
|
444
444
|
|
|
445
445
|
.monthName {
|
|
446
446
|
composes: hoverable;
|
|
447
|
-
composes: resetButton;
|
|
447
|
+
composes: resetButton from "../global/global.css";
|
|
448
448
|
}
|
|
449
449
|
|
|
450
450
|
.monthName.monthName {
|
|
@@ -461,7 +461,7 @@
|
|
|
461
461
|
}
|
|
462
462
|
|
|
463
463
|
.monthSlider {
|
|
464
|
-
composes: resetButton;
|
|
464
|
+
composes: resetButton from "../global/global.css";
|
|
465
465
|
}
|
|
466
466
|
|
|
467
467
|
.monthSlider.monthSlider {
|
|
@@ -514,7 +514,7 @@
|
|
|
514
514
|
|
|
515
515
|
.year {
|
|
516
516
|
composes: hoverable;
|
|
517
|
-
composes: resetButton;
|
|
517
|
+
composes: resetButton from "../global/global.css";
|
|
518
518
|
}
|
|
519
519
|
|
|
520
520
|
.year.year {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@import "../global/variables.css";
|
|
2
2
|
|
|
3
|
-
@value unit
|
|
3
|
+
@value unit from "../global/global.css";
|
|
4
4
|
@value height: calc(unit * 8);
|
|
5
5
|
@value compensate: 3px;
|
|
6
6
|
@value compensated: calc(height - compensate);
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
.avatarWrapper {
|
|
137
|
-
composes: resetButton;
|
|
137
|
+
composes: resetButton from "../global/global.css";
|
|
138
138
|
|
|
139
139
|
line-height: 0;
|
|
140
140
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@import "../global/variables.css";
|
|
2
2
|
|
|
3
|
-
@value unit
|
|
3
|
+
@value unit from "../global/global.css";
|
|
4
4
|
@value overInputZIndex: 2;
|
|
5
5
|
@value inputGap: calc(unit * 3);
|
|
6
6
|
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
}
|
|
240
240
|
|
|
241
241
|
.placeholder {
|
|
242
|
-
composes: resetButton;
|
|
242
|
+
composes: resetButton from "../global/global.css";
|
|
243
243
|
|
|
244
244
|
position: absolute;
|
|
245
245
|
top: 3px;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@import "../global/variables.css";
|
|
2
2
|
|
|
3
|
-
@value unit
|
|
3
|
+
@value unit from "../global/global.css";
|
|
4
4
|
|
|
5
5
|
.select {
|
|
6
6
|
position: relative;
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
.selectedIcon {
|
|
70
|
-
composes: resetButton;
|
|
70
|
+
composes: resetButton from "../global/global.css";
|
|
71
71
|
|
|
72
72
|
display: inline-block;
|
|
73
73
|
|
|
@@ -738,6 +738,14 @@ export default class Select extends Component {
|
|
|
738
738
|
}
|
|
739
739
|
};
|
|
740
740
|
|
|
741
|
+
_openPopupIfClosed = () => {
|
|
742
|
+
if (this.props.disabled || this.state.showPopup) {
|
|
743
|
+
return;
|
|
744
|
+
}
|
|
745
|
+
this.props.onBeforeOpen();
|
|
746
|
+
this._showPopup();
|
|
747
|
+
};
|
|
748
|
+
|
|
741
749
|
_filterChangeHandler = e => {
|
|
742
750
|
this._setFilter(e.target.value, e);
|
|
743
751
|
};
|
|
@@ -59,11 +59,10 @@ class SelectLazy {
|
|
|
59
59
|
this.detachEvents();
|
|
60
60
|
if (this.type === 'dropdown') {
|
|
61
61
|
this.ctrl.selectInstance = render(this.reactSelect, this.container);
|
|
62
|
-
// In "dropdown" mode we don't click select itself, so need to force click handler
|
|
63
|
-
this.ctrl.selectInstance._clickHandler();
|
|
64
62
|
} else {
|
|
65
63
|
this.ctrl.selectInstance = hydrate(this.reactSelect, this.container);
|
|
66
64
|
}
|
|
65
|
+
this.ctrl.selectInstance._openPopupIfClosed();
|
|
67
66
|
}
|
|
68
67
|
}
|
|
69
68
|
|
package/components/table/row.js
CHANGED
package/components/tag/tag.css
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
@import "../global/variables.css";
|
|
2
2
|
|
|
3
|
-
@value unit
|
|
3
|
+
@value unit from "../global/global.css";
|
|
4
4
|
@value background-color: var(--ring-tag-background-color);
|
|
5
5
|
@value max-height: 20px;
|
|
6
6
|
|
|
7
7
|
.tag {
|
|
8
|
-
composes: resetButton;
|
|
8
|
+
composes: resetButton from "../global/global.css";
|
|
9
9
|
|
|
10
10
|
position: relative;
|
|
11
11
|
z-index: 1;
|
package/dist/_helpers/anchor.js
CHANGED
|
@@ -6,7 +6,7 @@ import classNames from 'classnames';
|
|
|
6
6
|
import Icon from '../icon/icon.js';
|
|
7
7
|
import Button from '../button/button.js';
|
|
8
8
|
|
|
9
|
-
var modules_d9414203 = {"dropdown":"
|
|
9
|
+
var modules_d9414203 = {"dropdown":"dropdown_rui_4da7","anchor":"anchor_rui_4da7","chevron":"chevron_rui_4da7"};
|
|
10
10
|
|
|
11
11
|
const Anchor = _ref => {
|
|
12
12
|
let {
|
package/dist/_helpers/badge.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_6c9187df = {"unit":"8px","badge":"
|
|
1
|
+
var modules_6c9187df = {"unit":"8px","badge":"badge_rui_1d2b","gray":"gray_rui_1d2b","valid":"valid_rui_1d2b","invalid":"invalid_rui_1d2b","disabled":"disabled_rui_1d2b"};
|
|
2
2
|
|
|
3
3
|
export { modules_6c9187df as m };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_1068e447 = {"unit":"8px","buttonGroup":"
|
|
1
|
+
var modules_1068e447 = {"unit":"8px","buttonGroup":"buttonGroup_rui_b9c8 buttonGroup_rui_ec74","button":"button_rui_b9c8","caption":"caption_rui_b9c8 font_rui_750f","active":"active_rui_b9c8"};
|
|
2
2
|
|
|
3
3
|
export { modules_1068e447 as m };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_34154ec0 = {"unit":"8px","buttonToolbar":"
|
|
1
|
+
var modules_34154ec0 = {"unit":"8px","buttonToolbar":"buttonToolbar_rui_03c3","button":"button_rui_03c3","buttonGroup":"buttonGroup_rui_03c3"};
|
|
2
2
|
|
|
3
3
|
export { modules_34154ec0 as m };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import classNames from 'classnames';
|
|
2
2
|
import Theme from '../global/theme.js';
|
|
3
3
|
|
|
4
|
-
var modules_e81895c9 = {"unit":"8px","button-shadow":"inset 0 0 0 1px","height":"24px","loaderWidth":"64px","light":"
|
|
4
|
+
var modules_e81895c9 = {"unit":"8px","button-shadow":"inset 0 0 0 1px","height":"24px","loaderWidth":"64px","light":"light_rui_8c91","active":"active_rui_8c91 active_rui_e33e","withIcon":"withIcon_rui_8c91","icon":"icon_rui_8c91","primary":"primary_rui_8c91","danger":"danger_rui_8c91","loaderBackground":"loaderBackground_rui_8c91","dark":"dark_rui_8c91","dropdownIcon":"dropdownIcon_rui_8c91","button":"button_rui_8c91 button_rui_e33e button_rui_40c7 button_rui_ec74","loader":"loader_rui_8c91","text":"text_rui_8c91","content":"content_rui_8c91","text-loading":"textLoading_rui_8c91","inline":"inline_rui_8c91","withNormalIconLight":"withNormalIconLight_rui_8c91","withNormalIconDark":"withNormalIconDark_rui_8c91","withDangerIconLight":"withDangerIconLight_rui_8c91","withDangerIconDark":"withDangerIconDark_rui_8c91","progress":"progress_rui_8c91","delayed":"delayed_rui_8c91","short":"short_rui_8c91"};
|
|
5
5
|
|
|
6
6
|
function getButtonClasses(_ref) {
|
|
7
7
|
let {
|
package/dist/_helpers/card.js
CHANGED
|
@@ -6,7 +6,7 @@ import Avatar, { Size } from '../avatar/avatar.js';
|
|
|
6
6
|
import Link from '../link/link.js';
|
|
7
7
|
import { m as modules_6c9187df } from './badge.js';
|
|
8
8
|
|
|
9
|
-
var modules_a4196c17 = {"unit":"8px","userCardSpaced":"
|
|
9
|
+
var modules_a4196c17 = {"unit":"8px","userCardSpaced":"userCardSpaced_rui_a0c9","userInformationContainer":"userInformationContainer_rui_a0c9","userInformation":"userInformation_rui_a0c9","userName":"userName_rui_a0c9","userActiveStatus":"userActiveStatus_rui_a0c9","online":"online_rui_a0c9"};
|
|
10
10
|
|
|
11
11
|
class UserCard extends PureComponent {
|
|
12
12
|
render() {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_3199090e = {"unit":"8px","checkboxSize":"14px","checkbox":"
|
|
1
|
+
var modules_3199090e = {"unit":"8px","checkboxSize":"14px","checkbox":"checkbox_rui_a0fd","cell":"cell_rui_a0fd","icon":"icon_rui_a0fd","check":"check_rui_a0fd icon_rui_a0fd","minus":"minus_rui_a0fd icon_rui_a0fd","input":"input_rui_a0fd","focus":"focus_rui_a0fd","label":"label_rui_a0fd"};
|
|
2
2
|
|
|
3
3
|
export { modules_3199090e as m };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_0c7b7d96 = {"unit":"8px","
|
|
1
|
+
var modules_0c7b7d96 = {"unit":"8px","cellSize":"24px","calHeight":"288px","calWidth":"296px","yearHeight":"32px","yearWidth":"48px","container":"container_rui_f337","hoverable":"hoverable_rui_f337","datePicker":"datePicker_rui_f337","displayDate":"displayDate_rui_f337","displayRange":"displayRange_rui_f337","clear":"clear_rui_f337","datePopup":"datePopup_rui_f337","filterWrapper":"filterWrapper_rui_f337 filterWrapper_rui_7e99","filter":"filter_rui_f337 filter_rui_7e99","filterIcon":"filterIcon_rui_f337 filterIcon_rui_7e99","fromInput":"fromInput_rui_f337","fromInputWithDivider":"fromInputWithDivider_rui_f337","toInput":"toInput_rui_f337","dateInput":"dateInput_rui_f337","timeInputWithDivider":"timeInputWithDivider_rui_f337","weekdays":"weekdays_rui_f337","weekday":"weekday_rui_f337","weekend":"weekend_rui_f337","calendar":"calendar_rui_f337","months":"months_rui_f337","days":"days_rui_f337","month":"month_rui_f337","monthTitle":"monthTitle_rui_f337","day":"day_rui_f337 resetButton_rui_750f","between":"between_rui_f337","activeBetween":"activeBetween_rui_f337","current":"current_rui_f337","active":"active_rui_f337","disabled":"disabled_rui_f337","from":"from_rui_f337","to":"to_rui_f337","Monday":"Monday_rui_f337","spread":"spread_rui_f337","activeSpread":"activeSpread_rui_f337","first":"first_rui_f337","Tuesday":"Tuesday_rui_f337","Friday":"Friday_rui_f337","Saturday":"Saturday_rui_f337","Sunday":"Sunday_rui_f337","empty":"empty_rui_f337","today":"today_rui_f337","year":"year_rui_f337 hoverable_rui_f337 resetButton_rui_750f","monthNames":"monthNames_rui_f337","monthName":"monthName_rui_f337 hoverable_rui_f337 resetButton_rui_750f","monthSlider":"monthSlider_rui_f337 resetButton_rui_750f","dragging":"dragging_rui_f337","range":"range_rui_f337","years":"years_rui_f337","currentYear":"currentYear_rui_f337"};
|
|
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":"8px","container":"
|
|
3
|
+
var modules_5e9b8c03 = {"unit":"8px","container":"container_rui_144d","innerContainer":"innerContainer_rui_144d","content":"content_rui_144d","panel":"panel_rui_144d","clickableOverlay":"clickableOverlay_rui_144d","closeIcon":"closeIcon_rui_144d","closeButton":"closeButton_rui_144d","closeButtonOutside":"closeButtonOutside_rui_144d","closeButtonInside":"closeButtonInside_rui_144d","documentWithoutScroll":"documentWithoutScroll_rui_144d","popupTarget":"popupTarget_rui_144d"};
|
|
4
4
|
|
|
5
5
|
const isPrevented = new Set();
|
|
6
6
|
let previousDocumentWidth = null;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_2c5e8509 = {"errorMessage":"
|
|
1
|
+
var modules_2c5e8509 = {"errorMessage":"errorMessage_rui_f34c","title":"title_rui_f34c","description":"description_rui_f34c","content":"content_rui_f34c","icon":"icon_rui_f34c"};
|
|
2
2
|
|
|
3
3
|
export { modules_2c5e8509 as m };
|
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":"8px","footer-height":"64px","footer":"
|
|
6
|
+
var modules_7385b3fd = {"unit":"8px","footer-height":"64px","footer":"footer_rui_55ee font_rui_750f","footerFloating":"footerFloating_rui_55ee footer_rui_55ee font_rui_750f","column":"column_rui_55ee","columnItem":"columnItem_rui_55ee","columnLeft":"columnLeft_rui_55ee column_rui_55ee","columnCenter":"columnCenter_rui_55ee column_rui_55ee","line":"line_rui_55ee","columnRight":"columnRight_rui_55ee column_rui_55ee","lineCenter":"lineCenter_rui_55ee"};
|
|
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":"8px","breakpoint-small":"640px","breakpoint-middle":"960px","breakpoint-large":"1200px","large-screen-media":"(min-width:1200px)","middle-screen-media":"(min-width:960px) and (max-width:1199px)","small-screen-media":"(min-width:640px) and (max-width:959px)","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%","container-fluid":"
|
|
1
|
+
var modules_855170c0 = {"unit":"8px","breakpoint-small":"640px","breakpoint-middle":"960px","breakpoint-large":"1200px","large-screen-media":"(min-width:1200px)","middle-screen-media":"(min-width:960px) and (max-width:1199px)","small-screen-media":"(min-width:640px) and (max-width:959px)","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%","container-fluid":"containerFluid_rui_bbd7","container":"container_rui_bbd7","row":"row_rui_bbd7","reverse":"reverse_rui_bbd7","col":"col_rui_bbd7","col-xs":"colXs_rui_bbd7","col-xs-1":"colXs1_rui_bbd7","col-xs-2":"colXs2_rui_bbd7","col-xs-3":"colXs3_rui_bbd7","col-xs-4":"colXs4_rui_bbd7","col-xs-5":"colXs5_rui_bbd7","col-xs-6":"colXs6_rui_bbd7","col-xs-7":"colXs7_rui_bbd7","col-xs-8":"colXs8_rui_bbd7","col-xs-9":"colXs9_rui_bbd7","col-xs-10":"colXs10_rui_bbd7","col-xs-11":"colXs11_rui_bbd7","col-xs-12":"colXs12_rui_bbd7","col-xs-offset-0":"colXsOffset0_rui_bbd7","col-xs-offset-1":"colXsOffset1_rui_bbd7","col-xs-offset-2":"colXsOffset2_rui_bbd7","col-xs-offset-3":"colXsOffset3_rui_bbd7","col-xs-offset-4":"colXsOffset4_rui_bbd7","col-xs-offset-5":"colXsOffset5_rui_bbd7","col-xs-offset-6":"colXsOffset6_rui_bbd7","col-xs-offset-7":"colXsOffset7_rui_bbd7","col-xs-offset-8":"colXsOffset8_rui_bbd7","col-xs-offset-9":"colXsOffset9_rui_bbd7","col-xs-offset-10":"colXsOffset10_rui_bbd7","col-xs-offset-11":"colXsOffset11_rui_bbd7","col-xs-offset-12":"colXsOffset12_rui_bbd7","start-xs":"startXs_rui_bbd7","center-xs":"centerXs_rui_bbd7","end-xs":"endXs_rui_bbd7","top-xs":"topXs_rui_bbd7","middle-xs":"middleXs_rui_bbd7","baseline-xs":"baselineXs_rui_bbd7","bottom-xs":"bottomXs_rui_bbd7","around-xs":"aroundXs_rui_bbd7","between-xs":"betweenXs_rui_bbd7","first-xs":"firstXs_rui_bbd7","last-xs":"lastXs_rui_bbd7","col-sm":"colSm_rui_bbd7","col-sm-1":"colSm1_rui_bbd7","col-sm-2":"colSm2_rui_bbd7","col-sm-3":"colSm3_rui_bbd7","col-sm-4":"colSm4_rui_bbd7","col-sm-5":"colSm5_rui_bbd7","col-sm-6":"colSm6_rui_bbd7","col-sm-7":"colSm7_rui_bbd7","col-sm-8":"colSm8_rui_bbd7","col-sm-9":"colSm9_rui_bbd7","col-sm-10":"colSm10_rui_bbd7","col-sm-11":"colSm11_rui_bbd7","col-sm-12":"colSm12_rui_bbd7","col-sm-offset-0":"colSmOffset0_rui_bbd7","col-sm-offset-1":"colSmOffset1_rui_bbd7","col-sm-offset-2":"colSmOffset2_rui_bbd7","col-sm-offset-3":"colSmOffset3_rui_bbd7","col-sm-offset-4":"colSmOffset4_rui_bbd7","col-sm-offset-5":"colSmOffset5_rui_bbd7","col-sm-offset-6":"colSmOffset6_rui_bbd7","col-sm-offset-7":"colSmOffset7_rui_bbd7","col-sm-offset-8":"colSmOffset8_rui_bbd7","col-sm-offset-9":"colSmOffset9_rui_bbd7","col-sm-offset-10":"colSmOffset10_rui_bbd7","col-sm-offset-11":"colSmOffset11_rui_bbd7","col-sm-offset-12":"colSmOffset12_rui_bbd7","start-sm":"startSm_rui_bbd7","center-sm":"centerSm_rui_bbd7","end-sm":"endSm_rui_bbd7","top-sm":"topSm_rui_bbd7","middle-sm":"middleSm_rui_bbd7","baseline-sm":"baselineSm_rui_bbd7","bottom-sm":"bottomSm_rui_bbd7","around-sm":"aroundSm_rui_bbd7","between-sm":"betweenSm_rui_bbd7","first-sm":"firstSm_rui_bbd7","last-sm":"lastSm_rui_bbd7","col-md":"colMd_rui_bbd7","col-md-1":"colMd1_rui_bbd7","col-md-2":"colMd2_rui_bbd7","col-md-3":"colMd3_rui_bbd7","col-md-4":"colMd4_rui_bbd7","col-md-5":"colMd5_rui_bbd7","col-md-6":"colMd6_rui_bbd7","col-md-7":"colMd7_rui_bbd7","col-md-8":"colMd8_rui_bbd7","col-md-9":"colMd9_rui_bbd7","col-md-10":"colMd10_rui_bbd7","col-md-11":"colMd11_rui_bbd7","col-md-12":"colMd12_rui_bbd7","col-md-offset-0":"colMdOffset0_rui_bbd7","col-md-offset-1":"colMdOffset1_rui_bbd7","col-md-offset-2":"colMdOffset2_rui_bbd7","col-md-offset-3":"colMdOffset3_rui_bbd7","col-md-offset-4":"colMdOffset4_rui_bbd7","col-md-offset-5":"colMdOffset5_rui_bbd7","col-md-offset-6":"colMdOffset6_rui_bbd7","col-md-offset-7":"colMdOffset7_rui_bbd7","col-md-offset-8":"colMdOffset8_rui_bbd7","col-md-offset-9":"colMdOffset9_rui_bbd7","col-md-offset-10":"colMdOffset10_rui_bbd7","col-md-offset-11":"colMdOffset11_rui_bbd7","col-md-offset-12":"colMdOffset12_rui_bbd7","start-md":"startMd_rui_bbd7","center-md":"centerMd_rui_bbd7","end-md":"endMd_rui_bbd7","top-md":"topMd_rui_bbd7","middle-md":"middleMd_rui_bbd7","baseline-md":"baselineMd_rui_bbd7","bottom-md":"bottomMd_rui_bbd7","around-md":"aroundMd_rui_bbd7","between-md":"betweenMd_rui_bbd7","first-md":"firstMd_rui_bbd7","last-md":"lastMd_rui_bbd7","col-lg":"colLg_rui_bbd7","col-lg-1":"colLg1_rui_bbd7","col-lg-2":"colLg2_rui_bbd7","col-lg-3":"colLg3_rui_bbd7","col-lg-4":"colLg4_rui_bbd7","col-lg-5":"colLg5_rui_bbd7","col-lg-6":"colLg6_rui_bbd7","col-lg-7":"colLg7_rui_bbd7","col-lg-8":"colLg8_rui_bbd7","col-lg-9":"colLg9_rui_bbd7","col-lg-10":"colLg10_rui_bbd7","col-lg-11":"colLg11_rui_bbd7","col-lg-12":"colLg12_rui_bbd7","col-lg-offset-0":"colLgOffset0_rui_bbd7","col-lg-offset-1":"colLgOffset1_rui_bbd7","col-lg-offset-2":"colLgOffset2_rui_bbd7","col-lg-offset-3":"colLgOffset3_rui_bbd7","col-lg-offset-4":"colLgOffset4_rui_bbd7","col-lg-offset-5":"colLgOffset5_rui_bbd7","col-lg-offset-6":"colLgOffset6_rui_bbd7","col-lg-offset-7":"colLgOffset7_rui_bbd7","col-lg-offset-8":"colLgOffset8_rui_bbd7","col-lg-offset-9":"colLgOffset9_rui_bbd7","col-lg-offset-10":"colLgOffset10_rui_bbd7","col-lg-offset-11":"colLgOffset11_rui_bbd7","col-lg-offset-12":"colLgOffset12_rui_bbd7","start-lg":"startLg_rui_bbd7","center-lg":"centerLg_rui_bbd7","end-lg":"endLg_rui_bbd7","top-lg":"topLg_rui_bbd7","middle-lg":"middleLg_rui_bbd7","baseline-lg":"baselineLg_rui_bbd7","bottom-lg":"bottomLg_rui_bbd7","around-lg":"aroundLg_rui_bbd7","between-lg":"betweenLg_rui_bbd7","first-lg":"firstLg_rui_bbd7","last-lg":"lastLg_rui_bbd7"};
|
|
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 = {"unit":"8px","
|
|
1
|
+
var modules_47759f5e = {"unit":"8px","height":"64px","compensate":"3px","compensated":"61px","light":"light_rui_abb5","dark":"dark_rui_abb5","header":"header_rui_abb5","headerSpaced":"headerSpaced_rui_abb5","logo":"logo_rui_abb5","tray":"tray_rui_abb5","trayItemContent":"trayItemContent_rui_abb5","icon":"icon_rui_abb5","main":"main_rui_abb5","rotatable":"rotatable_rui_abb5","rotated":"rotated_rui_abb5","profileEmpty":"profileEmpty_rui_abb5","profile":"profile_rui_abb5 profileEmpty_rui_abb5","avatarWrapper":"avatarWrapper_rui_abb5 resetButton_rui_750f","hasUpdates":"hasUpdates_rui_abb5"};
|
|
2
2
|
|
|
3
3
|
export { modules_47759f5e as m };
|
package/dist/_helpers/icon.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_29747b80 = {"unit":"8px","icon":"
|
|
1
|
+
var modules_29747b80 = {"unit":"8px","icon":"icon_rui_950f","glyph":"glyph_rui_950f","compatibilityMode":"compatibilityMode_rui_950f","gray":"gray_rui_950f","hover":"hover_rui_950f","green":"green_rui_950f","magenta":"magenta_rui_950f","red":"red_rui_950f","blue":"blue_rui_950f","white":"white_rui_950f","loading":"loading_rui_950f","icon-loading":"iconLoading_rui_950f"};
|
|
2
2
|
|
|
3
3
|
export { modules_29747b80 as m };
|
|
@@ -4,7 +4,7 @@ import memoize from '../global/memoize.js';
|
|
|
4
4
|
import radialGradientMask from '../global/radial-gradient-mask.js';
|
|
5
5
|
import Theme from '../global/theme.js';
|
|
6
6
|
|
|
7
|
-
var modules_e49a3529 = {"unit":"8px","loader":"
|
|
7
|
+
var modules_e49a3529 = {"unit":"8px","loader":"loader_rui_423e","spin":"spin_rui_423e","pulse":"pulse_rui_423e","children":"children_rui_423e"};
|
|
8
8
|
|
|
9
9
|
const IMAGE_SIZE = 32;
|
|
10
10
|
var injectStyles = memoize(() => {
|
package/dist/_helpers/input.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_88cfaf40 = {"unit":"8px","iconOffset":"22px","container":"
|
|
1
|
+
var modules_88cfaf40 = {"unit":"8px","iconOffset":"22px","container":"container_rui_65d4 fontLower_rui_750f font_rui_750f","compact":"compact_rui_65d4","input":"input_rui_65d4","clearable":"clearable_rui_65d4","light":"light_rui_65d4","dark":"dark_rui_65d4","withIcon":"withIcon_rui_65d4","label":"label_rui_65d4","icon":"icon_rui_65d4","clear":"clear_rui_65d4","empty":"empty_rui_65d4","active":"active_rui_65d4","noLabel":"noLabel_rui_65d4","error":"error_rui_65d4","underline":"underline_rui_65d4","focusUnderline":"focusUnderline_rui_65d4","errorUnderline":"errorUnderline_rui_65d4","errorText":"errorText_rui_65d4","sizeS":"sizeS_rui_65d4","sizeM":"sizeM_rui_65d4","sizeL":"sizeL_rui_65d4","sizeFULL":"sizeFULL_rui_65d4"};
|
|
2
2
|
|
|
3
3
|
export { modules_88cfaf40 as m };
|
package/dist/_helpers/island.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_e6a056e1 = {"unit":"8px","gradientStart":"hsla(0,0%,100%,0)","gradientStop":"var(--ring-content-background-color)","island":"
|
|
1
|
+
var modules_e6a056e1 = {"unit":"8px","gradientStart":"hsla(0,0%,100%,0)","gradientStop":"var(--ring-content-background-color)","island":"island_rui_4b34","withTransparentBottomBorder":"withTransparentBottomBorder_rui_4b34","header":"header_rui_4b34 withTransparentBottomBorder_rui_4b34","withBottomBorder":"withBottomBorder_rui_4b34","title":"title_rui_4b34","narrowIsland":"narrowIsland_rui_4b34","content":"content_rui_4b34","scrollableWrapper":"scrollableWrapper_rui_4b34","withoutPaddings":"withoutPaddings_rui_4b34","contentWithTopFade":"contentWithTopFade_rui_4b34","contentWithBottomFade":"contentWithBottomFade_rui_4b34"};
|
|
2
2
|
|
|
3
3
|
export { modules_e6a056e1 as m };
|
package/dist/_helpers/link.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_607b0772 = {"link":"
|
|
1
|
+
var modules_607b0772 = {"link":"link_rui_31b6 link_rui_9b21","hover":"hover_rui_31b6","inner":"inner_rui_31b6","active":"active_rui_31b6","compatibilityUnderlineMode":"compatibilityUnderlineMode_rui_31b6","pseudo":"pseudo_rui_31b6","text":"text_rui_31b6","inherit":"inherit_rui_31b6"};
|
|
2
2
|
|
|
3
3
|
export { modules_607b0772 as m };
|
package/dist/_helpers/list.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_3b67a421 = {"unit":"8px","listSpacing":"8px","list":"
|
|
1
|
+
var modules_3b67a421 = {"unit":"8px","listSpacing":"8px","list":"list_rui_0e40","simpleInner":"simpleInner_rui_0e40","scrolling":"scrolling_rui_0e40","separator":"separator_rui_0e40","separator_first":"separator_first_rui_0e40","item":"item_rui_0e40","itemContainer":"itemContainer_rui_0e40","compact":"compact_rui_0e40","error":"error_rui_0e40","add":"add_rui_0e40","top":"top_rui_0e40","left":"left_rui_0e40","label":"label_rui_0e40","description":"description_rui_0e40","right":"right_rui_0e40","details":"details_rui_0e40","padded":"padded_rui_0e40","hint":"hint_rui_0e40","action":"action_rui_0e40","actionLink":"actionLink_rui_0e40","hover":"hover_rui_0e40","icon":"icon_rui_0e40","highlight":"highlight_rui_0e40","service":"service_rui_0e40","glyph":"glyph_rui_0e40","avatar":"avatar_rui_0e40 glyph_rui_0e40","rightGlyph":"rightGlyph_rui_0e40 glyph_rui_0e40","checkboxContainer":"checkboxContainer_rui_0e40","title":"title_rui_0e40","title_first":"title_first_rui_0e40","text":"text_rui_0e40","fade":"fade_rui_0e40","disabled":"disabled_rui_0e40"};
|
|
2
2
|
|
|
3
3
|
export { modules_3b67a421 as m };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_122a82e9 = {"loaderScreen":"
|
|
1
|
+
var modules_122a82e9 = {"loaderScreen":"loaderScreen_rui_cf3c","loader":"loader_rui_cf3c","loaderWithoutSpacing":"loaderWithoutSpacing_rui_cf3c"};
|
|
2
2
|
|
|
3
3
|
export { modules_122a82e9 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":"8px","
|
|
4
|
+
var modules_da7ab055 = {"unit":"8px","overInputZIndex":"2","inputGap":"24px","light":"light_rui_7422","queryAssist":"queryAssist_rui_7422 font_rui_750f","input":"input_rui_7422","placeholder":"placeholder_rui_7422 resetButton_rui_750f","letter-text":"letterText_rui_7422","letterDefault":"letterDefault_rui_7422","letter-field-name":"letterFieldName_rui_7422","letter-field-value":"letterFieldValue_rui_7422","letter-operator":"letterOperator_rui_7422","letter-error":"letterError_rui_7422","iconInner":"iconInner_rui_7422","highlight":"highlight_rui_7422","service":"service_rui_7422","dark":"dark_rui_7422","icon":"icon_rui_7422","loader":"loader_rui_7422","actions":"actions_rui_7422","24px":"_24px_rui_7422","inputGap2":"inputGap2_rui_7422","inputLeftGap":"inputLeftGap_rui_7422","inputDisabled":"inputDisabled_rui_7422","placeholderSpaced":"placeholderSpaced_rui_7422","letter":"letter_rui_7422","loaderOnTheRight":"loaderOnTheRight_rui_7422","focusUnderline":"focusUnderline_rui_7422"};
|
|
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":"8px","radio-size":"16px","radio":"
|
|
1
|
+
var modules_df92307a = {"unit":"8px","radio-size":"16px","radio":"radio_rui_4ab9","circle":"circle_rui_4ab9","input":"input_rui_4ab9","focus":"focus_rui_4ab9","label":"label_rui_4ab9"};
|
|
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":"8px","filterWithTags":"
|
|
9
|
+
var modules_b607bec2 = {"unit":"8px","filterWithTags":"filterWithTags_rui_286c","filterWrapper":"filterWrapper_rui_286c","filterWithTagsFocused":"filterWithTagsFocused_rui_286c","filter":"filter_rui_286c","filterIcon":"filterIcon_rui_286c","bottomLine":"bottomLine_rui_286c","message":"message_rui_286c","selectAll":"selectAll_rui_286c"};
|
|
10
10
|
|
|
11
11
|
function noop() {}
|
|
12
12
|
|
|
@@ -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":"8px","services":"
|
|
6
|
+
var modules_74a7bf8b = {"unit":"8px","services":"services_rui_39a2","active":"active_rui_39a2","item":"item_rui_39a2","itemLogo":"itemLogo_rui_39a2","activeItem":"activeItem_rui_39a2 item_rui_39a2 active_rui_39a2","line":"line_rui_39a2","itemStacked":"itemStacked_rui_39a2","activeItemStacked":"activeItemStacked_rui_39a2 itemStacked_rui_39a2 active_rui_39a2"};
|
|
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":"8px","extra-small-screen-media":"(max-width:639px)","small-screen-media":"(min-width:640px) and (max-width:959px)","sidebarWidth":"240px","contentLayout":"
|
|
7
|
+
var modules_b8a9dd4f = {"unit":"8px","extra-small-screen-media":"(max-width:639px)","small-screen-media":"(min-width:640px) and (max-width:959px)","sidebarWidth":"240px","contentLayout":"contentLayout_rui_2b97","contentLayoutContent":"contentLayoutContent_rui_2b97","sidebarContainer":"sidebarContainer_rui_2b97","sidebarContainerRight":"sidebarContainerRight_rui_2b97","sidebar":"sidebar_rui_2b97","sidebarRight":"sidebarRight_rui_2b97","sidebarFixedTop":"sidebarFixedTop_rui_2b97","sidebarFixedBottom":"sidebarFixedBottom_rui_2b97","bottomMarker":"bottomMarker_rui_2b97","contentLayoutResponsive":"contentLayoutResponsive_rui_2b97"};
|
|
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":"8px","height":"32px","compensate":"2px","compensated":"30px","top":"-3px","row":"
|
|
1
|
+
var modules_1db4bbca = {"unit":"8px","height":"32px","compensate":"2px","compensated":"30px","top":"-3px","row":"row_rui_3363","dragHandle":"dragHandle_rui_3363","tableWrapper":"tableWrapper_rui_3363","table":"table_rui_3363","userSelectNone":"userSelectNone_rui_3363","headerCell":"headerCell_rui_3363 fontSmallerLower_rui_750f fontSmaller_rui_750f fontLower_rui_750f font_rui_750f","headerCellSorted":"headerCellSorted_rui_3363","headerCellSortable":"headerCellSortable_rui_3363","sorter":"sorter_rui_3363","sortedUp":"sortedUp_rui_3363","icon":"icon_rui_3363","caption":"caption_rui_3363","tableHead":"tableHead_rui_3363","subHeaderFixed":"subHeaderFixed_rui_3363","subHeader":"subHeader_rui_3363","disabledHover":"disabledHover_rui_3363","rowSelected":"rowSelected_rui_3363","rowFocused":"rowFocused_rui_3363","cell":"cell_rui_3363 ellipsis_rui_750f","loadingOverlay":"loadingOverlay_rui_3363","cellUnlimited":"cellUnlimited_rui_3363","cellRight":"cellRight_rui_3363","metaColumn":"metaColumn_rui_3363","headerMetaColumn":"headerMetaColumn_rui_3363","visibleDragHandle":"visibleDragHandle_rui_3363","rowCollapseExpandButton":"rowCollapseExpandButton_rui_3363","draggingRow":"draggingRow_rui_3363","tableMessage":"tableMessage_rui_3363"};
|
|
2
2
|
|
|
3
3
|
export { modules_1db4bbca as m };
|
package/dist/_helpers/tabs.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_02138f4a = {"unit":"8px","line-shadow":"inset 0 -1px 0 0","selected-line-shadow":"inset 0 -3px 0 0","tabs":"
|
|
1
|
+
var modules_02138f4a = {"unit":"8px","line-shadow":"inset 0 -1px 0 0","selected-line-shadow":"inset 0 -3px 0 0","tabs":"tabs_rui_a11f font_rui_750f","titles":"titles_rui_a11f","light":"light_rui_a11f","dark":"dark_rui_a11f","title":"title_rui_a11f font_rui_750f","selected":"selected_rui_a11f","collapsed":"collapsed_rui_a11f","titleLegacy":"titleLegacy_rui_a11f","visible":"visible_rui_a11f","container":"container_rui_a11f","hidden":"hidden_rui_a11f","hiddenBold":"hiddenBold_rui_a11f","hiddenRegular":"hiddenRegular_rui_a11f","tabCounter":"tabCounter_rui_a11f","autoCollapseContainer":"autoCollapseContainer_rui_a11f","autoCollapse":"autoCollapse_rui_a11f","rendered":"rendered_rui_a11f","adjusted":"adjusted_rui_a11f","measure":"measure_rui_a11f","morePopup":"morePopup_rui_a11f","chevron":"chevron_rui_a11f","morePopupBeforeEnd":"morePopupBeforeEnd_rui_a11f"};
|
|
2
2
|
|
|
3
3
|
export { modules_02138f4a as m };
|
package/dist/_helpers/title.js
CHANGED
|
@@ -6,7 +6,7 @@ import focusSensorHOC from '../global/focus-sensor-hoc.js';
|
|
|
6
6
|
import Checkbox from '../checkbox/checkbox.js';
|
|
7
7
|
import getUID from '../global/get-uid.js';
|
|
8
8
|
|
|
9
|
-
var modules_09d014b4 = {"unit":"8px","height":"32px","compensate":"2px","dataListWrapper":"
|
|
9
|
+
var modules_09d014b4 = {"unit":"8px","height":"32px","compensate":"2px","dataListWrapper":"dataListWrapper_rui_00a4","dataList":"dataList_rui_00a4","itemContent":"itemContent_rui_00a4","title":"title_rui_00a4","disabledHover":"disabledHover_rui_00a4","titleSelected":"titleSelected_rui_00a4","titleFocused":"titleFocused_rui_00a4","showMore":"showMore_rui_00a4","boxes":"boxes_rui_00a4","checkboxBox":"checkboxBox_rui_00a4","collapseButton":"collapseButton_rui_00a4","collapseIcon":"collapseIcon_rui_00a4","loadingOverlay":"loadingOverlay_rui_00a4","showMoreLoader":"showMoreLoader_rui_00a4"};
|
|
10
10
|
|
|
11
11
|
class Title extends PureComponent {
|
|
12
12
|
constructor() {
|