@jetbrains/ring-ui-built 7.0.79 → 7.0.80
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/theme.js +90 -94
- package/components/alert/alert.js +0 -13
- package/components/alert-service/alert-service.js +0 -12
- package/components/auth/auth-core.js +1 -13
- package/components/auth/auth.js +1 -13
- package/components/auth/down-notification.js +0 -12
- package/components/auth/iframe-flow.js +1 -0
- package/components/auth/storage.js +1 -13
- package/components/auth-dialog/auth-dialog.js +1 -0
- package/components/auth-dialog-service/auth-dialog-service.js +1 -0
- package/components/avatar/fallback-avatar.js +78 -79
- package/components/avatar-stack/avatar-stack.js +1 -0
- package/components/clipboard/clipboard.js +1 -13
- package/components/collapse/collapse-content.js +2 -2
- package/components/collapse/collapse-control.js +34 -50
- package/components/collapse/collapse.js +2 -2
- package/components/confirm/confirm.js +1 -0
- package/components/confirm-service/confirm-service.js +1 -0
- package/components/date-picker/date-picker.js +1 -0
- package/components/date-picker/months.js +86 -100
- package/components/dialog/dialog.js +1 -0
- package/components/dropdown-menu/dropdown-menu.js +154 -238
- package/components/editable-heading/editable-heading.js +11 -11
- package/components/error-bubble/error-bubble.js +1 -0
- package/components/global/theme.d.ts +1 -0
- package/components/global/theme.js +0 -17
- package/components/global/use-event-callback.js +3 -2
- package/components/header/header.js +17 -17
- package/components/header/profile.js +1 -0
- package/components/header/smart-profile.js +13 -13
- package/components/login-dialog/login-dialog.js +1 -0
- package/components/login-dialog/service.js +1 -0
- package/components/old-browsers-message/white-list.js +2 -2
- package/components/pager/pager.js +1 -0
- package/components/popup/popup.js +49 -43
- package/components/popup-menu/popup-menu.js +1 -0
- package/components/query-assist/query-assist.js +1 -0
- package/components/select/select-popup.js +1 -0
- package/components/select/select.js +1 -0
- package/components/slider/slider.js +289 -366
- package/components/storage/storage-local.js +1 -13
- package/components/storage/storage.js +1 -13
- package/components/style.css +1 -1
- package/components/tabs/collapsible-more.js +12 -12
- package/components/tabs/collapsible-tabs.js +191 -205
- package/components/tabs/dumb-tabs.js +1 -0
- package/components/tabs/smart-tabs.js +1 -0
- package/components/tabs/tabs.js +1 -0
- package/components/tags-input/tags-input.js +1 -0
- package/components/upload/upload.js +31 -8
- package/components/user-agreement/service.js +11 -11
- package/components/user-agreement/user-agreement.js +1 -0
- package/components/user-card/card.js +5 -5
- 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 +8 -8
- package/package.json +2 -2
|
@@ -29,20 +29,8 @@ import '../global/controls-height.js';
|
|
|
29
29
|
import '../global/configuration.js';
|
|
30
30
|
import '../_helpers/button.classes.js';
|
|
31
31
|
import '../_helpers/theme.js';
|
|
32
|
-
import 'react-dom';
|
|
33
|
-
import '../popup/popup.target.js';
|
|
34
|
-
import '../popup/popup.js';
|
|
35
|
-
import '../global/schedule-raf.js';
|
|
36
|
-
import '../shortcuts/shortcuts.js';
|
|
37
|
-
import '../shortcuts/core.js';
|
|
38
|
-
import 'combokeys';
|
|
39
|
-
import '../global/sniffer.js';
|
|
40
|
-
import 'sniffr';
|
|
41
|
-
import '../tab-trap/tab-trap.js';
|
|
42
|
-
import '../popup/position.js';
|
|
43
|
-
import '../popup/popup.consts.js';
|
|
44
|
-
import '../popup/position-css.js';
|
|
45
32
|
import '../alert/container.js';
|
|
33
|
+
import 'react-dom';
|
|
46
34
|
import '../avatar/avatar.js';
|
|
47
35
|
import '../global/url.js';
|
|
48
36
|
import '../avatar/fallback-avatar.js';
|
|
@@ -55,6 +43,12 @@ import 'react-virtualized/dist/es/AutoSizer';
|
|
|
55
43
|
import 'react-virtualized/dist/es/WindowScroller';
|
|
56
44
|
import 'react-virtualized/dist/es/CellMeasurer';
|
|
57
45
|
import 'memoize-one';
|
|
46
|
+
import '../global/schedule-raf.js';
|
|
47
|
+
import '../shortcuts/shortcuts.js';
|
|
48
|
+
import '../shortcuts/core.js';
|
|
49
|
+
import 'combokeys';
|
|
50
|
+
import '../global/sniffer.js';
|
|
51
|
+
import 'sniffr';
|
|
58
52
|
import '../global/create-stateful-context.js';
|
|
59
53
|
import '../list/list-item.js';
|
|
60
54
|
import '../checkbox/checkbox.js';
|
|
@@ -76,6 +70,12 @@ import '../dropdown/dropdown.js';
|
|
|
76
70
|
import '../global/typescript-utils.js';
|
|
77
71
|
import '../_helpers/anchor.js';
|
|
78
72
|
import '../popup-menu/popup-menu.js';
|
|
73
|
+
import '../popup/popup.js';
|
|
74
|
+
import '../tab-trap/tab-trap.js';
|
|
75
|
+
import '../popup/position.js';
|
|
76
|
+
import '../popup/popup.consts.js';
|
|
77
|
+
import '../popup/popup.target.js';
|
|
78
|
+
import '../popup/position-css.js';
|
|
79
79
|
import '../i18n/i18n-context.js';
|
|
80
80
|
import '../i18n/i18n.js';
|
|
81
81
|
import '../_helpers/header.js';
|
|
@@ -41,6 +41,7 @@ import '../popup/popup.js';
|
|
|
41
41
|
import '../popup/position.js';
|
|
42
42
|
import '../popup/popup.consts.js';
|
|
43
43
|
import '../popup/position-css.js';
|
|
44
|
+
import '../_helpers/theme.js';
|
|
44
45
|
import '../_helpers/dialog-body-scroll-preventer.js';
|
|
45
46
|
import 'scrollbar-width';
|
|
46
47
|
import '../loader/loader.js';
|
|
@@ -41,6 +41,7 @@ import '../popup/popup.js';
|
|
|
41
41
|
import '../popup/position.js';
|
|
42
42
|
import '../popup/popup.consts.js';
|
|
43
43
|
import '../popup/position-css.js';
|
|
44
|
+
import '../_helpers/theme.js';
|
|
44
45
|
import '../_helpers/dialog-body-scroll-preventer.js';
|
|
45
46
|
import 'scrollbar-width';
|
|
46
47
|
import '../loader-screen/loader-screen.js';
|
|
@@ -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 142", "and_ff 144", "and_qq 14.9", "and_uc 15.5", "android 142", "chrome 142", "chrome 141", "chrome 140", "chrome 139", "chrome 138", "chrome 137", "chrome 136", "chrome 135", "chrome 134", "chrome 133", "chrome 132", "chrome 131", "chrome 130", "chrome 129", "chrome 128", "chrome 127", "chrome 126", "chrome 125", "chrome 124", "chrome 123", "chrome 122", "chrome 121", "chrome 120", "chrome 119", "chrome 118", "chrome 117", "chrome 116", "chrome 115", "chrome 114", "chrome 113", "chrome 112", "chrome 111", "chrome 109", "edge 142", "edge 141", "edge 140", "edge 139", "edge 138", "edge 137", "edge 136", "edge 135", "edge 134", "edge 133", "edge 132", "edge 131", "edge 130", "edge 129", "edge 128", "edge 127", "edge 126", "edge 125", "edge 124", "edge 123", "edge 122", "edge 121", "edge 120", "edge 119", "edge 118", "edge 117", "edge 116", "edge 115", "edge 114", "edge 113", "edge 112", "edge 111", "firefox 144", "firefox 143", "firefox 142", "firefox 141", "firefox 140", "firefox 139", "firefox 138", "firefox 137", "firefox 136", "firefox 135", "firefox 134", "firefox 133", "firefox 132", "firefox 131", "firefox 130", "firefox 129", "firefox 128", "firefox 127", "firefox 126", "firefox 125", "firefox 124", "firefox 123", "firefox 122", "firefox 121", "firefox 120", "firefox 119", "firefox 118", "firefox 117", "firefox 116", "firefox 115", "firefox 114", "
|
|
8
|
+
if (!["and_chr 142", "and_ff 144", "and_qq 14.9", "and_uc 15.5", "android 142", "chrome 142", "chrome 141", "chrome 140", "chrome 139", "chrome 138", "chrome 137", "chrome 136", "chrome 135", "chrome 134", "chrome 133", "chrome 132", "chrome 131", "chrome 130", "chrome 129", "chrome 128", "chrome 127", "chrome 126", "chrome 125", "chrome 124", "chrome 123", "chrome 122", "chrome 121", "chrome 120", "chrome 119", "chrome 118", "chrome 117", "chrome 116", "chrome 115", "chrome 114", "chrome 113", "chrome 112", "chrome 111", "chrome 109", "edge 142", "edge 141", "edge 140", "edge 139", "edge 138", "edge 137", "edge 136", "edge 135", "edge 134", "edge 133", "edge 132", "edge 131", "edge 130", "edge 129", "edge 128", "edge 127", "edge 126", "edge 125", "edge 124", "edge 123", "edge 122", "edge 121", "edge 120", "edge 119", "edge 118", "edge 117", "edge 116", "edge 115", "edge 114", "edge 113", "edge 112", "edge 111", "firefox 145", "firefox 144", "firefox 143", "firefox 142", "firefox 141", "firefox 140", "firefox 139", "firefox 138", "firefox 137", "firefox 136", "firefox 135", "firefox 134", "firefox 133", "firefox 132", "firefox 131", "firefox 130", "firefox 129", "firefox 128", "firefox 127", "firefox 126", "firefox 125", "firefox 124", "firefox 123", "firefox 122", "firefox 121", "firefox 120", "firefox 119", "firefox 118", "firefox 117", "firefox 116", "firefox 115", "firefox 114", "ios_saf 26.0", "ios_saf 18.5-18.6", "ios_saf 18.4", "ios_saf 18.3", "ios_saf 18.2", "ios_saf 18.1", "ios_saf 18.0", "ios_saf 17.6-17.7", "ios_saf 17.5", "ios_saf 17.4", "ios_saf 17.3", "ios_saf 17.2", "ios_saf 17.1", "ios_saf 17.0", "ios_saf 16.6-16.7", "ios_saf 16.5", "ios_saf 16.4", "kaios 3.0-3.1", "kaios 2.5", "op_mini all", "op_mob 80", "opera 122", "opera 121", "safari 26.2", "safari 26.1", "safari 26.0", "safari 18.5-18.6", "safari 18.4", "safari 18.3", "safari 18.2", "safari 18.1", "safari 18.0", "safari 17.6", "safari 17.5", "safari 17.4", "safari 17.3", "safari 17.2", "safari 17.1", "safari 17.0", "safari 16.6", "safari 16.5", "safari 16.4", "samsung 29", "samsung 28"]) {
|
|
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 142", "and_ff 144", "and_qq 14.9", "and_uc 15.5", "android 142", "chrome 142", "chrome 141", "chrome 140", "chrome 139", "chrome 138", "chrome 137", "chrome 136", "chrome 135", "chrome 134", "chrome 133", "chrome 132", "chrome 131", "chrome 130", "chrome 129", "chrome 128", "chrome 127", "chrome 126", "chrome 125", "chrome 124", "chrome 123", "chrome 122", "chrome 121", "chrome 120", "chrome 119", "chrome 118", "chrome 117", "chrome 116", "chrome 115", "chrome 114", "chrome 113", "chrome 112", "chrome 111", "chrome 109", "edge 142", "edge 141", "edge 140", "edge 139", "edge 138", "edge 137", "edge 136", "edge 135", "edge 134", "edge 133", "edge 132", "edge 131", "edge 130", "edge 129", "edge 128", "edge 127", "edge 126", "edge 125", "edge 124", "edge 123", "edge 122", "edge 121", "edge 120", "edge 119", "edge 118", "edge 117", "edge 116", "edge 115", "edge 114", "edge 113", "edge 112", "edge 111", "firefox 144", "firefox 143", "firefox 142", "firefox 141", "firefox 140", "firefox 139", "firefox 138", "firefox 137", "firefox 136", "firefox 135", "firefox 134", "firefox 133", "firefox 132", "firefox 131", "firefox 130", "firefox 129", "firefox 128", "firefox 127", "firefox 126", "firefox 125", "firefox 124", "firefox 123", "firefox 122", "firefox 121", "firefox 120", "firefox 119", "firefox 118", "firefox 117", "firefox 116", "firefox 115", "firefox 114", "
|
|
12
|
+
const SUPPORTED = ["and_chr 142", "and_ff 144", "and_qq 14.9", "and_uc 15.5", "android 142", "chrome 142", "chrome 141", "chrome 140", "chrome 139", "chrome 138", "chrome 137", "chrome 136", "chrome 135", "chrome 134", "chrome 133", "chrome 132", "chrome 131", "chrome 130", "chrome 129", "chrome 128", "chrome 127", "chrome 126", "chrome 125", "chrome 124", "chrome 123", "chrome 122", "chrome 121", "chrome 120", "chrome 119", "chrome 118", "chrome 117", "chrome 116", "chrome 115", "chrome 114", "chrome 113", "chrome 112", "chrome 111", "chrome 109", "edge 142", "edge 141", "edge 140", "edge 139", "edge 138", "edge 137", "edge 136", "edge 135", "edge 134", "edge 133", "edge 132", "edge 131", "edge 130", "edge 129", "edge 128", "edge 127", "edge 126", "edge 125", "edge 124", "edge 123", "edge 122", "edge 121", "edge 120", "edge 119", "edge 118", "edge 117", "edge 116", "edge 115", "edge 114", "edge 113", "edge 112", "edge 111", "firefox 145", "firefox 144", "firefox 143", "firefox 142", "firefox 141", "firefox 140", "firefox 139", "firefox 138", "firefox 137", "firefox 136", "firefox 135", "firefox 134", "firefox 133", "firefox 132", "firefox 131", "firefox 130", "firefox 129", "firefox 128", "firefox 127", "firefox 126", "firefox 125", "firefox 124", "firefox 123", "firefox 122", "firefox 121", "firefox 120", "firefox 119", "firefox 118", "firefox 117", "firefox 116", "firefox 115", "firefox 114", "ios_saf 26.0", "ios_saf 18.5-18.6", "ios_saf 18.4", "ios_saf 18.3", "ios_saf 18.2", "ios_saf 18.1", "ios_saf 18.0", "ios_saf 17.6-17.7", "ios_saf 17.5", "ios_saf 17.4", "ios_saf 17.3", "ios_saf 17.2", "ios_saf 17.1", "ios_saf 17.0", "ios_saf 16.6-16.7", "ios_saf 16.5", "ios_saf 16.4", "kaios 3.0-3.1", "kaios 2.5", "op_mini all", "op_mob 80", "opera 122", "opera 121", "safari 26.2", "safari 26.1", "safari 26.0", "safari 18.5-18.6", "safari 18.4", "safari 18.3", "safari 18.2", "safari 18.1", "safari 18.0", "safari 17.6", "safari 17.5", "safari 17.4", "safari 17.3", "safari 17.2", "safari 17.1", "safari 17.0", "safari 16.6", "safari 16.5", "safari 16.4", "samsung 29", "samsung 28"] || [];
|
|
13
13
|
const WHITE_LISTED_BROWSERS = ['chrome', 'firefox', 'safari', 'edge'];
|
|
14
14
|
const WHITE_LIST = SUPPORTED.reduce((acc, item) => {
|
|
15
15
|
var _item$match;
|
|
@@ -49,6 +49,7 @@ import '../popup/position.js';
|
|
|
49
49
|
import '../popup/popup.consts.js';
|
|
50
50
|
import '../popup/popup.target.js';
|
|
51
51
|
import '../popup/position-css.js';
|
|
52
|
+
import '../_helpers/theme.js';
|
|
52
53
|
import '../list/list.js';
|
|
53
54
|
import 'react-virtualized/dist/es/List';
|
|
54
55
|
import 'react-virtualized/dist/es/AutoSizer';
|
|
@@ -12,6 +12,7 @@ import position from './position.js';
|
|
|
12
12
|
import { DEFAULT_DIRECTIONS, Display, MaxHeight, MinWidth, Dimension, Directions } from './popup.consts.js';
|
|
13
13
|
import { PopupTargetContext, PopupTarget } from './popup.target.js';
|
|
14
14
|
import { supportsCSSAnchorPositioning, setCSSAnchorPositioning } from './position-css.js';
|
|
15
|
+
import { b as ThemeContext, W as WithThemeClasses } from '../_helpers/theme.js';
|
|
15
16
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
16
17
|
import '../shortcuts/core.js';
|
|
17
18
|
import 'combokeys';
|
|
@@ -340,52 +341,57 @@ class Popup extends PureComponent {
|
|
|
340
341
|
largeBorderRadius
|
|
341
342
|
} = this.props;
|
|
342
343
|
const showing = this.state.display === Display.SHOWING;
|
|
343
|
-
const classes = classNames(className, styles.popup, {
|
|
344
|
-
[styles.cssAnchoredPopup]: this.shouldUseCssPositioning(),
|
|
345
|
-
[styles.attached]: attached,
|
|
346
|
-
[styles.hidden]: hidden,
|
|
347
|
-
[styles.showing]: showing,
|
|
348
|
-
[styles.largeBorderRadius]: largeBorderRadius
|
|
349
|
-
});
|
|
350
344
|
const direction = (this.state.direction || '').toLowerCase().replace(/[_]/g, '-');
|
|
351
|
-
return /*#__PURE__*/jsx(
|
|
352
|
-
children:
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
onFocus: onMouseOver,
|
|
369
|
-
onMouseOut: onMouseOut,
|
|
370
|
-
onBlur: onMouseOut,
|
|
371
|
-
onContextMenu: onContextMenu,
|
|
372
|
-
children: /*#__PURE__*/jsx("div", {
|
|
373
|
-
"data-test": joinDataTestAttributes('ring-popup', dataTest),
|
|
374
|
-
"data-test-shown": !hidden && !showing,
|
|
375
|
-
"data-test-direction": direction,
|
|
376
|
-
ref: this.popupRef,
|
|
377
|
-
className: classes,
|
|
378
|
-
style: style,
|
|
379
|
-
onMouseDown: onMouseDown,
|
|
380
|
-
onMouseUp: onMouseUp
|
|
381
|
-
// mouse handlers are used to track clicking on inner elements
|
|
345
|
+
return /*#__PURE__*/jsx(ThemeContext.Consumer, {
|
|
346
|
+
children: theme => /*#__PURE__*/jsx(WithThemeClasses, {
|
|
347
|
+
theme: theme.theme,
|
|
348
|
+
children: themeClasses => /*#__PURE__*/jsx(PopupTargetContext.Consumer, {
|
|
349
|
+
children: value => {
|
|
350
|
+
this.ringPopupTarget = value;
|
|
351
|
+
const classes = classNames(className, theme.passToPopups ? themeClasses : null, styles.popup, {
|
|
352
|
+
[styles.cssAnchoredPopup]: this.shouldUseCssPositioning(),
|
|
353
|
+
[styles.attached]: attached,
|
|
354
|
+
[styles.hidden]: hidden,
|
|
355
|
+
[styles.showing]: showing,
|
|
356
|
+
[styles.largeBorderRadius]: largeBorderRadius
|
|
357
|
+
});
|
|
358
|
+
return /*#__PURE__*/jsxs("span", {
|
|
359
|
+
// prevent bubbling through portal
|
|
360
|
+
onClick: stop
|
|
361
|
+
// This handler only blocks bubbling through React portal
|
|
382
362
|
,
|
|
383
363
|
role: "presentation",
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
364
|
+
ref: this.portalRef,
|
|
365
|
+
children: [this.shouldUseShortcuts() && /*#__PURE__*/jsx(Shortcuts, {
|
|
366
|
+
map: this.shortcutsMap,
|
|
367
|
+
scope: this.shortcutsScope
|
|
368
|
+
}), client !== false && (keepMounted || !hidden) && /*#__PURE__*/createPortal(/*#__PURE__*/jsx(PopupTarget, {
|
|
369
|
+
id: this.uid,
|
|
370
|
+
ref: this.containerRef,
|
|
371
|
+
onMouseOver: onMouseOver,
|
|
372
|
+
onFocus: onMouseOver,
|
|
373
|
+
onMouseOut: onMouseOut,
|
|
374
|
+
onBlur: onMouseOut,
|
|
375
|
+
onContextMenu: onContextMenu,
|
|
376
|
+
children: /*#__PURE__*/jsx("div", {
|
|
377
|
+
"data-test": joinDataTestAttributes('ring-popup', dataTest),
|
|
378
|
+
"data-test-shown": !hidden && !showing,
|
|
379
|
+
"data-test-direction": direction,
|
|
380
|
+
ref: this.popupRef,
|
|
381
|
+
className: classes,
|
|
382
|
+
style: style,
|
|
383
|
+
onMouseDown: onMouseDown,
|
|
384
|
+
onMouseUp: onMouseUp
|
|
385
|
+
// mouse handlers are used to track clicking on inner elements
|
|
386
|
+
,
|
|
387
|
+
role: "presentation",
|
|
388
|
+
children: this.getInternalContent()
|
|
389
|
+
})
|
|
390
|
+
}), this.getContainer() || document.body)]
|
|
391
|
+
});
|
|
392
|
+
}
|
|
393
|
+
})
|
|
394
|
+
})
|
|
389
395
|
});
|
|
390
396
|
}
|
|
391
397
|
}
|
|
@@ -20,6 +20,7 @@ import '../popup/position.js';
|
|
|
20
20
|
import '../popup/popup.consts.js';
|
|
21
21
|
import '../popup/popup.target.js';
|
|
22
22
|
import '../popup/position-css.js';
|
|
23
|
+
import '../_helpers/theme.js';
|
|
23
24
|
import 'react-virtualized/dist/es/List';
|
|
24
25
|
import 'react-virtualized/dist/es/AutoSizer';
|
|
25
26
|
import 'react-virtualized/dist/es/WindowScroller';
|
|
@@ -31,6 +31,7 @@ import '../popup/position.js';
|
|
|
31
31
|
import '../popup/popup.consts.js';
|
|
32
32
|
import '../popup/popup.target.js';
|
|
33
33
|
import '../popup/position-css.js';
|
|
34
|
+
import '../_helpers/theme.js';
|
|
34
35
|
import '../list/list.js';
|
|
35
36
|
import 'react-virtualized/dist/es/List';
|
|
36
37
|
import 'react-virtualized/dist/es/AutoSizer';
|
|
@@ -32,6 +32,7 @@ import '../global/schedule-raf.js';
|
|
|
32
32
|
import '../global/data-tests.js';
|
|
33
33
|
import '../tab-trap/tab-trap.js';
|
|
34
34
|
import '../popup/position-css.js';
|
|
35
|
+
import '../_helpers/theme.js';
|
|
35
36
|
import 'react-virtualized/dist/es/List';
|
|
36
37
|
import 'react-virtualized/dist/es/AutoSizer';
|
|
37
38
|
import 'react-virtualized/dist/es/WindowScroller';
|
|
@@ -37,6 +37,7 @@ import '../popup/position.js';
|
|
|
37
37
|
import '../popup/popup.consts.js';
|
|
38
38
|
import '../popup/popup.target.js';
|
|
39
39
|
import '../popup/position-css.js';
|
|
40
|
+
import '../_helpers/theme.js';
|
|
40
41
|
import '../shortcuts/core.js';
|
|
41
42
|
import 'combokeys';
|
|
42
43
|
import '../global/sniffer.js';
|