phoenix-ui-components 4.0.1 → 4.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.
- package/CHANGELOG.md +639 -0
- package/README.md +37 -0
- package/dist/README.md +37 -0
- package/dist/fesm2022/phoenix-ui-components.mjs +1650 -581
- package/dist/fesm2022/phoenix-ui-components.mjs.map +1 -1
- package/dist/index.d.ts +267 -100
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -152,3 +152,40 @@ A custom duration can be passed as an optional second argument:
|
|
|
152
152
|
this.notificationService.warning('Large file detected.', 12000);
|
|
153
153
|
this.notificationService.error('Connection lost.', 10000);
|
|
154
154
|
```
|
|
155
|
+
|
|
156
|
+
## Components & Overlays
|
|
157
|
+
|
|
158
|
+
### Event Dataset Browser (`EventBrowserOverlayComponent`)
|
|
159
|
+
|
|
160
|
+
The **Event Dataset Browser** pre-scans all loaded events in the session and renders a sortable, filterable summary table with physics object counts per collection type, Missing Energy (MET), and run/event metadata.
|
|
161
|
+
|
|
162
|
+
#### Features
|
|
163
|
+
|
|
164
|
+
- **Physics-Aware Column Ordering**: Reconstructed physics objects (Jets, Muons, Electrons, Photons, Tracks) are ordered first, followed by detector-level collections (`CaloCells`, `Hits`).
|
|
165
|
+
- **Sortable & Filterable**: Support for column filters (`>=`, `<=`, `=`), minimum MET filters, and live search by event number.
|
|
166
|
+
- **Direct Event Navigation**: Clicking any event row jumps directly to that event in the 3D display.
|
|
167
|
+
- **Keyboard Navigation**: Arrow keys to navigate table rows + `Shift + Left/Right` to switch events globally.
|
|
168
|
+
|
|
169
|
+
#### Template Usage
|
|
170
|
+
|
|
171
|
+
```html
|
|
172
|
+
<app-event-browser-overlay></app-event-browser-overlay>
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
---
|
|
176
|
+
|
|
177
|
+
### Event Autoloader & Live Cycling (`CycleEventsComponent`)
|
|
178
|
+
|
|
179
|
+
`CycleEventsComponent` provides automated event cycling and live event feed reloading for beam monitoring and event slideshows.
|
|
180
|
+
|
|
181
|
+
#### Operational Modes
|
|
182
|
+
|
|
183
|
+
1. **Inactive**: Cycling paused.
|
|
184
|
+
2. **Active (Looping)**: Automatically advances through the list of loaded events at a fixed interval.
|
|
185
|
+
3. **Active + Reloading**: Automatically fetches/reloads new event data upon reaching the end of the event list (ideal for live event feeds).
|
|
186
|
+
|
|
187
|
+
#### Template Usage
|
|
188
|
+
|
|
189
|
+
```html
|
|
190
|
+
<app-cycle-events [interval]="3000" tooltip="Cycle through loaded events" icon="play"> </app-cycle-events>
|
|
191
|
+
```
|
package/dist/README.md
CHANGED
|
@@ -152,3 +152,40 @@ A custom duration can be passed as an optional second argument:
|
|
|
152
152
|
this.notificationService.warning('Large file detected.', 12000);
|
|
153
153
|
this.notificationService.error('Connection lost.', 10000);
|
|
154
154
|
```
|
|
155
|
+
|
|
156
|
+
## Components & Overlays
|
|
157
|
+
|
|
158
|
+
### Event Dataset Browser (`EventBrowserOverlayComponent`)
|
|
159
|
+
|
|
160
|
+
The **Event Dataset Browser** pre-scans all loaded events in the session and renders a sortable, filterable summary table with physics object counts per collection type, Missing Energy (MET), and run/event metadata.
|
|
161
|
+
|
|
162
|
+
#### Features
|
|
163
|
+
|
|
164
|
+
- **Physics-Aware Column Ordering**: Reconstructed physics objects (Jets, Muons, Electrons, Photons, Tracks) are ordered first, followed by detector-level collections (`CaloCells`, `Hits`).
|
|
165
|
+
- **Sortable & Filterable**: Support for column filters (`>=`, `<=`, `=`), minimum MET filters, and live search by event number.
|
|
166
|
+
- **Direct Event Navigation**: Clicking any event row jumps directly to that event in the 3D display.
|
|
167
|
+
- **Keyboard Navigation**: Arrow keys to navigate table rows + `Shift + Left/Right` to switch events globally.
|
|
168
|
+
|
|
169
|
+
#### Template Usage
|
|
170
|
+
|
|
171
|
+
```html
|
|
172
|
+
<app-event-browser-overlay></app-event-browser-overlay>
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
---
|
|
176
|
+
|
|
177
|
+
### Event Autoloader & Live Cycling (`CycleEventsComponent`)
|
|
178
|
+
|
|
179
|
+
`CycleEventsComponent` provides automated event cycling and live event feed reloading for beam monitoring and event slideshows.
|
|
180
|
+
|
|
181
|
+
#### Operational Modes
|
|
182
|
+
|
|
183
|
+
1. **Inactive**: Cycling paused.
|
|
184
|
+
2. **Active (Looping)**: Automatically advances through the list of loaded events at a fixed interval.
|
|
185
|
+
3. **Active + Reloading**: Automatically fetches/reloads new event data upon reaching the end of the event list (ideal for live event feeds).
|
|
186
|
+
|
|
187
|
+
#### Template Usage
|
|
188
|
+
|
|
189
|
+
```html
|
|
190
|
+
<app-cycle-events [interval]="3000" tooltip="Cycle through loaded events" icon="play"> </app-cycle-events>
|
|
191
|
+
```
|