@mriqbox/ui-kit 3.5.0 → 3.5.1

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/bin/cli.js CHANGED
@@ -177,7 +177,7 @@ async function checkDependencies(filePath, installDir) {
177
177
  program
178
178
  .name('mri-ui')
179
179
  .description('Add Mri UI components to your project')
180
- .version('3.5.0');
180
+ .version('3.5.1');
181
181
 
182
182
  program
183
183
  .command('add <component>')
@@ -25,5 +25,7 @@ export interface MriVitalAdjustModalProps {
25
25
  cancel?: string;
26
26
  playerNameLabel?: string;
27
27
  };
28
+ hideBlur?: boolean;
29
+ hideOverlay?: boolean;
28
30
  }
29
- export declare function MriVitalAdjustModal({ isOpen, onClose, onSubmit, vital, currentValue, playerName, labels, icon, showFullProgress, title, description, confirmLabel, cancelLabel, newValueLabel }: MriVitalAdjustModalProps): import("react/jsx-runtime").JSX.Element | null;
31
+ export declare function MriVitalAdjustModal({ isOpen, onClose, onSubmit, vital, currentValue, playerName, labels, icon, showFullProgress, title, description, confirmLabel, cancelLabel, newValueLabel, hideBlur, hideOverlay }: MriVitalAdjustModalProps): import("react/jsx-runtime").JSX.Element | null;