otimus-library 0.1.73 → 0.1.76

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.
@@ -7,7 +7,7 @@ export declare class OcTooltipDirective {
7
7
  content: string;
8
8
  side: 'bottom' | 'upon' | 'left' | 'right' | 'top';
9
9
  created: boolean;
10
- createToolTip(): any;
10
+ createToolTip(): void;
11
11
  onMouseOver(): void;
12
12
  onMouseOut(): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<OcTooltipDirective, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "otimus-library",
3
- "version": "0.1.73",
3
+ "version": "0.1.76",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "^17.0.2",
@@ -3,11 +3,11 @@
3
3
  position: absolute;
4
4
  padding: 0.35rem 0.7rem;
5
5
  font-size: 0.9rem;
6
- font-weight: 600;
7
- color: #7E8485;
6
+ font-weight: 500;
7
+ background-color: #F8F9FF;
8
8
  border: 1px solid white;
9
9
  border-radius: 0.75rem;
10
- box-shadow: '0px 3px 6.5px 0px rgba(0, 0, 0, 0.20)';
10
+ box-shadow: 0px 3px 6.5px 0px rgba(0, 0, 0, 0.20);
11
11
  transition: 0.15s ease;
12
12
  max-width: 400px;
13
13
  z-index: 1000;
@@ -18,9 +18,7 @@
18
18
  @keyframes show-up {
19
19
  from {
20
20
  opacity: 0;
21
- transform: scale(0.7);
22
21
  } to {
23
22
  opacity: 1;
24
- transform: scale(1);
25
23
  }
26
24
  }