@onpe/ui 1.2.93 → 1.2.95

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.css CHANGED
@@ -732,8 +732,8 @@ body.onpe-modal-open {
732
732
  /* NotRecommended Component Styles */
733
733
  .onpe-not-recommended-wrapper {
734
734
  position: fixed;
735
- right: 20px; /* right-5 = 1.25rem = 20px */
736
- bottom: 40px; /* bottom-10 = 2.5rem = 40px */
735
+ right: 20px; /* right-5 = 1.25rem = 20px - valor por defecto, puede ser sobrescrito por prop */
736
+ bottom: 40px; /* bottom-10 = 2.5rem = 40px - valor por defecto, puede ser sobrescrito por prop */
737
737
  z-index: 99;
738
738
  }
739
739
 
package/dist/index.d.ts CHANGED
@@ -89,8 +89,10 @@ declare const ModalSystemIncompatible: ({ isOpen, onClose, className, zIndexLeve
89
89
  interface NotRecommendedProps {
90
90
  isOpenBrowserError?: boolean;
91
91
  isOpenDeviceError?: boolean;
92
+ bottom?: number | string;
93
+ right?: number | string;
92
94
  }
93
- declare const NotRecommended: ({ isOpenBrowserError, isOpenDeviceError, }: NotRecommendedProps) => react_jsx_runtime.JSX.Element;
95
+ declare const NotRecommended: ({ isOpenBrowserError, isOpenDeviceError, bottom, right, }: NotRecommendedProps) => react_jsx_runtime.JSX.Element;
94
96
 
95
97
  interface FooterProps extends react__default.HTMLAttributes<HTMLDivElement> {
96
98
  showBrowserInfo?: boolean;
@@ -732,8 +732,8 @@ body.onpe-modal-open {
732
732
  /* NotRecommended Component Styles */
733
733
  .onpe-not-recommended-wrapper {
734
734
  position: fixed;
735
- right: 20px; /* right-5 = 1.25rem = 20px */
736
- bottom: 40px; /* bottom-10 = 2.5rem = 40px */
735
+ right: 20px; /* right-5 = 1.25rem = 20px - valor por defecto, puede ser sobrescrito por prop */
736
+ bottom: 40px; /* bottom-10 = 2.5rem = 40px - valor por defecto, puede ser sobrescrito por prop */
737
737
  z-index: 99;
738
738
  }
739
739