tailjng 0.0.23 → 0.0.25

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.
@@ -90,6 +90,10 @@ function getComponentList() {
90
90
  path: "src/lib/components/form/form-validation",
91
91
  dependencies: [],
92
92
  },
93
+ 'form-sidebar': {
94
+ path: "src/lib/components/form/form-sidebar",
95
+ dependencies: ["tooltip", "button", "checkbox-switch"],
96
+ },
93
97
  'paginator-complete': {
94
98
  path: "src/lib/components/paginator/paginator-complete",
95
99
  dependencies: ["button"],
@@ -98,6 +102,10 @@ function getComponentList() {
98
102
  path: "src/lib/components/filter/filter-complete",
99
103
  dependencies: ["select-dropdown", "select-multi-table", "button", "dialog", "checkbox-switch"],
100
104
  },
105
+ 'card-complete': {
106
+ path: "src/lib/components/card/card-complete",
107
+ dependencies: ["paginator-complete", "filter-complete"],
108
+ },
101
109
 
102
110
 
103
111
 
@@ -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.23
30
+ Version: 0.0.25
31
31
  Creation Date: 2025-01-04
32
32
  ===============================================`
33
33
 
@@ -6,7 +6,7 @@ import { es } from 'date-fns/locale';
6
6
  import { map, isObservable, firstValueFrom, forkJoin } from 'rxjs';
7
7
  import * as i1$1 from '@angular/common/http';
8
8
  import { HttpParams } from '@angular/common/http';
9
- import { Pencil, PencilLine, ListRestart, FileUp, MonitorUp, FileSpreadsheet, Cpu, Trash2, Eraser, ArrowDownWideNarrow, Filter, ChevronsRight, ChevronRight, ChevronLeft, ChevronsLeft, Loader2, Moon, Sun, Copy, Search, SquareDashedMousePointer, ChevronDown, Eye, Upload, ImageOff, Minimize2, Scan, RefreshCcw, RotateCcw, RotateCw, ZoomOut, ZoomIn, Check, X, CircleHelp, TriangleAlert, CircleX, CircleCheck, Info } from 'lucide-angular';
9
+ import { Trash, Edit, Pencil, PencilLine, ListRestart, FileUp, MonitorUp, FileSpreadsheet, Cpu, Trash2, Eraser, ArrowDownWideNarrow, Filter, ChevronsRight, ChevronRight, ChevronLeft, ChevronsLeft, Loader2, Moon, Sun, Save, Copy, Search, SquareDashedMousePointer, ChevronsUpDown, ChevronUp, ChevronDown, Eye, Upload, ImageOff, Minimize2, Scan, RefreshCcw, RotateCcw, RotateCw, ZoomOut, ZoomIn, Check, X, CircleHelp, TriangleAlert, CircleX, CircleCheck, Info } from 'lucide-angular';
10
10
  import * as FileSaver from 'file-saver';
11
11
  import * as ExcelJS from 'exceljs';
12
12
  import * as XLSX from 'xlsx';
@@ -680,9 +680,12 @@ class JIconsService {
680
680
  upload: Upload,
681
681
  view: Eye,
682
682
  chevronDown: ChevronDown,
683
+ chevronUp: ChevronUp,
684
+ chevronsUpDown: ChevronsUpDown,
683
685
  squareDashedMousePointer: SquareDashedMousePointer,
684
686
  search: Search,
685
687
  copy: Copy,
688
+ save: Save,
686
689
  sun: Sun,
687
690
  moon: Moon,
688
691
  loading: Loader2,
@@ -701,6 +704,8 @@ class JIconsService {
701
704
  listRestart: ListRestart,
702
705
  editRowLine: PencilLine,
703
706
  editRow: Pencil,
707
+ edit: Edit,
708
+ delete: Trash,
704
709
  };
705
710
  constructor() { }
706
711
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JIconsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });