@blockquote-web-components/blockquote-tabs 1.0.2 → 1.0.4

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
@@ -4,10 +4,10 @@
4
4
 
5
5
  ## Properties
6
6
 
7
- | Property | Attribute | Type | Default | Description |
8
- |------------------------|------------|-----------|------------------------------------------|-------------------|
9
- | `globalRootAttributes` | | `object` | {"role":"tab","slot":"tab","tabindex":0} | |
10
- | `selected` | `selected` | `boolean` | false | The tab selected. |
7
+ | Property | Attribute | Type | Default | Description |
8
+ |------------------------|------------|-----------|------------------------------------------|---------------------------------------|
9
+ | `globalRootAttributes` | | `object` | {"role":"tab","slot":"tab","tabindex":0} | |
10
+ | `selected` | `selected` | `boolean` | false | Whether or not the tab is `selected`. |
11
11
 
12
12
  ## Events
13
13
 
@@ -20,10 +20,10 @@
20
20
 
21
21
  ## Properties
22
22
 
23
- | Property | Attribute | Type | Default | Description |
24
- |------------------------|------------|-----------|--------------------------------------------------|-------------|
25
- | `globalRootAttributes` | | `object` | {"role":"tabpanel","slot":"tabpanel","tabindex":0} | |
26
- | `selected` | `selected` | `boolean` | false | The - |
23
+ | Property | Attribute | Type | Default | Description |
24
+ |------------------------|------------|-----------|--------------------------------------------------|--------------------------------------------|
25
+ | `globalRootAttributes` | | `object` | {"role":"tabpanel","slot":"tabpanel","tabindex":0} | |
26
+ | `selected` | `selected` | `boolean` | false | Whether or not the tabpanel is `selected`. |
27
27
 
28
28
 
29
29
  # blockquote-tabs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockquote-web-components/blockquote-tabs",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Webcomponent blockquote-tabs following open-wc recommendations",
5
5
  "keywords": [
6
6
  "lit",
@@ -157,19 +157,19 @@
157
157
  }
158
158
  },
159
159
  "dependencies": {
160
- "@blockquote-web-components/blockquote-mixin-slot-content": "^1.2.11",
160
+ "@blockquote-web-components/blockquote-mixin-slot-content": "^1.2.13",
161
161
  "@juggle/resize-observer": "^3.4.0",
162
162
  "@lit-labs/observers": "^1.1.0",
163
163
  "lit": "^2.3.1"
164
164
  },
165
165
  "devDependencies": {
166
- "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.4.2",
167
- "@blockquote-web-components/blockquote-base-embedded-webview": "^1.5.0",
166
+ "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.4.4",
167
+ "@blockquote-web-components/blockquote-base-embedded-webview": "^1.5.2",
168
168
  "@blockquote-web-components/blockquote-foundations-sass": "^1.0.0"
169
169
  },
170
170
  "publishConfig": {
171
171
  "access": "public"
172
172
  },
173
173
  "customElements": "custom-elements.json",
174
- "gitHead": "1e2c4a8e7117f9d24e0eb303f34b7d93ab461e54"
174
+ "gitHead": "f395648f8748ca2496345c5182b1b4dd8a60c662"
175
175
  }
@@ -10,7 +10,7 @@ export class BlockquoteTab extends BlockquoteMixinSlotContent(LitElement) {
10
10
  static get properties() {
11
11
  return {
12
12
  /**
13
- * The tab selected.
13
+ * Whether or not the tab is `selected`.
14
14
  * @type {boolean}
15
15
  */
16
16
  selected: {
@@ -9,7 +9,7 @@ export class BlockquoteTabPanel extends LitElement {
9
9
  static get properties() {
10
10
  return {
11
11
  /**
12
- * The -
12
+ * Whether or not the tabpanel is `selected`.
13
13
  * @type {boolean}
14
14
  */
15
15
  selected: {