@progress/kendo-angular-scrollview 22.1.0-develop.9 → 23.0.0-develop.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.
|
@@ -32,7 +32,7 @@ const packageMetadata = {
|
|
|
32
32
|
productCode: 'KENDOUIANGULAR',
|
|
33
33
|
productCodes: ['KENDOUIANGULAR'],
|
|
34
34
|
publishDate: 0,
|
|
35
|
-
version: '
|
|
35
|
+
version: '23.0.0-develop.10',
|
|
36
36
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
37
37
|
};
|
|
38
38
|
|
|
@@ -245,7 +245,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
245
245
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
246
246
|
let idx = 0;
|
|
247
247
|
/**
|
|
248
|
-
* Represents the [Kendo UI ScrollView component for Angular](
|
|
248
|
+
* Represents the [Kendo UI ScrollView component for Angular](https://www.telerik.com/kendo-angular-ui/components/scrollview).
|
|
249
249
|
*
|
|
250
250
|
* Use the ScrollViewComponent to display a horizontally scrollable list of items. You can customize the content and navigation.
|
|
251
251
|
*
|
|
@@ -276,12 +276,12 @@ class ScrollViewComponent {
|
|
|
276
276
|
*/
|
|
277
277
|
chevronRightIcon = chevronRightIcon;
|
|
278
278
|
/**
|
|
279
|
-
* Provides the data source for the ScrollView ([see example](
|
|
279
|
+
* Provides the data source for the ScrollView ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/data-sources)).
|
|
280
280
|
* @default []
|
|
281
281
|
*/
|
|
282
282
|
data = [];
|
|
283
283
|
/**
|
|
284
|
-
* Sets the current item index ([see example](
|
|
284
|
+
* Sets the current item index ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/active-items)).
|
|
285
285
|
* @default 0
|
|
286
286
|
*/
|
|
287
287
|
set activeIndex(value) {
|
|
@@ -291,17 +291,17 @@ class ScrollViewComponent {
|
|
|
291
291
|
return this._activeIndex;
|
|
292
292
|
}
|
|
293
293
|
/**
|
|
294
|
-
* Sets the width of the ScrollView ([see example](
|
|
294
|
+
* Sets the width of the ScrollView ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/dimensions)).
|
|
295
295
|
* By default, the width is not set and must be explicitly defined.
|
|
296
296
|
*/
|
|
297
297
|
width;
|
|
298
298
|
/**
|
|
299
|
-
* Sets the height of the ScrollView ([see example](
|
|
299
|
+
* Sets the height of the ScrollView ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/dimensions)).
|
|
300
300
|
* By default, the height is not set and must be explicitly defined.
|
|
301
301
|
*/
|
|
302
302
|
height;
|
|
303
303
|
/**
|
|
304
|
-
* Enables or disables endless scrolling mode, where items loop endlessly ([see example](
|
|
304
|
+
* Enables or disables endless scrolling mode, where items loop endlessly ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/endless-scrolling)).
|
|
305
305
|
* @default false
|
|
306
306
|
*/
|
|
307
307
|
endless = false;
|
|
@@ -311,17 +311,17 @@ class ScrollViewComponent {
|
|
|
311
311
|
*/
|
|
312
312
|
pagerOverlay = 'none';
|
|
313
313
|
/**
|
|
314
|
-
* Enables or disables built-in animations ([see example](
|
|
314
|
+
* Enables or disables built-in animations ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/animations)).
|
|
315
315
|
* @default true
|
|
316
316
|
*/
|
|
317
317
|
animate = true;
|
|
318
318
|
/**
|
|
319
|
-
* Enables or disables the built-in pager ([see example](
|
|
319
|
+
* Enables or disables the built-in pager ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/paging)).
|
|
320
320
|
* @default false
|
|
321
321
|
*/
|
|
322
322
|
pageable = false;
|
|
323
323
|
/**
|
|
324
|
-
* Enables or disables the built-in navigation arrows ([see example](
|
|
324
|
+
* Enables or disables the built-in navigation arrows ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/arrows)).
|
|
325
325
|
* @default false
|
|
326
326
|
*/
|
|
327
327
|
arrows = false;
|
|
@@ -928,7 +928,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
928
928
|
* Represents the custom messages component of the ScrollView.
|
|
929
929
|
*
|
|
930
930
|
* Use this component to override default messages for the ScrollView
|
|
931
|
-
* ([see example](
|
|
931
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/globalization#custom-messages)).
|
|
932
932
|
*
|
|
933
933
|
* @example
|
|
934
934
|
* ```html
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the custom messages component of the ScrollView.
|
|
10
10
|
*
|
|
11
11
|
* Use this component to override default messages for the ScrollView
|
|
12
|
-
* ([see example](
|
|
12
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/globalization#custom-messages)).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "
|
|
10
|
+
"publishDate": 1770666852,
|
|
11
|
+
"version": "23.0.0-develop.10",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scrollview",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "23.0.0-develop.10",
|
|
4
4
|
"description": "A ScrollView Component for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"package": {
|
|
20
20
|
"productName": "Kendo UI for Angular",
|
|
21
21
|
"productCode": "KENDOUIANGULAR",
|
|
22
|
-
"publishDate":
|
|
22
|
+
"publishDate": 1770666852,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"@angular/core": "19 - 21",
|
|
30
30
|
"@angular/platform-browser": "19 - 21",
|
|
31
31
|
"@progress/kendo-licensing": "^1.10.0",
|
|
32
|
-
"@progress/kendo-angular-common": "
|
|
33
|
-
"@progress/kendo-angular-l10n": "
|
|
34
|
-
"@progress/kendo-angular-icons": "
|
|
32
|
+
"@progress/kendo-angular-common": "23.0.0-develop.10",
|
|
33
|
+
"@progress/kendo-angular-l10n": "23.0.0-develop.10",
|
|
34
|
+
"@progress/kendo-angular-icons": "23.0.0-develop.10",
|
|
35
35
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"tslib": "^2.3.1",
|
|
39
|
-
"@progress/kendo-angular-schematics": "
|
|
39
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.10"
|
|
40
40
|
},
|
|
41
41
|
"schematics": "./schematics/collection.json",
|
|
42
42
|
"module": "fesm2022/progress-kendo-angular-scrollview.mjs",
|
|
@@ -12,7 +12,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
12
12
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
/**
|
|
15
|
-
* Represents the [Kendo UI ScrollView component for Angular](
|
|
15
|
+
* Represents the [Kendo UI ScrollView component for Angular](https://www.telerik.com/kendo-angular-ui/components/scrollview).
|
|
16
16
|
*
|
|
17
17
|
* Use the ScrollViewComponent to display a horizontally scrollable list of items. You can customize the content and navigation.
|
|
18
18
|
*
|
|
@@ -43,28 +43,28 @@ export declare class ScrollViewComponent implements OnChanges, OnDestroy {
|
|
|
43
43
|
*/
|
|
44
44
|
chevronRightIcon: SVGIcon;
|
|
45
45
|
/**
|
|
46
|
-
* Provides the data source for the ScrollView ([see example](
|
|
46
|
+
* Provides the data source for the ScrollView ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/data-sources)).
|
|
47
47
|
* @default []
|
|
48
48
|
*/
|
|
49
49
|
data: Array<any>;
|
|
50
50
|
/**
|
|
51
|
-
* Sets the current item index ([see example](
|
|
51
|
+
* Sets the current item index ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/active-items)).
|
|
52
52
|
* @default 0
|
|
53
53
|
*/
|
|
54
54
|
set activeIndex(value: number);
|
|
55
55
|
get activeIndex(): number;
|
|
56
56
|
/**
|
|
57
|
-
* Sets the width of the ScrollView ([see example](
|
|
57
|
+
* Sets the width of the ScrollView ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/dimensions)).
|
|
58
58
|
* By default, the width is not set and must be explicitly defined.
|
|
59
59
|
*/
|
|
60
60
|
width: string;
|
|
61
61
|
/**
|
|
62
|
-
* Sets the height of the ScrollView ([see example](
|
|
62
|
+
* Sets the height of the ScrollView ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/dimensions)).
|
|
63
63
|
* By default, the height is not set and must be explicitly defined.
|
|
64
64
|
*/
|
|
65
65
|
height: string;
|
|
66
66
|
/**
|
|
67
|
-
* Enables or disables endless scrolling mode, where items loop endlessly ([see example](
|
|
67
|
+
* Enables or disables endless scrolling mode, where items loop endlessly ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/endless-scrolling)).
|
|
68
68
|
* @default false
|
|
69
69
|
*/
|
|
70
70
|
endless: boolean;
|
|
@@ -74,17 +74,17 @@ export declare class ScrollViewComponent implements OnChanges, OnDestroy {
|
|
|
74
74
|
*/
|
|
75
75
|
pagerOverlay: ScrollViewPagerOverlay;
|
|
76
76
|
/**
|
|
77
|
-
* Enables or disables built-in animations ([see example](
|
|
77
|
+
* Enables or disables built-in animations ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/animations)).
|
|
78
78
|
* @default true
|
|
79
79
|
*/
|
|
80
80
|
animate: boolean;
|
|
81
81
|
/**
|
|
82
|
-
* Enables or disables the built-in pager ([see example](
|
|
82
|
+
* Enables or disables the built-in pager ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/paging)).
|
|
83
83
|
* @default false
|
|
84
84
|
*/
|
|
85
85
|
pageable: boolean;
|
|
86
86
|
/**
|
|
87
|
-
* Enables or disables the built-in navigation arrows ([see example](
|
|
87
|
+
* Enables or disables the built-in navigation arrows ([see example](https://www.telerik.com/kendo-angular-ui/components/scrollview/arrows)).
|
|
88
88
|
* @default false
|
|
89
89
|
*/
|
|
90
90
|
arrows: boolean;
|