1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- const props = {
- actions: {
- type: Array,
- },
- buttonLayout: {
- type: String,
- value: 'horizontal',
- },
- cancelBtn: {
- type: String,
- optionalTypes: [Object],
- value: '',
- },
- closeOnOverlayClick: {
- type: Boolean,
- value: true,
- },
- confirmBtn: {
- type: null,
- optionalTypes: [Object],
- value: '',
- },
- content: {
- type: String,
- },
- externalClasses: {
- type: Array,
- },
- overlayProps: {
- type: Object,
- value: {},
- },
- preventScrollThrough: {
- type: Boolean,
- value: true,
- },
- showOverlay: {
- type: Boolean,
- value: true,
- },
- title: {
- type: String,
- },
- visible: {
- type: Boolean,
- value: false,
- },
- zIndex: {
- type: Number,
- value: 11500,
- },
- };
- export default props;
|