Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/primefaces/primeng
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Sep 26, 2023
2 parents 5d6e1d1 + 6603de7 commit b5d356d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 6 deletions.
28 changes: 24 additions & 4 deletions src/app/components/image/image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { FocusTrapModule } from 'primeng/focustrap';
selector: 'p-image',
template: `
<span [ngClass]="containerClass()" [class]="styleClass" [ngStyle]="style">
<img [attr.src]="src" [attr.alt]="alt" [attr.width]="width" [attr.height]="height" [ngStyle]="imageStyle" [class]="imageClass" (error)="imageError($event)" />
<img [attr.src]="src" [attr.srcset]="srcSet" [attr.sizes]="sizes" [attr.alt]="alt" [attr.width]="width" [attr.height]="height" [ngStyle]="imageStyle" [class]="imageClass" (error)="imageError($event)" />
<button type="button" class="p-image-preview-indicator" *ngIf="preview" (click)="onImageClick()" #previewButton>
<ng-container *ngIf="indicatorTemplate; else defaultTemplate">
<ng-container *ngTemplateOutlet="indicatorTemplate"></ng-container>
Expand Down Expand Up @@ -60,7 +60,7 @@ import { FocusTrapModule } from 'primeng/focustrap';
(@animation.start)="onAnimationStart($event)"
(@animation.done)="onAnimationEnd($event)"
>
<img [attr.src]="previewImageSrc ? previewImageSrc : src" class="p-image-preview" [ngStyle]="imagePreviewStyle()" (click)="onPreviewImageClick()" />
<img [attr.src]="previewImageSrc ? previewImageSrc : src" [attr.srcset]="previewImageSrcSet" [attr.sizes]="previewImageSizes" class="p-image-preview" [ngStyle]="imagePreviewStyle()" (click)="onPreviewImageClick()" />
</div>
</div>
</span>
Expand Down Expand Up @@ -100,15 +100,35 @@ export class Image implements AfterContentInit {
*/
@Input() style: { [klass: string]: any } | null | undefined;
/**
* Attribute of the image element.
* The source path for the main image.
* @group Props
*/
@Input() src: string | SafeUrl | undefined;
/**
* Attribute of the image element.
* The srcset definition for the main image.
* @group Props
*/
@Input() srcSet: string | SafeUrl | undefined;
/**
* The sizes definition for the main image.
* @group Props
*/
@Input() sizes: string | undefined;
/**
* The source path for the preview image.
* @group Props
*/
@Input() previewImageSrc: string | SafeUrl | undefined;
/**
* The srcset definition for the preview image.
* @group Props
*/
@Input() previewImageSrcSet: string | SafeUrl | undefined;
/**
* The sizes definition for the preview image.
* @group Props
*/
@Input() previewImageSizes: string | undefined;
/**
* Attribute of the preview image element.
* @group Props
Expand Down
11 changes: 9 additions & 2 deletions src/app/showcase/doc/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -11625,14 +11625,14 @@
"optional": false,
"readonly": false,
"type": "string | SafeUrl",
"description": "Attribute of the image element."
"description": "The source path for the main image."
},
{
"name": "previewImageSrc",
"optional": false,
"readonly": false,
"type": "string | SafeUrl",
"description": "Attribute of the image element."
"description": "The source path for the preview image."
},
{
"name": "alt",
Expand Down Expand Up @@ -24482,6 +24482,13 @@
"type": "string",
"description": "Custom style class for paginator"
},
{
"name": "paginatorStyleClass",
"optional": false,
"readonly": false,
"type": "string",
"description": "Custom style class for paginator"
},
{
"name": "paginatorDropdownAppendTo",
"optional": false,
Expand Down

1 comment on commit b5d356d

@vercel
Copy link

@vercel vercel bot commented on b5d356d Sep 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

primeng-ssr-test – ./

Please sign in to comment.