@progress/kendo-angular-inputs 19.3.0-develop.5 → 19.3.0-develop.7

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,70 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { ElementRef, ChangeDetectorRef, SimpleChanges, OnChanges, AfterContentInit } from '@angular/core';
6
+ import { Orientation } from '../formfield/models/orientation';
7
+ import { ResponsiveFormBreakPoint } from '../common/models/responsive-breakpoints';
8
+ import { Gutters } from '../common/models/gutters';
9
+ import { FormService } from '../common/formservice.service';
10
+ import * as i0 from "@angular/core";
11
+ /**
12
+ * Represents the Kendo UI Form component for Angular.
13
+ *
14
+ * @remarks
15
+ * Supported children components are: {@link FormFieldComponent}, {@link FormSeparatorComponent}, and {@link FormFieldSetComponent}.
16
+ */
17
+ export declare class FormComponent implements AfterContentInit, OnChanges {
18
+ private element;
19
+ private cdr;
20
+ private formService;
21
+ /**
22
+ * Defines the orientation of the form.
23
+ *
24
+ * @default 'vertical'
25
+ */
26
+ orientation: Orientation;
27
+ /**
28
+ * Defines the number of columns in the form.
29
+ * Can be a number or an array of responsive breakpoints.
30
+ */
31
+ cols: number | ResponsiveFormBreakPoint[];
32
+ /**
33
+ * Defines the gutters for the form.
34
+ * You can specify gutters for rows and columns.
35
+ */
36
+ gutters: number | ResponsiveFormBreakPoint[] | Gutters;
37
+ /**
38
+ * @hidden
39
+ */
40
+ columnsClass: string;
41
+ /**
42
+ * @hidden
43
+ */
44
+ rowsGutterClass: string;
45
+ /**
46
+ * @hidden
47
+ */
48
+ colsGutterClass: string;
49
+ /**
50
+ * @hidden
51
+ */
52
+ showLicenseWatermark: boolean;
53
+ formClass: boolean;
54
+ get horizontalClass(): boolean;
55
+ private _formColumnsNumber;
56
+ private _formGutters;
57
+ constructor(element: ElementRef, cdr: ChangeDetectorRef, formService: FormService);
58
+ ngAfterContentInit(): void;
59
+ ngOnChanges(changes: SimpleChanges): void;
60
+ /**
61
+ * @hidden
62
+ */
63
+ onResize(): void;
64
+ private applyColumns;
65
+ private applyGutters;
66
+ private updateColumnClasses;
67
+ private updateGutterClasses;
68
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
69
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "form[kendoForm]", ["kendoForm"], { "orientation": { "alias": "orientation"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "gutters": { "alias": "gutters"; "required": false; }; }, {}, never, ["*"], true, never>;
70
+ }
@@ -0,0 +1,32 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { ElementRef, OnChanges, OnDestroy, Renderer2, SimpleChanges } from '@angular/core';
6
+ import { ResponsiveFormBreakPoint } from '../common/models/responsive-breakpoints';
7
+ import { FormService } from '../common/formservice.service';
8
+ import * as i0 from "@angular/core";
9
+ /**
10
+ * Represents the Kendo UI Form Separator component for Angular.
11
+ */
12
+ export declare class FormSeparatorComponent implements OnChanges, OnDestroy {
13
+ private renderer;
14
+ private hostElement;
15
+ private formService;
16
+ hostClass: boolean;
17
+ /**
18
+ * Defines the colspan for the separator element related to the parent Form component columns.
19
+ * Can be a number or an array of responsive breakpoints.
20
+ */
21
+ colSpan: number | ResponsiveFormBreakPoint[];
22
+ private _formWidth;
23
+ private _colSpanClass;
24
+ private _previousColSpan;
25
+ private subscriptions;
26
+ constructor(renderer: Renderer2, hostElement: ElementRef, formService: FormService);
27
+ ngOnChanges(changes: SimpleChanges): void;
28
+ ngOnDestroy(): void;
29
+ private updateColSpanClass;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormSeparatorComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormSeparatorComponent, "kendo-form-separator", ["kendoFormSeparator"], { "colSpan": { "alias": "colSpan"; "required": false; }; }, {}, never, never, true, never>;
32
+ }
@@ -0,0 +1,57 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Gutters } from '../common/models/gutters';
6
+ import { ResponsiveFormBreakPoint } from '../common/models/responsive-breakpoints';
7
+ /**
8
+ * @hidden
9
+ */
10
+ export declare function innerWidth(element: HTMLElement): number;
11
+ /**
12
+ * @hidden
13
+ */
14
+ export declare function processBreakpoints(breakpoints: ResponsiveFormBreakPoint[], containerWidth: number): number | null;
15
+ /**
16
+ * @hidden
17
+ */
18
+ export declare const calculateColumns: (cols: number | ResponsiveFormBreakPoint[] | undefined, containerWidth: number) => number | null;
19
+ /**
20
+ * @hidden
21
+ *
22
+ * Calculates gutters for rows and columns based on responsive breakpoints or fixed values
23
+ */
24
+ export declare const calculateGutters: (gutters: number | ResponsiveFormBreakPoint[] | Gutters | undefined, containerWidth: number) => {
25
+ cols: number;
26
+ rows: number;
27
+ } | null;
28
+ /**
29
+ * @hidden
30
+ *
31
+ * Calculates column span value based on responsive breakpoints or fixed number
32
+ */
33
+ export declare const calculateColSpan: (colSpan: number | ResponsiveFormBreakPoint[] | undefined, containerWidth: number) => number | null;
34
+ /**
35
+ * @hidden
36
+ *
37
+ * Generates CSS class names for columns
38
+ */
39
+ export declare const generateColumnClass: (columnsNumber: number | null) => string;
40
+ /**
41
+ * @hidden
42
+ *
43
+ * Generates CSS class names for gutters
44
+ */
45
+ export declare const generateGutterClasses: (gutters: {
46
+ cols: number;
47
+ rows: number;
48
+ } | null) => {
49
+ rows: string;
50
+ cols: string;
51
+ };
52
+ /**
53
+ * @hidden
54
+ *
55
+ * Generates CSS class name for column span
56
+ */
57
+ export declare const generateColSpanClass: (colSpan: number | null) => string;
@@ -0,0 +1,36 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 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 "./form/form.component";
7
+ import * as i2 from "./form/formseparator.component";
8
+ import * as i3 from "./formfieldset/formfieldset.component";
9
+ import * as i4 from "./formfield/formfield.component";
10
+ import * as i5 from "./formfield/hint.component";
11
+ import * as i6 from "./formfield/error.component";
12
+ /**
13
+ * Defines the [NgModule](link:site.data.urls.angular['ngmoduleapi']) for the FormField, Error, and Hint components.
14
+ *
15
+ * Use this module to add Form features to your NgModule-based Angular application.
16
+ *
17
+ * @example
18
+ * ```typescript
19
+ * import { FormModule } from '@progress/kendo-angular-inputs';
20
+ * import { NgModule } from '@angular/core';
21
+ * import { BrowserModule } from '@angular/platform-browser';
22
+ * import { AppComponent } from './app.component';
23
+ *
24
+ * @NgModule({
25
+ * declarations: [AppComponent],
26
+ * imports: [BrowserModule, FormModule],
27
+ * bootstrap: [AppComponent]
28
+ * })
29
+ * export class AppModule {}
30
+ * ```
31
+ */
32
+ export declare class FormModule {
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormModule, never>;
34
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FormModule, never, [typeof i1.FormComponent, typeof i2.FormSeparatorComponent, typeof i3.FormFieldSetComponent, typeof i4.FormFieldComponent, typeof i5.HintComponent, typeof i6.ErrorComponent], [typeof i1.FormComponent, typeof i2.FormSeparatorComponent, typeof i3.FormFieldSetComponent, typeof i4.FormFieldComponent, typeof i5.HintComponent, typeof i6.ErrorComponent]>;
35
+ static ɵinj: i0.ɵɵInjectorDeclaration<FormModule>;
36
+ }
@@ -2,13 +2,15 @@
2
2
  * Copyright © 2025 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 { AfterViewInit, ElementRef, Renderer2, QueryList, AfterViewChecked } from '@angular/core';
5
+ import { AfterViewInit, ElementRef, Renderer2, QueryList, AfterViewChecked, SimpleChanges, OnChanges, OnDestroy } from '@angular/core';
6
6
  import { NgControl } from '@angular/forms';
7
7
  import { LocalizationService } from '@progress/kendo-angular-l10n';
8
8
  import { ShowOptions } from './models/show-options';
9
9
  import { ErrorComponent } from './error.component';
10
10
  import { HintComponent } from './hint.component';
11
11
  import { Orientation } from './models/orientation';
12
+ import { FormService } from '../common/formservice.service';
13
+ import { ResponsiveFormBreakPoint } from '../common/models/responsive-breakpoints';
12
14
  import * as i0 from "@angular/core";
13
15
  /**
14
16
  * Represents the Kendo UI FormField component for Angular.
@@ -28,10 +30,11 @@ import * as i0 from "@angular/core";
28
30
  * @remarks
29
31
  * Supported children components are: {@link ErrorComponent}, {@link HintComponent}, {@link TextBoxComponent}, {@link NumericTextBoxComponent}, {@link MaskedTextBoxComponent}, {@link TextAreaComponent}, {@link DatePickerComponent}, {@link DateTimePickerComponent}, {@link DateInputComponent}, {@link OTPInputComponent}.
30
32
  */
31
- export declare class FormFieldComponent implements AfterViewInit, AfterViewChecked {
33
+ export declare class FormFieldComponent implements AfterViewInit, AfterViewChecked, OnChanges, OnDestroy {
32
34
  private renderer;
33
35
  private localizationService;
34
36
  private hostElement;
37
+ private formService;
35
38
  hostClass: boolean;
36
39
  /**
37
40
  * @hidden
@@ -55,6 +58,8 @@ export declare class FormFieldComponent implements AfterViewInit, AfterViewCheck
55
58
  /**
56
59
  * Specifies the layout orientation of the form field.
57
60
  *
61
+ * @hidden
62
+ *
58
63
  * @default 'vertical'
59
64
  */
60
65
  orientation: Orientation;
@@ -66,6 +71,11 @@ export declare class FormFieldComponent implements AfterViewInit, AfterViewCheck
66
71
  * @default 'initial'
67
72
  */
68
73
  showErrors: ShowOptions;
74
+ /**
75
+ * Defines the colspan for the form field.
76
+ * Can be a number or an array of responsive breakpoints.
77
+ */
78
+ colSpan: number | ResponsiveFormBreakPoint[];
69
79
  /**
70
80
  * @hidden
71
81
  */
@@ -81,9 +91,13 @@ export declare class FormFieldComponent implements AfterViewInit, AfterViewCheck
81
91
  private control;
82
92
  private subscriptions;
83
93
  private rtl;
84
- constructor(renderer: Renderer2, localizationService: LocalizationService, hostElement: ElementRef<HTMLElement>);
94
+ private _formWidth;
95
+ private _colSpanClass;
96
+ private _previousColSpan;
97
+ constructor(renderer: Renderer2, localizationService: LocalizationService, hostElement: ElementRef<HTMLElement>, formService: FormService);
85
98
  ngAfterViewInit(): void;
86
99
  ngAfterViewChecked(): void;
100
+ ngOnChanges(changes: SimpleChanges): void;
87
101
  ngOnDestroy(): void;
88
102
  private disabledKendoInput;
89
103
  private disabledControl;
@@ -97,6 +111,7 @@ export declare class FormFieldComponent implements AfterViewInit, AfterViewCheck
97
111
  private showHintsInitial;
98
112
  private showErrorsInitial;
99
113
  private setDescription;
114
+ private updateColSpanClass;
100
115
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
101
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "kendo-formfield", never, { "showHints": { "alias": "showHints"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "showErrors": { "alias": "showErrors"; "required": false; }; }, {}, ["kendoInput", "formControls", "controlElementRefs", "errorChildren", "hintChildren"], ["label, kendo-label", "*", "kendo-formhint", "kendo-formerror"], true, never>;
116
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "kendo-formfield", never, { "showHints": { "alias": "showHints"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "showErrors": { "alias": "showErrors"; "required": false; }; "colSpan": { "alias": "colSpan"; "required": false; }; }, {}, ["kendoInput", "formControls", "controlElementRefs", "errorChildren", "hintChildren"], ["label, kendo-label", "*", "kendo-formhint", "kendo-formerror"], true, never>;
102
117
  }
@@ -0,0 +1,72 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { SimpleChanges, ElementRef, Renderer2, OnInit, OnChanges, ChangeDetectorRef } from '@angular/core';
6
+ import { ResponsiveFormBreakPoint } from '../common/models/responsive-breakpoints';
7
+ import { FormService } from '../common/formservice.service';
8
+ import { Gutters } from '../common/models/gutters';
9
+ import * as i0 from "@angular/core";
10
+ /**
11
+ * Represents the Kendo UI FormFieldSet component for Angular.
12
+ *
13
+ * @remarks
14
+ * Supported children components are: {@link FormFieldComponent} and {@link FormSeparatorComponent}.
15
+ */
16
+ export declare class FormFieldSetComponent implements OnInit, OnChanges {
17
+ private elementRef;
18
+ private renderer;
19
+ private formService;
20
+ private cdr;
21
+ formFieldSetClass: boolean;
22
+ /**
23
+ * Defines the legend for the fieldset.
24
+ */
25
+ legend: string;
26
+ /**
27
+ * Defines the number of columns the fieldset.
28
+ * Can be a number or an array of responsive breakpoints.
29
+ */
30
+ cols: number | ResponsiveFormBreakPoint[];
31
+ /**
32
+ * Defines the gutters for the fieldset.
33
+ * You can specify gutters for rows and columns.
34
+ */
35
+ gutters: number | ResponsiveFormBreakPoint[] | Gutters;
36
+ /**
37
+ * Defines the colspan for the fieldset related to the parent Form component columns.
38
+ * Can be a number or an array of responsive breakpoints.
39
+ */
40
+ colSpan: number | ResponsiveFormBreakPoint[];
41
+ /**
42
+ * @hidden
43
+ */
44
+ columnsClass: string;
45
+ /**
46
+ * @hidden
47
+ */
48
+ rowsGutterClass: string;
49
+ /**
50
+ * @hidden
51
+ */
52
+ colsGutterClass: string;
53
+ private _formColumnsNumber;
54
+ private _colSpanClass;
55
+ private _formWidth;
56
+ private _formGutters;
57
+ private _previousColSpan;
58
+ private _previousCols;
59
+ private _previousGutters;
60
+ private subs;
61
+ constructor(elementRef: ElementRef, renderer: Renderer2, formService: FormService, cdr: ChangeDetectorRef);
62
+ ngOnInit(): void;
63
+ ngOnChanges(changes: SimpleChanges): void;
64
+ ngOnDestroy(): void;
65
+ private applyColumns;
66
+ private applyGutters;
67
+ private updateColumnClasses;
68
+ private updateGutterClasses;
69
+ private updateColSpanClass;
70
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldSetComponent, never>;
71
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldSetComponent, "fieldset[kendoFormFieldSet]", ["kendoFormFieldSet"], { "legend": { "alias": "legend"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "gutters": { "alias": "gutters"; "required": false; }; "colSpan": { "alias": "colSpan"; "required": false; }; }, {}, never, ["*"], true, never>;
72
+ }
package/index.d.ts CHANGED
@@ -43,13 +43,19 @@ export { FlatColorPickerComponent } from './colorpicker/flatcolorpicker.componen
43
43
  export { ColorPickerActionsLayout } from './colorpicker/models/actions-layout';
44
44
  export { CheckBoxDirective } from './checkbox/checkbox.directive';
45
45
  export { RadioButtonDirective } from './radiobutton/radiobutton.directive';
46
+ export { FormComponent } from './form/form.component';
47
+ export { FormSeparatorComponent } from './form/formseparator.component';
48
+ export { FormFieldSetComponent } from './formfieldset/formfieldset.component';
46
49
  export { HintComponent } from './formfield/hint.component';
47
50
  export { ErrorComponent } from './formfield/error.component';
48
51
  export { FormFieldComponent } from './formfield/formfield.component';
49
52
  export { FormFieldModule } from './formfield.module';
53
+ export { FormModule } from './form.module';
50
54
  export { ShowOptions } from './formfield/models/show-options';
51
55
  export { MessageAlign } from './formfield/models/message-align';
52
56
  export { Orientation } from './formfield/models/orientation';
57
+ export { ResponsiveFormBreakPoint } from './common/models/responsive-breakpoints';
58
+ export { Gutters } from './common/models/gutters';
53
59
  export { TextBoxComponent } from './textbox/textbox.component';
54
60
  export { TextBoxPrefixTemplateDirective } from './textbox/textbox-prefix.directive';
55
61
  export { TextBoxSuffixTemplateDirective } from './textbox/textbox-suffix.directive';
@@ -23,27 +23,30 @@ import * as i17 from "./radiobutton/radiobutton.component";
23
23
  import * as i18 from "./radiobutton/radiobutton.directive";
24
24
  import * as i19 from "./switch/switch.component";
25
25
  import * as i20 from "./switch/localization/custom-messages.component";
26
- import * as i21 from "./formfield/formfield.component";
27
- import * as i22 from "./formfield/hint.component";
28
- import * as i23 from "./formfield/error.component";
29
- import * as i24 from "./slider/slider.component";
30
- import * as i25 from "./slider/localization/custom-messages.component";
31
- import * as i26 from "./sliders-common/label-template.directive";
32
- import * as i27 from "./rangeslider/rangeslider.component";
33
- import * as i28 from "./rangeslider/localization/custom-messages.component";
34
- import * as i29 from "./rating/rating.component";
35
- import * as i30 from "./rating/directives/rating-item.directive";
36
- import * as i31 from "./rating/directives/rating-hovered-item.directive";
37
- import * as i32 from "./rating/directives/rating-selected-item.directive";
38
- import * as i33 from "./signature/signature.component";
39
- import * as i34 from "./signature/localization/custom-messages.component";
40
- import * as i35 from "./colorpicker/colorpicker.component";
41
- import * as i36 from "./colorpicker/localization/custom-messages.component";
42
- import * as i37 from "./colorpicker/flatcolorpicker.component";
43
- import * as i38 from "./colorpicker/color-gradient.component";
44
- import * as i39 from "./colorpicker/color-palette.component";
45
- import * as i40 from "./otpinput/otpinput.component";
46
- import * as i41 from "./otpinput/localization/custom-messages.component";
26
+ import * as i21 from "./form/form.component";
27
+ import * as i22 from "./form/formseparator.component";
28
+ import * as i23 from "./formfieldset/formfieldset.component";
29
+ import * as i24 from "./formfield/formfield.component";
30
+ import * as i25 from "./formfield/hint.component";
31
+ import * as i26 from "./formfield/error.component";
32
+ import * as i27 from "./slider/slider.component";
33
+ import * as i28 from "./slider/localization/custom-messages.component";
34
+ import * as i29 from "./sliders-common/label-template.directive";
35
+ import * as i30 from "./rangeslider/rangeslider.component";
36
+ import * as i31 from "./rangeslider/localization/custom-messages.component";
37
+ import * as i32 from "./rating/rating.component";
38
+ import * as i33 from "./rating/directives/rating-item.directive";
39
+ import * as i34 from "./rating/directives/rating-hovered-item.directive";
40
+ import * as i35 from "./rating/directives/rating-selected-item.directive";
41
+ import * as i36 from "./signature/signature.component";
42
+ import * as i37 from "./signature/localization/custom-messages.component";
43
+ import * as i38 from "./colorpicker/colorpicker.component";
44
+ import * as i39 from "./colorpicker/localization/custom-messages.component";
45
+ import * as i40 from "./colorpicker/flatcolorpicker.component";
46
+ import * as i41 from "./colorpicker/color-gradient.component";
47
+ import * as i42 from "./colorpicker/color-palette.component";
48
+ import * as i43 from "./otpinput/otpinput.component";
49
+ import * as i44 from "./otpinput/localization/custom-messages.component";
47
50
  /**
48
51
  * Defines the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) for the Inputs components.
49
52
  *
@@ -66,6 +69,6 @@ import * as i41 from "./otpinput/localization/custom-messages.component";
66
69
  */
67
70
  export declare class InputsModule {
68
71
  static ɵfac: i0.ɵɵFactoryDeclaration<InputsModule, never>;
69
- static ɵmod: i0.ɵɵNgModuleDeclaration<InputsModule, never, [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i8.NumericTextBoxComponent, typeof i9.NumericTextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i10.MaskedTextBoxComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i11.TextAreaComponent, typeof i12.TextAreaDirective, typeof i13.TextAreaPrefixComponent, typeof i14.TextAreaSuffixComponent, typeof i7.SeparatorComponent, typeof i15.CheckBoxComponent, typeof i16.CheckBoxDirective, typeof i17.RadioButtonComponent, typeof i18.RadioButtonDirective, typeof i19.SwitchComponent, typeof i20.SwitchCustomMessagesComponent, typeof i21.FormFieldComponent, typeof i22.HintComponent, typeof i23.ErrorComponent, typeof i24.SliderComponent, typeof i25.SliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i27.RangeSliderComponent, typeof i28.RangeSliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i29.RatingComponent, typeof i30.RatingItemTemplateDirective, typeof i31.RatingHoveredItemTemplateDirective, typeof i32.RatingSelectedItemTemplateDirective, typeof i33.SignatureComponent, typeof i34.SignatureCustomMessagesComponent, typeof i35.ColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i37.FlatColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i38.ColorGradientComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i39.ColorPaletteComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i40.OTPInputComponent, typeof i41.OTPInputCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent], [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i8.NumericTextBoxComponent, typeof i9.NumericTextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i10.MaskedTextBoxComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i11.TextAreaComponent, typeof i12.TextAreaDirective, typeof i13.TextAreaPrefixComponent, typeof i14.TextAreaSuffixComponent, typeof i7.SeparatorComponent, typeof i15.CheckBoxComponent, typeof i16.CheckBoxDirective, typeof i17.RadioButtonComponent, typeof i18.RadioButtonDirective, typeof i19.SwitchComponent, typeof i20.SwitchCustomMessagesComponent, typeof i21.FormFieldComponent, typeof i22.HintComponent, typeof i23.ErrorComponent, typeof i24.SliderComponent, typeof i25.SliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i27.RangeSliderComponent, typeof i28.RangeSliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i29.RatingComponent, typeof i30.RatingItemTemplateDirective, typeof i31.RatingHoveredItemTemplateDirective, typeof i32.RatingSelectedItemTemplateDirective, typeof i33.SignatureComponent, typeof i34.SignatureCustomMessagesComponent, typeof i35.ColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i37.FlatColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i38.ColorGradientComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i39.ColorPaletteComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i40.OTPInputComponent, typeof i41.OTPInputCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent]>;
72
+ static ɵmod: i0.ɵɵNgModuleDeclaration<InputsModule, never, [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i8.NumericTextBoxComponent, typeof i9.NumericTextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i10.MaskedTextBoxComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i11.TextAreaComponent, typeof i12.TextAreaDirective, typeof i13.TextAreaPrefixComponent, typeof i14.TextAreaSuffixComponent, typeof i7.SeparatorComponent, typeof i15.CheckBoxComponent, typeof i16.CheckBoxDirective, typeof i17.RadioButtonComponent, typeof i18.RadioButtonDirective, typeof i19.SwitchComponent, typeof i20.SwitchCustomMessagesComponent, typeof i21.FormComponent, typeof i22.FormSeparatorComponent, typeof i23.FormFieldSetComponent, typeof i24.FormFieldComponent, typeof i25.HintComponent, typeof i26.ErrorComponent, typeof i24.FormFieldComponent, typeof i25.HintComponent, typeof i26.ErrorComponent, typeof i27.SliderComponent, typeof i28.SliderCustomMessagesComponent, typeof i29.LabelTemplateDirective, typeof i30.RangeSliderComponent, typeof i31.RangeSliderCustomMessagesComponent, typeof i29.LabelTemplateDirective, typeof i32.RatingComponent, typeof i33.RatingItemTemplateDirective, typeof i34.RatingHoveredItemTemplateDirective, typeof i35.RatingSelectedItemTemplateDirective, typeof i36.SignatureComponent, typeof i37.SignatureCustomMessagesComponent, typeof i38.ColorPickerComponent, typeof i39.ColorPickerCustomMessagesComponent, typeof i40.FlatColorPickerComponent, typeof i39.ColorPickerCustomMessagesComponent, typeof i41.ColorGradientComponent, typeof i39.ColorPickerCustomMessagesComponent, typeof i42.ColorPaletteComponent, typeof i39.ColorPickerCustomMessagesComponent, typeof i43.OTPInputComponent, typeof i44.OTPInputCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent], [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i8.NumericTextBoxComponent, typeof i9.NumericTextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i10.MaskedTextBoxComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i11.TextAreaComponent, typeof i12.TextAreaDirective, typeof i13.TextAreaPrefixComponent, typeof i14.TextAreaSuffixComponent, typeof i7.SeparatorComponent, typeof i15.CheckBoxComponent, typeof i16.CheckBoxDirective, typeof i17.RadioButtonComponent, typeof i18.RadioButtonDirective, typeof i19.SwitchComponent, typeof i20.SwitchCustomMessagesComponent, typeof i21.FormComponent, typeof i22.FormSeparatorComponent, typeof i23.FormFieldSetComponent, typeof i24.FormFieldComponent, typeof i25.HintComponent, typeof i26.ErrorComponent, typeof i24.FormFieldComponent, typeof i25.HintComponent, typeof i26.ErrorComponent, typeof i27.SliderComponent, typeof i28.SliderCustomMessagesComponent, typeof i29.LabelTemplateDirective, typeof i30.RangeSliderComponent, typeof i31.RangeSliderCustomMessagesComponent, typeof i29.LabelTemplateDirective, typeof i32.RatingComponent, typeof i33.RatingItemTemplateDirective, typeof i34.RatingHoveredItemTemplateDirective, typeof i35.RatingSelectedItemTemplateDirective, typeof i36.SignatureComponent, typeof i37.SignatureCustomMessagesComponent, typeof i38.ColorPickerComponent, typeof i39.ColorPickerCustomMessagesComponent, typeof i40.FlatColorPickerComponent, typeof i39.ColorPickerCustomMessagesComponent, typeof i41.ColorGradientComponent, typeof i39.ColorPickerCustomMessagesComponent, typeof i42.ColorPaletteComponent, typeof i39.ColorPickerCustomMessagesComponent, typeof i43.OTPInputComponent, typeof i44.OTPInputCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent]>;
70
73
  static ɵinj: i0.ɵɵInjectorDeclaration<InputsModule>;
71
74
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "19.3.0-develop.5",
3
+ "version": "19.3.0-develop.7",
4
4
  "description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -28,7 +28,7 @@
28
28
  "package": {
29
29
  "productName": "Kendo UI for Angular",
30
30
  "productCode": "KENDOUIANGULAR",
31
- "publishDate": 1752072250,
31
+ "publishDate": 1752220205,
32
32
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
33
33
  }
34
34
  },
@@ -40,20 +40,20 @@
40
40
  "@angular/platform-browser": "16 - 20",
41
41
  "@progress/kendo-drawing": "^1.21.0",
42
42
  "@progress/kendo-licensing": "^1.5.0",
43
- "@progress/kendo-angular-buttons": "19.3.0-develop.5",
44
- "@progress/kendo-angular-common": "19.3.0-develop.5",
45
- "@progress/kendo-angular-utils": "19.3.0-develop.5",
46
- "@progress/kendo-angular-navigation": "19.3.0-develop.5",
47
- "@progress/kendo-angular-dialog": "19.3.0-develop.5",
48
- "@progress/kendo-angular-intl": "19.3.0-develop.5",
49
- "@progress/kendo-angular-l10n": "19.3.0-develop.5",
50
- "@progress/kendo-angular-popup": "19.3.0-develop.5",
51
- "@progress/kendo-angular-icons": "19.3.0-develop.5",
43
+ "@progress/kendo-angular-buttons": "19.3.0-develop.7",
44
+ "@progress/kendo-angular-common": "19.3.0-develop.7",
45
+ "@progress/kendo-angular-utils": "19.3.0-develop.7",
46
+ "@progress/kendo-angular-navigation": "19.3.0-develop.7",
47
+ "@progress/kendo-angular-dialog": "19.3.0-develop.7",
48
+ "@progress/kendo-angular-intl": "19.3.0-develop.7",
49
+ "@progress/kendo-angular-l10n": "19.3.0-develop.7",
50
+ "@progress/kendo-angular-popup": "19.3.0-develop.7",
51
+ "@progress/kendo-angular-icons": "19.3.0-develop.7",
52
52
  "rxjs": "^6.5.3 || ^7.0.0"
53
53
  },
54
54
  "dependencies": {
55
55
  "tslib": "^2.3.1",
56
- "@progress/kendo-angular-schematics": "19.3.0-develop.5",
56
+ "@progress/kendo-angular-schematics": "19.3.0-develop.7",
57
57
  "@progress/kendo-common": "^1.0.1",
58
58
  "@progress/kendo-draggable": "^3.0.0",
59
59
  "@progress/kendo-inputs-common": "^3.1.0"