@scbt-ecom/ui 0.59.2 → 0.61.0

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.
@@ -100,7 +100,7 @@ export declare const Uncontrolled: {
100
100
  options: import('./radio').RadioOption[];
101
101
  displayValue?: (option: import('./radio').RadioOption) => string;
102
102
  returnValue?: (option: import('./radio').RadioOption) => string;
103
- classes?: import('./radio/ui/RadioItem').RadioItemClasses & {
103
+ classes?: {
104
104
  root?: string;
105
105
  list?: string;
106
106
  radioItem?: import('./radio/ui/RadioItem').RadioItemClasses;
@@ -1,7 +1,7 @@
1
1
  import { RadioGroupProps as RadioGroupPrimitiveProps } from '@radix-ui/react-radio-group';
2
- import { RadioItemProps, RadioOption } from './ui';
2
+ import { RadioOption } from './ui';
3
3
  import { RadioItemClasses } from './ui/RadioItem';
4
- type RadioGroupClasses = RadioItemProps['classes'] & {
4
+ type RadioGroupClasses = {
5
5
  root?: string;
6
6
  list?: string;
7
7
  radioItem?: RadioItemClasses;
@@ -6,6 +6,7 @@ export type RadioOption = {
6
6
  disabled?: boolean;
7
7
  };
8
8
  export type RadioItemClasses = {
9
+ root?: string;
9
10
  item?: string;
10
11
  indicator?: string;
11
12
  label?: string;
@@ -14,6 +14,7 @@ export interface ModalProps {
14
14
  portalContainer?: HTMLElement;
15
15
  title?: string | React.ReactElement;
16
16
  closeModal: () => void;
17
+ iframe?: boolean;
17
18
  }
18
- export declare const Modal: ({ title, children, isModalOpen, isPortal, portalContainer, closeModal, classes }: ModalProps) => import("react/jsx-runtime").JSX.Element;
19
+ export declare const Modal: ({ title, children, isModalOpen, isPortal, portalContainer, closeModal, classes, iframe }: ModalProps) => import("react/jsx-runtime").JSX.Element;
19
20
  export {};
@@ -0,0 +1,3 @@
1
+ type IframeModalContentProps = React.IframeHTMLAttributes<HTMLIFrameElement>;
2
+ export declare const IframeModalContent: ({ children, className, ...props }: IframeModalContentProps) => import("react/jsx-runtime").JSX.Element;
3
+ export {};