@progress/kendo-angular-inputs 22.1.0-develop.9 → 23.0.0-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.
Files changed (38) hide show
  1. package/checkbox/checkbox.component.d.ts +1 -1
  2. package/checkbox/checkbox.directive.d.ts +3 -3
  3. package/colorpicker/color-gradient.component.d.ts +2 -2
  4. package/colorpicker/color-palette.component.d.ts +1 -1
  5. package/colorpicker/colorpicker.component.d.ts +5 -5
  6. package/colorpicker/flatcolorpicker.component.d.ts +1 -1
  7. package/common/models/fillmode.d.ts +1 -1
  8. package/common/models/size.d.ts +1 -1
  9. package/common/utils.d.ts +1 -0
  10. package/fesm2022/progress-kendo-angular-inputs.mjs +526 -576
  11. package/formfield/models/show-options.d.ts +1 -1
  12. package/maskedtextbox/maskedtextbox.component.d.ts +12 -12
  13. package/numerictextbox/constants.d.ts +2 -2
  14. package/numerictextbox/numerictextbox.component.d.ts +16 -16
  15. package/otpinput/otpinput.component.d.ts +1 -1
  16. package/package-metadata.mjs +2 -2
  17. package/package.json +13 -13
  18. package/radiobutton/radiobutton.directive.d.ts +1 -1
  19. package/rating/directives/rating-hovered-item.directive.d.ts +1 -1
  20. package/rating/directives/rating-item.directive.d.ts +1 -1
  21. package/rating/directives/rating-selected-item.directive.d.ts +1 -1
  22. package/rating/models/selection.d.ts +1 -1
  23. package/rating/rating.component.d.ts +10 -10
  24. package/shared/input-separator.component.d.ts +2 -2
  25. package/signature/signature.component.d.ts +8 -8
  26. package/slider/slider.component.d.ts +4 -4
  27. package/sliders-common/slider-base.d.ts +10 -10
  28. package/sliders-common/title-callback.d.ts +1 -1
  29. package/switch/switch.component.d.ts +11 -11
  30. package/text-fields-common/text-fields-base.d.ts +1 -1
  31. package/textarea/models/textarea-settings.d.ts +1 -1
  32. package/textarea/textarea.component.d.ts +4 -4
  33. package/textarea/textarea.directive.d.ts +1 -1
  34. package/textbox/models/icon-show-options.d.ts +1 -1
  35. package/textbox/textbox-prefix.directive.d.ts +1 -1
  36. package/textbox/textbox-suffix.directive.d.ts +1 -1
  37. package/textbox/textbox.component.d.ts +7 -7
  38. package/textbox/textbox.directive.d.ts +1 -1
@@ -11,7 +11,7 @@ import { SwitchFocusEvent } from './events/focus-event';
11
11
  import { SwitchBlurEvent } from './events/blur-event';
12
12
  import * as i0 from "@angular/core";
13
13
  /**
14
- * Represents the [Kendo UI Switch component for Angular]({% slug overview_switch %}).
14
+ * Represents the [Kendo UI Switch component for Angular](https://www.telerik.com/kendo-angular-ui/components/inputs/switch).
15
15
  *
16
16
  * @example
17
17
  * ```html
@@ -34,14 +34,14 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
34
34
  get focusableId(): string;
35
35
  /**
36
36
  * Set the **On** label.
37
- * This label takes precedence over the [custom messages component]({% slug api_inputs_switchcustommessagescomponent %}).
38
- * [See example]({% slug labels_switch %}).
37
+ * This label takes precedence over the [custom messages component](https://www.telerik.com/kendo-angular-ui/components/inputs/api/switchcustommessagescomponent).
38
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/labels).
39
39
  */
40
40
  onLabel: string;
41
41
  /**
42
42
  * Set the **Off** label.
43
- * This label takes precedence over the [custom messages component]({% slug api_inputs_switchcustommessagescomponent %}).
44
- * [See example]({% slug labels_switch %}).
43
+ * This label takes precedence over the [custom messages component](https://www.telerik.com/kendo-angular-ui/components/inputs/api/switchcustommessagescomponent).
44
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/labels).
45
45
  */
46
46
  offLabel: string;
47
47
  /**
@@ -51,14 +51,14 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
51
51
  get checked(): boolean;
52
52
  /**
53
53
  * When `true`, disables the Switch.
54
- * [See example]({% slug disabled_switch %}).
55
- * To disable the component in reactive forms, see [Forms Support](slug:formssupport_switch#toc-managing-the-switch-disabled-state-in-reactive-forms).
54
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/disabled-state).
55
+ * To disable the component in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/forms#managing-the-switch-disabled-state-in-reactive-forms).
56
56
  * @default false
57
57
  */
58
58
  disabled: boolean;
59
59
  /**
60
60
  * When `true`, sets the Switch to read-only.
61
- * [See example]({% slug readonly_switch %}).
61
+ * [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/readonly-state).
62
62
  * @default false
63
63
  */
64
64
  readonly: boolean;
@@ -70,21 +70,21 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
70
70
  /**
71
71
  * Sets the size of the Switch.
72
72
  *
73
- * @default "medium"
73
+ * @default undefined
74
74
  */
75
75
  set size(size: InputSize);
76
76
  get size(): InputSize;
77
77
  /**
78
78
  * Sets the border radius of the Switch.
79
79
  *
80
- * @default "full"
80
+ * @default undefined
81
81
  */
82
82
  set thumbRounded(thumbRounded: InputRounded);
83
83
  get thumbRounded(): InputRounded;
84
84
  /**
85
85
  * Sets the border radius of the Switch track.
86
86
  *
87
- * @default "full"
87
+ * @default undefined
88
88
  */
89
89
  set trackRounded(trackRounded: InputRounded);
90
90
  get trackRounded(): InputRounded;
@@ -22,7 +22,7 @@ export declare abstract class TextFieldsBase {
22
22
  */
23
23
  title: string | undefined;
24
24
  /**
25
- * Sets the disabled state of the TextArea component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](slug:formssupport_textarea#toc-managing-the-textarea-disabled-state-in-reactive-forms).
25
+ * Sets the disabled state of the TextArea component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/forms#managing-the-textarea-disabled-state-in-reactive-forms).
26
26
  *
27
27
  * @default false
28
28
  */
@@ -7,7 +7,7 @@ import { TextAreaAdornmentsOrientation } from "./adornments-orientation";
7
7
  import { TextAreaFlow } from "./flow";
8
8
  import { TextAreaResize } from "./resize";
9
9
  /**
10
- * Defines the settings interface for the text area functionality used in components that integrate the TextArea component, such as the AIPrompt ([see example](slug:configuration_aiprompt#configuring-the-prompt-text-area)).
10
+ * Defines the settings interface for the text area functionality used in components that integrate the TextArea component, such as the AIPrompt ([see example](https://www.telerik.com/kendo-angular-ui/components/conversational-ui/aiprompt/configuration#configuring-the-prompt-text-area)).
11
11
  *
12
12
  * @example
13
13
  * ```typescript
@@ -96,19 +96,19 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
96
96
  */
97
97
  resizable: TextAreaResize;
98
98
  /**
99
- * Sets the size of the TextArea. Controls the padding of the text area element ([see example]({% slug appearance_textarea %}#toc-size)).
99
+ * Sets the size of the TextArea. Controls the padding of the text area element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#size)).
100
100
  * @default 'medium'
101
101
  */
102
102
  set size(size: InputSize);
103
103
  get size(): InputSize;
104
104
  /**
105
- * Sets the border radius of the TextArea ([see example](slug:appearance_textarea#toc-roundness)).
105
+ * Sets the border radius of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#roundness)).
106
106
  * @default 'medium'
107
107
  */
108
108
  set rounded(rounded: InputRounded);
109
109
  get rounded(): InputRounded;
110
110
  /**
111
- * Sets the background and border styles of the TextArea ([see example](slug:appearance_textarea#toc-fill-mode)).
111
+ * Sets the background and border styles of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#fill-mode)).
112
112
  * @default 'solid'
113
113
  */
114
114
  set fillMode(fillMode: InputFillMode);
@@ -140,7 +140,7 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
140
140
  */
141
141
  onBlur: EventEmitter<any>;
142
142
  /**
143
- * Fires when the value changes or the TextArea is blurred ([see example](slug:events_textarea)).
143
+ * Fires when the value changes or the TextArea is blurred ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/events)).
144
144
  *
145
145
  * The event does not fire when the value changes programmatically or through form control binding.
146
146
  */
@@ -28,7 +28,7 @@ export declare class TextAreaDirective implements OnInit, OnDestroy, OnChanges,
28
28
  valueChange: EventEmitter<any>;
29
29
  /**
30
30
  * Sets whether the `textarea` element resizes its height automatically
31
- * ([see example](slug:textarea_sizing#toc-auto-resizing)).
31
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/sizing#auto-resizing)).
32
32
  *
33
33
  * @default false
34
34
  */
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Specifies whether the Success or Error icons will be shown ([see examples]({% slug validation_textbox %})).
6
+ * Specifies whether the Success or Error icons will be shown ([see examples](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/validation-icons)).
7
7
  *
8
8
  * The possible values are:
9
9
  *
@@ -5,7 +5,7 @@
5
5
  import { TemplateRef } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
- * Represents a template for prefix adornments in the TextBox component ([see examples](slug:adornments_textbox#toc-prefix-adornments)).
8
+ * Represents a template for prefix adornments in the TextBox component ([see examples](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/adornments#prefix-adornments)).
9
9
  *
10
10
  * @example
11
11
  * ```html
@@ -5,7 +5,7 @@
5
5
  import { TemplateRef } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
- * Represents a template for suffix adornments in the TextBox component ([see examples](slug:adornments_textbox#toc-suffix-adornments)).
8
+ * Represents a template for suffix adornments in the TextBox component ([see examples](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/adornments#suffix-adornments)).
9
9
  *
10
10
  * @example
11
11
  * ```html
@@ -46,7 +46,7 @@ export declare class TextBoxComponent implements ControlValueAccessor {
46
46
  */
47
47
  type: InputType;
48
48
  /**
49
- * Sets the disabled state of the TextBox. To disable the component in reactive forms, see [Forms Support](slug:formssupport_textbox#toc-managing-the-textbox-disabled-state-in-reactive-forms).
49
+ * Sets the disabled state of the TextBox. To disable the component in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/forms#managing-the-textbox-disabled-state-in-reactive-forms).
50
50
  * @default false
51
51
  */
52
52
  disabled: boolean;
@@ -70,13 +70,13 @@ export declare class TextBoxComponent implements ControlValueAccessor {
70
70
  */
71
71
  selectOnFocus: boolean;
72
72
  /**
73
- * Specifies when to show the Success icon ([see example]({% slug validation_textbox %})).
73
+ * Specifies when to show the Success icon ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/validation-icons)).
74
74
  *
75
75
  * @default false
76
76
  */
77
77
  showSuccessIcon: IconShowOptions;
78
78
  /**
79
- * Specifies when to show the Error icon ([see example]({% slug validation_textbox %})).
79
+ * Specifies when to show the Error icon ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/validation-icons)).
80
80
  *
81
81
  * @default false
82
82
  */
@@ -111,19 +111,19 @@ export declare class TextBoxComponent implements ControlValueAccessor {
111
111
  */
112
112
  clearButtonSvgIcon: SVGIcon;
113
113
  /**
114
- * Sets the padding of the TextBox internal input element ([see example]({% slug appearance_textbox %}#toc-size)).
114
+ * Sets the padding of the TextBox internal input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#size)).
115
115
  * @default 'medium'
116
116
  */
117
117
  set size(size: InputSize);
118
118
  get size(): InputSize;
119
119
  /**
120
- * Sets the border radius of the TextBox ([see example](slug:appearance_textbox#toc-roundness)).
120
+ * Sets the border radius of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#roundness)).
121
121
  * @default 'medium'
122
122
  */
123
123
  set rounded(rounded: InputRounded);
124
124
  get rounded(): InputRounded;
125
125
  /**
126
- * Sets the background and border styles of the TextBox ([see example]({% slug appearance_textbox %}#toc-fill-mode)).
126
+ * Sets the background and border styles of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#fill-mode)).
127
127
  * @default 'solid'
128
128
  */
129
129
  set fillMode(fillMode: InputFillMode);
@@ -151,7 +151,7 @@ export declare class TextBoxComponent implements ControlValueAccessor {
151
151
  [key: string]: string;
152
152
  };
153
153
  /**
154
- * Fires when the value changes—when the component is blurred or the value is cleared through the **Clear** button ([see example](slug:events_textbox)).
154
+ * Fires when the value changes—when the component is blurred or the value is cleared through the **Clear** button ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/events)).
155
155
  * Does not fire when you change the value programmatically through `ngModel` or `formControl`.
156
156
  */
157
157
  valueChange: EventEmitter<any>;
@@ -5,7 +5,7 @@
5
5
  import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, Renderer2, NgZone } from '@angular/core';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
- * Represents the [Kendo UI TextBox directive]({% slug overview_textbox %}) for the Inputs components for Angular.
8
+ * Represents the [Kendo UI TextBox directive](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox) for the Inputs components for Angular.
9
9
  * Use this directive to style the textbox of any `input` element.
10
10
  *
11
11
  * @example