File tree Expand file tree Collapse file tree 5 files changed +7
-0
lines changed Expand file tree Collapse file tree 5 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ const Combobox = ({
67
67
name : "field" ,
68
68
isReadOnly,
69
69
value,
70
+ displayLabel : false ,
70
71
onclick : function ( ) {
71
72
if ( ! isOpen ) updateArgs ( { isOpen : true } ) ;
72
73
} ,
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ export const DatePicker = ({
64
64
name : "field" ,
65
65
id : triggerId ,
66
66
value : selectedDay ? new Date ( selectedDay ) . toLocaleDateString ( lang ) : undefined ,
67
+ displayLabel : false ,
67
68
onclick : function ( ) {
68
69
if ( ! isOpen ) updateArgs ( { isOpen : true } ) ;
69
70
} ,
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ export default {
51
51
...passthroughs ,
52
52
multiline : true ,
53
53
name : "field" ,
54
+ displayLabel : false ,
54
55
} , context ) ,
55
56
] ,
56
57
} , {
@@ -61,6 +62,7 @@ export default {
61
62
...passthroughs ,
62
63
type : "email" ,
63
64
name : "email" ,
65
+ displayLabel : false ,
64
66
} , context ) ,
65
67
] ,
66
68
} , {
@@ -71,6 +73,7 @@ export default {
71
73
...passthroughs ,
72
74
placeholder : "Select a country" ,
73
75
name : "country" ,
76
+ displayLabel : false ,
74
77
} , context ) ,
75
78
] ,
76
79
} , {
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export const Template = ({
33
33
size,
34
34
value : "1" ,
35
35
customClasses : [ `${ rootClass } -textfield` ] ,
36
+ displayLabel : false ,
36
37
} , context ) }
37
38
< span class ="${ rootClass } -counter "> of 89 pages</ span >
38
39
${ ActionButton ( {
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ export const Template = ({
70
70
id : id ? `${ id } -input` : undefined ,
71
71
customClasses : [ `${ rootClass } -textfield` ] ,
72
72
customInputClasses : [ `${ rootClass } -input` ] ,
73
+ displayLabel : false ,
73
74
} , context ) }
74
75
${ when ( ! hideStepper , ( ) => html `
75
76
< span class ="${ rootClass } -buttons ">
You can’t perform that action at this time.
0 commit comments