@rebilly/revel 8.2.3 → 8.3.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.
package/CHANGELOG.md CHANGED
@@ -1 +1,6 @@
1
- ## [8.2.3](https://github.com/Rebilly/rebilly/compare/revel-v8.2.2...revel-v8.2.3) (2024-12-04)
1
+ ## [8.3.0](https://github.com/Rebilly/rebilly/compare/revel-v8.2.4...revel-v8.3.0) (2024-12-05)
2
+
3
+
4
+ ### Features
5
+
6
+ * **revel:** Add close button to r-select ([#8745](https://github.com/Rebilly/rebilly/issues/8745)) ([00bd9f9](https://github.com/Rebilly/rebilly/commit/00bd9f946ca4ce772b97254c053ca660022f3af3))
@@ -19,6 +19,7 @@ interface State {
19
19
  search: string;
20
20
  messages: Message;
21
21
  async: AsyncExtension;
22
+ isHovered: boolean;
22
23
  }
23
24
  type CustomlabelFn = (option: OptionItem, label: string) => boolean;
24
25
  type TagValidatorFn = (option: ComplexOptionItem) => boolean;
@@ -357,6 +358,7 @@ declare const _default: import("vue").DefineComponent<{
357
358
  computedAsyncHasPrevOptions(): boolean;
358
359
  computedAsyncHasNextOptions(): boolean;
359
360
  displayNoResultsMessage(): boolean;
361
+ showRemoveIcon(): boolean;
360
362
  }, {
361
363
  activate(): void;
362
364
  addPointerElement({ key }: KeyboardEvent): void;
@@ -1,6 +1,7 @@
1
1
  import type { Directive } from 'vue';
2
2
  import './r-tooltip.scss';
3
3
  interface ToolTipTarget extends HTMLElement {
4
+ vTooltipClick: Nullable<() => void>;
4
5
  vTooltipEnter: Nullable<() => void>;
5
6
  vTooltipLeave: Nullable<() => void>;
6
7
  }