Add class property to numeric_content (#1269)

* Add class property to numeric_content (1)

* Add class property to numeric_content (2)
This commit is contained in:
Francisco Milán 2024-07-13 02:45:22 -06:00 committed by GitHub
parent bbd8fc5b1e
commit 28948dfeb1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -319,6 +319,7 @@ CLASS z2ui5_cl_xml_view DEFINITION
valuecolor TYPE clike OPTIONAL
!visible TYPE clike OPTIONAL
!width TYPE clike OPTIONAL
!class TYPE clike OPTIONAL
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
METHODS link_tile_content
@ -7006,7 +7007,8 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
( n = `formatterValue` v = z2ui5_cl_util=>boolean_abap_2_json( formattervalue ) )
( n = `animateTextChange` v = z2ui5_cl_util=>boolean_abap_2_json( animatetextchange ) )
( 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 ) ) ).
ENDMETHOD.