sag_components 2.0.0-beta143 → 2.0.0-beta144
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.esm.js +81 -127
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +81 -127
- package/dist/index.js.map +1 -1
- package/dist/types/components/Table/TableBody.d.ts +3 -6
- package/dist/types/components/Table/TableBody.styles.d.ts +0 -2
- package/dist/types/components/Table/data.d.ts +16 -3
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default TableBody;
|
|
2
|
-
declare function TableBody({ columns, data, onRowClick, onSendClick, buttonColor, onDeleteClick, selectedColor,
|
|
2
|
+
declare function TableBody({ columns, data, onRowClick, onSendClick, buttonColor, onDeleteClick, selectedColor, resetFocusIndex, changeFocusIndex, onFocusChange, indexToShimmer, onCommentSave, ref, }: {
|
|
3
3
|
columns: any;
|
|
4
4
|
data: any;
|
|
5
5
|
onRowClick: any;
|
|
@@ -7,13 +7,10 @@ declare function TableBody({ columns, data, onRowClick, onSendClick, buttonColor
|
|
|
7
7
|
buttonColor: any;
|
|
8
8
|
onDeleteClick: any;
|
|
9
9
|
selectedColor: any;
|
|
10
|
-
|
|
10
|
+
resetFocusIndex: any;
|
|
11
|
+
changeFocusIndex: any;
|
|
11
12
|
onFocusChange: any;
|
|
12
13
|
indexToShimmer?: number;
|
|
13
|
-
statuses?: {
|
|
14
|
-
status: string;
|
|
15
|
-
palette: string[];
|
|
16
|
-
}[];
|
|
17
14
|
onCommentSave?: () => void;
|
|
18
15
|
ref?: any;
|
|
19
16
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -10,5 +10,3 @@ export const SentStatus: import("styled-components/dist/types").IStyledComponent
|
|
|
10
10
|
export const TrashIconWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
11
11
|
export const CommentIconWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
12
12
|
export const DisabledTrashIconWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
13
|
-
export const StatusCell: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
14
|
-
export const StatusCellCircle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -175,8 +175,7 @@ export const supplierColumns: ({
|
|
|
175
175
|
freeTextFilter?: undefined;
|
|
176
176
|
rangeFilter?: undefined;
|
|
177
177
|
})[];
|
|
178
|
-
export const supplierData: {
|
|
179
|
-
Status: string;
|
|
178
|
+
export const supplierData: ({
|
|
180
179
|
Supplier: string;
|
|
181
180
|
EventID: string;
|
|
182
181
|
WeekNumber: string;
|
|
@@ -190,4 +189,18 @@ export const supplierData: {
|
|
|
190
189
|
HUB: string;
|
|
191
190
|
Comments: string;
|
|
192
191
|
Trash: string;
|
|
193
|
-
}
|
|
192
|
+
} | {
|
|
193
|
+
Supplier: string;
|
|
194
|
+
EventID: string;
|
|
195
|
+
WeekNumber: string;
|
|
196
|
+
Period: string;
|
|
197
|
+
EventAttribute: string;
|
|
198
|
+
EventType: string;
|
|
199
|
+
EventSubType: string;
|
|
200
|
+
Component: string;
|
|
201
|
+
NegotiatedBrand: string;
|
|
202
|
+
ProductGroup: string;
|
|
203
|
+
HUB: string;
|
|
204
|
+
Comments: string;
|
|
205
|
+
Trash?: undefined;
|
|
206
|
+
})[];
|