@mailstep/design-system 0.5.0 → 0.5.1-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mailstep/design-system",
3
- "version": "0.5.0",
3
+ "version": "0.5.1-beta.1",
4
4
  "license": "ISC",
5
5
  "type": "module",
6
6
  "main": "./ui/index.js",
@@ -1,7 +1,8 @@
1
1
  import CommonGrid from './CommonGrid';
2
2
  import withReduxActions from './HoC/withReduxActions';
3
- import reducer, { actionPrefix, createActions, createSelectors, createFullSelector, actionTypes } from './store';
4
- import * as Types from './types';
5
- import * as utils from './utils/public';
3
+ import reducer from './store';
4
+ export * from './types';
5
+ export * from './utils/public';
6
+ export * from './store';
6
7
  export default CommonGrid;
7
- export { withReduxActions, reducer, actionPrefix, actionTypes, createActions, createSelectors, createFullSelector, Types, utils };
8
+ export { withReduxActions, reducer };
@@ -1,7 +1,10 @@
1
1
  import CommonGrid from './CommonGrid';
2
2
  import withReduxActions from './HoC/withReduxActions';
3
- import reducer, { actionPrefix, createActions, createSelectors, createFullSelector, actionTypes } from './store';
4
- import * as Types from './types';
5
- import * as utils from './utils/public';
3
+ import reducer from './store';
4
+ export * from './types';
5
+ export * from './utils/public';
6
+ export * from './store';
7
+ // import * as Types from './types'
8
+ // import * as utils from './utils/public'
6
9
  export default CommonGrid;
7
- export { withReduxActions, reducer, actionPrefix, actionTypes, createActions, createSelectors, createFullSelector, Types, utils };
10
+ export { withReduxActions, reducer };