File tree 2 files changed +45
-4
lines changed
2 files changed +45
-4
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,42 @@ const metadata = {
78
78
type : Boolean ,
79
79
} ,
80
80
81
+ /**
82
+ * Defines the accessibility name for the <code>startColumn</code> region.
83
+ *
84
+ * @type {string }
85
+ * @defaultvalue ""
86
+ * @public
87
+ * @since 1.0.0-rc.11
88
+ */
89
+ startColumnAccessibleName : {
90
+ type : String ,
91
+ } ,
92
+
93
+ /**
94
+ * Defines the accessibility name for the <code>midColumn</code> region.
95
+ *
96
+ * @type {string }
97
+ * @defaultvalue ""
98
+ * @public
99
+ * @since 1.0.0-rc.11
100
+ */
101
+ midColumnAccessibleName : {
102
+ type : String ,
103
+ } ,
104
+
105
+ /**
106
+ * Defines the accessibility name for the <code>endColumn</code> region.
107
+ *
108
+ * @type {string }
109
+ * @defaultvalue ""
110
+ * @public
111
+ * @since 1.0.0-rc.11
112
+ */
113
+ endColumnAccessibleName : {
114
+ type : String ,
115
+ } ,
116
+
81
117
/**
82
118
* Defines the component width in px.
83
119
*
@@ -616,15 +652,15 @@ class FlexibleColumnLayout extends UI5Element {
616
652
}
617
653
618
654
get accStartColumnText ( ) {
619
- return this . i18nBundle . getText ( FCL_START_COLUMN_TXT ) ;
655
+ return this . startColumnAccessibleName || this . i18nBundle . getText ( FCL_START_COLUMN_TXT ) ;
620
656
}
621
657
622
658
get accMiddleColumnText ( ) {
623
- return this . i18nBundle . getText ( FCL_MIDDLE_COLUMN_TXT ) ;
659
+ return this . midColumnAccessibleName || this . i18nBundle . getText ( FCL_MIDDLE_COLUMN_TXT ) ;
624
660
}
625
661
626
662
get accEndColumnText ( ) {
627
- return this . i18nBundle . getText ( FCL_END_COLUMN_TXT ) ;
663
+ return this . endColumnAccessibleName || this . i18nBundle . getText ( FCL_END_COLUMN_TXT ) ;
628
664
}
629
665
630
666
get _effectiveLayoutsByMedia ( ) {
Original file line number Diff line number Diff line change 177
177
</ ui5-shellbar >
178
178
179
179
<!--- FLEXIBLE COLUMN LAYOUT -->
180
- < ui5-flexible-column-layout id ="fcl ">
180
+ < ui5-flexible-column-layout
181
+ id ="fcl "
182
+ start-column-accessible-name ="Companies list "
183
+ mid-column-accessible-name ="Products List "
184
+ end-column-accessible-name ="Product Details "
185
+ >
181
186
< div class ="column " id ="startColumn " slot ="startColumn ">
182
187
< ui5-busyindicator id ="startBusy ">
183
188
< div class ="ui5-message-page ">
You can’t perform that action at this time.
0 commit comments