@shopito/design-system 2.0.39 → 2.0.40
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.
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
2
|
import { SxProps } from '@mui/material';
|
|
3
|
-
import SortableRow from './components/SortableRow';
|
|
4
3
|
export interface RecordsLimits {
|
|
5
4
|
limit: number;
|
|
6
5
|
offset: number;
|
|
@@ -10,7 +9,7 @@ export interface SortProps {
|
|
|
10
9
|
sortField: string;
|
|
11
10
|
sortBy: SortBy;
|
|
12
11
|
}
|
|
13
|
-
interface SortableRow {
|
|
12
|
+
export interface SortableRow {
|
|
14
13
|
id: string;
|
|
15
14
|
priority: number;
|
|
16
15
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
2
|
import { SxProps } from '@mui/material';
|
|
3
|
-
import SortableRow from './components/SortableRow';
|
|
4
3
|
export interface RecordsLimits {
|
|
5
4
|
limit: number;
|
|
6
5
|
offset: number;
|
|
@@ -10,7 +9,7 @@ export interface SortProps {
|
|
|
10
9
|
sortField: string;
|
|
11
10
|
sortBy: SortBy;
|
|
12
11
|
}
|
|
13
|
-
interface SortableRow {
|
|
12
|
+
export interface SortableRow {
|
|
14
13
|
id: string;
|
|
15
14
|
priority: number;
|
|
16
15
|
}
|