@onpe/ui 1.2.67 → 1.2.69
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.css +3 -3
- package/dist/components.d.ts +2 -2
- package/dist/components.esm.css +3 -3
- package/dist/components.esm.js +1 -1
- package/dist/components.js +1 -1
- package/dist/index.css +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.css +3 -3
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
.onpe-button:disabled {
|
|
15
|
-
cursor:
|
|
16
|
-
background-color: var(--onpe-ui-gray);
|
|
15
|
+
cursor: default;
|
|
16
|
+
background-color: var(--onpe-ui-gray) !important;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.onpe-button:disabled:hover {
|
|
20
|
-
background-color: var(--onpe-ui-gray);
|
|
20
|
+
background-color: var(--onpe-ui-gray) !important;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
/* Button Sizes */
|
package/dist/index.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
|
declare const IconClose: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
120
120
|
|
package/dist/index.esm.css
CHANGED
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
.onpe-button:disabled {
|
|
15
|
-
cursor:
|
|
16
|
-
background-color: var(--onpe-ui-gray);
|
|
15
|
+
cursor: default;
|
|
16
|
+
background-color: var(--onpe-ui-gray) !important;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.onpe-button:disabled:hover {
|
|
20
|
-
background-color: var(--onpe-ui-gray);
|
|
20
|
+
background-color: var(--onpe-ui-gray) !important;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
/* Button Sizes */
|