@fluid-topics/ftds-tabs 2.1.6 → 2.1.7
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/ftds-tabs.light.js +255 -250
- package/build/ftds-tabs.min.js +248 -243
- package/build/ftds-tabs.styles.js +6 -1
- package/package.json +8 -8
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { css } from "lit";
|
|
2
2
|
import { tabs } from "@fluid-topics/design-system-variables";
|
|
3
|
-
import { setVariable } from "@fluid-topics/ft-wc-utils";
|
|
3
|
+
import { foundation, setVariable, } from "@fluid-topics/ft-wc-utils";
|
|
4
4
|
import { FtRippleCssVariables } from "@fluid-topics/ft-ripple/build/ft-ripple.styles";
|
|
5
|
+
import { FtdsIconCssVariables } from "@fluid-topics/ftds-icon";
|
|
5
6
|
export { tabs as FtdsTabsCssVariables } from "@fluid-topics/design-system-variables";
|
|
6
7
|
// language=CSS
|
|
7
8
|
export const designSystemStyles = css `
|
|
@@ -158,6 +159,10 @@ export const designSystemStyles = css `
|
|
|
158
159
|
display: none;
|
|
159
160
|
}
|
|
160
161
|
|
|
162
|
+
[role='tab'] .ftds-tabs--tab-icon {
|
|
163
|
+
${FtdsIconCssVariables.size.set(foundation.iconSize3)};
|
|
164
|
+
}
|
|
165
|
+
|
|
161
166
|
[role='tab']:not(.ftds-tabs--tab-with-icon) .ftds-tabs--tab-icon,
|
|
162
167
|
.ftds-tabs--label-only .ftds-tabs--tab-with-label .ftds-tabs--tab-icon {
|
|
163
168
|
display: none;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ftds-tabs",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.7",
|
|
4
4
|
"description": "The design system tabs component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@fluid-topics/ft-ripple": "2.1.
|
|
23
|
-
"@fluid-topics/ft-tooltip": "2.1.
|
|
24
|
-
"@fluid-topics/ft-wc-utils": "2.1.
|
|
25
|
-
"@fluid-topics/ftds-icon": "2.1.
|
|
26
|
-
"@fluid-topics/ftds-typography": "2.1.
|
|
22
|
+
"@fluid-topics/ft-ripple": "2.1.7",
|
|
23
|
+
"@fluid-topics/ft-tooltip": "2.1.7",
|
|
24
|
+
"@fluid-topics/ft-wc-utils": "2.1.7",
|
|
25
|
+
"@fluid-topics/ftds-icon": "2.1.7",
|
|
26
|
+
"@fluid-topics/ftds-typography": "2.1.7",
|
|
27
27
|
"lit": "3.1.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@fluid-topics/ft-wc-test-utils": "2.1.
|
|
30
|
+
"@fluid-topics/ft-wc-test-utils": "2.1.7"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "a37679b529fc9821ce025bdedbf909d9f51b4c48"
|
|
33
33
|
}
|