fui-material 1.22.0 → 1.22.2

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.
@@ -0,0 +1,3 @@
1
+ import { IExportingHtmlToXlsx } from "allorion-exporting-html-to-xlsx-test/dist/exportingHtmlToXlsx";
2
+ declare const fExportingHtmlToXlsx: (data: IExportingHtmlToXlsx) => Promise<boolean | (() => void)>;
3
+ export default fExportingHtmlToXlsx;
@@ -0,0 +1,3 @@
1
+ import type { ICellFormat } from "allorion-exporting-html-to-xlsx-test/dist/type";
2
+ declare const fInstallFormatCodeXlsx: (data: ICellFormat) => string;
3
+ export default fInstallFormatCodeXlsx;
@@ -0,0 +1 @@
1
+ export { default } from "./fExportingHtmlToXlsx";
@@ -4,6 +4,8 @@ export { default as fPrompt } from "./fPrompt";
4
4
  export { default as fExportTableToExcel } from "./fExportTableToExcel";
5
5
  export { default as fExportHtmlOrJsxToWord } from "./fExportHtmlOrJsxToWord";
6
6
  export { default as fExportingHtmlToDocx } from "./fExportingHtmlToDocx";
7
+ export { default as fExportingHtmlToXlsx } from "./fExportingHtmlToXlsx";
8
+ export { default as fInstallFormatCodeXlsx } from "./fExportingHtmlToXlsx/fInstallFormatCodeXlsx";
7
9
  export { default as fNotification } from "./Notification/fNotification";
8
10
  export { default as fNotificationDelete } from "./Notification/fNotificationDelete";
9
11
  export { default as fConvertFileToBase64 } from "./fConvertFileToBase64";
package/package.json CHANGED
@@ -1,51 +1,52 @@
1
- {
2
- "name": "fui-material",
3
- "version": "1.22.0",
4
- "publishConfig": {
5
- "access": "public",
6
- "registry": "https://registry.npmjs.org/"
7
- },
8
- "author": "Allori",
9
- "license": "ISC",
10
- "private": false,
11
- "scripts": {
12
- "dev": "vite",
13
- "build:types": "tsc --project tsconfig.build.json",
14
- "build": "vite build && npm run build:types",
15
- "build-publish": "vite build && npm run build:types && npm publish",
16
- "lint": "eslint .",
17
- "preview": "vite preview"
18
- },
19
- "dependencies": {
20
- "allorion-exporting-html-to-docx": "1.3.0",
21
- "axios": "^1.7.4",
22
- "jszip": "^3.10.1",
23
- "react": "18.3.1",
24
- "react-dom": "18.3.1"
25
- },
26
- "devDependencies": {
27
- "@eslint/js": "^9.9.0",
28
- "@rollup/plugin-image": "^3.0.3",
29
- "@types/node": "^22.4.1",
30
- "@types/react": "^18.3.3",
31
- "@types/react-dom": "^18.3.0",
32
- "@vitejs/plugin-react": "^4.3.1",
33
- "eslint": "^9.9.0",
34
- "eslint-plugin-react-hooks": "^5.1.0-rc.0",
35
- "eslint-plugin-react-refresh": "^0.4.9",
36
- "globals": "^15.9.0",
37
- "rollup-plugin-copy": "^3.5.0",
38
- "sass": "^1.85.1",
39
- "typescript": "^5.5.3",
40
- "typescript-eslint": "^8.0.1",
41
- "vite": "^5.4.1",
42
- "vite-plugin-lib-inject-css": "^2.1.1"
43
- },
44
- "main": "dist/f-ui-kit.umd.js",
45
- "module": "dist/f-ui-kit.es.js",
46
- "types": "dist/types/index.d.ts",
47
- "files": [
48
- "dist",
49
- "dist/types"
50
- ]
1
+ {
2
+ "name": "fui-material",
3
+ "version": "1.22.2",
4
+ "publishConfig": {
5
+ "access": "public",
6
+ "registry": "https://registry.npmjs.org/"
7
+ },
8
+ "author": "Allori",
9
+ "license": "ISC",
10
+ "private": false,
11
+ "scripts": {
12
+ "dev": "vite",
13
+ "build:types": "tsc --project tsconfig.build.json",
14
+ "build": "vite build && npm run build:types",
15
+ "build-publish": "vite build && npm run build:types && npm publish",
16
+ "lint": "eslint .",
17
+ "preview": "vite preview"
18
+ },
19
+ "dependencies": {
20
+ "allorion-exporting-html-to-docx": "1.3.0",
21
+ "allorion-exporting-html-to-xlsx-test": "^1.0.1",
22
+ "axios": "^1.7.4",
23
+ "jszip": "^3.10.1",
24
+ "react": "18.3.1",
25
+ "react-dom": "18.3.1"
26
+ },
27
+ "devDependencies": {
28
+ "@eslint/js": "^9.9.0",
29
+ "@rollup/plugin-image": "^3.0.3",
30
+ "@types/node": "^22.4.1",
31
+ "@types/react": "^18.3.3",
32
+ "@types/react-dom": "^18.3.0",
33
+ "@vitejs/plugin-react": "^4.3.1",
34
+ "eslint": "^9.9.0",
35
+ "eslint-plugin-react-hooks": "^5.1.0-rc.0",
36
+ "eslint-plugin-react-refresh": "^0.4.9",
37
+ "globals": "^15.9.0",
38
+ "rollup-plugin-copy": "^3.5.0",
39
+ "sass": "^1.85.1",
40
+ "typescript": "^5.5.3",
41
+ "typescript-eslint": "^8.0.1",
42
+ "vite": "^5.4.1",
43
+ "vite-plugin-lib-inject-css": "^2.1.1"
44
+ },
45
+ "main": "dist/f-ui-kit.umd.js",
46
+ "module": "dist/f-ui-kit.es.js",
47
+ "types": "dist/types/index.d.ts",
48
+ "files": [
49
+ "dist",
50
+ "dist/types"
51
+ ]
51
52
  }