@smart-webcomponents-angular/window 9.2.73 → 13.0.9

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 (47) hide show
  1. package/README.md +10 -2
  2. package/common/i18n.phonenumbers.min.js +501 -0
  3. package/common/runtime.js +748 -0
  4. package/esm2020/window/index.mjs +2 -0
  5. package/{esm2015/window/public_api.js → esm2020/window/public_api.mjs} +1 -1
  6. package/{esm2015/window/smart-webcomponents-angular-window.js → esm2020/window/smart-webcomponents-angular-window.mjs} +2 -3
  7. package/esm2020/window/smart.element.mjs +99 -0
  8. package/esm2020/window/smart.window.mjs +1051 -0
  9. package/esm2020/window/smart.window.module.mjs +18 -0
  10. package/fesm2015/{smart-webcomponents-angular-window.js → smart-webcomponents-angular-window.mjs} +209 -111
  11. package/fesm2015/smart-webcomponents-angular-window.mjs.map +1 -0
  12. package/fesm2020/smart-webcomponents-angular-window.mjs +1176 -0
  13. package/fesm2020/smart-webcomponents-angular-window.mjs.map +1 -0
  14. package/images/flags.png +0 -0
  15. package/index.d.ts +31835 -28915
  16. package/package.json +26 -24
  17. package/source/modules/smart.window.js +2 -1
  18. package/source/smart.button.js +2 -2
  19. package/source/smart.combobox.js +2 -2
  20. package/source/smart.dropdownlist.js +2 -2
  21. package/source/smart.element.js +2 -2
  22. package/source/smart.listbox.js +2 -2
  23. package/source/smart.multilinetextbox.js +2 -2
  24. package/source/smart.progressbar.js +2 -2
  25. package/source/smart.scrollbar.js +2 -2
  26. package/source/smart.textbox.js +2 -2
  27. package/source/smart.window.js +2 -2
  28. package/styles/font/smart-icons.eot +0 -0
  29. package/styles/font/smart-icons.svg +64 -2
  30. package/styles/font/smart-icons.ttf +0 -0
  31. package/styles/font/smart-icons.woff +0 -0
  32. package/styles/font/smart-icons.woff2 +0 -0
  33. package/styles/smart.base.css +4 -4
  34. package/styles/smart.common.css +1 -1
  35. package/styles/smart.window.css +4 -4
  36. package/window/index.d.ts +1 -0
  37. package/window/smart-webcomponents-angular-window.d.ts +2 -2
  38. package/window/smart.element.d.ts +4 -1
  39. package/window/smart.window.d.ts +3 -0
  40. package/window/smart.window.module.d.ts +5 -0
  41. package/bundles/smart-webcomponents-angular-window.umd.js +0 -1769
  42. package/bundles/smart-webcomponents-angular-window.umd.min.js +0 -25
  43. package/esm2015/window/smart.element.js +0 -83
  44. package/esm2015/window/smart.window.js +0 -983
  45. package/esm2015/window/smart.window.module.js +0 -13
  46. package/fesm2015/smart-webcomponents-angular-window.js.map +0 -1
  47. package/window/smart-webcomponents-angular-window.metadata.json +0 -1
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
  Smart.Window represents a feature-complete, responsive and touch friendly Angular Window component.
3
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
4
  >
5
+ ## Angular 13 support
6
+
7
+ The Smart UI for Angular components are packaged using the latest Angular Package Format guidelines.
8
+
5
9
  ## Resources
6
10
  * [Getting Started](https://www.htmlelements.com/docs/angular-cli/)
7
11
  * [View Online Demos](https://www.htmlelements.com/angular/)
@@ -34,8 +38,12 @@ npm install @smart-webcomponents-angular/window
34
38
  The CSS files are available in ../node_modules/@smart-webcomponents-angular/window/styles/ folder.
35
39
  ```javascript
36
40
  "styles": [
37
- "node_modules/@smart-webcomponents-angular/window/styles/smart.window.css"
41
+ "node_modules/@smart-webcomponents-angular/window/styles/smart.base.css",
42
+ "node_modules/@smart-webcomponents-angular/window/styles/smart.window.css",
43
+ "node_modules/@smart-webcomponents-angular/window/styles/smart.common.css"
38
44
  ]
45
+
46
+ If you use more than one Smart UI component in your application, firstly add 'smart.base.css', then your components css files like 'smart.grid.css', 'smart.scheduler.css' and finally 'smart.common.css'.
39
47
  ```
40
48
  * Add the Component Module in your application
41
49
 
@@ -62,5 +70,5 @@ export class AppModule { }
62
70
  Check the license detail [here](https://jqwidgets.com/license/).
63
71
  ## Release Notes
64
72
  Check the release notes [here](https://www.htmlelements.com/docs/release-notes/)
65
- © Copyright 2021 jQWidgets, Ltd. All Rights Reserved.
73
+ © Copyright 2022 jQWidgets, Ltd. All Rights Reserved.
66
74