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.
- package/cli/settings/components-list.js +8 -0
- package/cli/settings/header-generator.js +1 -1
- package/fesm2022/tailjng.mjs +6 -1
- package/fesm2022/tailjng.mjs.map +1 -1
- package/lib/interfaces/crud/form.interface.d.ts +8 -0
- package/lib/services/static/icons.service.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- 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-container/container-form.component.ts +15 -13
- package/src/lib/components/form/form-sidebar/sidebar-form.component.html +101 -0
- package/src/lib/components/form/form-sidebar/sidebar-form.component.scss +0 -0
- package/src/lib/components/form/form-sidebar/sidebar-form.component.ts +64 -0
- package/src/lib/components/select/select-dropdown/dropdown-select.component.html +3 -3
- package/src/lib/components/select/select-multi-dropdown/multi-dropdown-select.component.html +4 -4
- package/src/lib/components/select/select-multi-table/multi-table-select.component.html +2 -2
|
@@ -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
|
|
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 { 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 });
|