@jetbrains/ring-ui-built 7.0.117 → 7.0.119
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/alert.js +3 -0
- package/components/alert/alert-actions.d.ts +4 -0
- package/components/alert/alert-actions.js +51 -0
- package/components/alert/alert-heading.d.ts +4 -0
- package/components/alert/alert-heading.js +62 -0
- package/components/alert/alert.d.ts +14 -1
- package/components/alert/alert.js +43 -25
- package/components/alert-service/alert-service.d.ts +2 -1
- package/components/alert-service/alert-service.js +15 -5
- package/components/auth/auth-core.d.ts +5 -9
- package/components/auth/auth-core.js +71 -17
- package/components/auth/auth.js +7 -1
- package/components/auth/down-notification.js +7 -1
- package/components/auth/storage.js +7 -1
- package/components/clipboard/clipboard.js +7 -1
- package/components/header/header.js +7 -1
- package/components/header/smart-profile.js +7 -1
- package/components/http/http.d.ts +2 -2
- package/components/http/http.js +2 -2
- package/components/old-browsers-message/white-list.js +2 -2
- package/components/storage/storage-local.js +7 -1
- package/components/storage/storage.js +7 -1
- package/components/style.css +1 -1
- package/components/user-agreement/service.js +7 -1
- package/components/user-card/card.js +7 -1
- package/components/user-card/smart-user-card-tooltip.d.ts +1 -1
- package/components/user-card/smart-user-card-tooltip.js +7 -1
- package/components/user-card/tooltip.js +7 -1
- package/components/user-card/user-card.js +7 -1
- package/package.json +3 -3
|
@@ -11,8 +11,9 @@ import '../global/get-uid.js';
|
|
|
11
11
|
import 'react';
|
|
12
12
|
import 'classnames';
|
|
13
13
|
import '@jetbrains/icons/exception';
|
|
14
|
-
import '@jetbrains/icons/
|
|
14
|
+
import '@jetbrains/icons/success';
|
|
15
15
|
import '@jetbrains/icons/warning';
|
|
16
|
+
import '@jetbrains/icons/info-filled';
|
|
16
17
|
import '@jetbrains/icons/close';
|
|
17
18
|
import '../icon/icon.js';
|
|
18
19
|
import 'util-deprecate';
|
|
@@ -30,6 +31,11 @@ import '../link/clickable-link.js';
|
|
|
30
31
|
import '../_helpers/button.classes.js';
|
|
31
32
|
import '../global/configuration.js';
|
|
32
33
|
import '../_helpers/theme.js';
|
|
34
|
+
import '../alert/alert-heading.js';
|
|
35
|
+
import '../heading/heading.js';
|
|
36
|
+
import '../_helpers/heading.js';
|
|
37
|
+
import '../_helpers/alert.js';
|
|
38
|
+
import '../alert/alert-actions.js';
|
|
33
39
|
import '../alert/container.js';
|
|
34
40
|
import 'react-dom';
|
|
35
41
|
import '../_helpers/link.js';
|
|
@@ -28,8 +28,9 @@ import '../alert-service/alert-service.js';
|
|
|
28
28
|
import 'react-dom/client';
|
|
29
29
|
import '../alert/alert.js';
|
|
30
30
|
import '@jetbrains/icons/exception';
|
|
31
|
-
import '@jetbrains/icons/
|
|
31
|
+
import '@jetbrains/icons/success';
|
|
32
32
|
import '@jetbrains/icons/warning';
|
|
33
|
+
import '@jetbrains/icons/info-filled';
|
|
33
34
|
import '@jetbrains/icons/close';
|
|
34
35
|
import '../loader-inline/loader-inline.js';
|
|
35
36
|
import '../button/button.js';
|
|
@@ -40,6 +41,11 @@ import '../global/configuration.js';
|
|
|
40
41
|
import '../_helpers/button.classes.js';
|
|
41
42
|
import '../_helpers/icon-svg.js';
|
|
42
43
|
import '../_helpers/theme.js';
|
|
44
|
+
import '../alert/alert-heading.js';
|
|
45
|
+
import '../heading/heading.js';
|
|
46
|
+
import '../_helpers/heading.js';
|
|
47
|
+
import '../_helpers/alert.js';
|
|
48
|
+
import '../alert/alert-actions.js';
|
|
43
49
|
import '../alert/container.js';
|
|
44
50
|
import 'react-dom';
|
|
45
51
|
import '../clipboard/clipboard-fallback.js';
|
|
@@ -10,6 +10,6 @@ export default class SmartUserCardTooltip extends Component<SmartUserCardTooltip
|
|
|
10
10
|
loading: boolean;
|
|
11
11
|
};
|
|
12
12
|
loadUser: () => Promise<void>;
|
|
13
|
-
renderNoUser: () =>
|
|
13
|
+
renderNoUser: () => import("react").JSX.Element | "";
|
|
14
14
|
render(): import("react").JSX.Element;
|
|
15
15
|
}
|
|
@@ -51,9 +51,15 @@ import '../alert-service/alert-service.js';
|
|
|
51
51
|
import 'react-dom/client';
|
|
52
52
|
import '../alert/alert.js';
|
|
53
53
|
import '@jetbrains/icons/exception';
|
|
54
|
-
import '@jetbrains/icons/
|
|
54
|
+
import '@jetbrains/icons/success';
|
|
55
55
|
import '@jetbrains/icons/warning';
|
|
56
|
+
import '@jetbrains/icons/info-filled';
|
|
56
57
|
import '@jetbrains/icons/close';
|
|
58
|
+
import '../alert/alert-heading.js';
|
|
59
|
+
import '../heading/heading.js';
|
|
60
|
+
import '../_helpers/heading.js';
|
|
61
|
+
import '../_helpers/alert.js';
|
|
62
|
+
import '../alert/alert-actions.js';
|
|
57
63
|
import '../alert/container.js';
|
|
58
64
|
import '../clipboard/clipboard-fallback.js';
|
|
59
65
|
import '../tag/tag.js';
|
|
@@ -49,10 +49,16 @@ import '../alert-service/alert-service.js';
|
|
|
49
49
|
import 'react-dom/client';
|
|
50
50
|
import '../alert/alert.js';
|
|
51
51
|
import '@jetbrains/icons/exception';
|
|
52
|
-
import '@jetbrains/icons/
|
|
52
|
+
import '@jetbrains/icons/success';
|
|
53
53
|
import '@jetbrains/icons/warning';
|
|
54
|
+
import '@jetbrains/icons/info-filled';
|
|
54
55
|
import '@jetbrains/icons/close';
|
|
55
56
|
import '../loader-inline/loader-inline.js';
|
|
57
|
+
import '../alert/alert-heading.js';
|
|
58
|
+
import '../heading/heading.js';
|
|
59
|
+
import '../_helpers/heading.js';
|
|
60
|
+
import '../_helpers/alert.js';
|
|
61
|
+
import '../alert/alert-actions.js';
|
|
56
62
|
import '../alert/container.js';
|
|
57
63
|
import '../clipboard/clipboard-fallback.js';
|
|
58
64
|
import '../tag/tag.js';
|
|
@@ -25,8 +25,9 @@ import '../alert-service/alert-service.js';
|
|
|
25
25
|
import 'react-dom/client';
|
|
26
26
|
import '../alert/alert.js';
|
|
27
27
|
import '@jetbrains/icons/exception';
|
|
28
|
-
import '@jetbrains/icons/
|
|
28
|
+
import '@jetbrains/icons/success';
|
|
29
29
|
import '@jetbrains/icons/warning';
|
|
30
|
+
import '@jetbrains/icons/info-filled';
|
|
30
31
|
import '@jetbrains/icons/close';
|
|
31
32
|
import '../icon/icon.js';
|
|
32
33
|
import '../icon/icon.constants.js';
|
|
@@ -39,6 +40,11 @@ import '../global/controls-height.js';
|
|
|
39
40
|
import '../global/configuration.js';
|
|
40
41
|
import '../_helpers/button.classes.js';
|
|
41
42
|
import '../_helpers/theme.js';
|
|
43
|
+
import '../alert/alert-heading.js';
|
|
44
|
+
import '../heading/heading.js';
|
|
45
|
+
import '../_helpers/heading.js';
|
|
46
|
+
import '../_helpers/alert.js';
|
|
47
|
+
import '../alert/alert-actions.js';
|
|
42
48
|
import '../alert/container.js';
|
|
43
49
|
import 'react-dom';
|
|
44
50
|
import '../clipboard/clipboard-fallback.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetbrains/ring-ui-built",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.119",
|
|
4
4
|
"description": "JetBrains UI library",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "JetBrains"
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"dependencies": {
|
|
115
|
-
"@jetbrains/icons": "^5.
|
|
115
|
+
"@jetbrains/icons": "^5.23.0",
|
|
116
116
|
"change-case": "^4.1.1",
|
|
117
117
|
"classnames": "^2.5.1",
|
|
118
118
|
"combokeys": "^3.0.1",
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"dequal": "^2.0.3",
|
|
121
121
|
"element-resize-detector": "^1.2.4",
|
|
122
122
|
"fastdom": "^1.0.12",
|
|
123
|
-
"focus-trap": "^8.2.
|
|
123
|
+
"focus-trap": "^8.2.2",
|
|
124
124
|
"highlight.js": "^10.7.2",
|
|
125
125
|
"just-debounce-it": "^3.2.0",
|
|
126
126
|
"memoize-one": "^6.0.0",
|