@smart-webcomponents-angular/tooltip 9.2.20 → 11.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 (44) hide show
  1. package/bundles/smart-webcomponents-angular-tooltip.umd.js +12 -0
  2. package/bundles/smart-webcomponents-angular-tooltip.umd.min.js +1 -1
  3. package/common/i18n.phonenumbers.min.js +501 -0
  4. package/common/runtime.js +748 -0
  5. package/demo/angular.json +4 -4
  6. package/demo/package.json +3 -3
  7. package/demo/src/tsconfig.app.json +15 -15
  8. package/demo/src/tsconfig.json +23 -23
  9. package/esm2015/tooltip/smart.tooltip.js +9 -1
  10. package/fesm2015/smart-webcomponents-angular-tooltip.js +8 -0
  11. package/fesm2015/smart-webcomponents-angular-tooltip.js.map +1 -1
  12. package/images/dropable_zone_image.svg +25 -0
  13. package/images/error.png +0 -0
  14. package/images/flags.png +0 -0
  15. package/images/icons-sprite.svg +85 -0
  16. package/images/icons-stack.svg +132 -0
  17. package/images/info.png +0 -0
  18. package/images/magnifier.png +0 -0
  19. package/images/mail.png +0 -0
  20. package/images/radial.svg +1 -0
  21. package/images/success.png +0 -0
  22. package/images/time.png +0 -0
  23. package/images/warning.png +0 -0
  24. package/index.d.ts +3294 -650
  25. package/package.json +1 -1
  26. package/source/modules/smart.tooltip.js +1 -1
  27. package/source/smart.button.js +2 -2
  28. package/source/smart.element.js +2 -2
  29. package/source/smart.tooltip.js +2 -2
  30. package/styles/font/smart-icons.eot +0 -0
  31. package/styles/font/smart-icons.svg +58 -4
  32. package/styles/font/smart-icons.ttf +0 -0
  33. package/styles/font/smart-icons.woff +0 -0
  34. package/styles/font/smart-icons.woff2 +0 -0
  35. package/styles/smart.base.css +4 -4
  36. package/styles/smart.common.css +1 -1
  37. package/styles/smart.tooltip.css +1 -1
  38. package/tooltip/smart-webcomponents-angular-tooltip.metadata.json +1 -1
  39. package/tooltip/smart.tooltip.d.ts +3 -0
  40. package/demo/src/app/app.component.ts +0 -53
  41. package/demo/src/app/app.module.ts +0 -17
  42. package/demo/src/app/main.ts +0 -6
  43. package/demo/src/main.ts +0 -16
  44. package/demo/src/polyfills.ts +0 -73
package/demo/src/main.ts DELETED
@@ -1,16 +0,0 @@
1
- import './polyfills';
2
-
3
- import { enableProdMode } from '@angular/core';
4
- import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
5
-
6
- import { AppModule } from './app/app.module';
7
-
8
- platformBrowserDynamic().bootstrapModule(AppModule).then(ref => {
9
- // Ensure Angular destroys itself on hot reloads.
10
- if (window['ngRef']) {
11
- window['ngRef'].destroy();
12
- }
13
- window['ngRef'] = ref;
14
-
15
- // Otherwise, log the boot error
16
- }).catch(err => console.error(err));
@@ -1,73 +0,0 @@
1
- /**
2
- * This file includes polyfills needed by Angular and is loaded before the app.
3
- * You can add your own extra polyfills to this file.
4
- *
5
- * This file is divided into 2 sections:
6
- * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
7
- * 2. Application imports. Files imported after ZoneJS that should be loaded before your main
8
- * file.
9
- *
10
- * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
11
- * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
12
- * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
13
- *
14
- * Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html
15
- */
16
-
17
- /***************************************************************************************************
18
- * BROWSER POLYFILLS
19
- */
20
-
21
- /** IE9, IE10 and IE11 requires all of the following polyfills. **/
22
- // import 'core-js/es6/symbol';
23
- // import 'core-js/es6/object';
24
- // import 'core-js/es6/function';
25
- // import 'core-js/es6/parse-int';
26
- // import 'core-js/es6/parse-float';
27
- // import 'core-js/es6/number';
28
- // import 'core-js/es6/math';
29
- // import 'core-js/es6/string';
30
- // import 'core-js/es6/date';
31
- // import 'core-js/es6/array';
32
- // import 'core-js/es6/regexp';
33
- // import 'core-js/es6/map';
34
- // import 'core-js/es6/weak-map';
35
- // import 'core-js/es6/set';
36
-
37
- /** IE10 and IE11 requires the following for NgClass support on SVG elements */
38
- // import 'classlist.js'; // Run `npm install --save classlist.js`.
39
-
40
- /** Evergreen browsers require these. **/
41
- //import 'core-js/es6/reflect';
42
- //import 'core-js/es7/reflect';
43
-
44
- import 'core-js/es/reflect';
45
-
46
- /**
47
- * Required to support Web Animations `@angular/animation`.
48
- * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation
49
- **/
50
- // import 'web-animations-js'; // Run `npm install --save web-animations-js`.
51
-
52
-
53
-
54
- /***************************************************************************************************
55
- * Zone JS is required by Angular itself.
56
- */
57
- import 'zone.js/dist/zone'; // Included with Angular CLI.
58
-
59
-
60
-
61
- /***************************************************************************************************
62
- * APPLICATION IMPORTS
63
- */
64
-
65
- /**
66
- * Date, currency, decimal and percent pipes.
67
- * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
68
- */
69
- // import 'intl'; // Run `npm install --save intl`.
70
- /**
71
- * Need to import at least one locale-data with intl.
72
- */
73
- // import 'intl/locale-data/jsonp/en';