@northlight/ui 2.33.16 → 2.34.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.
- package/dist/es/northlight.d.ts +2 -1
- package/dist/es/northlight.js +981 -944
- package/dist/es/northlight.js.map +1 -1
- package/dist/umd/northlight.cjs +1163 -1126
- package/dist/umd/northlight.cjs.map +1 -1
- package/dist/umd/northlight.min.cjs +3 -3
- package/dist/umd/northlight.min.cjs.map +1 -1
- package/package.json +2 -2
package/dist/es/northlight.d.ts
CHANGED
|
@@ -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 />
|