@veeqo/ui 0.1.3 → 0.1.5

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.
@@ -3,6 +3,7 @@ export interface AccordionProps {
3
3
  children: ReactNode;
4
4
  label: string;
5
5
  iconSlot?: ReactNode;
6
+ glyphColor?: string;
6
7
  className?: string;
7
8
  timeout?: number;
8
9
  transitionClassnames?: string;
@@ -1,6 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  import { Text } from '../Text';
3
- declare const Left: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ declare const Left: import("styled-components").StyledComponent<"div", any, {
4
+ glyphColor: string;
5
+ }, never>;
4
6
  declare const Right: import("styled-components").StyledComponent<any, any, object, string | number | symbol>;
5
7
  declare const TapBar: import("styled-components").StyledComponent<"div", any, {
6
8
  shouldOpen: boolean;
@@ -2,6 +2,7 @@ import React, { ReactEventHandler, ReactNode, ReactElement } from 'react';
2
2
  import { BannerTypes } from './types';
3
3
  type BannerProps = {
4
4
  type?: BannerTypes;
5
+ backgroundColor?: string;
5
6
  text?: string;
6
7
  icon?: ReactElement;
7
8
  onClose?: ReactEventHandler;
@@ -12,5 +13,5 @@ type BannerProps = {
12
13
  /**
13
14
  * The `Banner` component was previously called `Alert` (and similarly `Pill`).
14
15
  */
15
- export declare const Banner: ({ type, text, icon, onClose, className, header, children, }: BannerProps) => React.JSX.Element;
16
+ export declare const Banner: ({ type, text, icon, onClose, className, header, children, backgroundColor, }: BannerProps) => React.JSX.Element;
16
17
  export {};
@@ -4,4 +4,5 @@ export type PillProps = {
4
4
  children?: ReactNode;
5
5
  className?: string;
6
6
  accentColor?: string;
7
+ backgroundColor?: string;
7
8
  };