File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
packages/compat/src/components/Table Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -175,18 +175,30 @@ interface TablePropTypes
175175 * **Note:** The event will be fired if `growing` is set to `Button` or `Scroll`.
176176 *
177177 * **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
178+ *
179+ * | cancelable | bubbles |
180+ * | :--------: | :-----: |
181+ * | ❌|✅|
178182 */
179183 onLoadMore ?: ( event : Ui5CustomEvent < TableDomRef > ) => void ;
180184
181185 /**
182186 * Fired when `TableColumn` is shown as a pop-in instead of hiding it.
183187 *
184188 * **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
189+ *
190+ * | cancelable | bubbles |
191+ * | :--------: | :-----: |
192+ * | ❌|✅|
185193 */
186194 onPopinChange ?: ( event : Ui5CustomEvent < TableDomRef , TablePopinChangeEventDetail > ) => void ;
187195
188196 /**
189197 * Fired when a row in `Active` mode is clicked or `Enter` key is pressed.
198+ *
199+ * | cancelable | bubbles |
200+ * | :--------: | :-----: |
201+ * | ❌|✅|
190202 */
191203 onRowClick ?: ( event : Ui5CustomEvent < TableDomRef , TableRowClickEventDetail > ) => void ;
192204
@@ -195,6 +207,10 @@ interface TablePropTypes
195207 * in `SingleSelect` and `MultiSelect` modes.
196208 *
197209 * **Note:** Available since [v2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of **@ui5/webcomponents-compat**.
210+ *
211+ * | cancelable | bubbles |
212+ * | :--------: | :-----: |
213+ * | ❌|✅|
198214 */
199215 onSelectionChange ?: ( event : Ui5CustomEvent < TableDomRef , TableSelectionChangeEventDetail > ) => void ;
200216}
You can’t perform that action at this time.
0 commit comments