utopia-ui 3.0.0-alpha.62 → 3.0.0-alpha.64

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.
@@ -4,7 +4,6 @@ declare type UseTagManagerResult = ReturnType<typeof useTagsManager>;
4
4
  declare function useTagsManager(initialTags: Tag[]): {
5
5
  tags: Tag[];
6
6
  addTag: (tag: Tag) => void;
7
- removeTag: (id: string) => void;
8
7
  setTagApi: (api: ItemsApi<Tag>) => void;
9
8
  setTagData: (data: Tag[]) => void;
10
9
  getItemTags: (item: Item) => Tag[];
@@ -16,7 +15,6 @@ export declare const TagsProvider: React.FunctionComponent<{
16
15
  }>;
17
16
  export declare const useTags: () => Tag[];
18
17
  export declare const useAddTag: () => UseTagManagerResult["addTag"];
19
- export declare const useRemoveTag: () => UseTagManagerResult["removeTag"];
20
18
  export declare const useSetTagApi: () => UseTagManagerResult["setTagApi"];
21
19
  export declare const useSetTagData: () => UseTagManagerResult["setTagData"];
22
20
  export declare const useGetItemTags: () => UseTagManagerResult["getItemTags"];