@namiml/web-sdk 3.4.2-dev.202606032104 → 3.4.2-dev.202606042208
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 +7 -1
- package/dist/nami-web.cjs +31 -20
- package/dist/nami-web.d.ts +7 -1
- package/dist/nami-web.mjs +24 -13
- package/dist/nami-web.umd.js +25 -14
- package/package.json +2 -2
|
@@ -15,6 +15,12 @@ export declare class NamiResponsiveGrid extends NamiElement {
|
|
|
15
15
|
startDragging: (e: any) => void;
|
|
16
16
|
stopDragging: () => void;
|
|
17
17
|
move: (e: any) => void;
|
|
18
|
+
private isGroupedHorizontal;
|
|
18
19
|
protected styles(): CSSResult;
|
|
19
|
-
render(): any[][];
|
|
20
|
+
render(): any[][] | import("lit-html").TemplateResult<1>[];
|
|
21
|
+
private _rowMouseDown;
|
|
22
|
+
private _rowStartX;
|
|
23
|
+
private _rowStartDragging;
|
|
24
|
+
private _rowStopDragging;
|
|
25
|
+
private _rowMove;
|
|
20
26
|
}
|