@smart-webcomponents-angular/phoneinput 11.0.0 → 13.0.10

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 (40) hide show
  1. package/README.md +10 -2
  2. package/esm2020/phoneinput/index.mjs +2 -0
  3. package/{esm2015/phoneinput/public_api.js → esm2020/phoneinput/public_api.mjs} +0 -0
  4. package/{esm2015/phoneinput/smart-webcomponents-angular-phoneinput.js → esm2020/phoneinput/smart-webcomponents-angular-phoneinput.mjs} +2 -3
  5. package/esm2020/phoneinput/smart.element.mjs +96 -0
  6. package/esm2020/phoneinput/smart.phoneinput.mjs +443 -0
  7. package/esm2020/phoneinput/smart.phoneinput.module.mjs +18 -0
  8. package/fesm2015/{smart-webcomponents-angular-phoneinput.js → smart-webcomponents-angular-phoneinput.mjs} +85 -51
  9. package/fesm2015/smart-webcomponents-angular-phoneinput.mjs.map +1 -0
  10. package/fesm2020/smart-webcomponents-angular-phoneinput.mjs +565 -0
  11. package/fesm2020/smart-webcomponents-angular-phoneinput.mjs.map +1 -0
  12. package/index.d.ts +318 -42
  13. package/package.json +26 -24
  14. package/phoneinput/index.d.ts +1 -0
  15. package/phoneinput/smart-webcomponents-angular-phoneinput.d.ts +2 -2
  16. package/phoneinput/smart.element.d.ts +4 -1
  17. package/phoneinput/smart.phoneinput.d.ts +4 -1
  18. package/phoneinput/smart.phoneinput.module.d.ts +5 -0
  19. package/source/modules/smart.input.js +1 -1
  20. package/source/modules/smart.phoneinput.js +1 -1
  21. package/source/smart.button.js +1 -1
  22. package/source/smart.countryinput.js +1 -1
  23. package/source/smart.element.js +2 -2
  24. package/source/smart.input.js +2 -2
  25. package/source/smart.phoneinput.js +1 -1
  26. package/source/smart.scrollbar.js +1 -1
  27. package/styles/font/smart-icons.eot +0 -0
  28. package/styles/font/smart-icons.svg +11 -3
  29. package/styles/font/smart-icons.ttf +0 -0
  30. package/styles/font/smart-icons.woff +0 -0
  31. package/styles/font/smart-icons.woff2 +0 -0
  32. package/styles/smart.base.css +2 -2
  33. package/styles/smart.phoneinput.css +2 -2
  34. package/bundles/smart-webcomponents-angular-phoneinput.umd.js +0 -1001
  35. package/bundles/smart-webcomponents-angular-phoneinput.umd.min.js +0 -25
  36. package/esm2015/phoneinput/smart.element.js +0 -83
  37. package/esm2015/phoneinput/smart.phoneinput.js +0 -434
  38. package/esm2015/phoneinput/smart.phoneinput.module.js +0 -13
  39. package/fesm2015/smart-webcomponents-angular-phoneinput.js.map +0 -1
  40. package/phoneinput/smart-webcomponents-angular-phoneinput.metadata.json +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smart-webcomponents-angular/phoneinput",
3
- "version": "11.0.0",
3
+ "version": "13.0.10",
4
4
  "preferGlobal": true,
5
5
  "keywords": [
6
6
  "angular",
@@ -20,43 +20,45 @@
20
20
  "angular material ui phoneinput component"
21
21
  ],
22
22
  "dependencies": {
23
- "@angular/cdk": "^11.0.0 || ^12.0.0-0",
24
- "@angular/elements": "^11.0.0 || ^12.0.0-0"
23
+ "@angular/cdk": "13.2.2",
24
+ "@angular/elements": "13.2.2"
25
25
  },
26
26
  "devDependencies": {
27
- "@angular/animations": "^11.0.0",
28
- "@angular/common": "^11.0.0 || ^12.0.0-0",
29
- "@angular/compiler": "^11.0.0 || ^12.0.0-0",
30
- "@angular/cdk": "^11.0.0 || ^12.0.0-0",
31
- "@angular/core": "^11.0.0 || ^12.0.0-0",
32
- "@angular/forms": "^11.0.0 || ^12.0.0-0",
33
- "@angular/platform-browser": "^11.0.0 || ^12.0.0-0",
27
+ "@angular/animations": "^13.2.2",
28
+ "@angular/common": "13.2.2",
29
+ "@angular/compiler": "13.2.2",
30
+ "@angular/cdk": "13.2.2",
31
+ "@angular/core": "13.2.2",
32
+ "@angular/forms": "13.2.2",
33
+ "@angular/platform-browser": "13.2.2",
34
34
  "core-js": "^2.6.9",
35
35
  "rxjs": "^6.5.3",
36
36
  "systemjs": "0.19.43",
37
37
  "tslib": "^1.10.0",
38
- "zone.js": "~0.10.2",
39
- "@angular-devkit/core": "^11.0.0 || ^12.0.0-0",
40
- "@angular-devkit/schematics": "^11.0.0 || ^12.0.0-0",
41
- "@angular/bazel": "^11.0.0 || ^12.0.0-0",
42
- "@angular/compiler-cli": "^11.0.0 || ^12.0.0-0",
43
- "@angular/platform-browser-dynamic": "^11.0.0 || ^12.0.0-0",
44
- "@angular/platform-server": "^11.0.0 || ^12.0.0-0",
45
- "@angular/router": "^11.0.0 || ^12.0.0-0",
46
- "typescript": "~4.1.0"
38
+ "zone.js": "~0.11.4",
39
+ "@angular-devkit/core": "13.2.2",
40
+ "@angular-devkit/schematics": "13.2.2",
41
+ "@angular/bazel": "13.2.2",
42
+ "@angular/compiler-cli": "13.2.2",
43
+ "@angular/platform-browser-dynamic": "13.2.2",
44
+ "@angular/platform-server": "13.2.2",
45
+ "@angular/router": "13.2.2",
46
+ "typescript": "~4.4.2"
47
47
  },
48
48
  "author": "jQWidgets <support@jqwidgets.com> (https://www.htmlelements.com/)",
49
49
  "license": "SEE LICENSE IN https://www.htmlelements.com/license/",
50
50
  "homepage": "https://www.htmlelements.com/",
51
51
  "description": "[![Price](https://img.shields.io/badge/price-COMMERCIAL-0098f7.svg)](https://jqwidgets.com/license/)",
52
52
  "main": "./bundles/smart-webcomponents-angular-phoneinput.umd.js",
53
- "module": "./fesm2015/smart-webcomponents-angular-phoneinput.js",
54
- "es2015": "./fesm2015/smart-webcomponents-angular-phoneinput.js",
55
- "esm2015": "./esm2015/phoneinput/smart-webcomponents-angular-phoneinput.js",
56
- "fesm2015": "./fesm2015/smart-webcomponents-angular-phoneinput.js",
53
+ "module": "./fesm2015/smart-webcomponents-angular-phoneinput.mjs",
54
+ "es2015": "./fesm2015/smart-webcomponents-angular-phoneinput.mjs",
55
+ "esm2015": "./esm2020/phoneinput/smart-webcomponents-angular-phoneinput.mjs",
56
+ "esm2020": "./esm2020/phoneinput/smart-webcomponents-angular-phoneinput.mjs",
57
+ "fesm2015": "./fesm2015/smart-webcomponents-angular-phoneinput.mjs",
58
+ "fesm2020": "./fesm2020/smart-webcomponents-angular-phoneinput.mjs",
57
59
  "typings": "./phoneinput/smart-webcomponents-angular-phoneinput.d.ts",
58
60
  "metadata": "./phoneinput/smart-webcomponents-angular-phoneinput.metadata.json",
59
- "sideEffects": false,
61
+ "sideEffects": true,
60
62
  "scripts": {
61
63
  "start": "node start.js",
62
64
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -0,0 +1 @@
1
+ export * from './public_api';
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
- export * from './public_api';
5
- export { BaseElement as ɵa } from './smart.element';
4
+ /// <amd-module name="smart-webcomponents-angular/phoneinput" />
5
+ export * from './index';
@@ -1,9 +1,10 @@
1
+ import { ElementRef, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
1
3
  declare global {
2
4
  interface Window {
3
5
  Smart: any;
4
6
  }
5
7
  }
6
- import { ElementRef, EventEmitter } from '@angular/core';
7
8
  export declare class BaseElement {
8
9
  constructor(ref: ElementRef);
9
10
  onCreate: EventEmitter<any>;
@@ -32,5 +33,7 @@ export declare class BaseElement {
32
33
  /** @description Determines the theme. Theme defines the look of the element */
33
34
  get theme(): string;
34
35
  set theme(value: string);
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseElement, never>;
37
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseElement, never, never, { "locale": "locale"; "localizeFormatFunction": "localizeFormatFunction"; "messages": "messages"; "rightToLeft": "rightToLeft"; "theme": "theme"; }, { "onCreate": "onCreate"; "onReady": "onReady"; "onAttach": "onAttach"; "onDetach": "onDetach"; }, never>;
35
38
  }
36
39
  export declare const Smart: any;
@@ -2,10 +2,11 @@ import { PhoneInput } from './../index';
2
2
  import { DropDownButtonPosition } from './../index';
3
3
  import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges, EventEmitter } from '@angular/core';
4
4
  import { BaseElement } from './smart.element';
5
+ import { ControlValueAccessor } from '@angular/forms';
6
+ import * as i0 from "@angular/core";
5
7
  export { DropDownButtonPosition, ElementRenderMode } from './../index';
6
8
  export { Smart } from './smart.element';
7
9
  export { PhoneInput } from './../index';
8
- import { ControlValueAccessor } from '@angular/forms';
9
10
  export declare class PhoneInputComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges, ControlValueAccessor {
10
11
  constructor(ref: ElementRef<PhoneInput>);
11
12
  private eventHandlers;
@@ -141,4 +142,6 @@ export declare class PhoneInputComponent extends BaseElement implements OnInit,
141
142
  private listen;
142
143
  /** @description Remove event listeners. */
143
144
  private unlisten;
145
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneInputComponent, never>;
146
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PhoneInputComponent, "smart-phone-input, [smart-phone-input]", never, { "disabled": "disabled"; "dropDownClassList": "dropDownClassList"; "dropDownButtonPosition": "dropDownButtonPosition"; "dropDownHeight": "dropDownHeight"; "dropDownWidth": "dropDownWidth"; "messages": "messages"; "name": "name"; "nationalMode": "nationalMode"; "opened": "opened"; "onlyCountries": "onlyCountries"; "placeholder": "placeholder"; "selectedCountry": "selectedCountry"; "rightToLeft": "rightToLeft"; "theme": "theme"; "unfocusable": "unfocusable"; "value": "value"; }, { "onChange": "onChange"; "onChanging": "onChanging"; "onItemClick": "onItemClick"; }, never>;
144
147
  }
@@ -1,2 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./smart.phoneinput";
1
3
  export declare class PhoneInputModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneInputModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PhoneInputModule, [typeof i1.PhoneInputComponent], never, [typeof i1.PhoneInputComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<PhoneInputModule>;
2
7
  }
@@ -1,5 +1,5 @@
1
1
 
2
- /* Smart UI v11.0.1 (2021-11-30)
2
+ /* Smart UI v13.0.10 (2022-02-21)
3
3
  Copyright (c) 2011-2021 jQWidgets.
4
4
  License: https://htmlelements.com/license/ */ //
5
5
 
@@ -1,5 +1,5 @@
1
1
 
2
- /* Smart UI v11.0.1 (2021-11-30)
2
+ /* Smart UI v13.0.10 (2022-02-21)
3
3
  Copyright (c) 2011-2021 jQWidgets.
4
4
  License: https://htmlelements.com/license/ */ //
5
5
 
@@ -1,5 +1,5 @@
1
1
 
2
- /* Smart UI v11.0.1 (2021-11-30)
2
+ /* Smart UI v13.0.10 (2022-02-21)
3
3
  Copyright (c) 2011-2021 jQWidgets.
4
4
  License: https://htmlelements.com/license/ */ //
5
5
 
@@ -1,5 +1,5 @@
1
1
 
2
- /* Smart UI v11.0.1 (2021-11-30)
2
+ /* Smart UI v13.0.10 (2022-02-21)
3
3
  Copyright (c) 2011-2021 jQWidgets.
4
4
  License: https://htmlelements.com/license/ */ //
5
5