@northlight/ui 2.33.16 → 2.34.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.
@@ -642,6 +642,7 @@ interface ColorPickerProps extends Omit<IconButtonProps$1, 'onChange' | 'value'
642
642
  size?: ColorPickerSize;
643
643
  name?: string;
644
644
  popoverProps?: PopoverProps;
645
+ shouldRenderInPortal?: boolean;
645
646
  }
646
647
  type ColorButtonProps = {
647
648
  color: string;
@@ -686,7 +687,7 @@ type ColorPickerFieldProps = ColorPickerProps & {
686
687
  *
687
688
  *
688
689
  */
689
- declare const ColorPicker: ({ onChange, clearable, colors, expandedColors, value, name, size, popoverProps, ...rest }: ColorPickerProps) => JSX.Element;
690
+ declare const ColorPicker: ({ onChange, clearable, colors, expandedColors, value, name, size, shouldRenderInPortal, popoverProps, ...rest }: ColorPickerProps) => JSX.Element;
690
691
 
691
692
  /**
692
693
  * The <ColorPicker /> component wrapped in a <Field />
@@ -769,7 +770,7 @@ interface FlipButtonGroupFieldProps extends FlipButtonGroupProps {
769
770
  label: string;
770
771
  isRequired?: boolean;
771
772
  validate?: RegisterOptions;
772
- value?: string;
773
+ value?: string | string[];
773
774
  iconPlacement?: 'left' | 'right' | 'none';
774
775
  }
775
776