@jetbrains/ring-ui 5.0.121 → 5.0.123
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/pager/pager.js +1 -2
- package/components/table/table.css +6 -0
- package/components/table/table.js +1 -1
- package/dist/_helpers/table.js +1 -1
- package/dist/auth/iframe-flow.js +1 -1
- package/dist/auth/landing.js +2 -2
- package/dist/auth-dialog/auth-dialog.js +2 -2
- package/dist/avatar-editor-ng/avatar-editor-ng.js +2 -2
- package/dist/breadcrumb-ng/breadcrumb-ng.js +2 -2
- package/dist/button-ng/button-ng.js +2 -2
- package/dist/confirm-ng/confirm-ng.js +2 -2
- package/dist/date-picker/date-picker.js +1 -1
- package/dist/date-picker/date-popup.js +1 -1
- package/dist/dialog-ng/dialog-ng.js +8 -8
- package/dist/error-message-ng/error-message-ng.js +2 -2
- package/dist/form-ng/form-ng.js +2 -2
- package/dist/input-ng/input-ng.js +2 -2
- package/dist/link-ng/link-ng.js +2 -2
- package/dist/message-bundle-ng/message-bundle-ng.js +2 -2
- package/dist/pager/pager.js +1 -2
- package/dist/save-field-ng/save-field-ng.js +5 -5
- package/dist/select-ng/select-ng.js +2 -2
- package/dist/shortcuts/core.js +2 -2
- package/dist/shortcuts/shortcuts.js +6 -6
- package/dist/shortcuts-hint-ng/shortcuts-hint-ng.js +2 -2
- package/dist/shortcuts-ng/shortcuts-ng.js +24 -24
- package/dist/sidebar-ng/sidebar-ng.js +2 -2
- package/dist/style.css +1 -1
- package/dist/table/table.js +3 -3
- package/dist/table-legacy-ng/table-legacy-ng__pager.js +2 -2
- package/dist/tabs/collapsible-more.js +6 -6
- package/dist/user-agreement/service.js +8 -8
- package/dist/user-agreement/user-agreement.js +3 -3
- package/package.json +9 -9
package/dist/table/table.js
CHANGED
|
@@ -279,9 +279,9 @@ class Table extends PureComponent {
|
|
|
279
279
|
}, restProps));
|
|
280
280
|
return isDragged ? /*#__PURE__*/React.createElement("table", {
|
|
281
281
|
style: {
|
|
282
|
-
...props.style
|
|
283
|
-
|
|
284
|
-
|
|
282
|
+
...props.style
|
|
283
|
+
},
|
|
284
|
+
className: modules_1db4bbca.draggingTable
|
|
285
285
|
}, /*#__PURE__*/React.createElement("tbody", null, row)) : row;
|
|
286
286
|
};
|
|
287
287
|
return /*#__PURE__*/React.createElement("div", {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import angular from 'angular';
|
|
2
2
|
import Pager from '../pager-ng/pager-ng.js';
|
|
3
|
-
import
|
|
3
|
+
import messageBundleNg from '../message-bundle-ng/message-bundle-ng.js';
|
|
4
4
|
import '../global/angular-component-factory.js';
|
|
5
5
|
import '../_helpers/_rollupPluginBabelHelpers.js';
|
|
6
6
|
import 'react';
|
|
@@ -94,7 +94,7 @@ import '../caret/caret.js';
|
|
|
94
94
|
import '../text/text.js';
|
|
95
95
|
import '../_helpers/select__filter.js';
|
|
96
96
|
|
|
97
|
-
const angularModule = angular.module('Ring.table-legacy.pager', [
|
|
97
|
+
const angularModule = angular.module('Ring.table-legacy.pager', [messageBundleNg, Pager]);
|
|
98
98
|
angularModule.directive('rgLegacyTablePager', function rgLegacyTablePagerDirective() {
|
|
99
99
|
return {
|
|
100
100
|
restrict: 'E',
|
|
@@ -36,9 +36,6 @@ import '../global/memoize.js';
|
|
|
36
36
|
import '../global/create-stateful-context.js';
|
|
37
37
|
import '../list/list__link.js';
|
|
38
38
|
import '../_helpers/list.js';
|
|
39
|
-
import 'focus-visible';
|
|
40
|
-
import '../link/clickableLink.js';
|
|
41
|
-
import '../_helpers/link.js';
|
|
42
39
|
import '../list/list__item.js';
|
|
43
40
|
import '../avatar/avatar.js';
|
|
44
41
|
import '../global/url.js';
|
|
@@ -49,9 +46,6 @@ import '@jetbrains/icons/remove-14px';
|
|
|
49
46
|
import '../global/prop-types.js';
|
|
50
47
|
import '../global/composeRefs.js';
|
|
51
48
|
import '../_helpers/checkbox.js';
|
|
52
|
-
import '../icon/icon__constants.js';
|
|
53
|
-
import '../_helpers/icon.js';
|
|
54
|
-
import '../icon/icon__svg.js';
|
|
55
49
|
import '../list/list__custom.js';
|
|
56
50
|
import '../global/get-event-key.js';
|
|
57
51
|
import '../list/list__title.js';
|
|
@@ -61,8 +55,14 @@ import '../list/consts.js';
|
|
|
61
55
|
import '../global/typescript-utils.js';
|
|
62
56
|
import '../_helpers/anchor.js';
|
|
63
57
|
import '../button/button.js';
|
|
58
|
+
import 'focus-visible';
|
|
59
|
+
import '../link/clickableLink.js';
|
|
64
60
|
import '../global/controls-height.js';
|
|
65
61
|
import '../_helpers/button__classes.js';
|
|
62
|
+
import '../icon/icon__constants.js';
|
|
63
|
+
import '../_helpers/link.js';
|
|
64
|
+
import '../_helpers/icon.js';
|
|
65
|
+
import '../icon/icon__svg.js';
|
|
66
66
|
import './tab-link.js';
|
|
67
67
|
|
|
68
68
|
const AnchorLink = _ref => {
|
|
@@ -9,9 +9,17 @@ import Group from '../group/group.js';
|
|
|
9
9
|
import UserAgreement from './user-agreement.js';
|
|
10
10
|
import 'react-dom';
|
|
11
11
|
import '../storage/storage__local.js';
|
|
12
|
+
import '../storage/storage__fallback.js';
|
|
13
|
+
import 'deep-equal';
|
|
12
14
|
import '../global/get-uid.js';
|
|
15
|
+
import '../alert/container.js';
|
|
13
16
|
import 'classnames';
|
|
14
17
|
import 'prop-types';
|
|
18
|
+
import 'focus-visible';
|
|
19
|
+
import '../global/memoize.js';
|
|
20
|
+
import '../global/data-tests.js';
|
|
21
|
+
import '../link/clickableLink.js';
|
|
22
|
+
import '../_helpers/link.js';
|
|
15
23
|
import '@jetbrains/icons/exception';
|
|
16
24
|
import '@jetbrains/icons/checkmark';
|
|
17
25
|
import '@jetbrains/icons/warning';
|
|
@@ -21,15 +29,11 @@ import 'util-deprecate';
|
|
|
21
29
|
import '../icon/icon__constants.js';
|
|
22
30
|
import '../_helpers/icon.js';
|
|
23
31
|
import '../icon/icon__svg.js';
|
|
24
|
-
import '../global/memoize.js';
|
|
25
32
|
import '../loader-inline/loader-inline.js';
|
|
26
|
-
import '../global/data-tests.js';
|
|
27
33
|
import '../_helpers/loader-inline.js';
|
|
28
34
|
import '../global/dom.js';
|
|
29
35
|
import '../button/button.js';
|
|
30
|
-
import 'focus-visible';
|
|
31
36
|
import '@jetbrains/icons/chevron-10px';
|
|
32
|
-
import '../link/clickableLink.js';
|
|
33
37
|
import '../global/controls-height.js';
|
|
34
38
|
import '../_helpers/button__classes.js';
|
|
35
39
|
import '../_helpers/theme.js';
|
|
@@ -44,10 +48,6 @@ import 'sniffr';
|
|
|
44
48
|
import '../tab-trap/tab-trap.js';
|
|
45
49
|
import '../popup/position.js';
|
|
46
50
|
import '../popup/popup.consts.js';
|
|
47
|
-
import '../alert/container.js';
|
|
48
|
-
import '../storage/storage__fallback.js';
|
|
49
|
-
import 'deep-equal';
|
|
50
|
-
import '../_helpers/link.js';
|
|
51
51
|
import '../_helpers/group.js';
|
|
52
52
|
import '../dialog/dialog.js';
|
|
53
53
|
import '../island/island.js';
|
|
@@ -26,8 +26,7 @@ import 'scrollbar-width';
|
|
|
26
26
|
import '../island/adaptive-island-hoc.js';
|
|
27
27
|
import '../global/linear-function.js';
|
|
28
28
|
import '../_helpers/island.js';
|
|
29
|
-
import '
|
|
30
|
-
import '../global/schedule-raf.js';
|
|
29
|
+
import '../_helpers/panel.js';
|
|
31
30
|
import 'focus-visible';
|
|
32
31
|
import '@jetbrains/icons/chevron-10px';
|
|
33
32
|
import '../icon/icon.js';
|
|
@@ -39,7 +38,6 @@ import '../global/memoize.js';
|
|
|
39
38
|
import '../link/clickableLink.js';
|
|
40
39
|
import '../global/controls-height.js';
|
|
41
40
|
import '../_helpers/button__classes.js';
|
|
42
|
-
import '../_helpers/panel.js';
|
|
43
41
|
import 'react-markdown';
|
|
44
42
|
import 'remark-breaks';
|
|
45
43
|
import 'remark-gfm';
|
|
@@ -53,6 +51,8 @@ import '../link/link.js';
|
|
|
53
51
|
import '../_helpers/link.js';
|
|
54
52
|
import '../markdown/heading.js';
|
|
55
53
|
import '../heading/heading.js';
|
|
54
|
+
import 'element-resize-detector';
|
|
55
|
+
import '../global/schedule-raf.js';
|
|
56
56
|
|
|
57
57
|
var modules_f5ed85cf = {"unit":"8px","extra-small-screen-media":"(max-width: 639px)","light":"light_rui_a19e","agreementDialog":"agreementDialog_rui_a19e","dialogContent":"dialogContent_rui_a19e","suggestion":"suggestion_rui_a19e","remindLaterButton":"remindLaterButton_rui_a19e"};
|
|
58
58
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetbrains/ring-ui",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.123",
|
|
4
4
|
"description": "JetBrains UI library",
|
|
5
5
|
"author": "JetBrains",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"readmeFilename": "README.md",
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@babel/cli": "^7.21.0",
|
|
78
|
-
"@babel/eslint-parser": "^7.
|
|
78
|
+
"@babel/eslint-parser": "^7.21.3",
|
|
79
79
|
"@jetbrains/eslint-config": "^5.4.1",
|
|
80
80
|
"@jetbrains/stylelint-config": "^3.0.2",
|
|
81
81
|
"@primer/octicons": "^18.2.0",
|
|
@@ -108,15 +108,15 @@
|
|
|
108
108
|
"@types/react-dom": "^18.0.11",
|
|
109
109
|
"@types/sinon": "^10.0.13",
|
|
110
110
|
"@types/sinon-chai": "^3.2.9",
|
|
111
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
112
|
-
"@typescript-eslint/parser": "^5.
|
|
111
|
+
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
|
112
|
+
"@typescript-eslint/parser": "^5.55.0",
|
|
113
113
|
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
|
|
114
114
|
"angular": "^1.8.3",
|
|
115
115
|
"angular-mocks": "^1.8.3",
|
|
116
116
|
"angular-route": "^1.8.3",
|
|
117
117
|
"babel-plugin-react-docgen": "^4.2.1",
|
|
118
118
|
"babel-plugin-require-context-hook": "^1.0.0",
|
|
119
|
-
"caniuse-lite": "^1.0.
|
|
119
|
+
"caniuse-lite": "^1.0.30001466",
|
|
120
120
|
"chai": "^4.3.7",
|
|
121
121
|
"chai-as-promised": "^7.1.1",
|
|
122
122
|
"chai-dom": "^1.10.0",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
134
134
|
"eslint-plugin-react": "^7.32.2",
|
|
135
135
|
"events": "^3.3.0",
|
|
136
|
-
"glob": "^
|
|
136
|
+
"glob": "^9.3.0",
|
|
137
137
|
"html-webpack-plugin": "^5.5.0",
|
|
138
138
|
"husky": "^8.0.3",
|
|
139
139
|
"identity-obj-proxy": "^3.0.0",
|
|
@@ -196,11 +196,11 @@
|
|
|
196
196
|
}
|
|
197
197
|
},
|
|
198
198
|
"dependencies": {
|
|
199
|
-
"@babel/core": "^7.21.
|
|
199
|
+
"@babel/core": "^7.21.3",
|
|
200
200
|
"@babel/preset-typescript": "^7.21.0",
|
|
201
201
|
"@jetbrains/babel-preset-jetbrains": "^2.3.2",
|
|
202
202
|
"@jetbrains/icons": "^3.20.3",
|
|
203
|
-
"@jetbrains/logos": "^2.2.
|
|
203
|
+
"@jetbrains/logos": "^2.2.13",
|
|
204
204
|
"@jetbrains/postcss-require-hover": "^0.1.2",
|
|
205
205
|
"@types/combokeys": "^2.4.6",
|
|
206
206
|
"@types/deep-equal": "^1.0.1",
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
"sniffr": "^1.2.0",
|
|
254
254
|
"storybook-zeplin": "^1.7.3",
|
|
255
255
|
"style-inject": "^0.3.0",
|
|
256
|
-
"style-loader": "~3.3.
|
|
256
|
+
"style-loader": "~3.3.2",
|
|
257
257
|
"url-loader": "^4.1.1",
|
|
258
258
|
"util-deprecate": "^1.0.2"
|
|
259
259
|
},
|