@fluid-topics/ft-button 2.1.23 → 2.2.0
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-button.d.ts +7 -6
- package/build/ft-button.js +43 -22
- package/build/ft-button.light.js +166 -168
- package/build/ft-button.min.js +188 -190
- package/build/ft-button.styles.js +2 -3
- package/package.json +9 -9
|
@@ -94,7 +94,6 @@ export const buttonStyles = css `
|
|
|
94
94
|
.ft-button.ft-button--dense {
|
|
95
95
|
padding: ${FtButtonDenseCssVariables.verticalPadding} ${FtButtonDenseCssVariables.horizontalPadding};
|
|
96
96
|
border-radius: ${FtButtonDenseCssVariables.borderRadius};
|
|
97
|
-
gap: ${FtButtonDenseCssVariables.iconPadding};
|
|
98
97
|
${setVariable(FtRippleCssVariables.borderRadius, FtButtonDenseCssVariables.borderRadius)};
|
|
99
98
|
}
|
|
100
99
|
|
|
@@ -140,8 +139,8 @@ export const buttonStyles = css `
|
|
|
140
139
|
margin: 0 ${FtButtonDenseCssVariables.iconPadding};
|
|
141
140
|
}
|
|
142
141
|
|
|
143
|
-
.ft-button--label
|
|
144
|
-
|
|
142
|
+
.ft-button--label.ft-button--label-no-text {
|
|
143
|
+
margin: 0;
|
|
145
144
|
}
|
|
146
145
|
|
|
147
146
|
[part="icon"] {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-button",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "A generic Fluid Topics tag",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@fluid-topics/ft-icon": "2.
|
|
23
|
-
"@fluid-topics/ft-loader": "2.
|
|
24
|
-
"@fluid-topics/ft-ripple": "2.
|
|
25
|
-
"@fluid-topics/ft-tooltip": "2.
|
|
26
|
-
"@fluid-topics/ft-typography": "2.
|
|
27
|
-
"@fluid-topics/ft-wc-utils": "2.
|
|
28
|
-
"lit": "3.
|
|
22
|
+
"@fluid-topics/ft-icon": "2.2.0",
|
|
23
|
+
"@fluid-topics/ft-loader": "2.2.0",
|
|
24
|
+
"@fluid-topics/ft-ripple": "2.2.0",
|
|
25
|
+
"@fluid-topics/ft-tooltip": "2.2.0",
|
|
26
|
+
"@fluid-topics/ft-typography": "2.2.0",
|
|
27
|
+
"@fluid-topics/ft-wc-utils": "2.2.0",
|
|
28
|
+
"lit": "3.3.3"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "524448c19965dfe37c04bfb9a6d0e7d084fa12ce"
|
|
31
31
|
}
|