@7shifts/sous-chef 1.3.0 → 1.3.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.
@@ -3,6 +3,7 @@ declare type Props = {
3
3
  url?: string;
4
4
  color?: string;
5
5
  alt?: string;
6
+ onImageFallbackError: () => void;
6
7
  };
7
8
  declare const AvatarImage: React.FC<Props>;
8
9
  export default AvatarImage;
Binary file
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ declare type Props = {
3
+ children: React.ReactNode;
4
+ size?: 'extra-small' | 'small' | 'medium' | 'large';
5
+ color?: string;
6
+ };
7
+ /** This is a draft component not ready to use yet. */
8
+ declare const LetterProfile: React.FC<Props>;
9
+ export default LetterProfile;
@@ -0,0 +1 @@
1
+ export { default } from './LetterProfile';
@@ -0,0 +1,2 @@
1
+ import LetterProfile from './LetterProfile';
2
+ export { LetterProfile };
@@ -0,0 +1 @@
1
+ export declare const capitalizeFirstLetter: (text: string) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7shifts/sous-chef",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "7shifts component library",
5
5
  "author": "7shifts",
6
6
  "license": "MIT",