@data-c/ui 0.0.139-alpha.0 → 0.0.141-alpha.0

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/dist/index.d.ts CHANGED
@@ -113,6 +113,7 @@ declare namespace DataTableOptions {
113
113
 
114
114
  interface FilterControlProps {
115
115
  renderLabel?: (filterLabel: string, filterValue: any) => React$1.ReactNode;
116
+ disableds?: Array<string>;
116
117
  }
117
118
  declare function FilterControl(props: FilterControlProps): react_jsx_runtime.JSX.Element;
118
119
 
@@ -124,6 +125,7 @@ interface FilterProps {
124
125
  title?: string;
125
126
  onApplyFilters?: (filters: any) => void;
126
127
  renderLabel?: (filterLabel: string, filterValue: any) => React$1.ReactNode;
128
+ disableds?: Array<string>;
127
129
  }
128
130
  declare function FilterContainer(props: FilterProps): react_jsx_runtime.JSX.Element;
129
131
  declare namespace FilterContainer {