@annalib/anna-core 7.1.1 → 7.2.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.
- package/esm2020/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +1 -1
- package/esm2020/lib/anna-core.module.mjs +1 -1
- package/esm2020/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +4 -3
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +12 -5
- package/fesm2015/annalib-anna-core.mjs +13 -6
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +13 -6
- 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 +2 -1
- package/package.json +2 -1
- package/src/lib/anna-common-scss/_generic-table-common.scss +17 -7
|
@@ -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" | "STRING__TEXT_ACTION";
|
|
23
|
+
declare type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS" | "CLICKABLE_DATA" | "CLICKABLE_DATA_2" | "STRING__TEXT_ACTION" | "STRING__ICON_ACTION" | "STRING___ICON_OR_TEXT_ACTION" | "STRING___ICON_OR_TEXT_ACTION_1" | "STRING___ICON_OR_TEXT_ACTION_2" | "STRING___ICON_OR_TEXT_ACTION_3";
|
|
24
24
|
declare type FILTERTYPE = "CHECKBOX" | "SLIDER" | "DATE" | "TIME" | "WEEK";
|
|
25
25
|
export interface ITotalRowInfo {
|
|
26
26
|
colspan: number;
|
|
@@ -237,7 +237,8 @@ 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:
|
|
240
|
+
textActionClicked(rowData: any, id: any): void;
|
|
241
|
+
iconClickedOnStringIconActionType(rowData: any, id: any): void;
|
|
241
242
|
viewDetailsClicked(rowData: any): void;
|
|
242
243
|
storeSortTypeInTempVariable(event: SortType): void;
|
|
243
244
|
unCheckAllCheckbox(): void;
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@annalib/anna-core",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular-slider/ngx-slider": "2.0.3",
|
|
6
6
|
"@angular/common": "^13.2.0",
|
|
7
7
|
"@angular/core": "^13.2.0",
|
|
8
8
|
"@angular/material": "^13.2.6",
|
|
9
9
|
"@ng-bootstrap/ng-bootstrap": "^9.0.1",
|
|
10
|
+
"@annalib/anna-cognito-lib": "0.6.0",
|
|
10
11
|
"lodash-es": "^4.17.21",
|
|
11
12
|
"dayjs": "^1.11.6",
|
|
12
13
|
"ngx-skeleton-loader": "^2.10.1",
|
|
@@ -50,10 +50,20 @@
|
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
-
@mixin table-ellipses {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
}
|
|
53
|
+
// @mixin table-ellipses {
|
|
54
|
+
// div {
|
|
55
|
+
// text-overflow: ellipsis !important;
|
|
56
|
+
// overflow: hidden !important;
|
|
57
|
+
// white-space:nowrap !important;
|
|
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
|
+
// }
|