@progress/kendo-angular-typography 16.5.0-develop.6 → 16.6.0-develop.1
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 +9 -0
- package/esm2020/directives.mjs +11 -0
- package/esm2020/index.mjs +1 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/typography.directive.mjs +3 -2
- package/esm2020/typography.module.mjs +6 -4
- package/fesm2015/progress-kendo-angular-typography.mjs +17 -8
- package/fesm2020/progress-kendo-angular-typography.mjs +17 -8
- package/index.d.ts +1 -0
- package/package.json +3 -3
- package/typography.directive.d.ts +1 -1
- package/typography.module.d.ts +1 -1
package/directives.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { TypographyDirective } from "./typography.directive";
|
|
6
|
+
/**
|
|
7
|
+
* Utility array that contains all `@progress/kendo-angular-typography` related components and directives
|
|
8
|
+
*/
|
|
9
|
+
export declare const KENDO_TYPOGRAPHY: readonly [typeof TypographyDirective];
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { TypographyDirective } from "./typography.directive";
|
|
6
|
+
/**
|
|
7
|
+
* Utility array that contains all `@progress/kendo-angular-typography` related components and directives
|
|
8
|
+
*/
|
|
9
|
+
export const KENDO_TYPOGRAPHY = [
|
|
10
|
+
TypographyDirective
|
|
11
|
+
];
|
package/esm2020/index.mjs
CHANGED
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-typography',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1721827987,
|
|
13
|
+
version: '16.6.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -98,12 +98,13 @@ export class TypographyDirective {
|
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
100
|
TypographyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
101
|
-
TypographyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TypographyDirective, selector: "[kendoTypography]", inputs: { variant: "variant", fontSize: "fontSize", fontWeight: "fontWeight", textAlign: "textAlign", textTransform: "textTransform", themeColor: "themeColor", margin: "margin" }, exportAs: ["kendoTypography"], usesOnChanges: true, ngImport: i0 });
|
|
101
|
+
TypographyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TypographyDirective, isStandalone: true, selector: "[kendoTypography]", inputs: { variant: "variant", fontSize: "fontSize", fontWeight: "fontWeight", textAlign: "textAlign", textTransform: "textTransform", themeColor: "themeColor", margin: "margin" }, exportAs: ["kendoTypography"], usesOnChanges: true, ngImport: i0 });
|
|
102
102
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyDirective, decorators: [{
|
|
103
103
|
type: Directive,
|
|
104
104
|
args: [{
|
|
105
105
|
selector: '[kendoTypography]',
|
|
106
|
-
exportAs: 'kendoTypography'
|
|
106
|
+
exportAs: 'kendoTypography',
|
|
107
|
+
standalone: true
|
|
107
108
|
}]
|
|
108
109
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { variant: [{
|
|
109
110
|
type: Input
|
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgModule } from '@angular/core';
|
|
6
|
-
import {
|
|
6
|
+
import { KENDO_TYPOGRAPHY } from './directives';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "./typography.directive";
|
|
9
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
8
10
|
/**
|
|
9
11
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
10
12
|
* definition for the Typography component.
|
|
@@ -39,12 +41,12 @@ import * as i0 from "@angular/core";
|
|
|
39
41
|
export class TypographyModule {
|
|
40
42
|
}
|
|
41
43
|
TypographyModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
42
|
-
TypographyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule,
|
|
44
|
+
TypographyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule, imports: [i1.TypographyDirective], exports: [i1.TypographyDirective] });
|
|
43
45
|
TypographyModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule });
|
|
44
46
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule, decorators: [{
|
|
45
47
|
type: NgModule,
|
|
46
48
|
args: [{
|
|
47
|
-
|
|
48
|
-
exports: [
|
|
49
|
+
imports: [...KENDO_TYPOGRAPHY],
|
|
50
|
+
exports: [...KENDO_TYPOGRAPHY]
|
|
49
51
|
}]
|
|
50
52
|
}] });
|
|
@@ -154,8 +154,8 @@ const packageMetadata = {
|
|
|
154
154
|
name: '@progress/kendo-angular-typography',
|
|
155
155
|
productName: 'Kendo UI for Angular',
|
|
156
156
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
157
|
-
publishDate:
|
|
158
|
-
version: '16.
|
|
157
|
+
publishDate: 1721827987,
|
|
158
|
+
version: '16.6.0-develop.1',
|
|
159
159
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
160
160
|
};
|
|
161
161
|
|
|
@@ -243,12 +243,13 @@ class TypographyDirective {
|
|
|
243
243
|
}
|
|
244
244
|
}
|
|
245
245
|
TypographyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
246
|
-
TypographyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TypographyDirective, selector: "[kendoTypography]", inputs: { variant: "variant", fontSize: "fontSize", fontWeight: "fontWeight", textAlign: "textAlign", textTransform: "textTransform", themeColor: "themeColor", margin: "margin" }, exportAs: ["kendoTypography"], usesOnChanges: true, ngImport: i0 });
|
|
246
|
+
TypographyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TypographyDirective, isStandalone: true, selector: "[kendoTypography]", inputs: { variant: "variant", fontSize: "fontSize", fontWeight: "fontWeight", textAlign: "textAlign", textTransform: "textTransform", themeColor: "themeColor", margin: "margin" }, exportAs: ["kendoTypography"], usesOnChanges: true, ngImport: i0 });
|
|
247
247
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyDirective, decorators: [{
|
|
248
248
|
type: Directive,
|
|
249
249
|
args: [{
|
|
250
250
|
selector: '[kendoTypography]',
|
|
251
|
-
exportAs: 'kendoTypography'
|
|
251
|
+
exportAs: 'kendoTypography',
|
|
252
|
+
standalone: true
|
|
252
253
|
}]
|
|
253
254
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { variant: [{
|
|
254
255
|
type: Input
|
|
@@ -266,6 +267,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
266
267
|
type: Input
|
|
267
268
|
}] } });
|
|
268
269
|
|
|
270
|
+
/**
|
|
271
|
+
* Utility array that contains all `@progress/kendo-angular-typography` related components and directives
|
|
272
|
+
*/
|
|
273
|
+
const KENDO_TYPOGRAPHY = [
|
|
274
|
+
TypographyDirective
|
|
275
|
+
];
|
|
276
|
+
|
|
277
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
269
278
|
/**
|
|
270
279
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
271
280
|
* definition for the Typography component.
|
|
@@ -300,13 +309,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
300
309
|
class TypographyModule {
|
|
301
310
|
}
|
|
302
311
|
TypographyModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
303
|
-
TypographyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule,
|
|
312
|
+
TypographyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule, imports: [TypographyDirective], exports: [TypographyDirective] });
|
|
304
313
|
TypographyModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule });
|
|
305
314
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule, decorators: [{
|
|
306
315
|
type: NgModule,
|
|
307
316
|
args: [{
|
|
308
|
-
|
|
309
|
-
exports: [
|
|
317
|
+
imports: [...KENDO_TYPOGRAPHY],
|
|
318
|
+
exports: [...KENDO_TYPOGRAPHY]
|
|
310
319
|
}]
|
|
311
320
|
}] });
|
|
312
321
|
|
|
@@ -314,5 +323,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
314
323
|
* Generated bundle index. Do not edit.
|
|
315
324
|
*/
|
|
316
325
|
|
|
317
|
-
export { TypographyDirective, TypographyModule };
|
|
326
|
+
export { KENDO_TYPOGRAPHY, TypographyDirective, TypographyModule };
|
|
318
327
|
|
|
@@ -154,8 +154,8 @@ const packageMetadata = {
|
|
|
154
154
|
name: '@progress/kendo-angular-typography',
|
|
155
155
|
productName: 'Kendo UI for Angular',
|
|
156
156
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
157
|
-
publishDate:
|
|
158
|
-
version: '16.
|
|
157
|
+
publishDate: 1721827987,
|
|
158
|
+
version: '16.6.0-develop.1',
|
|
159
159
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
160
160
|
};
|
|
161
161
|
|
|
@@ -243,12 +243,13 @@ class TypographyDirective {
|
|
|
243
243
|
}
|
|
244
244
|
}
|
|
245
245
|
TypographyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
246
|
-
TypographyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TypographyDirective, selector: "[kendoTypography]", inputs: { variant: "variant", fontSize: "fontSize", fontWeight: "fontWeight", textAlign: "textAlign", textTransform: "textTransform", themeColor: "themeColor", margin: "margin" }, exportAs: ["kendoTypography"], usesOnChanges: true, ngImport: i0 });
|
|
246
|
+
TypographyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TypographyDirective, isStandalone: true, selector: "[kendoTypography]", inputs: { variant: "variant", fontSize: "fontSize", fontWeight: "fontWeight", textAlign: "textAlign", textTransform: "textTransform", themeColor: "themeColor", margin: "margin" }, exportAs: ["kendoTypography"], usesOnChanges: true, ngImport: i0 });
|
|
247
247
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyDirective, decorators: [{
|
|
248
248
|
type: Directive,
|
|
249
249
|
args: [{
|
|
250
250
|
selector: '[kendoTypography]',
|
|
251
|
-
exportAs: 'kendoTypography'
|
|
251
|
+
exportAs: 'kendoTypography',
|
|
252
|
+
standalone: true
|
|
252
253
|
}]
|
|
253
254
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { variant: [{
|
|
254
255
|
type: Input
|
|
@@ -266,6 +267,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
266
267
|
type: Input
|
|
267
268
|
}] } });
|
|
268
269
|
|
|
270
|
+
/**
|
|
271
|
+
* Utility array that contains all `@progress/kendo-angular-typography` related components and directives
|
|
272
|
+
*/
|
|
273
|
+
const KENDO_TYPOGRAPHY = [
|
|
274
|
+
TypographyDirective
|
|
275
|
+
];
|
|
276
|
+
|
|
277
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
269
278
|
/**
|
|
270
279
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
271
280
|
* definition for the Typography component.
|
|
@@ -300,13 +309,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
300
309
|
class TypographyModule {
|
|
301
310
|
}
|
|
302
311
|
TypographyModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
303
|
-
TypographyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule,
|
|
312
|
+
TypographyModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule, imports: [TypographyDirective], exports: [TypographyDirective] });
|
|
304
313
|
TypographyModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule });
|
|
305
314
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TypographyModule, decorators: [{
|
|
306
315
|
type: NgModule,
|
|
307
316
|
args: [{
|
|
308
|
-
|
|
309
|
-
exports: [
|
|
317
|
+
imports: [...KENDO_TYPOGRAPHY],
|
|
318
|
+
exports: [...KENDO_TYPOGRAPHY]
|
|
310
319
|
}]
|
|
311
320
|
}] });
|
|
312
321
|
|
|
@@ -314,5 +323,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
314
323
|
* Generated bundle index. Do not edit.
|
|
315
324
|
*/
|
|
316
325
|
|
|
317
|
-
export { TypographyDirective, TypographyModule };
|
|
326
|
+
export { KENDO_TYPOGRAPHY, TypographyDirective, TypographyModule };
|
|
318
327
|
|
package/index.d.ts
CHANGED
|
@@ -11,3 +11,4 @@ export { TypographyTextTransform } from './models/text-transform';
|
|
|
11
11
|
export { TypographyVariant } from './models/variant';
|
|
12
12
|
export { TypographyThemeColor } from './models/theme-color';
|
|
13
13
|
export { TypographyMargin } from './models/margin';
|
|
14
|
+
export * from './directives';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-typography",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.6.0-develop.1",
|
|
4
4
|
"description": "Kendo UI Angular Typography",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"@angular/core": "15 - 18",
|
|
24
24
|
"@angular/platform-browser": "15 - 18",
|
|
25
25
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
-
"@progress/kendo-angular-common": "16.
|
|
26
|
+
"@progress/kendo-angular-common": "16.6.0-develop.1",
|
|
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": "16.
|
|
31
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.1"
|
|
32
32
|
},
|
|
33
33
|
"schematics": "./schematics/collection.json",
|
|
34
34
|
"module": "fesm2015/progress-kendo-angular-typography.mjs",
|
|
@@ -65,5 +65,5 @@ export declare class TypographyDirective implements OnChanges {
|
|
|
65
65
|
private marginClasses;
|
|
66
66
|
private setTypographyClasses;
|
|
67
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<TypographyDirective, never>;
|
|
68
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TypographyDirective, "[kendoTypography]", ["kendoTypography"], { "variant": "variant"; "fontSize": "fontSize"; "fontWeight": "fontWeight"; "textAlign": "textAlign"; "textTransform": "textTransform"; "themeColor": "themeColor"; "margin": "margin"; }, {}, never, never,
|
|
68
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TypographyDirective, "[kendoTypography]", ["kendoTypography"], { "variant": "variant"; "fontSize": "fontSize"; "fontWeight": "fontWeight"; "textAlign": "textAlign"; "textTransform": "textTransform"; "themeColor": "themeColor"; "margin": "margin"; }, {}, never, never, true, never>;
|
|
69
69
|
}
|
package/typography.module.d.ts
CHANGED
|
@@ -37,6 +37,6 @@ import * as i1 from "./typography.directive";
|
|
|
37
37
|
*/
|
|
38
38
|
export declare class TypographyModule {
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<TypographyModule, never>;
|
|
40
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TypographyModule, [typeof i1.TypographyDirective],
|
|
40
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TypographyModule, never, [typeof i1.TypographyDirective], [typeof i1.TypographyDirective]>;
|
|
41
41
|
static ɵinj: i0.ɵɵInjectorDeclaration<TypographyModule>;
|
|
42
42
|
}
|