igniteui-webcomponents-inputs 4.2.5 → 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
|
@@ -8,15 +8,17 @@ import { NativeUIComponentBuiltInType } from "igniteui-webcomponents-core";
|
|
|
8
8
|
export declare class NativeUIXInputsFactory extends Base implements INativeUIElementFactory {
|
|
9
9
|
static $t: Type;
|
|
10
10
|
private static a;
|
|
11
|
-
static
|
|
12
|
-
static
|
|
11
|
+
static get b(): NativeUIXInputsFactory;
|
|
12
|
+
static j(): void;
|
|
13
13
|
private c;
|
|
14
|
-
|
|
14
|
+
get flavor(): NativeUIElementFactoryFlavor;
|
|
15
15
|
createComponent(a: any, b: NativeUIComponentBuiltInType, c: (arg1: any) => void): void;
|
|
16
16
|
createComponentSync(a: any, b: NativeUIComponentBuiltInType, c: (arg1: any) => void): void;
|
|
17
17
|
supportsComponent(a: NativeUIComponentBuiltInType): boolean;
|
|
18
|
-
private
|
|
18
|
+
private h;
|
|
19
19
|
private d;
|
|
20
20
|
private e;
|
|
21
|
+
private g;
|
|
21
22
|
private f;
|
|
23
|
+
private i;
|
|
22
24
|
}
|
|
@@ -54,30 +54,39 @@ export declare class XRipple extends Base implements INotifyPropertyChanged {
|
|
|
54
54
|
af(): void;
|
|
55
55
|
ag(): void;
|
|
56
56
|
private p;
|
|
57
|
-
q: any;
|
|
57
|
+
get q(): any;
|
|
58
|
+
set q(a: any);
|
|
58
59
|
private ar;
|
|
59
|
-
ax: Brush;
|
|
60
|
+
get ax(): Brush;
|
|
61
|
+
set ax(a: Brush);
|
|
60
62
|
private aq;
|
|
61
|
-
aw: Brush;
|
|
63
|
+
get aw(): Brush;
|
|
64
|
+
set aw(a: Brush);
|
|
62
65
|
static au: Brush;
|
|
63
66
|
private ao;
|
|
64
|
-
as: Brush;
|
|
67
|
+
get as(): Brush;
|
|
68
|
+
set as(a: Brush);
|
|
65
69
|
private m;
|
|
66
70
|
al(a: number, b: number, c: number, d: number): void;
|
|
67
71
|
private d;
|
|
68
72
|
static av: Brush;
|
|
69
73
|
private ap;
|
|
70
|
-
at: Brush;
|
|
74
|
+
get at(): Brush;
|
|
75
|
+
set at(a: Brush);
|
|
71
76
|
private n;
|
|
72
|
-
o: number;
|
|
77
|
+
get o(): number;
|
|
78
|
+
set o(a: number);
|
|
73
79
|
private f;
|
|
74
|
-
i: boolean;
|
|
80
|
+
get i(): boolean;
|
|
81
|
+
set i(a: boolean);
|
|
75
82
|
private e;
|
|
76
|
-
h: boolean;
|
|
83
|
+
get h(): boolean;
|
|
84
|
+
set h(a: boolean);
|
|
77
85
|
private g;
|
|
78
|
-
k: boolean;
|
|
86
|
+
get k(): boolean;
|
|
87
|
+
set k(a: boolean);
|
|
79
88
|
ai(): void;
|
|
80
|
-
private
|
|
89
|
+
private get a();
|
|
81
90
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
82
91
|
onDetachedFromUI(): void;
|
|
83
92
|
onAttachedToUI(): void;
|
|
@@ -5,7 +5,9 @@ import { EventArgs, Type } from "igniteui-webcomponents-core";
|
|
|
5
5
|
export declare class SelectedValueChangedEventArgs extends EventArgs {
|
|
6
6
|
static $t: Type;
|
|
7
7
|
private _oldValue;
|
|
8
|
-
oldValue: Date;
|
|
8
|
+
get oldValue(): Date;
|
|
9
|
+
set oldValue(a: Date);
|
|
9
10
|
private _newValue;
|
|
10
|
-
newValue: Date;
|
|
11
|
+
get newValue(): Date;
|
|
12
|
+
set newValue(a: Date);
|
|
11
13
|
}
|
package/lib/Theme.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
+
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class Theme extends Base {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
private b;
|
|
9
|
+
private a;
|
|
10
|
+
get c(): Dictionary$2<any, Theme>;
|
|
11
|
+
constructor(a: number, b: Dictionary$2<string, any>);
|
|
12
|
+
constructor(a: number, b: Dictionary$2<string, any>, c: Dictionary$2<any, Theme>);
|
|
13
|
+
constructor(a: number, ..._rest: any[]);
|
|
14
|
+
item(a: string): any;
|
|
15
|
+
}
|
package/lib/ThemeResolver.d.ts
CHANGED
|
@@ -4,15 +4,53 @@ import { BaseControlTheme } from "igniteui-webcomponents-core";
|
|
|
4
4
|
import { CornerRadius } from "igniteui-webcomponents-core";
|
|
5
5
|
import { Thickness } from "igniteui-webcomponents-core";
|
|
6
6
|
import { ElevationMode } from "igniteui-webcomponents-core";
|
|
7
|
+
import { Theme } from "./Theme";
|
|
8
|
+
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
7
9
|
/**
|
|
8
10
|
* @hidden
|
|
9
11
|
*/
|
|
10
12
|
export declare class ThemeResolver extends Base {
|
|
11
13
|
static $t: Type;
|
|
12
|
-
static
|
|
13
|
-
static
|
|
14
|
-
static
|
|
15
|
-
static
|
|
16
|
-
static
|
|
17
|
-
static
|
|
14
|
+
static ah(a: BaseControlTheme, b: Brush, c: Brush): Brush;
|
|
15
|
+
static r(a: BaseControlTheme, b: number, c: number): number;
|
|
16
|
+
static m(a: BaseControlTheme, b: number, c: number): number;
|
|
17
|
+
static ac(a: BaseControlTheme, b: CornerRadius, c: CornerRadius): CornerRadius;
|
|
18
|
+
static am(a: BaseControlTheme, b: Thickness, c: Thickness): Thickness;
|
|
19
|
+
static g(a: BaseControlTheme, b: ElevationMode, c: ElevationMode): ElevationMode;
|
|
20
|
+
static a(a: Dictionary$2<string, any>): Theme;
|
|
21
|
+
static ag(a: BaseControlTheme, b: ThemeResolver, c: string): Brush;
|
|
22
|
+
static af(a: BaseControlTheme, b: ThemeResolver, c: any, d: string): Brush;
|
|
23
|
+
static q(a: BaseControlTheme, b: ThemeResolver, c: string): number;
|
|
24
|
+
static p(a: BaseControlTheme, b: ThemeResolver, c: any, d: string): number;
|
|
25
|
+
static l(a: BaseControlTheme, b: ThemeResolver, c: string): number;
|
|
26
|
+
static k(a: BaseControlTheme, b: ThemeResolver, c: any, d: string): number;
|
|
27
|
+
static x(a: BaseControlTheme, b: ThemeResolver, c: string): string;
|
|
28
|
+
static w(a: BaseControlTheme, b: ThemeResolver, c: any, d: string): string;
|
|
29
|
+
static f(a: BaseControlTheme, b: ThemeResolver, c: string): ElevationMode;
|
|
30
|
+
static e(a: BaseControlTheme, b: ThemeResolver, c: any, d: string): ElevationMode;
|
|
31
|
+
static ab(a: BaseControlTheme, b: ThemeResolver, c: string): CornerRadius;
|
|
32
|
+
static aa(a: BaseControlTheme, b: ThemeResolver, c: any, d: string): CornerRadius;
|
|
33
|
+
static al(a: BaseControlTheme, b: ThemeResolver, c: string): Thickness;
|
|
34
|
+
static ak(a: BaseControlTheme, b: ThemeResolver, c: any, d: string): Thickness;
|
|
35
|
+
private b;
|
|
36
|
+
private h;
|
|
37
|
+
constructor(a: number);
|
|
38
|
+
constructor(a: number, b: Dictionary$2<BaseControlTheme, Theme>, c: BaseControlTheme);
|
|
39
|
+
constructor(a: number, ..._rest: any[]);
|
|
40
|
+
t(a: BaseControlTheme, b: string): any;
|
|
41
|
+
s(a: BaseControlTheme, b: any, c: string): any;
|
|
42
|
+
ae(a: BaseControlTheme, b: string): Brush;
|
|
43
|
+
ad(a: BaseControlTheme, b: any, c: string): Brush;
|
|
44
|
+
o(a: BaseControlTheme, b: string): number;
|
|
45
|
+
n(a: BaseControlTheme, b: any, c: string): number;
|
|
46
|
+
j(a: BaseControlTheme, b: string): number;
|
|
47
|
+
i(a: BaseControlTheme, b: any, c: string): number;
|
|
48
|
+
v(a: BaseControlTheme, b: string): string;
|
|
49
|
+
u(a: BaseControlTheme, b: any, c: string): string;
|
|
50
|
+
d(a: BaseControlTheme, b: string): ElevationMode;
|
|
51
|
+
c(a: BaseControlTheme, b: any, c: string): ElevationMode;
|
|
52
|
+
z(a: BaseControlTheme, b: string): CornerRadius;
|
|
53
|
+
y(a: BaseControlTheme, b: any, c: string): CornerRadius;
|
|
54
|
+
aj(a: BaseControlTheme, b: string): Thickness;
|
|
55
|
+
ai(a: BaseControlTheme, b: any, c: string): Thickness;
|
|
18
56
|
}
|
package/lib/XButtonBridge.d.ts
CHANGED
|
@@ -3,19 +3,37 @@ import { Type } from "igniteui-webcomponents-core";
|
|
|
3
3
|
import { NativeUIComponent } from "igniteui-webcomponents-core";
|
|
4
4
|
import { NativeUIBuiltInEvents } from "igniteui-webcomponents-core";
|
|
5
5
|
import { NativeUIBuiltInProperties } from "igniteui-webcomponents-core";
|
|
6
|
+
import { NativeUIComponentHorizontalAlignment } from "igniteui-webcomponents-core";
|
|
7
|
+
import { NativeUIComponentVerticalAlignment } from "igniteui-webcomponents-core";
|
|
6
8
|
/**
|
|
7
9
|
* @hidden
|
|
8
10
|
*/
|
|
9
11
|
export declare class XButtonBridge extends XComponentBridge {
|
|
10
12
|
static $t: Type;
|
|
11
|
-
private
|
|
12
|
-
private
|
|
13
|
-
private
|
|
14
|
-
private
|
|
13
|
+
private ac;
|
|
14
|
+
private aa;
|
|
15
|
+
private u;
|
|
16
|
+
private z;
|
|
17
|
+
private x;
|
|
18
|
+
private ae;
|
|
19
|
+
private y;
|
|
20
|
+
private af;
|
|
21
|
+
private v;
|
|
22
|
+
private ab;
|
|
23
|
+
private w;
|
|
24
|
+
private ad;
|
|
15
25
|
constructor(a: any);
|
|
16
26
|
addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
|
|
17
27
|
removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
|
|
18
|
-
private
|
|
28
|
+
private ag;
|
|
29
|
+
private aj;
|
|
30
|
+
private ak;
|
|
31
|
+
private ah;
|
|
32
|
+
private ai;
|
|
19
33
|
setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
|
|
20
34
|
getValue(a: any, b: NativeUIBuiltInProperties): any;
|
|
35
|
+
setHorizontalContentAlignment(a: any, b: NativeUIComponentHorizontalAlignment): void;
|
|
36
|
+
getHorizontalContentAlignment(a: any): NativeUIComponentHorizontalAlignment;
|
|
37
|
+
setVerticalContentAlignment(a: any, b: NativeUIComponentVerticalAlignment): void;
|
|
38
|
+
getVerticalContentAlignment(a: any): NativeUIComponentVerticalAlignment;
|
|
21
39
|
}
|
package/lib/XCheckboxBridge.d.ts
CHANGED
|
@@ -8,12 +8,12 @@ import { NativeUIBuiltInProperties } from "igniteui-webcomponents-core";
|
|
|
8
8
|
*/
|
|
9
9
|
export declare class XCheckboxBridge extends XComponentBridge {
|
|
10
10
|
static $t: Type;
|
|
11
|
-
private
|
|
12
|
-
private
|
|
11
|
+
private u;
|
|
12
|
+
private v;
|
|
13
13
|
constructor(a: any);
|
|
14
14
|
addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
|
|
15
15
|
removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
|
|
16
|
-
private
|
|
16
|
+
private w;
|
|
17
17
|
getValue(a: any, b: NativeUIBuiltInProperties): any;
|
|
18
18
|
setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
|
|
19
19
|
}
|
|
@@ -8,7 +8,8 @@ import { NativeUIBuiltInProperties } from "igniteui-webcomponents-core";
|
|
|
8
8
|
*/
|
|
9
9
|
export declare class XComponentBridge extends NativeUIElementBridge {
|
|
10
10
|
static $t: Type;
|
|
11
|
-
private
|
|
11
|
+
private s;
|
|
12
|
+
get t(): any;
|
|
12
13
|
constructor(a: any);
|
|
13
14
|
getTargetForProperty(a: UIElementPropertyId, b: any): any;
|
|
14
15
|
getMethodTarget(a: any): any;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { XComponentBridge } from "./XComponentBridge";
|
|
2
|
+
import { Type } from "igniteui-webcomponents-core";
|
|
3
|
+
import { NativeUIBuiltInProperties } from "igniteui-webcomponents-core";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class XIconBridge extends XComponentBridge {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
private u;
|
|
10
|
+
private v;
|
|
11
|
+
constructor(a: any);
|
|
12
|
+
getValue(a: any, b: NativeUIBuiltInProperties): any;
|
|
13
|
+
setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
|
|
14
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { XButtonBridge } from "./XButtonBridge";
|
|
2
2
|
import { Type } from "igniteui-webcomponents-core";
|
|
3
3
|
import { NativeUIBuiltInProperties } from "igniteui-webcomponents-core";
|
|
4
|
+
import { UIElementPropertyId } from "igniteui-webcomponents-core";
|
|
4
5
|
/**
|
|
5
6
|
* @hidden
|
|
6
7
|
*/
|
|
7
8
|
export declare class XIconButtonBridge extends XButtonBridge {
|
|
8
9
|
static $t: Type;
|
|
9
|
-
private
|
|
10
|
-
private j;
|
|
11
|
-
private k;
|
|
10
|
+
private al;
|
|
12
11
|
constructor(a: any, b: any);
|
|
12
|
+
getTargetForBuildInProperty(a: any, b: NativeUIBuiltInProperties): any;
|
|
13
|
+
getTargetForProperty(a: UIElementPropertyId, b: any): any;
|
|
13
14
|
getValue(a: any, b: NativeUIBuiltInProperties): any;
|
|
14
15
|
setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
|
|
15
|
-
getTargetForBuildInProperty(a: any, b: NativeUIBuiltInProperties): any;
|
|
16
16
|
}
|
package/lib/XInputBridge.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { XComponentBridge } from "./XComponentBridge";
|
|
2
|
+
import { INativeUIInputBridge } from "igniteui-webcomponents-core";
|
|
2
3
|
import { Type } from "igniteui-webcomponents-core";
|
|
3
4
|
import { NativeUIComponent } from "igniteui-webcomponents-core";
|
|
4
5
|
import { NativeUIBuiltInEvents } from "igniteui-webcomponents-core";
|
|
@@ -7,18 +8,21 @@ import { UIElementPropertyId } from "igniteui-webcomponents-core";
|
|
|
7
8
|
/**
|
|
8
9
|
* @hidden
|
|
9
10
|
*/
|
|
10
|
-
export declare class XInputBridge extends XComponentBridge {
|
|
11
|
+
export declare class XInputBridge extends XComponentBridge implements INativeUIInputBridge {
|
|
11
12
|
static $t: Type;
|
|
12
|
-
private
|
|
13
|
-
private
|
|
14
|
-
private
|
|
15
|
-
private
|
|
13
|
+
private v;
|
|
14
|
+
private u;
|
|
15
|
+
private x;
|
|
16
|
+
private w;
|
|
16
17
|
constructor(a: any);
|
|
17
18
|
addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
|
|
18
19
|
removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
|
|
19
|
-
private
|
|
20
|
-
private
|
|
20
|
+
private z;
|
|
21
|
+
private y;
|
|
21
22
|
getValue(a: any, b: NativeUIBuiltInProperties): any;
|
|
22
23
|
setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
|
|
23
24
|
getTargetForProperty(a: UIElementPropertyId, b: any): any;
|
|
25
|
+
focus(a: any): void;
|
|
26
|
+
select(a: any): void;
|
|
27
|
+
setSelectionRange(a: any, b: number, c: number): void;
|
|
24
28
|
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { XComponentBridge } from "./XComponentBridge";
|
|
2
|
+
import { INativeUIPopupBridge } from "igniteui-webcomponents-core";
|
|
3
|
+
import { NativeUIComponent } from "igniteui-webcomponents-core";
|
|
4
|
+
import { Type } from "igniteui-webcomponents-core";
|
|
5
|
+
import { NativeUIBuiltInEvents } from "igniteui-webcomponents-core";
|
|
6
|
+
import { NativeUIBuiltInProperties } from "igniteui-webcomponents-core";
|
|
7
|
+
import { Rect } from "igniteui-webcomponents-core";
|
|
8
|
+
import { NativeUIPopupDirection } from "igniteui-webcomponents-core";
|
|
9
|
+
import { NativeUIPopupAlignment } from "igniteui-webcomponents-core";
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export declare class XPopupBridge extends XComponentBridge implements INativeUIPopupBridge {
|
|
14
|
+
static $t: Type;
|
|
15
|
+
private ai;
|
|
16
|
+
private ad;
|
|
17
|
+
private ag;
|
|
18
|
+
private ah;
|
|
19
|
+
private ae;
|
|
20
|
+
private af;
|
|
21
|
+
private ab;
|
|
22
|
+
private aa;
|
|
23
|
+
private y;
|
|
24
|
+
private z;
|
|
25
|
+
private w;
|
|
26
|
+
private x;
|
|
27
|
+
constructor(a: any);
|
|
28
|
+
contains(a: any, b: any): boolean;
|
|
29
|
+
addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
|
|
30
|
+
removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
|
|
31
|
+
private ao;
|
|
32
|
+
private aj;
|
|
33
|
+
private am;
|
|
34
|
+
private an;
|
|
35
|
+
private ak;
|
|
36
|
+
private al;
|
|
37
|
+
getValue(a: any, b: NativeUIBuiltInProperties): any;
|
|
38
|
+
setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
|
|
39
|
+
showRelativeToExclusionRect(a: any, b: Rect, c: NativeUIPopupDirection, d: NativeUIPopupAlignment): void;
|
|
40
|
+
close(a: any): void;
|
|
41
|
+
notifyContentSizeChanged(a: any): void;
|
|
42
|
+
notifyExclusionRectChanged(a: any, b: Rect): void;
|
|
43
|
+
private v;
|
|
44
|
+
private u;
|
|
45
|
+
private ac;
|
|
46
|
+
addChild(a: any, b: NativeUIComponent): void;
|
|
47
|
+
insertChild(a: any, b: number, c: NativeUIComponent): void;
|
|
48
|
+
getChildAt(a: any, b: number): NativeUIComponent;
|
|
49
|
+
getChildrenCount(a: any): number;
|
|
50
|
+
removeChild(a: any, b: NativeUIComponent): void;
|
|
51
|
+
removeChildAt(a: any, b: number): void;
|
|
52
|
+
}
|
|
@@ -5,7 +5,7 @@ export declare class IgcButtonGroupSelectionChangedEventArgs {
|
|
|
5
5
|
/**
|
|
6
6
|
* @hidden
|
|
7
7
|
*/
|
|
8
|
-
|
|
8
|
+
get i(): ButtonGroupSelectionChangedEventArgs_internal;
|
|
9
9
|
private onImplementationCreated;
|
|
10
10
|
constructor();
|
|
11
11
|
protected _provideImplementation(i: any): void;
|
|
@@ -5,10 +5,12 @@ export declare class IgcCheckboxChangeEventArgs {
|
|
|
5
5
|
/**
|
|
6
6
|
* @hidden
|
|
7
7
|
*/
|
|
8
|
-
|
|
8
|
+
get i(): CheckboxChangeEventArgs_internal;
|
|
9
9
|
private onImplementationCreated;
|
|
10
10
|
constructor();
|
|
11
11
|
protected _provideImplementation(i: any): void;
|
|
12
|
-
isChecked: boolean;
|
|
13
|
-
|
|
12
|
+
get isChecked(): boolean;
|
|
13
|
+
set isChecked(v: boolean);
|
|
14
|
+
get isIndeterminate(): boolean;
|
|
15
|
+
set isIndeterminate(v: boolean);
|
|
14
16
|
}
|
|
@@ -13,8 +13,10 @@ import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
|
13
13
|
export declare class IgcDatePickerComponent extends IgcHTMLElement {
|
|
14
14
|
private _height;
|
|
15
15
|
private _width;
|
|
16
|
-
height: string;
|
|
17
|
-
|
|
16
|
+
set height(value: string);
|
|
17
|
+
get height(): string;
|
|
18
|
+
set width(value: string);
|
|
19
|
+
get width(): string;
|
|
18
20
|
private _container;
|
|
19
21
|
private _renderer;
|
|
20
22
|
constructor();
|
|
@@ -31,7 +33,7 @@ export declare class IgcDatePickerComponent extends IgcHTMLElement {
|
|
|
31
33
|
/**
|
|
32
34
|
* @hidden
|
|
33
35
|
*/
|
|
34
|
-
|
|
36
|
+
get i(): DatePicker; /**
|
|
35
37
|
* @hidden
|
|
36
38
|
*/
|
|
37
39
|
static _createFromInternal(internal: any): IgcDatePickerComponent;
|
|
@@ -42,7 +44,7 @@ export declare class IgcDatePickerComponent extends IgcHTMLElement {
|
|
|
42
44
|
protected _flushQueuedAttributes(): void;
|
|
43
45
|
protected _a(attrName: string, attrValue: any): void;
|
|
44
46
|
private static _observedAttributesIgcDatePickerComponent;
|
|
45
|
-
static
|
|
47
|
+
static get observedAttributes(): string[];
|
|
46
48
|
private _updatingFromAttribute;
|
|
47
49
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
48
50
|
static htmlTagName: string;
|
|
@@ -51,95 +53,118 @@ export declare class IgcDatePickerComponent extends IgcHTMLElement {
|
|
|
51
53
|
/**
|
|
52
54
|
* Gets or Sets the property name that contains the values.
|
|
53
55
|
*/
|
|
54
|
-
value: Date;
|
|
56
|
+
get value(): Date;
|
|
57
|
+
set value(v: Date);
|
|
55
58
|
/**
|
|
56
59
|
* Gets or Sets the property name that contains the values.
|
|
57
60
|
*/
|
|
58
|
-
today: Date;
|
|
61
|
+
get today(): Date;
|
|
62
|
+
set today(v: Date);
|
|
59
63
|
/**
|
|
60
64
|
* Gets or Sets the property name that contains the label.
|
|
61
65
|
*/
|
|
62
|
-
label: string;
|
|
66
|
+
get label(): string;
|
|
67
|
+
set label(v: string);
|
|
63
68
|
/**
|
|
64
69
|
* Gets or sets the color to use for the text.
|
|
65
70
|
*/
|
|
66
|
-
labelTextColor: string;
|
|
71
|
+
get labelTextColor(): string;
|
|
72
|
+
set labelTextColor(v: string);
|
|
67
73
|
/**
|
|
68
74
|
* Gets or sets the font to use for the combobox.
|
|
69
75
|
*/
|
|
70
|
-
labelTextStyle: string;
|
|
76
|
+
get labelTextStyle(): string;
|
|
77
|
+
set labelTextStyle(v: string);
|
|
71
78
|
/**
|
|
72
79
|
* Gets or Sets the property name that contains the placeholder.
|
|
73
80
|
*/
|
|
74
|
-
placeholder: string;
|
|
81
|
+
get placeholder(): string;
|
|
82
|
+
set placeholder(v: string);
|
|
75
83
|
/**
|
|
76
84
|
* Gets or Sets the property name that contains the MinDate.
|
|
77
85
|
*/
|
|
78
|
-
minDate: Date;
|
|
86
|
+
get minDate(): Date;
|
|
87
|
+
set minDate(v: Date);
|
|
79
88
|
/**
|
|
80
89
|
* Gets or Sets the property name that contains the MaxDate.
|
|
81
90
|
*/
|
|
82
|
-
maxDate: Date;
|
|
91
|
+
get maxDate(): Date;
|
|
92
|
+
set maxDate(v: Date);
|
|
83
93
|
/**
|
|
84
94
|
* Gets or sets the display density to use for the date pcicker.
|
|
85
95
|
*/
|
|
86
|
-
density: ControlDisplayDensity;
|
|
96
|
+
get density(): ControlDisplayDensity;
|
|
97
|
+
set density(v: ControlDisplayDensity);
|
|
87
98
|
/**
|
|
88
99
|
* Gets or sets the base built in theme to use for the date picker.
|
|
89
100
|
*/
|
|
90
|
-
baseTheme: BaseControlTheme;
|
|
101
|
+
get baseTheme(): BaseControlTheme;
|
|
102
|
+
set baseTheme(v: BaseControlTheme);
|
|
91
103
|
/**
|
|
92
104
|
* Gets or sets the font to use for the combobox.
|
|
93
105
|
*/
|
|
94
|
-
textStyle: string;
|
|
106
|
+
get textStyle(): string;
|
|
107
|
+
set textStyle(v: string);
|
|
95
108
|
/**
|
|
96
109
|
* Gets or Sets the text color
|
|
97
110
|
*/
|
|
98
|
-
textColor: string;
|
|
111
|
+
get textColor(): string;
|
|
112
|
+
set textColor(v: string);
|
|
99
113
|
/**
|
|
100
114
|
* Gets or Sets the text color
|
|
101
115
|
*/
|
|
102
|
-
iconColor: string;
|
|
116
|
+
get iconColor(): string;
|
|
117
|
+
set iconColor(v: string);
|
|
103
118
|
/**
|
|
104
119
|
* Gets or sets the ShowClearButton property to detirmine if the clear button is shown
|
|
105
120
|
*/
|
|
106
|
-
showClearButton: boolean;
|
|
121
|
+
get showClearButton(): boolean;
|
|
122
|
+
set showClearButton(v: boolean);
|
|
107
123
|
/**
|
|
108
124
|
* Gets or sets the ShowTodayButton property to detirmine if the today button is shown
|
|
109
125
|
*/
|
|
110
|
-
showTodayButton: boolean;
|
|
126
|
+
get showTodayButton(): boolean;
|
|
127
|
+
set showTodayButton(v: boolean);
|
|
111
128
|
/**
|
|
112
129
|
* Gets or sets the AllowTextInput property to detirmine if entering text into the input is allowed
|
|
113
130
|
*/
|
|
114
|
-
allowTextInput: boolean;
|
|
131
|
+
get allowTextInput(): boolean;
|
|
132
|
+
set allowTextInput(v: boolean);
|
|
115
133
|
/**
|
|
116
134
|
* Gets or sets the AllowTextInput property to detirmine if entering text into the input is allowed
|
|
117
135
|
*/
|
|
118
|
-
openOnFocus: boolean;
|
|
136
|
+
get openOnFocus(): boolean;
|
|
137
|
+
set openOnFocus(v: boolean);
|
|
119
138
|
/**
|
|
120
139
|
* Gets or sets the FirstDayOfWeek property to detirmine first day of the week
|
|
121
140
|
*/
|
|
122
|
-
firstDayOfWeek: DayOfWeek;
|
|
141
|
+
get firstDayOfWeek(): DayOfWeek;
|
|
142
|
+
set firstDayOfWeek(v: DayOfWeek);
|
|
123
143
|
/**
|
|
124
144
|
* Gets or sets the FirstWeekOfYear property to detirmine first week of the year
|
|
125
145
|
*/
|
|
126
|
-
firstWeekOfYear: FirstWeek;
|
|
146
|
+
get firstWeekOfYear(): FirstWeek;
|
|
147
|
+
set firstWeekOfYear(v: FirstWeek);
|
|
127
148
|
/**
|
|
128
149
|
* Gets or sets the ShowWeekNumbers property to detirmine if the week numbers are shown
|
|
129
150
|
*/
|
|
130
|
-
showWeekNumbers: boolean;
|
|
151
|
+
get showWeekNumbers(): boolean;
|
|
152
|
+
set showWeekNumbers(v: boolean);
|
|
131
153
|
/**
|
|
132
154
|
* Gets or sets the date time format to use for this column. If FormatString is specificied this value is ignored.
|
|
133
155
|
*/
|
|
134
|
-
dateFormat: DateFormats;
|
|
156
|
+
get dateFormat(): DateFormats;
|
|
157
|
+
set dateFormat(v: DateFormats);
|
|
135
158
|
/**
|
|
136
159
|
* Gets or sets the Format property to detirmine the format of the date in the input
|
|
137
160
|
*/
|
|
138
|
-
formatString: string;
|
|
139
|
-
|
|
161
|
+
get formatString(): string;
|
|
162
|
+
set formatString(v: string);
|
|
163
|
+
get isDisabled(): boolean;
|
|
164
|
+
set isDisabled(v: boolean);
|
|
140
165
|
protected __p: string;
|
|
141
166
|
protected _hasUserValues: Set<string>;
|
|
142
|
-
protected
|
|
167
|
+
protected get hasUserValues(): Set<string>;
|
|
143
168
|
protected __m(propertyName: string): void;
|
|
144
169
|
protected _stylingContainer: any;
|
|
145
170
|
protected _stylingParent: any;
|
|
@@ -161,20 +186,26 @@ export declare class IgcDatePickerComponent extends IgcHTMLElement {
|
|
|
161
186
|
/**
|
|
162
187
|
* Called when date is selected.
|
|
163
188
|
*/
|
|
164
|
-
selectedValueChanged: (s: IgcDatePickerComponent, e: IgcSelectedValueChangedEventArgs) => void;
|
|
189
|
+
get selectedValueChanged(): (s: IgcDatePickerComponent, e: IgcSelectedValueChangedEventArgs) => void;
|
|
190
|
+
set selectedValueChanged(ev: (s: IgcDatePickerComponent, e: IgcSelectedValueChangedEventArgs) => void);
|
|
165
191
|
private _gotFocus;
|
|
166
192
|
private _gotFocus_wrapped;
|
|
167
|
-
gotFocus: (s: IgcDatePickerComponent, e: IgcGotFocusEventArgs) => void;
|
|
193
|
+
get gotFocus(): (s: IgcDatePickerComponent, e: IgcGotFocusEventArgs) => void;
|
|
194
|
+
set gotFocus(ev: (s: IgcDatePickerComponent, e: IgcGotFocusEventArgs) => void);
|
|
168
195
|
private _lostFocus;
|
|
169
196
|
private _lostFocus_wrapped;
|
|
170
|
-
lostFocus: (s: IgcDatePickerComponent, e: IgcLostFocusEventArgs) => void;
|
|
197
|
+
get lostFocus(): (s: IgcDatePickerComponent, e: IgcLostFocusEventArgs) => void;
|
|
198
|
+
set lostFocus(ev: (s: IgcDatePickerComponent, e: IgcLostFocusEventArgs) => void);
|
|
171
199
|
private _keyDown;
|
|
172
200
|
private _keyDown_wrapped;
|
|
173
|
-
keyDown: (s: IgcDatePickerComponent, e: IgcKeyEventArgs) => void;
|
|
201
|
+
get keyDown(): (s: IgcDatePickerComponent, e: IgcKeyEventArgs) => void;
|
|
202
|
+
set keyDown(ev: (s: IgcDatePickerComponent, e: IgcKeyEventArgs) => void);
|
|
174
203
|
private _changing;
|
|
175
204
|
private _changing_wrapped;
|
|
176
|
-
changing: (s: IgcDatePickerComponent, e: IgcInputChangeEventArgs) => void;
|
|
205
|
+
get changing(): (s: IgcDatePickerComponent, e: IgcInputChangeEventArgs) => void;
|
|
206
|
+
set changing(ev: (s: IgcDatePickerComponent, e: IgcInputChangeEventArgs) => void);
|
|
177
207
|
private _valueChange;
|
|
178
208
|
private _valueChange_wrapped;
|
|
179
|
-
valueChange: (s: IgcDatePickerComponent, e: Date) => void;
|
|
209
|
+
get valueChange(): (s: IgcDatePickerComponent, e: Date) => void;
|
|
210
|
+
set valueChange(ev: (s: IgcDatePickerComponent, e: Date) => void);
|
|
180
211
|
}
|
|
@@ -5,10 +5,12 @@ export declare class IgcInputChangeEventArgs {
|
|
|
5
5
|
/**
|
|
6
6
|
* @hidden
|
|
7
7
|
*/
|
|
8
|
-
|
|
8
|
+
get i(): InputChangeEventArgs_internal;
|
|
9
9
|
private onImplementationCreated;
|
|
10
10
|
constructor();
|
|
11
11
|
protected _provideImplementation(i: any): void;
|
|
12
|
-
value: string;
|
|
13
|
-
|
|
12
|
+
get value(): string;
|
|
13
|
+
set value(v: string);
|
|
14
|
+
get isCompositionInProgress(): boolean;
|
|
15
|
+
set isCompositionInProgress(v: boolean);
|
|
14
16
|
}
|
|
@@ -5,10 +5,12 @@ export declare class IgcSelectedValueChangedEventArgs {
|
|
|
5
5
|
/**
|
|
6
6
|
* @hidden
|
|
7
7
|
*/
|
|
8
|
-
|
|
8
|
+
get i(): SelectedValueChangedEventArgs_internal;
|
|
9
9
|
private onImplementationCreated;
|
|
10
10
|
constructor();
|
|
11
11
|
protected _provideImplementation(i: any): void;
|
|
12
|
-
oldValue: Date;
|
|
13
|
-
|
|
12
|
+
get oldValue(): Date;
|
|
13
|
+
set oldValue(v: Date);
|
|
14
|
+
get newValue(): Date;
|
|
15
|
+
set newValue(v: Date);
|
|
14
16
|
}
|