@progress/kendo-angular-scrollview 19.1.2-develop.4 → 19.1.2-develop.6
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/directives.d.ts +1 -1
- package/esm2022/directives.mjs +1 -1
- package/esm2022/localization/custom-messages.component.mjs +8 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/scrollview-pager.component.mjs +1 -1
- package/esm2022/scrollview.component.mjs +3 -0
- package/fesm2022/progress-kendo-angular-scrollview.mjs +15 -4
- package/localization/custom-messages.component.d.ts +8 -0
- package/package.json +6 -6
- package/scrollview.component.d.ts +3 -0
package/directives.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { CustomMessagesComponent } from "./localization/custom-messages.component";
|
|
6
6
|
import { ScrollViewComponent } from "./scrollview.component";
|
|
7
7
|
/**
|
|
8
|
-
* Use the `KENDO_SCROLLVIEW` utility array to
|
|
8
|
+
* Use the `KENDO_SCROLLVIEW` utility array to access all `@progress/kendo-angular-scrollview` related components and directives in a standalone Angular component.
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
11
|
* ```typescript
|
package/esm2022/directives.mjs
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { CustomMessagesComponent } from "./localization/custom-messages.component";
|
|
6
6
|
import { ScrollViewComponent } from "./scrollview.component";
|
|
7
7
|
/**
|
|
8
|
-
* Use the `KENDO_SCROLLVIEW` utility array to
|
|
8
|
+
* Use the `KENDO_SCROLLVIEW` utility array to access all `@progress/kendo-angular-scrollview` related components and directives in a standalone Angular component.
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
11
|
* ```typescript
|
|
@@ -12,6 +12,14 @@ import * as i1 from "@progress/kendo-angular-l10n";
|
|
|
12
12
|
*
|
|
13
13
|
* Use this component to override default messages for the ScrollView
|
|
14
14
|
* ([see example](slug:rtl_scrollview#toc-custom-messages)).
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```html
|
|
18
|
+
* <kendo-scrollview [data]="items" [width]="width" [height]="height">
|
|
19
|
+
* <kendo-scrollview-messages pagerButtonLabel="This is item number {itemIndex}">
|
|
20
|
+
* </kendo-scrollview-messages>
|
|
21
|
+
* </kendo-scrollview>
|
|
22
|
+
* ```
|
|
15
23
|
*/
|
|
16
24
|
export class CustomMessagesComponent extends ScrollViewMessages {
|
|
17
25
|
service;
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '19.1.2-develop.
|
|
13
|
+
publishDate: 1750433970,
|
|
14
|
+
version: '19.1.2-develop.6',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -33,7 +33,7 @@ export class ScrollViewPagerComponent {
|
|
|
33
33
|
return this.replaceMessagePlaceholder(localizationMsg, 'itemIndex', itemIndex.toString());
|
|
34
34
|
}
|
|
35
35
|
replaceMessagePlaceholder(message, name, value) {
|
|
36
|
-
return message.replace(new RegExp(
|
|
36
|
+
return message.replace(new RegExp(`{\\s*${name}\\s*}`, 'g'), value);
|
|
37
37
|
}
|
|
38
38
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ScrollViewPagerComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
39
39
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ScrollViewPagerComponent, isStandalone: true, selector: "kendo-scrollview-pager", inputs: { activeIndex: "activeIndex", data: "data" }, outputs: { pagerIndexChange: "pagerIndexChange" }, ngImport: i0, template: `
|
|
@@ -31,8 +31,8 @@ const packageMetadata = {
|
|
|
31
31
|
productName: 'Kendo UI for Angular',
|
|
32
32
|
productCode: 'KENDOUIANGULAR',
|
|
33
33
|
productCodes: ['KENDOUIANGULAR'],
|
|
34
|
-
publishDate:
|
|
35
|
-
version: '19.1.2-develop.
|
|
34
|
+
publishDate: 1750433970,
|
|
35
|
+
version: '19.1.2-develop.6',
|
|
36
36
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
37
37
|
};
|
|
38
38
|
|
|
@@ -151,7 +151,7 @@ class ScrollViewPagerComponent {
|
|
|
151
151
|
return this.replaceMessagePlaceholder(localizationMsg, 'itemIndex', itemIndex.toString());
|
|
152
152
|
}
|
|
153
153
|
replaceMessagePlaceholder(message, name, value) {
|
|
154
|
-
return message.replace(new RegExp(
|
|
154
|
+
return message.replace(new RegExp(`{\\s*${name}\\s*}`, 'g'), value);
|
|
155
155
|
}
|
|
156
156
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ScrollViewPagerComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
157
157
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ScrollViewPagerComponent, isStandalone: true, selector: "kendo-scrollview-pager", inputs: { activeIndex: "activeIndex", data: "data" }, outputs: { pagerIndexChange: "pagerIndexChange" }, ngImport: i0, template: `
|
|
@@ -257,6 +257,9 @@ let idx = 0;
|
|
|
257
257
|
* </ng-template>
|
|
258
258
|
* </kendo-scrollview>
|
|
259
259
|
* ```
|
|
260
|
+
*
|
|
261
|
+
* @remarks
|
|
262
|
+
* Supported children components are: {@link CustomMessagesComponent}
|
|
260
263
|
*/
|
|
261
264
|
class ScrollViewComponent {
|
|
262
265
|
element;
|
|
@@ -915,6 +918,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
915
918
|
*
|
|
916
919
|
* Use this component to override default messages for the ScrollView
|
|
917
920
|
* ([see example](slug:rtl_scrollview#toc-custom-messages)).
|
|
921
|
+
*
|
|
922
|
+
* @example
|
|
923
|
+
* ```html
|
|
924
|
+
* <kendo-scrollview [data]="items" [width]="width" [height]="height">
|
|
925
|
+
* <kendo-scrollview-messages pagerButtonLabel="This is item number {itemIndex}">
|
|
926
|
+
* </kendo-scrollview-messages>
|
|
927
|
+
* </kendo-scrollview>
|
|
928
|
+
* ```
|
|
918
929
|
*/
|
|
919
930
|
class CustomMessagesComponent extends ScrollViewMessages {
|
|
920
931
|
service;
|
|
@@ -949,7 +960,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
949
960
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
|
950
961
|
|
|
951
962
|
/**
|
|
952
|
-
* Use the `KENDO_SCROLLVIEW` utility array to
|
|
963
|
+
* Use the `KENDO_SCROLLVIEW` utility array to access all `@progress/kendo-angular-scrollview` related components and directives in a standalone Angular component.
|
|
953
964
|
*
|
|
954
965
|
* @example
|
|
955
966
|
* ```typescript
|
|
@@ -10,6 +10,14 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
*
|
|
11
11
|
* Use this component to override default messages for the ScrollView
|
|
12
12
|
* ([see example](slug:rtl_scrollview#toc-custom-messages)).
|
|
13
|
+
*
|
|
14
|
+
* @example
|
|
15
|
+
* ```html
|
|
16
|
+
* <kendo-scrollview [data]="items" [width]="width" [height]="height">
|
|
17
|
+
* <kendo-scrollview-messages pagerButtonLabel="This is item number {itemIndex}">
|
|
18
|
+
* </kendo-scrollview-messages>
|
|
19
|
+
* </kendo-scrollview>
|
|
20
|
+
* ```
|
|
13
21
|
*/
|
|
14
22
|
export declare class CustomMessagesComponent extends ScrollViewMessages {
|
|
15
23
|
protected service: LocalizationService;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scrollview",
|
|
3
|
-
"version": "19.1.2-develop.
|
|
3
|
+
"version": "19.1.2-develop.6",
|
|
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": 1750433970,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"@angular/core": "16 - 20",
|
|
30
30
|
"@angular/platform-browser": "16 - 20",
|
|
31
31
|
"@progress/kendo-licensing": "^1.5.0",
|
|
32
|
-
"@progress/kendo-angular-common": "19.1.2-develop.
|
|
33
|
-
"@progress/kendo-angular-l10n": "19.1.2-develop.
|
|
34
|
-
"@progress/kendo-angular-icons": "19.1.2-develop.
|
|
32
|
+
"@progress/kendo-angular-common": "19.1.2-develop.6",
|
|
33
|
+
"@progress/kendo-angular-l10n": "19.1.2-develop.6",
|
|
34
|
+
"@progress/kendo-angular-icons": "19.1.2-develop.6",
|
|
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": "19.1.2-develop.
|
|
39
|
+
"@progress/kendo-angular-schematics": "19.1.2-develop.6"
|
|
40
40
|
},
|
|
41
41
|
"schematics": "./schematics/collection.json",
|
|
42
42
|
"module": "fesm2022/progress-kendo-angular-scrollview.mjs",
|
|
@@ -25,6 +25,9 @@ import * as i0 from "@angular/core";
|
|
|
25
25
|
* </ng-template>
|
|
26
26
|
* </kendo-scrollview>
|
|
27
27
|
* ```
|
|
28
|
+
*
|
|
29
|
+
* @remarks
|
|
30
|
+
* Supported children components are: {@link CustomMessagesComponent}
|
|
28
31
|
*/
|
|
29
32
|
export declare class ScrollViewComponent implements OnChanges, OnDestroy {
|
|
30
33
|
protected element: ElementRef;
|