@oicl/openbridge-webcomponents 2.0.0-next.82 → 2.0.0-next.84

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.
@@ -1 +1 @@
1
- {"version":3,"file":"readout-list-item.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"readout-list-item.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,94 +1,313 @@
1
1
  import { LitElement } from 'lit';
2
+ import { ObcTextboxFontWeight } from '../../components/textbox/textbox.js';
2
3
  import { AlertFrameConfig } from '../../components/alert-frame/alert-frame.js';
3
- import '../readout-setpoint/readout-setpoint.js';
4
+ import '../../components/textbox/textbox.js';
4
5
  import '../../icons/icon-input-right.js';
5
- export declare enum ReadoutListItemDataState {
6
- none = "none",
7
- lowIntegrity = "low-integrity",
8
- invalid = "invalid"
9
- }
6
+ import '../../icons/icon-notification-advice.js';
7
+ export { ObcTextboxFontWeight } from '../../components/textbox/textbox.js';
8
+ /**
9
+ * Density/size scale of the readout row.
10
+ * - `small`: regular value typography (smallest, densest).
11
+ * - `medium`: medium value typography.
12
+ * - `large`: large value typography.
13
+ */
10
14
  export declare enum ReadoutListItemSize {
11
- base = "base",
12
- priority = "priority",
13
- enhanced = "enhanced"
15
+ small = "small",
16
+ medium = "medium",
17
+ large = "large"
14
18
  }
19
+ /**
20
+ * Placement of the unit/source relative to the label and value.
21
+ * - `trailing-unit`: unit after the value, source after a trailing divider.
22
+ * - `leading-unit`: unit beside/under the label.
23
+ * - `leading-src`: source beside/under the label (no trailing source).
24
+ */
15
25
  export declare enum ReadoutListItemStacking {
16
26
  trailingUnit = "trailing-unit",
17
27
  leadingUnit = "leading-unit",
18
28
  leadingSrc = "leading-src"
19
29
  }
30
+ /**
31
+ * Colour emphasis of the value.
32
+ * - `regular`: neutral.
33
+ * - `enhanced`: accented (in-command) colour.
34
+ */
20
35
  export declare enum ReadoutListItemPriority {
21
36
  regular = "regular",
22
- enhanced = "enhanced",
23
- setpoint = "setpoint",
24
- setpointFlipFlop = "setpoint-flip-flop"
37
+ enhanced = "enhanced"
38
+ }
39
+ /**
40
+ * Measurement quality of the value. Orthogonal to the row-level `alert`
41
+ * – a low-integrity or invalid value can also sit inside an alert frame.
42
+ */
43
+ export declare enum ReadoutListItemDataQuality {
44
+ lowIntegrity = "low-integrity",
45
+ invalid = "invalid"
46
+ }
47
+ /**
48
+ * Corner style of the interactive (clickable) surface.
49
+ * - `squared` (default): no rounding (true rectangle).
50
+ * - `round-corners`: larger rounded corners.
51
+ * - `round`: fully rounded (pill).
52
+ */
53
+ export declare enum ReadoutListItemBorder {
54
+ squared = "squared",
55
+ round = "round",
56
+ roundCorners = "round-corners"
57
+ }
58
+ export interface ReadoutListItemClickable {
59
+ border?: ReadoutListItemBorder;
25
60
  }
26
61
  /**
27
- * `<obc-readout-list-item>` A compact inline readout row for lists.
62
+ * Per-block state shared by value / setpoint / advice / src. Each is independent
63
+ * of (and nests inside) the row-level `dataQuality` / `alert` props. All
64
+ * combinations are allowed.
65
+ */
66
+ export interface ReadoutBlockState {
67
+ /** Per-block measurement quality (low-integrity / invalid). */
68
+ dataQuality?: ReadoutListItemDataQuality;
69
+ /** Per-block alert frame; nests inside any row-level alert frame. */
70
+ alert?: false | AlertFrameConfig;
71
+ }
72
+ export interface ReadoutValueOptions extends ReadoutBlockState {
73
+ /** Render the unfilled leading positions as muted zeroes (requires `maxDigits`). */
74
+ hintedZeros?: boolean;
75
+ /**
76
+ * Value font weight — `regular` (default), `semibold`, or `bold` (the
77
+ * obc-textbox weights). Affects weight only; it does NOT change the colour
78
+ * (colour is driven by `priority`).
79
+ */
80
+ weight?: ObcTextboxFontWeight;
81
+ /** Show the `value-icon` slot before the value. */
82
+ hasIcon?: boolean;
83
+ /**
84
+ * Longest value string to reserve width for (e.g. `"0000.0"`), so rows align
85
+ * across different value lengths / `fractionDigits` — set the same value on
86
+ * every row. Combined with the `maxDigits`/`fractionDigits`-derived reserve by
87
+ * taking whichever is **wider**, so it never reserves less than the formatted
88
+ * value needs.
89
+ */
90
+ spaceReserver?: string;
91
+ }
92
+ /**
93
+ * How the setpoint segment behaves relative to the value.
94
+ * - `always-visible` (default): the setpoint is always shown.
95
+ * - `flip-flop`: value and setpoint swap emphasis (size) as the value reaches
96
+ * the setpoint.
97
+ * - `pop-up`: the setpoint is shown only while the value has not reached it,
98
+ * then fades out (100ms) once value === setpoint.
99
+ */
100
+ export declare enum ReadoutListItemSetpointInteraction {
101
+ alwaysVisible = "always-visible",
102
+ flipFlop = "flip-flop",
103
+ popUp = "pop-up"
104
+ }
105
+ export interface ReadoutSetpointOptions extends ReadoutBlockState {
106
+ hintedZeros?: boolean;
107
+ /** How the setpoint behaves relative to the value (default `always-visible`). */
108
+ interaction?: ReadoutListItemSetpointInteraction;
109
+ /**
110
+ * The user is physically interacting with (adjusting) the setpoint — the
111
+ * "focus" visual state. Same convention as `touching` on the instrument
112
+ * setpoint marker (`SetpointMixin` / `svghelpers/setpoint.ts`): keeps the
113
+ * setpoint visible and shows the lighter-blue focus triangle.
114
+ */
115
+ touching?: boolean;
116
+ /** Longest value string to reserve width for; see {@link ReadoutValueOptions.spaceReserver}. */
117
+ spaceReserver?: string;
118
+ }
119
+ export interface ReadoutAdviceOptions extends ReadoutBlockState {
120
+ hintedZeros?: boolean;
121
+ /** Longest value string to reserve width for; see {@link ReadoutValueOptions.spaceReserver}. */
122
+ spaceReserver?: string;
123
+ }
124
+ export interface ReadoutReserverOptions {
125
+ /** Longest expected string to reserve width for (aligns multiple rows), e.g. `"miles"`. */
126
+ spaceReserver?: string;
127
+ }
128
+ export interface ReadoutSrcOptions extends ReadoutBlockState {
129
+ /** Longest expected source string to reserve width for; see {@link ReadoutReserverOptions.spaceReserver}. */
130
+ spaceReserver?: string;
131
+ }
132
+ /**
133
+ * `<obc-readout-list-item>` – A compact, dense readout row for lists and tables.
28
134
  *
29
- * Renders a compact label/value/unit composition with a dedicated size scale and stacking modes for unit and source placement. Use it when you need dense, consistent readout rows in tables or lists without bringing in the full `<obc-readout>` segment layout.
135
+ * Renders a label, an optional source, an optional unit, and up to three
136
+ * cap-height "readout building blocks" – advice, setpoint, and value – each a
137
+ * fixed-width-reservable numeric segment. Dynamic data is passed as top-level
138
+ * primitives (`value`, `setpoint`, `advice`, `label`, `unit`, `src`). Global
139
+ * layout/format is configured via top-level props (`size`, `priority`,
140
+ * `stacking`, `hasDegree`, `dataQuality`, `alert`, …) and per-block tweaks via one
141
+ * object per block (`valueOptions`, `setpointOptions`, `adviceOptions`,
142
+ * `unitOptions`, `srcOptions`).
30
143
  *
31
144
  * ### Features
32
- * - **Sizes:** `base`, `priority`, and `enhanced` typography/padding scales.
33
- * - **Stacking modes:** `trailing-unit`, `leading-unit`, and `leading-src` control where unit/source appear relative to the label/value.
34
- * - **Priority styling:** `priority` controls emphasis and setpoint presentation (`regular`, `enhanced`, `setpoint`, `setpoint-flip-flop`).
35
- * - **Data states:** Supports `dataState` styling for `low-integrity` and `invalid` data quality.
36
- * - **Alert frame:** Optional `alert` wrapper for caution, warning, alarm, and other alert-frame statuses.
37
- * - **Formatting:** Supports numeric formatting, fixed-length width templates, hinted zeros, and optional degree suffix (`°`).
145
+ * - **Building blocks:** value, optional setpoint, and optional advice segments,
146
+ * each cap-height-aligned and able to reserve a stable width.
147
+ * - **Sizes:** `small`, `medium`, `large` density scales.
148
+ * - **Stacking:** `trailing-unit`, `leading-unit`, `leading-src` placement.
149
+ * - **Priority:** `regular`/`enhanced` colour emphasis; per-value `weight`
150
+ * (`regular`/`semibold`/`bold`) is independent of colour.
151
+ * - **Setpoint flip-flop:** swaps emphasis between value and setpoint as the
152
+ * value reaches the setpoint.
153
+ * - **Data quality:** `low-integrity`/`invalid` styling, combinable with `alert`.
154
+ * - **Alert frame:** optional `alert` wrapper (caution/warning/alarm/level).
155
+ * - **Clickable:** optionally rendered as a focusable button with `squared`,
156
+ * `round-corners`, or `round` corners.
157
+ * - **Formatting:** shared `fractionDigits`, width reservation via `maxDigits`
158
+ * and per-segment `hintedZeros`; a `null` value renders a dash (`-`).
38
159
  *
39
160
  * ### Usage Guidelines
40
- * Use this component for dense readouts in list contexts. Prefer `<obc-readout>` when you need multi-segment advice/setpoint/source composition, rich layouts, or source picker/flyout behavior.
161
+ * Use for dense readout rows in lists/tables. Prefer `<obc-readout>` for rich
162
+ * multi-segment instrument layouts, source pickers, or flyout behaviour.
163
+ *
164
+ * @experimental This component is the pilot for the new primitives + per-block
165
+ * options Readout API; its API may change in a future release.
41
166
  *
42
167
  * ### Slots
43
- * | Slot Name | Renders When | Purpose |
44
- * |---------------|--------------------------|---------|
45
- * | leading-icon | `hasLeadingIcon` is true | Optional leading icon before the label. |
46
- * | value-icon | `hasValueIcon` is true | Optional icon next to the value. |
168
+ * | Slot Name | Renders When | Purpose |
169
+ * |---------------|-------------------------------|------------------------------------------|
170
+ * | leading-icon | `hasLeadingIcon` | Icon before the label. |
171
+ * | value-icon | `valueOptions.hasIcon` | Icon before the value. |
172
+ * | setpoint-icon | `hasSetpoint` | Overrides the default setpoint icon. |
173
+ * | advice-icon | `hasAdvice` | Overrides the default advice icon. |
47
174
  *
48
- * @slot leading-icon - Optional leading icon before the label.
49
- * @slot value-icon - Optional icon next to the value.
175
+ * @slot leading-icon - Icon before the label.
176
+ * @slot value-icon - Icon before the value.
177
+ * @slot setpoint-icon - Overrides the default setpoint icon.
178
+ * @slot advice-icon - Overrides the default advice icon.
50
179
  */
51
180
  export declare class ObcReadoutListItem extends LitElement {
52
- size: ReadoutListItemSize;
53
- stacking: ReadoutListItemStacking;
54
- priority: ReadoutListItemPriority;
55
- dataState: ReadoutListItemDataState;
56
- alert: AlertFrameConfig | boolean;
57
- label: string;
58
- unit: string;
59
- src: string;
60
- value: number | undefined;
61
- setpointValue: number | undefined;
181
+ label?: string;
182
+ unit?: string;
183
+ src?: string;
184
+ hasValue: boolean;
185
+ value: number | null;
186
+ /** Render the value as the literal "OFF" (e.g. equipment powered down). Affects the value only. */
187
+ off: boolean;
62
188
  hasSetpoint: boolean;
63
- hasDegree: boolean;
64
- hasUnit: boolean;
65
- hasLabel: boolean;
66
- hasSource: boolean;
189
+ /** @availableWhen hasSetpoint==true */
190
+ setpoint?: number;
191
+ hasAdvice: boolean;
192
+ /** @availableWhen hasAdvice==true */
193
+ advice?: number;
194
+ size?: ReadoutListItemSize;
195
+ priority?: ReadoutListItemPriority;
196
+ stacking?: ReadoutListItemStacking;
197
+ clickable: boolean | ReadoutListItemClickable;
67
198
  hasLeadingIcon: boolean;
68
- hasValueIcon: boolean;
199
+ hasDegree: boolean;
200
+ hasDegreeSpacer: boolean;
69
201
  fractionDigits: number;
70
- showZeroPadding: boolean;
71
- minValueLength: number;
72
- hasHintedZeros: boolean;
73
- labelOnly: boolean;
74
- private get resolvedMainValueSize();
75
- private get resolvedValueSize();
76
- private get resolvedValueTypography();
77
- private get resolvedSetpointSize();
78
- private get resolvedActualPriority();
79
- private get resolvedActualMode();
80
- private get resolvedSetpointPriority();
81
- private get resolvedSetpointMode();
82
- private get showsTrailingSource();
83
- private get stacksLeadingUnitVertically();
84
- private get stacksLeadingSrcVertically();
202
+ maxDigits: number;
203
+ dataQuality?: ReadoutListItemDataQuality;
204
+ alert: boolean | AlertFrameConfig;
205
+ valueOptions?: ReadoutValueOptions;
206
+ setpointOptions?: ReadoutSetpointOptions;
207
+ adviceOptions?: ReadoutAdviceOptions;
208
+ unitOptions?: ReadoutReserverOptions;
209
+ srcOptions?: ReadoutSrcOptions;
210
+ /** Pop-up deferred-hide phase for the setpoint (see {@link updated}). */
211
+ private deferredSetpointHidePhase;
212
+ private deferredSetpointHideTimer?;
213
+ private hasCompletedFirstUpdate;
214
+ private get resolvedSize();
215
+ private get resolvedStacking();
216
+ private get resolvedPriority();
217
+ private get resolvedFractionDigits();
218
+ private get resolvedMaxDigits();
219
+ private get resolvedClickable();
220
+ private get isAtSetpoint();
221
+ private get resolvedSetpointInteraction();
222
+ private get isFlipFlop();
223
+ private get isPopUp();
224
+ private get setpointTouching();
225
+ /**
226
+ * The setpoint is rendered "emphasised" (primary size + SemiBold weight) when
227
+ * it is the focus of attention: while actively adjusting (`touching`), or while
228
+ * a flip-flop has the value away from the setpoint. Otherwise it is a secondary
229
+ * (smaller, regular-weight) reference next to the value.
230
+ */
231
+ private get isSetpointEmphasized();
232
+ /**
233
+ * The row's enhanced (in-command) colour state, applied uniformly to BOTH the
234
+ * value and the setpoint — they are always either both neutral or both enhanced
235
+ * (never a blue setpoint next to a grey value). Driven by `priority` only;
236
+ * `valueOptions.weight` changes weight, not colour.
237
+ */
238
+ private get rowEnhanced();
239
+ /** Primary value-typography size for the current density tier. */
240
+ private get primarySize();
241
+ /** Secondary (de-emphasised) value-typography size for the current density tier. */
242
+ private get secondarySize();
243
+ private get valueSize();
244
+ private get setpointSize();
245
+ /** Value font weight passes straight to obc-textbox; regular when unset. Colour is separate. */
246
+ private get valueWeight();
247
+ /** Setpoint is SemiBold only while emphasised, otherwise regular weight. */
248
+ private get setpointWeight();
249
+ private numericFormatOptions;
250
+ /** Widest possible value string for width reservation (e.g. `"000.0"`). */
251
+ private get reserverText();
252
+ /**
253
+ * Effective width reserver for a numeric block: the wider of the explicit
254
+ * `spaceReserver` and the `maxDigits`/`fractionDigits`-derived reserve, so an
255
+ * explicit reserver can never reserve *less* than the formatted value needs.
256
+ * Under tabular-nums the rendered width is proportional to character count, so
257
+ * "wider" compares string length.
258
+ */
259
+ private widerReserver;
260
+ /** classMap fragment for a block / source carrying per-block data quality. */
261
+ private dataQualityClasses;
262
+ private renderIcon;
263
+ private renderBlock;
264
+ /**
265
+ * A cap-height `°` column whose width scales with the value size. Used after
266
+ * the value (as the value↔unit boundary, via {@link renderValueUnitGap}) and
267
+ * inside the setpoint / advice blocks. `inherit` makes the glyph take the
268
+ * surrounding block's colour (setpoint/advice); otherwise it uses the value
269
+ * colour, optionally `enhanced`.
270
+ */
271
+ private renderDegreeGlyph;
272
+ /**
273
+ * The gap rendered between the value digits and the unit.
274
+ *
275
+ * - `hasDegree`: a cap-height `°` column whose width scales with the value
276
+ * size (the `°` replaces the default gap).
277
+ * - otherwise: the default 2px gap (only when a trailing unit follows).
278
+ *
279
+ * `hasDegreeSpacer` deliberately does NOT add anything here — it keeps the 2px
280
+ * gap and instead widens the unit column via {@link renderDegreeSpacer} (a
281
+ * spacer AFTER the unit). That way a non-degree row's value digits stay
282
+ * aligned with degree rows (degree column width = spacer width + 2px gap)
283
+ * while its unit shifts left. Mirrors Figma `1:2920` (spacer) / `1:2970`
284
+ * (degree).
285
+ *
286
+ * TODO(designer): cross-size alignment is deferred. Degree rows of different
287
+ * value sizes have different `°` column widths (6/8/12px), so their value digit
288
+ * edges stagger by `degree-width`. For degree rows of mixed sizes you cannot
289
+ * align the value digit edges AND keep the unit column aligned — resolving it
290
+ * needs a design decision (a constant degree reserve, which widens the smaller
291
+ * rows' `°`, OR pinning the value edge and letting the unit column stagger).
292
+ */
293
+ private renderValueUnitGap;
294
+ /**
295
+ * A spacer rendered AFTER the unit when `hasDegreeSpacer` is set on a
296
+ * non-degree row. Its width (`degree-compensation-padding`) = the degree
297
+ * column width minus the 2px gap, so the row's value digits align with degree
298
+ * rows in the same column while its unit shifts left. See
299
+ * {@link renderValueUnitGap}.
300
+ */
301
+ private renderDegreeSpacer;
302
+ private renderTextbox;
303
+ private renderValueCluster;
85
304
  private renderLabelContainer;
86
- private renderValueIconSlot;
87
- private renderSetpoint;
88
- private renderActualValue;
89
- private renderValue;
90
305
  private renderTrailingUnit;
91
306
  private renderTrailingSource;
307
+ private renderContent;
308
+ updated(changed: Map<string, unknown>): void;
309
+ private clearDeferredSetpointHide;
310
+ disconnectedCallback(): void;
92
311
  render(): import('lit-html').HTMLTemplateResult;
93
312
  static styles: import('lit').CSSResult;
94
313
  }
@@ -1 +1 @@
1
- {"version":3,"file":"readout-list-item.d.ts","sourceRoot":"","sources":["../../../src/navigation-instruments/readout-list-item/readout-list-item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAA2B,MAAM,KAAK,CAAC;AAQzD,OAAO,yCAAyC,CAAC;AACjD,OAAO,iCAAiC,CAAC;AAEzC,OAAO,EACL,KAAK,gBAAgB,EAEtB,MAAM,6CAA6C,CAAC;AAErD,oBAAY,wBAAwB;IAClC,IAAI,SAAS;IACb,YAAY,kBAAkB;IAC9B,OAAO,YAAY;CACpB;AAED,oBAAY,mBAAmB;IAC7B,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,QAAQ,aAAa;CACtB;AAED,oBAAY,uBAAuB;IACjC,YAAY,kBAAkB;IAC9B,WAAW,iBAAiB;IAC5B,UAAU,gBAAgB;CAC3B;AAED,oBAAY,uBAAuB;IACjC,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,gBAAgB,uBAAuB;CACxC;AAED;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,qBACa,kBAAmB,SAAQ,UAAU;IACtB,IAAI,EAAE,mBAAmB,CACxB;IAE3B,QAAQ,EAAE,uBAAuB,CAAwC;IAEzE,QAAQ,EAAE,uBAAuB,CAAmC;IAEpE,SAAS,EAAE,wBAAwB,CAAiC;IAE1C,KAAK,EAAE,gBAAgB,GAAG,OAAO,CAAS;IAE1C,KAAK,SAAM;IACX,IAAI,SAAM;IACV,GAAG,SAAM;IAET,KAAK,EAAE,MAAM,GAAG,SAAS,CAAa;IACtC,aAAa,EAAE,MAAM,GAAG,SAAS,CAAa;IAE7C,WAAW,UAAS;IAEpB,SAAS,UAAS;IAClB,OAAO,UAAS;IAChB,QAAQ,UAAS;IACjB,SAAS,UAAS;IAClB,cAAc,UAAS;IACvB,YAAY,UAAS;IAEtB,cAAc,SAAK;IAClB,eAAe,UAAS;IAEzB,cAAc,SAAK;IAClB,cAAc,UAAS;IAEvB,SAAS,UAAS;IAE7C,OAAO,KAAK,qBAAqB,GAMhC;IAED,OAAO,KAAK,iBAAiB,GAe5B;IAED,OAAO,KAAK,uBAAuB,GA0BlC;IAED,OAAO,KAAK,oBAAoB,GAa/B;IAED,OAAO,KAAK,sBAAsB,GAWjC;IAED,OAAO,KAAK,kBAAkB,GAI7B;IAED,OAAO,KAAK,wBAAwB,GASnC;IAED,OAAO,KAAK,oBAAoB,GAQ/B;IAED,OAAO,KAAK,mBAAmB,GAI9B;IAED,OAAO,KAAK,2BAA2B,GAKtC;IAED,OAAO,KAAK,0BAA0B,GAKrC;IAED,OAAO,CAAC,oBAAoB;IA+C5B,OAAO,CAAC,mBAAmB;IAS3B,OAAO,CAAC,cAAc;IA0BtB,OAAO,CAAC,iBAAiB;IAuBzB,OAAO,CAAC,WAAW;IAYnB,OAAO,CAAC,kBAAkB;IAa1B,OAAO,CAAC,oBAAoB;IAanB,MAAM;IAkDf,OAAgB,MAAM,0BAA6B;CACpD;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,uBAAuB,EAAE,kBAAkB,CAAC;KAC7C;CACF"}
1
+ {"version":3,"file":"readout-list-item.d.ts","sourceRoot":"","sources":["../../../src/navigation-instruments/readout-list-item/readout-list-item.ts"],"names":[],"mappings":"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"}