@progress/kendo-angular-typography 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.
|
@@ -74,12 +74,12 @@ const packageMetadata = {
|
|
|
74
74
|
productCode: 'KENDOUIANGULAR',
|
|
75
75
|
productCodes: ['KENDOUIANGULAR'],
|
|
76
76
|
publishDate: 0,
|
|
77
|
-
version: '
|
|
77
|
+
version: '23.0.0-develop.10',
|
|
78
78
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
79
79
|
};
|
|
80
80
|
|
|
81
81
|
/**
|
|
82
|
-
* Represents the [Kendo UI Typography directive for Angular](
|
|
82
|
+
* Represents the [Kendo UI Typography directive for Angular](https://www.telerik.com/kendo-angular-ui/components/typography).
|
|
83
83
|
* Use this directive to represent element types in a uniform way by relying on the predefined Kendo theme classes.
|
|
84
84
|
*
|
|
85
85
|
* @example
|
package/models/theme-color.d.ts
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
|
-
* Sets the theme color.
|
|
6
|
+
* Sets the theme color. The default value is set by the Kendo theme.
|
|
7
7
|
*
|
|
8
8
|
* You can use these values:
|
|
9
|
-
* * `inherit
|
|
9
|
+
* * `inherit`—Uses coloring based on the current color.
|
|
10
10
|
* * `primary`—Uses coloring based on primary theme color.
|
|
11
11
|
* * `secondary`—Uses coloring based on secondary theme color.
|
|
12
12
|
* * `tertiary`—Uses coloring based on tertiary theme color.
|
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": 1770666846,
|
|
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-typography",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "23.0.0-develop.10",
|
|
4
4
|
"description": "Kendo UI Angular Typography",
|
|
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": 1770666846,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -29,12 +29,12 @@
|
|
|
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": "
|
|
32
|
+
"@progress/kendo-angular-common": "23.0.0-develop.10",
|
|
33
33
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"tslib": "^2.3.1",
|
|
37
|
-
"@progress/kendo-angular-schematics": "
|
|
37
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.10"
|
|
38
38
|
},
|
|
39
39
|
"schematics": "./schematics/collection.json",
|
|
40
40
|
"module": "fesm2022/progress-kendo-angular-typography.mjs",
|
|
@@ -11,7 +11,7 @@ import { TypographyThemeColor } from './models/theme-color';
|
|
|
11
11
|
import { TypographyVariant } from './models/variant';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
/**
|
|
14
|
-
* Represents the [Kendo UI Typography directive for Angular](
|
|
14
|
+
* Represents the [Kendo UI Typography directive for Angular](https://www.telerik.com/kendo-angular-ui/components/typography).
|
|
15
15
|
* Use this directive to represent element types in a uniform way by relying on the predefined Kendo theme classes.
|
|
16
16
|
*
|
|
17
17
|
* @example
|