tailjng 0.0.24 → 0.0.26
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.
- package/cli/settings/components-list.js +8 -0
- package/cli/settings/header-generator.js +1 -1
- package/fesm2022/tailjng.mjs +7 -1
- package/fesm2022/tailjng.mjs.map +1 -1
- package/lib/services/static/icons.service.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/components/card/card-complete/complete-card.component.html +104 -0
- package/src/lib/components/card/card-complete/complete-card.component.scss +5 -0
- package/src/lib/components/card/card-complete/complete-card.component.ts +655 -0
- package/src/lib/components/form/form-sidebar/sidebar-form.component.html +4 -4
- package/src/lib/components/form/form-sidebar/sidebar-form.component.ts +10 -19
- package/src/lib/components/menu/menu-options-table/options-table-menu.component.html +40 -0
- package/src/lib/components/menu/menu-options-table/options-table-menu.component.scss +0 -0
- package/src/lib/components/menu/menu-options-table/options-table-menu.component.ts +147 -0
|
@@ -102,6 +102,14 @@ function getComponentList() {
|
|
|
102
102
|
path: "src/lib/components/filter/filter-complete",
|
|
103
103
|
dependencies: ["select-dropdown", "select-multi-table", "button", "dialog", "checkbox-switch"],
|
|
104
104
|
},
|
|
105
|
+
'card-complete': {
|
|
106
|
+
path: "src/lib/components/card/card-complete",
|
|
107
|
+
dependencies: ["paginator-complete", "filter-complete"],
|
|
108
|
+
},
|
|
109
|
+
'menu-options-table': {
|
|
110
|
+
path: "src/lib/components/menu/menu-options-table",
|
|
111
|
+
dependencies: ["button"],
|
|
112
|
+
},
|
|
105
113
|
|
|
106
114
|
|
|
107
115
|
|
package/fesm2022/tailjng.mjs
CHANGED
|
@@ -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 { EllipsisVertical, 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,9 @@ class JIconsService {
|
|
|
701
704
|
listRestart: ListRestart,
|
|
702
705
|
editRowLine: PencilLine,
|
|
703
706
|
editRow: Pencil,
|
|
707
|
+
edit: Edit,
|
|
708
|
+
delete: Trash,
|
|
709
|
+
ellipsisVertical: EllipsisVertical,
|
|
704
710
|
};
|
|
705
711
|
constructor() { }
|
|
706
712
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JIconsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|