We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 432499b commit 4c38da6Copy full SHA for 4c38da6
script/form/DateTimePage.ts
@@ -94,7 +94,12 @@ export class DateTimePage extends Page {
94
timefield({
95
name: "time",
96
label: "Time",
97
- value: "22:15"
+ value: "22:15",
98
+ listeners: {
99
+ change:(field, newValue, oldValue) => {
100
+ console.log("timefield change", newValue, oldValue)
101
+ }
102
103
}),
104
105
comp(), //for breaking to next line
tsconfig.json
@@ -3,8 +3,8 @@
3
"strict" : true,
4
"target": "es2020",
5
"lib": ["es2020", "dom"],
6
- "moduleResolution": "nodenext",
7
- "module": "nodenext",
+ "moduleResolution": "bundler",
+ "module": "preserve",
8
"esModuleInterop": true,
9
"forceConsistentCasingInFileNames": true,
10
"isolatedModules": true,
0 commit comments