@fluid-topics/ft-text-field 1.3.53 → 1.3.55
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-field.d.ts +1 -0
- package/build/ft-text-field.js +29 -12
- package/build/ft-text-field.light.js +96 -94
- package/build/ft-text-field.min.js +89 -87
- package/build/index.d.ts +1 -0
- package/build/index.js +1 -0
- package/build/models.d.ts +9 -0
- package/build/models.js +15 -1
- package/package.json +7 -7
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
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 "./models";
|
|
4
5
|
export * from "./ft-text-field.styles";
|
|
5
6
|
export * from "./ft-text-field.properties";
|
|
6
7
|
export * from "./ft-text-field";
|
package/build/models.d.ts
CHANGED
|
@@ -5,3 +5,12 @@ export interface FtTextFieldSuggestionDefinition {
|
|
|
5
5
|
icon?: FtIcons;
|
|
6
6
|
clickHandler?: (e: Event) => void;
|
|
7
7
|
}
|
|
8
|
+
export declare class FtTextFieldLiveChangeEvent extends CustomEvent<string> {
|
|
9
|
+
constructor(value: string);
|
|
10
|
+
}
|
|
11
|
+
export declare class FtTextFieldChangeEvent extends CustomEvent<string> {
|
|
12
|
+
constructor(value: string);
|
|
13
|
+
}
|
|
14
|
+
export declare class FtTextFieldInvalidEvent extends CustomEvent<string> {
|
|
15
|
+
constructor(value: string);
|
|
16
|
+
}
|
package/build/models.js
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export class FtTextFieldLiveChangeEvent extends CustomEvent {
|
|
2
|
+
constructor(value) {
|
|
3
|
+
super("live-change", { detail: value });
|
|
4
|
+
}
|
|
5
|
+
}
|
|
6
|
+
export class FtTextFieldChangeEvent extends CustomEvent {
|
|
7
|
+
constructor(value) {
|
|
8
|
+
super("change", { detail: value });
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
export class FtTextFieldInvalidEvent extends CustomEvent {
|
|
12
|
+
constructor(value) {
|
|
13
|
+
super("invalid", { detail: value });
|
|
14
|
+
}
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-text-field",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.55",
|
|
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.3.
|
|
23
|
-
"@fluid-topics/ft-input-label": "1.3.
|
|
24
|
-
"@fluid-topics/ft-ripple": "1.3.
|
|
25
|
-
"@fluid-topics/ft-typography": "1.3.
|
|
26
|
-
"@fluid-topics/ft-wc-utils": "1.3.
|
|
22
|
+
"@fluid-topics/ft-icon": "1.3.55",
|
|
23
|
+
"@fluid-topics/ft-input-label": "1.3.55",
|
|
24
|
+
"@fluid-topics/ft-ripple": "1.3.55",
|
|
25
|
+
"@fluid-topics/ft-typography": "1.3.55",
|
|
26
|
+
"@fluid-topics/ft-wc-utils": "1.3.55",
|
|
27
27
|
"lit": "3.1.0"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "4b1a60c10c8b8d68e0b9075038c0508a94ff7d38"
|
|
30
30
|
}
|