tailjng 0.0.40 → 0.0.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,7 +27,7 @@ Authors:
27
27
  License:
28
28
  This project is licensed under the BSD 3-Clause - see the LICENSE file for more details.
29
29
 
30
- Version: 0.0.39
30
+ Version: 0.0.40
31
31
  Creation Date: 2025-01-04
32
32
  ===============================================`
33
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailjng",
3
- "version": "0.0.40",
3
+ "version": "0.0.41",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.0",
6
6
  "@angular/core": "^19.2.0",
@@ -614,7 +614,7 @@
614
614
  <ng-template #templateDialog>
615
615
  <div class="flex flex-col h-full">
616
616
  <div class="flex-1 overflow-hidden">
617
- <JViewerImage
617
+ <JImageViewer
618
618
  [src]="mediaDialog"
619
619
  [alt]="titleDialog"
620
620
  [objectFit]="'contain'"
@@ -15,12 +15,12 @@ import { JOptionsTableMenuComponent } from '../../menu/menu-options-table/option
15
15
  import { JDialogComponent } from '../../dialog/dialog.component';
16
16
  import { JDropdownSelectComponent } from '../../select/select-dropdown/dropdown-select.component';
17
17
  import { JInputComponent } from '../../input/input/input.component';
18
- import { JViewerPdfComponent } from '../../viewer/viewer-pdf/pdf-viewer.component';
18
+ import { JImageViewerComponent } from '../../viewer/viewer-image/image-viewer.component';
19
19
 
20
20
  @Component({
21
21
  selector: 'JCompleteCrudTable',
22
22
  standalone: true,
23
- imports: [CommonModule, FormsModule, JCompletePaginatorComponent, JCompleteFilterComponent, LucideAngularModule, JButtonComponent, JInputCheckboxComponent, JOptionsTableMenuComponent, JDialogComponent, JViewerPdfComponent, JDropdownSelectComponent, JInputComponent],
23
+ imports: [CommonModule, FormsModule, JCompletePaginatorComponent, JCompleteFilterComponent, LucideAngularModule, JButtonComponent, JInputCheckboxComponent, JOptionsTableMenuComponent, JDialogComponent, JImageViewerComponent, JDropdownSelectComponent, JInputComponent],
24
24
  templateUrl: './complete-crud-table.component.html',
25
25
  styleUrl: './complete-crud-table.component.scss',
26
26
  animations: [
@@ -10,7 +10,7 @@ import { JIconsService } from 'tailjng';
10
10
  templateUrl: './pdf-viewer.component.html',
11
11
  styleUrls: ['./pdf-viewer.component.scss']
12
12
  })
13
- export class JViewerPdfComponent implements OnChanges {
13
+ export class JPdfViewerComponent implements OnChanges {
14
14
 
15
15
  // URLs normales (strings) para usarlas en <a href="">
16
16
  @Input() url = 'http://example/example.pdf';