@agilemotion/oui-react-js 1.4.1 → 1.4.3
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/dist/BasicAppHome.js +0 -2
- package/dist/assets/img/default-file-thumb.png +0 -0
- package/dist/assets/img/doc.png +0 -0
- package/dist/assets/img/excel.png +0 -0
- package/dist/assets/img/media.png +0 -0
- package/dist/assets/img/pdf-icon.png +0 -0
- package/dist/assets/img/powerpoint.png +0 -0
- package/dist/assets/img/zip.png +0 -0
- package/dist/components/FileThumb.js +1 -1
- package/package.json +1 -1
package/dist/BasicAppHome.js
CHANGED
|
@@ -27,8 +27,6 @@ var _RestUtils = require("./RestUtils");
|
|
|
27
27
|
|
|
28
28
|
var _SocketManager = _interopRequireDefault(require("./components/SocketManager"));
|
|
29
29
|
|
|
30
|
-
require("../skins.css");
|
|
31
|
-
|
|
32
30
|
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { return cache; }; return cache; }
|
|
33
31
|
|
|
34
32
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -117,7 +117,7 @@ const FileThumb = props => {
|
|
|
117
117
|
backgroundSize: 'contain',
|
|
118
118
|
backgroundPosition: 'center',
|
|
119
119
|
backgroundColor: 'transparent',
|
|
120
|
-
backgroundImage: isImage() ? "url(".concat(file.repositoryId ? downloadUrl : file.payload, ")") : "url(".concat(require('
|
|
120
|
+
backgroundImage: isImage() ? "url(".concat(file.repositoryId ? downloadUrl : file.payload, ")") : "url(".concat(require('../assets/img/' + getThumbImage()), ")")
|
|
121
121
|
}
|
|
122
122
|
})));
|
|
123
123
|
};
|