UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Dev test sign gts

Merged graham.smith requested to merge dev-test-sign-gts into dev-test-signing
31 files
+ 474
251
Compare changes
  • Side-by-side
  • Inline
Files
31
<template>
<a
data-cy="download"
:href="internalFilePath"
:relativeURL="true ? 'download' : undefined"
class="download-button"
@@ -19,7 +20,7 @@
:size="iconSize"
:style="{
fill: iconFillColor,
color: fileMultipleColor + ' !important'
color: fileMultipleColor + ' !important',
}"
>
{{ icon }}
@@ -49,81 +50,81 @@ export default {
props: {
showDownload: {
type: Boolean,
default: true
default: true,
},
text: {
type: String,
default: ""
default: "",
},
internalFilePath: {
type: String,
default: ""
default: "",
},
iconFillColor: {
type: String,
default: "#FFFFFF"
default: "#FFFFFF",
},
fileMultipleColor: {
type: String,
default: "#FFFFFF"
default: "#FFFFFF",
},
textColor: {
type: String,
default: ""
default: "",
},
textSize: {
type: String,
default: "16"
default: "16",
},
downloadColor: {
type: String,
default: "#BDC931"
default: "#BDC931",
},
btnColor: {
type: String,
default: "#002743"
default: "#002743",
},
btnSpanTextClass: {
type: String,
default: "ml-2 mr-8"
default: "ml-2 mr-8",
},
btnClass: {
type: String,
default: ""
default: "",
},
target: {
type: String,
default: "_blank"
default: "_blank",
},
btnWidth: {
type: String,
default: ""
default: "",
},
btnHeight: {
type: String,
default: ""
default: "",
},
relativeURL: {
type: String,
default: ""
default: "",
},
icon: {
type: String,
default: "mdi-file-multiple"
default: "mdi-file-multiple",
},
iconSize: {
type: Number,
default: 24
default: 24,
},
iconClass: {
type: String,
default: ""
default: "",
},
downloadIconClass: {
type: String,
default: "mt-1"
}
}
default: "mt-1",
},
},
};
</script>
<style lang="scss" scoped></style>
Loading