Browse Source
Reviewed-on: #13 Co-authored-by: YaroslavBerkuta <yaroslavberkuta@gmail.com> Co-committed-by: YaroslavBerkuta <yaroslavberkuta@gmail.com>pull/16/head
18 changed files with 124 additions and 43 deletions
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?> |
||||
<paths xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<files-path name="files" path="/" /> |
||||
<external-files-path name="external_files" path="" /> |
||||
<external-path name="external" path="." /> |
||||
<cache-path name="cache" path="/" /> |
||||
</paths> |
@ -1,7 +1,7 @@
@@ -1,7 +1,7 @@
|
||||
export * from './confirm-modal.smart-component'; |
||||
export * from './info-modal.smart-component'; |
||||
export * from './confirm-modal.smart-component' |
||||
export * from './info-modal.smart-component' |
||||
export * from './date-picker.smart-component' |
||||
export * from './done-task.smart-component' |
||||
export * from './modal-picker-with-pagination.smart-component' |
||||
export * from './fancybox.smart-component' |
||||
export * from './fullscreen-video.smart-component' |
||||
export * from './fullscreen-video.smart-component' |
||||
|
@ -1,14 +1,15 @@
@@ -1,14 +1,15 @@
|
||||
export enum FileType { |
||||
DOC = "doc", |
||||
GIF = "gif", |
||||
JPEG = "jpeg", |
||||
JPG = "jpg", |
||||
MP3 = "mp3", |
||||
MP4 = "mp4", |
||||
PDF = "pdf", |
||||
PNG = "png", |
||||
SVG = "svg", |
||||
TXT = "txt", |
||||
XLS = "xls", |
||||
ZIP = "zip" |
||||
} |
||||
DOC = 'doc', |
||||
GIF = 'gif', |
||||
JPEG = 'jpeg', |
||||
JPG = 'jpg', |
||||
MP3 = 'mp3', |
||||
MP4 = 'mp4', |
||||
PDF = 'pdf', |
||||
PNG = 'png', |
||||
SVG = 'svg', |
||||
TXT = 'txt', |
||||
XLS = 'xls', |
||||
ZIP = 'zip', |
||||
DOCX = 'docx', |
||||
} |
||||
|
Loading…
Reference in new issue