@fluid-topics/ft-text-input 1.3.48 → 1.3.50
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-text-input.light.js +166 -157
- package/build/ft-text-input.min.js +149 -140
- package/build/ftds-text-input.styles.js +8 -1
- package/package.json +10 -10
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { css } from "lit";
|
|
2
|
-
import { typographyBody2Medium } from "@fluid-topics/design-system-variables";
|
|
2
|
+
import { textInput, typographyBody2Medium } from "@fluid-topics/design-system-variables";
|
|
3
3
|
export { textInput as FtdsTextInputCssVariables } from "@fluid-topics/design-system-variables";
|
|
4
4
|
//language=css
|
|
5
5
|
export const styles = css `
|
|
@@ -10,6 +10,13 @@ export const styles = css `
|
|
|
10
10
|
|
|
11
11
|
input {
|
|
12
12
|
background-color: transparent; /* so it doesn't grey out when disabled */
|
|
13
|
+
|
|
14
|
+
&:-webkit-autofill,
|
|
15
|
+
&:-webkit-autofill:hover,
|
|
16
|
+
&:-webkit-autofill:focus {
|
|
17
|
+
-webkit-text-fill-color: ${textInput.contentValueColor};
|
|
18
|
+
transition: background-color 50000000s ease-in-out 100000s;
|
|
19
|
+
}
|
|
13
20
|
}
|
|
14
21
|
|
|
15
22
|
input[type="number"]::-webkit-outer-spin-button,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-text-input",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.50",
|
|
4
4
|
"description": "Text Input",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,17 +19,17 @@
|
|
|
19
19
|
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@fluid-topics/ft-base-input": "1.3.
|
|
23
|
-
"@fluid-topics/ft-i18n": "1.3.
|
|
24
|
-
"@fluid-topics/ft-icon": "1.3.
|
|
25
|
-
"@fluid-topics/ft-input-helper-text": "1.3.
|
|
26
|
-
"@fluid-topics/ft-input-label": "1.3.
|
|
27
|
-
"@fluid-topics/ft-tooltip": "1.3.
|
|
28
|
-
"@fluid-topics/ft-wc-utils": "1.3.
|
|
22
|
+
"@fluid-topics/ft-base-input": "1.3.50",
|
|
23
|
+
"@fluid-topics/ft-i18n": "1.3.50",
|
|
24
|
+
"@fluid-topics/ft-icon": "1.3.50",
|
|
25
|
+
"@fluid-topics/ft-input-helper-text": "1.3.50",
|
|
26
|
+
"@fluid-topics/ft-input-label": "1.3.50",
|
|
27
|
+
"@fluid-topics/ft-tooltip": "1.3.50",
|
|
28
|
+
"@fluid-topics/ft-wc-utils": "1.3.50",
|
|
29
29
|
"lit": "3.1.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@fluid-topics/ft-wc-test-utils": "1.3.
|
|
32
|
+
"@fluid-topics/ft-wc-test-utils": "1.3.50"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "8624905b03e700cf33965e24ed75f491d5d39141"
|
|
35
35
|
}
|