@onpe/ui 1.3.30 → 1.3.33

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.
@@ -0,0 +1,12 @@
1
+ export type RobustFocusByIdOptions = {
2
+ ids: string[];
3
+ scrollToTop?: boolean;
4
+ intervalMs?: number;
5
+ timeoutMs?: number;
6
+ };
7
+ /**
8
+ * Enfoca de forma robusta (con reintentos) el primer elemento visible entre los IDs.
9
+ * Retorna una función de cleanup para limpiar interval/timeout.
10
+ */
11
+ export declare const setupRobustFocusById: ({ ids, scrollToTop, intervalMs, timeoutMs, }: RobustFocusByIdOptions) => (() => void);
12
+ //# sourceMappingURL=robustFocus.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onpe/ui",
3
- "version": "1.3.30",
3
+ "version": "1.3.33",
4
4
  "type": "module",
5
5
  "description": "Librería de componentes UI para ONPE - Componentes e Iconos",
6
6
  "main": "dist/index.js",