@annalib/anna-core 34.0.37 → 34.1.1
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.
|
@@ -10,6 +10,7 @@ export interface IGtTableHeader {
|
|
|
10
10
|
dummyHeader?: boolean;
|
|
11
11
|
columnNumber?: number;
|
|
12
12
|
}
|
|
13
|
+
export type TDCellClass = "CENTRE";
|
|
13
14
|
export interface IHeaderInfo {
|
|
14
15
|
name: string;
|
|
15
16
|
objectKey: string;
|
|
@@ -25,6 +26,7 @@ export interface IHeaderInfo {
|
|
|
25
26
|
showTooltipIcon: boolean;
|
|
26
27
|
disableTooltipIcon?: boolean;
|
|
27
28
|
tooltip?: ITooltip;
|
|
29
|
+
tdCellClass?: TDCellClass;
|
|
28
30
|
joinedFilterSortObjectKeys?: string;
|
|
29
31
|
showSplitedOptionsInFilter?: boolean[];
|
|
30
32
|
splitDelimiter?: string[];
|
|
@@ -32,6 +34,7 @@ export interface IHeaderInfo {
|
|
|
32
34
|
type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS" | "CLICKABLE_DATA" | "STRING__TEXT_ACTION" | "STRING__ICON_ACTION" | "STRING___ICON_OR_TEXT_ACTION" | "HTML" | "HTML_STRING" | "ICON_CELL" | "STRING_OR_INPUT" | "SINGLE_RADIO" | "STRING_WITH_TOOLTIP" | "STRING_WITH_ELLIPSIS_AND_READ_MORE_TOOLTIP" | "STRING_ELLIPSIS_WITH_TABLE_TOOLTIP" | "STRING_WITH_TOOLTIP_INNER_HTML" | "ICON_CELL_AND_STRING_WITH_ELLIPSIS_AND_READ_MORE_TOOLTIP" | "SINGLE_SELECT_DROPDOWN" | "DIGIT_ONLY_INPUT";
|
|
33
35
|
type FILTERTYPE = "CHECKBOX" | "SLIDER" | "DATE" | "TIME" | "WEEK";
|
|
34
36
|
export interface ISvgOrIconTypeInGTTable {
|
|
37
|
+
id?: string;
|
|
35
38
|
showObjectKey: boolean;
|
|
36
39
|
svgOrIconName?: string;
|
|
37
40
|
svgOrIconTooltipMsg?: string;
|
|
@@ -175,8 +178,10 @@ export interface IActionItemTypeWithStringIconOrTextAction {
|
|
|
175
178
|
tooltipPlacement?: string;
|
|
176
179
|
enableTooltipForAdditionalText?: boolean;
|
|
177
180
|
additionalTextAfterLink?: string;
|
|
181
|
+
showSimpleIcon?: boolean;
|
|
182
|
+
tooltipDataForSimpleIcon?: string;
|
|
178
183
|
}
|
|
179
|
-
export type IconToShow = "LIVE" | "PAY_FOR_PERFORMANCE_ACTIVE" | "PAY_FOR_PERFORMANCE" | "REJECTED" | "NOTIFY" | "AWAITING_APPROVAL" | "DELETED_ORDER" | "NEED_SELLER_CONFIRMATION" | "NEED_BUYER_CONFIRMATION" | "AUTOMATED" | "WARNING_ICON" | "INFORMATION_OUTLINE_ICON" | "ALERT_OCTAGON_ICON" | "CANCEL_ICON" | "ALPHA_B_CIRCLE" | "ALPHA_R_CIRCLE" | "ALPHA_E_CIRCLE" | "ALPHA_A_CIRCLE" | "MESSAGE" | "CALENDAR";
|
|
184
|
+
export type IconToShow = "LIVE" | "PAY_FOR_PERFORMANCE_ACTIVE" | "PAY_FOR_PERFORMANCE" | "REJECTED" | "NOTIFY" | "AWAITING_APPROVAL" | "DELETED_ORDER" | "NEED_SELLER_CONFIRMATION" | "NEED_BUYER_CONFIRMATION" | "AUTOMATED" | "WARNING_ICON" | "INFORMATION_OUTLINE_ICON" | "ALERT_OCTAGON_ICON" | "CANCEL_ICON" | "ALPHA_B_CIRCLE" | "ALPHA_R_CIRCLE" | "ALPHA_E_CIRCLE" | "ALPHA_A_CIRCLE" | "MESSAGE" | "CALENDAR" | "EMAIL_ICON";
|
|
180
185
|
export declare class TableClassNameConstant {
|
|
181
186
|
static readonly defaultClass = "table-body-row ";
|
|
182
187
|
static readonly selectedRow = "selected-row ";
|
package/package.json
CHANGED
|
@@ -403,6 +403,9 @@
|
|
|
403
403
|
@mixin no-data-table($table-container-height, $box-shadow-map, $row-height-map: ()) {
|
|
404
404
|
.table-container.no-data-table > div {
|
|
405
405
|
height: $table-container-height !important;
|
|
406
|
+
tr td {
|
|
407
|
+
filter: none !important;
|
|
408
|
+
}
|
|
406
409
|
}
|
|
407
410
|
|
|
408
411
|
$box-shadow-start-index: map.get($box-shadow-map, "box-shadow-start-index");
|