@7shifts/sous-chef 3.78.1 → 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.
- package/dist/feedback/InlineBanner/InlineBanner.d.ts +1 -0
- package/dist/feedback/Toast/Toast.d.ts +2 -1
- package/dist/feedback/Toast/types.d.ts +4 -0
- package/dist/icons/components/IconSparkle.d.ts +9 -0
- package/dist/icons/components/index.d.ts +1 -0
- package/dist/index.css +1075 -1070
- package/dist/index.css.map +1 -1
- package/dist/index.js +2758 -2704
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2774 -2718
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,8 @@ import React from 'react';
|
|
|
2
2
|
import { ToastOptions } from 'react-toastify';
|
|
3
3
|
import type { Theme } from './types';
|
|
4
4
|
import 'react-toastify/dist/ReactToastify.css';
|
|
5
|
-
|
|
5
|
+
import type { ToastAction } from './types';
|
|
6
|
+
export declare const toast: (text: string, theme?: Theme, options?: ToastOptions & ToastAction) => void;
|
|
6
7
|
type Props = {
|
|
7
8
|
containerId?: string;
|
|
8
9
|
};
|
|
@@ -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';
|