@onpe/ui 1.2.68 → 1.2.70
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/ErrorHandling/ModalSystemIncompatible/ModalSystemIncompatible.d.ts +1 -1
- package/dist/components/Feedback/ModalNfc/ModalNfc.d.ts +1 -1
- package/dist/components.d.ts +2 -2
- package/dist/components.esm.js +1 -1
- package/dist/components.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,6 @@ export interface ModalSystemIncompatibleProps {
|
|
|
5
5
|
className?: string;
|
|
6
6
|
zIndexLevel?: number;
|
|
7
7
|
}
|
|
8
|
-
export declare const ModalSystemIncompatible: ({ isOpen, onClose, className, zIndexLevel }: ModalSystemIncompatibleProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const ModalSystemIncompatible: ({ isOpen, onClose, className, zIndexLevel, }: ModalSystemIncompatibleProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
export default ModalSystemIncompatible;
|
|
10
10
|
//# sourceMappingURL=ModalSystemIncompatible.d.ts.map
|
|
@@ -8,6 +8,6 @@ export interface ModalNfcProps {
|
|
|
8
8
|
iconNfc2: ReactNode;
|
|
9
9
|
zIndexLevel?: number;
|
|
10
10
|
}
|
|
11
|
-
export declare const ModalNfc: ({ isOpen, onClose, className, iconNfc1, iconNfc2, zIndexLevel }: ModalNfcProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const ModalNfc: ({ isOpen, onClose, className, iconNfc1, iconNfc2, zIndexLevel, }: ModalNfcProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export default ModalNfc;
|
|
13
13
|
//# sourceMappingURL=ModalNfc.d.ts.map
|
package/dist/components.d.ts
CHANGED
|
@@ -82,7 +82,7 @@ interface ModalSystemIncompatibleProps {
|
|
|
82
82
|
className?: string;
|
|
83
83
|
zIndexLevel?: number;
|
|
84
84
|
}
|
|
85
|
-
declare const ModalSystemIncompatible: ({ isOpen, onClose, className, zIndexLevel }: ModalSystemIncompatibleProps) => react_jsx_runtime.JSX.Element;
|
|
85
|
+
declare const ModalSystemIncompatible: ({ isOpen, onClose, className, zIndexLevel, }: ModalSystemIncompatibleProps) => react_jsx_runtime.JSX.Element;
|
|
86
86
|
|
|
87
87
|
interface FooterProps extends react__default.HTMLAttributes<HTMLDivElement> {
|
|
88
88
|
showBrowserInfo?: boolean;
|
|
@@ -114,7 +114,7 @@ interface ModalNfcProps {
|
|
|
114
114
|
iconNfc2: ReactNode;
|
|
115
115
|
zIndexLevel?: number;
|
|
116
116
|
}
|
|
117
|
-
declare const ModalNfc: ({ isOpen, onClose, className, iconNfc1, iconNfc2, zIndexLevel }: ModalNfcProps) => react_jsx_runtime.JSX.Element;
|
|
117
|
+
declare const ModalNfc: ({ isOpen, onClose, className, iconNfc1, iconNfc2, zIndexLevel, }: ModalNfcProps) => react_jsx_runtime.JSX.Element;
|
|
118
118
|
|
|
119
119
|
export { BrowserRecommended, Button, Footer, Modal, ModalBrowserIncompatible, ModalConfirm, ModalDnieVersions, ModalLoading, ModalNfc, ModalSystemIncompatible, Overlay, Portal, Show };
|
|
120
120
|
export type { ButtonProps, FooterProps, ModalBrowserIncompatibleProps, ModalConfirmProps, ModalDnieVersionsProps, ModalLoadingProps, ModalNfcProps, ModalProps, ModalSystemIncompatibleProps, OverlayProps, PortalProps, ShowProps };
|