@onpe/ui 1.2.41 → 1.2.43

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/index.d.ts CHANGED
@@ -90,6 +90,20 @@ declare const Footer: ({ showBrowserInfo, showContactInfo, children, showFooterC
90
90
 
91
91
  declare const BrowserRecommended: () => react_jsx_runtime.JSX.Element;
92
92
 
93
+ interface ModalDnieVersionsProps {
94
+ isOpen: boolean;
95
+ onClose: () => void;
96
+ className?: string;
97
+ }
98
+ declare const ModalDnieVersions: ({ isOpen, onClose, className }: ModalDnieVersionsProps) => react_jsx_runtime.JSX.Element;
99
+
100
+ interface ModalNfcProps {
101
+ isOpen: boolean;
102
+ onClose: () => void;
103
+ className?: string;
104
+ }
105
+ declare const ModalNfc: ({ isOpen, onClose, className }: ModalNfcProps) => react_jsx_runtime.JSX.Element;
106
+
93
107
  /**
94
108
  * Hook para debounce de valores
95
109
  * @param value - Valor a debounce
@@ -203,5 +217,5 @@ declare const IconElectionsGeneral: (props: SVGProps<SVGSVGElement>) => react_js
203
217
 
204
218
  declare const ElectionsIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
205
219
 
206
- export { APIClient, BrowserRecommended, Button, ElectionsIcon, Footer, IconAndroid, IconApple, IconCheck, IconChrome, IconChromeColor, IconClose, IconEdge, IconEdgeColor, IconElectionsGeneral, IconInfo, IconMozilla, IconMozillaColor, IconSafari, IconSafariColor, IconSpinnerDesktop, IconSpinnerMobile, IconVotoDigital, IconWarning, IconWindow, Modal, ModalBrowserIncompatible, ModalConfirm, ModalLoading, ModalSystemIncompatible, Overlay, Portal, Show, StorageManager, apiClient, formatDate, useDebounce, useLocalStorage, validateEmail };
207
- export type { ButtonProps, FooterProps, ModalBrowserIncompatibleProps, ModalConfirmProps, ModalLoadingProps, ModalProps, ModalSystemIncompatibleProps, OverlayProps, PortalProps, ShowProps };
220
+ export { APIClient, BrowserRecommended, Button, ElectionsIcon, Footer, IconAndroid, IconApple, IconCheck, IconChrome, IconChromeColor, IconClose, IconEdge, IconEdgeColor, IconElectionsGeneral, IconInfo, IconMozilla, IconMozillaColor, IconSafari, IconSafariColor, IconSpinnerDesktop, IconSpinnerMobile, IconVotoDigital, IconWarning, IconWindow, Modal, ModalBrowserIncompatible, ModalConfirm, ModalDnieVersions, ModalLoading, ModalNfc, ModalSystemIncompatible, Overlay, Portal, Show, StorageManager, apiClient, formatDate, useDebounce, useLocalStorage, validateEmail };
221
+ export type { ButtonProps, FooterProps, ModalBrowserIncompatibleProps, ModalConfirmProps, ModalDnieVersionsProps, ModalLoadingProps, ModalNfcProps, ModalProps, ModalSystemIncompatibleProps, OverlayProps, PortalProps, ShowProps };