@annalib/anna-core 22.4.0 → 22.4.2

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.
@@ -40,3 +40,6 @@ export declare class OrderSources {
40
40
  static readonly WOZ = "WOZ";
41
41
  static readonly Darwin = "Darwin";
42
42
  }
43
+ export declare class ANNAIconNames {
44
+ static readonly AutomationActivatedIconName = "anna-automation-activated-icon mdi mdi-cog-refresh";
45
+ }
@@ -94,6 +94,15 @@ export declare class ClickableItem {
94
94
  value: string;
95
95
  });
96
96
  }
97
+ export declare class IconCellActionKey {
98
+ id: number | string;
99
+ showIcon: boolean;
100
+ iconClass: string;
101
+ showObjectKey: boolean;
102
+ showTooltip: boolean;
103
+ tooltipData?: string;
104
+ constructor(id: any, showIcon: boolean, iconClass: string, showObjectKey: boolean, showTooltip: boolean, tooltipData?: string);
105
+ }
97
106
  export interface IActionItemTypeSTRING__ICON_OR_TEXT_ACTION {
98
107
  id: any;
99
108
  data: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@annalib/anna-core",
3
- "version": "22.4.0",
3
+ "version": "22.4.2",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "^2.0.4",
6
6
  "@angular/common": "^15.2.9",
@@ -123,6 +123,10 @@
123
123
  color: #ffc107;
124
124
  opacity: 0.5;
125
125
  }
126
+
127
+ i.mdi-cog-refresh {
128
+ color: #8bac2a;
129
+ }
126
130
  }
127
131
  }
128
132
 
@@ -122,10 +122,6 @@ $intelli-filter-icon-default-map: (
122
122
  color: #f44336;
123
123
  margin-right: 2px;
124
124
  }
125
-
126
- &.mdi-cog-refresh{
127
- color: #8bac2a;
128
- }
129
125
  }
130
126
 
131
127
  button.intelli-filter.active {
@@ -0,0 +1,3 @@
1
+ ::ng-deep.anna-automation-activated-icon.mdi.mdi-cog-refresh {
2
+ color: #8bac2a;
3
+ }
@@ -1 +1 @@
1
- @import "./colors", "./filters", "./fonts", "./sort", "./application-spacing", "./customDropdown";
1
+ @import "./colors", "./filters", "./fonts", "./sort", "./application-spacing", "./customDropdown", "./icons";