@progress/kendo-angular-inputs 17.0.0-develop.9 → 17.0.1-develop.1
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/checkbox/checkbox.component.d.ts +1 -1
- package/checkbox/checkbox.directive.d.ts +1 -1
- package/checkbox/checked-state.d.ts +1 -1
- package/colorpicker/color-contrast-svg.component.d.ts +1 -1
- package/colorpicker/color-gradient-numeric-label.directive.d.ts +1 -1
- package/colorpicker/color-gradient.component.d.ts +1 -1
- package/colorpicker/color-input.component.d.ts +1 -1
- package/colorpicker/color-palette.component.d.ts +1 -1
- package/colorpicker/colorpicker.component.d.ts +1 -1
- package/colorpicker/contrast-validation.component.d.ts +1 -1
- package/colorpicker/contrast.component.d.ts +1 -1
- package/colorpicker/flatcolorpicker-actions.component.d.ts +1 -1
- package/colorpicker/flatcolorpicker-header.component.d.ts +1 -1
- package/colorpicker/flatcolorpicker.component.d.ts +1 -1
- package/colorpicker/localization/messages.d.ts +1 -1
- package/colorpicker/models/actions-layout.d.ts +1 -1
- package/colorpicker/models/colorpicker-view.d.ts +1 -1
- package/colorpicker/models/output-format.d.ts +1 -1
- package/common/models/fillmode.d.ts +1 -1
- package/common/models/rounded.d.ts +2 -2
- package/common/models/size.d.ts +1 -1
- package/common/models/type.d.ts +1 -1
- package/common/radio-checkbox.base.d.ts +1 -1
- package/common/utils.d.ts +1 -1
- package/{esm2020 → esm2022}/checkbox/checkbox.component.mjs +49 -44
- package/{esm2020 → esm2022}/checkbox/checkbox.directive.mjs +12 -10
- package/{esm2020 → esm2022}/checkbox.module.mjs +4 -4
- package/{esm2020 → esm2022}/colorpicker/color-contrast-svg.component.mjs +13 -7
- package/{esm2020 → esm2022}/colorpicker/color-gradient-numeric-label.directive.mjs +6 -3
- package/{esm2020 → esm2022}/colorpicker/color-gradient.component.mjs +142 -125
- package/{esm2020 → esm2022}/colorpicker/color-input.component.mjs +69 -49
- package/{esm2020 → esm2022}/colorpicker/color-palette.component.mjs +129 -98
- package/{esm2020 → esm2022}/colorpicker/colorpicker.component.mjs +211 -158
- package/{esm2020 → esm2022}/colorpicker/contrast-validation.component.mjs +10 -6
- package/{esm2020 → esm2022}/colorpicker/contrast.component.mjs +9 -6
- package/{esm2020 → esm2022}/colorpicker/events/active-color-click-event.mjs +2 -1
- package/{esm2020 → esm2022}/colorpicker/events/cancel-event.mjs +4 -0
- package/{esm2020 → esm2022}/colorpicker/flatcolorpicker-actions.component.mjs +11 -8
- package/{esm2020 → esm2022}/colorpicker/flatcolorpicker-header.component.mjs +23 -13
- package/{esm2020 → esm2022}/colorpicker/flatcolorpicker.component.mjs +155 -127
- package/{esm2020 → esm2022}/colorpicker/localization/colorgradient-localization.service.mjs +4 -3
- package/{esm2020 → esm2022}/colorpicker/localization/colorpalette-localization.service.mjs +4 -3
- package/{esm2020 → esm2022}/colorpicker/localization/colorpicker-localization.service.mjs +3 -3
- package/{esm2020 → esm2022}/colorpicker/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/colorpicker/localization/flatcolorpicker-localization.service.mjs +4 -3
- package/{esm2020 → esm2022}/colorpicker/localization/localized-colorpicker-messages.directive.mjs +9 -8
- package/esm2022/colorpicker/localization/messages.mjs +183 -0
- package/{esm2020 → esm2022}/colorpicker/services/color-palette.service.mjs +4 -6
- package/{esm2020 → esm2022}/colorpicker/services/flatcolorpicker.service.mjs +3 -3
- package/{esm2020 → esm2022}/colorpicker.module.mjs +4 -4
- package/{esm2020 → esm2022}/common/radio-checkbox.base.mjs +80 -56
- package/{esm2020 → esm2022}/formfield/error.component.mjs +18 -20
- package/{esm2020 → esm2022}/formfield/formfield.component.mjs +67 -55
- package/{esm2020 → esm2022}/formfield/hint.component.mjs +17 -19
- package/{esm2020 → esm2022}/formfield.module.mjs +4 -4
- package/{esm2020 → esm2022}/index.mjs +0 -1
- package/esm2022/inputs.module.mjs +96 -0
- package/{esm2020 → esm2022}/maskedtextbox/maskedtextbox.component.mjs +263 -223
- package/{esm2020 → esm2022}/maskedtextbox/masking.service.mjs +12 -14
- package/{esm2020 → esm2022}/maskedtextbox/parsing/parsers.mjs +1 -0
- package/{esm2020 → esm2022}/maskedtextbox/parsing/result.mjs +3 -0
- package/{esm2020 → esm2022}/maskedtextbox/parsing/stream.mjs +4 -2
- package/{esm2020 → esm2022}/maskedtextbox.module.mjs +7 -7
- package/{esm2020 → esm2022}/numerictextbox/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/numerictextbox/localization/localized-numerictextbox-messages.directive.mjs +9 -8
- package/{esm2020 → esm2022}/numerictextbox/localization/messages.mjs +11 -3
- package/{esm2020 → esm2022}/numerictextbox/numerictextbox.component.mjs +367 -319
- package/{esm2020 → esm2022}/numerictextbox.module.mjs +7 -7
- package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
- package/{esm2020 → esm2022}/radiobutton/radiobutton.component.mjs +58 -51
- package/{esm2020 → esm2022}/radiobutton/radiobutton.directive.mjs +12 -10
- package/{esm2020 → esm2022}/radiobutton.module.mjs +4 -4
- package/{esm2020 → esm2022}/rangeslider/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/rangeslider/localization/localized-rangeslider-messages.directive.mjs +9 -8
- package/{esm2020 → esm2022}/rangeslider/localization/messages.mjs +11 -3
- package/{esm2020 → esm2022}/rangeslider/rangeslider-model.mjs +2 -0
- package/{esm2020 → esm2022}/rangeslider/rangeslider.component.mjs +117 -101
- package/{esm2020 → esm2022}/rangeslider.module.mjs +4 -4
- package/{esm2020 → esm2022}/rating/directives/rating-hovered-item.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rating/directives/rating-item.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rating/directives/rating-selected-item.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rating/rating.component.mjs +96 -76
- package/{esm2020 → esm2022}/rating.module.mjs +4 -4
- package/{esm2020 → esm2022}/shared/input-separator.component.mjs +10 -12
- package/{esm2020 → esm2022}/shared/shared-events.directive.mjs +13 -7
- package/{esm2020 → esm2022}/shared/textarea.directive.mjs +66 -52
- package/{esm2020 → esm2022}/signature/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/signature/localization/localized-signature-messages.directive.mjs +9 -8
- package/{esm2020 → esm2022}/signature/localization/messages.mjs +19 -3
- package/{esm2020 → esm2022}/signature/signature.component.mjs +205 -151
- package/{esm2020 → esm2022}/signature.module.mjs +4 -4
- package/{esm2020 → esm2022}/slider/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/slider/localization/localized-slider-messages.directive.mjs +9 -8
- package/{esm2020 → esm2022}/slider/localization/messages.mjs +15 -3
- package/{esm2020 → esm2022}/slider/slider-model.mjs +1 -0
- package/{esm2020 → esm2022}/slider/slider.component.mjs +121 -99
- package/{esm2020 → esm2022}/slider.module.mjs +4 -4
- package/{esm2020 → esm2022}/sliders-common/label-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/sliders-common/slider-base.mjs +112 -90
- package/{esm2020 → esm2022}/sliders-common/slider-model.base.mjs +6 -0
- package/{esm2020 → esm2022}/sliders-common/slider-ticks.component.mjs +19 -11
- package/{esm2020 → esm2022}/switch/events/blur-event.mjs +4 -0
- package/{esm2020 → esm2022}/switch/events/focus-event.mjs +4 -0
- package/{esm2020 → esm2022}/switch/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/switch/localization/localized-switch-messages.directive.mjs +9 -8
- package/{esm2020 → esm2022}/switch/localization/messages.mjs +11 -3
- package/{esm2020 → esm2022}/switch/switch.component.mjs +125 -106
- package/{esm2020 → esm2022}/switch.module.mjs +4 -4
- package/esm2022/text-fields-common/text-fields-base.mjs +150 -0
- package/{esm2020 → esm2022}/textarea/textarea-prefix.component.mjs +12 -14
- package/{esm2020 → esm2022}/textarea/textarea-suffix.component.mjs +12 -14
- package/{esm2020 → esm2022}/textarea/textarea.component.mjs +173 -144
- package/{esm2020 → esm2022}/textarea.module.mjs +7 -7
- package/{esm2020 → esm2022}/textbox/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/textbox/localization/localized-textbox-messages.directive.mjs +9 -8
- package/{esm2020 → esm2022}/textbox/localization/messages.mjs +7 -3
- package/{esm2020 → esm2022}/textbox/textbox-prefix.directive.mjs +8 -7
- package/{esm2020 → esm2022}/textbox/textbox-suffix.directive.mjs +8 -7
- package/{esm2020 → esm2022}/textbox/textbox.component.mjs +286 -204
- package/{esm2020 → esm2022}/textbox/textbox.directive.mjs +36 -33
- package/{esm2020 → esm2022}/textbox.module.mjs +7 -7
- package/{fesm2020 → fesm2022}/progress-kendo-angular-inputs.mjs +3718 -2910
- package/formfield/error.component.d.ts +1 -1
- package/formfield/formfield.component.d.ts +1 -1
- package/formfield/hint.component.d.ts +1 -1
- package/formfield/models/message-align.d.ts +1 -1
- package/formfield/models/orientation.d.ts +1 -1
- package/formfield/models/show-options.d.ts +1 -1
- package/index.d.ts +0 -1
- package/inputs.module.d.ts +1 -1
- package/maskedtextbox/maskedtextbox.component.d.ts +1 -1
- package/maskedtextbox.module.d.ts +1 -1
- package/numerictextbox/localization/messages.d.ts +1 -1
- package/numerictextbox/numerictextbox.component.d.ts +1 -1
- package/numerictextbox.module.d.ts +1 -1
- package/package.json +20 -26
- package/radiobutton/radiobutton.component.d.ts +1 -1
- package/radiobutton/radiobutton.directive.d.ts +1 -1
- package/rangeslider/localization/messages.d.ts +1 -1
- package/rangeslider/rangeslider-model.d.ts +0 -1
- package/rangeslider/rangeslider-value.type.d.ts +1 -1
- package/rangeslider/rangeslider.component.d.ts +1 -1
- package/rating/models/precision.d.ts +1 -1
- package/rating/models/selection.d.ts +1 -1
- package/rating/rating.component.d.ts +1 -1
- package/schematics/ngAdd/index.js +1 -1
- package/shared/input-separator.component.d.ts +1 -1
- package/shared/shared-events.directive.d.ts +1 -1
- package/shared/textarea.directive.d.ts +1 -1
- package/signature/localization/messages.d.ts +1 -1
- package/signature/signature.component.d.ts +1 -1
- package/slider/localization/messages.d.ts +1 -1
- package/slider/slider-model.d.ts +0 -1
- package/slider/slider.component.d.ts +1 -1
- package/sliders-common/slider-base.d.ts +1 -1
- package/sliders-common/slider-ticks.component.d.ts +1 -1
- package/sliders-common/title-callback.d.ts +1 -1
- package/switch/localization/messages.d.ts +1 -1
- package/switch/switch.component.d.ts +1 -1
- package/text-fields-common/text-fields-base.d.ts +1 -1
- package/textarea/models/adornments-orientation.d.ts +1 -1
- package/textarea/models/flow.d.ts +1 -1
- package/textarea/models/resize.d.ts +1 -1
- package/textarea/textarea-prefix.component.d.ts +1 -1
- package/textarea/textarea-suffix.component.d.ts +1 -1
- package/textarea/textarea.component.d.ts +1 -1
- package/textarea.module.d.ts +1 -1
- package/textbox/localization/messages.d.ts +1 -1
- package/textbox/models/icon-show-options.d.ts +1 -1
- package/textbox/textbox-prefix.directive.d.ts +1 -1
- package/textbox/textbox-suffix.directive.d.ts +1 -1
- package/textbox/textbox.component.d.ts +1 -1
- package/textbox/textbox.directive.d.ts +1 -1
- package/textbox.module.d.ts +1 -1
- package/esm2020/colorpicker/localization/messages.mjs +0 -75
- package/esm2020/inputs.module.mjs +0 -96
- package/esm2020/shared.module.mjs +0 -32
- package/esm2020/text-fields-common/text-fields-base.mjs +0 -131
- package/fesm2015/progress-kendo-angular-inputs.mjs +0 -17268
- package/shared.module.d.ts +0 -19
- /package/{esm2020 → esm2022}/checkbox/checked-state.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/constants.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/events/close-event.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/events/kendo-drag-event.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/events/open-event.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/events.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/actions-layout.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/colorpicker-view.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/gradient-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/hsva.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/output-format.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/palette-presets.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/palette-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/popup-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/rgb.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/rgba.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/table-cell.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models/tile-size.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/models.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/utils/color-parser.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/utils/contrast-curve.mjs +0 -0
- /package/{esm2020 → esm2022}/colorpicker/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/common/dom-utils.mjs +0 -0
- /package/{esm2020 → esm2022}/common/math.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/fillmode.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/rounded.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/size.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/styling-classes.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/type.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models.mjs +0 -0
- /package/{esm2020 → esm2022}/common/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/directives.mjs +0 -0
- /package/{esm2020 → esm2022}/formfield/models/message-align.mjs +0 -0
- /package/{esm2020 → esm2022}/formfield/models/orientation.mjs +0 -0
- /package/{esm2020 → esm2022}/formfield/models/show-options.mjs +0 -0
- /package/{esm2020 → esm2022}/maskedtextbox/parsing/combinators.mjs +0 -0
- /package/{esm2020 → esm2022}/numerictextbox/arrow-direction.mjs +0 -0
- /package/{esm2020 → esm2022}/numerictextbox/constants.mjs +0 -0
- /package/{esm2020 → esm2022}/numerictextbox/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-kendo-angular-inputs.mjs +0 -0
- /package/{esm2020 → esm2022}/rangeslider/rangeslider-value.type.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/models/precision.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/models/rating-item.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/models/selection.mjs +0 -0
- /package/{esm2020 → esm2022}/shared/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/signature/events/close-event.mjs +0 -0
- /package/{esm2020 → esm2022}/signature/events/index.mjs +0 -0
- /package/{esm2020 → esm2022}/signature/events/open-event.mjs +0 -0
- /package/{esm2020 → esm2022}/signature/localization/index.mjs +0 -0
- /package/{esm2020 → esm2022}/sliders-common/sliders-util.mjs +0 -0
- /package/{esm2020 → esm2022}/sliders-common/title-callback.mjs +0 -0
- /package/{esm2020 → esm2022}/textarea/models/adornments-orientation.mjs +0 -0
- /package/{esm2020 → esm2022}/textarea/models/flow.mjs +0 -0
- /package/{esm2020 → esm2022}/textarea/models/resize.mjs +0 -0
- /package/{esm2020 → esm2022}/textbox/models/icon-show-options.mjs +0 -0
- /package/{esm2020 → esm2022}/validators/max.validator.mjs +0 -0
- /package/{esm2020 → esm2022}/validators/min.validator.mjs +0 -0
|
@@ -27,5 +27,5 @@ export declare class ErrorComponent {
|
|
|
27
27
|
get endClass(): boolean;
|
|
28
28
|
get idAttribute(): string;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "kendo-formerror", never, { "align": "align"; }, {}, never, ["*"], true, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "kendo-formerror", never, { "align": { "alias": "align"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
31
31
|
}
|
|
@@ -94,5 +94,5 @@ export declare class FormFieldComponent implements AfterViewInit, AfterViewCheck
|
|
|
94
94
|
private showErrorsInitial;
|
|
95
95
|
private setDescription;
|
|
96
96
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
97
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "kendo-formfield", never, { "showHints": "showHints"; "orientation": "orientation"; "showErrors": "showErrors"; }, {}, ["kendoInput", "formControls", "controlElementRefs", "errorChildren", "hintChildren"], ["label, kendo-label", "*", "kendo-formhint", "kendo-formerror"], true, never>;
|
|
97
|
+
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>;
|
|
98
98
|
}
|
|
@@ -25,5 +25,5 @@ export declare class HintComponent {
|
|
|
25
25
|
get endClass(): boolean;
|
|
26
26
|
get idAttribute(): string;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<HintComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HintComponent, "kendo-formhint", never, { "align": "align"; }, {}, never, ["*"], true, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HintComponent, "kendo-formhint", never, { "align": { "alias": "align"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
29
29
|
}
|
package/index.d.ts
CHANGED
|
@@ -62,7 +62,6 @@ export { TextAreaPrefixComponent } from './textarea/textarea-prefix.component';
|
|
|
62
62
|
export { TextAreaSuffixComponent } from './textarea/textarea-suffix.component';
|
|
63
63
|
export { TextAreaAdornmentsOrientation } from './textarea/models/adornments-orientation';
|
|
64
64
|
export { InputSeparatorComponent } from './shared/input-separator.component';
|
|
65
|
-
export { SharedModule } from './shared.module';
|
|
66
65
|
export { PrefixTemplateDirective } from '@progress/kendo-angular-common';
|
|
67
66
|
export { SuffixTemplateDirective } from '@progress/kendo-angular-common';
|
|
68
67
|
export { SeparatorComponent } from '@progress/kendo-angular-common';
|
package/inputs.module.d.ts
CHANGED
|
@@ -76,6 +76,6 @@ import * as i39 from "./colorpicker/color-palette.component";
|
|
|
76
76
|
*/
|
|
77
77
|
export declare class InputsModule {
|
|
78
78
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputsModule, never>;
|
|
79
|
-
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 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 i7.
|
|
79
|
+
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 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 i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent]>;
|
|
80
80
|
static ɵinj: i0.ɵɵInjectorDeclaration<InputsModule>;
|
|
81
81
|
}
|
|
@@ -362,5 +362,5 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
362
362
|
private handleClasses;
|
|
363
363
|
private setInputAttributes;
|
|
364
364
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaskedTextBoxComponent, [null, null, null, null, null, null, { optional: true; }]>;
|
|
365
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MaskedTextBoxComponent, "kendo-maskedtextbox", ["kendoMaskedTextBox"], { "focusableId": "focusableId"; "disabled": "disabled"; "readonly": "readonly"; "title": "title"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "mask": "mask"; "value": "value"; "rules": "rules"; "prompt": "prompt"; "promptPlaceholder": "promptPlaceholder"; "includeLiterals": "includeLiterals"; "maskOnFocus": "maskOnFocus"; "maskValidation": "maskValidation"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "inputAttributes": "inputAttributes"; }, { "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "valueChange": "valueChange"; }, ["suffixTemplate", "prefixTemplate"], never, true, never>;
|
|
365
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MaskedTextBoxComponent, "kendo-maskedtextbox", ["kendoMaskedTextBox"], { "focusableId": { "alias": "focusableId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "title": { "alias": "title"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "value": { "alias": "value"; "required": false; }; "rules": { "alias": "rules"; "required": false; }; "prompt": { "alias": "prompt"; "required": false; }; "promptPlaceholder": { "alias": "promptPlaceholder"; "required": false; }; "includeLiterals": { "alias": "includeLiterals"; "required": false; }; "maskOnFocus": { "alias": "maskOnFocus"; "required": false; }; "maskValidation": { "alias": "maskValidation"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; }, { "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "valueChange": "valueChange"; }, ["suffixTemplate", "prefixTemplate"], never, true, never>;
|
|
366
366
|
}
|
|
@@ -38,6 +38,6 @@ import * as i2 from "@progress/kendo-angular-common";
|
|
|
38
38
|
*/
|
|
39
39
|
export declare class MaskedTextBoxModule {
|
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaskedTextBoxModule, never>;
|
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MaskedTextBoxModule, never, [typeof i1.MaskedTextBoxComponent, typeof i2.PrefixTemplateDirective, typeof i2.SuffixTemplateDirective, typeof i2.SeparatorComponent], [typeof i1.MaskedTextBoxComponent, typeof i2.PrefixTemplateDirective, typeof i2.SuffixTemplateDirective, typeof i2.SeparatorComponent, typeof i2.
|
|
41
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MaskedTextBoxModule, never, [typeof i1.MaskedTextBoxComponent, typeof i2.PrefixTemplateDirective, typeof i2.SuffixTemplateDirective, typeof i2.SeparatorComponent, typeof i2.PrefixTemplateDirective, typeof i2.SuffixTemplateDirective, typeof i2.SeparatorComponent], [typeof i1.MaskedTextBoxComponent, typeof i2.PrefixTemplateDirective, typeof i2.SuffixTemplateDirective, typeof i2.SeparatorComponent, typeof i2.PrefixTemplateDirective, typeof i2.SuffixTemplateDirective, typeof i2.SeparatorComponent]>;
|
|
42
42
|
static ɵinj: i0.ɵɵInjectorDeclaration<MaskedTextBoxModule>;
|
|
43
43
|
}
|
|
@@ -17,5 +17,5 @@ export declare class NumericTextBoxMessages extends ComponentMessages {
|
|
|
17
17
|
*/
|
|
18
18
|
increment: string;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxMessages, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NumericTextBoxMessages, "kendo-numerictextbox-messages-base", never, { "decrement": "decrement"; "increment": "increment"; }, {}, never, never, false, never>;
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NumericTextBoxMessages, "kendo-numerictextbox-messages-base", never, { "decrement": { "alias": "decrement"; "required": false; }; "increment": { "alias": "increment"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
21
|
}
|
|
@@ -411,5 +411,5 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
411
411
|
private handleClasses;
|
|
412
412
|
private setInputAttributes;
|
|
413
413
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxComponent, never>;
|
|
414
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NumericTextBoxComponent, "kendo-numerictextbox", ["kendoNumericTextBox"], { "focusableId": "focusableId"; "disabled": "disabled"; "readonly": "readonly"; "title": "title"; "autoCorrect": "autoCorrect"; "format": "format"; "max": "max"; "min": "min"; "decimals": "decimals"; "placeholder": "placeholder"; "step": "step"; "spinners": "spinners"; "rangeValidation": "rangeValidation"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "changeValueOnScroll": "changeValueOnScroll"; "selectOnFocus": "selectOnFocus"; "value": "value"; "maxlength": "maxlength"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "inputAttributes": "inputAttributes"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; }, ["suffixTemplate", "prefixTemplate"], never, true, never>;
|
|
414
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumericTextBoxComponent, "kendo-numerictextbox", ["kendoNumericTextBox"], { "focusableId": { "alias": "focusableId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "title": { "alias": "title"; "required": false; }; "autoCorrect": { "alias": "autoCorrect"; "required": false; }; "format": { "alias": "format"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "decimals": { "alias": "decimals"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "step": { "alias": "step"; "required": false; }; "spinners": { "alias": "spinners"; "required": false; }; "rangeValidation": { "alias": "rangeValidation"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "changeValueOnScroll": { "alias": "changeValueOnScroll"; "required": false; }; "selectOnFocus": { "alias": "selectOnFocus"; "required": false; }; "value": { "alias": "value"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; }, ["suffixTemplate", "prefixTemplate"], never, true, never>;
|
|
415
415
|
}
|
|
@@ -39,6 +39,6 @@ import * as i3 from "@progress/kendo-angular-common";
|
|
|
39
39
|
*/
|
|
40
40
|
export declare class NumericTextBoxModule {
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxModule, never>;
|
|
42
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NumericTextBoxModule, never, [typeof i1.NumericTextBoxComponent, typeof i2.NumericTextBoxCustomMessagesComponent, typeof i3.PrefixTemplateDirective, typeof i3.SuffixTemplateDirective, typeof i3.SeparatorComponent], [typeof i1.NumericTextBoxComponent, typeof i2.NumericTextBoxCustomMessagesComponent, typeof i3.PrefixTemplateDirective, typeof i3.SuffixTemplateDirective, typeof i3.SeparatorComponent, typeof i3.
|
|
42
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NumericTextBoxModule, never, [typeof i1.NumericTextBoxComponent, typeof i2.NumericTextBoxCustomMessagesComponent, typeof i3.PrefixTemplateDirective, typeof i3.SuffixTemplateDirective, typeof i3.SeparatorComponent, typeof i3.PrefixTemplateDirective, typeof i3.SuffixTemplateDirective, typeof i3.SeparatorComponent], [typeof i1.NumericTextBoxComponent, typeof i2.NumericTextBoxCustomMessagesComponent, typeof i3.PrefixTemplateDirective, typeof i3.SuffixTemplateDirective, typeof i3.SeparatorComponent, typeof i3.PrefixTemplateDirective, typeof i3.SuffixTemplateDirective, typeof i3.SeparatorComponent]>;
|
|
43
43
|
static ɵinj: i0.ɵɵInjectorDeclaration<NumericTextBoxModule>;
|
|
44
44
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.0.1-develop.1",
|
|
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",
|
|
@@ -27,35 +27,31 @@
|
|
|
27
27
|
"friendlyName": "Inputs"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@angular/animations": "
|
|
31
|
-
"@angular/common": "
|
|
32
|
-
"@angular/core": "
|
|
33
|
-
"@angular/forms": "
|
|
34
|
-
"@angular/platform-browser": "
|
|
35
|
-
"@progress/kendo-drawing": "^1.
|
|
30
|
+
"@angular/animations": "16 - 18",
|
|
31
|
+
"@angular/common": "16 - 18",
|
|
32
|
+
"@angular/core": "16 - 18",
|
|
33
|
+
"@angular/forms": "16 - 18",
|
|
34
|
+
"@angular/platform-browser": "16 - 18",
|
|
35
|
+
"@progress/kendo-drawing": "^1.21.0",
|
|
36
36
|
"@progress/kendo-licensing": "^1.0.2",
|
|
37
|
-
"@progress/kendo-angular-buttons": "17.0.
|
|
38
|
-
"@progress/kendo-angular-common": "17.0.
|
|
39
|
-
"@progress/kendo-angular-dialog": "17.0.
|
|
40
|
-
"@progress/kendo-angular-intl": "17.0.
|
|
41
|
-
"@progress/kendo-angular-l10n": "17.0.
|
|
42
|
-
"@progress/kendo-angular-popup": "17.0.
|
|
43
|
-
"@progress/kendo-angular-icons": "17.0.
|
|
37
|
+
"@progress/kendo-angular-buttons": "17.0.1-develop.1",
|
|
38
|
+
"@progress/kendo-angular-common": "17.0.1-develop.1",
|
|
39
|
+
"@progress/kendo-angular-dialog": "17.0.1-develop.1",
|
|
40
|
+
"@progress/kendo-angular-intl": "17.0.1-develop.1",
|
|
41
|
+
"@progress/kendo-angular-l10n": "17.0.1-develop.1",
|
|
42
|
+
"@progress/kendo-angular-popup": "17.0.1-develop.1",
|
|
43
|
+
"@progress/kendo-angular-icons": "17.0.1-develop.1",
|
|
44
44
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"tslib": "^2.3.1",
|
|
48
|
-
"@progress/kendo-angular-schematics": "17.0.
|
|
49
|
-
"@progress/kendo-common": "^0.
|
|
48
|
+
"@progress/kendo-angular-schematics": "17.0.1-develop.1",
|
|
49
|
+
"@progress/kendo-common": "^1.0.1",
|
|
50
50
|
"@progress/kendo-draggable": "^3.0.0",
|
|
51
51
|
"@progress/kendo-inputs-common": "^3.1.0"
|
|
52
52
|
},
|
|
53
53
|
"schematics": "./schematics/collection.json",
|
|
54
|
-
"module": "
|
|
55
|
-
"es2020": "fesm2020/progress-kendo-angular-inputs.mjs",
|
|
56
|
-
"esm2020": "esm2020/progress-kendo-angular-inputs.mjs",
|
|
57
|
-
"fesm2020": "fesm2020/progress-kendo-angular-inputs.mjs",
|
|
58
|
-
"fesm2015": "fesm2015/progress-kendo-angular-inputs.mjs",
|
|
54
|
+
"module": "fesm2022/progress-kendo-angular-inputs.mjs",
|
|
59
55
|
"typings": "index.d.ts",
|
|
60
56
|
"exports": {
|
|
61
57
|
"./package.json": {
|
|
@@ -63,11 +59,9 @@
|
|
|
63
59
|
},
|
|
64
60
|
".": {
|
|
65
61
|
"types": "./index.d.ts",
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"node": "./fesm2015/progress-kendo-angular-inputs.mjs",
|
|
70
|
-
"default": "./fesm2020/progress-kendo-angular-inputs.mjs"
|
|
62
|
+
"esm2022": "./esm2022/progress-kendo-angular-inputs.mjs",
|
|
63
|
+
"esm": "./esm2022/progress-kendo-angular-inputs.mjs",
|
|
64
|
+
"default": "./fesm2022/progress-kendo-angular-inputs.mjs"
|
|
71
65
|
}
|
|
72
66
|
},
|
|
73
67
|
"sideEffects": false
|
|
@@ -46,5 +46,5 @@ export declare class RadioButtonComponent extends RadioCheckBoxBase implements C
|
|
|
46
46
|
*/
|
|
47
47
|
writeValue(value: any): void;
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "kendo-radiobutton", ["kendoRadioButton"], { "checked": "checked"; }, { "checkedChange": "checkedChange"; }, never, never, true, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "kendo-radiobutton", ["kendoRadioButton"], { "checked": { "alias": "checked"; "required": false; }; }, { "checkedChange": "checkedChange"; }, never, never, true, never>;
|
|
50
50
|
}
|
|
@@ -34,5 +34,5 @@ export declare class RadioButtonDirective {
|
|
|
34
34
|
ngAfterViewInit(): void;
|
|
35
35
|
private handleClasses;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonDirective, never>;
|
|
37
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioButtonDirective, "input[kendoRadioButton]", never, { "size": "size"; }, {}, never, never, true, never>;
|
|
37
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioButtonDirective, "input[kendoRadioButton]", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
38
38
|
}
|
|
@@ -17,5 +17,5 @@ export declare class RangeSliderMessages extends ComponentMessages {
|
|
|
17
17
|
*/
|
|
18
18
|
dragHandleEnd: string;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<RangeSliderMessages, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeSliderMessages, "kendo-rangeslider-messages-base", never, { "dragHandleStart": "dragHandleStart"; "dragHandleEnd": "dragHandleEnd"; }, {}, never, never, false, never>;
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeSliderMessages, "kendo-rangeslider-messages-base", never, { "dragHandleStart": { "alias": "dragHandleStart"; "required": false; }; "dragHandleEnd": { "alias": "dragHandleEnd"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
21
|
}
|
|
@@ -7,7 +7,6 @@ import { SliderModelBase } from '../sliders-common/slider-model.base';
|
|
|
7
7
|
* @hidden
|
|
8
8
|
*/
|
|
9
9
|
export declare class RangeSliderModel extends SliderModelBase {
|
|
10
|
-
protected tickSizes: number[];
|
|
11
10
|
protected startHandlePosition: number;
|
|
12
11
|
protected endHandlePosition: number;
|
|
13
12
|
positionHandle(dragHandle: HTMLElement): void;
|
|
@@ -135,5 +135,5 @@ export declare class RangeSliderComponent extends SliderBase implements AfterVie
|
|
|
135
135
|
private attachElementEventHandlers;
|
|
136
136
|
private handleBlur;
|
|
137
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<RangeSliderComponent, never>;
|
|
138
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RangeSliderComponent, "kendo-rangeslider", ["kendoRangeSlider"], { "value": "value"; }, {}, never, never, true, never>;
|
|
138
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RangeSliderComponent, "kendo-rangeslider", ["kendoRangeSlider"], { "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
|
|
139
139
|
}
|
|
@@ -176,5 +176,5 @@ export declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
176
176
|
private isFirstHalf;
|
|
177
177
|
private onKeyDown;
|
|
178
178
|
static ɵfac: i0.ɵɵFactoryDeclaration<RatingComponent, never>;
|
|
179
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RatingComponent, "kendo-rating", ["kendoRating"], { "disabled": "disabled"; "readonly": "readonly"; "tabindex": "tabindex"; "itemsCount": "itemsCount"; "value": "value"; "selection": "selection"; "precision": "precision"; "label": "label"; "icon": "icon"; "svgIcon": "svgIcon"; "svgIconOutline": "svgIconOutline"; }, { "valueChange": "valueChange"; }, ["itemTemplate", "hoveredItemTemplate", "selectedItemTemplate"], never, true, never>;
|
|
179
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RatingComponent, "kendo-rating", ["kendoRating"], { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "itemsCount": { "alias": "itemsCount"; "required": false; }; "value": { "alias": "value"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "precision": { "alias": "precision"; "required": false; }; "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "svgIconOutline": { "alias": "svgIconOutline"; "required": false; }; }, { "valueChange": "valueChange"; }, ["itemTemplate", "hoveredItemTemplate", "selectedItemTemplate"], never, true, never>;
|
|
180
180
|
}
|
|
@@ -4,7 +4,7 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'InputsModule', package: 'inputs', peerDependencies: {
|
|
6
6
|
// peer dep of the icons
|
|
7
|
-
'@progress/kendo-svg-icons': '^
|
|
7
|
+
'@progress/kendo-svg-icons': '^4.0.0',
|
|
8
8
|
} });
|
|
9
9
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
10
10
|
}
|
|
@@ -33,5 +33,5 @@ export declare class InputSeparatorComponent {
|
|
|
33
33
|
get horizontal(): boolean;
|
|
34
34
|
hostClass: boolean;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputSeparatorComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputSeparatorComponent, "kendo-input-separator, kendo-textbox-separator", never, { "orientation": "orientation"; }, {}, never, never, true, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSeparatorComponent, "kendo-input-separator, kendo-textbox-separator", never, { "orientation": { "alias": "orientation"; "required": false; }; }, {}, never, never, true, never>;
|
|
37
37
|
}
|
|
@@ -23,5 +23,5 @@ export declare class SharedInputEventsDirective implements AfterViewInit, OnDest
|
|
|
23
23
|
ngAfterViewInit(): void;
|
|
24
24
|
ngOnDestroy(): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedInputEventsDirective, never>;
|
|
26
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SharedInputEventsDirective, "[kendoInputSharedEvents]", never, { "hostElement": "hostElement"; "clearButtonClicked": "clearButtonClicked"; "isFocused": "isFocused"; }, { "isFocusedChange": "isFocusedChange"; "onFocus": "onFocus"; "handleBlur": "handleBlur"; }, never, never, true, never>;
|
|
26
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SharedInputEventsDirective, "[kendoInputSharedEvents]", never, { "hostElement": { "alias": "hostElement"; "required": false; }; "clearButtonClicked": { "alias": "clearButtonClicked"; "required": false; }; "isFocused": { "alias": "isFocused"; "required": false; }; }, { "isFocusedChange": "isFocusedChange"; "onFocus": "onFocus"; "handleBlur": "handleBlur"; }, never, never, true, never>;
|
|
27
27
|
}
|
|
@@ -95,5 +95,5 @@ export declare class TextAreaDirective implements OnInit, OnDestroy, OnChanges,
|
|
|
95
95
|
private handleFocus;
|
|
96
96
|
private handleBlur;
|
|
97
97
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaDirective, [null, null, null, null, null, { optional: true; }]>;
|
|
98
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TextAreaDirective, "textarea[kendoTextArea]", never, { "autoSize": "autoSize"; "value": "value"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
98
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextAreaDirective, "textarea[kendoTextArea]", never, { "autoSize": { "alias": "autoSize"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
99
99
|
}
|
|
@@ -25,5 +25,5 @@ export declare class SignatureMessages extends ComponentMessages {
|
|
|
25
25
|
*/
|
|
26
26
|
canvasLabel: string;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignatureMessages, never>;
|
|
28
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SignatureMessages, "kendo-signature-messages-base", never, { "clear": "clear"; "minimize": "minimize"; "maximize": "maximize"; "canvasLabel": "canvasLabel"; }, {}, never, never, false, never>;
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SignatureMessages, "kendo-signature-messages-base", never, { "clear": { "alias": "clear"; "required": false; }; "minimize": { "alias": "minimize"; "required": false; }; "maximize": { "alias": "maximize"; "required": false; }; "canvasLabel": { "alias": "canvasLabel"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
29
|
}
|
|
@@ -365,5 +365,5 @@ export declare class SignatureComponent implements ControlValueAccessor {
|
|
|
365
365
|
private addEventListeners;
|
|
366
366
|
private getMessage;
|
|
367
367
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignatureComponent, never>;
|
|
368
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignatureComponent, "kendo-signature", ["kendoSignature"], { "focusableId": "focusableId"; "readonly": "readonly"; "disabled": "disabled"; "width": "width"; "height": "height"; "value": "value"; "tabindex": "tabindex"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "color": "color"; "backgroundColor": "backgroundColor"; "strokeWidth": "strokeWidth"; "smooth": "smooth"; "maximizable": "maximizable"; "maximized": "maximized"; "popupScale": "popupScale"; "exportScale": "exportScale"; "parentLocalization": "parentLocalization"; "hideLine": "hideLine"; }, { "valueChange": "valueChange"; "open": "open"; "close": "close"; "onFocus": "focus"; "onBlur": "blur"; "minimize": "minimize"; }, never, never, true, never>;
|
|
368
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignatureComponent, "kendo-signature", ["kendoSignature"], { "focusableId": { "alias": "focusableId"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "value": { "alias": "value"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "color": { "alias": "color"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; }; "smooth": { "alias": "smooth"; "required": false; }; "maximizable": { "alias": "maximizable"; "required": false; }; "maximized": { "alias": "maximized"; "required": false; }; "popupScale": { "alias": "popupScale"; "required": false; }; "exportScale": { "alias": "exportScale"; "required": false; }; "parentLocalization": { "alias": "parentLocalization"; "required": false; }; "hideLine": { "alias": "hideLine"; "required": false; }; }, { "valueChange": "valueChange"; "open": "open"; "close": "close"; "onFocus": "focus"; "onBlur": "blur"; "minimize": "minimize"; }, never, never, true, never>;
|
|
369
369
|
}
|
|
@@ -21,5 +21,5 @@ export declare class SliderMessages extends ComponentMessages {
|
|
|
21
21
|
*/
|
|
22
22
|
dragHandle: string;
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderMessages, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SliderMessages, "kendo-slider-messages-base", never, { "decrement": "decrement"; "increment": "increment"; "dragHandle": "dragHandle"; }, {}, never, never, false, never>;
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SliderMessages, "kendo-slider-messages-base", never, { "decrement": { "alias": "decrement"; "required": false; }; "increment": { "alias": "increment"; "required": false; }; "dragHandle": { "alias": "dragHandle"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
25
|
}
|
package/slider/slider-model.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import { SliderModelBase } from '../sliders-common/slider-model.base';
|
|
|
7
7
|
* @hidden
|
|
8
8
|
*/
|
|
9
9
|
export declare class SliderModel extends SliderModelBase {
|
|
10
|
-
protected tickSizes: number[];
|
|
11
10
|
protected handlePosition: number;
|
|
12
11
|
positionHandle(dragHandle: HTMLElement): void;
|
|
13
12
|
positionSelection(selection: HTMLElement): void;
|
|
@@ -171,5 +171,5 @@ export declare class SliderComponent extends SliderBase implements AfterViewInit
|
|
|
171
171
|
get decreaseButtonArrowSVGIcon(): SVGIcon;
|
|
172
172
|
get increaseButtonArrowSVGIcon(): SVGIcon;
|
|
173
173
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderComponent, never>;
|
|
174
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SliderComponent, "kendo-slider", ["kendoSlider"], { "focusableId": "focusableId"; "dragHandleTitle": "dragHandleTitle"; "incrementTitle": "incrementTitle"; "animate": "animate"; "decrementTitle": "decrementTitle"; "showButtons": "showButtons"; "value": "value"; "tabIndex": "tabIndex"; }, {}, never, never, true, never>;
|
|
174
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SliderComponent, "kendo-slider", ["kendoSlider"], { "focusableId": { "alias": "focusableId"; "required": false; }; "dragHandleTitle": { "alias": "dragHandleTitle"; "required": false; }; "incrementTitle": { "alias": "incrementTitle"; "required": false; }; "animate": { "alias": "animate"; "required": false; }; "decrementTitle": { "alias": "decrementTitle"; "required": false; }; "showButtons": { "alias": "showButtons"; "required": false; }; "value": { "alias": "value"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, {}, never, never, true, never>;
|
|
175
175
|
}
|
|
@@ -139,5 +139,5 @@ export declare abstract class SliderBase {
|
|
|
139
139
|
protected get keyBinding(): Object;
|
|
140
140
|
protected resetStyles(elements: HTMLElement[]): void;
|
|
141
141
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderBase, never>;
|
|
142
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SliderBase, "kendo-slider-base", never, { "title": "title"; "tickPlacement": "tickPlacement"; "vertical": "vertical"; "min": "min"; "max": "max"; "smallStep": "smallStep"; "largeStep": "largeStep"; "fixedTickWidth": "fixedTickWidth"; "disabled": "disabled"; "readonly": "readonly"; "tabindex": "tabindex"; }, { "onFocus": "focus"; "onBlur": "blur"; "valueChange": "valueChange"; }, ["labelTemplate"], never, false, never>;
|
|
142
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SliderBase, "kendo-slider-base", never, { "title": { "alias": "title"; "required": false; }; "tickPlacement": { "alias": "tickPlacement"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "smallStep": { "alias": "smallStep"; "required": false; }; "largeStep": { "alias": "largeStep"; "required": false; }; "fixedTickWidth": { "alias": "fixedTickWidth"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; }, { "onFocus": "focus"; "onBlur": "blur"; "valueChange": "valueChange"; }, ["labelTemplate"], never, false, never>;
|
|
143
143
|
}
|
|
@@ -22,5 +22,5 @@ export declare class SliderTicksComponent implements OnChanges {
|
|
|
22
22
|
private createTicks;
|
|
23
23
|
private endTickClasses;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderTicksComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SliderTicksComponent, "[kendoSliderTicks]", never, { "tickTitle": "tickTitle"; "vertical": "vertical"; "step": "step"; "largeStep": "largeStep"; "min": "min"; "max": "max"; "labelTemplate": "labelTemplate"; }, {}, never, never, true, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SliderTicksComponent, "[kendoSliderTicks]", never, { "tickTitle": { "alias": "tickTitle"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; "step": { "alias": "step"; "required": false; }; "largeStep": { "alias": "largeStep"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "labelTemplate": { "alias": "labelTemplate"; "required": false; }; }, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
* for each tick is its Slider value. If you use a callback function, the function accepts an argument
|
|
8
8
|
* that holds the value of the component and returns a string with the new title.
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
10
|
+
export type SliderTickTitleCallback = (value: number) => string;
|
|
@@ -17,5 +17,5 @@ export declare class Messages extends ComponentMessages {
|
|
|
17
17
|
*/
|
|
18
18
|
off: string;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-switch-messages-base", never, { "on": "on"; "off": "off"; }, {}, never, never, false, never>;
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-switch-messages-base", never, { "on": { "alias": "on"; "required": false; }; "off": { "alias": "off"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
21
|
}
|
|
@@ -216,5 +216,5 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
216
216
|
private handleTrackClasses;
|
|
217
217
|
private handleThumbClasses;
|
|
218
218
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, never>;
|
|
219
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "kendo-switch", ["kendoSwitch"], { "focusableId": "focusableId"; "onLabel": "onLabel"; "offLabel": "offLabel"; "checked": "checked"; "disabled": "disabled"; "readonly": "readonly"; "tabindex": "tabindex"; "size": "size"; "thumbRounded": "thumbRounded"; "trackRounded": "trackRounded"; "tabIndex": "tabIndex"; }, { "onFocus": "focus"; "onBlur": "blur"; "valueChange": "valueChange"; }, never, never, true, never>;
|
|
219
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "kendo-switch", ["kendoSwitch"], { "focusableId": { "alias": "focusableId"; "required": false; }; "onLabel": { "alias": "onLabel"; "required": false; }; "offLabel": { "alias": "offLabel"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "thumbRounded": { "alias": "thumbRounded"; "required": false; }; "trackRounded": { "alias": "trackRounded"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, { "onFocus": "focus"; "onBlur": "blur"; "valueChange": "valueChange"; }, never, never, true, never>;
|
|
220
220
|
}
|
|
@@ -87,5 +87,5 @@ export declare abstract class TextFieldsBase {
|
|
|
87
87
|
ngChange: Function;
|
|
88
88
|
ngTouched: Function;
|
|
89
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextFieldsBase, never>;
|
|
90
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextFieldsBase, "kendo-textfield-base", never, { "title": "title"; "disabled": "disabled"; "readonly": "readonly"; "value": "value"; "selectOnFocus": "selectOnFocus"; "placeholder": "placeholder"; }, { "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; }, never, never, false, never>;
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextFieldsBase, "kendo-textfield-base", never, { "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "selectOnFocus": { "alias": "selectOnFocus"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; }, never, never, false, never>;
|
|
91
91
|
}
|
|
@@ -9,4 +9,4 @@
|
|
|
9
9
|
* * `horizontal`(Default) —TextArea adornments are placed from left to right in `ltr`, and from right to left in `rtl` mode.
|
|
10
10
|
* * `vertical`—TextArea adornments are placed from top to bottom.
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
12
|
+
export type TextAreaAdornmentsOrientation = 'horizontal' | 'vertical';
|
|
@@ -9,4 +9,4 @@
|
|
|
9
9
|
* * `vertical`(Default) —TextArea sections are placed from top to bottom.
|
|
10
10
|
* * `horizontal`—TextArea sections are placed from left to right in `ltr`, and from right to left in `rtl` mode.
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
12
|
+
export type TextAreaFlow = 'horizontal' | 'vertical';
|
|
@@ -33,5 +33,5 @@ export declare class TextAreaPrefixComponent {
|
|
|
33
33
|
get horizontalOrientation(): boolean;
|
|
34
34
|
get alignItems(): boolean;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaPrefixComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaPrefixComponent, "kendo-textarea-prefix", ["kendoTextAreaPrefix"], { "flow": "flow"; "orientation": "orientation"; }, {}, never, ["*"], true, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaPrefixComponent, "kendo-textarea-prefix", ["kendoTextAreaPrefix"], { "flow": { "alias": "flow"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
37
37
|
}
|
|
@@ -33,5 +33,5 @@ export declare class TextAreaSuffixComponent {
|
|
|
33
33
|
get horizontalOrientation(): boolean;
|
|
34
34
|
get alignItems(): boolean;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaSuffixComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaSuffixComponent, "kendo-textarea-suffix", ["kendoTextAreaSuffix"], { "flow": "flow"; "orientation": "orientation"; }, {}, never, ["*"], true, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaSuffixComponent, "kendo-textarea-suffix", ["kendoTextAreaSuffix"], { "flow": { "alias": "flow"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
37
37
|
}
|
|
@@ -295,5 +295,5 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
|
|
|
295
295
|
private handleFlow;
|
|
296
296
|
private setInputAttributes;
|
|
297
297
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
|
|
298
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "kendo-textarea", ["kendoTextArea"], { "focusableId": "focusableId"; "flow": "flow"; "inputAttributes": "inputAttributes"; "adornmentsOrientation": "adornmentsOrientation"; "rows": "rows"; "cols": "cols"; "maxlength": "maxlength"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "resizable": "resizable"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "showPrefixSeparator": "showPrefixSeparator"; "showSuffixSeparator": "showSuffixSeparator"; }, { "onFocus": "focus"; "onBlur": "blur"; "valueChange": "valueChange"; }, ["prefix", "suffix"], ["kendo-textarea-prefix", "kendo-textarea-suffix"], true, never>;
|
|
298
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "kendo-textarea", ["kendoTextArea"], { "focusableId": { "alias": "focusableId"; "required": false; }; "flow": { "alias": "flow"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "adornmentsOrientation": { "alias": "adornmentsOrientation"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "showPrefixSeparator": { "alias": "showPrefixSeparator"; "required": false; }; "showSuffixSeparator": { "alias": "showSuffixSeparator"; "required": false; }; }, { "onFocus": "focus"; "onBlur": "blur"; "valueChange": "valueChange"; }, ["prefix", "suffix"], ["kendo-textarea-prefix", "kendo-textarea-suffix"], true, never>;
|
|
299
299
|
}
|
package/textarea.module.d.ts
CHANGED
|
@@ -41,6 +41,6 @@ import * as i5 from "@progress/kendo-angular-common";
|
|
|
41
41
|
*/
|
|
42
42
|
export declare class TextAreaModule {
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaModule, never>;
|
|
44
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TextAreaModule, never, [typeof i1.TextAreaComponent, typeof i2.TextAreaDirective, typeof i3.TextAreaPrefixComponent, typeof i4.TextAreaSuffixComponent, typeof i5.SeparatorComponent], [typeof i1.TextAreaComponent, typeof i2.TextAreaDirective, typeof i3.TextAreaPrefixComponent, typeof i4.TextAreaSuffixComponent, typeof i5.SeparatorComponent, typeof i5.
|
|
44
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TextAreaModule, never, [typeof i1.TextAreaComponent, typeof i2.TextAreaDirective, typeof i3.TextAreaPrefixComponent, typeof i4.TextAreaSuffixComponent, typeof i5.SeparatorComponent, typeof i5.PrefixTemplateDirective, typeof i5.SuffixTemplateDirective, typeof i5.SeparatorComponent], [typeof i1.TextAreaComponent, typeof i2.TextAreaDirective, typeof i3.TextAreaPrefixComponent, typeof i4.TextAreaSuffixComponent, typeof i5.SeparatorComponent, typeof i5.PrefixTemplateDirective, typeof i5.SuffixTemplateDirective, typeof i5.SeparatorComponent]>;
|
|
45
45
|
static ɵinj: i0.ɵɵInjectorDeclaration<TextAreaModule>;
|
|
46
46
|
}
|
|
@@ -13,5 +13,5 @@ export declare class TextBoxMessages extends ComponentMessages {
|
|
|
13
13
|
*/
|
|
14
14
|
clear: string;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxMessages, never>;
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TextBoxMessages, "kendo-textbox-messages-base", never, { "clear": "clear"; }, {}, never, never, false, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextBoxMessages, "kendo-textbox-messages-base", never, { "clear": { "alias": "clear"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
17
|
}
|
|
@@ -10,4 +10,4 @@
|
|
|
10
10
|
* * `initial`(Default) —Gives an initial, built-in control of the icons.
|
|
11
11
|
* * `boolean`—The icon is displayed, if the condition given by the developer is met.
|
|
12
12
|
*/
|
|
13
|
-
export
|
|
13
|
+
export type IconShowOptions = 'initial' | true | false;
|
|
@@ -33,5 +33,5 @@ export declare class TextBoxPrefixTemplateDirective {
|
|
|
33
33
|
private _showSeparator;
|
|
34
34
|
constructor(templateRef: TemplateRef<any>);
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxPrefixTemplateDirective, [{ optional: true; }]>;
|
|
36
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TextBoxPrefixTemplateDirective, "[kendoTextBoxPrefixTemplate]", never, { "showSeparator": "showSeparator"; }, {}, never, never, true, never>;
|
|
36
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextBoxPrefixTemplateDirective, "[kendoTextBoxPrefixTemplate]", never, { "showSeparator": { "alias": "showSeparator"; "required": false; }; }, {}, never, never, true, never>;
|
|
37
37
|
}
|
|
@@ -32,5 +32,5 @@ export declare class TextBoxSuffixTemplateDirective {
|
|
|
32
32
|
private _showSeparator;
|
|
33
33
|
constructor(templateRef: TemplateRef<any>);
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxSuffixTemplateDirective, [{ optional: true; }]>;
|
|
35
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TextBoxSuffixTemplateDirective, "[kendoTextBoxSuffixTemplate]", never, { "showSeparator": "showSeparator"; }, {}, never, never, true, never>;
|
|
35
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextBoxSuffixTemplateDirective, "[kendoTextBoxSuffixTemplate]", never, { "showSeparator": { "alias": "showSeparator"; "required": false; }; }, {}, never, never, true, never>;
|
|
36
36
|
}
|
|
@@ -428,5 +428,5 @@ export declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
428
428
|
private configureAdornments;
|
|
429
429
|
private setInputAttributes;
|
|
430
430
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxComponent, never>;
|
|
431
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextBoxComponent, "kendo-textbox", ["kendoTextBox"], { "focusableId": "focusableId"; "title": "title"; "type": "type"; "disabled": "disabled"; "readonly": "readonly"; "tabindex": "tabindex"; "value": "value"; "selectOnFocus": "selectOnFocus"; "showSuccessIcon": "showSuccessIcon"; "showErrorIcon": "showErrorIcon"; "clearButton": "clearButton"; "successIcon": "successIcon"; "successSvgIcon": "successSvgIcon"; "errorIcon": "errorIcon"; "errorSvgIcon": "errorSvgIcon"; "clearButtonIcon": "clearButtonIcon"; "clearButtonSvgIcon": "clearButtonSvgIcon"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "tabIndex": "tabIndex"; "placeholder": "placeholder"; "maxlength": "maxlength"; "inputAttributes": "inputAttributes"; }, { "valueChange": "valueChange"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "onFocus": "focus"; "onBlur": "blur"; }, ["suffixTemplate", "prefixTemplate", "textBoxSuffixTemplate", "textBoxPrefixTemplate"], never, true, never>;
|
|
431
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextBoxComponent, "kendo-textbox", ["kendoTextBox"], { "focusableId": { "alias": "focusableId"; "required": false; }; "title": { "alias": "title"; "required": false; }; "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "value": { "alias": "value"; "required": false; }; "selectOnFocus": { "alias": "selectOnFocus"; "required": false; }; "showSuccessIcon": { "alias": "showSuccessIcon"; "required": false; }; "showErrorIcon": { "alias": "showErrorIcon"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "successIcon": { "alias": "successIcon"; "required": false; }; "successSvgIcon": { "alias": "successSvgIcon"; "required": false; }; "errorIcon": { "alias": "errorIcon"; "required": false; }; "errorSvgIcon": { "alias": "errorSvgIcon"; "required": false; }; "clearButtonIcon": { "alias": "clearButtonIcon"; "required": false; }; "clearButtonSvgIcon": { "alias": "clearButtonSvgIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; }, { "valueChange": "valueChange"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "onFocus": "focus"; "onBlur": "blur"; }, ["suffixTemplate", "prefixTemplate", "textBoxSuffixTemplate", "textBoxPrefixTemplate"], never, true, never>;
|
|
432
432
|
}
|