@progress/kendo-angular-scrollview 19.1.2-develop.3 → 19.1.2-develop.5

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 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 add all `@progress/kendo-angular-scrollview` related components and directives to a standalone Angular component.
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
@@ -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 add all `@progress/kendo-angular-scrollview` related components and directives to a standalone Angular component.
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: 1750152812,
14
- version: '19.1.2-develop.3',
13
+ publishDate: 1750431150,
14
+ version: '19.1.2-develop.5',
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(`\{\\s*${name}\\s*\}`, 'g'), value);
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: `
@@ -36,6 +36,9 @@ let idx = 0;
36
36
  * </ng-template>
37
37
  * </kendo-scrollview>
38
38
  * ```
39
+ *
40
+ * @remarks
41
+ * Supported children components are: {@link CustomMessagesComponent}
39
42
  */
40
43
  export class ScrollViewComponent {
41
44
  element;
@@ -31,8 +31,8 @@ const packageMetadata = {
31
31
  productName: 'Kendo UI for Angular',
32
32
  productCode: 'KENDOUIANGULAR',
33
33
  productCodes: ['KENDOUIANGULAR'],
34
- publishDate: 1750152812,
35
- version: '19.1.2-develop.3',
34
+ publishDate: 1750431150,
35
+ version: '19.1.2-develop.5',
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(`\{\\s*${name}\\s*\}`, 'g'), value);
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 add all `@progress/kendo-angular-scrollview` related components and directives to a standalone Angular component.
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",
3
+ "version": "19.1.2-develop.5",
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": 1750152812,
22
+ "publishDate": 1750431150,
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.3",
33
- "@progress/kendo-angular-l10n": "19.1.2-develop.3",
34
- "@progress/kendo-angular-icons": "19.1.2-develop.3",
32
+ "@progress/kendo-angular-common": "19.1.2-develop.5",
33
+ "@progress/kendo-angular-l10n": "19.1.2-develop.5",
34
+ "@progress/kendo-angular-icons": "19.1.2-develop.5",
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.3"
39
+ "@progress/kendo-angular-schematics": "19.1.2-develop.5"
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;