@topconsultnpm/sdkui-react-beta 6.8.86 → 6.8.88
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/lib/assets/thumbnails/dicom.png +0 -0
- package/lib/assets/thumbnails/doc.png +0 -0
- package/lib/assets/thumbnails/docx.png +0 -0
- package/lib/assets/thumbnails/dwg.png +0 -0
- package/lib/assets/thumbnails/email.png +0 -0
- package/lib/assets/thumbnails/exe.png +0 -0
- package/lib/assets/thumbnails/folder.png +0 -0
- package/lib/assets/thumbnails/html.png +0 -0
- package/lib/assets/thumbnails/image.png +0 -0
- package/lib/assets/thumbnails/index.ts +21 -0
- package/lib/assets/thumbnails/mp4.png +0 -0
- package/lib/assets/thumbnails/other.png +0 -0
- package/lib/assets/thumbnails/p7m.png +0 -0
- package/lib/assets/thumbnails/pdf.png +0 -0
- package/lib/assets/thumbnails/ppt.png +0 -0
- package/lib/assets/thumbnails/slddrw.png +0 -0
- package/lib/assets/thumbnails/txt.png +0 -0
- package/lib/assets/thumbnails/xls.png +0 -0
- package/lib/assets/thumbnails/xml.png +0 -0
- package/lib/assets/thumbnails/zip.png +0 -0
- package/lib/components/index.d.ts +0 -1
- package/lib/components/index.js +1 -1
- package/package.json +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import IconFolder from './folder.png';
|
|
2
|
+
import IconPdf from './pdf.png';
|
|
3
|
+
import IconTxt from './txt.png';
|
|
4
|
+
import IconXls from './xls.png';
|
|
5
|
+
import IconDocx from './doc.png';
|
|
6
|
+
import IconImage from './image.png';
|
|
7
|
+
import IconZip from './zip.png';
|
|
8
|
+
import IconXml from './xml.png';
|
|
9
|
+
import IconMp4 from './mp4.png';
|
|
10
|
+
import IconEmail from './email.png';
|
|
11
|
+
import IconPpt from './ppt.png';
|
|
12
|
+
import IconSigned from './p7m.png';
|
|
13
|
+
import IconOther from './other.png';
|
|
14
|
+
import IconExe from './exe.png';
|
|
15
|
+
import IconHtml from './html.png';
|
|
16
|
+
import IconDwg from './dwg.png';
|
|
17
|
+
import IconDicom from './dicom.png';
|
|
18
|
+
import IconSlddrw from './slddrw.png';
|
|
19
|
+
|
|
20
|
+
export {IconFolder,IconPdf,IconTxt,IconXls,IconDocx,IconImage,IconZip,IconXml,IconMp4,
|
|
21
|
+
IconEmail,IconPpt,IconSigned,IconOther,IconExe,IconHtml,IconDwg,IconDicom,IconSlddrw};
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/lib/components/index.js
CHANGED
|
@@ -65,4 +65,4 @@ export * from "./viewers/TMMidViewer";
|
|
|
65
65
|
export * from "./viewers/TMDataListItemViewer";
|
|
66
66
|
//TMDeviceProvider
|
|
67
67
|
export * from "./base/TMDeviceProvider";
|
|
68
|
-
export { default as TMAreaManager } from "./base/TMAreaManager";
|
|
68
|
+
// export { default as TMAreaManager } from "./base/TMAreaManager";
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@topconsultnpm/sdkui-react-beta",
|
|
3
|
-
"version": "6.8.
|
|
3
|
+
"version": "6.8.88",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
7
|
"clean": "powershell Remove-Item lib/ -recurse",
|
|
8
|
-
"copy-files": "copyfiles -u 1 src/assets/*.* src/assets/ImageLibrary/*.* src/assets/Metadata/*.* src/css/tm-sdkui.css lib/",
|
|
8
|
+
"copy-files": "copyfiles -u 1 src/assets/*.* src/assets/ImageLibrary/*.* src/assets/thumbnails/*.* src/assets/Metadata/*.* src/css/tm-sdkui.css lib/",
|
|
9
9
|
"tm-build": "npm run clean && tsc && npm run copy-files",
|
|
10
10
|
"tm-publish": "npm publish"
|
|
11
11
|
},
|