@formkit/pro 0.114.0-2779249 → 0.114.0-3277316

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/index.d.ts CHANGED
@@ -467,6 +467,10 @@ export declare interface FormKitDropdownSlots<Props extends FormKitInputs<Props>
467
467
  index: number;
468
468
  }>;
469
469
  placeholder: FormKitSlotData<Props, DropdownSlotData>;
470
+ tag: FormKitSlotData<Props, TaglistSlotData & {
471
+ option: FormKitOptionsItem;
472
+ index: number;
473
+ }>;
470
474
  }
471
475
 
472
476
  /**
@@ -980,7 +984,9 @@ export declare interface TaglistSlotData {
980
984
  search: string;
981
985
  hasNextPage: (data?: any) => void;
982
986
  fns: FormKitFrameworkContext['fns'] & {};
983
- handlers: FormKitFrameworkContext['handlers'] & {};
987
+ handlers: FormKitFrameworkContext['handlers'] & {
988
+ removeSelection: (option: FormKitOptionsItem) => void;
989
+ };
984
990
  ui: FormKitFrameworkContext['ui'] & {
985
991
  isLoading: FormKitMessage;
986
992
  loadMore: FormKitMessage;