@progress/kendo-angular-label 16.5.0 → 16.6.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.
- package/NOTICE.txt +12 -19
- 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 +19 -7
- 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 +184 -173
- package/fesm2020/progress-kendo-angular-label.mjs +184 -173
- 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 +4 -2
- 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
|
@@ -1,29 +0,0 @@
|
|
|
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 { NgModule } from '@angular/core';
|
|
6
|
-
import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
|
|
7
|
-
import { CustomMessagesComponent } from './localization/custom-messages.component';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
const SHARED_DIRECTIVES = [
|
|
10
|
-
LocalizedMessagesDirective,
|
|
11
|
-
CustomMessagesComponent
|
|
12
|
-
];
|
|
13
|
-
/**
|
|
14
|
-
* @hidden
|
|
15
|
-
*/
|
|
16
|
-
export class SharedDirectivesModule {
|
|
17
|
-
}
|
|
18
|
-
SharedDirectivesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedDirectivesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
19
|
-
SharedDirectivesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedDirectivesModule, declarations: [LocalizedMessagesDirective,
|
|
20
|
-
CustomMessagesComponent], exports: [LocalizedMessagesDirective,
|
|
21
|
-
CustomMessagesComponent] });
|
|
22
|
-
SharedDirectivesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedDirectivesModule });
|
|
23
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedDirectivesModule, decorators: [{
|
|
24
|
-
type: NgModule,
|
|
25
|
-
args: [{
|
|
26
|
-
declarations: [SHARED_DIRECTIVES],
|
|
27
|
-
exports: [SHARED_DIRECTIVES]
|
|
28
|
-
}]
|
|
29
|
-
}] });
|
package/shared.module.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
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 * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./localization/localized-messages.directive";
|
|
7
|
-
import * as i2 from "./localization/custom-messages.component";
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*/
|
|
11
|
-
export declare class SharedDirectivesModule {
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SharedDirectivesModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedDirectivesModule, [typeof i1.LocalizedMessagesDirective, typeof i2.CustomMessagesComponent], never, [typeof i1.LocalizedMessagesDirective, typeof i2.CustomMessagesComponent]>;
|
|
14
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SharedDirectivesModule>;
|
|
15
|
-
}
|