@multisystemsuite/timezone-engine-angular 4.0.0 → 5.0.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.
- package/README.md +25 -12
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -27,7 +27,12 @@ import {
|
|
|
27
27
|
TeFormatDatePipe,
|
|
28
28
|
TeRelativeTimePipe,
|
|
29
29
|
WorldClockComponent,
|
|
30
|
-
|
|
30
|
+
BusinessHoursComponent,
|
|
31
|
+
ShiftPlannerComponent,
|
|
32
|
+
GlobalMeetingPlannerComponent,
|
|
33
|
+
TIMEZONE_BUSINESS_HOURS_IMPORTS,
|
|
34
|
+
TIMEZONE_SHIFT_ENGINE_IMPORTS,
|
|
35
|
+
TIMEZONE_SCHEDULER_IMPORTS,
|
|
31
36
|
} from "@multisystemsuite/timezone-engine-angular";
|
|
32
37
|
|
|
33
38
|
@Component({
|
|
@@ -51,17 +56,25 @@ export class DashboardComponent {
|
|
|
51
56
|
|
|
52
57
|
## Exports
|
|
53
58
|
|
|
54
|
-
| Export
|
|
55
|
-
|
|
|
56
|
-
| `TimezoneService`
|
|
57
|
-
| `WorldClockService`
|
|
58
|
-
| `TeFormatDatePipe`
|
|
59
|
-
| `TeRelativeTimePipe`
|
|
60
|
-
| `TeTimezonePipe`
|
|
61
|
-
| `WorldClockComponent`
|
|
62
|
-
| `LiveClockComponent`
|
|
63
|
-
| `SchedulerComponent`
|
|
64
|
-
| `
|
|
59
|
+
| Export | Purpose |
|
|
60
|
+
| --------------------------------- | ------------------------------------ |
|
|
61
|
+
| `TimezoneService` | Format, convert, detect, world clock |
|
|
62
|
+
| `WorldClockService` | RxJS live clock observable |
|
|
63
|
+
| `TeFormatDatePipe` | Locale-aware date pipe |
|
|
64
|
+
| `TeRelativeTimePipe` | "2 hours ago" pipe |
|
|
65
|
+
| `TeTimezonePipe` | Convert date to target timezone |
|
|
66
|
+
| `WorldClockComponent` | Standalone world clock |
|
|
67
|
+
| `LiveClockComponent` | Standalone live time |
|
|
68
|
+
| `SchedulerComponent` | Meeting participant scheduler |
|
|
69
|
+
| `BusinessHoursComponent` | Open/closed status widget |
|
|
70
|
+
| `ShiftPlannerComponent` | Active shifts display |
|
|
71
|
+
| `GlobalMeetingPlannerComponent` | Cross-region meeting planner |
|
|
72
|
+
| `DateFormatPipe` | Alias for `TeFormatDatePipe` |
|
|
73
|
+
| `RealtimeClockComponent` | Alias for `LiveClockComponent` |
|
|
74
|
+
| `TIMEZONE_ENGINE_IMPORTS` | Bundle all standalone imports |
|
|
75
|
+
| `TIMEZONE_BUSINESS_HOURS_IMPORTS` | Business hours module bundle |
|
|
76
|
+
| `TIMEZONE_SHIFT_ENGINE_IMPORTS` | Shift engine module bundle |
|
|
77
|
+
| `TIMEZONE_SCHEDULER_IMPORTS` | Scheduler + meeting planner bundle |
|
|
65
78
|
|
|
66
79
|
## Config injection
|
|
67
80
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@multisystemsuite/timezone-engine-angular",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Angular services, pipes, and components for @multisystemsuite/timezone-engine",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "MultiSystemSuite",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"README.md"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@multisystemsuite/timezone-engine-
|
|
38
|
-
"@multisystemsuite/timezone-engine-
|
|
39
|
-
"@multisystemsuite/timezone-engine-scheduler": "
|
|
40
|
-
"@multisystemsuite/timezone-engine-
|
|
41
|
-
"@multisystemsuite/timezone-engine-shift-engine": "
|
|
42
|
-
"@multisystemsuite/timezone-engine-world-data": "
|
|
37
|
+
"@multisystemsuite/timezone-engine-business-hours": "5.0.0",
|
|
38
|
+
"@multisystemsuite/timezone-engine-shared-types": "5.0.0",
|
|
39
|
+
"@multisystemsuite/timezone-engine-scheduler": "5.0.0",
|
|
40
|
+
"@multisystemsuite/timezone-engine-core": "5.0.0",
|
|
41
|
+
"@multisystemsuite/timezone-engine-shift-engine": "5.0.0",
|
|
42
|
+
"@multisystemsuite/timezone-engine-world-data": "5.0.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@angular/common": ">=17.0.0",
|