@annalib/anna-core 6.1.2 → 6.1.3
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-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +5 -8
- package/fesm2015/annalib-anna-core.mjs +4 -7
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +4 -7
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +1 -1
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +1 -2
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_generic-table-common.scss +7 -17
|
@@ -20,7 +20,7 @@ export interface IHeaderInfo {
|
|
|
20
20
|
tooltip?: ITooltip;
|
|
21
21
|
joinedFilterSortObjectKeys?: string;
|
|
22
22
|
}
|
|
23
|
-
declare type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS" | "CLICKABLE_DATA" | "
|
|
23
|
+
declare type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS" | "CLICKABLE_DATA" | "STRING__TEXT_ACTION";
|
|
24
24
|
declare type FILTERTYPE = "CHECKBOX" | "SLIDER" | "DATE" | "TIME" | "WEEK";
|
|
25
25
|
export interface ITotalRowInfo {
|
|
26
26
|
colspan: number;
|
|
@@ -237,8 +237,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
237
237
|
bindTheValueToSellerGroupTooltip(sellerGroupHierarchy: RatingSellerGroupHierarchy[], tooltip: any): void;
|
|
238
238
|
iconClicked(rowData: any, iconClass: string): void;
|
|
239
239
|
svgIconClicked(data: GtColumnIconEmittedData): void;
|
|
240
|
-
textActionClicked(rowData: any, id:
|
|
241
|
-
iconClickedOnStringIconActionType(rowData: any, id: any): void;
|
|
240
|
+
textActionClicked(rowData: any, id: number): void;
|
|
242
241
|
viewDetailsClicked(rowData: any): void;
|
|
243
242
|
storeSortTypeInTempVariable(event: SortType): void;
|
|
244
243
|
unCheckAllCheckbox(): void;
|
package/package.json
CHANGED
|
@@ -50,20 +50,10 @@
|
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
// @mixin table-ellipses-only-on-text-span {
|
|
62
|
-
// span {
|
|
63
|
-
// text-overflow: ellipsis !important;
|
|
64
|
-
// overflow: hidden !important;
|
|
65
|
-
// white-space:nowrap !important;
|
|
66
|
-
// display: inline-block !important;
|
|
67
|
-
// width: 80% !important;
|
|
68
|
-
// }
|
|
69
|
-
// }
|
|
53
|
+
@mixin table-ellipses {
|
|
54
|
+
div {
|
|
55
|
+
text-overflow: ellipsis !important;
|
|
56
|
+
overflow: hidden !important;
|
|
57
|
+
white-space:nowrap !important;
|
|
58
|
+
}
|
|
59
|
+
}
|