@jetbrains/ring-ui-built 8.0.0-beta.6 → 8.0.0-beta.7
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/avatar-info.js +2 -4
- package/components/_helpers/icon-svg.js +1 -1
- package/components/auth-dialog/auth-dialog.js +1 -1
- package/components/avatar/avatar-size.d.ts +0 -4
- package/components/avatar/avatar-size.js +0 -4
- package/components/avatar/avatar.js +0 -7
- package/components/avatar/fallback-avatar.js +2 -47
- package/components/avatar-stack/avatar-stack.js +3 -3
- package/components/button/button.d.ts +0 -4
- package/components/button/button.js +2 -8
- package/components/confirm/confirm.js +1 -1
- package/components/confirm-service/confirm-service.js +1 -1
- package/components/data-list/data-list.js +1 -1
- package/components/data-list/item.js +1 -1
- package/components/date-picker/date-input.js +1 -1
- package/components/date-picker/date-popup.js +1 -1
- package/components/dialog/dialog.js +1 -1
- package/components/dropdown/anchor.js +1 -1
- package/components/dropdown/dropdown.js +1 -1
- package/components/global/variables.interface.d.ts +0 -4
- package/components/header/header-icon.js +1 -1
- package/components/header/header.js +1 -1
- package/components/header/profile.js +3 -3
- package/components/header/services.js +1 -1
- package/components/header/smart-profile.js +1 -1
- package/components/header/smart-services.js +1 -1
- package/components/icon/icon.d.ts +0 -1
- package/components/icon/icon.js +1 -4
- package/components/input/input.js +1 -1
- package/components/list/consts.d.ts +0 -1
- package/components/list/consts.js +0 -1
- package/components/list/list-item.js +2 -3
- package/components/list/list.d.ts +0 -4
- package/components/login-dialog/login-dialog.js +1 -1
- package/components/pager/pager.js +2 -2
- package/components/select/chevron-button.js +1 -1
- package/components/select/select-filter.js +1 -1
- package/components/select/select.js +3 -3
- package/components/style.css +1 -1
- package/components/tags-input/tags-input.js +2 -2
- package/components/user-agreement/user-agreement.js +1 -1
- package/components/user-card/card.js +3 -3
- package/components/user-card/smart-user-card-tooltip.js +1 -1
- package/components/user-card/tooltip.js +1 -1
- package/components/user-card/user-card.js +3 -3
- package/package.json +1 -2
- package/components/__mocks__/old-browsers-message.js +0 -3
- package/components/_helpers/grid.js +0 -3
- package/components/_helpers/sidebar.js +0 -110
- package/components/content-layout/content-layout.d.ts +0 -20
- package/components/content-layout/content-layout.js +0 -50
- package/components/content-layout/sidebar.d.ts +0 -26
- package/components/content-layout/sidebar.js +0 -5
- package/components/expand/collapsible-group.d.ts +0 -8
- package/components/expand/collapsible-group.js +0 -52
- package/components/grid/col.d.ts +0 -16
- package/components/grid/col.js +0 -63
- package/components/grid/grid.d.ts +0 -13
- package/components/grid/grid.js +0 -27
- package/components/grid/row.d.ts +0 -21
- package/components/grid/row.js +0 -72
- package/components/old-browsers-message/old-browsers-message-stop.d.ts +0 -1
- package/components/old-browsers-message/old-browsers-message-stop.js +0 -5
- package/components/old-browsers-message/old-browsers-message.d.ts +0 -5
- package/components/old-browsers-message/old-browsers-message.js +0 -89
- package/components/old-browsers-message/white-list.d.ts +0 -2
- package/components/old-browsers-message/white-list.js +0 -30
|
@@ -10,8 +10,8 @@ import '@jetbrains/icons/close-12px';
|
|
|
10
10
|
import '../button/button.js';
|
|
11
11
|
import '@jetbrains/icons/chevron-down';
|
|
12
12
|
import '@jetbrains/icons/chevron-12px-down';
|
|
13
|
-
import 'util-deprecate';
|
|
14
13
|
import '../icon/icon.js';
|
|
14
|
+
import 'util-deprecate';
|
|
15
15
|
import '../icon/icon.constants.js';
|
|
16
16
|
import '../_helpers/icon-svg.js';
|
|
17
17
|
import 'react/compiler-runtime';
|
|
@@ -25,8 +25,6 @@ import ChevronButton from './chevron-button.js';
|
|
|
25
25
|
import { ControlsHeight } from '../global/configuration.js';
|
|
26
26
|
import { Size as Size$1 } from '../avatar/avatar-size.js';
|
|
27
27
|
import 'react/compiler-runtime';
|
|
28
|
-
import 'core-js/modules/es.array.includes.js';
|
|
29
|
-
import 'util-deprecate';
|
|
30
28
|
import '../global/url.js';
|
|
31
29
|
import '../global/dom.js';
|
|
32
30
|
import '../avatar/fallback-avatar.js';
|
|
@@ -35,6 +33,7 @@ import 'react-dom';
|
|
|
35
33
|
import '../global/schedule-raf.js';
|
|
36
34
|
import '../tab-trap/tab-trap.js';
|
|
37
35
|
import '../popup/position.js';
|
|
36
|
+
import 'core-js/modules/es.array.includes.js';
|
|
38
37
|
import '../popup/popup.consts.js';
|
|
39
38
|
import '../popup/popup.target.js';
|
|
40
39
|
import '../popup/position-css.js';
|
|
@@ -47,6 +46,7 @@ import 'react-virtualized/dist/es/List';
|
|
|
47
46
|
import 'react-virtualized/dist/es/AutoSizer';
|
|
48
47
|
import 'react-virtualized/dist/es/WindowScroller';
|
|
49
48
|
import 'react-virtualized/dist/es/CellMeasurer';
|
|
49
|
+
import 'util-deprecate';
|
|
50
50
|
import 'memoize-one';
|
|
51
51
|
import '../global/create-stateful-context.js';
|
|
52
52
|
import '../list/list-item.js';
|
|
@@ -102,7 +102,7 @@ const getStyle = memoize(iconsLength => ({
|
|
|
102
102
|
}));
|
|
103
103
|
const isInputMode = type => type === Type.INPUT || type === Type.INPUT_WITHOUT_CONTROLS;
|
|
104
104
|
function getLowerCaseLabel(item) {
|
|
105
|
-
if (List.isItemType(List.ListProps.Type.SEPARATOR, item) ||
|
|
105
|
+
if (List.isItemType(List.ListProps.Type.SEPARATOR, item) || typeof item.label !== 'string') {
|
|
106
106
|
return null;
|
|
107
107
|
}
|
|
108
108
|
return item.label.toLowerCase();
|