@rebilly/revel 8.2.4 → 8.3.1
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 +2 -2
- 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.1](https://github.com/Rebilly/rebilly/compare/revel-v8.3.0...revel-v8.3.1) (2024-12-05)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **cashier:** Fix units issues on the hosted app when injecting styles ([#9054](https://github.com/Rebilly/rebilly/issues/9054)) ([21ac23d](https://github.com/Rebilly/rebilly/commit/21ac23d6dc8800e3facba2681d7999f36e437af8))
|
|
@@ -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;
|