-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
1,257 additions
and
2,736 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3,746 changes: 1,202 additions & 2,544 deletions
3,746
core/examples/luigi-example-js/package-lock.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title></title> | ||
<title>Luigi App</title> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1" | ||
|
@@ -10,14 +10,13 @@ | |
href="https://unpkg.com/@sap-theming/[email protected]/content/Base/baseLib/sap_fiori_3/css_variables.css" | ||
rel="stylesheet" | ||
/> | ||
<link rel="stylesheet" href="./luigi-core/luigi.css" /> | ||
<link rel="stylesheet" href="https://unpkg.com/@luigi-project/core@2.7.2/luigi.css" /> | ||
<link rel="icon" href="favicon.ico" type="image/x-icon" /> | ||
</head> | ||
|
||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
|
||
<script src="./luigi-core/luigi.js"></script> | ||
<script src="https://unpkg.com/@luigi-project/[email protected]/luigi.js"></script> | ||
|
||
<script src="./luigi-config.js"></script> | ||
</body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link | ||
href="https://unpkg.com/@sap-theming/[email protected]/content/Base/baseLib/sap_fiori_3/css_variables.css" | ||
rel="stylesheet" | ||
/> | ||
<link rel="stylesheet" href="/fundamental-styles/fundamental-styles.css" /> | ||
<script src="https://cdn.jsdelivr.net/npm/@luigi-project/[email protected]/luigi-client.js"></script> | ||
<style type="text/css"> | ||
.fd-panel { | ||
padding: 15px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<section class="fd-section"> | ||
<div class="fd-section__header"> | ||
<h1 class="fd-section__title">Home</h1> | ||
</div> | ||
<div class="fd-panel" id="init-text"></div> | ||
</section> | ||
|
||
<script type="text/javascript" src="/luigi-client/luigi-client.js"></script> | ||
<div> | ||
<h1>Home</h1> | ||
</div> | ||
<div class="fd-panel" id="init-text"></div> | ||
<script type="text/javascript"> | ||
LuigiClient.addContextUpdateListener(updatedContext => { | ||
document.getElementById('init-text').textContent = 'Luigi Client updated.'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link | ||
href="https://unpkg.com/@sap-theming/[email protected]/content/Base/baseLib/sap_fiori_3/css_variables.css" | ||
rel="stylesheet" | ||
/> | ||
<link rel="stylesheet" href="/fundamental-styles/fundamental-styles.css" /> | ||
<style type="text/css"> | ||
.fd-panel { | ||
padding: 15px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<script type="text/javascript" src="/luigi-client/luigi-client.js"></script> | ||
|
||
<section class="fd-section"> | ||
<div class="fd-section__header"> | ||
<h1 class="fd-section__title">Sample 1</h1> | ||
</div> | ||
<div class="fd-panel"> | ||
Luigi ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod | ||
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. | ||
</div> | ||
</section> | ||
<div> | ||
<h1>Sample 1</h1> | ||
</div> | ||
<div class="fd-panel"> | ||
Luigi ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod | ||
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. | ||
</div> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters