/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * The arguments for the `onChange` ColorPalette event. */ export interface ColorPaletteChangeEvent { /** * The current value of the ColorPalette. */ value: string; /** * The current value of the ColorPalette in RGBA format. */ rgbaValue: string; /** * The native Event from the DOM. */ event: Event; /** * The ColorPalette component instance. */ component?: any; }