@ngneat/helipopper 4.3.0 → 5.0.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.
Files changed (52) hide show
  1. package/README.md +1 -1
  2. package/esm2020/lib/defaults.mjs +25 -0
  3. package/esm2020/lib/tippy.directive.mjs +345 -0
  4. package/esm2020/lib/tippy.module.mjs +28 -0
  5. package/esm2020/lib/tippy.service.mjs +73 -0
  6. package/{esm2015/lib/tippy.types.js → esm2020/lib/tippy.types.mjs} +0 -0
  7. package/{esm2015/lib/utils.js → esm2020/lib/utils.mjs} +2 -2
  8. package/{esm2015/ngneat-helipopper.js → esm2020/ngneat-helipopper.mjs} +1 -1
  9. package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
  10. package/fesm2015/{ngneat-helipopper.js → ngneat-helipopper.mjs} +96 -63
  11. package/fesm2015/ngneat-helipopper.mjs.map +1 -0
  12. package/fesm2020/ngneat-helipopper.mjs +561 -0
  13. package/fesm2020/ngneat-helipopper.mjs.map +1 -0
  14. package/lib/tippy.directive.d.ts +3 -0
  15. package/lib/tippy.module.d.ts +5 -0
  16. package/lib/tippy.service.d.ts +3 -0
  17. package/ngneat-helipopper.d.ts +1 -1
  18. package/package.json +23 -11
  19. package/bundles/ngneat-helipopper.umd.js +0 -912
  20. package/bundles/ngneat-helipopper.umd.js.map +0 -1
  21. package/esm2015/lib/defaults.js +0 -19
  22. package/esm2015/lib/tippy.directive.js +0 -315
  23. package/esm2015/lib/tippy.module.js +0 -23
  24. package/esm2015/lib/tippy.service.js +0 -67
  25. package/fesm2015/ngneat-helipopper.js.map +0 -1
  26. package/ngneat-helipopper.metadata.json +0 -1
  27. package/schematics/collection.json +0 -12
  28. package/schematics/ng-add/index.js +0 -73
  29. package/schematics/ng-add/index.js.map +0 -1
  30. package/schematics/ng-add/index.ts +0 -79
  31. package/schematics/ng-add/schema.js +0 -3
  32. package/schematics/ng-add/schema.js.map +0 -1
  33. package/schematics/ng-add/schema.json +0 -18
  34. package/schematics/ng-add/schema.ts +0 -10
  35. package/schematics/schematics.consts.js +0 -5
  36. package/schematics/schematics.consts.js.map +0 -1
  37. package/schematics/schematics.consts.ts +0 -1
  38. package/schematics/utils/ast-utils.js +0 -500
  39. package/schematics/utils/ast-utils.js.map +0 -1
  40. package/schematics/utils/ast-utils.ts +0 -596
  41. package/schematics/utils/change.js +0 -127
  42. package/schematics/utils/change.js.map +0 -1
  43. package/schematics/utils/change.ts +0 -162
  44. package/schematics/utils/find-module.js +0 -113
  45. package/schematics/utils/find-module.js.map +0 -1
  46. package/schematics/utils/find-module.ts +0 -125
  47. package/schematics/utils/package.js +0 -22
  48. package/schematics/utils/package.js.map +0 -1
  49. package/schematics/utils/package.ts +0 -22
  50. package/schematics/utils/projects.js +0 -31
  51. package/schematics/utils/projects.js.map +0 -1
  52. package/schematics/utils/projects.ts +0 -31
@@ -2,10 +2,13 @@ import { Injector } from '@angular/core';
2
2
  import { ViewService } from '@ngneat/overview';
3
3
  import { Content } from '@ngneat/overview';
4
4
  import { CreateOptions, TippyConfig, TippyInstance } from './tippy.types';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class TippyService {
6
7
  private globalConfig;
7
8
  private view;
8
9
  private injector;
9
10
  constructor(globalConfig: TippyConfig, view: ViewService, injector: Injector);
10
11
  create(host: Element, content: Content, options?: Partial<CreateOptions>): TippyInstance;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<TippyService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<TippyService>;
11
14
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@ngneat/helipopper" />
4
5
  export * from './public-api';
5
- export { TippyConfig as ɵa } from './lib/tippy.types';
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@ngneat/helipopper",
3
- "version": "4.3.0",
3
+ "version": "5.0.0",
4
4
  "description": "A Powerful Tooltip and Popover for Angular Applications",
5
- "schematics": "./schematics/collection.json",
6
5
  "dependencies": {
7
- "tippy.js": "^6.2.3",
8
- "tslib": "^2.0.0"
6
+ "tippy.js": "6.3.7",
7
+ "tslib": "2.3.1"
9
8
  },
10
9
  "peerDependencies": {
11
- "@ngneat/overview": "*"
10
+ "@angular/core": ">=13.0.0",
11
+ "@ngneat/overview": ">=3.0.0"
12
12
  },
13
13
  "keywords": [
14
14
  "angular",
@@ -32,12 +32,24 @@
32
32
  "type": "git",
33
33
  "url": "https://github.com/ngneat/helipopper"
34
34
  },
35
- "main": "bundles/ngneat-helipopper.umd.js",
36
- "module": "fesm2015/ngneat-helipopper.js",
37
- "es2015": "fesm2015/ngneat-helipopper.js",
38
- "esm2015": "esm2015/ngneat-helipopper.js",
39
- "fesm2015": "fesm2015/ngneat-helipopper.js",
35
+ "module": "fesm2015/ngneat-helipopper.mjs",
36
+ "es2020": "fesm2020/ngneat-helipopper.mjs",
37
+ "esm2020": "esm2020/ngneat-helipopper.mjs",
38
+ "fesm2020": "fesm2020/ngneat-helipopper.mjs",
39
+ "fesm2015": "fesm2015/ngneat-helipopper.mjs",
40
40
  "typings": "ngneat-helipopper.d.ts",
41
- "metadata": "ngneat-helipopper.metadata.json",
41
+ "exports": {
42
+ "./package.json": {
43
+ "default": "./package.json"
44
+ },
45
+ ".": {
46
+ "types": "./ngneat-helipopper.d.ts",
47
+ "esm2020": "./esm2020/ngneat-helipopper.mjs",
48
+ "es2020": "./fesm2020/ngneat-helipopper.mjs",
49
+ "es2015": "./fesm2015/ngneat-helipopper.mjs",
50
+ "node": "./fesm2015/ngneat-helipopper.mjs",
51
+ "default": "./fesm2020/ngneat-helipopper.mjs"
52
+ }
53
+ },
42
54
  "sideEffects": false
43
55
  }