@smart-webcomponents-angular/combobox 15.0.2 → 19.0.8
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/combobox/smart-webcomponents-angular-combobox.d.ts +1 -1
- package/combobox/smart.combobox.d.ts +8 -1
- package/esm2020/combobox/smart.combobox.mjs +32 -3
- package/esm2020/combobox/smart.listitem.mjs +1 -1
- package/esm2020/combobox/smart.listitemsgroup.mjs +1 -1
- package/fesm2015/smart-webcomponents-angular-combobox.mjs +31 -2
- package/fesm2015/smart-webcomponents-angular-combobox.mjs.map +1 -1
- package/fesm2020/smart-webcomponents-angular-combobox.mjs +31 -2
- package/fesm2020/smart-webcomponents-angular-combobox.mjs.map +1 -1
- package/index.d.ts +1274 -425
- package/package.json +19 -19
- package/source/modules/smart.combobox.js +2 -2
- package/source/smart.button.js +1 -1
- package/source/smart.checkbox.js +1 -1
- package/source/smart.combobox.js +2 -2
- package/source/smart.dropdownlist.js +2 -2
- package/source/smart.element.js +2 -2
- package/source/smart.listbox.js +2 -2
- package/source/smart.radiobutton.js +1 -1
- package/source/smart.scrollbar.js +1 -1
- package/styles/font/smart-icons.eot +0 -0
- package/styles/font/smart-icons.svg +29 -1
- package/styles/font/smart-icons.ttf +0 -0
- package/styles/font/smart-icons.woff +0 -0
- package/styles/font/smart-icons.woff2 +0 -0
- package/styles/smart.base.css +2 -2
- package/styles/smart.combobox.css +3 -3
- package/styles/smart.common.css +1 -1
- package/demo/angular.json +0 -126
- package/demo/package.json +0 -52
- package/demo/src/app/app.component.css +0 -3
- package/demo/src/app/app.component.html +0 -22
- package/demo/src/assets/fonts.css +0 -13
- package/demo/src/assets/styles.css +0 -12
- package/demo/src/index.html +0 -42
- package/demo/src/tsconfig.app.json +0 -15
- package/demo/src/tsconfig.json +0 -23
- package/start.js +0 -5
|
@@ -279,6 +279,10 @@ export declare class ComboBoxComponent extends BaseElement implements OnInit, Af
|
|
|
279
279
|
* @returns {Node}
|
|
280
280
|
*/
|
|
281
281
|
appendChild(node: any): Promise<any>;
|
|
282
|
+
/** @description Adds a new item(s).
|
|
283
|
+
* @param {any} item. Describes the properties of the item that will be inserted. You can also pass an array of items.
|
|
284
|
+
*/
|
|
285
|
+
add(item: any): void;
|
|
282
286
|
/** @description Removes all items from the drop down list.
|
|
283
287
|
*/
|
|
284
288
|
clearItems(): void;
|
|
@@ -288,6 +292,9 @@ export declare class ComboBoxComponent extends BaseElement implements OnInit, Af
|
|
|
288
292
|
/** @description Closes the dropDown list.
|
|
289
293
|
*/
|
|
290
294
|
close(): void;
|
|
295
|
+
/** @description Performs a data bind. This can be used to refresh the data source.
|
|
296
|
+
*/
|
|
297
|
+
dataBind(): void;
|
|
291
298
|
/** @description Ensures the desired item is visible by scrolling to it.
|
|
292
299
|
* @param {HTMLElement | string} item. A list item or value of the desired item to be visible.
|
|
293
300
|
*/
|
|
@@ -299,7 +306,7 @@ export declare class ComboBoxComponent extends BaseElement implements OnInit, Af
|
|
|
299
306
|
getItem(value: any): Promise<any>;
|
|
300
307
|
/** @description Inserts a new item at a specified position.
|
|
301
308
|
* @param {number} position. The position where the item must be inserted.
|
|
302
|
-
* @param {any} item. Describes the properties of the item that will be inserted.
|
|
309
|
+
* @param {any} item. Describes the properties of the item that will be inserted. You can also pass an array of items.
|
|
303
310
|
*/
|
|
304
311
|
insert(position: number, item: any): void;
|
|
305
312
|
/** @description Inserts a new ListItem before another in the list.
|