@annalib/anna-core 22.3.7 → 22.4.0
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/esm2020/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +1 -1
- package/esm2020/lib/anna-core-shared-lib/services/anna-filter.service.mjs +1 -14
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +3 -21
- package/fesm2015/annalib-anna-core.mjs +2 -33
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +2 -33
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +9 -10
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +0 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_easy-filter.scss +4 -0
|
@@ -67,7 +67,6 @@ export interface ITooltip {
|
|
|
67
67
|
tooltipPosition: string;
|
|
68
68
|
iconClass: string;
|
|
69
69
|
tooltipClass: string;
|
|
70
|
-
tooltipMessage?: string;
|
|
71
70
|
}
|
|
72
71
|
export interface IconData {
|
|
73
72
|
data: any;
|
|
@@ -98,22 +97,22 @@ export declare class ClickableItem {
|
|
|
98
97
|
export interface IActionItemTypeSTRING__ICON_OR_TEXT_ACTION {
|
|
99
98
|
id: any;
|
|
100
99
|
data: string;
|
|
101
|
-
|
|
100
|
+
typeOfData: 'STRING' | 'ICON_TEXT_ACTION';
|
|
101
|
+
additionalTextBeforeLink: string;
|
|
102
|
+
iconClass?: string;
|
|
102
103
|
showIcon: boolean;
|
|
103
|
-
disabledIcon
|
|
104
|
-
linkClass
|
|
105
|
-
showLink
|
|
106
|
-
disabledLink
|
|
104
|
+
disabledIcon?: boolean;
|
|
105
|
+
linkClass?: string;
|
|
106
|
+
showLink?: boolean;
|
|
107
|
+
disabledLink?: boolean;
|
|
107
108
|
showTooltip: boolean;
|
|
108
|
-
tooltipData
|
|
109
|
+
tooltipData?: {
|
|
109
110
|
key: string;
|
|
110
111
|
value: string;
|
|
111
112
|
}[];
|
|
112
113
|
tooltipClass?: string;
|
|
113
114
|
tooltipPlacement?: string;
|
|
114
|
-
|
|
115
|
-
additionalTextBeforeLink: string;
|
|
116
|
-
enableTooltipForAdditionalText: boolean;
|
|
115
|
+
enableTooltipForAdditionalText?: boolean;
|
|
117
116
|
}
|
|
118
117
|
export declare type IconToShow = "LIVE" | "PAY_FOR_PERFORMANCE_ACTIVE" | "PAY_FOR_PERFORMANCE" | "REJECTED" | "NOTIFY" | "AWAITING_APPROVAL" | "DELETED_ORDER" | "NEED_SELLER_CONFIRMATION" | "NEED_BUYER_CONFIRMATION";
|
|
119
118
|
export {};
|
|
@@ -98,7 +98,6 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
98
98
|
isScrolledLeft: boolean;
|
|
99
99
|
rowBorderWidth: number;
|
|
100
100
|
sameTooltipClicked: boolean;
|
|
101
|
-
isScrollEnded: boolean;
|
|
102
101
|
marginTop: string;
|
|
103
102
|
viewChildTableHeaders: QueryList<ElementRef>;
|
|
104
103
|
isDifferenceLessThan25Percent: boolean;
|
package/package.json
CHANGED