tailjng 0.0.1 → 0.0.2
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/fesm2022/tailjng.mjs +4301 -29
- package/fesm2022/tailjng.mjs.map +1 -1
- package/lib/colors/colors.service.d.ts +16 -0
- package/lib/colors/theme/elements/theme.service.d.ts +15 -0
- package/lib/colors/theme/theme.component.d.ts +87 -0
- package/lib/components/alert-dialog/alert-dialog.component.d.ts +24 -0
- package/lib/components/alert-dialog/elements/alert-dialog.interface.d.ts +41 -0
- package/lib/components/alert-dialog/elements/alert-dialog.service.d.ts +24 -0
- package/lib/components/alert-toast/alert-toast.component.d.ts +27 -0
- package/lib/components/alert-toast/elements/alert-toast.interface.d.ts +47 -0
- package/lib/components/alert-toast/elements/alert-toast.service.d.ts +26 -0
- package/lib/components/button/button.component.d.ts +35 -0
- package/lib/components/checkbox/checkbox.component.d.ts +21 -0
- package/lib/components/code-block/code-block.component.d.ts +17 -0
- package/lib/components/crud/card-component/card.component.d.ts +91 -0
- package/lib/components/crud/filter-component/elements/filter.interface.d.ts +62 -0
- package/lib/components/crud/filter-component/filter.component.d.ts +54 -0
- package/lib/components/crud/form-component/components/content-form/content-form.component.d.ts +8 -0
- package/lib/components/crud/form-component/form.component.d.ts +29 -0
- package/lib/components/crud/paginator-component/paginator.component.d.ts +27 -0
- package/lib/components/crud/table-component/elements/table.interface.d.ts +65 -0
- package/lib/components/crud/table-component/table.component.d.ts +97 -0
- package/lib/components/dialog/dialog.component.d.ts +37 -0
- package/lib/components/input/input.component.d.ts +47 -0
- package/lib/components/label/label.component.d.ts +13 -0
- package/lib/components/mode-toggle/mode-toggle.component.d.ts +15 -0
- package/lib/components/select/option/option.component.d.ts +15 -0
- package/lib/components/select/select.component.d.ts +93 -0
- package/lib/components/toggle-radio/toggle-radio.component.d.ts +48 -0
- package/lib/http/api-url.d.ts +2 -0
- package/lib/http/converter.service.d.ts +21 -0
- package/lib/http/crud-generic.service.d.ts +86 -0
- package/lib/http/http-error.service.d.ts +24 -0
- package/lib/http/http-rest.service.d.ts +9 -0
- package/lib/http/interface/api-response.d.ts +20 -0
- package/lib/service/calendar.service.d.ts +26 -0
- package/lib/shared/dialog.shared.d.ts +9 -0
- package/lib/shared/form.shared.d.ts +28 -0
- package/package.json +1 -1
- package/public-api.d.ts +26 -3
- package/lib/tailjng.component.d.ts +0 -5
- package/lib/tailjng.service.d.ts +0 -6
- /package/lib/{tooltip → components/tooltip}/tooltip.directive.d.ts +0 -0
- /package/lib/{tooltip → components/tooltip}/tooltip.service.d.ts +0 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class JCalendarService {
|
|
3
|
+
nameDaysAb: string[];
|
|
4
|
+
nameDays: string[];
|
|
5
|
+
nameMontsAb: string[];
|
|
6
|
+
nameMonts: string[];
|
|
7
|
+
private readonly dialogState;
|
|
8
|
+
dialogState$: import("rxjs").Observable<boolean>;
|
|
9
|
+
constructor();
|
|
10
|
+
showDialog(): void;
|
|
11
|
+
hideDialog(): void;
|
|
12
|
+
getMonthFromDate(date: Date | string): string;
|
|
13
|
+
calculateAge(birth: Date | string): number;
|
|
14
|
+
calculateAgeComplete(birth: Date | string): {
|
|
15
|
+
years: number;
|
|
16
|
+
months: number;
|
|
17
|
+
days: number;
|
|
18
|
+
};
|
|
19
|
+
formatearFechaString(date: string, month?: number): string;
|
|
20
|
+
formatearFechaDate(date: Date, month?: number): string;
|
|
21
|
+
formatMonthYear(date: Date): string;
|
|
22
|
+
formatDateToBogota(date: Date): string;
|
|
23
|
+
formatRelativeDate(date: string): string;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JCalendarService, never>;
|
|
25
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<JCalendarService>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class JDialogShared {
|
|
3
|
+
openDialog: boolean;
|
|
4
|
+
constructor();
|
|
5
|
+
onOpen(): void;
|
|
6
|
+
onClose(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JDialogShared, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<JDialogShared>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { AbstractControl } from '@angular/forms';
|
|
2
|
+
import { FormType } from '../components/crud/form-component/form.component';
|
|
3
|
+
import { JAlertToastService } from '../../public-api';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class JFormShared {
|
|
6
|
+
private readonly alertToastService;
|
|
7
|
+
icons: {
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
};
|
|
10
|
+
onResetCallback: (() => void) | null;
|
|
11
|
+
isLoading: boolean;
|
|
12
|
+
openForm: boolean;
|
|
13
|
+
typeForm: FormType;
|
|
14
|
+
formControls: {
|
|
15
|
+
[key: string]: AbstractControl | null;
|
|
16
|
+
};
|
|
17
|
+
messages: {
|
|
18
|
+
title: string;
|
|
19
|
+
description: string;
|
|
20
|
+
} | null;
|
|
21
|
+
constructor(alertToastService: JAlertToastService);
|
|
22
|
+
onOpen(): void;
|
|
23
|
+
onClose(): void;
|
|
24
|
+
onValidateChange(validation: boolean): boolean;
|
|
25
|
+
onTableDataLoaded(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JFormShared, never>;
|
|
27
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<JFormShared>;
|
|
28
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
-
export * from './lib/
|
|
2
|
-
export * from './lib/
|
|
3
|
-
export * from './lib/
|
|
1
|
+
export * from './lib/components/mode-toggle/mode-toggle.component';
|
|
2
|
+
export * from './lib/components/tooltip/tooltip.directive';
|
|
3
|
+
export * from './lib/components/label/label.component';
|
|
4
|
+
export * from './lib/components/input/input.component';
|
|
5
|
+
export * from './lib/components/checkbox/checkbox.component';
|
|
6
|
+
export * from './lib/components/button/button.component';
|
|
7
|
+
export * from './lib/shared/dialog.shared';
|
|
8
|
+
export * from './lib/components/dialog/dialog.component';
|
|
9
|
+
export * from './lib/components/alert-toast/elements/alert-toast.service';
|
|
10
|
+
export * from './lib/components/alert-toast/alert-toast.component';
|
|
11
|
+
export * from './lib/components/alert-dialog/elements/alert-dialog.service';
|
|
12
|
+
export * from './lib/components/alert-dialog/alert-dialog.component';
|
|
13
|
+
export * from './lib/http/api-url';
|
|
14
|
+
export * from './lib/http/crud-generic.service';
|
|
15
|
+
export * from './lib/http/http-rest.service';
|
|
16
|
+
export * from './lib/http/http-error.service';
|
|
17
|
+
export * from './lib/components/select/select.component';
|
|
18
|
+
export * from './lib/components/toggle-radio/toggle-radio.component';
|
|
19
|
+
export * from './lib/colors/theme/theme.component';
|
|
20
|
+
export * from './lib/components/crud/card-component/card.component';
|
|
21
|
+
export * from './lib/components/crud/filter-component/filter.component';
|
|
22
|
+
export * from './lib/shared/form.shared';
|
|
23
|
+
export * from './lib/components/crud/form-component/form.component';
|
|
24
|
+
export * from './lib/components/crud/paginator-component/paginator.component';
|
|
25
|
+
export * from './lib/components/crud/table-component/table.component';
|
|
26
|
+
export * from './lib/components/code-block/code-block.component';
|
package/lib/tailjng.service.d.ts
DELETED
|
File without changes
|
|
File without changes
|