@smart-webcomponents-angular/scrollbar 9.2.22 → 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 (48) 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/demo/angular.json +2 -2
  5. package/demo/src/tsconfig.app.json +15 -15
  6. package/demo/src/tsconfig.json +23 -23
  7. package/esm2020/scrollbar/index.mjs +2 -0
  8. package/{esm2015/scrollbar/public_api.js → esm2020/scrollbar/public_api.mjs} +0 -0
  9. package/{esm2015/scrollbar/smart-webcomponents-angular-scrollbar.js → esm2020/scrollbar/smart-webcomponents-angular-scrollbar.mjs} +2 -3
  10. package/esm2020/scrollbar/smart.element.mjs +96 -0
  11. package/esm2020/scrollbar/smart.scrollbar.mjs +243 -0
  12. package/esm2020/scrollbar/smart.scrollbar.module.mjs +18 -0
  13. package/fesm2015/{smart-webcomponents-angular-scrollbar.js → smart-webcomponents-angular-scrollbar.mjs} +88 -50
  14. package/fesm2015/smart-webcomponents-angular-scrollbar.mjs.map +1 -0
  15. package/fesm2020/smart-webcomponents-angular-scrollbar.mjs +365 -0
  16. package/fesm2020/smart-webcomponents-angular-scrollbar.mjs.map +1 -0
  17. package/images/flags.png +0 -0
  18. package/index.d.ts +3578 -658
  19. package/package.json +26 -24
  20. package/scrollbar/index.d.ts +1 -0
  21. package/scrollbar/smart-webcomponents-angular-scrollbar.d.ts +2 -2
  22. package/scrollbar/smart.element.d.ts +4 -1
  23. package/scrollbar/smart.scrollbar.d.ts +9 -1
  24. package/scrollbar/smart.scrollbar.module.d.ts +5 -0
  25. package/source/modules/smart.scrollbar.js +1 -1
  26. package/source/smart.button.js +2 -2
  27. package/source/smart.element.js +2 -2
  28. package/source/smart.scrollbar.js +2 -2
  29. package/styles/font/smart-icons.eot +0 -0
  30. package/styles/font/smart-icons.svg +64 -2
  31. package/styles/font/smart-icons.ttf +0 -0
  32. package/styles/font/smart-icons.woff +0 -0
  33. package/styles/font/smart-icons.woff2 +0 -0
  34. package/styles/smart.base.css +4 -4
  35. package/styles/smart.common.css +1 -1
  36. package/styles/smart.scrollbar.css +2 -2
  37. package/bundles/smart-webcomponents-angular-scrollbar.umd.js +0 -750
  38. package/bundles/smart-webcomponents-angular-scrollbar.umd.min.js +0 -25
  39. package/demo/src/app/app.component.ts +0 -87
  40. package/demo/src/app/app.module.ts +0 -15
  41. package/demo/src/app/main.ts +0 -6
  42. package/demo/src/main.ts +0 -16
  43. package/demo/src/polyfills.ts +0 -73
  44. package/esm2015/scrollbar/smart.element.js +0 -83
  45. package/esm2015/scrollbar/smart.scrollbar.js +0 -221
  46. package/esm2015/scrollbar/smart.scrollbar.module.js +0 -13
  47. package/fesm2015/smart-webcomponents-angular-scrollbar.js.map +0 -1
  48. package/scrollbar/smart-webcomponents-angular-scrollbar.metadata.json +0 -1
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
  Smart.ScrollBar represents a feature-complete, responsive and touch friendly Angular ScrollBar 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/scrollbar
34
38
  The CSS files are available in ../node_modules/@smart-webcomponents-angular/scrollbar/styles/ folder.
35
39
  ```javascript
36
40
  "styles": [
37
- "node_modules/@smart-webcomponents-angular/scrollbar/styles/smart.scrollbar.css"
41
+ "node_modules/@smart-webcomponents-angular/scrollbar/styles/smart.base.css",
42
+ "node_modules/@smart-webcomponents-angular/scrollbar/styles/smart.scrollbar.css",
43
+ "node_modules/@smart-webcomponents-angular/scrollbar/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