laif-ds 0.1.36 → 0.1.37
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/dist/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -490,14 +490,14 @@ export declare function CommandShortcut({ className, ...props }: React_2.Compone
|
|
|
490
490
|
declare const confirm_2: (payload: ConfirmOptions) => Promise<boolean>;
|
|
491
491
|
export { confirm_2 as confirm }
|
|
492
492
|
|
|
493
|
-
declare interface ConfirmedCell {
|
|
493
|
+
export declare interface ConfirmedCell {
|
|
494
494
|
fromId: string;
|
|
495
495
|
toId: string;
|
|
496
496
|
id?: string;
|
|
497
497
|
value: any;
|
|
498
498
|
}
|
|
499
499
|
|
|
500
|
-
declare interface ConfirmedCellsData {
|
|
500
|
+
export declare interface ConfirmedCellsData {
|
|
501
501
|
editedCells: ConfirmedCell[];
|
|
502
502
|
toDefaultCells: ConfirmedCell[];
|
|
503
503
|
}
|
|
@@ -572,13 +572,13 @@ export declare interface CrossTableCell {
|
|
|
572
572
|
id?: string;
|
|
573
573
|
}
|
|
574
574
|
|
|
575
|
-
declare interface CrossTableData {
|
|
575
|
+
export declare interface CrossTableData {
|
|
576
576
|
headerTop: CrossTableHeader[];
|
|
577
577
|
headerLeft: CrossTableHeader[];
|
|
578
578
|
data: (CrossTableCell | null)[][];
|
|
579
579
|
}
|
|
580
580
|
|
|
581
|
-
declare interface CrossTableHeader {
|
|
581
|
+
export declare interface CrossTableHeader {
|
|
582
582
|
id: string;
|
|
583
583
|
label: string;
|
|
584
584
|
}
|