Skip to content

Commit

Permalink
Update fiddle deps (#3809)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesDoberer committed Jul 10, 2024
1 parent 7ded9e9 commit 00718af
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 78 deletions.
130 changes: 65 additions & 65 deletions website/fiddle/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions website/fiddle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
"dev": "node patch.js && node build_patch_ui5.js && webpack serve --static public"
},
"dependencies": {
"@luigi-project/client": "2.13.0",
"@luigi-project/core": "2.13.0",
"@luigi-project/plugin-auth-oauth2": "2.13.0",
"@luigi-project/plugin-auth-oidc": "2.13.0",
"@luigi-project/client": "2.14.0",
"@luigi-project/core": "2.14.0",
"@luigi-project/plugin-auth-oauth2": "2.14.0",
"@luigi-project/plugin-auth-oidc": "2.14.0",
"@luigi-project/container": "1.1.0",
"@ui5/webcomponents": "^1.24.3",
"@ui5/webcomponents-fiori": "^1.24.3",
"ace-builds": "^1.33.3",
"@ui5/webcomponents": "^2.0.1",
"@ui5/webcomponents-fiori": "^2.0.1",
"ace-builds": "^1.35.2",
"fs-extra": "^11.2.0",
"fundamental-styles": "0.23.0"
},
Expand Down
15 changes: 9 additions & 6 deletions website/fiddle/public/wc/luigiExampleWC.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,15 @@ export default class luigiExampleWC extends HTMLElement {
addConfirmationModal() {
const button = this.shadowRoot.querySelector('#bConModal');
button.addEventListener('click', event => {
this.LuigiClient.uxManager().showConfirmationModal({
header: 'Confirmation',
body: 'Are you sure you want to do this?',
buttonConfirm: 'Yes',
buttonDismiss: 'No'
});
this.LuigiClient.uxManager()
.showConfirmationModal({
header: 'Confirmation',
body: 'Are you sure you want to do this?',
buttonConfirm: 'Yes',
buttonDismiss: 'No'
})
.then(() => console.log('Yes clicked'))
.catch(() => console.log('No clicked'));
event.stopPropagation();
});
}
Expand Down

0 comments on commit 00718af

Please sign in to comment.