@servantcdh/ez-planet-labeling 1.0.18 → 1.0.21

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
@@ -208,6 +208,12 @@ declare interface CustomPageWrapper<TItem, TFilter = unknown> {
208
208
  filter: TFilter;
209
209
  }
210
210
 
211
+ declare interface CustomToolbarItemType {
212
+ variant: "custom";
213
+ id?: string;
214
+ render: () => ReactNode;
215
+ }
216
+
211
217
  export declare interface DatasetApiResponse<T> {
212
218
  code: number;
213
219
  message: string;
@@ -1727,7 +1733,7 @@ declare interface ToolbarDividerItemType extends CommonItemType {
1727
1733
  variant: "toolbarDivider";
1728
1734
  }
1729
1735
 
1730
- export declare type ToolbarItemType = ButtonItemType | CheckboxItemType | RadioItemType | ToolbarDividerItemType;
1736
+ export declare type ToolbarItemType = ButtonItemType | CheckboxItemType | RadioItemType | ToolbarDividerItemType | CustomToolbarItemType;
1731
1737
 
1732
1738
  declare interface ToolbarSubMenuItemsState {
1733
1739
  items: ExtensionSubMenuItem[];