File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
declare module '*.module.css' {
2
2
const classes : { [ key : string ] : string } ;
3
3
export default classes ;
4
+ }
5
+
6
+ declare global {
7
+ interface Window {
8
+ google ?: typeof google ;
9
+ }
4
10
}
Original file line number Diff line number Diff line change @@ -38,28 +38,34 @@ export type InputPropertiesTypes =
38
38
export type ButtonsProperties = {
39
39
inputType : typeof Buttons ;
40
40
options : {
41
- [ key : string ] : string ;
41
+ key : string | undefined ;
42
+ label : string ;
42
43
}
44
+ defaultValue ?: string ;
43
45
}
44
46
45
47
46
48
export type PhoneProperties = {
47
49
inputType : typeof Phone ;
50
+ defaultValue ?: number ;
48
51
}
49
52
50
53
export type EmailProperties = {
51
54
inputType : typeof Email ;
55
+ defaultValue ?: string ;
52
56
}
53
57
54
58
export type MultilineProperties = {
55
59
inputType : typeof Multilinetext ;
60
+ defaultValue ?: string ;
56
61
}
57
62
58
63
export type RadioProperties = {
59
64
inputType : typeof Radio ;
60
65
options : {
61
66
[ key : string ] : string ;
62
67
}
68
+ defaultValue ?: boolean ;
63
69
direction ?: "horizontal" | "vertical" ;
64
70
}
65
71
@@ -68,8 +74,10 @@ export type SliderProperties = {
68
74
min : number ;
69
75
max : number ;
70
76
step : number ;
77
+ defaultValue ?: number ;
71
78
}
72
79
73
80
export type TextProperties = {
74
81
inputType : typeof Text ;
82
+ defaultValue ?: string ;
75
83
}
You can’t perform that action at this time.
0 commit comments