@energycap/components 0.36.3-ECAP-18589-scope-factor-searcher.20230728-1620 → 0.36.3-ECAP-18792-fa-svgs-for-commodities.20230801-0131
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/esm2020/lib/controls/combobox/combobox.component.mjs +7 -13
- package/fesm2015/energycap-components.mjs +6 -13
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +6 -12
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/lib/controls/combobox/combobox.component.d.ts +4 -8
- package/package.json +1 -1
- package/src/styles/_base.scss +1 -1
@@ -131,8 +131,8 @@ export declare class ComboboxComponent extends FormControlBase implements OnInit
|
|
131
131
|
/** Hide 'No matches' message when true */
|
132
132
|
hideNoMatches: boolean;
|
133
133
|
/**
|
134
|
-
|
135
|
-
|
134
|
+
* Text to show when the menu is empty. "No matches" is the default.
|
135
|
+
*/
|
136
136
|
noMatchesText: string;
|
137
137
|
/**
|
138
138
|
* Notify the parent that the add new button was clicked
|
@@ -156,8 +156,8 @@ export declare class ComboboxComponent extends FormControlBase implements OnInit
|
|
156
156
|
*/
|
157
157
|
private addNewButton;
|
158
158
|
/**
|
159
|
-
|
160
|
-
|
159
|
+
* Filtered Items to show in combobox menu
|
160
|
+
*/
|
161
161
|
filteredOptions: Array<MenuItem>;
|
162
162
|
/**
|
163
163
|
* Tracks if the menu is open or hidden
|
@@ -183,10 +183,6 @@ export declare class ComboboxComponent extends FormControlBase implements OnInit
|
|
183
183
|
* Tracks whether the textboxFormModel value matches an item in the filteredOptions
|
184
184
|
*/
|
185
185
|
foundMatch: boolean;
|
186
|
-
/**
|
187
|
-
* Number of filtered options to display in the footer. Excludes headings.
|
188
|
-
*/
|
189
|
-
filteredOptionCount: number;
|
190
186
|
/**
|
191
187
|
* Index of the currently-selected options
|
192
188
|
*/
|
package/package.json
CHANGED
package/src/styles/_base.scss
CHANGED