@progress/kendo-angular-l10n 24.2.2-develop.1 → 24.2.2-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.
@@ -97,17 +97,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
97
97
  /**
98
98
  * Represents a token that specifies the text direction of Kendo UI for Angular components.
99
99
  *
100
- * {% embed_file rtl/app.module.ts preview %}
101
- * {% embed_file rtl/app.component.ts %}
102
- * {% embed_file shared/main.ts hidden %}
103
- *
104
100
  * @example
105
101
  * ```ts
106
102
  * import { RTL } from '@progress/kendo-angular-l10n';
107
103
  *
108
- * providers: [
109
- * { provide: RTL, useValue: true }
110
- * ]
104
+ * @Component({
105
+ * selector: "my-app",
106
+ * imports: [...],
107
+ * providers: [{ provide: RTL, useValue: true }],
108
+ * })
111
109
  * ```
112
110
  */
113
111
  const RTL = new InjectionToken("Kendo UI Right-to-Left token");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-l10n",
3
- "version": "24.2.2-develop.1",
3
+ "version": "24.2.2-develop.10",
4
4
  "description": "Kendo UI Angular l10n component - an easily customized popup from the most trusted provider of professional Angular components.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -22,13 +22,13 @@
22
22
  "@angular/common": "19 - 22",
23
23
  "@angular/core": "19 - 22",
24
24
  "@angular/platform-browser": "19 - 22",
25
- "@progress/kendo-angular-common": "24.2.2-develop.1",
25
+ "@progress/kendo-angular-common": "24.2.2-develop.10",
26
26
  "@progress/kendo-licensing": "^1.11.0",
27
27
  "rxjs": "^6.5.3 || ^7.0.0"
28
28
  },
29
29
  "dependencies": {
30
30
  "tslib": "^2.3.1",
31
- "@progress/kendo-angular-schematics": "24.2.2-develop.1"
31
+ "@progress/kendo-angular-schematics": "24.2.2-develop.10"
32
32
  },
33
33
  "schematics": "./schematics/collection.json",
34
34
  "module": "fesm2022/progress-kendo-angular-l10n.mjs",
package/rtl.d.ts CHANGED
@@ -6,17 +6,15 @@ import { InjectionToken } from '@angular/core';
6
6
  /**
7
7
  * Represents a token that specifies the text direction of Kendo UI for Angular components.
8
8
  *
9
- * {% embed_file rtl/app.module.ts preview %}
10
- * {% embed_file rtl/app.component.ts %}
11
- * {% embed_file shared/main.ts hidden %}
12
- *
13
9
  * @example
14
10
  * ```ts
15
11
  * import { RTL } from '@progress/kendo-angular-l10n';
16
12
  *
17
- * providers: [
18
- * { provide: RTL, useValue: true }
19
- * ]
13
+ * @Component({
14
+ * selector: "my-app",
15
+ * imports: [...],
16
+ * providers: [{ provide: RTL, useValue: true }],
17
+ * })
20
18
  * ```
21
19
  */
22
20
  export declare const RTL: InjectionToken<string>;