@mdspl/mds-shared-ui 1.0.2 → 1.0.4

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
@@ -126,7 +126,7 @@ export declare class HttpOptionsApi implements OptionsApi {
126
126
  export declare interface IFilterConfig {
127
127
  id: string;
128
128
  label: string;
129
- type?: 'date' | 'text' | 'select' | 'checkbox' | 'radio' | 'number' | 'combobox';
129
+ type?: 'date' | 'text' | 'select' | 'checkbox' | 'radio' | 'number' | 'combobox' | 'date-range';
130
130
  value: string | number | undefined | boolean;
131
131
  options?: {
132
132
  label: string;
@@ -137,6 +137,8 @@ export declare interface IFilterConfig {
137
137
  size?: 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 4.5 | 5;
138
138
  customComponent?: JSX.Element;
139
139
  placeholder?: string;
140
+ startDate?: string | null;
141
+ endDate?: string | null;
140
142
  }
141
143
 
142
144
  export declare interface IFilterDrawerProps {