@fluid-topics/ft-text-field 1.2.10 → 1.2.11
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.
|
@@ -12,7 +12,7 @@ export declare const FtTextFieldCssVariables: {
|
|
|
12
12
|
prefixColor: import("@fluid-topics/ft-wc-utils").FtCssVariable;
|
|
13
13
|
iconColor: import("@fluid-topics/ft-wc-utils").FtCssVariable;
|
|
14
14
|
floatingZIndex: import("@fluid-topics/ft-wc-utils").FtCssVariable;
|
|
15
|
-
|
|
15
|
+
backgroundColor: import("@fluid-topics/ft-wc-utils").FtCssVariable;
|
|
16
16
|
colorOutline: import("@fluid-topics/ft-wc-utils").FtCssVariable;
|
|
17
17
|
elevation02: import("@fluid-topics/ft-wc-utils").FtCssVariable;
|
|
18
18
|
suggestSize: import("@fluid-topics/ft-wc-utils").FtCssVariable;
|
|
@@ -18,7 +18,7 @@ export const FtTextFieldCssVariables = {
|
|
|
18
18
|
prefixColor: FtCssVariableFactory.extend("--ft-text-field-prefix-color", "", designSystemVariables.colorOnSurfaceMedium),
|
|
19
19
|
iconColor: FtCssVariableFactory.extend("--ft-text-field-icon-color", "", designSystemVariables.colorOnSurfaceMedium),
|
|
20
20
|
floatingZIndex: FtCssVariableFactory.create("--ft-text-field-floating-components-z-index", "", "NUMBER", "3"),
|
|
21
|
-
|
|
21
|
+
backgroundColor: FtCssVariableFactory.extend("--ft-text-field-background-color", "", designSystemVariables.colorSurface),
|
|
22
22
|
colorOutline: FtCssVariableFactory.external(designSystemVariables.colorOutline, "Design system"),
|
|
23
23
|
elevation02: FtCssVariableFactory.external(designSystemVariables.elevation02, "Design system"),
|
|
24
24
|
suggestSize: FtCssVariableFactory.create("--ft-text-field-suggest-size", "", "SIZE", "300px"),
|
|
@@ -41,6 +41,7 @@ export const styles = css `
|
|
|
41
41
|
${setVariable(FtInputLabelCssVariables.raisedFontSize, FtTextFieldCssVariables.labelSize)};
|
|
42
42
|
${setVariable(FtInputLabelCssVariables.verticalSpacing, FtTextFieldCssVariables.verticalSpacing)};
|
|
43
43
|
${setVariable(FtInputLabelCssVariables.horizontalSpacing, FtTextFieldCssVariables.horizontalSpacing)};
|
|
44
|
+
${setVariable(FtInputLabelCssVariables.backgroundColor, FtTextFieldCssVariables.backgroundColor)};
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
.ft-text-field--main-panel {
|
|
@@ -150,7 +151,7 @@ export const styles = css `
|
|
|
150
151
|
flex-direction: column;
|
|
151
152
|
position: absolute;
|
|
152
153
|
z-index: ${FtTextFieldCssVariables.floatingZIndex};
|
|
153
|
-
background: ${FtTextFieldCssVariables.
|
|
154
|
+
background: ${FtTextFieldCssVariables.backgroundColor};
|
|
154
155
|
border: 1px solid ${FtTextFieldCssVariables.colorOutline};
|
|
155
156
|
border-radius: 0 0 ${FtTextFieldCssVariables.borderRadiusS} ${FtTextFieldCssVariables.borderRadiusS};
|
|
156
157
|
box-shadow: ${FtTextFieldCssVariables.elevation02};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-text-field",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.11",
|
|
4
4
|
"description": "A fluidtopics text field",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,12 +19,12 @@
|
|
|
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": "1.2.
|
|
23
|
-
"@fluid-topics/ft-input-label": "1.2.
|
|
24
|
-
"@fluid-topics/ft-ripple": "1.2.
|
|
25
|
-
"@fluid-topics/ft-typography": "1.2.
|
|
26
|
-
"@fluid-topics/ft-wc-utils": "1.2.
|
|
22
|
+
"@fluid-topics/ft-icon": "1.2.11",
|
|
23
|
+
"@fluid-topics/ft-input-label": "1.2.11",
|
|
24
|
+
"@fluid-topics/ft-ripple": "1.2.11",
|
|
25
|
+
"@fluid-topics/ft-typography": "1.2.11",
|
|
26
|
+
"@fluid-topics/ft-wc-utils": "1.2.11",
|
|
27
27
|
"lit": "3.1.0"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "e064cf26299976a55c5adb3c602fed2dc076557b"
|
|
30
30
|
}
|