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.
Files changed (146) hide show
  1. package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
  2. package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +98 -98
  4. package/esm2015/lib/ButtonView_combined.js +2206 -1799
  5. package/esm2015/lib/CalendarView_combined.js +156 -156
  6. package/esm2015/lib/CheckboxView_combined.js +532 -458
  7. package/esm2015/lib/DatePickerView_combined.js +398 -364
  8. package/esm2015/lib/IconView_combined.js +553 -355
  9. package/esm2015/lib/InputGroupView_combined.js +2432 -2152
  10. package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
  11. package/esm2015/lib/RippleView_combined.js +1 -1
  12. package/esm2015/lib/Theme.js +48 -0
  13. package/esm2015/lib/ThemeResolver.js +131 -7
  14. package/esm2015/lib/XButtonBridge.js +218 -22
  15. package/esm2015/lib/XCheckboxBridge.js +25 -16
  16. package/esm2015/lib/XComponentBridge.js +20 -6
  17. package/esm2015/lib/XIconBridge.js +93 -0
  18. package/esm2015/lib/XIconButtonBridge.js +45 -33
  19. package/esm2015/lib/XInputBridge.js +91 -38
  20. package/esm2015/lib/XPopupBridge.js +287 -0
  21. package/esm2015/lib/igc-date-picker-component.js +60 -58
  22. package/esm2015/lib/igc-x-button-component.js +694 -546
  23. package/esm2015/lib/igc-x-button-group-component.js +28 -28
  24. package/esm2015/lib/igc-x-calendar-component.js +16 -16
  25. package/esm2015/lib/igc-x-checkbox-component.js +77 -77
  26. package/esm2015/lib/igc-x-icon-component.js +239 -118
  27. package/esm2015/lib/igc-x-input-component.js +61 -43
  28. package/esm2015/lib/igc-x-input-group-component.js +576 -576
  29. package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
  30. package/esm2015/lib/igc-x-ripple-component.js +35 -35
  31. package/esm2015/public_api.js +3 -0
  32. package/esm5/lib/ButtonClickEventArgs.js +2 -2
  33. package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
  34. package/esm5/lib/ButtonGroupView_combined.js +176 -176
  35. package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
  36. package/esm5/lib/ButtonView_combined.js +2259 -1808
  37. package/esm5/lib/ButtonVisualModelExport.js +2 -2
  38. package/esm5/lib/CalendarView_combined.js +181 -181
  39. package/esm5/lib/CalendarVisualModelExport.js +2 -2
  40. package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
  41. package/esm5/lib/CheckboxView_combined.js +561 -483
  42. package/esm5/lib/CheckboxVisualModelExport.js +2 -2
  43. package/esm5/lib/DatePickerView_combined.js +421 -383
  44. package/esm5/lib/DatePickerVisualModelExport.js +2 -2
  45. package/esm5/lib/DateTimeValueFormatter.js +2 -2
  46. package/esm5/lib/DayInfo.js +2 -2
  47. package/esm5/lib/ElevationHelper.js +2 -2
  48. package/esm5/lib/GotFocusEventArgs.js +2 -2
  49. package/esm5/lib/IconClickedEventArgs.js +2 -2
  50. package/esm5/lib/IconView_combined.js +600 -362
  51. package/esm5/lib/IconVisualModelExport.js +3 -3
  52. package/esm5/lib/InputChangeEventArgs.js +4 -4
  53. package/esm5/lib/InputGroupView_combined.js +2534 -2246
  54. package/esm5/lib/InputGroupVisualModelExport.js +2 -2
  55. package/esm5/lib/InputVisualModelExport.js +2 -2
  56. package/esm5/lib/LabelVisualModelExport.js +2 -2
  57. package/esm5/lib/LostFocusEventArgs.js +2 -2
  58. package/esm5/lib/MaskOptions.js +2 -2
  59. package/esm5/lib/MaskParsingService.js +5 -5
  60. package/esm5/lib/NativeUIXInputsFactory.js +69 -27
  61. package/esm5/lib/PrefixVisualModelExport.js +2 -2
  62. package/esm5/lib/Replaced.js +2 -2
  63. package/esm5/lib/RippleView_combined.js +17 -17
  64. package/esm5/lib/RippleVisualModelExport.js +2 -2
  65. package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
  66. package/esm5/lib/SuffixVisualModelExport.js +2 -2
  67. package/esm5/lib/TextElementsVisualModelExport.js +2 -2
  68. package/esm5/lib/Theme.js +58 -0
  69. package/esm5/lib/ThemeResolver.js +137 -11
  70. package/esm5/lib/XButtonBridge.js +220 -24
  71. package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
  72. package/esm5/lib/XCheckboxBridge.js +27 -18
  73. package/esm5/lib/XComponentBridge.js +26 -8
  74. package/esm5/lib/XIconBridge.js +95 -0
  75. package/esm5/lib/XIconButtonBridge.js +47 -35
  76. package/esm5/lib/XInputBridge.js +93 -40
  77. package/esm5/lib/XPopupBridge.js +289 -0
  78. package/esm5/lib/igc-button-click-event-args.js +1 -1
  79. package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
  80. package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
  81. package/esm5/lib/igc-date-picker-component.js +80 -78
  82. package/esm5/lib/igc-got-focus-event-args.js +1 -1
  83. package/esm5/lib/igc-input-change-event-args.js +3 -3
  84. package/esm5/lib/igc-lost-focus-event-args.js +1 -1
  85. package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
  86. package/esm5/lib/igc-x-button-component.js +908 -710
  87. package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
  88. package/esm5/lib/igc-x-button-group-component.js +73 -73
  89. package/esm5/lib/igc-x-calendar-component.js +30 -30
  90. package/esm5/lib/igc-x-checkbox-component.js +117 -117
  91. package/esm5/lib/igc-x-icon-component.js +297 -136
  92. package/esm5/lib/igc-x-input-component.js +104 -78
  93. package/esm5/lib/igc-x-input-group-component.js +716 -716
  94. package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
  95. package/esm5/lib/igc-x-input-group-item-component.js +6 -6
  96. package/esm5/lib/igc-x-label-component.js +30 -30
  97. package/esm5/lib/igc-x-prefix-component.js +9 -9
  98. package/esm5/lib/igc-x-ripple-component.js +19 -19
  99. package/esm5/lib/igc-x-suffix-component.js +9 -9
  100. package/esm5/public_api.js +3 -0
  101. package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
  102. package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
  103. package/lib/ButtonGroupView_combined.d.ts +136 -70
  104. package/lib/ButtonView_combined.d.ts +609 -583
  105. package/lib/CalendarView_combined.d.ts +43 -22
  106. package/lib/CheckboxChangeEventArgs.d.ts +4 -2
  107. package/lib/CheckboxView_combined.d.ts +150 -117
  108. package/lib/DatePickerView_combined.d.ts +109 -81
  109. package/lib/IconView_combined.d.ts +164 -93
  110. package/lib/IconVisualModelExport.d.ts +2 -1
  111. package/lib/InputChangeEventArgs.d.ts +4 -2
  112. package/lib/InputGroupView_combined.d.ts +771 -771
  113. package/lib/NativeUIXInputsFactory.d.ts +6 -4
  114. package/lib/RippleView_combined.d.ts +19 -10
  115. package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
  116. package/lib/Theme.d.ts +15 -0
  117. package/lib/ThemeResolver.d.ts +44 -6
  118. package/lib/XButtonBridge.d.ts +23 -5
  119. package/lib/XCheckboxBridge.d.ts +3 -3
  120. package/lib/XComponentBridge.d.ts +2 -1
  121. package/lib/XIconBridge.d.ts +14 -0
  122. package/lib/XIconButtonBridge.d.ts +4 -4
  123. package/lib/XInputBridge.d.ts +11 -7
  124. package/lib/XPopupBridge.d.ts +52 -0
  125. package/lib/igc-button-click-event-args.d.ts +1 -1
  126. package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
  127. package/lib/igc-checkbox-change-event-args.d.ts +5 -3
  128. package/lib/igc-date-picker-component.d.ts +65 -34
  129. package/lib/igc-got-focus-event-args.d.ts +1 -1
  130. package/lib/igc-input-change-event-args.d.ts +5 -3
  131. package/lib/igc-lost-focus-event-args.d.ts +1 -1
  132. package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
  133. package/lib/igc-x-button-component.d.ts +399 -173
  134. package/lib/igc-x-button-group-component.d.ts +136 -70
  135. package/lib/igc-x-calendar-component.d.ts +53 -28
  136. package/lib/igc-x-checkbox-component.d.ts +71 -37
  137. package/lib/igc-x-icon-component.d.ts +140 -44
  138. package/lib/igc-x-input-component.d.ts +69 -32
  139. package/lib/igc-x-input-group-component.d.ts +325 -165
  140. package/lib/igc-x-input-group-item-component.d.ts +5 -4
  141. package/lib/igc-x-label-component.d.ts +52 -27
  142. package/lib/igc-x-prefix-component.d.ts +10 -6
  143. package/lib/igc-x-ripple-component.d.ts +31 -17
  144. package/lib/igc-x-suffix-component.d.ts +10 -6
  145. package/package.json +2 -2
  146. package/public_api.d.ts +3 -0
@@ -1,9 +1,14 @@
1
1
  import { Base, Type, INotifyPropertyChanged, PropertyChangedEventArgs } from "igniteui-webcomponents-core";
2
2
  import { DomRenderer } from "igniteui-webcomponents-core";
3
+ import { List$1 } from "igniteui-webcomponents-core";
4
+ import { Tuple$2 } from "igniteui-webcomponents-core";
5
+ import { SVGNode } from "igniteui-webcomponents-core";
6
+ import { FastIterationDictionary$2 } from "igniteui-webcomponents-core";
3
7
  import { FontInfo } from "igniteui-webcomponents-core";
4
8
  import { IIcon } from "igniteui-webcomponents-core";
5
9
  import { BaseControlTheme } from "igniteui-webcomponents-core";
6
10
  import { Brush } from "igniteui-webcomponents-core";
11
+ import { BrushCollection } from "igniteui-webcomponents-core";
7
12
  import { IconClickedEventArgs } from "./IconClickedEventArgs";
8
13
  import { IconVisualModelExport } from "./IconVisualModelExport";
9
14
  /**
@@ -13,30 +18,40 @@ export declare class IconView extends Base {
13
18
  static $t: Type;
14
19
  constructor();
15
20
  b: XIcon;
16
- u(): void;
17
- e(): boolean;
18
- h: DomRenderer;
19
- private c;
20
- private g;
21
- readonly k: any;
22
- readonly l: any;
23
- readonly f: boolean;
24
- s(a: DomRenderer): void;
25
- private m;
26
- x(a: string): void;
27
- w(): void;
28
- private n;
29
- v(): void;
30
- private o;
31
- private p;
32
- private d;
21
+ ac(): void;
22
+ g(): boolean;
23
+ o: DomRenderer;
24
+ private e;
33
25
  private i;
34
- private j;
35
- q(): void;
36
- t(): void;
37
- y(a: FontInfo): void;
26
+ get r(): any;
27
+ get s(): any;
28
+ get h(): boolean;
29
+ j: List$1<Tuple$2<SVGNode, any>>;
30
+ k: List$1<Tuple$2<SVGNode, any>>;
31
+ l: List$1<Tuple$2<SVGNode, any>>;
32
+ m: List$1<Tuple$2<SVGNode, any>>;
33
+ n: List$1<Tuple$2<SVGNode, any>>;
34
+ c: FastIterationDictionary$2<string, List$1<Tuple$2<SVGNode, any>>>;
35
+ d: FastIterationDictionary$2<string, List$1<Tuple$2<SVGNode, any>>>;
36
+ aa(a: DomRenderer): void;
37
+ private u;
38
+ ag(a: string): void;
39
+ private t;
40
+ af(a: string): void;
41
+ ae(): void;
42
+ ai(): void;
43
+ private v;
44
+ ad(): void;
45
+ private w;
46
+ private x;
47
+ private f;
48
+ private p;
49
+ private q;
50
+ y(): void;
51
+ ab(): void;
52
+ ah(a: FontInfo): void;
38
53
  a(): number[];
39
- private r;
54
+ private z;
40
55
  }
41
56
  /**
42
57
  * @hidden
@@ -45,83 +60,139 @@ export declare class XIcon extends Base implements INotifyPropertyChanged, IIcon
45
60
  static $t: Type;
46
61
  constructor();
47
62
  private _view;
48
- view: IconView;
63
+ get view(): IconView;
64
+ set view(a: IconView);
49
65
  destroy(): void;
50
- protected bf(a: string, b: any, c: any): void;
51
- protected bh(a: string, b: any, c: any): void;
52
- private bl;
53
- protected readonly l: boolean;
54
- private bk;
55
- private bj;
56
- static b2: Brush;
57
- static b6: Brush;
58
- static b5: Brush;
59
- static b3: Brush;
60
- static b4: Brush;
61
- static x: number;
62
- static w: number;
63
- private d;
64
- e: BaseControlTheme;
65
- private bm;
66
- bx: Brush;
67
- private bq;
68
- b1: Brush;
69
- private bn;
70
- by: Brush;
71
- private bo;
72
- bz: Brush;
73
- private bp;
74
- b0: Brush;
75
- private p;
76
- u: number;
77
- private q;
78
- v: number;
79
- private br;
80
- fill: Brush;
81
- private bw;
82
- cb: Brush;
83
- private ah;
84
- svgPath: string;
85
- private bs;
86
- b7: Brush;
87
- private bt;
88
- b8: Brush;
89
- private bv;
90
- ca: Brush;
91
- private r;
92
- y: number;
93
- private t;
94
- aa: number;
95
- bd(): void;
96
- be(): void;
97
- private f;
98
- g: FontInfo;
99
- private bu;
100
- b9: Brush;
101
- private static ad;
102
- private ag;
103
- ay: string;
104
- private ab;
66
+ protected b5(a: string, b: any, c: any): void;
67
+ protected b7(a: string, b: any, c: any): void;
68
+ private cb;
69
+ protected get p(): boolean;
70
+ private ca;
71
+ private b9;
72
+ static cs: Brush;
73
+ static cx: Brush;
74
+ static cw: Brush;
75
+ static ct: Brush;
76
+ static cu: Brush;
77
+ static cv: Brush;
78
+ static af: number;
79
+ static ae: number;
105
80
  private h;
106
- readonly k: boolean;
107
- ac: number;
108
- private af;
109
- ap: string;
81
+ get i(): BaseControlTheme;
82
+ set i(a: BaseControlTheme);
83
+ private cc;
84
+ get cp(): Brush;
85
+ set cp(a: Brush);
86
+ private cd;
87
+ get cq(): Brush;
88
+ set cq(a: Brush);
89
+ private ce;
90
+ get cr(): Brush;
91
+ set cr(a: Brush);
92
+ private t;
93
+ get ad(): number;
94
+ set ad(a: number);
95
+ private cf;
96
+ get fill(): Brush;
97
+ set fill(a: Brush);
98
+ private cn;
99
+ get c5(): Brush;
100
+ set c5(a: Brush);
101
+ private x;
102
+ get aj(): number;
103
+ set aj(a: number);
104
+ private co;
105
+ get c6(): Brush;
106
+ set c6(a: Brush);
107
+ private cg;
108
+ get cy(): Brush;
109
+ set cy(a: Brush);
110
+ private ch;
111
+ get cz(): Brush;
112
+ set cz(a: Brush);
113
+ private v;
114
+ get ah(): number;
115
+ set ah(a: number);
116
+ private ci;
117
+ get c0(): Brush;
118
+ set c0(a: Brush);
119
+ private a;
120
+ get c(): BrushCollection;
121
+ set c(a: BrushCollection);
122
+ private b;
123
+ get d(): BrushCollection;
124
+ set d(a: BrushCollection);
125
+ private cj;
126
+ get c1(): Brush;
127
+ set c1(a: Brush);
128
+ private ck;
129
+ get c2(): Brush;
130
+ set c2(a: Brush);
131
+ private cl;
132
+ get c3(): Brush;
133
+ set c3(a: Brush);
134
+ private cm;
135
+ get c4(): Brush;
136
+ set c4(a: Brush);
137
+ private aw;
138
+ get svgPath(): string;
139
+ set svgPath(a: string);
140
+ private av;
141
+ get svg(): string;
142
+ set svg(a: string);
143
+ b3(): void;
144
+ b4(): void;
110
145
  private j;
111
- n: boolean;
112
- private i;
113
- disabled: boolean;
114
- private s;
115
- z: number;
116
- bg(): void;
146
+ get k(): FontInfo;
147
+ set k(a: FontInfo);
148
+ private static ar;
149
+ private au;
150
+ get bc(): string;
151
+ set bc(a: string);
152
+ private ap;
153
+ private l;
154
+ get o(): boolean;
155
+ get aq(): number;
156
+ set aq(a: number);
157
+ private at;
158
+ get a1(): string;
159
+ set a1(a: string);
160
+ private n;
161
+ get r(): boolean;
162
+ set r(a: boolean);
163
+ private m;
164
+ get disabled(): boolean;
165
+ set disabled(a: boolean);
166
+ private w;
167
+ get ai(): number;
168
+ set ai(a: number);
169
+ private z;
170
+ get al(): number;
171
+ set al(a: number);
172
+ private aa;
173
+ get am(): number;
174
+ set am(a: number);
175
+ private ab;
176
+ get an(): number;
177
+ set an(a: number);
178
+ private y;
179
+ get ak(): number;
180
+ set ak(a: number);
181
+ private ac;
182
+ get ao(): number;
183
+ set ao(a: number);
184
+ private u;
185
+ get ag(): number;
186
+ set ag(a: number);
187
+ b6(): void;
117
188
  clicked: (sender: any, args: IconClickedEventArgs) => void;
118
189
  propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
119
190
  onDetachedFromUI(): void;
120
191
  onAttachedToUI(): void;
121
- bb(): void;
122
- protected o(): boolean;
123
- ae(): any;
124
- as(): string;
125
- a(): IconVisualModelExport;
192
+ b1(): void;
193
+ protected s(): boolean;
194
+ as(): any;
195
+ a4(): string;
196
+ e(): IconVisualModelExport;
126
197
  provideContainer(a: DomRenderer): void;
127
198
  }
@@ -14,7 +14,8 @@ export declare class IconVisualModelExport extends Base {
14
14
  b: BrushAppearanceData;
15
15
  d: number;
16
16
  private _svgPath;
17
- svgPath: string;
17
+ get svgPath(): string;
18
+ set svgPath(a: string);
18
19
  n: string;
19
20
  o: string;
20
21
  p: string;
@@ -5,7 +5,9 @@ import { EventArgs, Type } from "igniteui-webcomponents-core";
5
5
  export declare class InputChangeEventArgs extends EventArgs {
6
6
  static $t: Type;
7
7
  private _value;
8
- value: string;
8
+ get value(): string;
9
+ set value(a: string);
9
10
  private _isCompositionInProgress;
10
- isCompositionInProgress: boolean;
11
+ get isCompositionInProgress(): boolean;
12
+ set isCompositionInProgress(a: boolean);
11
13
  }