File tree 9 files changed +12
-12
lines changed
test/sap/ui/webcomponents/main/pages
9 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 31
31
allow-target-overlap =" {{ _popover.allowTargetOverlap }} "
32
32
placement-type =" {{ _popover.placementType }} "
33
33
no-header =" {{ _popover.noHeader }} "
34
- hide -arrow =" {{ _popover.hideArrow }} "
34
+ no -arrow =" {{ _popover.noArrow }} "
35
35
horizontal-align =" {{ _popover.horizontalAlign }} "
36
36
stay-open-on-scroll =" {{ _popover.stayOpenOnScroll }} "
37
37
@ui5-afterClose =" {{ _popover.afterClose }} "
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ class DatePicker extends UI5Element {
254
254
placementType : PopoverPlacementType . Bottom ,
255
255
horizontalAlign : PopoverHorizontalAlign . Left ,
256
256
noHeader : true ,
257
- hideArrow : true ,
257
+ noArrow : true ,
258
258
allowTargetOverlap : true ,
259
259
stayOpenOnScroll : true ,
260
260
afterClose : ( ) => {
Original file line number Diff line number Diff line change 31
31
<ui5-popover
32
32
placement-type =" Bottom"
33
33
no-header =" true"
34
- hide -arrow =" true"
34
+ no -arrow =" true"
35
35
horizontal-align =" Stretch"
36
36
initial-focus =" {{ _id }} -inner" >
37
37
<ui5-list separators =" Inner" >
Original file line number Diff line number Diff line change 37
37
class =" ui5-multi-combobox-selected-items--popover"
38
38
horizontal-align =" Stretch"
39
39
no-header
40
- ?hide -arrow ={{ editable }}
40
+ ?no -arrow ={{ editable }}
41
41
placement-type =" Bottom" >
42
42
<ui5-list separators =" None" mode =" {{ selectedItemsListMode }} "
43
43
@ui5-selectionChange ={{ _listSelectionChange }} >
50
50
</ui5-popover >
51
51
52
52
<ui5-popover class =" ui5-multi-combobox-all-items--popover"
53
+ no-arrow
53
54
no-header
54
- hide-arrow
55
55
horizontal-align =" Stretch"
56
56
initial-focus =" ui5-multi-combobox--input"
57
57
horizontal-align =" Left"
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ const metadata = {
81
81
* @defaultvalue false
82
82
* @public
83
83
*/
84
- hideArrow : {
84
+ noArrow : {
85
85
type : Boolean ,
86
86
} ,
87
87
@@ -417,7 +417,7 @@ class Popover extends Popup {
417
417
this . _width = width ;
418
418
this . _height = height ;
419
419
420
- const arrowOffset = this . hideArrow ? 0 : arrowSize ;
420
+ const arrowOffset = this . noArrow ? 0 : arrowSize ;
421
421
422
422
// calc popover positions
423
423
switch ( placementType ) {
@@ -618,7 +618,7 @@ class Popover extends Popup {
618
618
} ,
619
619
arrow : {
620
620
sapMPopoverArr : true ,
621
- sapMPopoverArrHidden : this . hideArrow ,
621
+ sapMPopoverArrHidden : this . noArrow ,
622
622
sapMPopoverArrLeft : placementType === PopoverPlacementType . Right ,
623
623
sapMPopoverArrRight : placementType === PopoverPlacementType . Left ,
624
624
sapMPopoverArrUp : placementType === PopoverPlacementType . Bottom ,
Original file line number Diff line number Diff line change 13
13
<ui5-popover
14
14
placement-type =" Bottom"
15
15
no-header =" true"
16
- hide -arrow =" true"
16
+ no -arrow =" true"
17
17
horizontal-align =" Stretch" >
18
18
<ui5-list separators =" None" >
19
19
<slot ></slot >
Original file line number Diff line number Diff line change 75
75
</div >
76
76
</div >
77
77
78
- <ui5-popover class =" sapWCShellBarOverflowPopover" placement-type =" Bottom" horizontal-align =" {{ popoverHorizontalAlign }} " no-header hide -arrow>
78
+ <ui5-popover class =" sapWCShellBarOverflowPopover" placement-type =" Bottom" horizontal-align =" {{ popoverHorizontalAlign }} " no-header no -arrow>
79
79
<ui5-list separators =" None" @ui5-itemPress =" {{ _actionList.itemPress }} " >
80
80
{{ #each _hiddenIcons }}
81
81
<ui5-li
Original file line number Diff line number Diff line change 72
72
<!-- overflow menu -->
73
73
<ui5-popover
74
74
id =" {{ _id }} -overflowMenu"
75
- hide -arrow
75
+ no -arrow
76
76
no-header
77
77
placement-type =" Bottom"
78
78
horizontal-align =" Right" >
Original file line number Diff line number Diff line change 66
66
< content id ="popover "> </ content >
67
67
</ div >
68
68
69
- < ui5-popover placement-type ="Bottom " horizontal-align ="Stretch " hide -arrow no-header initial-focus ="input1 " class ="wcPopoverWithList ">
69
+ < ui5-popover placement-type ="Bottom " horizontal-align ="Stretch " no -arrow no-header initial-focus ="input1 " class ="wcPopoverWithList ">
70
70
< ui5-list id ="myList " inset separators ="Inner " mode ="MultiSelect " footer-text ="Copyright " no-data-text ="No data ">
71
71
<!-- Header -->
72
72
< div style ="display: flex; align-items: center; " slot ="header ">
You can’t perform that action at this time.
0 commit comments