@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.
- package/README.md +10 -2
- package/common/i18n.phonenumbers.min.js +501 -0
- package/common/runtime.js +748 -0
- package/demo/angular.json +2 -2
- package/demo/src/tsconfig.app.json +15 -15
- package/demo/src/tsconfig.json +23 -23
- package/esm2020/scrollbar/index.mjs +2 -0
- package/{esm2015/scrollbar/public_api.js → esm2020/scrollbar/public_api.mjs} +0 -0
- package/{esm2015/scrollbar/smart-webcomponents-angular-scrollbar.js → esm2020/scrollbar/smart-webcomponents-angular-scrollbar.mjs} +2 -3
- package/esm2020/scrollbar/smart.element.mjs +96 -0
- package/esm2020/scrollbar/smart.scrollbar.mjs +243 -0
- package/esm2020/scrollbar/smart.scrollbar.module.mjs +18 -0
- package/fesm2015/{smart-webcomponents-angular-scrollbar.js → smart-webcomponents-angular-scrollbar.mjs} +88 -50
- package/fesm2015/smart-webcomponents-angular-scrollbar.mjs.map +1 -0
- package/fesm2020/smart-webcomponents-angular-scrollbar.mjs +365 -0
- package/fesm2020/smart-webcomponents-angular-scrollbar.mjs.map +1 -0
- package/images/flags.png +0 -0
- package/index.d.ts +3578 -658
- package/package.json +26 -24
- package/scrollbar/index.d.ts +1 -0
- package/scrollbar/smart-webcomponents-angular-scrollbar.d.ts +2 -2
- package/scrollbar/smart.element.d.ts +4 -1
- package/scrollbar/smart.scrollbar.d.ts +9 -1
- package/scrollbar/smart.scrollbar.module.d.ts +5 -0
- package/source/modules/smart.scrollbar.js +1 -1
- package/source/smart.button.js +2 -2
- package/source/smart.element.js +2 -2
- package/source/smart.scrollbar.js +2 -2
- package/styles/font/smart-icons.eot +0 -0
- package/styles/font/smart-icons.svg +64 -2
- 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 -4
- package/styles/smart.common.css +1 -1
- package/styles/smart.scrollbar.css +2 -2
- package/bundles/smart-webcomponents-angular-scrollbar.umd.js +0 -750
- package/bundles/smart-webcomponents-angular-scrollbar.umd.min.js +0 -25
- package/demo/src/app/app.component.ts +0 -87
- package/demo/src/app/app.module.ts +0 -15
- package/demo/src/app/main.ts +0 -6
- package/demo/src/main.ts +0 -16
- package/demo/src/polyfills.ts +0 -73
- package/esm2015/scrollbar/smart.element.js +0 -83
- package/esm2015/scrollbar/smart.scrollbar.js +0 -221
- package/esm2015/scrollbar/smart.scrollbar.module.js +0 -13
- package/fesm2015/smart-webcomponents-angular-scrollbar.js.map +0 -1
- 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.
|
|
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
|
|
73
|
+
© Copyright 2022 jQWidgets, Ltd. All Rights Reserved.
|
|
66
74
|
|