@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.
- package/README.md +66 -0
- package/bundles/smart-webcomponents-angular-phoneinput.umd.js +1001 -0
- package/bundles/smart-webcomponents-angular-phoneinput.umd.min.js +25 -0
- package/common/i18n.phonenumbers.min.js +501 -0
- package/common/runtime.js +748 -0
- package/esm2015/phoneinput/public_api.js +3 -0
- package/esm2015/phoneinput/smart-webcomponents-angular-phoneinput.js +15 -0
- package/esm2015/phoneinput/smart.element.js +83 -0
- package/esm2015/phoneinput/smart.phoneinput.js +434 -0
- package/esm2015/phoneinput/smart.phoneinput.module.js +13 -0
- package/fesm2015/smart-webcomponents-angular-phoneinput.js +540 -0
- package/fesm2015/smart-webcomponents-angular-phoneinput.js.map +1 -0
- package/images/dropable_zone_image.svg +25 -0
- package/images/error.png +0 -0
- package/images/flags.png +0 -0
- package/images/icons-sprite.svg +85 -0
- package/images/icons-stack.svg +132 -0
- package/images/info.png +0 -0
- package/images/magnifier.png +0 -0
- package/images/mail.png +0 -0
- package/images/radial.svg +1 -0
- package/images/success.png +0 -0
- package/images/time.png +0 -0
- package/images/warning.png +0 -0
- package/index.d.ts +31510 -0
- package/package.json +64 -0
- package/phoneinput/public_api.d.ts +2 -0
- package/phoneinput/smart-webcomponents-angular-phoneinput.d.ts +5 -0
- package/phoneinput/smart-webcomponents-angular-phoneinput.metadata.json +1 -0
- package/phoneinput/smart.element.d.ts +36 -0
- package/phoneinput/smart.phoneinput.d.ts +144 -0
- package/phoneinput/smart.phoneinput.module.d.ts +2 -0
- package/source/modules/smart.input.js +15 -0
- package/source/modules/smart.phoneinput.js +18 -0
- package/source/smart.button.js +6 -0
- package/source/smart.countryinput.js +6 -0
- package/source/smart.element.js +6 -0
- package/source/smart.input.js +6 -0
- package/source/smart.phoneinput.js +6 -0
- package/source/smart.scrollbar.js +6 -0
- package/styles/font/smart-icons.eot +0 -0
- package/styles/font/smart-icons.svg +278 -0
- package/styles/font/smart-icons.ttf +0 -0
- package/styles/font/smart-icons.woff +0 -0
- package/styles/font/smart-icons.woff2 +0 -0
- package/styles/smart.base.css +4 -0
- package/styles/smart.common.css +1 -0
- 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
|
+
|