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 @@ -82,6 +82,42 @@ const metadata = {
82
82
type : Boolean ,
83
83
} ,
84
84
85
+ /**
86
+ * Defines the accessibility name for the <code>startColumn</code> region.
87
+ *
88
+ * @type {string }
89
+ * @defaultvalue ""
90
+ * @public
91
+ * @since 1.0.0-rc.11
92
+ */
93
+ startColumnAccessibleName : {
94
+ type : String ,
95
+ } ,
96
+
97
+ /**
98
+ * Defines the accessibility name for the <code>midColumn</code> region.
99
+ *
100
+ * @type {string }
101
+ * @defaultvalue ""
102
+ * @public
103
+ * @since 1.0.0-rc.11
104
+ */
105
+ midColumnAccessibleName : {
106
+ type : String ,
107
+ } ,
108
+
109
+ /**
110
+ * Defines the accessibility name for the <code>endColumn</code> region.
111
+ *
112
+ * @type {string }
113
+ * @defaultvalue ""
114
+ * @public
115
+ * @since 1.0.0-rc.11
116
+ */
117
+ endColumnAccessibleName : {
118
+ type : String ,
119
+ } ,
120
+
85
121
/**
86
122
* Defines the component width in px.
87
123
*
@@ -620,15 +656,15 @@ class FlexibleColumnLayout extends UI5Element {
620
656
}
621
657
622
658
get accStartColumnText ( ) {
623
- return this . i18nBundle . getText ( FCL_START_COLUMN_TXT ) ;
659
+ return this . startColumnAccessibleName || this . i18nBundle . getText ( FCL_START_COLUMN_TXT ) ;
624
660
}
625
661
626
662
get accMiddleColumnText ( ) {
627
- return this . i18nBundle . getText ( FCL_MIDDLE_COLUMN_TXT ) ;
663
+ return this . midColumnAccessibleName || this . i18nBundle . getText ( FCL_MIDDLE_COLUMN_TXT ) ;
628
664
}
629
665
630
666
get accEndColumnText ( ) {
631
- return this . i18nBundle . getText ( FCL_END_COLUMN_TXT ) ;
667
+ return this . endColumnAccessibleName || this . i18nBundle . getText ( FCL_END_COLUMN_TXT ) ;
632
668
}
633
669
634
670
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