@progress/kendo-angular-inputs 9.0.4 → 9.1.0-sig.202208261045

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.
Files changed (38) hide show
  1. package/bundles/kendo-angular-inputs.umd.js +1 -1
  2. package/colorpicker/colorpicker.component.d.ts +1 -1
  3. package/common/utils.d.ts +21 -0
  4. package/esm2015/colorpicker/color-gradient.component.js +2 -2
  5. package/esm2015/colorpicker/color-input.component.js +2 -2
  6. package/esm2015/colorpicker/colorpicker.component.js +2 -2
  7. package/esm2015/colorpicker/contrast-validation.component.js +2 -2
  8. package/esm2015/colorpicker/contrast.component.js +2 -2
  9. package/esm2015/colorpicker/flatcolorpicker-header.component.js +2 -2
  10. package/esm2015/common/utils.js +16 -6
  11. package/esm2015/inputs.module.js +7 -3
  12. package/esm2015/main.js +4 -0
  13. package/esm2015/numerictextbox/numerictextbox.component.js +4 -4
  14. package/esm2015/package-metadata.js +1 -1
  15. package/esm2015/signature/events/close-event.js +10 -0
  16. package/esm2015/signature/events/index.js +6 -0
  17. package/esm2015/signature/events/open-event.js +10 -0
  18. package/esm2015/signature/localization/custom-messages.component.js +40 -0
  19. package/esm2015/signature/localization/index.js +7 -0
  20. package/esm2015/signature/localization/localized-signature-messages.directive.js +36 -0
  21. package/esm2015/signature/localization/messages.js +27 -0
  22. package/esm2015/signature/signature.component.js +767 -0
  23. package/esm2015/signature.module.js +75 -0
  24. package/esm2015/slider/slider.component.js +8 -8
  25. package/esm2015/textbox/textbox.component.js +1 -1
  26. package/fesm2015/kendo-angular-inputs.js +1010 -83
  27. package/inputs.module.d.ts +2 -1
  28. package/main.d.ts +4 -0
  29. package/package.json +7 -4
  30. package/signature/events/close-event.d.ts +10 -0
  31. package/signature/events/index.d.ts +6 -0
  32. package/signature/events/open-event.d.ts +10 -0
  33. package/signature/localization/custom-messages.component.d.ts +17 -0
  34. package/signature/localization/index.d.ts +7 -0
  35. package/signature/localization/localized-signature-messages.directive.d.ts +16 -0
  36. package/signature/localization/messages.d.ts +25 -0
  37. package/signature/signature.component.d.ts +317 -0
  38. package/signature.module.d.ts +47 -0
@@ -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
+ }] });
@@ -407,8 +407,8 @@ SliderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
407
407
  [attr.tabindex]="-1"
408
408
  role="presentation">
409
409
  <span class="k-button-icon k-icon"
410
- [class.k-i-arrow-w]="!vertical"
411
- [class.k-i-arrow-s]="vertical">
410
+ [class.k-i-caret-alt-left]="!vertical"
411
+ [class.k-i-caret-alt-down]="vertical">
412
412
  </span>
413
413
  </button>
414
414
  <div class="k-slider-track-wrap">
@@ -457,8 +457,8 @@ SliderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
457
457
  [attr.aria-label]="currentValue"
458
458
  role="presentation">
459
459
  <span class="k-button-icon k-icon"
460
- [class.k-i-arrow-e]="!vertical"
461
- [class.k-i-arrow-n]="vertical">
460
+ [class.k-i-caret-alt-right]="!vertical"
461
+ [class.k-i-caret-alt-up]="vertical">
462
462
  </span>
463
463
  </button>
464
464
  <kendo-resize-sensor (resize)="sizeComponent(false)"></kendo-resize-sensor>
@@ -496,8 +496,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
496
496
  [attr.tabindex]="-1"
497
497
  role="presentation">
498
498
  <span class="k-button-icon k-icon"
499
- [class.k-i-arrow-w]="!vertical"
500
- [class.k-i-arrow-s]="vertical">
499
+ [class.k-i-caret-alt-left]="!vertical"
500
+ [class.k-i-caret-alt-down]="vertical">
501
501
  </span>
502
502
  </button>
503
503
  <div class="k-slider-track-wrap">
@@ -546,8 +546,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
546
546
  [attr.aria-label]="currentValue"
547
547
  role="presentation">
548
548
  <span class="k-button-icon k-icon"
549
- [class.k-i-arrow-e]="!vertical"
550
- [class.k-i-arrow-n]="vertical">
549
+ [class.k-i-caret-alt-right]="!vertical"
550
+ [class.k-i-caret-alt-up]="vertical">
551
551
  </span>
552
552
  </button>
553
553
  <kendo-resize-sensor (resize)="sizeComponent(false)"></kendo-resize-sensor>
@@ -487,7 +487,7 @@ export class TextBoxComponent {
487
487
  get errorIconClasses() {
488
488
  return this.errorIcon
489
489
  ? `${this.errorIcon}`
490
- : `k-input-validation-icon k-icon k-i-warning`;
490
+ : `k-input-validation-icon k-icon k-i-exclamation-circle`;
491
491
  }
492
492
  /**
493
493
  * @hidden