@7shifts/sous-chef 3.79.0 → 3.79.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.
@@ -4,6 +4,7 @@ import { PositionStyles } from '../../foundation/types';
4
4
  type Props = {
5
5
  children: React.ReactNode;
6
6
  theme?: InlineBannerTheme;
7
+ icon?: React.ReactElement;
7
8
  title?: string;
8
9
  onClose?: () => void;
9
10
  caption?: React.ReactNode;
@@ -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 IconSparkle: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
9
+ export default IconSparkle;
@@ -123,6 +123,7 @@ export { default as IconSignOut } from './IconSignOut';
123
123
  export { default as IconSitemap } from './IconSitemap';
124
124
  export { default as IconSlidersH } from './IconSlidersH';
125
125
  export { default as IconSort } from './IconSort';
126
+ export { default as IconSparkle } from './IconSparkle';
126
127
  export { default as IconStarSolid } from './IconStarSolid';
127
128
  export { default as IconStar } from './IconStar';
128
129
  export { default as IconStickyNoteLines } from './IconStickyNoteLines';
package/dist/index.css CHANGED
@@ -4089,6 +4089,9 @@ input:disabled + ._Yfxkl::after {
4089
4089
  pointer-events: none;
4090
4090
  color: var(--color-surface-on-color);
4091
4091
  }
4092
+ ._o1-zA {
4093
+ background-color: var(--color-surface-container-disabled);
4094
+ }
4092
4095
  ._Q0GfJ {
4093
4096
  flex-grow: 1;
4094
4097
  display: flex;
@@ -5272,7 +5275,6 @@ input._TEU6N {
5272
5275
  font-weight: var(--p-font-weight-bold);
5273
5276
  border-radius: 25px;
5274
5277
  padding: 5px 12px;
5275
- min-width: 40px;
5276
5278
  max-width: -moz-fit-content;
5277
5279
  max-width: fit-content;
5278
5280
  display: inline-block;
@@ -5307,6 +5309,9 @@ input._TEU6N {
5307
5309
  background-color: var(--color-upsell-container);
5308
5310
  color: var(--color-upsell-on-container);
5309
5311
  }
5312
+ ._4M-yZ {
5313
+ min-width: 40px;
5314
+ }
5310
5315
  ._mhyqH {
5311
5316
  display: flex;
5312
5317
  flex-direction: row;