@surveycake/rc 3.0.0-alpha.42 → 3.0.0-alpha.43

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/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [3.0.0-alpha.43](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.42...v3.0.0-alpha.43) (2022-04-01)
6
+
7
+
8
+ ### Features
9
+
10
+ * add Alert component ([29286a7](https://fox.25sprout.com/surveycake/sdk/rc/commit/29286a7c6da0dca002eecd17f95d5749adcff378))
11
+ * add Snackbar component ([5e28002](https://fox.25sprout.com/surveycake/sdk/rc/commit/5e280027bc7942e7b58743578f9e5c54c7169649))
12
+ * export Alert releated components ([5466d77](https://fox.25sprout.com/surveycake/sdk/rc/commit/5466d7743c4a5a3a166ac19fbdd4f2fe2f65a258))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * move loading button into button ([29cd931](https://fox.25sprout.com/surveycake/sdk/rc/commit/29cd93129ddfb4679de1b11717292ff7f27b8ef5))
18
+ * set FormLabel margin to 0 ([7947c72](https://fox.25sprout.com/surveycake/sdk/rc/commit/7947c72895795686a6ccf2d45ae5948583c9c3e2))
19
+ * update cssbaseline import order ([44440f3](https://fox.25sprout.com/surveycake/sdk/rc/commit/44440f356af275e6a0bfe032f4509c17a3e54e75))
20
+
5
21
  ## [3.0.0-alpha.42](https://fox.25sprout.com/surveycake/sdk/rc/compare/v3.0.0-alpha.41...v3.0.0-alpha.42) (2022-03-28)
6
22
 
7
23
 
@@ -1,4 +1,6 @@
1
1
  import { Story, Meta } from '@storybook/react';
2
2
  declare const _default: Meta<import("@storybook/react").Args>;
3
3
  export default _default;
4
- export declare const Base: Story;
4
+ export declare const Simple: Story;
5
+ export declare const Description: Story;
6
+ export declare const Action: Story;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { AlertProps as MUIAlertProps } from '@material-ui/lab/Alert';
3
+ interface AlertProps extends MUIAlertProps {
4
+ }
5
+ declare const Alert: {
6
+ (props: AlertProps): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default Alert;
@@ -0,0 +1,3 @@
1
+ import { StyleRules } from '@material-ui/core/styles';
2
+ import { AlertClassKey } from '@material-ui/lab/Alert';
3
+ export declare const MuiAlert: Partial<StyleRules<AlertClassKey>>;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { AlertTitleProps as MUIAlertTitleProps } from '@material-ui/lab/AlertTitle';
3
+ interface AlertTitleProps extends MUIAlertTitleProps {
4
+ }
5
+ declare const AlertTitle: {
6
+ (props: AlertTitleProps): JSX.Element;
7
+ displayName: string;
8
+ };
9
+ export default AlertTitle;
@@ -0,0 +1,3 @@
1
+ import { StyleRules } from '@material-ui/core/styles';
2
+ import { AlertTitleClassKey } from '@material-ui/lab/AlertTitle';
3
+ export declare const MuiAlertTitle: Partial<StyleRules<AlertTitleClassKey>>;
@@ -6,3 +6,4 @@ export declare const Text: Story;
6
6
  export declare const Outlined: Story;
7
7
  export declare const Sizes: Story;
8
8
  export declare const TextIcon: Story;
9
+ export declare const Loading: Story;
@@ -1,4 +1,5 @@
1
1
  import { Story, Meta } from '@storybook/react';
2
2
  declare const _default: Meta<import("@storybook/react").Args>;
3
3
  export default _default;
4
- export declare const Basic: Story;
4
+ export declare const Simple: Story;
5
+ export declare const Description: Story;
@@ -0,0 +1,3 @@
1
+ import { StyleRules } from '@material-ui/core/styles';
2
+ import { SnackbarClassKey } from '@material-ui/core/Snackbar';
3
+ export declare const MuiSnackbar: Partial<StyleRules<SnackbarClassKey>>;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { TransitionProps } from '@material-ui/core/transitions';
3
+ interface SlideTransitionProps extends TransitionProps {
4
+ children?: React.ReactElement<any, any> | undefined;
5
+ }
6
+ export declare function SlideTransition(props: SlideTransitionProps): JSX.Element;
7
+ export {};
@@ -0,0 +1,3 @@
1
+ import { StyleRules } from '@material-ui/core/styles';
2
+ import { SnackbarContentClassKey } from '@material-ui/core/SnackbarContent';
3
+ export declare const MuiSnackbarContent: Partial<StyleRules<SnackbarContentClassKey>>;
@@ -1,5 +1,7 @@
1
1
  export { theme, useMUITheme } from './styles/theme';
2
2
  export { ThemeProvider, PureThemeProvider } from './styles/ThemeProvider';
3
+ export { default as Alert } from './Alert';
4
+ export { default as AlertTitle } from './AlertTitle';
3
5
  export { default as Backdrop } from './Backdrop';
4
6
  export { default as Box } from './Box';
5
7
  export { default as Button } from './Button';
@@ -27,7 +29,6 @@ export { default as FormLabel } from './FormLabel';
27
29
  export { default as IconButton } from './IconButton';
28
30
  export { default as InputAdornment } from './InputAdornment';
29
31
  export { default as Link } from './Link';
30
- export { default as LoadingButton } from './LoadingButton';
31
32
  export { default as MenuItem } from './MenuItem';
32
33
  export { default as OutlinedInput } from './OutlinedInput';
33
34
  export { default as Pagination } from './Pagination';