This commit is contained in:
tugcekucukoglu 2024-01-24 14:54:30 +03:00
commit ef7b07d1e6
82 changed files with 472 additions and 6 deletions

View file

@ -132,11 +132,11 @@ export default {
},
highlightOnSelect: {
type: Boolean,
default: false
default: true
},
showTick: {
type: Boolean,
default: true
default: false
},
filterMessage: {
type: String,

View file

@ -436,12 +436,12 @@ export interface DropdownProps {
focusOnHover?: boolean | undefined;
/**
* Whether the selected option will be add highlight class.
* @defaultValue false
* @defaultValue true
*/
highlightOnSelect?: boolean | undefined;
/**
* Whether the selected option will be shown with a tick.
* @defaultValue true
* @defaultValue false
*/
showTick?: boolean | undefined;
/**