jconsumer-shared 1.2.1 → 1.2.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/esm2022/lib/calendar/time/jaldee-time-service.mjs +203 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/jconsumer-shared.mjs +201 -1
- package/fesm2022/jconsumer-shared.mjs.map +1 -1
- package/jconsumer-shared-1.2.2.tgz +0 -0
- package/lib/calendar/time/jaldee-time-service.d.ts +28 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/jconsumer-shared-1.2.1.tgz +0 -0
|
Binary file
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { DateTimeProcessor } from "../date-time/datetime-processor.service";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class JaldeeTimeService {
|
|
4
|
+
private dateTimeProcessor;
|
|
5
|
+
moment: any;
|
|
6
|
+
constructor(dateTimeProcessor: DateTimeProcessor);
|
|
7
|
+
/**
|
|
8
|
+
*
|
|
9
|
+
* @param interval
|
|
10
|
+
* @param startTime
|
|
11
|
+
* @param endTime
|
|
12
|
+
* @returns
|
|
13
|
+
*/
|
|
14
|
+
getTimeSlotsFromQTimings(interval: any, startTime: any, endTime: any): any[];
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @param schedule_arr
|
|
18
|
+
* @returns
|
|
19
|
+
*/
|
|
20
|
+
arrageScheduleforDisplay(schedule_arr: any): any[];
|
|
21
|
+
getminutesOfDay(m: any): number;
|
|
22
|
+
getTimeinMin(time: any): number;
|
|
23
|
+
prepareScheduleforSaving(schedule_arr: any): any[];
|
|
24
|
+
formatTime(hours: any, minutes: any): string;
|
|
25
|
+
AMHourto24Time(time12: any): string;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JaldeeTimeService, never>;
|
|
27
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<JaldeeTimeService>;
|
|
28
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export * from './lib/pipes/short-filename/short-file-name.pipe';
|
|
|
43
43
|
export * from './lib/form-message/form-message-display.service';
|
|
44
44
|
export * from './lib/form-message/form-message-display.module';
|
|
45
45
|
export * from './lib/calendar/date-time/datetime-processor.service';
|
|
46
|
+
export * from './lib/calendar/time/jaldee-time-service';
|
|
46
47
|
export * from './lib/timezone-converter';
|
|
47
48
|
export * from './lib/form-message/form-success-display/form-success-display.component';
|
|
48
49
|
export * from './lib/form-message/field-error-display/field-error-display.component';
|
|
Binary file
|