@fluid-topics/ft-tabs 2.0.14 → 2.0.16
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/build/ft-base-tabs.js +1 -2
- package/build/ft-tab.js +1 -2
- package/build/ft-tabs.js +1 -2
- package/build/ft-tabs.light.js +84 -84
- package/build/ft-tabs.min.js +137 -137
- package/build/ftds-tabs.js +1 -2
- package/package.json +7 -7
package/build/ft-base-tabs.js
CHANGED
|
@@ -26,7 +26,7 @@ export class IndexChangeEvent extends CustomEvent {
|
|
|
26
26
|
super("index-change", { detail: index });
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
|
-
class FtBaseTabs extends FtLitElement {
|
|
29
|
+
export class FtBaseTabs extends FtLitElement {
|
|
30
30
|
constructor() {
|
|
31
31
|
super(...arguments);
|
|
32
32
|
this.alignTabs = FtTabsAlignment.justify;
|
|
@@ -189,4 +189,3 @@ __decorate([
|
|
|
189
189
|
__decorate([
|
|
190
190
|
numberProperty({ reflect: true })
|
|
191
191
|
], FtBaseTabs.prototype, "activeIndex", void 0);
|
|
192
|
-
export { FtBaseTabs };
|
package/build/ft-tab.js
CHANGED
|
@@ -7,7 +7,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
7
7
|
import { FtLitElement, randomId } from "@fluid-topics/ft-wc-utils";
|
|
8
8
|
import { html, unsafeCSS } from "lit";
|
|
9
9
|
import { property } from "lit/decorators.js";
|
|
10
|
-
class FtTab extends FtLitElement {
|
|
10
|
+
export class FtTab extends FtLitElement {
|
|
11
11
|
constructor() {
|
|
12
12
|
super(...arguments);
|
|
13
13
|
this.label = "";
|
|
@@ -66,4 +66,3 @@ __decorate([
|
|
|
66
66
|
__decorate([
|
|
67
67
|
property({ reflect: true, attribute: "aria-labelledby" })
|
|
68
68
|
], FtTab.prototype, "ariaLabelledBy", void 0);
|
|
69
|
-
export { FtTab };
|
package/build/ft-tabs.js
CHANGED
|
@@ -10,7 +10,7 @@ import { styles } from "./ft-tabs.styles";
|
|
|
10
10
|
import { property } from "lit/decorators.js";
|
|
11
11
|
import { html } from "lit";
|
|
12
12
|
import { FtTypography, FtTypographyVariants } from "@fluid-topics/ft-typography";
|
|
13
|
-
class FtTabs extends FtBaseTabs {
|
|
13
|
+
export class FtTabs extends FtBaseTabs {
|
|
14
14
|
constructor() {
|
|
15
15
|
super(...arguments);
|
|
16
16
|
this.dense = false;
|
|
@@ -103,4 +103,3 @@ __decorate([
|
|
|
103
103
|
__decorate([
|
|
104
104
|
property({ type: Boolean })
|
|
105
105
|
], FtTabs.prototype, "contentBefore", void 0);
|
|
106
|
-
export { FtTabs };
|