tailjng 0.0.62 → 0.1.0

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.
Files changed (54) hide show
  1. package/README.md +186 -32
  2. package/cli/component-manager.js +71 -20
  3. package/cli/execute/init-app.js +251 -0
  4. package/cli/file-operations.js +45 -29
  5. package/cli/index.js +66 -15
  6. package/cli/settings/components-list.js +4 -151
  7. package/cli/settings/header-generator.js +9 -10
  8. package/cli/settings/lib-utils.js +89 -0
  9. package/cli/settings/overwrite-policy.js +18 -0
  10. package/cli/settings/path-utils.js +14 -29
  11. package/cli/settings/project-utils.js +220 -0
  12. package/cli/settings/prompt-utils.js +66 -5
  13. package/cli/templates/app.generator.js +382 -0
  14. package/fesm2022/tailjng.mjs +232 -66
  15. package/fesm2022/tailjng.mjs.map +1 -1
  16. package/lib/services/static/colors.service.d.ts +17 -0
  17. package/lib/services/transformer/transform.service.d.ts +3 -3
  18. package/package.json +1 -1
  19. package/public-api.d.ts +2 -0
  20. package/registry/components.json +164 -0
  21. package/src/lib/components/alert/alert-dialog/dialog-alert.component.css +17 -0
  22. package/src/lib/components/alert/alert-dialog/dialog-alert.component.html +83 -51
  23. package/src/lib/components/alert/alert-dialog/dialog-alert.component.ts +85 -53
  24. package/src/lib/components/alert/alert-toast/toast-alert.component.css +38 -4
  25. package/src/lib/components/alert/alert-toast/toast-alert.component.html +72 -40
  26. package/src/lib/components/alert/alert-toast/toast-alert.component.ts +84 -19
  27. package/src/lib/components/badge/badge.component.ts +1 -2
  28. package/src/lib/components/button/button.component.css +14 -0
  29. package/src/lib/components/button/button.component.html +17 -17
  30. package/src/lib/components/button/button.component.ts +139 -48
  31. package/src/lib/components/card/card-crud-complete/complete-crud-card.component.ts +5 -1
  32. package/src/lib/components/checkbox/checkbox-switch/switch-checkbox.component.html +1 -1
  33. package/src/lib/components/filter/filter-complete/complete-filter.component.html +1 -1
  34. package/src/lib/components/menu/options-coach-menu/options-coach-menu.component.html +8 -5
  35. package/src/lib/components/menu/options-coach-menu/options-coach-menu.component.scss +12 -0
  36. package/src/lib/components/select/select-dropdown/dropdown-select.component.css +4 -0
  37. package/src/lib/components/select/select-dropdown/dropdown-select.component.html +1 -1
  38. package/src/lib/components/select/select-dropdown/dropdown-select.component.ts +3 -3
  39. package/src/lib/components/select/select-multi-dropdown/multi-dropdown-select.component.css +4 -0
  40. package/src/lib/components/select/select-multi-dropdown/multi-dropdown-select.component.html +1 -1
  41. package/src/lib/components/select/select-multi-dropdown/multi-dropdown-select.component.ts +30 -20
  42. package/src/lib/components/table/table-crud-complete/complete-crud-table.component.html +504 -170
  43. package/src/lib/components/table/table-crud-complete/complete-crud-table.component.scss +92 -0
  44. package/src/lib/components/table/table-crud-complete/complete-crud-table.component.ts +139 -5
  45. package/src/lib/components/table/table-crud-complete/expand-grid/table-expand-grid.builder.ts +116 -0
  46. package/src/lib/components/table/table-crud-complete/expand-grid/table-expand-grid.helper.ts +43 -0
  47. package/src/lib/components/table/table-crud-complete/expand-grid/table-expand-grid.types.ts +39 -0
  48. package/src/lib/components/table/table-crud-complete/index.ts +3 -0
  49. package/src/lib/components/toggle-radio/toggle-radio.component.css +4 -0
  50. package/src/lib/components/toggle-radio/toggle-radio.component.html +4 -4
  51. package/src/lib/components/toggle-radio/toggle-radio.component.ts +15 -6
  52. package/src/lib/components/tooltip/tooltip.service.ts +0 -30
  53. package/tailjng-0.1.0.tgz +0 -0
  54. package/src/lib/components/color/colors.service.ts +0 -187
@@ -1,10 +1,10 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { InjectionToken, signal, computed, Injectable, Inject } from '@angular/core';
3
- import * as i1 from '@angular/common';
3
+ import { CurrencyPipe } from '@angular/common';
4
4
  import { formatDistanceToNowStrict } from 'date-fns';
5
5
  import { es } from 'date-fns/locale';
6
6
  import { map, firstValueFrom, isObservable, forkJoin } from 'rxjs';
7
- import * as i1$1 from '@angular/common/http';
7
+ import * as i1 from '@angular/common/http';
8
8
  import { HttpParams } from '@angular/common/http';
9
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, ListFilter, Table, 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';
@@ -180,10 +180,10 @@ class JAlertToastService {
180
180
  this.closeToast();
181
181
  }
182
182
  }
183
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JAlertToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
184
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JAlertToastService, providedIn: "root" });
183
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JAlertToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
184
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JAlertToastService, providedIn: "root" });
185
185
  }
186
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JAlertToastService, decorators: [{
186
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JAlertToastService, decorators: [{
187
187
  type: Injectable,
188
188
  args: [{
189
189
  providedIn: "root",
@@ -304,10 +304,10 @@ class JFormShared {
304
304
  });
305
305
  return invalidControls;
306
306
  }
307
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JFormShared, deps: [{ token: JAlertToastService }], target: i0.ɵɵFactoryTarget.Injectable });
308
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JFormShared, providedIn: 'root' });
307
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JFormShared, deps: [{ token: JAlertToastService }], target: i0.ɵɵFactoryTarget.Injectable });
308
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JFormShared, providedIn: 'root' });
309
309
  }
310
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JFormShared, decorators: [{
310
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JFormShared, decorators: [{
311
311
  type: Injectable,
312
312
  args: [{
313
313
  providedIn: 'root'
@@ -338,10 +338,10 @@ class JDialogShared {
338
338
  isOpen(id) {
339
339
  return this.dialogStates[id] ?? false;
340
340
  }
341
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JDialogShared, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
342
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JDialogShared, providedIn: 'root' });
341
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JDialogShared, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
342
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JDialogShared, providedIn: 'root' });
343
343
  }
344
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JDialogShared, decorators: [{
344
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JDialogShared, decorators: [{
345
345
  type: Injectable,
346
346
  args: [{
347
347
  providedIn: 'root'
@@ -590,10 +590,10 @@ class JCalendarService {
590
590
  }
591
591
  });
592
592
  }
593
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JCalendarService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
594
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JCalendarService, providedIn: 'root' });
593
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JCalendarService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
594
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JCalendarService, providedIn: 'root' });
595
595
  }
596
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JCalendarService, decorators: [{
596
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JCalendarService, decorators: [{
597
597
  type: Injectable,
598
598
  args: [{
599
599
  providedIn: 'root'
@@ -601,10 +601,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
601
601
  }] });
602
602
 
603
603
  class JTransformService {
604
- currencyPipe;
605
604
  calendarService;
606
- constructor(currencyPipe, calendarService) {
607
- this.currencyPipe = currencyPipe;
605
+ /** Instanciado directamente — no requiere provider de CurrencyPipe en la app */
606
+ currencyPipe = new CurrencyPipe('en-US');
607
+ constructor(calendarService) {
608
608
  this.calendarService = calendarService;
609
609
  }
610
610
  /**
@@ -767,15 +767,15 @@ class JTransformService {
767
767
  const date = new Date(value);
768
768
  return isNaN(date.getTime()) ? value : date.toISOString();
769
769
  }
770
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JTransformService, deps: [{ token: i1.CurrencyPipe }, { token: JCalendarService }], target: i0.ɵɵFactoryTarget.Injectable });
771
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JTransformService, providedIn: 'root' });
770
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JTransformService, deps: [{ token: JCalendarService }], target: i0.ɵɵFactoryTarget.Injectable });
771
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JTransformService, providedIn: 'root' });
772
772
  }
773
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JTransformService, decorators: [{
773
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JTransformService, decorators: [{
774
774
  type: Injectable,
775
775
  args: [{
776
776
  providedIn: 'root'
777
777
  }]
778
- }], ctorParameters: () => [{ type: i1.CurrencyPipe }, { type: JCalendarService }] });
778
+ }], ctorParameters: () => [{ type: JCalendarService }] });
779
779
 
780
780
  class JConverterCrudService {
781
781
  transformService;
@@ -871,10 +871,10 @@ class JConverterCrudService {
871
871
  }
872
872
  return cleaned;
873
873
  }
874
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JConverterCrudService, deps: [{ token: JTransformService }], target: i0.ɵɵFactoryTarget.Injectable });
875
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JConverterCrudService, providedIn: 'root' });
874
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JConverterCrudService, deps: [{ token: JTransformService }], target: i0.ɵɵFactoryTarget.Injectable });
875
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JConverterCrudService, providedIn: 'root' });
876
876
  }
877
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JConverterCrudService, decorators: [{
877
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JConverterCrudService, decorators: [{
878
878
  type: Injectable,
879
879
  args: [{
880
880
  providedIn: 'root'
@@ -917,10 +917,10 @@ class JParamsHttpService {
917
917
  }
918
918
  return httpParams;
919
919
  }
920
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JParamsHttpService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
921
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JParamsHttpService, providedIn: 'root' });
920
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JParamsHttpService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
921
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JParamsHttpService, providedIn: 'root' });
922
922
  }
923
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JParamsHttpService, decorators: [{
923
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JParamsHttpService, decorators: [{
924
924
  type: Injectable,
925
925
  args: [{
926
926
  providedIn: 'root'
@@ -1098,10 +1098,10 @@ class JGenericCrudService {
1098
1098
  }
1099
1099
  return params;
1100
1100
  }
1101
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JGenericCrudService, deps: [{ token: TAILJNG_CONFIG }, { token: i1$1.HttpClient }, { token: JParamsHttpService }, { token: JConverterCrudService }], target: i0.ɵɵFactoryTarget.Injectable });
1102
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JGenericCrudService, providedIn: 'root' });
1101
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JGenericCrudService, deps: [{ token: TAILJNG_CONFIG }, { token: i1.HttpClient }, { token: JParamsHttpService }, { token: JConverterCrudService }], target: i0.ɵɵFactoryTarget.Injectable });
1102
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JGenericCrudService, providedIn: 'root' });
1103
1103
  }
1104
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JGenericCrudService, decorators: [{
1104
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JGenericCrudService, decorators: [{
1105
1105
  type: Injectable,
1106
1106
  args: [{
1107
1107
  providedIn: 'root'
@@ -1109,7 +1109,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
1109
1109
  }], ctorParameters: () => [{ type: undefined, decorators: [{
1110
1110
  type: Inject,
1111
1111
  args: [TAILJNG_CONFIG]
1112
- }] }, { type: i1$1.HttpClient }, { type: JParamsHttpService }, { type: JConverterCrudService }] });
1112
+ }] }, { type: i1.HttpClient }, { type: JParamsHttpService }, { type: JConverterCrudService }] });
1113
1113
 
1114
1114
  class JFileHttpService {
1115
1115
  http;
@@ -1162,15 +1162,15 @@ class JFileHttpService {
1162
1162
  return firstValueFrom(this.http.get(imageUrl, { observe: 'response', responseType: 'blob' })).then(resp => resp.status === 200)
1163
1163
  .catch(() => false);
1164
1164
  }
1165
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JFileHttpService, deps: [{ token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1166
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JFileHttpService, providedIn: 'root' });
1165
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JFileHttpService, deps: [{ token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1166
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JFileHttpService, providedIn: 'root' });
1167
1167
  }
1168
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JFileHttpService, decorators: [{
1168
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JFileHttpService, decorators: [{
1169
1169
  type: Injectable,
1170
1170
  args: [{
1171
1171
  providedIn: 'root'
1172
1172
  }]
1173
- }], ctorParameters: () => [{ type: i1$1.HttpClient }] });
1173
+ }], ctorParameters: () => [{ type: i1.HttpClient }] });
1174
1174
 
1175
1175
  class JErrorHandlerHttpService {
1176
1176
  /**
@@ -1220,10 +1220,10 @@ class JErrorHandlerHttpService {
1220
1220
  persistent: errorInfo.persistent
1221
1221
  };
1222
1222
  }
1223
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JErrorHandlerHttpService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1224
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JErrorHandlerHttpService, providedIn: 'root' });
1223
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JErrorHandlerHttpService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1224
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JErrorHandlerHttpService, providedIn: 'root' });
1225
1225
  }
1226
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JErrorHandlerHttpService, decorators: [{
1226
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JErrorHandlerHttpService, decorators: [{
1227
1227
  type: Injectable,
1228
1228
  args: [{
1229
1229
  providedIn: 'root'
@@ -1291,10 +1291,10 @@ class JIconsService {
1291
1291
  linkOff: Link2Off,
1292
1292
  };
1293
1293
  constructor() { }
1294
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JIconsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1295
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JIconsService, providedIn: 'root' });
1294
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JIconsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1295
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JIconsService, providedIn: 'root' });
1296
1296
  }
1297
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JIconsService, decorators: [{
1297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JIconsService, decorators: [{
1298
1298
  type: Injectable,
1299
1299
  args: [{
1300
1300
  providedIn: 'root'
@@ -1345,14 +1345,185 @@ class JThemeService {
1345
1345
  getThemeMode() {
1346
1346
  return this._theme();
1347
1347
  }
1348
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1349
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JThemeService, providedIn: 'root' });
1348
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1349
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JThemeService, providedIn: 'root' });
1350
1350
  }
1351
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JThemeService, decorators: [{
1351
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JThemeService, decorators: [{
1352
1352
  type: Injectable,
1353
1353
  args: [{ providedIn: 'root' }]
1354
1354
  }], ctorParameters: () => [] });
1355
1355
 
1356
+ class JColorsService {
1357
+ // Variants
1358
+ variants = {
1359
+ primary: 'bg-primary dark:bg-input text-white dark:text-white hover:bg-primary/80 dark:hover:bg-input/60 dark:hover:text-white shadow-md border border-dark-border dark:border-border',
1360
+ primary_soft: 'bg-primary/10 dark:bg-input/15 text-primary dark:text-input hover:bg-primary/20 dark:hover:bg-input/25 border border-primary/20 dark:border-input/30 shadow-sm',
1361
+ primary_outline: 'bg-transparent text-primary dark:text-input border border-primary dark:border-input hover:bg-primary/10 dark:hover:bg-input/15 shadow-sm',
1362
+ primary_ghost: 'bg-transparent text-primary dark:text-input hover:bg-primary/10 dark:hover:bg-input/15 border border-transparent dark:border-transparent',
1363
+ primary_light: 'bg-primary/80 dark:bg-input/80 text-white hover:bg-primary dark:hover:bg-input border border-primary/30 dark:border-input/40 shadow-md',
1364
+ primary_dark: 'bg-primary text-white dark:bg-input hover:bg-primary/80 dark:hover:bg-input/80 border border-dark-border dark:border-border shadow-md',
1365
+ primary_secondary: 'bg-none text-dark-border dark:text-border border border-dark-border dark:border-border hover:bg-dark-border/10 dark:hover:bg-border/10 shadow-md',
1366
+ secondary: 'bg-background dark:bg-dark-background text-black border border-dark-border dark:border-border dark:text-white hover:bg-accent dark:hover:bg-dark-accent/50',
1367
+ secondary_soft: 'bg-accent/40 dark:bg-dark-accent/30 text-black dark:text-white border border-border dark:border-dark-border hover:bg-accent/70 dark:hover:bg-dark-accent/50 shadow-sm',
1368
+ secondary_outline: 'bg-transparent text-black dark:text-white border border-border dark:border-dark-border hover:bg-accent dark:hover:bg-dark-accent/40 shadow-sm',
1369
+ secondary_ghost: 'bg-transparent text-black dark:text-white hover:bg-accent/60 dark:hover:bg-dark-accent/40 border border-transparent dark:border-transparent',
1370
+ secondary_light: 'bg-background/80 dark:bg-dark-background/80 text-black dark:text-white border border-border dark:border-dark-border hover:bg-background dark:hover:bg-dark-background shadow-sm',
1371
+ secondary_dark: 'bg-dark-background text-white border border-dark-border hover:bg-dark-accent/50 shadow-md',
1372
+ success: 'bg-green-500 hover:bg-green-600 text-white border border-green-300 dark:border-green-300 shadow-md',
1373
+ success_secondary: 'bg-none text-green-500 border border-green-500 dark:border-green-600 hover:bg-green-500/10 dark:hover:bg-green-600/10 shadow-md',
1374
+ success_soft: 'bg-green-500/10 text-green-600 dark:text-green-400 border border-green-500/20 hover:bg-green-500/20 dark:hover:bg-green-500/15 shadow-sm',
1375
+ success_outline: 'bg-transparent text-green-500 border border-green-500 hover:bg-green-500/10 shadow-sm',
1376
+ success_ghost: 'bg-transparent text-green-500 hover:bg-green-500/10 border border-transparent dark:border-transparent',
1377
+ info: 'bg-blue-500 hover:bg-blue-600 text-white border border-blue-300 dark:border-blue-300 shadow-md',
1378
+ info_secondary: 'bg-none text-blue-500 border border-blue-500 dark:border-blue-600 hover:bg-blue-500/10 dark:hover:bg-blue-600/10 shadow-md',
1379
+ info_soft: 'bg-blue-500/10 text-blue-600 dark:text-blue-400 border border-blue-500/20 hover:bg-blue-500/20 dark:hover:bg-blue-500/15 shadow-sm',
1380
+ info_outline: 'bg-transparent text-blue-500 border border-blue-500 hover:bg-blue-500/10 shadow-sm',
1381
+ info_ghost: 'bg-transparent text-blue-500 hover:bg-blue-500/10 border border-transparent dark:border-transparent',
1382
+ warning: 'bg-yellow-600 hover:bg-yellow-700 text-white border border-yellow-500 dark:border-yellow-500 shadow-md',
1383
+ warning_secondary: 'bg-none text-yellow-600 border border-yellow-600 dark:border-yellow-700 hover:bg-yellow-600/10 dark:hover:bg-yellow-700/10 shadow-md',
1384
+ warning_soft: 'bg-yellow-600/10 text-yellow-700 dark:text-yellow-400 border border-yellow-600/20 hover:bg-yellow-600/20 dark:hover:bg-yellow-600/15 shadow-sm',
1385
+ warning_outline: 'bg-transparent text-yellow-600 border border-yellow-600 hover:bg-yellow-600/10 shadow-sm',
1386
+ warning_ghost: 'bg-transparent text-yellow-600 hover:bg-yellow-600/10 border border-transparent dark:border-transparent',
1387
+ question: 'bg-purple-500 hover:bg-purple-600 text-white border border-purple-400 dark:border-purple-400 shadow-md',
1388
+ question_secondary: 'bg-none text-purple-500 border border-purple-500 dark:border-purple-600 hover:bg-purple-500/10 dark:hover:bg-purple-600/10 shadow-md',
1389
+ question_soft: 'bg-purple-500/10 text-purple-600 dark:text-purple-400 border border-purple-500/20 hover:bg-purple-500/20 dark:hover:bg-purple-500/15 shadow-sm',
1390
+ question_outline: 'bg-transparent text-purple-500 border border-purple-500 hover:bg-purple-500/10 shadow-sm',
1391
+ question_ghost: 'bg-transparent text-purple-500 hover:bg-purple-500/10 border border-transparent dark:border-transparent',
1392
+ error: 'bg-red-500 hover:bg-red-600 text-white border border-red-400 dark:border-red-400 shadow-md',
1393
+ error_secondary: 'bg-none text-red-500 border border-red-500 dark:border-red-600 hover:bg-red-500/10 dark:hover:bg-red-600/10 shadow-md',
1394
+ error_soft: 'bg-red-500/10 text-red-600 dark:text-red-400 border border-red-500/20 hover:bg-red-500/20 dark:hover:bg-red-500/15 shadow-sm',
1395
+ error_outline: 'bg-transparent text-red-500 border border-red-500 hover:bg-red-500/10 shadow-sm',
1396
+ error_ghost: 'bg-transparent text-red-500 hover:bg-red-500/10 border border-transparent dark:border-transparent',
1397
+ loading: 'bg-gray-500 hover:bg-gray-600 text-white border border-gray-400 dark:border-gray-400 shadow-md',
1398
+ loading_secondary: 'bg-none text-gray-500 border border-gray-500 dark:border-gray-600 hover:bg-gray-500/10 dark:hover:bg-gray-600/10 shadow-md',
1399
+ loading_soft: 'bg-gray-500/10 text-gray-600 dark:text-gray-400 border border-gray-500/20 hover:bg-gray-500/20 dark:hover:bg-gray-500/15 shadow-sm',
1400
+ loading_outline: 'bg-transparent text-gray-500 border border-gray-500 hover:bg-gray-500/10 shadow-sm',
1401
+ loading_ghost: 'bg-transparent text-gray-500 hover:bg-gray-500/10 border border-transparent dark:border-transparent',
1402
+ orange: 'bg-orange-500 hover:bg-orange-600 text-white border border-orange-300 dark:border-orange-300 shadow-md',
1403
+ orange_secondary: 'bg-none text-orange-500 border border-orange-500 dark:border-orange-600 hover:bg-orange-500/10 dark:hover:bg-orange-600/10 shadow-md',
1404
+ orange_soft: 'bg-orange-500/10 text-orange-600 dark:text-orange-400 border border-orange-500/20 hover:bg-orange-500/20 dark:hover:bg-orange-500/15 shadow-sm',
1405
+ orange_outline: 'bg-transparent text-orange-500 border border-orange-500 hover:bg-orange-500/10 shadow-sm',
1406
+ orange_ghost: 'bg-transparent text-orange-500 hover:bg-orange-500/10 border border-transparent dark:border-transparent',
1407
+ cyan: 'bg-cyan-500 hover:bg-cyan-600 text-white border border-cyan-300 dark:border-cyan-300 shadow-md',
1408
+ cyan_secondary: 'bg-none text-cyan-500 border border-cyan-500 dark:border-cyan-600 hover:bg-cyan-500/10 dark:hover:bg-cyan-600/10 shadow-md',
1409
+ cyan_soft: 'bg-cyan-500/10 text-cyan-600 dark:text-cyan-400 border border-cyan-500/20 hover:bg-cyan-500/20 dark:hover:bg-cyan-500/15 shadow-sm',
1410
+ cyan_outline: 'bg-transparent text-cyan-500 border border-cyan-500 hover:bg-cyan-500/10 shadow-sm',
1411
+ cyan_ghost: 'bg-transparent text-cyan-500 hover:bg-cyan-500/10 border border-transparent dark:border-transparent',
1412
+ purple: 'bg-purple-500 hover:bg-purple-600 text-white border border-purple-300 dark:border-purple-300 shadow-md',
1413
+ purple_secondary: 'bg-none text-purple-500 border border-purple-500 dark:border-purple-600 hover:bg-purple-500/10 dark:hover:bg-purple-600/10 shadow-md',
1414
+ purple_soft: 'bg-purple-500/10 text-purple-600 dark:text-purple-400 border border-purple-500/20 hover:bg-purple-500/20 dark:hover:bg-purple-500/15 shadow-sm',
1415
+ purple_outline: 'bg-transparent text-purple-500 border border-purple-500 hover:bg-purple-500/10 shadow-sm',
1416
+ purple_ghost: 'bg-transparent text-purple-500 hover:bg-purple-500/10 border border-transparent dark:border-transparent',
1417
+ teal: 'bg-teal-500 hover:bg-teal-600 text-white border border-teal-300 dark:border-teal-300 shadow-md',
1418
+ teal_secondary: 'bg-none text-teal-500 border border-teal-500 dark:border-teal-600 hover:bg-teal-500/10 dark:hover:bg-teal-600/10 shadow-md',
1419
+ teal_soft: 'bg-teal-500/10 text-teal-600 dark:text-teal-400 border border-teal-500/20 hover:bg-teal-500/20 dark:hover:bg-teal-500/15 shadow-sm',
1420
+ teal_outline: 'bg-transparent text-teal-500 border border-teal-500 hover:bg-teal-500/10 shadow-sm',
1421
+ teal_ghost: 'bg-transparent text-teal-500 hover:bg-teal-500/10 border border-transparent dark:border-transparent',
1422
+ pink: 'bg-pink-500 hover:bg-pink-600 text-white border border-pink-300 dark:border-pink-300 shadow-md',
1423
+ pink_secondary: 'bg-none text-pink-500 border border-pink-500 dark:border-pink-600 hover:bg-pink-500/10 dark:hover:bg-pink-600/10 shadow-md',
1424
+ pink_soft: 'bg-pink-500/10 text-pink-600 dark:text-pink-400 border border-pink-500/20 hover:bg-pink-500/20 dark:hover:bg-pink-500/15 shadow-sm',
1425
+ pink_outline: 'bg-transparent text-pink-500 border border-pink-500 hover:bg-pink-500/10 shadow-sm',
1426
+ pink_ghost: 'bg-transparent text-pink-500 hover:bg-pink-500/10 border border-transparent dark:border-transparent',
1427
+ green: 'bg-green-500 hover:bg-green-600 text-white border border-green-300 dark:border-green-300 shadow-md',
1428
+ green_secondary: 'bg-none text-green-500 border border-green-500 dark:border-green-600 hover:bg-green-500/10 dark:hover:bg-green-600/10 shadow-md',
1429
+ green_soft: 'bg-green-500/10 text-green-600 dark:text-green-400 border border-green-500/20 hover:bg-green-500/20 dark:hover:bg-green-500/15 shadow-sm',
1430
+ green_outline: 'bg-transparent text-green-500 border border-green-500 hover:bg-green-500/10 shadow-sm',
1431
+ green_ghost: 'bg-transparent text-green-500 hover:bg-green-500/10 border border-transparent dark:border-transparent',
1432
+ default: 'text-black dark:text-white shadow-md border border-dark-border dark:border-border',
1433
+ default_soft: 'bg-black/5 dark:bg-white/10 text-black dark:text-white border border-dark-border/20 dark:border-border/20 hover:bg-black/10 dark:hover:bg-white/15 shadow-sm',
1434
+ default_outline: 'bg-transparent text-black dark:text-white border border-dark-border dark:border-border hover:bg-black/5 dark:hover:bg-white/10 shadow-sm',
1435
+ default_ghost: 'bg-transparent text-black dark:text-white hover:bg-black/5 dark:hover:bg-white/10 border border-transparent dark:border-transparent',
1436
+ };
1437
+ // Function to get variant with optional border and shadow
1438
+ getVariantClass(type, hasShadow = true, hasBorder = true) {
1439
+ let classStr = this.variants[type] || this.variants['default']; // Default to 'default' variant if type is invalid
1440
+ // Toggle shadow and border based on flags
1441
+ if (!hasShadow) {
1442
+ classStr = classStr.replace('shadow-md', ''); // Remove shadow if not needed
1443
+ }
1444
+ if (!hasBorder) {
1445
+ classStr = classStr.replace(/border-[\w-]+/, ''); // Remove border if not needed
1446
+ }
1447
+ return classStr;
1448
+ }
1449
+ // Alerts
1450
+ getAlertClass(type, monocromatic) {
1451
+ if (!monocromatic) {
1452
+ switch (type) {
1453
+ case 'success': return 'border-green-500 bg-green-50 dark:bg-[#15241f]';
1454
+ case 'error': return 'border-red-500 bg-red-50 dark:bg-[#21181c]';
1455
+ case 'warning': return 'border-yellow-500 bg-yellow-50 dark:bg-[#1f1c1a]';
1456
+ case 'info': return 'border-blue-500 bg-blue-50 dark:bg-[#1a1a24]';
1457
+ case 'question': return 'border-purple-500 bg-purple-50 dark:bg-[#241732]';
1458
+ case 'loading': return 'border-gray-500 bg-gray-50 dark:bg-[#15181e]';
1459
+ default: return 'border-gray-500';
1460
+ }
1461
+ }
1462
+ else {
1463
+ return 'bg-white dark:bg-foreground border-border dark:border-dark-border';
1464
+ }
1465
+ }
1466
+ // Icons
1467
+ getIconClass(type, monocromatic) {
1468
+ if (!monocromatic) {
1469
+ switch (type) {
1470
+ case 'success': return 'text-green-500';
1471
+ case 'error': return 'text-red-500';
1472
+ case 'warning': return 'text-yellow-500';
1473
+ case 'info': return 'text-blue-500';
1474
+ case 'question': return 'text-purple-500';
1475
+ case 'loading': return 'text-gray-500';
1476
+ default: return 'text-primary';
1477
+ }
1478
+ }
1479
+ else {
1480
+ return 'text-primary';
1481
+ }
1482
+ }
1483
+ // Buttons primary
1484
+ getButtonClass(type, monocromatic) {
1485
+ if (!monocromatic) {
1486
+ switch (type) {
1487
+ case 'success': return { 'success': true };
1488
+ case 'error': return { 'error': true };
1489
+ case 'warning': return { 'warning': true };
1490
+ case 'info': return { 'info': true };
1491
+ case 'question': return { 'question': true };
1492
+ case 'loading': return { 'loading': true };
1493
+ default: return { 'primary': true };
1494
+ }
1495
+ }
1496
+ else {
1497
+ return { 'primary': true };
1498
+ }
1499
+ }
1500
+ // Buttons secondary
1501
+ getButtonSecondaryClass(type, monocromatic) {
1502
+ if (!monocromatic) {
1503
+ switch (type) {
1504
+ case 'success': return { 'success_secondary': true };
1505
+ case 'error': return { 'error_secondary': true };
1506
+ case 'warning': return { 'warning_secondary': true };
1507
+ case 'info': return { 'info_secondary': true };
1508
+ case 'question': return { 'question_secondary': true };
1509
+ case 'loading': return { 'loading_secondary': true };
1510
+ default: return { 'secondary': true };
1511
+ }
1512
+ }
1513
+ else {
1514
+ return { 'secondary': true };
1515
+ }
1516
+ }
1517
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JColorsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1518
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JColorsService, providedIn: 'root' });
1519
+ }
1520
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JColorsService, decorators: [{
1521
+ type: Injectable,
1522
+ args: [{
1523
+ providedIn: 'root',
1524
+ }]
1525
+ }] });
1526
+
1356
1527
  class JAlertDialogService {
1357
1528
  isOpenSignal = signal(false);
1358
1529
  configSignal = signal(null);
@@ -1440,10 +1611,10 @@ class JAlertDialogService {
1440
1611
  this.closeDialog();
1441
1612
  }
1442
1613
  }
1443
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JAlertDialogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1444
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JAlertDialogService, providedIn: "root" });
1614
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JAlertDialogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1615
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JAlertDialogService, providedIn: "root" });
1445
1616
  }
1446
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JAlertDialogService, decorators: [{
1617
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JAlertDialogService, decorators: [{
1447
1618
  type: Injectable,
1448
1619
  args: [{
1449
1620
  providedIn: "root",
@@ -1693,15 +1864,15 @@ class JExcelService {
1693
1864
  bottom: { style: "thin" },
1694
1865
  right: { style: "thin" },
1695
1866
  };
1696
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JExcelService, deps: [{ token: i1$1.HttpClient }, { token: JConverterCrudService }], target: i0.ɵɵFactoryTarget.Injectable });
1697
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JExcelService, providedIn: "root" });
1867
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JExcelService, deps: [{ token: i1.HttpClient }, { token: JConverterCrudService }], target: i0.ɵɵFactoryTarget.Injectable });
1868
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JExcelService, providedIn: "root" });
1698
1869
  }
1699
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JExcelService, decorators: [{
1870
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JExcelService, decorators: [{
1700
1871
  type: Injectable,
1701
1872
  args: [{
1702
1873
  providedIn: "root",
1703
1874
  }]
1704
- }], ctorParameters: () => [{ type: i1$1.HttpClient }, { type: JConverterCrudService }] });
1875
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: JConverterCrudService }] });
1705
1876
 
1706
1877
  class JExcelFilterService {
1707
1878
  /**
@@ -1822,10 +1993,10 @@ class JExcelFilterService {
1822
1993
  const year = now.getFullYear();
1823
1994
  return `${day}-${month}-${year}`;
1824
1995
  }
1825
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JExcelFilterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1826
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JExcelFilterService, providedIn: 'root' });
1996
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JExcelFilterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1997
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JExcelFilterService, providedIn: 'root' });
1827
1998
  }
1828
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JExcelFilterService, decorators: [{
1999
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JExcelFilterService, decorators: [{
1829
2000
  type: Injectable,
1830
2001
  args: [{
1831
2002
  providedIn: 'root'
@@ -2097,10 +2268,10 @@ class JUploadFilterService {
2097
2268
  });
2098
2269
  return catalogs;
2099
2270
  }
2100
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JUploadFilterService, deps: [{ token: JConverterCrudService }, { token: JGenericCrudService }, { token: JAlertToastService }], target: i0.ɵɵFactoryTarget.Injectable });
2101
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JUploadFilterService, providedIn: 'root' });
2271
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JUploadFilterService, deps: [{ token: JConverterCrudService }, { token: JGenericCrudService }, { token: JAlertToastService }], target: i0.ɵɵFactoryTarget.Injectable });
2272
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JUploadFilterService, providedIn: 'root' });
2102
2273
  }
2103
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: JUploadFilterService, decorators: [{
2274
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: JUploadFilterService, decorators: [{
2104
2275
  type: Injectable,
2105
2276
  args: [{
2106
2277
  providedIn: 'root'
@@ -2109,20 +2280,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
2109
2280
 
2110
2281
  /*
2111
2282
  * Public API Surface of tailjng
2283
+ *
2284
+ * Services, interfaces, config, and shared utilities ship via npm.
2285
+ * UI components are installed into consumer apps via CLI: npx tailjng add <name>
2112
2286
  */
2113
- // ========================================
2114
2287
  // Config
2115
- // ========================================
2116
- // npm version patch
2117
- // npm run build
2118
- // cd dist/tailjng
2119
- // npm publish --access public
2120
- // npx tailjng add [component]
2121
- // npm login
2122
2288
 
2123
2289
  /**
2124
2290
  * Generated bundle index. Do not edit.
2125
2291
  */
2126
2292
 
2127
- export { JAlertDialogService, JAlertToastService, JCalendarService, JConverterCrudService, JDialogShared, JErrorHandlerHttpService, JExcelFilterService, JExcelService, JFileHttpService, JFormShared, JGenericCrudService, JIconsService, JParamsHttpService, JThemeService, JTransformService, JUploadFilterService, TAILJNG_CONFIG };
2293
+ export { JAlertDialogService, JAlertToastService, JCalendarService, JColorsService, JConverterCrudService, JDialogShared, JErrorHandlerHttpService, JExcelFilterService, JExcelService, JFileHttpService, JFormShared, JGenericCrudService, JIconsService, JParamsHttpService, JThemeService, JTransformService, JUploadFilterService, TAILJNG_CONFIG };
2128
2294
  //# sourceMappingURL=tailjng.mjs.map