Skip to content

Commit

Permalink
Remove placeholder image duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-dharti-r committed Jan 11, 2024
1 parent fb4bdf2 commit 3e50cdd
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 1 deletion.
Binary file removed react/examples/demo/src/assets/images/apk-icon.png
Binary file not shown.
Binary file removed react/examples/demo/src/assets/images/file-icon.png
Binary file not shown.
Binary file removed react/examples/demo/src/assets/images/music-icon.png
Binary file not shown.
Binary file not shown.
Binary file removed react/examples/demo/src/assets/images/sql-icon.png
Binary file not shown.
Binary file removed react/examples/demo/src/assets/images/text-icon.png
Binary file not shown.
Binary file removed react/examples/demo/src/assets/images/zip-icon.png
Binary file not shown.
2 changes: 1 addition & 1 deletion react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@canopassoftware/react-file-upload",
"version": "1.1.35",
"version": "1.2.0",
"description": "Show the preview of file and manage files data to upload",
"main": "index.umd.js",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions vue/examples/LongSquareView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
<script lang="ts">
import "@canopassoftware/vue-file-upload/style.css"
import { SingleFileUpload, MultipleFileUpload } from '@canopassoftware/vue-file-upload'
import placeHolderImage from "../../assets/images/placeholder.png"
export default {
components: {
Expand All @@ -105,6 +106,7 @@ export default {
},
data() {
return {
placeHolderImage,
uploadedFile: {} as {
fileType: string
fileUrl: string
Expand Down
2 changes: 2 additions & 0 deletions vue/examples/RoundView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
<script lang="ts">
import "@canopassoftware/vue-file-upload/style.css"
import { SingleFileUpload, MultipleFileUpload } from '@canopassoftware/vue-file-upload'
import placeHolderImage from "../../assets/images/placeholder.png"
export default {
components: {
Expand All @@ -118,6 +119,7 @@ export default {
},
data() {
return {
placeHolderImage,
uploadedFile: {} as {
fileType: string
fileUrl: string
Expand Down
2 changes: 2 additions & 0 deletions vue/examples/SquareView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
<script lang="ts">
import "@canopassoftware/vue-file-upload/style.css"
import { SingleFileUpload, MultipleFileUpload } from '@canopassoftware/vue-file-upload'
import placeHolderImage from "../../assets/images/placeholder.png"
export default {
components: {
Expand All @@ -118,6 +119,7 @@ export default {
},
data() {
return {
placeHolderImage,
uploadedFile: {} as {
fileType: string
fileUrl: string
Expand Down

0 comments on commit 3e50cdd

Please sign in to comment.