@zohodesk/dot 1.0.0-temp-200 → 1.0.0-temp-200.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/AttachmentViewer/AttachmentViewer.js +2 -2
- package/es/AttachmentViewer/AttachmentViewer.module.css +1 -1
- package/es/common/dot_common.module.css +2 -2
- package/lib/AttachmentViewer/AttachmentViewer.js +1 -2
- package/lib/AttachmentViewer/AttachmentViewer.module.css +1 -1
- package/lib/common/dot_common.module.css +2 -2
- package/package.json +1 -1
|
@@ -13,8 +13,8 @@ import FreezeLayer from "../FreezeLayer/FreezeLayer";
|
|
|
13
13
|
import { isAudioFile, getExtensionFromFileName, isVideoFile, isPdfFile, isDocsFile, isSheetFile, isShowFile, isEmailFile, isImageFile, openNewTab, sheetFileTypes, docsFileTypes, showFileTypes, designFileTypes, zipFileType } from "./Attachment";
|
|
14
14
|
import { shallowDiff } from "../utils/General";
|
|
15
15
|
import style from "./AttachmentViewer.module.css";
|
|
16
|
-
import { checkFileSourcesValidation } from "./utils";
|
|
17
|
-
|
|
16
|
+
import { checkFileSourcesValidation } from "./utils"; // import audioThumbNail from '../../images/audio_thumbnail.png'
|
|
17
|
+
|
|
18
18
|
export default class AttachmentViewer extends Component {
|
|
19
19
|
constructor(props) {
|
|
20
20
|
super(props);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.audioImage {
|
|
1
|
+
/* .audioImage {
|
|
2
2
|
background-image: url('../../images/audio_thumbnail.png');
|
|
3
3
|
background-repeat: no-repeat;
|
|
4
4
|
}
|
|
@@ -36,4 +36,4 @@
|
|
|
36
36
|
.otherImage {
|
|
37
37
|
background-image: url('../../images/otherfile_thumbnail.png');
|
|
38
38
|
background-repeat: no-repeat;
|
|
39
|
-
}
|
|
39
|
+
} */
|
|
@@ -39,8 +39,6 @@ var _AttachmentViewerModule = _interopRequireDefault(require("./AttachmentViewer
|
|
|
39
39
|
|
|
40
40
|
var _utils = require("./utils");
|
|
41
41
|
|
|
42
|
-
var _audio_thumbnail = _interopRequireDefault(require("../../images/audio_thumbnail.png"));
|
|
43
|
-
|
|
44
42
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
45
43
|
|
|
46
44
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -81,6 +79,7 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
|
|
|
81
79
|
|
|
82
80
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
83
81
|
|
|
82
|
+
// import audioThumbNail from '../../images/audio_thumbnail.png'
|
|
84
83
|
var AttachmentViewer = /*#__PURE__*/function (_Component) {
|
|
85
84
|
_inherits(AttachmentViewer, _Component);
|
|
86
85
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.audioImage {
|
|
1
|
+
/* .audioImage {
|
|
2
2
|
background-image: url('../../images/audio_thumbnail.png');
|
|
3
3
|
background-repeat: no-repeat;
|
|
4
4
|
}
|
|
@@ -36,4 +36,4 @@
|
|
|
36
36
|
.otherImage {
|
|
37
37
|
background-image: url('../../images/otherfile_thumbnail.png');
|
|
38
38
|
background-repeat: no-repeat;
|
|
39
|
-
}
|
|
39
|
+
} */
|