@namiml/web-sdk 3.4.3-dev.202606111948 → 3.4.3-dev.202606120223

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.
@@ -273,6 +273,9 @@ declare class NamiResponsiveGrid extends NamiElement {
273
273
  inFocusedState: boolean;
274
274
  scaleFactor: number;
275
275
  minSDKVersion: TSemverObj;
276
+ private timelineDots;
277
+ private railHeight;
278
+ private timelineResizeObserver?;
276
279
  private mouseDown;
277
280
  private startX;
278
281
  scrollLeft: any;
@@ -282,8 +285,12 @@ declare class NamiResponsiveGrid extends NamiElement {
282
285
  stopDragging: () => void;
283
286
  move: (e: any) => void;
284
287
  private isGroupedHorizontal;
288
+ private isTimelineActive;
285
289
  protected styles(): CSSResult;
286
- render(): any[][] | lit_html.TemplateResult<1>[];
290
+ render(): lit_html.TemplateResult<1> | any[][] | lit_html.TemplateResult<1>[];
291
+ protected updated(): void;
292
+ private measureTimeline;
293
+ private readTimelineGeometry;
287
294
  private _rowMouseDown;
288
295
  private _rowStartX;
289
296
  private _rowStartDragging;