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

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,75 @@
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 { ButtonModule } from '@progress/kendo-angular-buttons';
8
+ import { DialogsModule } from '@progress/kendo-angular-dialog';
9
+ import { LocalizedSignatureMessagesDirective, SignatureCustomMessagesComponent } from './signature/localization';
10
+ import { SignatureComponent } from './signature/signature.component';
11
+ import * as i0 from "@angular/core";
12
+ /**
13
+ * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
14
+ * definition for the MaskedTextBox component.
15
+ *
16
+ * @example
17
+ *
18
+ * ```ts-no-run
19
+ * // Import the MaskedTextBox module
20
+ * import { MaskedTextBoxModule } from '@progress/kendo-angular-inputs';
21
+ *
22
+ * // The browser platform with a compiler
23
+ * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
24
+ *
25
+ * import { NgModule } from '@angular/core';
26
+ *
27
+ * // Import the app component
28
+ * import { AppComponent } from './app.component';
29
+ *
30
+ * // Define the app module
31
+ * _@NgModule({
32
+ * declarations: [AppComponent], // declare app component
33
+ * imports: [BrowserModule, MaskedTextBoxModule], // import MaskedTextBox module
34
+ * bootstrap: [AppComponent]
35
+ * })
36
+ * export class AppModule {}
37
+ *
38
+ * // Compile and launch the module
39
+ * platformBrowserDynamic().bootstrapModule(AppModule);
40
+ *
41
+ * ```
42
+ */
43
+ export class SignatureModule {
44
+ }
45
+ SignatureModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SignatureModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
46
+ SignatureModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SignatureModule, declarations: [SignatureComponent,
47
+ SignatureCustomMessagesComponent,
48
+ LocalizedSignatureMessagesDirective], imports: [ButtonModule,
49
+ CommonModule,
50
+ DialogsModule], exports: [SignatureComponent,
51
+ SignatureCustomMessagesComponent] });
52
+ SignatureModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SignatureModule, imports: [[
53
+ ButtonModule,
54
+ CommonModule,
55
+ DialogsModule
56
+ ]] });
57
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SignatureModule, decorators: [{
58
+ type: NgModule,
59
+ args: [{
60
+ declarations: [
61
+ SignatureComponent,
62
+ SignatureCustomMessagesComponent,
63
+ LocalizedSignatureMessagesDirective
64
+ ],
65
+ exports: [
66
+ SignatureComponent,
67
+ SignatureCustomMessagesComponent
68
+ ],
69
+ imports: [
70
+ ButtonModule,
71
+ CommonModule,
72
+ DialogsModule
73
+ ]
74
+ }]
75
+ }] });