@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.
@@ -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: number): void;
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.1.1",
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
- div {
55
- text-overflow: ellipsis !important;
56
- overflow: hidden !important;
57
- white-space:nowrap !important;
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
+ // }