@feedmepos/mf-report 5.3.5 → 5.3.6
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/api/insight/type.d.ts +7 -0
- package/dist/api/integration/type.d.ts +2 -2
- package/dist/app.js +8808 -8727
- package/dist/package.json +71 -0
- package/dist/stores/integration.d.ts +60 -60
- package/dist/style.css +1 -1
- package/dist/views/insight/SidePanel.vue.d.ts +2 -6
- package/dist/views/integration/MappingField.vue.d.ts +52 -50
- package/dist/views/integration/UploadSection.vue.d.ts +23 -0
- package/package.json +5 -4
- package/dist/tsconfig.app.tsbuildinfo +0 -1
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@feedmepos/mf-report",
|
|
3
|
+
"version": "5.3.6",
|
|
4
|
+
"files": [
|
|
5
|
+
"dist"
|
|
6
|
+
],
|
|
7
|
+
"type": "module",
|
|
8
|
+
"module": "./dist/app.js",
|
|
9
|
+
"license": "UNLICENSED",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/app.d.ts",
|
|
13
|
+
"import": "./dist/app.js"
|
|
14
|
+
},
|
|
15
|
+
"./style.css": "./dist/style.css"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "vite",
|
|
19
|
+
"build": "run-p type-check \"build-only {@}\" --",
|
|
20
|
+
"build:mf:dev:keynote2024": "vite build --mode fmmf:dev:keynote2024",
|
|
21
|
+
"build:mf:dev": "vite build --mode fmmf",
|
|
22
|
+
"build:mf:prod": "vite build --mode fmmf:prod",
|
|
23
|
+
"build-types": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json --outDir dist --composite false",
|
|
24
|
+
"build-only:dev": "pnpm build:mf:dev && pnpm build-types && cp package.json ./dist",
|
|
25
|
+
"build-only:prod": "pnpm build:mf:prod && pnpm build-types && cp package.json ./dist",
|
|
26
|
+
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
|
|
27
|
+
"deploy-npm:dev": "pnpm run build-only:dev && pnpm publish --no-git-checks .",
|
|
28
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
29
|
+
"format": "prettier --write src/"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@feedmepos/mf-common": "^1.8.32",
|
|
33
|
+
"@feedmepos/ui-library": "1.2.50",
|
|
34
|
+
"axios": "^1.6.7",
|
|
35
|
+
"change-case": "^5.4.3",
|
|
36
|
+
"chart.js": "^4.4.2",
|
|
37
|
+
"consola": "^3.2.3",
|
|
38
|
+
"consola-loki": "^0.0.5",
|
|
39
|
+
"dayjs": "^1.11.10",
|
|
40
|
+
"dotenv": "^16.3.1",
|
|
41
|
+
"pinia": "^2.1.7",
|
|
42
|
+
"uuid": "^9.0.1",
|
|
43
|
+
"vue": "^3.5.12",
|
|
44
|
+
"vue-router": "^4.2.5",
|
|
45
|
+
"vuedraggable": "^4.1.0",
|
|
46
|
+
"xlsx": "^0.18.5"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@rushstack/eslint-patch": "^1.3.3",
|
|
50
|
+
"@tsconfig/node18": "^18.2.2",
|
|
51
|
+
"@types/node": "^18.17.17",
|
|
52
|
+
"@types/uuid": "^9.0.8",
|
|
53
|
+
"@vitejs/plugin-vue": "^5.0.2",
|
|
54
|
+
"@vue/eslint-config-prettier": "^8.0.0",
|
|
55
|
+
"@vue/eslint-config-typescript": "^12.0.0",
|
|
56
|
+
"@vue/tsconfig": "^0.4.0",
|
|
57
|
+
"autoprefixer": "^10.4.16",
|
|
58
|
+
"eslint": "^8.54.0",
|
|
59
|
+
"eslint-plugin-vue": "^9.19.2",
|
|
60
|
+
"npm-run-all2": "^6.0.6",
|
|
61
|
+
"postcss": "^8.4.31",
|
|
62
|
+
"prettier": "^3.0.3",
|
|
63
|
+
"query-engine-dart": "file:./extra_packages/query-engine",
|
|
64
|
+
"report-v4-dart": "file:./extra_packages/report-v4",
|
|
65
|
+
"sass": "^1.71.0",
|
|
66
|
+
"tailwindcss": "^3.4.1",
|
|
67
|
+
"typescript": "~5.2.2",
|
|
68
|
+
"vite": "^5.1.6",
|
|
69
|
+
"vue-tsc": "^1.8.11"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -55,8 +55,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
55
55
|
hour: number;
|
|
56
56
|
minute: number;
|
|
57
57
|
};
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
lastUploadDate?: string | undefined;
|
|
59
|
+
delayDay: number;
|
|
60
60
|
} | {
|
|
61
61
|
name: IntegrationPlatform.AutoCount;
|
|
62
62
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -101,8 +101,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
101
101
|
hour: number;
|
|
102
102
|
minute: number;
|
|
103
103
|
};
|
|
104
|
-
|
|
105
|
-
|
|
104
|
+
lastUploadDate?: string | undefined;
|
|
105
|
+
delayDay: number;
|
|
106
106
|
} | {
|
|
107
107
|
name: IntegrationPlatform.SQL;
|
|
108
108
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -147,8 +147,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
147
147
|
hour: number;
|
|
148
148
|
minute: number;
|
|
149
149
|
};
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
lastUploadDate?: string | undefined;
|
|
151
|
+
delayDay: number;
|
|
152
152
|
} | {
|
|
153
153
|
name: IntegrationPlatform.iFlexi_HRMS;
|
|
154
154
|
mappings?: {
|
|
@@ -169,8 +169,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
169
169
|
hour: number;
|
|
170
170
|
minute: number;
|
|
171
171
|
};
|
|
172
|
-
|
|
173
|
-
|
|
172
|
+
lastUploadDate?: string | undefined;
|
|
173
|
+
delayDay: number;
|
|
174
174
|
} | {
|
|
175
175
|
name: IntegrationPlatform.Xero;
|
|
176
176
|
refreshToken?: string | undefined;
|
|
@@ -244,8 +244,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
244
244
|
hour: number;
|
|
245
245
|
minute: number;
|
|
246
246
|
};
|
|
247
|
-
|
|
248
|
-
|
|
247
|
+
lastUploadDate?: string | undefined;
|
|
248
|
+
delayDay: number;
|
|
249
249
|
};
|
|
250
250
|
}[], Integration<import("@/api/integration/type").Platform>[] | {
|
|
251
251
|
_id?: string | undefined;
|
|
@@ -302,8 +302,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
302
302
|
hour: number;
|
|
303
303
|
minute: number;
|
|
304
304
|
};
|
|
305
|
-
|
|
306
|
-
|
|
305
|
+
lastUploadDate?: string | undefined;
|
|
306
|
+
delayDay: number;
|
|
307
307
|
} | {
|
|
308
308
|
name: IntegrationPlatform.AutoCount;
|
|
309
309
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -348,8 +348,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
348
348
|
hour: number;
|
|
349
349
|
minute: number;
|
|
350
350
|
};
|
|
351
|
-
|
|
352
|
-
|
|
351
|
+
lastUploadDate?: string | undefined;
|
|
352
|
+
delayDay: number;
|
|
353
353
|
} | {
|
|
354
354
|
name: IntegrationPlatform.SQL;
|
|
355
355
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -394,8 +394,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
394
394
|
hour: number;
|
|
395
395
|
minute: number;
|
|
396
396
|
};
|
|
397
|
-
|
|
398
|
-
|
|
397
|
+
lastUploadDate?: string | undefined;
|
|
398
|
+
delayDay: number;
|
|
399
399
|
} | {
|
|
400
400
|
name: IntegrationPlatform.iFlexi_HRMS;
|
|
401
401
|
mappings?: {
|
|
@@ -416,8 +416,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
416
416
|
hour: number;
|
|
417
417
|
minute: number;
|
|
418
418
|
};
|
|
419
|
-
|
|
420
|
-
|
|
419
|
+
lastUploadDate?: string | undefined;
|
|
420
|
+
delayDay: number;
|
|
421
421
|
} | {
|
|
422
422
|
name: IntegrationPlatform.Xero;
|
|
423
423
|
refreshToken?: string | undefined;
|
|
@@ -491,8 +491,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
491
491
|
hour: number;
|
|
492
492
|
minute: number;
|
|
493
493
|
};
|
|
494
|
-
|
|
495
|
-
|
|
494
|
+
lastUploadDate?: string | undefined;
|
|
495
|
+
delayDay: number;
|
|
496
496
|
};
|
|
497
497
|
}[]>;
|
|
498
498
|
getSettings: () => Promise<void>;
|
|
@@ -552,8 +552,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
552
552
|
hour: number;
|
|
553
553
|
minute: number;
|
|
554
554
|
};
|
|
555
|
-
|
|
556
|
-
|
|
555
|
+
lastUploadDate?: string | undefined;
|
|
556
|
+
delayDay: number;
|
|
557
557
|
} | {
|
|
558
558
|
name: IntegrationPlatform.AutoCount;
|
|
559
559
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -598,8 +598,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
598
598
|
hour: number;
|
|
599
599
|
minute: number;
|
|
600
600
|
};
|
|
601
|
-
|
|
602
|
-
|
|
601
|
+
lastUploadDate?: string | undefined;
|
|
602
|
+
delayDay: number;
|
|
603
603
|
} | {
|
|
604
604
|
name: IntegrationPlatform.SQL;
|
|
605
605
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -644,8 +644,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
644
644
|
hour: number;
|
|
645
645
|
minute: number;
|
|
646
646
|
};
|
|
647
|
-
|
|
648
|
-
|
|
647
|
+
lastUploadDate?: string | undefined;
|
|
648
|
+
delayDay: number;
|
|
649
649
|
} | {
|
|
650
650
|
name: IntegrationPlatform.iFlexi_HRMS;
|
|
651
651
|
mappings?: {
|
|
@@ -666,8 +666,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
666
666
|
hour: number;
|
|
667
667
|
minute: number;
|
|
668
668
|
};
|
|
669
|
-
|
|
670
|
-
|
|
669
|
+
lastUploadDate?: string | undefined;
|
|
670
|
+
delayDay: number;
|
|
671
671
|
} | {
|
|
672
672
|
name: IntegrationPlatform.Xero;
|
|
673
673
|
refreshToken?: string | undefined;
|
|
@@ -741,8 +741,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
741
741
|
hour: number;
|
|
742
742
|
minute: number;
|
|
743
743
|
};
|
|
744
|
-
|
|
745
|
-
|
|
744
|
+
lastUploadDate?: string | undefined;
|
|
745
|
+
delayDay: number;
|
|
746
746
|
};
|
|
747
747
|
}[], Integration<import("@/api/integration/type").Platform>[] | {
|
|
748
748
|
_id?: string | undefined;
|
|
@@ -799,8 +799,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
799
799
|
hour: number;
|
|
800
800
|
minute: number;
|
|
801
801
|
};
|
|
802
|
-
|
|
803
|
-
|
|
802
|
+
lastUploadDate?: string | undefined;
|
|
803
|
+
delayDay: number;
|
|
804
804
|
} | {
|
|
805
805
|
name: IntegrationPlatform.AutoCount;
|
|
806
806
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -845,8 +845,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
845
845
|
hour: number;
|
|
846
846
|
minute: number;
|
|
847
847
|
};
|
|
848
|
-
|
|
849
|
-
|
|
848
|
+
lastUploadDate?: string | undefined;
|
|
849
|
+
delayDay: number;
|
|
850
850
|
} | {
|
|
851
851
|
name: IntegrationPlatform.SQL;
|
|
852
852
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -891,8 +891,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
891
891
|
hour: number;
|
|
892
892
|
minute: number;
|
|
893
893
|
};
|
|
894
|
-
|
|
895
|
-
|
|
894
|
+
lastUploadDate?: string | undefined;
|
|
895
|
+
delayDay: number;
|
|
896
896
|
} | {
|
|
897
897
|
name: IntegrationPlatform.iFlexi_HRMS;
|
|
898
898
|
mappings?: {
|
|
@@ -913,8 +913,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
913
913
|
hour: number;
|
|
914
914
|
minute: number;
|
|
915
915
|
};
|
|
916
|
-
|
|
917
|
-
|
|
916
|
+
lastUploadDate?: string | undefined;
|
|
917
|
+
delayDay: number;
|
|
918
918
|
} | {
|
|
919
919
|
name: IntegrationPlatform.Xero;
|
|
920
920
|
refreshToken?: string | undefined;
|
|
@@ -988,8 +988,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
988
988
|
hour: number;
|
|
989
989
|
minute: number;
|
|
990
990
|
};
|
|
991
|
-
|
|
992
|
-
|
|
991
|
+
lastUploadDate?: string | undefined;
|
|
992
|
+
delayDay: number;
|
|
993
993
|
};
|
|
994
994
|
}[]>;
|
|
995
995
|
getSettings: () => Promise<void>;
|
|
@@ -1049,8 +1049,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
1049
1049
|
hour: number;
|
|
1050
1050
|
minute: number;
|
|
1051
1051
|
};
|
|
1052
|
-
|
|
1053
|
-
|
|
1052
|
+
lastUploadDate?: string | undefined;
|
|
1053
|
+
delayDay: number;
|
|
1054
1054
|
} | {
|
|
1055
1055
|
name: IntegrationPlatform.AutoCount;
|
|
1056
1056
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -1095,8 +1095,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
1095
1095
|
hour: number;
|
|
1096
1096
|
minute: number;
|
|
1097
1097
|
};
|
|
1098
|
-
|
|
1099
|
-
|
|
1098
|
+
lastUploadDate?: string | undefined;
|
|
1099
|
+
delayDay: number;
|
|
1100
1100
|
} | {
|
|
1101
1101
|
name: IntegrationPlatform.SQL;
|
|
1102
1102
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -1141,8 +1141,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
1141
1141
|
hour: number;
|
|
1142
1142
|
minute: number;
|
|
1143
1143
|
};
|
|
1144
|
-
|
|
1145
|
-
|
|
1144
|
+
lastUploadDate?: string | undefined;
|
|
1145
|
+
delayDay: number;
|
|
1146
1146
|
} | {
|
|
1147
1147
|
name: IntegrationPlatform.iFlexi_HRMS;
|
|
1148
1148
|
mappings?: {
|
|
@@ -1163,8 +1163,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
1163
1163
|
hour: number;
|
|
1164
1164
|
minute: number;
|
|
1165
1165
|
};
|
|
1166
|
-
|
|
1167
|
-
|
|
1166
|
+
lastUploadDate?: string | undefined;
|
|
1167
|
+
delayDay: number;
|
|
1168
1168
|
} | {
|
|
1169
1169
|
name: IntegrationPlatform.Xero;
|
|
1170
1170
|
refreshToken?: string | undefined;
|
|
@@ -1238,8 +1238,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
1238
1238
|
hour: number;
|
|
1239
1239
|
minute: number;
|
|
1240
1240
|
};
|
|
1241
|
-
|
|
1242
|
-
|
|
1241
|
+
lastUploadDate?: string | undefined;
|
|
1242
|
+
delayDay: number;
|
|
1243
1243
|
};
|
|
1244
1244
|
}[], Integration<import("@/api/integration/type").Platform>[] | {
|
|
1245
1245
|
_id?: string | undefined;
|
|
@@ -1296,8 +1296,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
1296
1296
|
hour: number;
|
|
1297
1297
|
minute: number;
|
|
1298
1298
|
};
|
|
1299
|
-
|
|
1300
|
-
|
|
1299
|
+
lastUploadDate?: string | undefined;
|
|
1300
|
+
delayDay: number;
|
|
1301
1301
|
} | {
|
|
1302
1302
|
name: IntegrationPlatform.AutoCount;
|
|
1303
1303
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -1342,8 +1342,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
1342
1342
|
hour: number;
|
|
1343
1343
|
minute: number;
|
|
1344
1344
|
};
|
|
1345
|
-
|
|
1346
|
-
|
|
1345
|
+
lastUploadDate?: string | undefined;
|
|
1346
|
+
delayDay: number;
|
|
1347
1347
|
} | {
|
|
1348
1348
|
name: IntegrationPlatform.SQL;
|
|
1349
1349
|
grouping: import("@/api/integration/type").AccountingGrouping;
|
|
@@ -1388,8 +1388,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
1388
1388
|
hour: number;
|
|
1389
1389
|
minute: number;
|
|
1390
1390
|
};
|
|
1391
|
-
|
|
1392
|
-
|
|
1391
|
+
lastUploadDate?: string | undefined;
|
|
1392
|
+
delayDay: number;
|
|
1393
1393
|
} | {
|
|
1394
1394
|
name: IntegrationPlatform.iFlexi_HRMS;
|
|
1395
1395
|
mappings?: {
|
|
@@ -1410,8 +1410,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
1410
1410
|
hour: number;
|
|
1411
1411
|
minute: number;
|
|
1412
1412
|
};
|
|
1413
|
-
|
|
1414
|
-
|
|
1413
|
+
lastUploadDate?: string | undefined;
|
|
1414
|
+
delayDay: number;
|
|
1415
1415
|
} | {
|
|
1416
1416
|
name: IntegrationPlatform.Xero;
|
|
1417
1417
|
refreshToken?: string | undefined;
|
|
@@ -1485,8 +1485,8 @@ export declare const useIntegrationStore: import("pinia").StoreDefinition<"integ
|
|
|
1485
1485
|
hour: number;
|
|
1486
1486
|
minute: number;
|
|
1487
1487
|
};
|
|
1488
|
-
|
|
1489
|
-
|
|
1488
|
+
lastUploadDate?: string | undefined;
|
|
1489
|
+
delayDay: number;
|
|
1490
1490
|
};
|
|
1491
1491
|
}[]>;
|
|
1492
1492
|
getSettings: () => Promise<void>;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.card-container[data-v-16b210f9]{overflow-y:auto;overflow-x:hidden}.scrollbar-hide::-webkit-scrollbar{display:none}.scrollbar-hide{-ms-overflow-style:none;scrollbar-width:none}.report-table>div{padding-bottom:140px}.show-pin{visibility:hidden}.row:hover .show-pin{visibility:visible}.circular{padding:0;height:calc(100% - 36px)}.circular .grow{height:100%}.sparkline{margin:0;padding:0}.sparkline .grow{height:50px;flex-grow:0}.scrollbar-hide-table>div{scrollbar-width:thin}.bar-chart{padding:0;height:calc(100% - 36px)}.bar-chart .grow{height:100%}.bar-chart .flex-col{gap:0}.line-chart{padding:0 0 8px;height:calc(100% - 36px)}.line-chart .grow{height:100%}.line-chart .flex-col{gap:0}.selected-widget[data-v-3d0a8566]{background-color:#fff4e6;border-color:#ff7823}.slide-fade-enter-active[data-v-b4e167c9],.slide-fade-leave-active[data-v-b4e167c9]{transition:all .3s ease-in-out}.slide-fade-enter-from[data-v-b4e167c9],.slide-fade-leave-to[data-v-b4e167c9]{transform:translateY(-50px);opacity:0}.slide-fade-right-enter-active[data-v-a98ca9bc],.slide-fade-right-leave-active[data-v-a98ca9bc]{transition:all .3s ease-in-out}.slide-fade-right-enter-from[data-v-a98ca9bc],.slide-fade-right-leave-to[data-v-a98ca9bc]{position:absolute;transform:translate(-50px);opacity:.4}.slide-fade-left-enter-active[data-v-a98ca9bc]{transition-delay:.3s;transition:all .3s ease-in-out}.slide-fade-left-leave-active[data-v-a98ca9bc]{transition:all .3s ease-in-out}.slide-fade-left-enter-from[data-v-a98ca9bc],.slide-fade-left-leave-to[data-v-a98ca9bc]{position:absolute;transform:translate(-50px);opacity:.1}.integration-card[data-v-
|
|
1
|
+
.card-container[data-v-16b210f9]{overflow-y:auto;overflow-x:hidden}.scrollbar-hide::-webkit-scrollbar{display:none}.scrollbar-hide{-ms-overflow-style:none;scrollbar-width:none}.report-table>div{padding-bottom:140px}.show-pin{visibility:hidden}.row:hover .show-pin{visibility:visible}.circular{padding:0;height:calc(100% - 36px)}.circular .grow{height:100%}.sparkline{margin:0;padding:0}.sparkline .grow{height:50px;flex-grow:0}.scrollbar-hide-table>div{scrollbar-width:thin}.bar-chart{padding:0;height:calc(100% - 36px)}.bar-chart .grow{height:100%}.bar-chart .flex-col{gap:0}.line-chart{padding:0 0 8px;height:calc(100% - 36px)}.line-chart .grow{height:100%}.line-chart .flex-col{gap:0}.selected-widget[data-v-3d0a8566]{background-color:#fff4e6;border-color:#ff7823}.slide-fade-enter-active[data-v-b4e167c9],.slide-fade-leave-active[data-v-b4e167c9]{transition:all .3s ease-in-out}.slide-fade-enter-from[data-v-b4e167c9],.slide-fade-leave-to[data-v-b4e167c9]{transform:translateY(-50px);opacity:0}.slide-fade-right-enter-active[data-v-a98ca9bc],.slide-fade-right-leave-active[data-v-a98ca9bc]{transition:all .3s ease-in-out}.slide-fade-right-enter-from[data-v-a98ca9bc],.slide-fade-right-leave-to[data-v-a98ca9bc]{position:absolute;transform:translate(-50px);opacity:.4}.slide-fade-left-enter-active[data-v-a98ca9bc]{transition-delay:.3s;transition:all .3s ease-in-out}.slide-fade-left-leave-active[data-v-a98ca9bc]{transition:all .3s ease-in-out}.slide-fade-left-enter-from[data-v-a98ca9bc],.slide-fade-left-leave-to[data-v-a98ca9bc]{position:absolute;transform:translate(-50px);opacity:.1}.integration-card[data-v-6a30170d]{height:140px;width:140px;padding:0}.integration-card .logo-card[data-v-6a30170d]{width:100%;padding:24px;background:#fff}.integration-card .title-card[data-v-6a30170d]{height:36px;color:#fff}.icon-btn{border-radius:100%}.overlay{background:#0006;position:absolute;top:0;left:0;height:100vh;width:100vw}.side-panel{position:fixed;right:0;top:0;height:100%;background:#fff}.fade-enter-active,.fade-leave-active{transition:opacity .2s ease}.fade-enter-from,.fade-leave-to{opacity:0}.slide-enter-active,.slide-leave-active{transition:all .3s ease-out}.slide-enter-from,.slide-leave-to{transform:translate(100%)}.fm-top-sheet{height:100%}
|
|
@@ -3,16 +3,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
3
3
|
required: true;
|
|
4
4
|
type: import("vue").PropType<boolean>;
|
|
5
5
|
};
|
|
6
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
back: () => void;
|
|
8
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
7
|
modelValue: {
|
|
10
8
|
required: true;
|
|
11
9
|
type: import("vue").PropType<boolean>;
|
|
12
10
|
};
|
|
13
|
-
}>> & Readonly<{
|
|
14
|
-
onBack?: (() => any) | undefined;
|
|
15
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
16
12
|
default?(_: {}): any;
|
|
17
13
|
}>;
|
|
18
14
|
export default _default;
|
|
@@ -1,55 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
};
|
|
9
|
-
removable: {
|
|
10
|
-
type: BooleanConstructor;
|
|
11
|
-
default: boolean;
|
|
12
|
-
};
|
|
13
|
-
options: {
|
|
14
|
-
type: PropType<{
|
|
15
|
-
[key: string]: {
|
|
16
|
-
placeholder: string;
|
|
17
|
-
editable: boolean;
|
|
18
|
-
};
|
|
19
|
-
}>;
|
|
20
|
-
default: () => {};
|
|
21
|
-
};
|
|
22
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
-
remove: () => void;
|
|
24
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
-
modelValue: {
|
|
26
|
-
required: true;
|
|
27
|
-
type: PropType<{
|
|
28
|
-
[key: string]: string | boolean;
|
|
29
|
-
}>;
|
|
30
|
-
};
|
|
31
|
-
removable: {
|
|
32
|
-
type: BooleanConstructor;
|
|
33
|
-
default: boolean;
|
|
34
|
-
};
|
|
35
|
-
options: {
|
|
36
|
-
type: PropType<{
|
|
37
|
-
[key: string]: {
|
|
38
|
-
placeholder: string;
|
|
39
|
-
editable: boolean;
|
|
40
|
-
};
|
|
41
|
-
}>;
|
|
42
|
-
default: () => {};
|
|
43
|
-
};
|
|
44
|
-
}>> & Readonly<{
|
|
45
|
-
onRemove?: (() => any) | undefined;
|
|
46
|
-
}>, {
|
|
47
|
-
removable: boolean;
|
|
48
|
-
options: {
|
|
1
|
+
declare const _default: <T extends {
|
|
2
|
+
[key: string]: string | number | boolean;
|
|
3
|
+
}>(__VLS_props: {
|
|
4
|
+
type?: "number" | "text" | "email" | "password" | "tel" | undefined;
|
|
5
|
+
modelValue: T;
|
|
6
|
+
removable?: boolean | undefined;
|
|
7
|
+
options?: {
|
|
49
8
|
[key: string]: {
|
|
50
9
|
placeholder: string;
|
|
51
10
|
editable: boolean;
|
|
52
11
|
};
|
|
53
|
-
};
|
|
54
|
-
|
|
12
|
+
} | undefined;
|
|
13
|
+
readonly onRemove?: (() => any) | undefined;
|
|
14
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
15
|
+
attrs: any;
|
|
16
|
+
slots: {};
|
|
17
|
+
emit: (e: "remove") => void;
|
|
18
|
+
} | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
19
|
+
props: {
|
|
20
|
+
type?: "number" | "text" | "email" | "password" | "tel" | undefined;
|
|
21
|
+
modelValue: T;
|
|
22
|
+
removable?: boolean | undefined;
|
|
23
|
+
options?: {
|
|
24
|
+
[key: string]: {
|
|
25
|
+
placeholder: string;
|
|
26
|
+
editable: boolean;
|
|
27
|
+
};
|
|
28
|
+
} | undefined;
|
|
29
|
+
readonly onRemove?: (() => any) | undefined;
|
|
30
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
31
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
32
|
+
attrs: any;
|
|
33
|
+
slots: {};
|
|
34
|
+
emit: (e: "remove") => void;
|
|
35
|
+
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
}> & {
|
|
38
|
+
__ctx?: {
|
|
39
|
+
props: {
|
|
40
|
+
type?: "number" | "text" | "email" | "password" | "tel" | undefined;
|
|
41
|
+
modelValue: T;
|
|
42
|
+
removable?: boolean | undefined;
|
|
43
|
+
options?: {
|
|
44
|
+
[key: string]: {
|
|
45
|
+
placeholder: string;
|
|
46
|
+
editable: boolean;
|
|
47
|
+
};
|
|
48
|
+
} | undefined;
|
|
49
|
+
readonly onRemove?: (() => any) | undefined;
|
|
50
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
51
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
52
|
+
attrs: any;
|
|
53
|
+
slots: {};
|
|
54
|
+
emit: (e: "remove") => void;
|
|
55
|
+
} | undefined;
|
|
56
|
+
};
|
|
55
57
|
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { type BasePlatform } from "@/api/integration/type";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
required: true;
|
|
5
|
+
type: import("vue").PropType<BasePlatform>;
|
|
6
|
+
};
|
|
7
|
+
label: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
modelValue: {
|
|
13
|
+
required: true;
|
|
14
|
+
type: import("vue").PropType<BasePlatform>;
|
|
15
|
+
};
|
|
16
|
+
label: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
}>> & Readonly<{}>, {
|
|
21
|
+
label: string;
|
|
22
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
23
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feedmepos/mf-report",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.6",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"dayjs": "^1.11.10",
|
|
26
26
|
"dotenv": "^16.3.1",
|
|
27
27
|
"pinia": "^2.1.7",
|
|
28
|
-
"tsc-alias": "^1.8.10",
|
|
29
28
|
"uuid": "^9.0.1",
|
|
30
29
|
"vue": "^3.5.12",
|
|
31
30
|
"vue-router": "^4.2.5",
|
|
@@ -61,9 +60,11 @@
|
|
|
61
60
|
"build:mf:dev:keynote2024": "vite build --mode fmmf:dev:keynote2024",
|
|
62
61
|
"build:mf:dev": "vite build --mode fmmf",
|
|
63
62
|
"build:mf:prod": "vite build --mode fmmf:prod",
|
|
64
|
-
"build
|
|
65
|
-
"build-only:dev": "pnpm build:mf:dev && pnpm build
|
|
63
|
+
"build-types": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json --outDir dist --composite false",
|
|
64
|
+
"build-only:dev": "pnpm build:mf:dev && pnpm build-types && cp package.json ./dist",
|
|
65
|
+
"build-only:prod": "pnpm build:mf:prod && pnpm build-types && cp package.json ./dist",
|
|
66
66
|
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
|
|
67
|
+
"deploy-npm:dev": "pnpm run build-only:dev && pnpm publish --no-git-checks .",
|
|
67
68
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
68
69
|
"format": "prettier --write src/"
|
|
69
70
|
}
|