@wix/app-extensions 1.0.74 → 1.0.75
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.
|
@@ -19413,6 +19413,11 @@ interface InlineFilterItem {
|
|
|
19413
19413
|
* @maxLength 300
|
|
19414
19414
|
*/
|
|
19415
19415
|
description?: string | null;
|
|
19416
|
+
/**
|
|
19417
|
+
* Configures this text filter field as an item-selection field, populated by an items provider implementing the Items
|
|
19418
|
+
* Selection SPI (wix.items_selection.spi_host.v1). provider_key picks the provider; for multi-select use an array item.
|
|
19419
|
+
*/
|
|
19420
|
+
itemSelection?: ItemSelectionConfig;
|
|
19416
19421
|
}
|
|
19417
19422
|
/** @internal */
|
|
19418
19423
|
declare enum FilterOperator {
|
|
@@ -19510,6 +19515,8 @@ interface FilterItem {
|
|
|
19510
19515
|
* @maxSize 10
|
|
19511
19516
|
*/
|
|
19512
19517
|
customOperators?: CustomFilterOperator[];
|
|
19518
|
+
/** Configures this filter item as an item-selection field */
|
|
19519
|
+
itemSelection?: ItemSelectionConfig;
|
|
19513
19520
|
}
|
|
19514
19521
|
/** Sort type - declares which items are available for sorting */
|
|
19515
19522
|
/** @internal */
|