@ticatec/uniface-element 0.3.9 → 0.3.10
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/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -4,6 +4,9 @@ import { DisplayMode } from "./common/DisplayMode.js";
|
|
|
4
4
|
import { DateContext } from "./base-calendar";
|
|
5
5
|
import { ModalResult } from "./message-box";
|
|
6
6
|
import type { LazyLoader } from "./list-box";
|
|
7
|
+
import type { GetRowActions } from "./data-table";
|
|
8
|
+
import type { GetCellStyle } from "./data-table/lib/types";
|
|
9
|
+
import type { GetRowFontStyle, RowFontStyle } from "./data-table/lib/types";
|
|
7
10
|
/**
|
|
8
11
|
* 从选中的Option中获取对于的文字值
|
|
9
12
|
*/
|
|
@@ -11,3 +14,4 @@ type RetrieveOptionText = (item: any) => string;
|
|
|
11
14
|
export { DateContext, ModalResult, DisplayMode };
|
|
12
15
|
export type { RetrieveOptionText, LazyLoader };
|
|
13
16
|
export type { OnChangeHandler, MouseClickHandler };
|
|
17
|
+
export type { GetRowActions, GetCellStyle, GetRowFontStyle, RowFontStyle };
|
package/package.json
CHANGED