Skip to content

Commit

Permalink
Merge branch 'master' into feature-globalsearch
Browse files Browse the repository at this point in the history
* master:
  Update dependencies from GitHub (#1395)
  Update dependency in Landingpage (#1387)
  update versions for fiddle and website (#1391)
  New FAQ - How can I style the Luigi core elements? (#1354)
  add Out of the box section to the About page (#1365)
  Release v1.2.1  (#1385)
  Add onNodeChange hook (#1316)
  Fix client half init state (#1356)
  fix title propagation issue (#1374)
  Add testing production build capability (#1367)
  removing iframe properly (#1364)
  add viewport meta tag for devtools (#1379)
  Show warning if sendCustomMessage id does not exist (#1351)
  Fix left-nav flyout (#1376)
  ContextSwitcher bugfix (#1368)
  fix for fiddle styling issue
  style according to new FD Styles mock examples (#1353)
  • Loading branch information
JohannesDoberer committed Jun 9, 2020
2 parents d6e7851 + b0d9cf2 commit 02b7489
Show file tree
Hide file tree
Showing 81 changed files with 2,835 additions and 2,090 deletions.
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,30 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
-->


## [v1.2.1] (2020-06-04)

#### :rocket: Added
* [#1316](https://github.com/SAP/luigi/pull/1316) Add onNodeChange hook ([@zarkosimic](https://github.com/zarkosimic))
* [#1326](https://github.com/SAP/luigi/pull/1326) Selected state for product switch items ([@hardl](https://github.com/hardl))
* [#1304](https://github.com/SAP/luigi/pull/1304) Add possibility to unload Luigi ([@maxmarkus](https://github.com/maxmarkus))

#### :bug: Fixed
* [#1356](https://github.com/SAP/luigi/pull/1356) Fix client half init state ([@maxmarkus](https://github.com/maxmarkus))
* [#1374](https://github.com/SAP/luigi/pull/1374) Fix flyout title propagation ([@maxmarkus](https://github.com/maxmarkus))
* [#1367](https://github.com/SAP/luigi/pull/1367) Add testing production build capability ([@ndricimrr](https://github.com/ndricimrr))
* [#1364](https://github.com/SAP/luigi/pull/1364) Fix iframe fallback ([@maxmarkus](https://github.com/maxmarkus))
* [#1376](https://github.com/SAP/luigi/pull/1376) Fix left-nav flyout ([@zarkosimic](https://github.com/zarkosimic))
* [#1368](https://github.com/SAP/luigi/pull/1368) ContextSwitcher bugfix ([@marynaKhromova](https://github.com/marynaKhromova))
* [#1335](https://github.com/SAP/luigi/pull/1335) Fix oidc regenerator runtime issue ([@maxmarkus](https://github.com/maxmarkus))

#### :memo: Documentation
* [#1313](https://github.com/SAP/luigi/pull/1313) Add read-only keyword labels to documentation ([@ndricimrr](https://github.com/ndricimrr))






## [v1.1.1] (2020-05-07)

#### :rocket: Added
Expand Down Expand Up @@ -759,4 +783,5 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
[v1.0.0]: https://github.com/SAP/luigi/compare/v0.7.7...v1.0.0
[v1.0.1]: https://github.com/SAP/luigi/compare/v1.0.0...v1.0.1
[v1.1.0]: https://github.com/SAP/luigi/compare/v1.0.1...v1.1.0
[v1.1.1]: https://github.com/SAP/luigi/compare/v1.1.0...v1.1.1
[v1.1.1]: https://github.com/SAP/luigi/compare/v1.1.0...v1.1.1
[v1.2.1]: https://github.com/SAP/luigi/compare/v1.1.1...v1.2.1
44 changes: 32 additions & 12 deletions client/package-lock.json

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

2 changes: 1 addition & 1 deletion client/public-ie11/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/client-ie11",
"version": "1.1.1",
"version": "1.2.1",
"description": "Javascript library supporting consumers of the Luigi framework",
"license": "Apache-2.0",
"main": "luigi-client-ie11.js",
Expand Down
2 changes: 1 addition & 1 deletion client/public/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/client",
"version": "1.1.1",
"version": "1.2.1",
"description": "Javascript library supporting consumers of the Luigi framework",
"license": "Apache-2.0",
"main": "luigi-client.js",
Expand Down
1 change: 1 addition & 0 deletions client/src/lifecycleManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ class LifecycleManager extends LuigiClientBase {
helpers.setLuigiCoreDomain(e.origin);
this.luigiInitialized = true;
this._notifyInit(e.origin);
helpers.sendPostMessageToLuigiCore({ msg: 'luigi.init.ok' });
});

helpers.addEventListener('luigi-client.inactive-microfrontend', e => {
Expand Down
23 changes: 12 additions & 11 deletions core/dev-tools/templates/simple/index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Luigi Simple Dev</title>
<link rel="stylesheet" href="/public/luigi.css" />
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1"
/>
</head>

<head>
<title>Luigi Simple Dev</title>
<link rel='stylesheet' href='/public/luigi.css'>
<meta charset="utf-8">
</head>

<body>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script src="/public/luigi.js"></script>
<script src="/luigi-config.js"></script>

</body>

<script src="/luigi-config.js"></script>
</body>
</html>
Loading

0 comments on commit 02b7489

Please sign in to comment.