igniteui-webcomponents-inputs 4.2.4-alpha → 4.3.0-beta.0
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/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +98 -98
- package/esm2015/lib/ButtonView_combined.js +2206 -1799
- package/esm2015/lib/CalendarView_combined.js +156 -156
- package/esm2015/lib/CheckboxView_combined.js +532 -458
- package/esm2015/lib/DatePickerView_combined.js +398 -364
- package/esm2015/lib/IconView_combined.js +553 -355
- package/esm2015/lib/InputGroupView_combined.js +2432 -2152
- package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/Theme.js +48 -0
- package/esm2015/lib/ThemeResolver.js +131 -7
- package/esm2015/lib/XButtonBridge.js +218 -22
- package/esm2015/lib/XCheckboxBridge.js +25 -16
- package/esm2015/lib/XComponentBridge.js +20 -6
- package/esm2015/lib/XIconBridge.js +93 -0
- package/esm2015/lib/XIconButtonBridge.js +45 -33
- package/esm2015/lib/XInputBridge.js +91 -38
- package/esm2015/lib/XPopupBridge.js +287 -0
- package/esm2015/lib/igc-date-picker-component.js +60 -58
- package/esm2015/lib/igc-x-button-component.js +694 -546
- package/esm2015/lib/igc-x-button-group-component.js +28 -28
- package/esm2015/lib/igc-x-calendar-component.js +16 -16
- package/esm2015/lib/igc-x-checkbox-component.js +77 -77
- package/esm2015/lib/igc-x-icon-component.js +239 -118
- package/esm2015/lib/igc-x-input-component.js +61 -43
- package/esm2015/lib/igc-x-input-group-component.js +576 -576
- package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
- package/esm2015/lib/igc-x-ripple-component.js +35 -35
- package/esm2015/public_api.js +3 -0
- package/esm5/lib/ButtonClickEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupView_combined.js +176 -176
- package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
- package/esm5/lib/ButtonView_combined.js +2259 -1808
- package/esm5/lib/ButtonVisualModelExport.js +2 -2
- package/esm5/lib/CalendarView_combined.js +181 -181
- package/esm5/lib/CalendarVisualModelExport.js +2 -2
- package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
- package/esm5/lib/CheckboxView_combined.js +561 -483
- package/esm5/lib/CheckboxVisualModelExport.js +2 -2
- package/esm5/lib/DatePickerView_combined.js +421 -383
- package/esm5/lib/DatePickerVisualModelExport.js +2 -2
- package/esm5/lib/DateTimeValueFormatter.js +2 -2
- package/esm5/lib/DayInfo.js +2 -2
- package/esm5/lib/ElevationHelper.js +2 -2
- package/esm5/lib/GotFocusEventArgs.js +2 -2
- package/esm5/lib/IconClickedEventArgs.js +2 -2
- package/esm5/lib/IconView_combined.js +600 -362
- package/esm5/lib/IconVisualModelExport.js +3 -3
- package/esm5/lib/InputChangeEventArgs.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +2534 -2246
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +2 -2
- package/esm5/lib/LabelVisualModelExport.js +2 -2
- package/esm5/lib/LostFocusEventArgs.js +2 -2
- package/esm5/lib/MaskOptions.js +2 -2
- package/esm5/lib/MaskParsingService.js +5 -5
- package/esm5/lib/NativeUIXInputsFactory.js +69 -27
- package/esm5/lib/PrefixVisualModelExport.js +2 -2
- package/esm5/lib/Replaced.js +2 -2
- package/esm5/lib/RippleView_combined.js +17 -17
- package/esm5/lib/RippleVisualModelExport.js +2 -2
- package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
- package/esm5/lib/SuffixVisualModelExport.js +2 -2
- package/esm5/lib/TextElementsVisualModelExport.js +2 -2
- package/esm5/lib/Theme.js +58 -0
- package/esm5/lib/ThemeResolver.js +137 -11
- package/esm5/lib/XButtonBridge.js +220 -24
- package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +27 -18
- package/esm5/lib/XComponentBridge.js +26 -8
- package/esm5/lib/XIconBridge.js +95 -0
- package/esm5/lib/XIconButtonBridge.js +47 -35
- package/esm5/lib/XInputBridge.js +93 -40
- package/esm5/lib/XPopupBridge.js +289 -0
- package/esm5/lib/igc-button-click-event-args.js +1 -1
- package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
- package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
- package/esm5/lib/igc-date-picker-component.js +80 -78
- package/esm5/lib/igc-got-focus-event-args.js +1 -1
- package/esm5/lib/igc-input-change-event-args.js +3 -3
- package/esm5/lib/igc-lost-focus-event-args.js +1 -1
- package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
- package/esm5/lib/igc-x-button-component.js +908 -710
- package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
- package/esm5/lib/igc-x-button-group-component.js +73 -73
- package/esm5/lib/igc-x-calendar-component.js +30 -30
- package/esm5/lib/igc-x-checkbox-component.js +117 -117
- package/esm5/lib/igc-x-icon-component.js +297 -136
- package/esm5/lib/igc-x-input-component.js +104 -78
- package/esm5/lib/igc-x-input-group-component.js +716 -716
- package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
- package/esm5/lib/igc-x-input-group-item-component.js +6 -6
- package/esm5/lib/igc-x-label-component.js +30 -30
- package/esm5/lib/igc-x-prefix-component.js +9 -9
- package/esm5/lib/igc-x-ripple-component.js +19 -19
- package/esm5/lib/igc-x-suffix-component.js +9 -9
- package/esm5/public_api.js +3 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
- package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
- package/lib/ButtonGroupView_combined.d.ts +136 -70
- package/lib/ButtonView_combined.d.ts +609 -583
- package/lib/CalendarView_combined.d.ts +43 -22
- package/lib/CheckboxChangeEventArgs.d.ts +4 -2
- package/lib/CheckboxView_combined.d.ts +150 -117
- package/lib/DatePickerView_combined.d.ts +109 -81
- package/lib/IconView_combined.d.ts +164 -93
- package/lib/IconVisualModelExport.d.ts +2 -1
- package/lib/InputChangeEventArgs.d.ts +4 -2
- package/lib/InputGroupView_combined.d.ts +771 -771
- package/lib/NativeUIXInputsFactory.d.ts +6 -4
- package/lib/RippleView_combined.d.ts +19 -10
- package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
- package/lib/Theme.d.ts +15 -0
- package/lib/ThemeResolver.d.ts +44 -6
- package/lib/XButtonBridge.d.ts +23 -5
- package/lib/XCheckboxBridge.d.ts +3 -3
- package/lib/XComponentBridge.d.ts +2 -1
- package/lib/XIconBridge.d.ts +14 -0
- package/lib/XIconButtonBridge.d.ts +4 -4
- package/lib/XInputBridge.d.ts +11 -7
- package/lib/XPopupBridge.d.ts +52 -0
- package/lib/igc-button-click-event-args.d.ts +1 -1
- package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
- package/lib/igc-checkbox-change-event-args.d.ts +5 -3
- package/lib/igc-date-picker-component.d.ts +65 -34
- package/lib/igc-got-focus-event-args.d.ts +1 -1
- package/lib/igc-input-change-event-args.d.ts +5 -3
- package/lib/igc-lost-focus-event-args.d.ts +1 -1
- package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
- package/lib/igc-x-button-component.d.ts +399 -173
- package/lib/igc-x-button-group-component.d.ts +136 -70
- package/lib/igc-x-calendar-component.d.ts +53 -28
- package/lib/igc-x-checkbox-component.d.ts +71 -37
- package/lib/igc-x-icon-component.d.ts +140 -44
- package/lib/igc-x-input-component.d.ts +69 -32
- package/lib/igc-x-input-group-component.d.ts +325 -165
- package/lib/igc-x-input-group-item-component.d.ts +5 -4
- package/lib/igc-x-label-component.d.ts +52 -27
- package/lib/igc-x-prefix-component.d.ts +10 -6
- package/lib/igc-x-ripple-component.d.ts +31 -17
- package/lib/igc-x-suffix-component.d.ts +10 -6
- package/package.json +2 -2
- package/public_api.d.ts +3 -0
|
@@ -4,6 +4,7 @@ import { IgcInputChangeEventArgs } from './igc-input-change-event-args';
|
|
|
4
4
|
import { ControlDisplayDensity } from "igniteui-webcomponents-core";
|
|
5
5
|
import { IgcKeyEventArgs } from "igniteui-webcomponents-core";
|
|
6
6
|
import { BaseControlTheme } from "igniteui-webcomponents-core";
|
|
7
|
+
import { HorizontalAlignment } from "igniteui-webcomponents-core";
|
|
7
8
|
export declare class IgcXInputComponent extends IgcXInputGroupItemComponent {
|
|
8
9
|
private _portalManager;
|
|
9
10
|
private _container;
|
|
@@ -22,105 +23,135 @@ export declare class IgcXInputComponent extends IgcXInputGroupItemComponent {
|
|
|
22
23
|
/**
|
|
23
24
|
* @hidden
|
|
24
25
|
*/
|
|
25
|
-
|
|
26
|
+
get i(): XInput;
|
|
26
27
|
private static _observedAttributesIgcXInputComponent;
|
|
27
|
-
static
|
|
28
|
+
static get observedAttributes(): string[];
|
|
28
29
|
static htmlTagName: string;
|
|
29
30
|
protected static _isElementRegistered: boolean;
|
|
30
31
|
static register(): void;
|
|
31
32
|
/**
|
|
32
33
|
* Gets or sets the base built in theme to use for the button.
|
|
33
34
|
*/
|
|
34
|
-
baseTheme: BaseControlTheme;
|
|
35
|
+
get baseTheme(): BaseControlTheme;
|
|
36
|
+
set baseTheme(v: BaseControlTheme);
|
|
35
37
|
/**
|
|
36
38
|
* Gets or sets the display density to use for the input.
|
|
37
39
|
*/
|
|
38
|
-
density: ControlDisplayDensity;
|
|
40
|
+
get density(): ControlDisplayDensity;
|
|
41
|
+
set density(v: ControlDisplayDensity);
|
|
39
42
|
/**
|
|
40
43
|
* Gets the actual display density to use for the label.
|
|
41
44
|
*/
|
|
42
|
-
actualDensity: ControlDisplayDensity;
|
|
45
|
+
get actualDensity(): ControlDisplayDensity;
|
|
46
|
+
set actualDensity(v: ControlDisplayDensity);
|
|
43
47
|
/**
|
|
44
48
|
* Gets/Sets the input mask for the input.
|
|
45
49
|
*/
|
|
46
|
-
mask: string;
|
|
50
|
+
get mask(): string;
|
|
51
|
+
set mask(v: string);
|
|
47
52
|
/**
|
|
48
53
|
* Gets/Sets the character representing a fillable spot in the input mask
|
|
49
54
|
*/
|
|
50
|
-
promptChar: string;
|
|
55
|
+
get promptChar(): string;
|
|
56
|
+
set promptChar(v: string);
|
|
51
57
|
/**
|
|
52
58
|
* Specifies if the bound value includes the formatting symbols.
|
|
53
59
|
*/
|
|
54
|
-
includeLiterals: boolean;
|
|
60
|
+
get includeLiterals(): boolean;
|
|
61
|
+
set includeLiterals(v: boolean);
|
|
62
|
+
get showSpinner(): boolean;
|
|
63
|
+
set showSpinner(v: boolean);
|
|
55
64
|
/**
|
|
56
65
|
* Gets the actual color to use for the text color.
|
|
57
66
|
*/
|
|
58
|
-
actualTextColor: string;
|
|
67
|
+
get actualTextColor(): string;
|
|
68
|
+
set actualTextColor(v: string);
|
|
59
69
|
/**
|
|
60
70
|
* Gets the actual hover color to use for the text.
|
|
61
71
|
*/
|
|
62
|
-
actualHoverTextColor: string;
|
|
72
|
+
get actualHoverTextColor(): string;
|
|
73
|
+
set actualHoverTextColor(v: string);
|
|
63
74
|
/**
|
|
64
75
|
* Gets or sets the color to use for the text.
|
|
65
76
|
*/
|
|
66
|
-
textColor: string;
|
|
77
|
+
get textColor(): string;
|
|
78
|
+
set textColor(v: string);
|
|
67
79
|
/**
|
|
68
80
|
* Gets or sets the use for the button.
|
|
69
81
|
*/
|
|
70
|
-
textStyle: string;
|
|
82
|
+
get textStyle(): string;
|
|
83
|
+
set textStyle(v: string);
|
|
71
84
|
/**
|
|
72
85
|
* Gets or sets the type to use for the input.
|
|
73
86
|
*/
|
|
74
|
-
inputType: string;
|
|
87
|
+
get inputType(): string;
|
|
88
|
+
set inputType(v: string);
|
|
75
89
|
/**
|
|
76
90
|
* Gets or sets the placeholder to use for the input.
|
|
77
91
|
*/
|
|
78
|
-
placeholder: string;
|
|
92
|
+
get placeholder(): string;
|
|
93
|
+
set placeholder(v: string);
|
|
79
94
|
/**
|
|
80
95
|
* Gets or sets the color to use for the hovered text of the button regardless of type.
|
|
81
96
|
*/
|
|
82
|
-
hoverTextColor: string;
|
|
97
|
+
get hoverTextColor(): string;
|
|
98
|
+
set hoverTextColor(v: string);
|
|
83
99
|
/**
|
|
84
100
|
* Gets or sets the id to use for the checkbox.
|
|
85
101
|
*/
|
|
86
|
-
id: string;
|
|
102
|
+
get id(): string;
|
|
103
|
+
set id(v: string);
|
|
87
104
|
/**
|
|
88
105
|
* Gets or sets TabIndex to use for the checkbox.
|
|
89
106
|
*/
|
|
90
|
-
tabIndex: number;
|
|
107
|
+
get tabIndex(): number;
|
|
108
|
+
set tabIndex(v: number);
|
|
91
109
|
/**
|
|
92
110
|
* Gets or sets the for attribute to use for the input.
|
|
93
111
|
*/
|
|
94
|
-
for: string;
|
|
112
|
+
get for(): string;
|
|
113
|
+
set for(v: string);
|
|
95
114
|
/**
|
|
96
115
|
* Gets or sets the value of the aria-label attribute.
|
|
97
116
|
*/
|
|
98
|
-
ariaLabel: string;
|
|
117
|
+
get ariaLabel(): string;
|
|
118
|
+
set ariaLabel(v: string);
|
|
99
119
|
/**
|
|
100
120
|
* Gets or sets whether the input is hovered.
|
|
101
121
|
*/
|
|
102
|
-
isHover: boolean;
|
|
122
|
+
get isHover(): boolean;
|
|
123
|
+
set isHover(v: boolean);
|
|
103
124
|
/**
|
|
104
125
|
* Gets or sets the value for the input.
|
|
105
126
|
*/
|
|
106
|
-
value: string;
|
|
107
|
-
|
|
127
|
+
get value(): string;
|
|
128
|
+
set value(v: string);
|
|
129
|
+
get hasValue(): boolean;
|
|
108
130
|
/**
|
|
109
131
|
* Gets or sets whether the checkbox is disabled.
|
|
110
132
|
*/
|
|
111
|
-
disabled: boolean;
|
|
133
|
+
get disabled(): boolean;
|
|
134
|
+
set disabled(v: boolean);
|
|
112
135
|
/**
|
|
113
136
|
* Gets or sets whether the checkbox is readonly.
|
|
114
137
|
*/
|
|
115
|
-
readonly: boolean;
|
|
138
|
+
get readonly(): boolean;
|
|
139
|
+
set readonly(v: boolean);
|
|
140
|
+
/**
|
|
141
|
+
* Gets or sets the alignment of the text.
|
|
142
|
+
*/
|
|
143
|
+
get textAlignment(): HorizontalAlignment;
|
|
144
|
+
set textAlignment(v: HorizontalAlignment);
|
|
116
145
|
/**
|
|
117
146
|
* Returns / Sets the beginning index of the selected text. When nothing is selected, this returns the position of the text input cursor (caret) inside of the input.
|
|
118
147
|
*/
|
|
119
|
-
selectionStart: number;
|
|
148
|
+
get selectionStart(): number;
|
|
149
|
+
set selectionStart(v: number);
|
|
120
150
|
/**
|
|
121
151
|
* Returns / Sets the end index of the selected text. When nothing is selected, this returns the position of the text input cursor (caret) inside of the input.
|
|
122
152
|
*/
|
|
123
|
-
selectionEnd: number;
|
|
153
|
+
get selectionEnd(): number;
|
|
154
|
+
set selectionEnd(v: number);
|
|
124
155
|
onDetachedFromUI(): void;
|
|
125
156
|
onAttachedToUI(): void;
|
|
126
157
|
/**
|
|
@@ -138,20 +169,26 @@ export declare class IgcXInputComponent extends IgcXInputGroupItemComponent {
|
|
|
138
169
|
select(): void;
|
|
139
170
|
private _keyDown;
|
|
140
171
|
private _keyDown_wrapped;
|
|
141
|
-
keyDown: (s: IgcXInputComponent, e: IgcKeyEventArgs) => void;
|
|
172
|
+
get keyDown(): (s: IgcXInputComponent, e: IgcKeyEventArgs) => void;
|
|
173
|
+
set keyDown(ev: (s: IgcXInputComponent, e: IgcKeyEventArgs) => void);
|
|
142
174
|
private _keyUp;
|
|
143
175
|
private _keyUp_wrapped;
|
|
144
|
-
keyUp: (s: IgcXInputComponent, e: IgcKeyEventArgs) => void;
|
|
176
|
+
get keyUp(): (s: IgcXInputComponent, e: IgcKeyEventArgs) => void;
|
|
177
|
+
set keyUp(ev: (s: IgcXInputComponent, e: IgcKeyEventArgs) => void);
|
|
145
178
|
private _keyPress;
|
|
146
179
|
private _keyPress_wrapped;
|
|
147
|
-
keyPress: (s: IgcXInputComponent, e: IgcKeyEventArgs) => void;
|
|
180
|
+
get keyPress(): (s: IgcXInputComponent, e: IgcKeyEventArgs) => void;
|
|
181
|
+
set keyPress(ev: (s: IgcXInputComponent, e: IgcKeyEventArgs) => void);
|
|
148
182
|
private _change;
|
|
149
183
|
private _change_wrapped;
|
|
150
|
-
change: (s: IgcXInputComponent, e: IgcInputChangeEventArgs) => void;
|
|
184
|
+
get change(): (s: IgcXInputComponent, e: IgcInputChangeEventArgs) => void;
|
|
185
|
+
set change(ev: (s: IgcXInputComponent, e: IgcInputChangeEventArgs) => void);
|
|
151
186
|
private _changing;
|
|
152
187
|
private _changing_wrapped;
|
|
153
|
-
changing: (s: IgcXInputComponent, e: IgcInputChangeEventArgs) => void;
|
|
188
|
+
get changing(): (s: IgcXInputComponent, e: IgcInputChangeEventArgs) => void;
|
|
189
|
+
set changing(ev: (s: IgcXInputComponent, e: IgcInputChangeEventArgs) => void);
|
|
154
190
|
private _compositionEnd;
|
|
155
191
|
private _compositionEnd_wrapped;
|
|
156
|
-
compositionEnd: (s: IgcXInputComponent, e: IgcInputChangeEventArgs) => void;
|
|
192
|
+
get compositionEnd(): (s: IgcXInputComponent, e: IgcInputChangeEventArgs) => void;
|
|
193
|
+
set compositionEnd(ev: (s: IgcXInputComponent, e: IgcInputChangeEventArgs) => void);
|
|
157
194
|
}
|