@apexcura/ui-components 0.0.16-Beta1244 → 0.0.16-Beta1245
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/types.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/report.html +2 -2
- package/package.json +1 -1
package/dist/Types/types.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { SizeType } from 'antd/es/config-provider/SizeContext';
|
|
|
3
3
|
import { RadioGroupButtonStyle } from 'antd/es/radio';
|
|
4
4
|
import { TabsPosition } from 'antd/es/tabs';
|
|
5
5
|
import { TooltipPlacement } from 'antd/es/tooltip';
|
|
6
|
+
import { SortOrder } from 'antd/es/table/interface';
|
|
6
7
|
import React, { CSSProperties, JSXElementConstructor, LegacyRef, ReactElement, ReactNode } from 'react';
|
|
7
8
|
type PaginationType = {
|
|
8
9
|
name?: string;
|
|
@@ -167,6 +168,8 @@ export type ElementType = {
|
|
|
167
168
|
id?: number | string;
|
|
168
169
|
fullHeight?: boolean;
|
|
169
170
|
thead?: {
|
|
171
|
+
sorter?: boolean;
|
|
172
|
+
defaultSortOrder?: SortOrder;
|
|
170
173
|
width?: number;
|
|
171
174
|
_id?: string;
|
|
172
175
|
name?: string;
|