@mailstep/design-system 0.7.8 → 0.7.9-beta.0

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.7.8",
3
+ "version": "0.7.9-beta.0",
4
4
  "license": "ISC",
5
5
  "type": "module",
6
6
  "main": "./ui/index.js",
@@ -15,7 +15,6 @@ import getOr from 'lodash/fp/getOr';
15
15
  import migrateState from './migrateState';
16
16
  export var initialState = {
17
17
  page: 1,
18
- rowsPerPage: 10,
19
18
  sorting: [],
20
19
  isConfigFormOpen: false,
21
20
  uxState: {
@@ -189,7 +189,7 @@ export type UxState = {
189
189
  export type ColumnLayout = 'normal' | 'no-scroll' | 'sticky';
190
190
  export type GridState = {
191
191
  page: number;
192
- rowsPerPage: number;
192
+ rowsPerPage?: number;
193
193
  filter: Settings['filter'];
194
194
  sorting: Settings['sorting'];
195
195
  defaultSorting: Settings['sorting'];