@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.
- package/dist/components/containers/ResponsiveGrid.d.ts +8 -1
- package/dist/components/utils/helpers.d.ts +34 -2
- package/dist/nami-web.cjs +39 -28
- package/dist/nami-web.d.ts +8 -1
- package/dist/nami-web.mjs +39 -28
- package/dist/nami-web.umd.js +39 -28
- package/package.json +2 -2
package/dist/nami-web.d.ts
CHANGED
|
@@ -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;
|