igniteui-webcomponents-inputs 4.2.5 → 4.3.0-beta.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 (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
@@ -22,7 +22,7 @@ export declare class IgcXCheckboxComponent extends IgcHTMLElement {
22
22
  /**
23
23
  * @hidden
24
24
  */
25
- readonly i: XCheckbox; /**
25
+ get i(): XCheckbox; /**
26
26
  * @hidden
27
27
  */
28
28
  static _createFromInternal(internal: any): IgcXCheckboxComponent;
@@ -33,7 +33,7 @@ export declare class IgcXCheckboxComponent extends IgcHTMLElement {
33
33
  protected _flushQueuedAttributes(): void;
34
34
  protected _a(attrName: string, attrValue: any): void;
35
35
  private static _observedAttributesIgcXCheckboxComponent;
36
- static readonly observedAttributes: string[];
36
+ static get observedAttributes(): string[];
37
37
  private _updatingFromAttribute;
38
38
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
39
39
  static htmlTagName: string;
@@ -42,139 +42,172 @@ export declare class IgcXCheckboxComponent extends IgcHTMLElement {
42
42
  /**
43
43
  * Gets or sets the base built in theme to use for the checkbox.
44
44
  */
45
- baseTheme: BaseControlTheme;
45
+ get baseTheme(): BaseControlTheme;
46
+ set baseTheme(v: BaseControlTheme);
46
47
  /**
47
48
  * Gets or sets the color to use for the background when the checkbox is unchecked.
48
49
  */
49
- uncheckedBackgroundColor: string;
50
+ get uncheckedBackgroundColor(): string;
51
+ set uncheckedBackgroundColor(v: string);
50
52
  /**
51
53
  * Gets or sets the color to use for the actual background when the checkbox is unchecked.
52
54
  */
53
- actualUncheckedBackgroundColor: string;
55
+ get actualUncheckedBackgroundColor(): string;
56
+ set actualUncheckedBackgroundColor(v: string);
54
57
  /**
55
58
  * Gets or sets the color to use for the background when the checkbox is checked.
56
59
  */
57
- checkedBackgroundColor: string;
60
+ get checkedBackgroundColor(): string;
61
+ set checkedBackgroundColor(v: string);
58
62
  /**
59
63
  * Gets or sets the color to use for the check mark when the checkbox is checked.
60
64
  */
61
- tickColor: string;
65
+ get tickColor(): string;
66
+ set tickColor(v: string);
62
67
  /**
63
68
  * Gets or sets the color to use for the check mark when the checkbox is checked.
64
69
  */
65
- actualTickColor: string;
70
+ get actualTickColor(): string;
71
+ set actualTickColor(v: string);
66
72
  /**
67
73
  * Gets or sets the color to use for the check mark when the checkbox is unchecked.
68
74
  */
69
- uncheckedBorderColor: string;
75
+ get uncheckedBorderColor(): string;
76
+ set uncheckedBorderColor(v: string);
70
77
  /**
71
78
  * Gets or sets the color to use for the check mark when the checkbox is checked.
72
79
  */
73
- checkedBorderColor: string;
80
+ get checkedBorderColor(): string;
81
+ set checkedBorderColor(v: string);
74
82
  /**
75
83
  * Gets or sets the color to use for the check mark when the checkbox is checked.
76
84
  */
77
- actualUncheckedBorderColor: string;
85
+ get actualUncheckedBorderColor(): string;
86
+ set actualUncheckedBorderColor(v: string);
78
87
  /**
79
88
  * Gets or sets the color to use for the check mark when the checkbox is checked.
80
89
  */
81
- actualCheckedBorderColor: string;
90
+ get actualCheckedBorderColor(): string;
91
+ set actualCheckedBorderColor(v: string);
82
92
  /**
83
93
  * Gets or sets the Width to use for the check mark when the checkbox is checked.
84
94
  */
85
- borderWidth: number;
95
+ get borderWidth(): number;
96
+ set borderWidth(v: number);
86
97
  /**
87
98
  * Gets or sets the Width to use for the check mark when the checkbox is checked.
88
99
  */
89
- actualBorderWidth: number;
100
+ get actualBorderWidth(): number;
101
+ set actualBorderWidth(v: number);
90
102
  /**
91
103
  * Gets or sets the corner radius to use for the checkbox.
92
104
  */
93
- cornerRadius: number;
105
+ get cornerRadius(): number;
106
+ set cornerRadius(v: number);
94
107
  /**
95
108
  * Gets or sets the corner radius to use for the checkbox.
96
109
  */
97
- tickStrokeWidth: number;
110
+ get tickStrokeWidth(): number;
111
+ set tickStrokeWidth(v: number);
98
112
  /**
99
113
  * Gets or sets the stroke width to use for the check mark.
100
114
  */
101
- actualTickStrokeWidth: number;
115
+ get actualTickStrokeWidth(): number;
116
+ set actualTickStrokeWidth(v: number);
102
117
  /**
103
118
  * Gets the actual corner radius to use for the checkbox.
104
119
  */
105
- actualCornerRadius: number;
120
+ get actualCornerRadius(): number;
121
+ set actualCornerRadius(v: number);
106
122
  /**
107
123
  * Gets or sets the color to use for the actual background when the checkbox is checked.
108
124
  */
109
- actualCheckedBackgroundColor: string;
125
+ get actualCheckedBackgroundColor(): string;
126
+ set actualCheckedBackgroundColor(v: string);
110
127
  /**
111
128
  * Gets or sets the id to use for the internal native checkbox.
112
129
  */
113
- inputId: string;
130
+ get inputId(): string;
131
+ set inputId(v: string);
114
132
  /**
115
133
  * Gets or sets the id to use for the checkbox.
116
134
  */
117
- id: string;
135
+ get id(): string;
136
+ set id(v: string);
118
137
  /**
119
138
  * Gets or sets id to use for the checkbox label.
120
139
  */
121
- labelId: string;
140
+ get labelId(): string;
141
+ set labelId(v: string);
122
142
  /**
123
143
  * Gets or sets name to use for the checkbox.
124
144
  */
125
- name: string;
145
+ get name(): string;
146
+ set name(v: string);
126
147
  /**
127
148
  * Gets or sets TabIndex to use for the checkbox.
128
149
  */
129
- tabIndex: number;
150
+ get tabIndex(): number;
151
+ set tabIndex(v: number);
130
152
  /**
131
153
  * Gets or sets if the checkbox is required.
132
154
  */
133
- required: number;
155
+ get required(): number;
156
+ set required(v: number);
134
157
  /**
135
158
  * Gets or sets the value of the aria-labelledby attribute.
136
159
  */
137
- ariaLabelledBy: string;
160
+ get ariaLabelledBy(): string;
161
+ set ariaLabelledBy(v: string);
138
162
  /**
139
163
  * Gets or sets the value of the aria-label attribute.
140
164
  */
141
- ariaLabel: string;
165
+ get ariaLabel(): string;
166
+ set ariaLabel(v: string);
142
167
  /**
143
168
  * Gets or sets value to use for the checkbox.
144
169
  */
145
- value: any;
170
+ get value(): any;
171
+ set value(v: any);
146
172
  /**
147
173
  * Gets or sets if the checkbox is Focused.
148
174
  */
149
- focused: boolean;
175
+ get focused(): boolean;
176
+ set focused(v: boolean);
150
177
  /**
151
178
  * Gets or sets LabelPosition to use for the checkbox.
152
179
  */
153
- labelPosition: CheckboxLabelPosition;
180
+ get labelPosition(): CheckboxLabelPosition;
181
+ set labelPosition(v: CheckboxLabelPosition);
154
182
  /**
155
183
  * Gets or sets whether to disable the ripple effect for the checkbox.
156
184
  */
157
- disableRipple: boolean;
185
+ get disableRipple(): boolean;
186
+ set disableRipple(v: boolean);
158
187
  /**
159
188
  * Gets or sets whether the checkbox is checked.
160
189
  */
161
- checked: boolean;
190
+ get checked(): boolean;
191
+ set checked(v: boolean);
162
192
  /**
163
193
  * Gets or sets whether the checkbox is indeterminate.
164
194
  */
165
- indeterminate: boolean;
195
+ get indeterminate(): boolean;
196
+ set indeterminate(v: boolean);
166
197
  /**
167
198
  * Gets or sets whether the checkbox is disabled.
168
199
  */
169
- disabled: boolean;
200
+ get disabled(): boolean;
201
+ set disabled(v: boolean);
170
202
  /**
171
203
  * Gets or sets whether the checkbox transitions are disabled.
172
204
  */
173
- disableTransitions: boolean;
205
+ get disableTransitions(): boolean;
206
+ set disableTransitions(v: boolean);
174
207
  findByName(name: string): any;
175
208
  protected __p: string;
176
209
  protected _hasUserValues: Set<string>;
177
- protected readonly hasUserValues: Set<string>;
210
+ protected get hasUserValues(): Set<string>;
178
211
  protected __m(propertyName: string): void;
179
212
  protected _stylingContainer: any;
180
213
  protected _stylingParent: any;
@@ -194,5 +227,6 @@ export declare class IgcXCheckboxComponent extends IgcHTMLElement {
194
227
  exportSerializedVisualModel(): string;
195
228
  private _change;
196
229
  private _change_wrapped;
197
- change: (s: IgcXCheckboxComponent, e: IgcCheckboxChangeEventArgs) => void;
230
+ get change(): (s: IgcXCheckboxComponent, e: IgcCheckboxChangeEventArgs) => void;
231
+ set change(ev: (s: IgcXCheckboxComponent, e: IgcCheckboxChangeEventArgs) => void);
198
232
  }
@@ -20,7 +20,7 @@ export declare class IgcXIconComponent extends IgcHTMLElement {
20
20
  /**
21
21
  * @hidden
22
22
  */
23
- readonly i: XIcon; /**
23
+ get i(): XIcon; /**
24
24
  * @hidden
25
25
  */
26
26
  static _createFromInternal(internal: any): IgcXIconComponent;
@@ -31,7 +31,7 @@ export declare class IgcXIconComponent extends IgcHTMLElement {
31
31
  protected _flushQueuedAttributes(): void;
32
32
  protected _a(attrName: string, attrValue: any): void;
33
33
  private static _observedAttributesIgcXIconComponent;
34
- static readonly observedAttributes: string[];
34
+ static get observedAttributes(): string[];
35
35
  private _updatingFromAttribute;
36
36
  attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
37
37
  static htmlTagName: string;
@@ -40,100 +40,196 @@ export declare class IgcXIconComponent extends IgcHTMLElement {
40
40
  /**
41
41
  * Gets or sets the base built in theme to use for the button.
42
42
  */
43
- baseTheme: BaseControlTheme;
43
+ get baseTheme(): BaseControlTheme;
44
+ set baseTheme(v: BaseControlTheme);
44
45
  /**
45
- * Gets the color to use for the actual background.
46
+ * Gets the fill color currently used by the icon.
46
47
  */
47
- actualFill: string;
48
+ get actualFill(): string;
49
+ set actualFill(v: string);
48
50
  /**
49
- * Gets the color to use for the actual text color.
51
+ * Gets the stroke color currently used by the icon.
50
52
  */
51
- actualTextColor: string;
53
+ get actualStroke(): string;
54
+ set actualStroke(v: string);
52
55
  /**
53
- * Gets the color to use for the actual background.
56
+ * Gets the text color currently used by the icon.
54
57
  */
55
- actualHoverFill: string;
58
+ get actualTextColor(): string;
59
+ set actualTextColor(v: string);
56
60
  /**
57
- * Gets the hover stroke to use for the icon.
61
+ * Gets the stroke width currently used by the icon.
58
62
  */
59
- actualHoverStroke: string;
63
+ get actualStrokeWidth(): number;
64
+ set actualStrokeWidth(v: number);
60
65
  /**
61
- * Gets the stroke to use for the icon.
66
+ * Gets or sets the fill color to use for the icon.
62
67
  */
63
- actualStroke: string;
68
+ get fill(): string;
69
+ set fill(v: string);
64
70
  /**
65
- * Gets the hover stroke to use for the icon.
71
+ * Gets or sets the stroke color to use for the icon.
66
72
  */
67
- actualHoverStrokeThickness: number;
73
+ get stroke(): string;
74
+ set stroke(v: string);
68
75
  /**
69
- * Gets the stroke to use for the icon.
76
+ * Gets or sets the stroke thickness to use for the icon.
70
77
  */
71
- actualStrokeThickness: number;
78
+ get strokeWidth(): number;
79
+ set strokeWidth(v: number);
72
80
  /**
73
- * Gets or sets the color to use for the actual background.
81
+ * Gets or sets the text color to use for the icon.
74
82
  */
75
- fill: string;
83
+ get textColor(): string;
84
+ set textColor(v: string);
76
85
  /**
77
- * Gets or sets the color to use for the text.
86
+ * Gets or sets the fill color to use when the icon is hovered.
78
87
  */
79
- textColor: string;
88
+ get hoverFill(): string;
89
+ set hoverFill(v: string);
80
90
  /**
81
- * Gets or sets the color to use for the text.
91
+ * Gets or sets the stroke color to use when the icon is hovered.
82
92
  */
83
- svgPath: string;
93
+ get hoverStroke(): string;
94
+ set hoverStroke(v: string);
84
95
  /**
85
- * Gets or sets the color to use for the actual background.
96
+ * Gets or sets the stroke thickness to use when the icon is hovered.
86
97
  */
87
- hoverFill: string;
98
+ get hoverStrokeThickness(): number;
99
+ set hoverStrokeThickness(v: number);
88
100
  /**
89
- * Gets or sets the hover stroke to use for the icon.
101
+ * Gets or sets the text color to use when the icon is hovered.
90
102
  */
91
- hoverStroke: string;
103
+ get hoverTextColor(): string;
104
+ set hoverTextColor(v: string);
92
105
  /**
93
- * Gets or sets the stroke to use for the icon.
106
+ * Gets or sets a collection of fill colors to use in the icon.
107
+ * These colors can be used by SVG elements that have been marked with the
108
+ * ig-icon-fill-#
109
+ * class where # is a number from 0 to count - 1.
94
110
  */
95
- stroke: string;
111
+ get fillColors(): string[];
112
+ set fillColors(v: string[]);
96
113
  /**
97
- * Gets or sets the hover stroke to use for the icon.
114
+ * Gets or sets a collection of stroke colors to use in the icon.
115
+ * These colors can be used by SVG elements that have been marked with the
116
+ * ig-icon-stroke-#
117
+ * class where # is a number from 0 to count - 1.
98
118
  */
99
- hoverStrokeThickness: number;
119
+ get strokeColors(): string[];
120
+ set strokeColors(v: string[]);
100
121
  /**
101
- * Gets or sets the stroke to use for the icon.
122
+ * Gets or sets a primary fill color for the icon.
123
+ * This color is used by SVG elements that have been marked
124
+ * with the
125
+ * ig-icon-primary-fill
126
+ * class.
102
127
  */
103
- strokeThickness: number;
128
+ get primaryFillColor(): string;
129
+ set primaryFillColor(v: string);
104
130
  /**
105
- * Gets or sets the use for the button.
131
+ * Gets or sets a primary stroke color for the icon.
132
+ * This color is used by SVG elements that have been marked
133
+ * with the
134
+ * ig-icon-primary-stroke
135
+ * class.
136
+ */
137
+ get primaryStrokeColor(): string;
138
+ set primaryStrokeColor(v: string);
139
+ /**
140
+ * Gets or sets a secondary fill color for the icon.
141
+ * This color is used by SVG elements that have been marked
142
+ * with the
143
+ * ig-icon-secondary-fill
144
+ * class.
106
145
  */
107
- textStyle: string;
146
+ get secondaryFillColor(): string;
147
+ set secondaryFillColor(v: string);
108
148
  /**
109
- * Gets or sets the color to use for the hovered text of the button regardless of type.
149
+ * Gets or sets a secondary stroke color for the icon.
150
+ * This color is used by SVG elements that have been marked
151
+ * with the
152
+ * ig-icon-secondary-stroke
153
+ * class.
110
154
  */
111
- hoverTextColor: string;
155
+ get secondaryStrokeColor(): string;
156
+ set secondaryStrokeColor(v: string);
157
+ /**
158
+ * Gets or sets path data for the icon to use.
159
+ */
160
+ get svgPath(): string;
161
+ set svgPath(v: string);
162
+ /**
163
+ * Gets or sets svg text for the icon to use.
164
+ */
165
+ get svg(): string;
166
+ set svg(v: string);
167
+ /**
168
+ * Gets or sets the use for the button.
169
+ */
170
+ get textStyle(): string;
171
+ set textStyle(v: string);
112
172
  /**
113
173
  * Gets or sets the id to use for the checkbox.
114
174
  */
115
- id: string;
175
+ get id(): string;
176
+ set id(v: string);
116
177
  /**
117
178
  * Gets or sets TabIndex to use for the checkbox.
118
179
  */
119
- tabIndex: number;
180
+ get tabIndex(): number;
181
+ set tabIndex(v: number);
120
182
  /**
121
183
  * Gets or sets the value of the aria-label attribute.
122
184
  */
123
- ariaLabel: string;
185
+ get ariaLabel(): string;
186
+ set ariaLabel(v: string);
124
187
  /**
125
188
  * Gets or sets whether the icon is hovered.
126
189
  */
127
- isHover: boolean;
190
+ get isHover(): boolean;
191
+ set isHover(v: boolean);
128
192
  /**
129
193
  * Gets or sets whether the checkbox is disabled.
130
194
  */
131
- disabled: boolean;
132
- opacity: number;
195
+ get disabled(): boolean;
196
+ set disabled(v: boolean);
197
+ get opacity(): number;
198
+ set opacity(v: number);
199
+ /**
200
+ * Gets or sets the viewbox left for the svg icon.
201
+ */
202
+ get viewBoxLeft(): number;
203
+ set viewBoxLeft(v: number);
204
+ /**
205
+ * Gets or sets the viewbox top for the svg icon.
206
+ */
207
+ get viewBoxTop(): number;
208
+ set viewBoxTop(v: number);
209
+ /**
210
+ * Gets or sets the viewbox width for the svg icon.
211
+ */
212
+ get viewBoxWidth(): number;
213
+ set viewBoxWidth(v: number);
214
+ /**
215
+ * Gets or sets the viewbox height for the svg icon.
216
+ */
217
+ get viewBoxHeight(): number;
218
+ set viewBoxHeight(v: number);
219
+ /**
220
+ * Gets or sets the width of the icon.
221
+ */
222
+ get width(): number;
223
+ set width(v: number);
224
+ /**
225
+ * Gets or sets the height of the icon.
226
+ */
227
+ get height(): number;
228
+ set height(v: number);
133
229
  findByName(name: string): any;
134
230
  protected __p: string;
135
231
  protected _hasUserValues: Set<string>;
136
- protected readonly hasUserValues: Set<string>;
232
+ protected get hasUserValues(): Set<string>;
137
233
  protected __m(propertyName: string): void;
138
234
  protected _stylingContainer: any;
139
235
  protected _stylingParent: any;