@7shifts/sous-chef 3.94.0 → 3.96.0

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.
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { MicroBannerTheme } from './types';
3
- import { PositionStyles } from 'foundation/types';
3
+ import { DataProps, PositionStyles } from '../../foundation/types';
4
4
  type Props = {
5
5
  children?: React.ReactNode;
6
6
  /** Banner design theme */
@@ -14,6 +14,6 @@ type Props = {
14
14
  /** The primary CTA button */
15
15
  primaryButton?: React.ReactElement;
16
16
  testId?: string;
17
- } & PositionStyles;
17
+ } & PositionStyles & DataProps;
18
18
  declare const MicroBanner: React.FC<Props>;
19
19
  export default MicroBanner;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { IconSize } from '../types';
3
+ type Props = {
4
+ size?: IconSize;
5
+ color?: string;
6
+ testId?: string;
7
+ } & React.SVGProps<SVGSVGElement>;
8
+ declare const IconFlagSolid: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
9
+ export default IconFlagSolid;
@@ -76,6 +76,7 @@ export { default as IconFaceSmileRelaxed } from './IconFaceSmileRelaxed';
76
76
  export { default as IconFilePdf } from './IconFilePdf';
77
77
  export { default as IconFile } from './IconFile';
78
78
  export { default as IconFlag } from './IconFlag';
79
+ export { default as IconFlagSolid } from './IconFlagSolid';
79
80
  export { default as IconFourDotsCircle } from './IconFourDotsCircle';
80
81
  export { default as IconFourSquares } from './IconFourSquares';
81
82
  export { default as IconGavel } from './IconGavel';
package/dist/index.css CHANGED
@@ -5591,6 +5591,8 @@ input._TEU6N {
5591
5591
  display: inline-block;
5592
5592
  text-align: center;
5593
5593
  text-transform: uppercase;
5594
+ background-color: var(--color-neutral-container);
5595
+ color: var(--color-neutral-on-container);
5594
5596
  }
5595
5597
  ._e3zFF {
5596
5598
  gap: 4px;