utopia-ui 3.0.0-alpha.207 → 3.0.0-alpha.209

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.
@@ -5,6 +5,7 @@ declare function useFilterManager(initialTags: Tag[]): {
5
5
  filterTags: Tag[];
6
6
  searchPhrase: string;
7
7
  visibleLayers: LayerProps[];
8
+ visibleGroupTypes: string[];
8
9
  addFilterTag: (tag: Tag) => void;
9
10
  removeFilterTag: (name: string) => void;
10
11
  resetFilterTags: () => void;
@@ -35,4 +36,5 @@ export declare const useIsLayerVisible: () => UseFilterManagerResult["isLayerVis
35
36
  export declare const useAddVisibleGroupType: () => UseFilterManagerResult["addVisibleGroupType"];
36
37
  export declare const useToggleVisibleGroupType: () => UseFilterManagerResult["toggleVisibleGroupType"];
37
38
  export declare const useIsGroupTypeVisible: () => UseFilterManagerResult["isGroupTypeVisible"];
39
+ export declare const useVisibleGroupType: () => UseFilterManagerResult["visibleGroupTypes"];
38
40
  export {};