Skip to content

Commit

Permalink
Merge pull request #777 from Picturepark/feature/PP9-21015-11-13-rege…
Browse files Browse the repository at this point in the history
…nerate

PP9-21015: Regenerate
  • Loading branch information
neotek authored Sep 24, 2024
2 parents 806386a + 213bbda commit db8807b
Show file tree
Hide file tree
Showing 9 changed files with 2,962 additions and 3,393 deletions.
461 changes: 144 additions & 317 deletions src/picturepark-sdk-v1-fetch/src/index.ts

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
.basket {
height: 100%;

.mat-toolbar {
border-bottom-style: solid;
border-bottom-width: 1px;
}

height: 100%;
&__header {
position: sticky;
top: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,6 @@
position: relative;

.action-buttons {
@media (max-width: 725px) {
position: unset;
right: unset;
top: unset;
z-index: unset;
padding-right: 10px;
}

position: absolute;
right: 0px;
top: 0;
Expand All @@ -27,6 +19,14 @@
flex-direction: row;
justify-content: flex-end;

@media (max-width: 725px) {
position: unset;
right: unset;
top: unset;
z-index: unset;
padding-right: 10px;
}

div {
padding-left: 8px;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@
.schema-content {
display: flex;
align-items: center;
border-style: solid;
border-width: 2px;
border-radius: 3px;

&:hover {
@include mat.elevation(8);

.schema-menu {
visibility: visible;
}

@include mat.elevation(8);
}
}

Expand All @@ -37,12 +40,6 @@
}
}

.schema-content {
border-style: solid;
border-width: 2px;
border-radius: 3px;
}

.schema-info {
display: flex;
padding-left: 16px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ export class ShareContentDialogComponent extends DialogBaseComponent implements

(share.data as ShareDataBasic).mailRecipients.forEach(recipient =>
this.recipients.push({
email: recipient.userEmail.emailAddress,
email: recipient.userEmail?.emailAddress ?? '',
url: recipient.url ?? '',
img: `https://www.gravatar.com/avatar/${Md5.hashStr(recipient.userEmail.emailAddress)}?d=mm&s=48`,
img: `https://www.gravatar.com/avatar/${Md5.hashStr(recipient.userEmail?.emailAddress ?? '')}?d=mm&s=48`,
})
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@
@for (mailRecipient of mailRecipients; track mailRecipient) {
<div class="recipient">
<div class="recipient-avatar">
<img src="{{ mailRecipient.userEmail.emailAddress | ppavatar }}" [alt]="mailRecipient.userEmail.emailAddress" />
<img
src="{{ mailRecipient.userEmail?.emailAddress ?? '' | ppavatar }}"
[alt]="mailRecipient.userEmail?.emailAddress"
/>
</div>
<ul>
<li>
<span class="full-name">{{ mailRecipient.userEmail.firstName }} {{ mailRecipient.userEmail.lastName }}</span>
<a href="mailto:{{ mailRecipient.userEmail.emailAddress }}">{{ mailRecipient.userEmail.emailAddress }}</a>
<span class="full-name"
>{{ mailRecipient.userEmail?.firstName }} {{ mailRecipient.userEmail?.lastName }}</span
>
<a href="mailto:{{ mailRecipient.userEmail?.emailAddress }}">{{ mailRecipient.userEmail?.emailAddress }}</a>
</li>
@if (mailRecipient.url; as url) {
<li class="recipient-url">
Expand All @@ -18,14 +23,13 @@
[matTooltip]="'ShareMailRecipientsPanel.CopyToClipboard' | pptranslate"
(click)="copyToClipboard($event, url)"
>content_copy</i
>
</div>
<a [href]="url">{{ url }}</a>
</li>
}
</ul>
</div>
}
</div>
</pp-panel>

>
</div>
<a [href]="url">{{ url }}</a>
</li>
}
</ul>
</div>
}
</div>
</pp-panel>
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

ul {
margin: 0px 0px;
list-style: none;

li {
font-size: 16px;
Expand Down Expand Up @@ -47,8 +48,6 @@
}
}
}

list-style: none;
}

&:last-child {
Expand Down
Loading

0 comments on commit db8807b

Please sign in to comment.