@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/README.md +192 -13
- package/dist/components/Feedback/ModalDnieVersions/ModalDnieVersions.d.ts +9 -0
- package/dist/components/Feedback/ModalDnieVersions/index.d.ts +4 -0
- package/dist/components/Feedback/ModalNfc/ModalNfc.d.ts +9 -0
- package/dist/components/Feedback/ModalNfc/index.d.ts +4 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/components.css +710 -283
- package/dist/components.d.ts +16 -2
- package/dist/components.esm.css +710 -283
- package/dist/components.esm.js +49 -30
- package/dist/components.js +49 -30
- package/dist/icons/Actions/IconCloseRadius/IconCloseRadius.d.ts +4 -0
- package/dist/icons/Actions/IconCloseRadius/index.d.ts +2 -0
- package/dist/icons/Actions/IconMobileNfc/IconMobileNfc.d.ts +4 -0
- package/dist/icons/Actions/IconMobileNfc/index.d.ts +4 -0
- package/dist/icons/Actions/index.d.ts +1 -0
- package/dist/index.css +710 -283
- package/dist/index.d.ts +16 -2
- package/dist/index.esm.css +710 -283
- package/dist/index.esm.js +51 -30
- package/dist/index.js +51 -30
- package/package.json +1 -1
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 };
|