@progress/kendo-angular-inputs 9.0.5-dev.202208101035 → 9.1.0-sig.202208231615

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.
@@ -0,0 +1,64 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { CommonModule } from '@angular/common';
6
+ import { NgModule } from '@angular/core';
7
+ import { DialogsModule } from '@progress/kendo-angular-dialog';
8
+ import { LocalizedSignatureMessagesDirective, SignatureCustomMessagesComponent } from './signature/localization';
9
+ import { SignatureComponent } from './signature/signature.component';
10
+ import * as i0 from "@angular/core";
11
+ /**
12
+ * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
13
+ * definition for the MaskedTextBox component.
14
+ *
15
+ * @example
16
+ *
17
+ * ```ts-no-run
18
+ * // Import the MaskedTextBox module
19
+ * import { MaskedTextBoxModule } from '@progress/kendo-angular-inputs';
20
+ *
21
+ * // The browser platform with a compiler
22
+ * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
23
+ *
24
+ * import { NgModule } from '@angular/core';
25
+ *
26
+ * // Import the app component
27
+ * import { AppComponent } from './app.component';
28
+ *
29
+ * // Define the app module
30
+ * _@NgModule({
31
+ * declarations: [AppComponent], // declare app component
32
+ * imports: [BrowserModule, MaskedTextBoxModule], // import MaskedTextBox module
33
+ * bootstrap: [AppComponent]
34
+ * })
35
+ * export class AppModule {}
36
+ *
37
+ * // Compile and launch the module
38
+ * platformBrowserDynamic().bootstrapModule(AppModule);
39
+ *
40
+ * ```
41
+ */
42
+ export class SignatureModule {
43
+ }
44
+ SignatureModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SignatureModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
45
+ SignatureModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SignatureModule, declarations: [SignatureComponent,
46
+ SignatureCustomMessagesComponent,
47
+ LocalizedSignatureMessagesDirective], imports: [CommonModule, DialogsModule], exports: [SignatureComponent,
48
+ SignatureCustomMessagesComponent] });
49
+ SignatureModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SignatureModule, imports: [[CommonModule, DialogsModule]] });
50
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SignatureModule, decorators: [{
51
+ type: NgModule,
52
+ args: [{
53
+ declarations: [
54
+ SignatureComponent,
55
+ SignatureCustomMessagesComponent,
56
+ LocalizedSignatureMessagesDirective
57
+ ],
58
+ exports: [
59
+ SignatureComponent,
60
+ SignatureCustomMessagesComponent
61
+ ],
62
+ imports: [CommonModule, DialogsModule]
63
+ }]
64
+ }] });