[create-pull-request] automated change (#1799)
Some checks failed
UI5_2X / UI5_2X (push) Has been cancelled
auto_abaplint_fix / auto_abaplint_fix (push) Has been cancelled
auto_downport / auto_downport (push) Has been cancelled
create_app2abap / create_app2abap (push) Has been cancelled
create_frontend / create_frontend (push) Has been cancelled
mirror_srtti / mirror_srtti (push) Has been cancelled
mirror_ajson / mirror_ajson (push) Has been cancelled

Co-authored-by: oblomov-dev <oblomov-dev@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2025-03-10 19:54:44 -03:00 committed by GitHub
parent 489e40d226
commit 1bb7130d75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 7 deletions

View File

@ -875,8 +875,9 @@ CLASS z2ui5_cl_app_app_js IMPLEMENTATION.
`sap.ui.define("z2ui5/CameraPicture", [` && |\n| && `sap.ui.define("z2ui5/CameraPicture", [` && |\n| &&
` "sap/ui/core/Control",` && |\n| && ` "sap/ui/core/Control",` && |\n| &&
` "sap/m/Dialog",` && |\n| && ` "sap/m/Dialog",` && |\n| &&
` "sap/m/Button"` && |\n| && ` "sap/m/Button",` && |\n| &&
`], function (Control, Dialog, Button) {` && |\n| && ` "sap/ui/core/HTML"` && |\n| &&
`], function (Control, Dialog, Button, HTML) {` && |\n| &&
` "use strict";` && |\n| && ` "use strict";` && |\n| &&
` return Control.extend("z2ui5.CameraPicture", {` && |\n| && ` return Control.extend("z2ui5.CameraPicture", {` && |\n| &&
` metadata: {` && |\n| && ` metadata: {` && |\n| &&
@ -924,7 +925,7 @@ CLASS z2ui5_cl_app_app_js IMPLEMENTATION.
` verticalScrolling: false,` && |\n| && ` verticalScrolling: false,` && |\n| &&
` stretch: true,` && |\n| && ` stretch: true,` && |\n| &&
` content: [` && |\n| && ` content: [` && |\n| &&
` new sap.ui.core.HTML({` && |\n| && ` new HTML({` && |\n| &&
` id: this.getId() + 'PictureContainer',` && |\n| && ` id: this.getId() + 'PictureContainer',` && |\n| &&
` content: '<video width="600px" height="400px" autoplay="true" id="zvideo">'` && |\n| && ` content: '<video width="600px" height="400px" autoplay="true" id="zvideo">'` && |\n| &&
` }),` && |\n| && ` }),` && |\n| &&
@ -935,7 +936,7 @@ CLASS z2ui5_cl_app_app_js IMPLEMENTATION.
` this._oScanDialog.close();` && |\n| && ` this._oScanDialog.close();` && |\n| &&
` }.bind(this)` && |\n| && ` }.bind(this)` && |\n| &&
` }),` && |\n| && ` }),` && |\n| &&
` new sap.ui.core.HTML({` && |\n| && ` new HTML({` && |\n| &&
` content: '<canvas hidden id="zcanvas" style="overflow:auto"></canvas>'` && |\n| && ` content: '<canvas hidden id="zcanvas" style="overflow:auto"></canvas>'` && |\n| &&
` }),` && |\n| && ` }),` && |\n| &&
` ],` && |\n| && ` ],` && |\n| &&

View File

@ -31,7 +31,7 @@ CLASS z2ui5_cl_app_debugtool_xml IMPLEMENTATION.
` >` && ` >` &&
` <IconTabHeader` && ` <IconTabHeader` &&
` selectedKey="PLAIN"` && ` selectedKey="PLAIN"` &&
` select="onItemSelect"` && ` select=".onItemSelect"` &&
` >` && ` >` &&
` <items>` && ` <items>` &&
` <IconTabFilter` && ` <IconTabFilter` &&
@ -103,7 +103,7 @@ CLASS z2ui5_cl_app_debugtool_xml IMPLEMENTATION.
` </items>` && ` </items>` &&
` </IconTabHeader>` && ` </IconTabHeader>` &&
` <VBox>` && ` <VBox>` &&
` <ToggleButton text="Source XML after Templating" visible="{/isTemplating}" pressed="{/templatingSource}" press="onTemplatingPress" />` && ` <ToggleButton text="Source XML after Templating" visible="{/isTemplating}" pressed="{/templatingSource}" press=".onTemplatingPress" />` &&
` <ce:CodeEditor` && ` <ce:CodeEditor` &&
` type="{/type}"` && ` type="{/type}"` &&
` value="{/value}"` && ` value="{/value}"` &&
@ -117,7 +117,7 @@ CLASS z2ui5_cl_app_debugtool_xml IMPLEMENTATION.
` <endButton>` && ` <endButton>` &&
` <Button` && ` <Button` &&
` text="Close"` && ` text="Close"` &&
` press="onClose"` && ` press=".onClose"` &&
` />` && ` />` &&
` </endButton>` && ` </endButton>` &&
` </Dialog>` && ` </Dialog>` &&