@mdspl/mds-shared-ui 1.4.6 → 1.4.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/dist/index.d.ts CHANGED
@@ -126,6 +126,15 @@ export declare function getOption<T = any>(client: OptionsClient, key: string):
126
126
 
127
127
  export declare const getPresets: (pageKey: string) => PresetItem[];
128
128
 
129
+ export declare interface GroupedComboboxProps {
130
+ baseURL: string;
131
+ filterKey?: "mo" | "district" | "partner";
132
+ placeholder?: string;
133
+ label?: string;
134
+ }
135
+
136
+ export declare const GroupedDataCombobox: ({ baseURL, filterKey, placeholder, label, }: GroupedComboboxProps) => JSX_2.Element;
137
+
129
138
  export declare class HttpOptionsApi implements OptionsApi {
130
139
  private baseUrl;
131
140
  constructor(baseUrl: string);