@multisystemsuite/timezone-engine-angular 3.0.1 → 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.
Files changed (2) hide show
  1. package/README.md +29 -12
  2. package/package.json +16 -7
package/README.md CHANGED
@@ -27,7 +27,12 @@ import {
27
27
  TeFormatDatePipe,
28
28
  TeRelativeTimePipe,
29
29
  WorldClockComponent,
30
- SchedulerComponent,
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 | Purpose |
55
- | ------------------------- | ------------------------------------ |
56
- | `TimezoneService` | Format, convert, detect, world clock |
57
- | `WorldClockService` | RxJS live clock observable |
58
- | `TeFormatDatePipe` | Locale-aware date pipe |
59
- | `TeRelativeTimePipe` | "2 hours ago" pipe |
60
- | `TeTimezonePipe` | Convert date to target timezone |
61
- | `WorldClockComponent` | Standalone world clock |
62
- | `LiveClockComponent` | Standalone live time |
63
- | `SchedulerComponent` | Meeting participant scheduler |
64
- | `TIMEZONE_ENGINE_IMPORTS` | Bundle all standalone imports |
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
 
@@ -81,6 +94,10 @@ providers: [
81
94
  - `@multisystemsuite/timezone-engine-core` — shared logic
82
95
  - `@multisystemsuite/timezone-engine-scheduler` — backend scheduling
83
96
 
97
+ ## Keywords
98
+
99
+ `timezone`, `angular`, `pipes`, `components`, `services`, `typescript`, `enterprise`
100
+
84
101
  ## License
85
102
 
86
103
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@multisystemsuite/timezone-engine-angular",
3
- "version": "3.0.1",
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-business-hours": "3.0.1",
38
- "@multisystemsuite/timezone-engine-scheduler": "3.0.1",
39
- "@multisystemsuite/timezone-engine-core": "3.0.1",
40
- "@multisystemsuite/timezone-engine-shift-engine": "3.0.1",
41
- "@multisystemsuite/timezone-engine-shared-types": "3.0.1",
42
- "@multisystemsuite/timezone-engine-world-data": "3.0.1"
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",
@@ -54,6 +54,15 @@
54
54
  "typescript": "^5.7.2",
55
55
  "vitest": "^2.1.8"
56
56
  },
57
+ "keywords": [
58
+ "timezone",
59
+ "angular",
60
+ "pipes",
61
+ "components",
62
+ "services",
63
+ "typescript",
64
+ "enterprise"
65
+ ],
57
66
  "scripts": {
58
67
  "build": "tsup",
59
68
  "dev": "tsup --watch",