@stokelp/ui 2.95.0 → 2.96.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.
@@ -15,7 +15,10 @@ export interface HighlightedInputRendererProps extends ComponentProps<typeof Ren
15
15
  export interface HighlightedInputHighlightProps extends ComponentProps<typeof Highlight> {
16
16
  }
17
17
  type HighlightedInputProps = {
18
- regex: RegExp;
18
+ patterns: {
19
+ regex: RegExp;
20
+ color: string;
21
+ }[];
19
22
  placeholder?: string;
20
23
  } & HighlightedInputRootProps;
21
24
  export declare const HighlightedInput: FC<HighlightedInputProps>;