@smart-webcomponents-angular/phoneinput 10.3.4

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 (48) hide show
  1. package/README.md +66 -0
  2. package/bundles/smart-webcomponents-angular-phoneinput.umd.js +1001 -0
  3. package/bundles/smart-webcomponents-angular-phoneinput.umd.min.js +25 -0
  4. package/common/i18n.phonenumbers.min.js +501 -0
  5. package/common/runtime.js +748 -0
  6. package/esm2015/phoneinput/public_api.js +3 -0
  7. package/esm2015/phoneinput/smart-webcomponents-angular-phoneinput.js +15 -0
  8. package/esm2015/phoneinput/smart.element.js +83 -0
  9. package/esm2015/phoneinput/smart.phoneinput.js +434 -0
  10. package/esm2015/phoneinput/smart.phoneinput.module.js +13 -0
  11. package/fesm2015/smart-webcomponents-angular-phoneinput.js +540 -0
  12. package/fesm2015/smart-webcomponents-angular-phoneinput.js.map +1 -0
  13. package/images/dropable_zone_image.svg +25 -0
  14. package/images/error.png +0 -0
  15. package/images/flags.png +0 -0
  16. package/images/icons-sprite.svg +85 -0
  17. package/images/icons-stack.svg +132 -0
  18. package/images/info.png +0 -0
  19. package/images/magnifier.png +0 -0
  20. package/images/mail.png +0 -0
  21. package/images/radial.svg +1 -0
  22. package/images/success.png +0 -0
  23. package/images/time.png +0 -0
  24. package/images/warning.png +0 -0
  25. package/index.d.ts +31510 -0
  26. package/package.json +64 -0
  27. package/phoneinput/public_api.d.ts +2 -0
  28. package/phoneinput/smart-webcomponents-angular-phoneinput.d.ts +5 -0
  29. package/phoneinput/smart-webcomponents-angular-phoneinput.metadata.json +1 -0
  30. package/phoneinput/smart.element.d.ts +36 -0
  31. package/phoneinput/smart.phoneinput.d.ts +144 -0
  32. package/phoneinput/smart.phoneinput.module.d.ts +2 -0
  33. package/source/modules/smart.input.js +15 -0
  34. package/source/modules/smart.phoneinput.js +18 -0
  35. package/source/smart.button.js +6 -0
  36. package/source/smart.countryinput.js +6 -0
  37. package/source/smart.element.js +6 -0
  38. package/source/smart.input.js +6 -0
  39. package/source/smart.phoneinput.js +6 -0
  40. package/source/smart.scrollbar.js +6 -0
  41. package/styles/font/smart-icons.eot +0 -0
  42. package/styles/font/smart-icons.svg +278 -0
  43. package/styles/font/smart-icons.ttf +0 -0
  44. package/styles/font/smart-icons.woff +0 -0
  45. package/styles/font/smart-icons.woff2 +0 -0
  46. package/styles/smart.base.css +4 -0
  47. package/styles/smart.common.css +1 -0
  48. package/styles/smart.phoneinput.css +3 -0
package/README.md ADDED
@@ -0,0 +1,66 @@
1
+ # Smart.PhoneInput for Angular is part of the jQWidgets Smart UI Components Library for Angular.
2
+ Smart.PhoneInput represents a feature-complete, responsive and touch friendly Angular PhoneInput component.
3
+ > This is a commercial product and requires a paid license for use. You can purchase a license at https://www.jqwidgets.com/license/ or start a free 30-day trial.
4
+ >
5
+ ## Resources
6
+ * [Getting Started](https://www.htmlelements.com/docs/angular-cli/)
7
+ * [View Online Demos](https://www.htmlelements.com/angular/)
8
+
9
+ ## Highlights
10
+ ### Enterprise features for Angular
11
+ The Smart UI for Angular library includes accessibility features(WAI-ARIA, Section 508), Localization, RTL, Keyboard Navigation.
12
+ ### Modular architecture
13
+ All components are built as modules so only the components and features you need are imported in your application.
14
+ ### Blazing Fast
15
+ All components are built from scratch in order to achieve the best performance and user experience.
16
+ ### Responsive, Touch & mobile friendly
17
+ Our components come with built-in device and browser detection. A component automatically adjusts itself for optimal user experience.
18
+ ## Showcase Applications
19
+ * [Admin Template](https://www.htmlelements.com/demos/page-templates/admin-template/)
20
+ * [Admin Template 2](https://www.htmlelements.com/demos/page-templates/admin-template-2/)
21
+ * [Admin Template 3](https://www.htmlelements.com/demos/page-templates/admin-template-3/)
22
+ ## Support
23
+ Product support is available for through following mediums.
24
+ * [Community forum](https://www.htmlelements.com/forums/).
25
+ * New [GitHub issue](https://github.com/htmlelements/smart-webcomponents/issues/new).
26
+ * Support e-mail: support@jqwidgets.com
27
+ ## Usage
28
+ * Download and install the package
29
+ ```javascript
30
+ npm install @smart-webcomponents-angular/phoneinput
31
+ ```
32
+ * Adding CSS reference
33
+
34
+ The CSS files are available in ../node_modules/@smart-webcomponents-angular/phoneinput/styles/ folder.
35
+ ```javascript
36
+ "styles": [
37
+ "node_modules/@smart-webcomponents-angular/phoneinput/styles/smart.phoneinput.css"
38
+ ]
39
+ ```
40
+ * Add the Component Module in your application
41
+
42
+ ```typescript
43
+ import { NgModule } from '@angular/core';
44
+ import { BrowserModule } from '@angular/platform-browser';
45
+
46
+ import { PhoneInputModule } from '@smart-webcomponents-angular/phoneinput';
47
+
48
+ import { AppComponent } from './app.component';
49
+
50
+ @NgModule({
51
+ declarations: [ AppComponent ],
52
+ imports: [ BrowserModule, PhoneInputModule ],
53
+ bootstrap: [ AppComponent ],
54
+ entryComponents: [ AppComponent ]
55
+ })
56
+
57
+ export class AppModule { }
58
+ ```
59
+
60
+
61
+ ## License
62
+ Check the license detail [here](https://jqwidgets.com/license/).
63
+ ## Release Notes
64
+ Check the release notes [here](https://www.htmlelements.com/docs/release-notes/)
65
+ © Copyright 2021 jQWidgets, Ltd. All Rights Reserved.
66
+