Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web components grid #1752

Merged
merged 43 commits into from
Dec 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
6439836
grid definition
hardl Aug 11, 2020
35f499e
context merge
hardl Aug 12, 2020
01385fe
Merge branch 'master' into web-components-grid
hardl Aug 12, 2020
e315bdf
eventing and responsiveness
hardl Aug 24, 2020
b3f9629
compound renderers
hardl Sep 7, 2020
a0bb414
luigielement enhancements
hardl Sep 7, 2020
2ac9c97
merged master
hardl Sep 8, 2020
d7d4af6
nested
hardl Sep 24, 2020
b8bd5ac
update
hardl Oct 9, 2020
45ef58b
added nesting wc to ev bus
hardl Oct 12, 2020
caab60b
Merge branch 'master' into web-components-grid
hardl Oct 12, 2020
7448270
Merge branch 'master' into web-components-grid
hardl Oct 13, 2020
d9f54fd
Merge branch 'feature-wc-support' into web-components-grid
hardl Oct 13, 2020
5c1ba3d
added some comments to luigi element
hardl Oct 13, 2020
044af01
check for allowed wc domains
hardl Oct 14, 2020
89034c9
comments
hardl Oct 14, 2020
d9e91d5
tests
hardl Oct 15, 2020
9f5dbd8
tests
hardl Oct 15, 2020
57e8f80
tests
hardl Oct 19, 2020
c8325e3
vscode debug config
hardl Oct 19, 2020
9dc1bd6
element postProcess test
hardl Oct 19, 2020
6f2215d
allow non-default exports
hardl Oct 26, 2020
60bace4
mark webcomponents as experimental
hardl Oct 26, 2020
f154e4b
Merge branch 'master' into web-components-grid
hardl Nov 8, 2020
d25d20c
increased ie11 bundle size limit
hardl Nov 9, 2020
16883af
Merge branch 'master' into web-components-grid
JohannesDoberer Nov 11, 2020
06b10c0
modal support for wc fix
JohannesDoberer Nov 11, 2020
5bb69ad
Merge branch 'feature-wc-support' into web-components-grid
hardl Nov 11, 2020
ff2e571
Merge branch 'web-components-grid' of github.com:hardl/luigi into web…
hardl Nov 11, 2020
723af29
fix wc support for split-view
JohannesDoberer Nov 11, 2020
8499b8d
Merge branch 'master' into web-components-grid
hardl Nov 16, 2020
e4c5693
Merge branch 'master' into web-components-grid
JohannesDoberer Nov 16, 2020
924b920
no message
JohannesDoberer Nov 20, 2020
bb32ef9
Merge branch 'feature-wc-support' into web-components-grid
hardl Nov 20, 2020
510fccb
Merge branch 'master' into web-components-grid
hardl Nov 20, 2020
1cfdefb
Merge branch 'master' into web-components-grid
ndricimrr Nov 24, 2020
112ba27
fix iframcnt e2e bug
ndricimrr Nov 24, 2020
88acb03
Merge branch 'master' into web-components-grid
hardl Dec 1, 2020
aef7deb
Merge branch 'master' into web-components-grid
hardl Dec 1, 2020
2294de8
Merge branch 'master' into web-components-grid
hardl Dec 2, 2020
319bc9a
Merge branch 'master' into web-components-grid
hardl Dec 2, 2020
1372c81
Merge branch 'web-components-grid' of github.com:hardl/luigi into web…
hardl Dec 2, 2020
fefc010
Merge branch 'feature-wc-support' into web-components-grid
hardl Dec 2, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('Luigi client linkManager', () => {
cy.wrap($iframeBody)
.contains('Open webcomponent in splitView')
.click();
cy.get('.iframeSplitViewCnt>div>').then(container => {
cy.get('.iframeSplitViewCnt>').then(container => {
const root = container.children().prevObject[0].shadowRoot;
const wcContent = root.querySelector('p').innerText;
expect(wcContent).to.equal('Hello WebComponent!');
Expand Down
37 changes: 7 additions & 30 deletions test/e2e-test-application/src/app/project/project.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -503,32 +503,22 @@ <h3 class="fd-layout-panel__title">Navigate</h3>
title: 'Webcomponent in a modal',
size: 'm'
})
"
>Open webcomponent in a modal</a
>
<app-code-snippet
data="linkManager()
">Open webcomponent in a modal</a>
<app-code-snippet data="linkManager()
.openAsModal('/projects/pr2/webcomponent', {
title: 'Webcomponent in a modal',
size: 'm'
})"
>
})">
</app-code-snippet>
</li>
<li class="fd-list__item">
<a
href="javascript:void(0)"
class="fd-link"
(click)="
<a href="javascript:void(0)" class="fd-link" (click)="
linkManager().openAsSplitView('/projects/pr2/webcomponent', {
title: 'Webcomponent in a split view',
size: '25'
})
"
>Open webcomponent in splitView</a
>
<app-code-snippet
data="linkManager().openAsSplitView('/projects/pr2/webcomponent', {
">Open webcomponent in splitView</a>
<app-code-snippet data="linkManager().openAsSplitView('/projects/pr2/webcomponent', {
title: 'Webcomponent in a split view',
size: '25'
})"
Expand Down Expand Up @@ -859,17 +849,4 @@ <h3 class="fd-layout-panel__title">Demo time</h3>
</div>
</section>

<<<<<<< HEAD
<app-modal
*ngIf="projectId === 'pr1'"
[modalActive]="modalActive"
(modalClosed)="toggleModal()"
>
</app-modal>
=======
<app-modal
*ngIf="projectId === 'pr1'"
[modalActive]="modalActive"
(modalClosed)="toggleModal()"
></app-modal>
>>>>>>> master
<app-modal *ngIf="projectId === 'pr1'" [modalActive]="modalActive" (modalClosed)="toggleModal()"></app-modal>