@progress/kendo-angular-label 16.5.0 → 16.6.0-develop.2
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 +20 -0
- package/esm2020/directives.mjs +30 -0
- package/esm2020/floating-label/floating-label.component.mjs +7 -5
- package/esm2020/floating-label/floating-label.module.mjs +8 -9
- package/esm2020/index.mjs +1 -1
- package/esm2020/label/label.component.mjs +7 -6
- package/esm2020/label.directive.mjs +3 -2
- package/esm2020/label.module.mjs +10 -16
- package/esm2020/localization/custom-messages.component.mjs +3 -2
- package/esm2020/localization/localized-messages.directive.mjs +3 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-label.mjs +172 -172
- package/fesm2020/progress-kendo-angular-label.mjs +172 -172
- package/floating-label/floating-label.component.d.ts +1 -1
- package/floating-label/floating-label.module.d.ts +2 -3
- package/index.d.ts +1 -1
- package/label/label.component.d.ts +1 -1
- package/label.directive.d.ts +1 -1
- package/label.module.d.ts +3 -4
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/localized-messages.directive.d.ts +1 -1
- package/package.json +4 -4
- package/esm2020/shared.module.mjs +0 -29
- package/shared.module.d.ts +0 -15
package/directives.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
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 { FloatingLabelComponent } from "./floating-label/floating-label.component";
|
|
6
|
+
import { LabelDirective } from "./label.directive";
|
|
7
|
+
import { LabelComponent } from "./label/label.component";
|
|
8
|
+
import { CustomMessagesComponent } from "./localization/custom-messages.component";
|
|
9
|
+
/**
|
|
10
|
+
* Utility array that contains all `Label` related components and directives
|
|
11
|
+
*/
|
|
12
|
+
export declare const KENDO_LABEL: readonly [typeof LabelDirective, typeof LabelComponent, typeof CustomMessagesComponent];
|
|
13
|
+
/**
|
|
14
|
+
* Utility array that contains all `FloatingLabel` related components and directives
|
|
15
|
+
*/
|
|
16
|
+
export declare const KENDO_FLOATINGLABEL: readonly [typeof FloatingLabelComponent, typeof CustomMessagesComponent];
|
|
17
|
+
/**
|
|
18
|
+
* Utility array that contains all `@progress/kendo-angular-label` related components and directives
|
|
19
|
+
*/
|
|
20
|
+
export declare const KENDO_LABELS: readonly [typeof LabelDirective, typeof LabelComponent, typeof CustomMessagesComponent, typeof FloatingLabelComponent, typeof CustomMessagesComponent];
|
|
@@ -0,0 +1,30 @@
|
|
|
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 { FloatingLabelComponent } from "./floating-label/floating-label.component";
|
|
6
|
+
import { LabelDirective } from "./label.directive";
|
|
7
|
+
import { LabelComponent } from "./label/label.component";
|
|
8
|
+
import { CustomMessagesComponent } from "./localization/custom-messages.component";
|
|
9
|
+
/**
|
|
10
|
+
* Utility array that contains all `Label` related components and directives
|
|
11
|
+
*/
|
|
12
|
+
export const KENDO_LABEL = [
|
|
13
|
+
LabelDirective,
|
|
14
|
+
LabelComponent,
|
|
15
|
+
CustomMessagesComponent
|
|
16
|
+
];
|
|
17
|
+
/**
|
|
18
|
+
* Utility array that contains all `FloatingLabel` related components and directives
|
|
19
|
+
*/
|
|
20
|
+
export const KENDO_FLOATINGLABEL = [
|
|
21
|
+
FloatingLabelComponent,
|
|
22
|
+
CustomMessagesComponent
|
|
23
|
+
];
|
|
24
|
+
/**
|
|
25
|
+
* Utility array that contains all `@progress/kendo-angular-label` related components and directives
|
|
26
|
+
*/
|
|
27
|
+
export const KENDO_LABELS = [
|
|
28
|
+
...KENDO_LABEL,
|
|
29
|
+
...KENDO_FLOATINGLABEL
|
|
30
|
+
];
|
|
@@ -10,10 +10,10 @@ import { validatePackage } from '@progress/kendo-licensing';
|
|
|
10
10
|
import { packageMetadata } from '../package-metadata';
|
|
11
11
|
import { FloatingLabelInputAdapter } from './floating-label-input-adapter';
|
|
12
12
|
import { nativeLabelForTargets } from '../util';
|
|
13
|
+
import { NgIf, NgClass, NgStyle } from '@angular/common';
|
|
14
|
+
import { LocalizedMessagesDirective } from '../localization/localized-messages.directive';
|
|
13
15
|
import * as i0 from "@angular/core";
|
|
14
16
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
15
|
-
import * as i2 from "@angular/common";
|
|
16
|
-
import * as i3 from "../localization/localized-messages.directive";
|
|
17
17
|
const isFunction = (x) => Object.prototype.toString.call(x) === '[object Function]';
|
|
18
18
|
/**
|
|
19
19
|
* Represents the [Kendo UI FloatingLabel component for Angular]({% slug overview_floatinglabel %}).
|
|
@@ -231,7 +231,7 @@ export class FloatingLabelComponent {
|
|
|
231
231
|
}
|
|
232
232
|
}
|
|
233
233
|
FloatingLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingLabelComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
234
|
-
FloatingLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FloatingLabelComponent, selector: "kendo-floatinglabel", inputs: { labelCssStyle: "labelCssStyle", labelCssClass: "labelCssClass", id: "id", text: "text", optional: "optional" }, outputs: { positionChange: "positionChange" }, host: { properties: { "class.k-floating-label-container": "this.hostClasses", "class.k-focus": "this.focusedClass", "class.k-invalid": "this.invalidClass", "attr.dir": "this.direction" } }, providers: [
|
|
234
|
+
FloatingLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FloatingLabelComponent, isStandalone: true, selector: "kendo-floatinglabel", inputs: { labelCssStyle: "labelCssStyle", labelCssClass: "labelCssClass", id: "id", text: "text", optional: "optional" }, outputs: { positionChange: "positionChange" }, host: { properties: { "class.k-floating-label-container": "this.hostClasses", "class.k-focus": "this.focusedClass", "class.k-invalid": "this.invalidClass", "attr.dir": "this.direction" } }, providers: [
|
|
235
235
|
LocalizationService,
|
|
236
236
|
{
|
|
237
237
|
provide: L10N_PREFIX,
|
|
@@ -247,7 +247,7 @@ FloatingLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
247
247
|
<label *ngIf="text" [ngClass]="labelCssClass" [ngStyle]="labelCssStyle" [for]="id" [attr.id]="labelId" class="k-floating-label">
|
|
248
248
|
{{ text }}<span *ngIf="optional" class="k-label-optional">({{textFor('optional')}})</span>
|
|
249
249
|
</label>
|
|
250
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
250
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoLabelLocalizedMessages],\n [kendoFloatingLabelLocalizedMessages]\n " }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
251
251
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingLabelComponent, decorators: [{
|
|
252
252
|
type: Component,
|
|
253
253
|
args: [{
|
|
@@ -270,7 +270,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
270
270
|
<label *ngIf="text" [ngClass]="labelCssClass" [ngStyle]="labelCssStyle" [for]="id" [attr.id]="labelId" class="k-floating-label">
|
|
271
271
|
{{ text }}<span *ngIf="optional" class="k-label-optional">({{textFor('optional')}})</span>
|
|
272
272
|
</label>
|
|
273
|
-
|
|
273
|
+
`,
|
|
274
|
+
standalone: true,
|
|
275
|
+
imports: [LocalizedMessagesDirective, NgIf, NgClass, NgStyle]
|
|
274
276
|
}]
|
|
275
277
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }, { type: i1.LocalizationService }]; }, propDecorators: { hostClasses: [{
|
|
276
278
|
type: HostBinding,
|
|
@@ -3,11 +3,11 @@
|
|
|
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 {
|
|
7
|
-
import { SharedDirectivesModule } from './../shared.module';
|
|
8
|
-
import { FloatingLabelComponent } from './floating-label.component';
|
|
6
|
+
import { KENDO_FLOATINGLABEL } from '../directives';
|
|
9
7
|
import * as i0 from "@angular/core";
|
|
10
|
-
|
|
8
|
+
import * as i1 from "./floating-label.component";
|
|
9
|
+
import * as i2 from "../localization/custom-messages.component";
|
|
10
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
11
11
|
/**
|
|
12
12
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
13
13
|
* definition for the TextBox directive.
|
|
@@ -40,13 +40,12 @@ const COMPONENT_DIRECTIVES = [FloatingLabelComponent];
|
|
|
40
40
|
export class FloatingLabelModule {
|
|
41
41
|
}
|
|
42
42
|
FloatingLabelModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingLabelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
43
|
-
FloatingLabelModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FloatingLabelModule,
|
|
44
|
-
FloatingLabelModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingLabelModule, imports: [
|
|
43
|
+
FloatingLabelModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FloatingLabelModule, imports: [i1.FloatingLabelComponent, i2.CustomMessagesComponent], exports: [i1.FloatingLabelComponent, i2.CustomMessagesComponent] });
|
|
44
|
+
FloatingLabelModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingLabelModule, imports: [KENDO_FLOATINGLABEL] });
|
|
45
45
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingLabelModule, decorators: [{
|
|
46
46
|
type: NgModule,
|
|
47
47
|
args: [{
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
imports: [CommonModule, SharedDirectivesModule]
|
|
48
|
+
exports: [...KENDO_FLOATINGLABEL],
|
|
49
|
+
imports: [...KENDO_FLOATINGLABEL]
|
|
51
50
|
}]
|
|
52
51
|
}] });
|
package/esm2020/index.mjs
CHANGED
|
@@ -9,4 +9,4 @@ export { FloatingLabelComponent } from './floating-label/floating-label.componen
|
|
|
9
9
|
export { LabelComponent } from './label/label.component';
|
|
10
10
|
export { CustomMessagesComponent } from './localization/custom-messages.component';
|
|
11
11
|
export { LocalizedMessagesDirective } from './localization/localized-messages.directive';
|
|
12
|
-
export
|
|
12
|
+
export * from './directives';
|
|
@@ -10,11 +10,10 @@ import { validatePackage } from '@progress/kendo-licensing';
|
|
|
10
10
|
import { packageMetadata } from '../package-metadata';
|
|
11
11
|
import { LabelDirective } from './../label.directive';
|
|
12
12
|
import { getWrappedNativeInput } from './../util';
|
|
13
|
+
import { NgClass, NgStyle, NgIf } from '@angular/common';
|
|
14
|
+
import { LocalizedMessagesDirective } from '../localization/localized-messages.directive';
|
|
13
15
|
import * as i0 from "@angular/core";
|
|
14
16
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
15
|
-
import * as i2 from "@angular/common";
|
|
16
|
-
import * as i3 from "../localization/localized-messages.directive";
|
|
17
|
-
import * as i4 from "../label.directive";
|
|
18
17
|
/**
|
|
19
18
|
* Represents the [Kendo UI Label component for Angular]({% slug overview_label %}).
|
|
20
19
|
*
|
|
@@ -85,7 +84,7 @@ export class LabelComponent {
|
|
|
85
84
|
}
|
|
86
85
|
}
|
|
87
86
|
LabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LabelComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
88
|
-
LabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LabelComponent, selector: "kendo-label", inputs: { text: "text", for: "for", optional: "optional", labelCssStyle: "labelCssStyle", labelCssClass: "labelCssClass" }, host: { properties: { "attr.dir": "this.direction" } }, providers: [
|
|
87
|
+
LabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LabelComponent, isStandalone: true, selector: "kendo-label", inputs: { text: "text", for: "for", optional: "optional", labelCssStyle: "labelCssStyle", labelCssClass: "labelCssClass" }, host: { properties: { "attr.dir": "this.direction" } }, providers: [
|
|
89
88
|
LocalizationService,
|
|
90
89
|
{
|
|
91
90
|
provide: L10N_PREFIX,
|
|
@@ -106,7 +105,7 @@ LabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version
|
|
|
106
105
|
{{ text }}<span *ngIf="optional" class="k-label-optional">({{textFor('optional')}})</span>
|
|
107
106
|
</label>
|
|
108
107
|
<ng-content></ng-content>
|
|
109
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
108
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoLabelLocalizedMessages],\n [kendoFloatingLabelLocalizedMessages]\n " }, { kind: "directive", type: LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
110
109
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LabelComponent, decorators: [{
|
|
111
110
|
type: Component,
|
|
112
111
|
args: [{
|
|
@@ -134,7 +133,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
134
133
|
{{ text }}<span *ngIf="optional" class="k-label-optional">({{textFor('optional')}})</span>
|
|
135
134
|
</label>
|
|
136
135
|
<ng-content></ng-content>
|
|
137
|
-
|
|
136
|
+
`,
|
|
137
|
+
standalone: true,
|
|
138
|
+
imports: [LocalizedMessagesDirective, LabelDirective, NgClass, NgStyle, NgIf]
|
|
138
139
|
}]
|
|
139
140
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.LocalizationService }]; }, propDecorators: { direction: [{
|
|
140
141
|
type: HostBinding,
|
|
@@ -130,12 +130,13 @@ export class LabelDirective {
|
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
LabelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LabelDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
133
|
-
LabelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LabelDirective, selector: "label[for]", inputs: { for: "for", labelClass: "labelClass" }, host: { properties: { "attr.for": "this.labelFor", "class.k-label": "this.labelClass" } }, ngImport: i0 });
|
|
133
|
+
LabelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LabelDirective, isStandalone: true, selector: "label[for]", inputs: { for: "for", labelClass: "labelClass" }, host: { properties: { "attr.for": "this.labelFor", "class.k-label": "this.labelClass" } }, ngImport: i0 });
|
|
134
134
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LabelDirective, decorators: [{
|
|
135
135
|
type: Directive,
|
|
136
136
|
args: [{
|
|
137
137
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
138
|
-
selector: 'label[for]'
|
|
138
|
+
selector: 'label[for]',
|
|
139
|
+
standalone: true
|
|
139
140
|
}]
|
|
140
141
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { for: [{
|
|
141
142
|
type: Input
|
package/esm2020/label.module.mjs
CHANGED
|
@@ -2,17 +2,14 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { SharedDirectivesModule } from './shared.module';
|
|
6
|
-
import { CommonModule } from '@angular/common';
|
|
7
5
|
import { NgModule } from '@angular/core';
|
|
8
|
-
import {
|
|
9
|
-
import { LabelDirective } from './label.directive';
|
|
10
|
-
import { LabelComponent } from './label/label.component';
|
|
6
|
+
import { KENDO_LABELS } from './directives';
|
|
11
7
|
import * as i0 from "@angular/core";
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
8
|
+
import * as i1 from "./label.directive";
|
|
9
|
+
import * as i2 from "./label/label.component";
|
|
10
|
+
import * as i3 from "./localization/custom-messages.component";
|
|
11
|
+
import * as i4 from "./floating-label/floating-label.component";
|
|
12
|
+
//IMPORTANT: NgModule export kept for backwards compatibility
|
|
16
13
|
/**
|
|
17
14
|
* The exported package module.
|
|
18
15
|
*
|
|
@@ -51,15 +48,12 @@ const COMPONENT_DIRECTIVES = [
|
|
|
51
48
|
export class LabelModule {
|
|
52
49
|
}
|
|
53
50
|
LabelModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LabelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
54
|
-
LabelModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LabelModule,
|
|
55
|
-
|
|
56
|
-
LabelComponent, FloatingLabelModule, SharedDirectivesModule] });
|
|
57
|
-
LabelModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LabelModule, imports: [CommonModule, SharedDirectivesModule, FloatingLabelModule, SharedDirectivesModule] });
|
|
51
|
+
LabelModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LabelModule, imports: [i1.LabelDirective, i2.LabelComponent, i3.CustomMessagesComponent, i4.FloatingLabelComponent, i3.CustomMessagesComponent], exports: [i1.LabelDirective, i2.LabelComponent, i3.CustomMessagesComponent, i4.FloatingLabelComponent, i3.CustomMessagesComponent] });
|
|
52
|
+
LabelModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LabelModule, imports: [i2.LabelComponent, i3.CustomMessagesComponent, i4.FloatingLabelComponent, i3.CustomMessagesComponent] });
|
|
58
53
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LabelModule, decorators: [{
|
|
59
54
|
type: NgModule,
|
|
60
55
|
args: [{
|
|
61
|
-
imports: [
|
|
62
|
-
|
|
63
|
-
exports: [...COMPONENT_DIRECTIVES, FloatingLabelModule, SharedDirectivesModule]
|
|
56
|
+
imports: [...KENDO_LABELS],
|
|
57
|
+
exports: [...KENDO_LABELS]
|
|
64
58
|
}]
|
|
65
59
|
}] });
|
|
@@ -21,7 +21,7 @@ export class CustomMessagesComponent extends Messages {
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
CustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
24
|
-
CustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CustomMessagesComponent, selector: "kendo-label-messages, kendo-floatinglabel-messages", providers: [
|
|
24
|
+
CustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CustomMessagesComponent, isStandalone: true, selector: "kendo-label-messages, kendo-floatinglabel-messages", providers: [
|
|
25
25
|
{
|
|
26
26
|
provide: Messages,
|
|
27
27
|
useExisting: forwardRef(() => CustomMessagesComponent)
|
|
@@ -37,6 +37,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
37
37
|
}
|
|
38
38
|
],
|
|
39
39
|
selector: 'kendo-label-messages, kendo-floatinglabel-messages',
|
|
40
|
-
template:
|
|
40
|
+
template: ``,
|
|
41
|
+
standalone: true
|
|
41
42
|
}]
|
|
42
43
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
|
@@ -17,7 +17,7 @@ export class LocalizedMessagesDirective extends Messages {
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
20
|
-
LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, selector: "\n [kendoLabelLocalizedMessages],\n [kendoFloatingLabelLocalizedMessages]\n ", providers: [
|
|
20
|
+
LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, isStandalone: true, selector: "\n [kendoLabelLocalizedMessages],\n [kendoFloatingLabelLocalizedMessages]\n ", providers: [
|
|
21
21
|
{
|
|
22
22
|
provide: Messages,
|
|
23
23
|
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
@@ -35,6 +35,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
35
35
|
selector: `
|
|
36
36
|
[kendoLabelLocalizedMessages],
|
|
37
37
|
[kendoFloatingLabelLocalizedMessages]
|
|
38
|
-
|
|
38
|
+
`,
|
|
39
|
+
standalone: true
|
|
39
40
|
}]
|
|
40
41
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-label',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1721846988,
|
|
13
|
+
version: '16.6.0-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|