primevue-mirror/components/lib/password/BasePassword.vue

124 lines
2.7 KiB
Vue
Raw Normal View History

2023-05-25 08:53:29 +00:00
<script>
import BaseComponent from 'primevue/basecomponent';
import PasswordStyle from 'primevue/password/style';
2023-05-25 08:53:29 +00:00
export default {
name: 'BasePassword',
extends: BaseComponent,
props: {
modelValue: String,
promptLabel: {
type: String,
default: null
},
mediumRegex: {
type: String,
default: '^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.{6,})' // eslint-disable-line
},
strongRegex: {
type: String,
default: '^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{8,})' // eslint-disable-line
},
weakLabel: {
type: String,
default: null
},
mediumLabel: {
type: String,
default: null
},
strongLabel: {
type: String,
default: null
},
feedback: {
type: Boolean,
default: true
},
appendTo: {
type: [String, Object],
2023-05-25 08:53:29 +00:00
default: 'body'
},
toggleMask: {
type: Boolean,
default: false
},
hideIcon: {
type: String,
default: undefined
},
showIcon: {
type: String,
default: undefined
},
2024-01-31 08:02:53 +00:00
variant: {
type: String,
2024-02-02 11:46:26 +00:00
default: null
2024-01-31 08:02:53 +00:00
},
invalid: {
type: Boolean,
default: false
},
2023-05-25 08:53:29 +00:00
disabled: {
type: Boolean,
default: false
},
placeholder: {
type: String,
default: null
},
required: {
type: Boolean,
default: false
},
inputId: {
type: String,
default: null
},
inputClass: {
type: [String, Object],
default: null
},
inputStyle: {
type: Object,
default: null
},
inputProps: {
type: null,
default: null
},
panelId: {
type: String,
default: null
},
panelClass: {
type: [String, Object],
default: null
},
panelStyle: {
type: Object,
default: null
},
panelProps: {
type: null,
default: null
},
ariaLabelledby: {
2023-05-25 08:53:29 +00:00
type: String,
default: null
},
ariaLabel: {
2023-05-25 08:53:29 +00:00
type: String,
default: null
}
},
style: PasswordStyle,
provide() {
return {
$pcPassword: this,
$parentInstance: this
};
2023-05-25 08:53:29 +00:00
}
};
</script>