Skip to content
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.

Commit

Permalink
Bump version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
geoperez committed Sep 10, 2019
1 parent 5d2c566 commit ddb7116
Show file tree
Hide file tree
Showing 11 changed files with 117 additions and 13 deletions.
3 changes: 3 additions & 0 deletions dist/SnackbarContainer.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import * as React from 'react';
declare const SnackbarContainer: React.FunctionComponent<any>;
export default SnackbarContainer;
38 changes: 38 additions & 0 deletions dist/SnackbarContainer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/SnackbarContainer.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions dist/SnackbarService.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { SimpleObservable } from 'uno-react';
export interface ISnackbar {
message: {
messageText: string;
messageType: string;
};
seconds?: number;
isMobile: boolean;
}
declare class SnackbarService extends SimpleObservable {
private snackbar;
getSnackbar(): ISnackbar;
showSnackbar(message: string, type?: string): Promise<any>;
}
export declare const snackbarService: SnackbarService;
export {};
43 changes: 43 additions & 0 deletions dist/SnackbarService.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/SnackbarService.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ export * from './UnoSuspense';
export * from './UnoTheme';
export * from './FixedLinearProgress';
export * from './FormSwitch';
export * from './SnackbarContextProvider';
export * from './SnackbarContainer';
export * from './SnackbarService';
export * from './ThumbnailPhoto';
3 changes: 2 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uno-material-ui",
"version": "1.4.2",
"version": "1.5.0",
"description": "Components and extensions for Material UI",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -61,7 +61,7 @@
"ts-jest": "^24.0.2",
"parcel-bundler": "^1.12.3",
"parcel-plugin-clean-easy": "^1.0.2",
"tslint": "^5.19.0",
"tslint": "^5.20.0",
"tslint-react": "^4.0.0",
"typescript": "^3.6.2"
},
Expand Down

0 comments on commit ddb7116

Please sign in to comment.