test-stpr-ui-kit 0.5.47 → 0.5.48

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.
@@ -31,6 +31,7 @@ declare interface ApplyButtonsProps {
31
31
  applyButtonsMobileDirection?: TApplyButtonsMobileDirection;
32
32
  applyButtonsAlign?: TApplyButtonsAlign;
33
33
  cancelBtnContent?: string;
34
+ classNameRoot?: string;
34
35
  cancelBtnClassName?: string;
35
36
  submitBtnClassName?: string;
36
37
  cancelBtnVariant?: TButtonVariant;
@@ -120,7 +121,8 @@ declare interface CheckboxProps {
120
121
 
121
122
  export declare const Confirm: default_2.FC<ConfirmProps>;
122
123
 
123
- declare interface ConfirmProps extends ApplyButtonsProps, Omit<ModalProps, "footer" | "children" | "style"> {
124
+ declare interface ConfirmProps extends Omit<ApplyButtonsProps, "classNameRoot">, Omit<ModalProps, "footer" | "children" | "style"> {
125
+ classNameApplyButtonsRoot?: string;
124
126
  }
125
127
 
126
128
  export declare const ContextMenu: default_2.FC<ContextMenuProps>;
@@ -233,7 +235,6 @@ export declare const Icon: default_2.FC<IconProps>;
233
235
  declare interface IconProps extends default_2.SVGProps<SVGSVGElement> {
234
236
  name: EIconName;
235
237
  rotate?: number;
236
- classNameRoot?: string;
237
238
  }
238
239
 
239
240
  export declare interface IDatePickerInputProps {