@leaflink/stash 51.7.0 → 51.9.0

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.
@@ -1763,15 +1763,28 @@ menuPlacement: Placement;
1763
1763
  enableTeleport: boolean;
1764
1764
  teleportTo: string | HTMLElement;
1765
1765
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
1766
- $slots: {
1767
- selected?(_: {
1766
+ $slots: Readonly<{
1767
+ selected(props: {
1768
1768
  option: any;
1769
- }): any;
1770
- option?(_: {
1769
+ onRemove: () => void;
1770
+ chipSelectedClass: string;
1771
+ }): unknown;
1772
+ option(props: {
1771
1773
  option: any;
1772
- }): any;
1773
- "no-options"?(_: {}): any;
1774
- hint?(_: {}): any;
1774
+ }): unknown;
1775
+ 'no-options'(): unknown;
1776
+ hint(): unknown;
1777
+ }> & {
1778
+ selected(props: {
1779
+ option: any;
1780
+ onRemove: () => void;
1781
+ chipSelectedClass: string;
1782
+ }): unknown;
1783
+ option(props: {
1784
+ option: any;
1785
+ }): unknown;
1786
+ 'no-options'(): unknown;
1787
+ hint(): unknown;
1775
1788
  };
1776
1789
  });
1777
1790
  DatePicker: {
@@ -3027,15 +3027,34 @@ menuPlacement: Placement;
3027
3027
  enableTeleport: boolean;
3028
3028
  teleportTo: string | HTMLElement;
3029
3029
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
3030
- $slots: {
3031
- selected?(_: {
3030
+ $slots: Readonly<{
3031
+ selected(props: {
3032
3032
  option: any;
3033
- }): any;
3034
- option?(_: {
3033
+ onRemove: () => void; /**
3034
+ * Helps determine if the list is filtered or not when there is an incomplete
3035
+ * result list, such as when isServerSide is true.
3036
+ */
3037
+ chipSelectedClass: string;
3038
+ }): unknown;
3039
+ option(props: {
3035
3040
  option: any;
3036
- }): any;
3037
- "no-options"?(_: {}): any;
3038
- hint?(_: {}): any;
3041
+ }): unknown;
3042
+ 'no-options'(): unknown;
3043
+ hint(): unknown;
3044
+ }> & {
3045
+ selected(props: {
3046
+ option: any;
3047
+ onRemove: () => void; /**
3048
+ * Helps determine if the list is filtered or not when there is an incomplete
3049
+ * result list, such as when isServerSide is true.
3050
+ */
3051
+ chipSelectedClass: string;
3052
+ }): unknown;
3053
+ option(props: {
3054
+ option: any;
3055
+ }): unknown;
3056
+ 'no-options'(): unknown;
3057
+ hint(): unknown;
3039
3058
  };
3040
3059
  });
3041
3060
  DatePicker: {