@vuu-ui/vuu-data-types 0.13.78 → 0.13.79
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/index.d.ts +13 -0
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -625,8 +625,21 @@ export interface DataSource
|
|
|
625
625
|
*/
|
|
626
626
|
disable?: () => void;
|
|
627
627
|
baseFilter?: DataSourceFilter;
|
|
628
|
+
|
|
629
|
+
/**
|
|
630
|
+
* @deprecated use setFilter instead
|
|
631
|
+
*/
|
|
628
632
|
filter: DataSourceFilter;
|
|
629
633
|
|
|
634
|
+
/**
|
|
635
|
+
* An alternative way to set the dataSource filter, passing in a Filter
|
|
636
|
+
* (or ExtendedFilter) object. The real advantage to using this is the additional set
|
|
637
|
+
* of capabilities the ExtendedFilter offers.
|
|
638
|
+
* Eventually, this will replace the existing filter setter
|
|
639
|
+
*/
|
|
640
|
+
clearFilter?: () => void;
|
|
641
|
+
setFilter?: (filter: Filter) => void;
|
|
642
|
+
|
|
630
643
|
/**
|
|
631
644
|
* Only implemented on JSON DataSource
|
|
632
645
|
* @param depth
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.79",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "0.13.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "0.13.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "0.13.79",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "0.13.79"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|