@vaadin/vaadin-tabs 22.0.0-beta1 → 22.0.1

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.
Files changed (2) hide show
  1. package/README.md +7 -58
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,63 +1,11 @@
1
- # <vaadin-tabs>
1
+ # @vaadin/vaadin-tabs
2
2
 
3
- [Live Demo ↗](https://vaadin.com/components/vaadin-tabs/html-examples)
4
- |
5
- [API documentation ↗](https://vaadin.com/components/vaadin-tabs/html-api)
3
+ > ⚠️  Starting from Vaadin 22, this package is deprecated.
4
+ > Please use [`@vaadin/tabs`](https://www.npmjs.com/package/@vaadin/tabs) instead.
6
5
 
7
- [<vaadin-tabs>](https://vaadin.com/components/vaadin-tabs) is a Web Component providing item navigation part of the [Vaadin components](https://vaadin.com/components). It is designed for menu and tab components.
6
+ A web component for organizing and grouping content into sections.
8
7
 
9
- [![npm version](https://badgen.net/npm/v/@vaadin/vaadin-tabs)](https://www.npmjs.com/package/@vaadin/vaadin-tabs)
10
- [![Published on Vaadin Directory](https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0.svg)](https://vaadin.com/directory/component/vaadinvaadin-tabs)
11
- [![Discord](https://img.shields.io/discord/732335336448852018?label=discord)](https://discord.gg/PHmkCKC)
12
-
13
- ```html
14
- <vaadin-tabs selected="3">
15
- <vaadin-tab>Page 1</vaadin-tab>
16
- <vaadin-tab>Page 2</vaadin-tab>
17
- <vaadin-tab>Page 3</vaadin-tab>
18
- <vaadin-tab>Page 4</vaadin-tab>
19
- </vaadin-tabs>
20
- ```
21
-
22
- [<img src="https://raw.githubusercontent.com/vaadin/vaadin-tabs/master/screenshot.png" width="355" alt="Screenshot of vaadin-tabs, using the default Lumo theme">](https://vaadin.com/components/vaadin-tabs)
23
-
24
- ## Installation
25
-
26
- Install `vaadin-tabs`:
27
-
28
- ```sh
29
- npm i @vaadin/vaadin-tabs --save
30
- ```
31
-
32
- Once installed, import it in your application:
33
-
34
- ```js
35
- import '@vaadin/vaadin-tabs/vaadin-tabs.js';
36
- ```
37
-
38
- ## Getting started
39
-
40
- Vaadin components use the Lumo theme by default.
41
-
42
- To use the Material theme, import the correspondent file from the `theme/material` folder.
43
-
44
- ## Entry points
45
-
46
- - The components with the Lumo theme:
47
-
48
- `theme/lumo/vaadin-tab.js`
49
- `theme/lumo/vaadin-tabs.js`
50
-
51
- - The components with the Material theme:
52
-
53
- `theme/material/vaadin-tab.js`
54
- `theme/material/vaadin-tabs.js`
55
-
56
- - Alias for `theme/lumo/vaadin-tab.js`
57
- `theme/lumo/vaadin-tabs.js`:
58
-
59
- `vaadin-tab.js`
60
- `vaadin-tabs.js`
8
+ [Documentation + Live Demo ↗](https://vaadin.com/docs/latest/ds/components/tabs)
61
9
 
62
10
  ## Contributing
63
11
 
@@ -67,4 +15,5 @@ Read the [contributing guide](https://vaadin.com/docs/latest/guide/contributing/
67
15
 
68
16
  Apache License 2.0
69
17
 
70
- Vaadin collects development time usage statistics to improve this product. For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.
18
+ Vaadin collects usage statistics at development time to improve this product..
19
+ For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/vaadin-tabs",
3
- "version": "22.0.0-beta1",
3
+ "version": "22.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,7 +32,7 @@
32
32
  "polymer"
33
33
  ],
34
34
  "dependencies": {
35
- "@vaadin/tabs": "22.0.0-beta1"
35
+ "@vaadin/tabs": "^22.0.1"
36
36
  },
37
- "gitHead": "4cf8a9d0504994200c610e44b3676114fef49c1e"
37
+ "gitHead": "2b0a2bff0369d6020f7cc33ad35506aa2d1f6f68"
38
38
  }