@jetbrains/ring-ui 5.0.104 → 5.0.106
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/editable-heading/editable-heading.js +10 -4
- package/components/http/http.d.ts +10 -0
- package/components/http/http.js +14 -0
- package/components/input/input.d.ts +7 -0
- package/components/input/input.js +7 -3
- package/components/user-card/card.d.ts +3 -3
- package/components/user-card/card.js +5 -5
- package/components/user-card/user-card.css +10 -1
- package/dist/_helpers/card.js +7 -6
- package/dist/editable-heading/editable-heading.js +10 -4
- package/dist/http/http.d.ts +10 -0
- package/dist/http/http.js +16 -2
- package/dist/input/input.d.ts +7 -0
- package/dist/input/input.js +7 -2
- package/dist/style.css +1 -1
- package/dist/user-card/card.d.ts +3 -3
- package/package.json +7 -7
package/dist/user-card/card.d.ts
CHANGED
|
@@ -47,9 +47,9 @@ export default class UserCard extends PureComponent<UserCardProps> {
|
|
|
47
47
|
banned: PropTypes.Validator<string>;
|
|
48
48
|
online: PropTypes.Validator<string>;
|
|
49
49
|
offline: PropTypes.Validator<string>;
|
|
50
|
-
copyToClipboard: PropTypes.
|
|
51
|
-
copiedToClipboard: PropTypes.
|
|
52
|
-
copingToClipboardError: PropTypes.
|
|
50
|
+
copyToClipboard: PropTypes.Requireable<string>;
|
|
51
|
+
copiedToClipboard: PropTypes.Requireable<string>;
|
|
52
|
+
copingToClipboardError: PropTypes.Requireable<string>;
|
|
53
53
|
unverified: PropTypes.Requireable<string>;
|
|
54
54
|
}>>;
|
|
55
55
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetbrains/ring-ui",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.106",
|
|
4
4
|
"description": "JetBrains UI library",
|
|
5
5
|
"author": "JetBrains",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -108,15 +108,15 @@
|
|
|
108
108
|
"@types/react-dom": "^18.0.10",
|
|
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.50.0",
|
|
112
|
+
"@typescript-eslint/parser": "^5.50.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.30001450",
|
|
120
120
|
"chai": "^4.3.7",
|
|
121
121
|
"chai-as-promised": "^7.1.1",
|
|
122
122
|
"chai-dom": "^1.10.0",
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
"react-test-renderer": "^18.2.0",
|
|
159
159
|
"regenerator-runtime": "^0.13.11",
|
|
160
160
|
"rimraf": "^4.1.2",
|
|
161
|
-
"rollup": "^3.12.
|
|
161
|
+
"rollup": "^3.12.1",
|
|
162
162
|
"rollup-plugin-clear": "^2.0.7",
|
|
163
163
|
"rollup-plugin-styles": "^4.0.0",
|
|
164
164
|
"sinon": "^15.0.1",
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
"svg-inline-loader": "^0.8.2",
|
|
170
170
|
"teamcity-service-messages": "^0.1.14",
|
|
171
171
|
"terser-webpack-plugin": "^5.3.6",
|
|
172
|
-
"typescript": "~4.9.
|
|
172
|
+
"typescript": "~4.9.5",
|
|
173
173
|
"wallaby-webpack": "^3.9.16",
|
|
174
174
|
"webpack": "^5.75.0",
|
|
175
175
|
"webpack-cli": "^5.0.1",
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
"@ungap/url-search-params": "^0.2.2",
|
|
213
213
|
"babel-loader": "9.1.2",
|
|
214
214
|
"babel-plugin-transform-define": "^2.1.0",
|
|
215
|
-
"browserslist": "^4.21.
|
|
215
|
+
"browserslist": "^4.21.5",
|
|
216
216
|
"change-case": "^4.1.1",
|
|
217
217
|
"classnames": "^2.3.2",
|
|
218
218
|
"combokeys": "^3.0.1",
|