@7shifts/sous-chef 3.95.0 → 3.97.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.
- package/dist/icons/components/IconFlagSolid.d.ts +9 -0
- package/dist/icons/components/index.d.ts +1 -0
- package/dist/index.css +3 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +217 -166
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +215 -167
- package/dist/index.modern.js.map +1 -1
- package/dist/media/Chip/constants.d.ts +1 -0
- package/dist/media/Chip/types.d.ts +1 -1
- package/dist/overlay/Dropdown/Dropdown.d.ts +1 -1
- package/dist/overlay/Popover/Popover.d.ts +18 -0
- package/dist/overlay/Popover/index.d.ts +1 -0
- package/dist/overlay/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -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
|
@@ -1563,6 +1563,7 @@ h5._i2LHD {
|
|
|
1563
1563
|
._X4fIx {
|
|
1564
1564
|
position: fixed;
|
|
1565
1565
|
z-index: var(--z-index-dropdown-level-2);
|
|
1566
|
+
cursor: default;
|
|
1566
1567
|
box-shadow: 0 0 12px -3px var(--color-shadow-overlay);
|
|
1567
1568
|
background: var(--color-surface-container);
|
|
1568
1569
|
transform-origin: top right;
|
|
@@ -5591,6 +5592,8 @@ input._TEU6N {
|
|
|
5591
5592
|
display: inline-block;
|
|
5592
5593
|
text-align: center;
|
|
5593
5594
|
text-transform: uppercase;
|
|
5595
|
+
background-color: var(--color-neutral-container);
|
|
5596
|
+
color: var(--color-neutral-on-container);
|
|
5594
5597
|
}
|
|
5595
5598
|
._e3zFF {
|
|
5596
5599
|
gap: 4px;
|