@namiml/web-sdk 3.4.4-dev.202607022250 → 3.4.4-dev.202607071644

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.
@@ -219,8 +219,15 @@ declare class NamiSegmentPicker extends NamiElement {
219
219
  inFocusedState: boolean;
220
220
  scaleFactor: number;
221
221
  minSDKVersion: TSemverObj;
222
+ /** Whether any item in this picker is currently focused (television form factor only). */
223
+ private _anyItemFocused;
224
+ private get _isTv();
222
225
  constructor();
226
+ firstUpdated(changedProperties: PropertyValues): void;
227
+ disconnectedCallback(): void;
223
228
  private _handleClick;
229
+ private _handleFocusIn;
230
+ private _handleFocusOut;
224
231
  protected styles(): CSSResult;
225
232
  render(): lit_html.TemplateResult<1>;
226
233
  }
@@ -230,10 +237,14 @@ declare class NamiSegmentPickerItem extends NamiElement {
230
237
  inFocusedState: boolean;
231
238
  scaleFactor: number;
232
239
  private _isActive;
240
+ private _isFocused;
241
+ private get _isTv();
233
242
  connectedCallback(): void;
234
243
  disconnectedCallback(): void;
235
244
  private _handleFocus;
245
+ private _handleBlur;
236
246
  private _handleKeyDown;
247
+ private _moveFocusToSibling;
237
248
  private _getParentPicker;
238
249
  private _getParentFormId;
239
250
  private _updateFormState;
@@ -287,7 +298,7 @@ declare class NamiResponsiveGrid extends NamiElement {
287
298
  private isGroupedHorizontal;
288
299
  private isTimelineActive;
289
300
  protected styles(): CSSResult;
290
- render(): any[][] | lit_html.TemplateResult<1> | lit_html.TemplateResult<1>[];
301
+ render(): lit_html.TemplateResult<1> | any[][] | lit_html.TemplateResult<1>[];
291
302
  protected updated(): void;
292
303
  private measureTimeline;
293
304
  private readTimelineGeometry;