@files-preview-app/preview-file 1.0.0 → 1.1.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/README.md +299 -295
- package/THIRD_PARTY_LICENSES.md +7 -3
- package/dist/angular.cjs +825 -0
- package/dist/angular.cjs.map +1 -1
- package/dist/angular.js +824 -0
- package/dist/angular.js.map +1 -1
- package/dist/index.cjs +808 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +804 -1
- package/dist/index.js.map +1 -1
- package/dist/react.cjs +825 -0
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.cts +4 -0
- package/dist/react.d.ts +4 -0
- package/dist/react.js +824 -0
- package/dist/react.js.map +1 -1
- package/dist/vue.cjs +825 -0
- package/dist/vue.cjs.map +1 -1
- package/dist/vue.js +824 -0
- package/dist/vue.js.map +1 -1
- package/package.json +17 -4
package/dist/index.d.cts
CHANGED
|
@@ -6,10 +6,15 @@ export { docxPlugin } from '@patel.sumit51/plugin-docx';
|
|
|
6
6
|
export { excelPlugin } from '@patel.sumit51/plugin-excel';
|
|
7
7
|
export { csvPlugin } from '@patel.sumit51/plugin-csv';
|
|
8
8
|
export { codePlugin } from '@patel.sumit51/plugin-code';
|
|
9
|
+
export { archivePlugin } from '@patel.sumit51/plugin-archive';
|
|
10
|
+
export { markdownPlugin } from '@patel.sumit51/plugin-markdown';
|
|
11
|
+
export { pptxPlugin } from '@patel.sumit51/plugin-pptx';
|
|
12
|
+
export { threeDPlugin } from '@patel.sumit51/plugin-3d';
|
|
9
13
|
|
|
10
14
|
/**
|
|
11
15
|
* Returns all built-in default preview plugins:
|
|
12
|
-
* PDF,
|
|
16
|
+
* PDF, Word (DOCX), Excel (XLSX), PowerPoint (PPTX), CSV/TSV,
|
|
17
|
+
* ZIP Archives, Markdown, 3D Models (STL/OBJ), Media (Images/Video/Audio/SVG), and Code/Text.
|
|
13
18
|
*/
|
|
14
19
|
declare function getDefaultPlugins(): PreviewPlugin[];
|
|
15
20
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -6,10 +6,15 @@ export { docxPlugin } from '@patel.sumit51/plugin-docx';
|
|
|
6
6
|
export { excelPlugin } from '@patel.sumit51/plugin-excel';
|
|
7
7
|
export { csvPlugin } from '@patel.sumit51/plugin-csv';
|
|
8
8
|
export { codePlugin } from '@patel.sumit51/plugin-code';
|
|
9
|
+
export { archivePlugin } from '@patel.sumit51/plugin-archive';
|
|
10
|
+
export { markdownPlugin } from '@patel.sumit51/plugin-markdown';
|
|
11
|
+
export { pptxPlugin } from '@patel.sumit51/plugin-pptx';
|
|
12
|
+
export { threeDPlugin } from '@patel.sumit51/plugin-3d';
|
|
9
13
|
|
|
10
14
|
/**
|
|
11
15
|
* Returns all built-in default preview plugins:
|
|
12
|
-
* PDF,
|
|
16
|
+
* PDF, Word (DOCX), Excel (XLSX), PowerPoint (PPTX), CSV/TSV,
|
|
17
|
+
* ZIP Archives, Markdown, 3D Models (STL/OBJ), Media (Images/Video/Audio/SVG), and Code/Text.
|
|
13
18
|
*/
|
|
14
19
|
declare function getDefaultPlugins(): PreviewPlugin[];
|
|
15
20
|
/**
|