@rebilly/revel 8.2.4 → 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 +3 -3
- package/dist/components/r-select/r-select.vue.d.ts +2 -0
- package/dist/revel.mjs +304 -281
- package/dist/revel.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [8.
|
|
1
|
+
## [8.3.0](https://github.com/Rebilly/rebilly/compare/revel-v8.2.4...revel-v8.3.0) (2024-12-05)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Features
|
|
5
5
|
|
|
6
|
-
* **
|
|
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;
|