plataforma-fundacao-componentes 2.26.19 → 2.26.20

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.
@@ -5,6 +5,7 @@ export type SelectOptionsType<T extends SelectAcceptedTypes = SelectAcceptedType
5
5
  label: string | number;
6
6
  value: T | null;
7
7
  key?: string;
8
+ rightObject?: ReactNode;
8
9
  };
9
10
  type SelectPostEvent = {
10
11
  setPanelOpened: (v: boolean) => void;
@@ -3,7 +3,7 @@ export interface TypographyProps extends HTMLAttributes<HTMLElement> {
3
3
  variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'body' | 'caption' | 'small';
4
4
  focus?: boolean;
5
5
  alignment?: CSSProperties['textAlign'];
6
- color?: 'primary' | 'primary-dark' | 'secondary' | 'default';
6
+ color?: 'primary' | 'primary-dark' | 'secondary' | 'default' | 'danger';
7
7
  format?: true | {
8
8
  active: boolean;
9
9
  replacers?: string[];