@jetbrains/ring-ui 4.1.2 → 4.1.3

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/README.md CHANGED
@@ -5,11 +5,15 @@
5
5
 
6
6
  This collection of UI components aims to provide all the necessary building blocks for web-based products built inside JetBrains, as well as third-party plugins developed for JetBrains' products.
7
7
 
8
+ ## Try now
9
+ * Try the [codesandbox](https://codesandbox.io/s/ring-ui-sandbox-wrigs), based on `create-react-app` tooling, to see and try the UI components
10
+ * Check out [list of examples](https://jetbrains.github.io/ring-ui/master/index.html) for each component
11
+
8
12
  ## Installation
9
13
 
10
14
  `npm install @jetbrains/ring-ui`
11
15
 
12
- ### Quick start (importing components as ES modules)
16
+ ### Quick start
13
17
 
14
18
  The easiest way is to import necessary components as ES modules:
15
19
  ```js
@@ -13,6 +13,7 @@ import TabLink from './tab-link';
13
13
  import CollapsibleTabs from './collapsible-tabs';
14
14
  import {CustomItem} from './custom-item';
15
15
 
16
+ export {CustomItem};
16
17
 
17
18
  class Tabs extends PureComponent {
18
19
  static propTypes = {
@@ -9,6 +9,7 @@ import { m as modules_02138f4a } from '../_helpers/tabs.js';
9
9
  import TabLink from './tab-link.js';
10
10
  import CollapsibleTabs from './collapsible-tabs.js';
11
11
  import { CustomItem } from './custom-item.js';
12
+ export { CustomItem } from './custom-item.js';
12
13
  import '../link/link.js';
13
14
  import 'focus-visible';
14
15
  import '../link/clickableLink.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetbrains/ring-ui",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "JetBrains UI library",
5
5
  "author": "JetBrains",
6
6
  "license": "Apache-2.0",
@@ -104,7 +104,7 @@
104
104
  "cheerio": "^0.22.0",
105
105
  "core-js": "^3.19.1",
106
106
  "enzyme": "^3.11.0",
107
- "eslint": "^8.2.0",
107
+ "eslint": "^8.3.0",
108
108
  "eslint-import-resolver-webpack": "^0.13.2",
109
109
  "eslint-plugin-angular": "^4.1.0",
110
110
  "eslint-plugin-bdd": "^2.1.1",
@@ -112,7 +112,7 @@
112
112
  "eslint-plugin-jsx-a11y": "^6.5.1",
113
113
  "eslint-plugin-react": "^7.27.1",
114
114
  "events": "^3.3.0",
115
- "glob": "^7.1.6",
115
+ "glob": "^7.2.0",
116
116
  "html-webpack-plugin": "^5.5.0",
117
117
  "husky": "^7.0.4",
118
118
  "identity-obj-proxy": "^3.0.0",
@@ -147,7 +147,7 @@
147
147
  "teamcity-service-messages": "^0.1.11",
148
148
  "terser-webpack-plugin": "^5.2.5",
149
149
  "wallaby-webpack": "^3.9.16",
150
- "webpack": "^5.64.1",
150
+ "webpack": "^5.64.2",
151
151
  "webpack-cli": "^4.9.1",
152
152
  "xmlappend": "^1.0.4",
153
153
  "yo": "^4.3.0"
@@ -156,7 +156,12 @@
156
156
  "core-js": ">=3.0.0",
157
157
  "react": ">=16.8.0",
158
158
  "react-dom": ">=16.8.0",
159
- "webpack": "^5.64.1"
159
+ "webpack": "^5.64.2"
160
+ },
161
+ "peerDependenciesMeta": {
162
+ "webpack": {
163
+ "optional": true
164
+ }
160
165
  },
161
166
  "dependencies": {
162
167
  "@babel/core": "^7.16.0",
@@ -216,5 +221,5 @@
216
221
  "node": ">=7.4",
217
222
  "npm": ">=6.0.0"
218
223
  },
219
- "gitHead": "db1f7fc0375b7f6843e49ca1007fcb0deff5c539"
224
+ "gitHead": "f7d26ba7ed53f2fec85b136faccfa7276d069445"
220
225
  }