@apexcura/ui-components 0.0.16-Beta1244 → 0.0.16-Beta1246
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 +4 -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;
|
|
@@ -117,6 +118,7 @@ export type ElementType = {
|
|
|
117
118
|
expandIconStyles?: boolean;
|
|
118
119
|
enableRowSelection?: boolean;
|
|
119
120
|
showSelectionControls?: boolean;
|
|
121
|
+
dropdownStyle?: CSSProperties;
|
|
120
122
|
isIconOnly?: boolean;
|
|
121
123
|
value?: string | number | boolean | null | object | undefined | string[] | UploadFile[] | PaginationType | DateRangeSegmentType | dropDownValueProps | radioValueProps | WeekSchedule | autoCompleteProps;
|
|
122
124
|
status?: string | undefined;
|
|
@@ -167,6 +169,8 @@ export type ElementType = {
|
|
|
167
169
|
id?: number | string;
|
|
168
170
|
fullHeight?: boolean;
|
|
169
171
|
thead?: {
|
|
172
|
+
sorter?: boolean;
|
|
173
|
+
defaultSortOrder?: SortOrder;
|
|
170
174
|
width?: number;
|
|
171
175
|
_id?: string;
|
|
172
176
|
name?: string;
|