@haiilo/catalyst-angular 0.0.7 → 0.4.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,48 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.4.0](https://github.com/haiilo/catalyst/compare/v0.3.2...v0.4.0) (2022-04-26)
7
+
8
+
9
+ ### Features
10
+
11
+ * **core:** add tooltip component ([8134e98](https://github.com/haiilo/catalyst/commit/8134e98cde4f7b9e746c2179ffafdbfe8eff4128))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.3.2](https://github.com/haiilo/catalyst/compare/v0.3.1...v0.3.2) (2022-04-25)
18
+
19
+ **Note:** Version bump only for package @haiilo/catalyst-angular
20
+
21
+
22
+
23
+
24
+
25
+ ## 0.3.1 (2022-04-23)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * lerna integration ([ebab9a3](https://github.com/haiilo/catalyst/commit/ebab9a37748e11a33fd552502ed95bfec949c409))
31
+ * umd warning ([e678c5f](https://github.com/haiilo/catalyst/commit/e678c5fa6e8d89105323de0fcb90b9cfdba6222c))
32
+
33
+
34
+ ### Features
35
+
36
+ * **core:** add alert ([8cad923](https://github.com/haiilo/catalyst/commit/8cad92339ac74b142ca6a4a0ec143982c659b970))
37
+ * **core:** add badge ([d250eb8](https://github.com/haiilo/catalyst/commit/d250eb808f77c34a430b5406edba7c11e12cf4bd))
38
+ * **core:** add skeleton component ([561f7a6](https://github.com/haiilo/catalyst/commit/561f7a627770aaef6daadca0acc5c0c858261320))
39
+ * **core:** added scrollable component ([347886b](https://github.com/haiilo/catalyst/commit/347886b2782801e445da7afc2f768aa531862084))
40
+ * **core:** changes for coyo app integration ([7304886](https://github.com/haiilo/catalyst/commit/7304886e5a2a781adcb0db2b1a63ddc58eaa6ef8))
41
+ * **core:** changes for coyo app integration ([2b6cc05](https://github.com/haiilo/catalyst/commit/2b6cc057bbd813f328ff36374a514bc56d6a15bd))
42
+ * **core:** changes for coyo app integration ([101297d](https://github.com/haiilo/catalyst/commit/101297dde26a5e8ecd007cd535667d2d3e71441a))
43
+
44
+
45
+
46
+
47
+
6
48
  ## 0.0.7 (2022-04-22)
7
49
 
8
50
 
package/package.json CHANGED
@@ -1,18 +1,21 @@
1
1
  {
2
2
  "name": "@haiilo/catalyst-angular",
3
- "version": "0.0.7",
3
+ "version": "0.4.0",
4
4
  "description": "Angular wrapper for Catalyst Design System",
5
5
  "license": "MIT",
6
+ "scripts": {
7
+ "reset": "rm -rf ./node_modules"
8
+ },
6
9
  "publishConfig": {
7
10
  "access": "public"
8
11
  },
9
- "dependencies": {
10
- "@haiilo/catalyst": "^0.2.3",
11
- "tslib": "^2.3.0"
12
- },
13
12
  "peerDependencies": {
14
13
  "@angular/core": ">=12.0.0",
15
14
  "rxjs": ">=6.6.0"
16
15
  },
17
- "gitHead": "3bd083786a1df0a2de5b5d4a5eb557b44fb97800"
16
+ "dependencies": {
17
+ "@haiilo/catalyst": "^0.4.0",
18
+ "tslib": "^2.3.0"
19
+ },
20
+ "gitHead": "281ac5d06460e618cd9af149b480667d3cbc917d"
18
21
  }
@@ -220,3 +220,24 @@ export class CatSpinner {
220
220
  this.el = r.nativeElement;
221
221
  }
222
222
  }
223
+
224
+
225
+ export declare interface CatTooltip extends Components.CatTooltip {}
226
+
227
+ @ProxyCmp({
228
+ defineCustomElementFn: undefined,
229
+ inputs: ['content', 'disabled', 'hideDelay', 'longTouchDuration', 'placement', 'showDelay']
230
+ })
231
+ @Component({
232
+ selector: 'cat-tooltip',
233
+ changeDetection: ChangeDetectionStrategy.OnPush,
234
+ template: '<ng-content></ng-content>',
235
+ inputs: ['content', 'disabled', 'hideDelay', 'longTouchDuration', 'placement', 'showDelay']
236
+ })
237
+ export class CatTooltip {
238
+ protected el: HTMLElement;
239
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
240
+ c.detach();
241
+ this.el = r.nativeElement;
242
+ }
243
+ }