@bluemarble/bm-components 0.0.90 → 0.0.91
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.
|
@@ -11,8 +11,8 @@ export interface ColumnsProps {
|
|
|
11
11
|
interface GridProps {
|
|
12
12
|
columns: ColumnsProps[];
|
|
13
13
|
children: ReactNode;
|
|
14
|
-
prependColumn
|
|
15
|
-
appendColumn
|
|
14
|
+
prependColumn?: ReactNode;
|
|
15
|
+
appendColumn?: ReactNode;
|
|
16
16
|
fixedColumns?: boolean;
|
|
17
17
|
sortedBy: string;
|
|
18
18
|
sortedDirection: 'asc' | 'desc';
|
package/dist/index.d.ts
CHANGED
|
@@ -207,8 +207,8 @@ interface ColumnsProps {
|
|
|
207
207
|
interface GridProps {
|
|
208
208
|
columns: ColumnsProps[];
|
|
209
209
|
children: ReactNode;
|
|
210
|
-
prependColumn
|
|
211
|
-
appendColumn
|
|
210
|
+
prependColumn?: ReactNode;
|
|
211
|
+
appendColumn?: ReactNode;
|
|
212
212
|
fixedColumns?: boolean;
|
|
213
213
|
sortedBy: string;
|
|
214
214
|
sortedDirection: 'asc' | 'desc';
|