Add press to numeric_content (#1313)
Some checks failed
build_downport / build_downport (push) Has been cancelled

This commit is contained in:
Francisco Milán 2024-08-15 11:24:47 -06:00 committed by GitHub
parent 6745789169
commit 0fe81ae01c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -321,6 +321,7 @@ CLASS z2ui5_cl_xml_view DEFINITION
!visible TYPE clike OPTIONAL !visible TYPE clike OPTIONAL
!width TYPE clike OPTIONAL !width TYPE clike OPTIONAL
!class TYPE clike OPTIONAL !class TYPE clike OPTIONAL
press TYPE clike OPTIONAL
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view. RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
METHODS link_tile_content METHODS link_tile_content
@ -4186,7 +4187,7 @@ ENDCLASS.
CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION. CLASS z2ui5_cl_xml_view IMPLEMENTATION.
METHOD actions. METHOD actions.
@ -7129,7 +7130,8 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
( n = `animateTextChange` v = z2ui5_cl_util=>boolean_abap_2_json( animatetextchange ) ) ( n = `animateTextChange` v = z2ui5_cl_util=>boolean_abap_2_json( animatetextchange ) )
( n = `adaptiveFontSize` v = z2ui5_cl_util=>boolean_abap_2_json( adaptivefontsize ) ) ( n = `adaptiveFontSize` v = z2ui5_cl_util=>boolean_abap_2_json( adaptivefontsize ) )
( n = `withMargin` v = z2ui5_cl_util=>boolean_abap_2_json( withmargin ) ) ( n = `withMargin` v = z2ui5_cl_util=>boolean_abap_2_json( withmargin ) )
( n = `class` v = class ) ) ). ( n = `class` v = class )
( n = `press` v = press ) ) ).
ENDMETHOD. ENDMETHOD.