@redsift/design-system 8.0.2 → 8.0.4

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/index.d.ts CHANGED
@@ -1556,6 +1556,8 @@ declare const Shield: Comp<ShieldProps, HTMLDivElement>;
1556
1556
  interface DetailedCardProps extends ComponentProps<'div'>, StylingProps {
1557
1557
  /** Whether the component is collapsed or not. Used for controlled version. */
1558
1558
  areAllCollapsed?: boolean;
1559
+ /** Banner variant. */
1560
+ bannerVariant?: 'standard' | 'condensed';
1559
1561
  /** Banner color. */
1560
1562
  color?: ColorPalette;
1561
1563
  /** Default collapse status. Used for uncontrolled version. */
@@ -1587,7 +1589,7 @@ interface PillProps extends ComponentProps<'div'>, StylingProps {
1587
1589
  /** Whether the badge should automatically break content. */
1588
1590
  autoBreak?: boolean;
1589
1591
  /** Color variant. The product colors are available but should only be used to display the Pill in the color of another product. To display a Pill with a color of the current product, use `default`. */
1590
- color?: DataVizColorPalette | 'white' | 'black' | 'error' | 'warning' | 'success';
1592
+ color?: DataVizColorPalette | 'white' | 'black' | 'no-data' | 'error' | 'warning' | 'success' | 'error-dark' | 'warning-dark' | 'success-dark';
1591
1593
  }
1592
1594
  type StyledPillProps = Omit<PillProps, 'color' | 'autoBreak'> & {
1593
1595
  $autoBreak: PillProps['autoBreak'];
@@ -1675,7 +1677,7 @@ interface DetailedCardSectionProps extends ComponentProps<'div'> {
1675
1677
  /** Props to pass to the badge displayed next to the title. */
1676
1678
  badge?: Omit<BadgeProps, 'ref'>;
1677
1679
  /** Color that will be used on the header line. */
1678
- color?: ColorPalette;
1680
+ color?: ColorPalette | DataVizColorPalette | string;
1679
1681
  /** Header. */
1680
1682
  header?: string | ReactElement;
1681
1683
  /** Whether the section is collapsed or not. */