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
|
@@ -6,7 +6,7 @@ export declare abstract class IgcXInputGroupItemComponent extends IgcHTMLElement
|
|
|
6
6
|
/**
|
|
7
7
|
* @hidden
|
|
8
8
|
*/
|
|
9
|
-
|
|
9
|
+
get i(): XInputGroupItem; /**
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
12
12
|
static _createFromInternal(internal: any): IgcXInputGroupItemComponent;
|
|
@@ -21,17 +21,18 @@ export declare abstract class IgcXInputGroupItemComponent extends IgcHTMLElement
|
|
|
21
21
|
connectedCallback(): void;
|
|
22
22
|
disconnectedCallback(): void;
|
|
23
23
|
private static _observedAttributesIgcXInputGroupItemComponent;
|
|
24
|
-
static
|
|
24
|
+
static get observedAttributes(): string[];
|
|
25
25
|
private _updatingFromAttribute;
|
|
26
26
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
27
27
|
/**
|
|
28
28
|
* Gets or sets name to use for the button.
|
|
29
29
|
*/
|
|
30
|
-
name: string;
|
|
30
|
+
get name(): string;
|
|
31
|
+
set name(v: string);
|
|
31
32
|
findByName(name: string): any;
|
|
32
33
|
protected __p: string;
|
|
33
34
|
protected _hasUserValues: Set<string>;
|
|
34
|
-
protected
|
|
35
|
+
protected get hasUserValues(): Set<string>;
|
|
35
36
|
protected __m(propertyName: string): void;
|
|
36
37
|
protected _stylingContainer: any;
|
|
37
38
|
protected _stylingParent: any;
|
|
@@ -25,112 +25,137 @@ export declare class IgcXLabelComponent extends IgcXInputGroupItemComponent {
|
|
|
25
25
|
/**
|
|
26
26
|
* @hidden
|
|
27
27
|
*/
|
|
28
|
-
|
|
28
|
+
get i(): XLabel;
|
|
29
29
|
private static _observedAttributesIgcXLabelComponent;
|
|
30
|
-
static
|
|
30
|
+
static get observedAttributes(): string[];
|
|
31
31
|
static htmlTagName: string;
|
|
32
32
|
protected static _isElementRegistered: boolean;
|
|
33
33
|
static register(): void;
|
|
34
34
|
/**
|
|
35
35
|
* Gets or sets the base built in theme to use for the label.
|
|
36
36
|
*/
|
|
37
|
-
baseTheme: BaseControlTheme;
|
|
37
|
+
get baseTheme(): BaseControlTheme;
|
|
38
|
+
set baseTheme(v: BaseControlTheme);
|
|
38
39
|
/**
|
|
39
40
|
* Gets or sets the display density to use for the label.
|
|
40
41
|
*/
|
|
41
|
-
density: ControlDisplayDensity;
|
|
42
|
+
get density(): ControlDisplayDensity;
|
|
43
|
+
set density(v: ControlDisplayDensity);
|
|
42
44
|
/**
|
|
43
45
|
* Gets the actual display density to use for the label.
|
|
44
46
|
*/
|
|
45
|
-
actualDensity: ControlDisplayDensity;
|
|
47
|
+
get actualDensity(): ControlDisplayDensity;
|
|
48
|
+
set actualDensity(v: ControlDisplayDensity);
|
|
46
49
|
/**
|
|
47
50
|
* Gets the actual color to use for the text color.
|
|
48
51
|
*/
|
|
49
|
-
actualTextColor: string;
|
|
52
|
+
get actualTextColor(): string;
|
|
53
|
+
set actualTextColor(v: string);
|
|
50
54
|
/**
|
|
51
55
|
* Gets the actual color to use for the text color.
|
|
52
56
|
*/
|
|
53
|
-
actualHighlightTextColor: string;
|
|
57
|
+
get actualHighlightTextColor(): string;
|
|
58
|
+
set actualHighlightTextColor(v: string);
|
|
54
59
|
/**
|
|
55
60
|
* Gets the actual color to use for the text color when highlighted and hovered.
|
|
56
61
|
*/
|
|
57
|
-
actualHoverHighlightTextColor: string;
|
|
62
|
+
get actualHoverHighlightTextColor(): string;
|
|
63
|
+
set actualHoverHighlightTextColor(v: string);
|
|
58
64
|
/**
|
|
59
65
|
* Gets the actual hover color to use for the text.
|
|
60
66
|
*/
|
|
61
|
-
actualHoverTextColor: string;
|
|
67
|
+
get actualHoverTextColor(): string;
|
|
68
|
+
set actualHoverTextColor(v: string);
|
|
62
69
|
/**
|
|
63
70
|
* Gets or sets the color to use for the text.
|
|
64
71
|
*/
|
|
65
|
-
textColor: string;
|
|
72
|
+
get textColor(): string;
|
|
73
|
+
set textColor(v: string);
|
|
66
74
|
/**
|
|
67
75
|
* Gets or sets the color to use for the text.
|
|
68
76
|
*/
|
|
69
|
-
highlightTextColor: string;
|
|
77
|
+
get highlightTextColor(): string;
|
|
78
|
+
set highlightTextColor(v: string);
|
|
70
79
|
/**
|
|
71
80
|
* Gets or sets the color to use for the text.
|
|
72
81
|
*/
|
|
73
|
-
hoverHighlightTextColor: string;
|
|
82
|
+
get hoverHighlightTextColor(): string;
|
|
83
|
+
set hoverHighlightTextColor(v: string);
|
|
74
84
|
/**
|
|
75
85
|
* Gets or sets the use for the button.
|
|
76
86
|
*/
|
|
77
|
-
textStyle: string;
|
|
87
|
+
get textStyle(): string;
|
|
88
|
+
set textStyle(v: string);
|
|
78
89
|
/**
|
|
79
90
|
* Gets or sets the color to use for the hovered text of the button regardless of type.
|
|
80
91
|
*/
|
|
81
|
-
hoverTextColor: string;
|
|
92
|
+
get hoverTextColor(): string;
|
|
93
|
+
set hoverTextColor(v: string);
|
|
82
94
|
/**
|
|
83
95
|
* Gets or sets the id to use for the checkbox.
|
|
84
96
|
*/
|
|
85
|
-
id: string;
|
|
97
|
+
get id(): string;
|
|
98
|
+
set id(v: string);
|
|
86
99
|
/**
|
|
87
100
|
* Gets or sets the id to use for the checkbox.
|
|
88
101
|
*/
|
|
89
|
-
display: string;
|
|
102
|
+
get display(): string;
|
|
103
|
+
set display(v: string);
|
|
90
104
|
/**
|
|
91
105
|
* Gets or sets the id to use for the checkbox.
|
|
92
106
|
*/
|
|
93
|
-
flexDirection: string;
|
|
107
|
+
get flexDirection(): string;
|
|
108
|
+
set flexDirection(v: string);
|
|
94
109
|
/**
|
|
95
110
|
* Gets or sets the flex-grow setting for the button.
|
|
96
111
|
*/
|
|
97
|
-
flexGrow: string;
|
|
112
|
+
get flexGrow(): string;
|
|
113
|
+
set flexGrow(v: string);
|
|
98
114
|
/**
|
|
99
115
|
* Gets or sets the id to use for the checkbox.
|
|
100
116
|
*/
|
|
101
|
-
alignItems: string;
|
|
117
|
+
get alignItems(): string;
|
|
118
|
+
set alignItems(v: string);
|
|
102
119
|
/**
|
|
103
120
|
* Gets or sets the id to use for the checkbox.
|
|
104
121
|
*/
|
|
105
|
-
alignSelf: string;
|
|
122
|
+
get alignSelf(): string;
|
|
123
|
+
set alignSelf(v: string);
|
|
106
124
|
/**
|
|
107
125
|
* Gets or sets TabIndex to use for the checkbox.
|
|
108
126
|
*/
|
|
109
|
-
tabIndex: number;
|
|
127
|
+
get tabIndex(): number;
|
|
128
|
+
set tabIndex(v: number);
|
|
110
129
|
/**
|
|
111
130
|
* Gets or sets the for attribute to use for the label.
|
|
112
131
|
*/
|
|
113
|
-
for: string;
|
|
132
|
+
get for(): string;
|
|
133
|
+
set for(v: string);
|
|
114
134
|
/**
|
|
115
135
|
* Gets or sets the value of the aria-label attribute.
|
|
116
136
|
*/
|
|
117
|
-
ariaLabel: string;
|
|
137
|
+
get ariaLabel(): string;
|
|
138
|
+
set ariaLabel(v: string);
|
|
118
139
|
/**
|
|
119
140
|
* Gets or sets the text for the label.
|
|
120
141
|
*/
|
|
121
|
-
text: string;
|
|
142
|
+
get text(): string;
|
|
143
|
+
set text(v: string);
|
|
122
144
|
/**
|
|
123
145
|
* Gets or sets whether the label is hovered.
|
|
124
146
|
*/
|
|
125
|
-
isHover: boolean;
|
|
147
|
+
get isHover(): boolean;
|
|
148
|
+
set isHover(v: boolean);
|
|
126
149
|
/**
|
|
127
150
|
* Gets or sets the value for the label.
|
|
128
151
|
*/
|
|
129
|
-
value: boolean;
|
|
152
|
+
get value(): boolean;
|
|
153
|
+
set value(v: boolean);
|
|
130
154
|
/**
|
|
131
155
|
* Gets or sets whether the checkbox is disabled.
|
|
132
156
|
*/
|
|
133
|
-
disabled: boolean;
|
|
157
|
+
get disabled(): boolean;
|
|
158
|
+
set disabled(v: boolean);
|
|
134
159
|
onDetachedFromUI(): void;
|
|
135
160
|
onAttachedToUI(): void;
|
|
136
161
|
/**
|
|
@@ -18,28 +18,32 @@ export declare class IgcXPrefixComponent extends IgcXInputGroupItemComponent {
|
|
|
18
18
|
/**
|
|
19
19
|
* @hidden
|
|
20
20
|
*/
|
|
21
|
-
|
|
21
|
+
get i(): XPrefix;
|
|
22
22
|
private static _observedAttributesIgcXPrefixComponent;
|
|
23
|
-
static
|
|
23
|
+
static get observedAttributes(): string[];
|
|
24
24
|
static htmlTagName: string;
|
|
25
25
|
protected static _isElementRegistered: boolean;
|
|
26
26
|
static register(): void;
|
|
27
27
|
/**
|
|
28
28
|
* Gets or sets the id to use for the checkbox.
|
|
29
29
|
*/
|
|
30
|
-
id: string;
|
|
30
|
+
get id(): string;
|
|
31
|
+
set id(v: string);
|
|
31
32
|
/**
|
|
32
33
|
* Gets or sets the value of the aria-label attribute.
|
|
33
34
|
*/
|
|
34
|
-
ariaLabel: string;
|
|
35
|
+
get ariaLabel(): string;
|
|
36
|
+
set ariaLabel(v: string);
|
|
35
37
|
/**
|
|
36
38
|
* Gets or sets whether the prefix is hovered.
|
|
37
39
|
*/
|
|
38
|
-
isHover: boolean;
|
|
40
|
+
get isHover(): boolean;
|
|
41
|
+
set isHover(v: boolean);
|
|
39
42
|
/**
|
|
40
43
|
* Gets or sets whether the checkbox is disabled.
|
|
41
44
|
*/
|
|
42
|
-
disabled: boolean;
|
|
45
|
+
get disabled(): boolean;
|
|
46
|
+
set disabled(v: boolean);
|
|
43
47
|
onDetachedFromUI(): void;
|
|
44
48
|
onAttachedToUI(): void;
|
|
45
49
|
/**
|
|
@@ -3,14 +3,19 @@ import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
|
3
3
|
export declare class IgcXRippleComponent extends IgcHTMLElement {
|
|
4
4
|
private _height;
|
|
5
5
|
private _width;
|
|
6
|
-
height: string;
|
|
7
|
-
|
|
6
|
+
set height(value: string);
|
|
7
|
+
get height(): string;
|
|
8
|
+
set width(value: string);
|
|
9
|
+
get width(): string;
|
|
8
10
|
private _top;
|
|
9
11
|
private _left;
|
|
10
|
-
top: string;
|
|
11
|
-
|
|
12
|
+
set top(value: string);
|
|
13
|
+
get top(): string;
|
|
14
|
+
set left(value: string);
|
|
15
|
+
get left(): string;
|
|
12
16
|
private _position;
|
|
13
|
-
position: string;
|
|
17
|
+
set position(value: string);
|
|
18
|
+
get position(): string;
|
|
14
19
|
private _container;
|
|
15
20
|
private _renderer;
|
|
16
21
|
constructor();
|
|
@@ -27,7 +32,7 @@ export declare class IgcXRippleComponent extends IgcHTMLElement {
|
|
|
27
32
|
/**
|
|
28
33
|
* @hidden
|
|
29
34
|
*/
|
|
30
|
-
|
|
35
|
+
get i(): XRipple; /**
|
|
31
36
|
* @hidden
|
|
32
37
|
*/
|
|
33
38
|
static _createFromInternal(internal: any): IgcXRippleComponent;
|
|
@@ -38,7 +43,7 @@ export declare class IgcXRippleComponent extends IgcHTMLElement {
|
|
|
38
43
|
protected _flushQueuedAttributes(): void;
|
|
39
44
|
protected _a(attrName: string, attrValue: any): void;
|
|
40
45
|
private static _observedAttributesIgcXRippleComponent;
|
|
41
|
-
static
|
|
46
|
+
static get observedAttributes(): string[];
|
|
42
47
|
private _updatingFromAttribute;
|
|
43
48
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
44
49
|
static htmlTagName: string;
|
|
@@ -47,43 +52,52 @@ export declare class IgcXRippleComponent extends IgcHTMLElement {
|
|
|
47
52
|
/**
|
|
48
53
|
* Gets or sets the target element to inject ripples into.
|
|
49
54
|
*/
|
|
50
|
-
eventSource: any;
|
|
55
|
+
get eventSource(): any;
|
|
56
|
+
set eventSource(v: any);
|
|
51
57
|
/**
|
|
52
58
|
* Gets or sets the color to use for the background when the checkbox is unchecked.
|
|
53
59
|
*/
|
|
54
|
-
rippleColor: string;
|
|
60
|
+
get rippleColor(): string;
|
|
61
|
+
set rippleColor(v: string);
|
|
55
62
|
/**
|
|
56
63
|
* Gets or sets the color to use for the background when the ripple is hovered.
|
|
57
64
|
*/
|
|
58
|
-
hoverColor: string;
|
|
65
|
+
get hoverColor(): string;
|
|
66
|
+
set hoverColor(v: string);
|
|
59
67
|
/**
|
|
60
68
|
* Gets or sets the actual color to use for the background when the ripple is hovered.
|
|
61
69
|
*/
|
|
62
|
-
actualHoverColor: string;
|
|
70
|
+
get actualHoverColor(): string;
|
|
71
|
+
set actualHoverColor(v: string);
|
|
63
72
|
/**
|
|
64
73
|
* Gets or sets the color to use for the actual background when the checkbox is unchecked.
|
|
65
74
|
*/
|
|
66
|
-
actualRippleColor: string;
|
|
75
|
+
get actualRippleColor(): string;
|
|
76
|
+
set actualRippleColor(v: string);
|
|
67
77
|
/**
|
|
68
78
|
* Gets or sets the duration to use for the ripple animation.
|
|
69
79
|
*/
|
|
70
|
-
rippleDuration: number;
|
|
80
|
+
get rippleDuration(): number;
|
|
81
|
+
set rippleDuration(v: number);
|
|
71
82
|
/**
|
|
72
83
|
* Gets or sets if the ripple is disabled.
|
|
73
84
|
*/
|
|
74
|
-
isDisabled: boolean;
|
|
85
|
+
get isDisabled(): boolean;
|
|
86
|
+
set isDisabled(v: boolean);
|
|
75
87
|
/**
|
|
76
88
|
* Gets or sets if the ripple is centered.
|
|
77
89
|
*/
|
|
78
|
-
isCentered: boolean;
|
|
90
|
+
get isCentered(): boolean;
|
|
91
|
+
set isCentered(v: boolean);
|
|
79
92
|
/**
|
|
80
93
|
* Gets or sets if the ripple is centered.
|
|
81
94
|
*/
|
|
82
|
-
isHoverEnabled: boolean;
|
|
95
|
+
get isHoverEnabled(): boolean;
|
|
96
|
+
set isHoverEnabled(v: boolean);
|
|
83
97
|
findByName(name: string): any;
|
|
84
98
|
protected __p: string;
|
|
85
99
|
protected _hasUserValues: Set<string>;
|
|
86
|
-
protected
|
|
100
|
+
protected get hasUserValues(): Set<string>;
|
|
87
101
|
protected __m(propertyName: string): void;
|
|
88
102
|
protected _stylingContainer: any;
|
|
89
103
|
protected _stylingParent: any;
|
|
@@ -18,28 +18,32 @@ export declare class IgcXSuffixComponent extends IgcXInputGroupItemComponent {
|
|
|
18
18
|
/**
|
|
19
19
|
* @hidden
|
|
20
20
|
*/
|
|
21
|
-
|
|
21
|
+
get i(): XSuffix;
|
|
22
22
|
private static _observedAttributesIgcXSuffixComponent;
|
|
23
|
-
static
|
|
23
|
+
static get observedAttributes(): string[];
|
|
24
24
|
static htmlTagName: string;
|
|
25
25
|
protected static _isElementRegistered: boolean;
|
|
26
26
|
static register(): void;
|
|
27
27
|
/**
|
|
28
28
|
* Gets or sets the id to use for the checkbox.
|
|
29
29
|
*/
|
|
30
|
-
id: string;
|
|
30
|
+
get id(): string;
|
|
31
|
+
set id(v: string);
|
|
31
32
|
/**
|
|
32
33
|
* Gets or sets the value of the aria-label attribute.
|
|
33
34
|
*/
|
|
34
|
-
ariaLabel: string;
|
|
35
|
+
get ariaLabel(): string;
|
|
36
|
+
set ariaLabel(v: string);
|
|
35
37
|
/**
|
|
36
38
|
* Gets or sets whether the suffix is hovered.
|
|
37
39
|
*/
|
|
38
|
-
isHover: boolean;
|
|
40
|
+
get isHover(): boolean;
|
|
41
|
+
set isHover(v: boolean);
|
|
39
42
|
/**
|
|
40
43
|
* Gets or sets whether the checkbox is disabled.
|
|
41
44
|
*/
|
|
42
|
-
disabled: boolean;
|
|
45
|
+
get disabled(): boolean;
|
|
46
|
+
set disabled(v: boolean);
|
|
43
47
|
onDetachedFromUI(): void;
|
|
44
48
|
onAttachedToUI(): void;
|
|
45
49
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-inputs",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0-beta.0",
|
|
4
4
|
"description": "Ignite UI WebComponents inputs components.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-inputs",
|
|
6
6
|
"keywords": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"tslib": "^2.3.1"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"igniteui-webcomponents-core": "4.
|
|
17
|
+
"igniteui-webcomponents-core": "4.3.0-beta.0"
|
|
18
18
|
},
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"typings": "igniteui-webcomponents-inputs.d.ts",
|
package/public_api.d.ts
CHANGED
|
@@ -47,6 +47,8 @@ export * from './lib/XButtonBridge';
|
|
|
47
47
|
export * from './lib/XCheckboxBridge';
|
|
48
48
|
export * from './lib/XIconButtonBridge';
|
|
49
49
|
export * from './lib/XInputBridge';
|
|
50
|
+
export * from './lib/XIconBridge';
|
|
51
|
+
export * from './lib/XPopupBridge';
|
|
50
52
|
export * from './lib/KEYCODES';
|
|
51
53
|
export * from './lib/MaskOptions';
|
|
52
54
|
export * from './lib/Replaced';
|
|
@@ -89,6 +91,7 @@ export * from './lib/XIcon';
|
|
|
89
91
|
export * from './lib/IconClickedEventArgs';
|
|
90
92
|
export * from './lib/XButton';
|
|
91
93
|
export * from './lib/ThemeResolver';
|
|
94
|
+
export * from './lib/Theme';
|
|
92
95
|
export * from './lib/ButtonDisplayStyle';
|
|
93
96
|
export * from './lib/ButtonClickEventArgs';
|
|
94
97
|
export * from './lib/igc-button-click-event-args';
|