tailjng 0.0.45 → 0.0.47
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 +4 -0
- package/cli/settings/header-generator.js +1 -1
- package/fesm2022/tailjng.mjs +4 -1
- package/fesm2022/tailjng.mjs.map +1 -1
- package/lib/interfaces/crud/crud.interface.d.ts +5 -0
- package/lib/services/static/icons.service.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/components/card/card-crud-complete/complete-crud-card.component.ts +4 -7
- package/src/lib/components/checkbox/checkbox-input/input-checkbox.component.html +37 -8
- package/src/lib/components/checkbox/checkbox-input/input-checkbox.component.ts +13 -8
- package/src/lib/components/progress-bar/progress-bar.component.html +22 -5
- package/src/lib/components/progress-bar/progress-bar.component.ts +1 -1
- package/src/lib/components/select/select-dropdown/dropdown-select.component.ts +3 -1
- package/src/lib/components/select/select-multi-dropdown/multi-dropdown-select.component.ts +3 -1
- package/src/lib/components/sidebar/sidebar-static/static-sidebar.component.html +60 -0
- package/src/lib/components/sidebar/sidebar-static/static-sidebar.component.scss +0 -0
- package/src/lib/components/sidebar/sidebar-static/static-sidebar.component.ts +54 -0
- package/src/lib/components/table/table-crud-complete/complete-crud-table.component.html +108 -85
- package/src/lib/components/table/table-crud-complete/complete-crud-table.component.ts +22 -7
|
@@ -90,6 +90,10 @@ function getComponentList() {
|
|
|
90
90
|
path: "src/lib/components/select/select-dropdown",
|
|
91
91
|
dependencies: [],
|
|
92
92
|
},
|
|
93
|
+
'sidebar-static': {
|
|
94
|
+
path: "src/lib/components/sidebar/sidebar-static",
|
|
95
|
+
dependencies: ["checkbox-switch"],
|
|
96
|
+
},
|
|
93
97
|
'form-container': {
|
|
94
98
|
path: "src/lib/components/form/form-container",
|
|
95
99
|
dependencies: [],
|
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 { Clipboard, CircleAlert, Clock, Calendar, EllipsisVertical, Trash, Edit, Pencil, PencilLine, ListRestart, FileUp, Download, MonitorUp, FileSpreadsheet, Cpu, Trash2, Eraser, ArrowDownWideNarrow, Filter, ArrowBigRight, ChevronsRight, ChevronRight, ChevronLeft, ChevronsLeft, Loader2, Moon, Sun, Save, Copy, Search, SquareDashedMousePointer, ChevronsUpDown, ChevronDown, ChevronUp, Eye, Upload, ImageOff, Images, Image, Minimize2, Scan, RefreshCcw, RotateCcw, RotateCw, ZoomOut, ZoomIn, Check, X, CircleHelp, TriangleAlert, CircleX, CircleCheck, Info } from 'lucide-angular';
|
|
9
|
+
import { Link2Off, Link, Clipboard, CircleAlert, Clock, Calendar, EllipsisVertical, Trash, Edit, Pencil, PencilLine, ListRestart, FileUp, Download, MonitorUp, FileSpreadsheet, Cpu, Trash2, Eraser, ArrowDownWideNarrow, Filter, ArrowBigRight, ChevronsRight, ChevronRight, ChevronLeft, ChevronsLeft, Loader2, Moon, Sun, Save, Copy, Search, SquareDashedMousePointer, ChevronsUpDown, ChevronDown, ChevronUp, Eye, Upload, ImageOff, Images, Image, 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';
|
|
@@ -1183,6 +1183,8 @@ class JIconsService {
|
|
|
1183
1183
|
clock: Clock,
|
|
1184
1184
|
circleAlert: CircleAlert,
|
|
1185
1185
|
clipboard: Clipboard,
|
|
1186
|
+
link: Link,
|
|
1187
|
+
linkOff: Link2Off,
|
|
1186
1188
|
};
|
|
1187
1189
|
constructor() { }
|
|
1188
1190
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JIconsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
@@ -2009,6 +2011,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
2009
2011
|
// cd dist/tailjng
|
|
2010
2012
|
// npm publish --access public
|
|
2011
2013
|
// npx tailjng add [component]
|
|
2014
|
+
// npm login
|
|
2012
2015
|
|
|
2013
2016
|
/**
|
|
2014
2017
|
* Generated bundle index. Do not edit.
|