@rebilly/revel 11.4.1 → 11.4.3
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 +1 -6
- package/dist/components/r-select/r-select.vue.d.ts +22 -22
- package/dist/revel.mjs +313 -313
- package/dist/revel.umd.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1 @@
|
|
|
1
|
-
## [11.4.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* **revel:** Add a check to selected options to make them more visible ([#15469](https://github.com/Rebilly/rebilly/issues/15469)) ([53b6053](https://github.com/Rebilly/rebilly/commit/53b6053d8ac2411de50c2cef76db283ac7646465))
|
|
1
|
+
## [11.4.3](https://github.com/Rebilly/rebilly/compare/revel-v11.4.2...revel-v11.4.3) (2025-10-08)
|
|
@@ -21,8 +21,8 @@ interface State {
|
|
|
21
21
|
async: AsyncExtension;
|
|
22
22
|
isHovered: boolean;
|
|
23
23
|
}
|
|
24
|
-
type
|
|
25
|
-
type
|
|
24
|
+
type CustomLabelFn = (option: OptionItem, label: string) => boolean;
|
|
25
|
+
type CustomOptionsValidatorFn = (option: ComplexOptionItem) => boolean;
|
|
26
26
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
27
27
|
/**
|
|
28
28
|
* Specify if no option can be selected
|
|
@@ -63,7 +63,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
63
63
|
* If the option is an object specify what property should be used as a label, by default 'label'
|
|
64
64
|
*/
|
|
65
65
|
customLabel: {
|
|
66
|
-
type: PropType<
|
|
66
|
+
type: PropType<CustomLabelFn>;
|
|
67
67
|
default(option: OptionItem, label: string): {};
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
@@ -279,22 +279,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
279
279
|
/**
|
|
280
280
|
* Specify should the user create his own options - tags
|
|
281
281
|
*/
|
|
282
|
-
|
|
282
|
+
allowCustomOptions: {
|
|
283
283
|
type: BooleanConstructor;
|
|
284
284
|
default: boolean;
|
|
285
285
|
};
|
|
286
286
|
/**
|
|
287
|
-
* Specify
|
|
287
|
+
* Specify custom option position
|
|
288
288
|
*/
|
|
289
|
-
|
|
290
|
-
type:
|
|
289
|
+
customOptionsPosition: {
|
|
290
|
+
type: PropType<"top" | "bottom">;
|
|
291
291
|
default: string;
|
|
292
292
|
};
|
|
293
293
|
/**
|
|
294
|
-
* Specify how
|
|
294
|
+
* Specify how custom options are validated
|
|
295
295
|
*/
|
|
296
|
-
|
|
297
|
-
type: PropType<
|
|
296
|
+
customOptionsValidator: {
|
|
297
|
+
type: PropType<CustomOptionsValidatorFn>;
|
|
298
298
|
default: () => true;
|
|
299
299
|
};
|
|
300
300
|
/**
|
|
@@ -447,7 +447,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
447
447
|
* If the option is an object specify what property should be used as a label, by default 'label'
|
|
448
448
|
*/
|
|
449
449
|
customLabel: {
|
|
450
|
-
type: PropType<
|
|
450
|
+
type: PropType<CustomLabelFn>;
|
|
451
451
|
default(option: OptionItem, label: string): {};
|
|
452
452
|
};
|
|
453
453
|
/**
|
|
@@ -663,22 +663,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
663
663
|
/**
|
|
664
664
|
* Specify should the user create his own options - tags
|
|
665
665
|
*/
|
|
666
|
-
|
|
666
|
+
allowCustomOptions: {
|
|
667
667
|
type: BooleanConstructor;
|
|
668
668
|
default: boolean;
|
|
669
669
|
};
|
|
670
670
|
/**
|
|
671
|
-
* Specify
|
|
671
|
+
* Specify custom option position
|
|
672
672
|
*/
|
|
673
|
-
|
|
674
|
-
type:
|
|
673
|
+
customOptionsPosition: {
|
|
674
|
+
type: PropType<"top" | "bottom">;
|
|
675
675
|
default: string;
|
|
676
676
|
};
|
|
677
677
|
/**
|
|
678
|
-
* Specify how
|
|
678
|
+
* Specify how custom options are validated
|
|
679
679
|
*/
|
|
680
|
-
|
|
681
|
-
type: PropType<
|
|
680
|
+
customOptionsValidator: {
|
|
681
|
+
type: PropType<CustomOptionsValidatorFn>;
|
|
682
682
|
default: () => true;
|
|
683
683
|
};
|
|
684
684
|
/**
|
|
@@ -737,7 +737,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
737
737
|
blockKeys: string[];
|
|
738
738
|
clearOnSelect: boolean;
|
|
739
739
|
closeOnSelect: boolean;
|
|
740
|
-
customLabel:
|
|
740
|
+
customLabel: CustomLabelFn;
|
|
741
741
|
hideSelected: boolean;
|
|
742
742
|
internalSearch: boolean;
|
|
743
743
|
limitText: Function;
|
|
@@ -755,9 +755,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
755
755
|
showNoOptions: boolean;
|
|
756
756
|
showNoResults: boolean;
|
|
757
757
|
showPointer: boolean;
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
758
|
+
allowCustomOptions: boolean;
|
|
759
|
+
customOptionsPosition: "bottom" | "top";
|
|
760
|
+
customOptionsValidator: CustomOptionsValidatorFn;
|
|
761
761
|
asyncConfig: Config;
|
|
762
762
|
asyncValuePropsKey: string;
|
|
763
763
|
trackAsyncUpdatesByObject: boolean;
|