@fluid-topics/ft-text-field 1.1.40 → 1.1.42
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/README.md +1 -1
- package/build/ft-text-field-suggestion.js +1 -1
- package/build/ft-text-field.js +1 -1
- package/build/ft-text-field.min.js +263 -229
- package/build/{ft-text-field.css.js → ft-text-field.styles.js} +4 -4
- package/build/index.d.ts +2 -2
- package/build/index.js +2 -2
- package/package.json +7 -7
- /package/build/{ft-text-field-suggestion.css.d.ts → ft-text-field-suggestion.styles.d.ts} +0 -0
- /package/build/{ft-text-field-suggestion.css.js → ft-text-field-suggestion.styles.js} +0 -0
- /package/build/{ft-text-field.css.d.ts → ft-text-field.styles.d.ts} +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { css } from "lit";
|
|
2
2
|
import { designSystemVariables, FtCssVariableFactory, setVariable } from "@fluid-topics/ft-wc-utils";
|
|
3
|
-
import { FtTypographyBody1CssVariables } from "@fluid-topics/ft-typography/build/ft-typography.
|
|
4
|
-
import { FtInputLabelCssVariables } from "@fluid-topics/ft-input-label/build/ft-input-label.
|
|
5
|
-
import { FtRippleCssVariables } from "@fluid-topics/ft-ripple/build/ft-ripple.
|
|
6
|
-
import { FtIconCssVariables } from "@fluid-topics/ft-icon/build/ft-icon.
|
|
3
|
+
import { FtTypographyBody1CssVariables } from "@fluid-topics/ft-typography/build/ft-typography.styles";
|
|
4
|
+
import { FtInputLabelCssVariables } from "@fluid-topics/ft-input-label/build/ft-input-label.styles";
|
|
5
|
+
import { FtRippleCssVariables } from "@fluid-topics/ft-ripple/build/ft-ripple.styles";
|
|
6
|
+
import { FtIconCssVariables } from "@fluid-topics/ft-icon/build/ft-icon.styles";
|
|
7
7
|
export const FtTextFieldCssVariables = {
|
|
8
8
|
fontSize: FtCssVariableFactory.create("--ft-text-field-font-size", "", "SIZE", "14px"),
|
|
9
9
|
labelSize: FtCssVariableFactory.create("--ft-text-field-label-size", "", "SIZE", "11px"),
|
package/build/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./ft-text-field.
|
|
1
|
+
export * from "./ft-text-field.styles";
|
|
2
2
|
export * from "./ft-text-field.properties";
|
|
3
3
|
export * from "./ft-text-field";
|
|
4
|
-
export * from "./ft-text-field-suggestion.
|
|
4
|
+
export * from "./ft-text-field-suggestion.styles";
|
|
5
5
|
export * from "./ft-text-field-suggestion.properties";
|
|
6
6
|
export * from "./ft-text-field-suggestion";
|
package/build/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { customElement } from "@fluid-topics/ft-wc-utils";
|
|
2
2
|
import { FtTextField } from "./ft-text-field";
|
|
3
3
|
import { FtTextFieldSuggestion } from "./ft-text-field-suggestion";
|
|
4
|
-
export * from "./ft-text-field.
|
|
4
|
+
export * from "./ft-text-field.styles";
|
|
5
5
|
export * from "./ft-text-field.properties";
|
|
6
6
|
export * from "./ft-text-field";
|
|
7
|
-
export * from "./ft-text-field-suggestion.
|
|
7
|
+
export * from "./ft-text-field-suggestion.styles";
|
|
8
8
|
export * from "./ft-text-field-suggestion.properties";
|
|
9
9
|
export * from "./ft-text-field-suggestion";
|
|
10
10
|
customElement("ft-text-field")(FtTextField);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-text-field",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.42",
|
|
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.1.
|
|
23
|
-
"@fluid-topics/ft-input-label": "1.1.
|
|
24
|
-
"@fluid-topics/ft-ripple": "1.1.
|
|
25
|
-
"@fluid-topics/ft-typography": "1.1.
|
|
26
|
-
"@fluid-topics/ft-wc-utils": "1.1.
|
|
22
|
+
"@fluid-topics/ft-icon": "1.1.42",
|
|
23
|
+
"@fluid-topics/ft-input-label": "1.1.42",
|
|
24
|
+
"@fluid-topics/ft-ripple": "1.1.42",
|
|
25
|
+
"@fluid-topics/ft-typography": "1.1.42",
|
|
26
|
+
"@fluid-topics/ft-wc-utils": "1.1.42",
|
|
27
27
|
"lit": "3.1.0"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "057e1248874a9a814a34e0bf75329f963744a5ff"
|
|
30
30
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|