@indfnd/utils 0.1.36 → 0.1.37

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indfnd/utils",
3
- "version": "0.1.36",
3
+ "version": "0.1.37",
4
4
  "author": "huxuetong",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -2,6 +2,7 @@ import { CONTENT_TYPE, axios, getToken, MIME_TYPE } from '@/utils'
2
2
  import { config } from '@/config'
3
3
  import { AxiosRequestConfig, ResponseType } from 'axios'
4
4
 
5
+ const isHb = location.pathname.includes('scyxweb')
5
6
  const CONTEXT = config.ossServerContext
6
7
 
7
8
  /**
@@ -11,7 +12,7 @@ const CONTEXT = config.ossServerContext
11
12
  * @returns url
12
13
  */
13
14
  export function getOssFileUrl(fileId = '') {
14
- return `${CONTEXT}/oss/file/get/${fileId}`
15
+ return `${isHb ? '/scyxgateway/ind-uc-ext-server' : CONTEXT}/oss/file/get/${fileId}`
15
16
  }
16
17
 
17
18
  /**
@@ -20,7 +21,7 @@ export function getOssFileUrl(fileId = '') {
20
21
  * @returns url
21
22
  */
22
23
  export function putOssFileUrl() {
23
- return `${CONTEXT}/oss/file/put`
24
+ return `${isHb ? '/scyxgateway/ind-uc-ext-server' : CONTEXT}/oss/file/put`
24
25
  }
25
26
 
26
27
  /**
@@ -2,6 +2,7 @@
2
2
 
3
3
  // const XlsxPopulate = require('xlsx-populate/browser/xlsx-populate')
4
4
  import _ from 'lodash'
5
+ import { putOssFileApi } from '@indfnd/utils'
5
6
 
6
7
  const titleStyle = {
7
8
  // title style
@@ -645,3 +646,159 @@ export function getExcelColumnIdx(number) {
645
646
  }
646
647
  return rlt
647
648
  }
649
+
650
+ export function previewJsonToExcel(excelData) {
651
+ return new Promise((resolve, reject) => {
652
+ var calcExportDatas = getAgColumnTitleAndData(excelData)
653
+ var fileId = ''
654
+
655
+ console.log('calcExportDatas', calcExportDatas)
656
+
657
+ var title = excelData.title
658
+
659
+ var titleDeepth = calcExportDatas.deepth
660
+ var columnAlign = excelData.columnAlign || calcExportDatas.columnAlign
661
+ var columnType = excelData.columnType || calcExportDatas.columnType
662
+
663
+ var columnTitle = calcExportDatas.columnTitle
664
+
665
+ var columnWidth = excelData.columnWidth || calcExportDatas.columnWidth
666
+
667
+ var columnCount = columnAlign.length
668
+
669
+ var paramLeft = excelData.paramLeft
670
+
671
+ var paramRight = excelData.paramRight
672
+
673
+ var jsonData = calcExportDatas.exportData
674
+
675
+ var numberFormat = excelData.numberFormat || calcExportDatas.numberFormat
676
+
677
+ XlsxPopulate.fromBlankAsync()
678
+ .then((workbook) => {
679
+ // Modify the workbook.
680
+ var sheet = workbook.sheet('Sheet1') // 初始化的时候不能传中文进去
681
+ // sheet.name(title)
682
+ // 设置列宽
683
+ for (var i = 0; i < columnCount; i++) {
684
+ sheet.column(i + 1).width(columnWidth[i] == 0 ? 10 : columnWidth[i])
685
+ }
686
+
687
+ var titleRange = sheet.range(1, 1, 1, columnCount)
688
+ titleRange.merged(true)
689
+ titleRange.style(titleStyle)
690
+ titleRange.cell(0, 0).value(title)
691
+ sheet.row(1).height(titleHeight)
692
+
693
+ var rowsNow = 2
694
+
695
+ if (!!excelData.paramLeft || !!excelData.paramRight) {
696
+ var paramLeftRange = sheet.range(2, 1, 2, Math.round(columnCount / 2))
697
+ paramLeftRange.cell(0, 0).value(paramLeft || '')
698
+ paramLeftRange.merged(true)
699
+ paramLeftRange.style(paramLeftStyle)
700
+ var paramRightRange = sheet.range(2, Math.round(columnCount / 2) + 1, 2, columnCount)
701
+ paramRightRange.cell(0, 0).value(paramRight || '')
702
+ paramRightRange.merged(true)
703
+ paramRightRange.style(paramRightStyle)
704
+ sheet.row(2).height(paramHeight)
705
+ rowsNow += 1
706
+ }
707
+
708
+ columnTitle.forEach((d) => {
709
+ var columnTitleRange = sheet.range(
710
+ d.srow + rowsNow - 1,
711
+ d.scol,
712
+ d.erow + rowsNow - 1,
713
+ d.ecol,
714
+ )
715
+ columnTitleRange.merged(true)
716
+ columnTitleRange.style(columnTitleStyle)
717
+ columnTitleRange.cell(0, 0).value(d.text?.replace(/<br\/>/g, ''))
718
+ })
719
+ for (let i = 0; i < titleDeepth; i++) {
720
+ sheet.row(rowsNow + i).height(columnTitleHeight)
721
+ }
722
+
723
+ // 处理表格里的数据,挨家挨户搜一下
724
+ rowsNow += titleDeepth
725
+
726
+ for (var i = 0; i < jsonData.length; i++) {
727
+ var lineData = jsonData[i]
728
+ for (var j = 0; j < lineData.length; j++) {
729
+ if (columnType[j] === 'p' && lineData[j]) {
730
+ // 百分比,当前数值除以100来转换成百分比
731
+ sheet.cell(rowsNow + i, j + 1).value(parseFloat(lineData[j].value / 100))
732
+ dataCellStyle.numberFormat = numberFormat[j]
733
+ } else if (columnType[j] === 'n' && lineData[j]) {
734
+ // 数字保留精度
735
+ sheet.cell(rowsNow + i, j + 1).value(parseFloat(lineData[j].value))
736
+ dataCellStyle.numberFormat = numberFormat[j]
737
+ } else if (columnType[j] === 's' && lineData[j]) {
738
+ // 字符串
739
+ sheet.cell(rowsNow + i, j + 1).value(lineData[j].value)
740
+ dataCellStyle.numberFormat = ''
741
+ } else {
742
+ if (columnType[j] === 'p' || columnType[j] === 'n') {
743
+ // 解决导出excel空串无法计算
744
+ dataCellStyle.numberFormat = numberFormat[j]
745
+ } else {
746
+ // 预留一下,将来可能加别的样式
747
+ sheet.cell(rowsNow + i, j + 1).value('')
748
+ }
749
+ }
750
+ dataCellStyle.horizontalAlignment = columnAlign[j]
751
+ sheet.cell(rowsNow + i, j + 1).style(dataCellStyle)
752
+ }
753
+ if (excelData.rowColor && i % 2 != 0) {
754
+ var row = sheet.range(rowsNow + i, 1, rowsNow + i, columnCount)
755
+ row.style({ fill: 'f8f8f9' })
756
+ }
757
+ sheet.row(rowsNow + i).height(dataRowHeight)
758
+ }
759
+
760
+ if (!!excelData.rowSpanDefs) {
761
+ initRowSpanInfosNew({ ...excelData, columns: calcExportDatas.columnsCalc })
762
+ _.forEach(rowSpanExcelInfos, function (rowSpanInfo) {
763
+ var columnTitleRange = sheet.range(
764
+ rowSpanInfo.mergeRowS + rowsNow,
765
+ rowSpanInfo.megerColS + 1,
766
+ rowSpanInfo.mergeRowE + rowsNow,
767
+ rowSpanInfo.megerColE + 1,
768
+ )
769
+ columnTitleRange.merged(true)
770
+ })
771
+ } else if (!!excelData.rowSpanColumns) {
772
+ initRowSpanInfos({ ...excelData, columns: calcExportDatas.columnsCalc })
773
+ _.forEach(rowSpanExcelInfos, function (rowSpanInfo) {
774
+ var columnTitleRange = sheet.range(
775
+ rowSpanInfo.mergeRowS + rowsNow,
776
+ rowSpanInfo.megerColS + 1,
777
+ rowSpanInfo.mergeRowE + rowsNow,
778
+ rowSpanInfo.megerColE + 1,
779
+ )
780
+ columnTitleRange.merged(true)
781
+ })
782
+ }
783
+
784
+ if (excelData.leftColumns || excelData.topRows) {
785
+ sheet.freezePanes(excelData.leftColumns || 0, (excelData.topRows || 0) + rowsNow - 1)
786
+ }
787
+
788
+ // Write to file.
789
+ workbook.outputAsync().then(async function (blob) {
790
+ const timestamp = new Date().getTime()
791
+ const filename = `${timestamp}.xlsx`
792
+ let { data } = await putOssFileApi(filename, blob)
793
+ // data = data.data // lambo-design多了一层,由于axios拦截器的原因
794
+ console.log('data is --111111', data)
795
+ fileId = data?.[0].fileId || ''
796
+ resolve(fileId)
797
+ })
798
+ })
799
+ .catch((err) => {
800
+ console.log(err)
801
+ reject(err)
802
+ })
803
+ })
804
+ }
@@ -1,4 +1,2 @@
1
- export declare function listComTreeApi(
2
- params: any,
3
- ): Promise<import('axios').AxiosResponse<any, any>>
1
+ export declare function listComTreeApi(params: any): Promise<import('axios').AxiosResponse<any>>
4
2
  //# sourceMappingURL=com.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"com.d.ts","sourceRoot":"","sources":["../../src/api/com.ts"],"names":[],"mappings":"AAKA,wBAAgB,cAAc,CAAC,MAAM,KAAA,oDAQpC"}
1
+ {"version":3,"file":"com.d.ts","sourceRoot":"","sources":["../../src/api/com.ts"],"names":[],"mappings":"AAKA,wBAAgB,cAAc,CAAC,MAAM,KAAA,+CAQpC"}
@@ -1,4 +1,2 @@
1
- export declare function listIndexDescApi(
2
- params: any,
3
- ): Promise<import('axios').AxiosResponse<any, any>>
1
+ export declare function listIndexDescApi(params: any): Promise<import('axios').AxiosResponse<any>>
4
2
  //# sourceMappingURL=index-desc.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index-desc.d.ts","sourceRoot":"","sources":["../../src/api/index-desc.ts"],"names":[],"mappings":"AAKA,wBAAgB,gBAAgB,CAAC,MAAM,KAAA,oDAEtC"}
1
+ {"version":3,"file":"index-desc.d.ts","sourceRoot":"","sources":["../../src/api/index-desc.ts"],"names":[],"mappings":"AAKA,wBAAgB,gBAAgB,CAAC,MAAM,KAAA,+CAEtC"}
@@ -1,6 +1,4 @@
1
- export declare function listItemTreeApi(
2
- params: any,
3
- ): Promise<import('axios').AxiosResponse<any, any>>
4
- export declare function getPriceInfo(): Promise<import('axios').AxiosResponse<any, any>>
5
- export declare function getItem(params: any): Promise<import('axios').AxiosResponse<any, any>>
1
+ export declare function listItemTreeApi(params: any): Promise<import('axios').AxiosResponse<any>>
2
+ export declare function getPriceInfo(): Promise<import('axios').AxiosResponse<any>>
3
+ export declare function getItem(params: any): Promise<import('axios').AxiosResponse<any>>
6
4
  //# sourceMappingURL=item.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"item.d.ts","sourceRoot":"","sources":["../../src/api/item.ts"],"names":[],"mappings":"AAKA,wBAAgB,eAAe,CAAC,MAAM,KAAA,oDAYrC;AACD,wBAAgB,YAAY,qDAE3B;AACD,wBAAgB,OAAO,CAAC,MAAM,KAAA,oDAE7B"}
1
+ {"version":3,"file":"item.d.ts","sourceRoot":"","sources":["../../src/api/item.ts"],"names":[],"mappings":"AAKA,wBAAgB,eAAe,CAAC,MAAM,KAAA,+CAYrC;AACD,wBAAgB,YAAY,gDAE3B;AACD,wBAAgB,OAAO,CAAC,MAAM,KAAA,+CAE7B"}
@@ -1,6 +1,4 @@
1
- export declare function getDictsMapApi(
2
- dictId: string,
3
- ): Promise<import('axios').AxiosResponse<any, any>>
1
+ export declare function getDictsMapApi(dictId: string): Promise<import('axios').AxiosResponse<any>>
4
2
  export declare function getDictApi(dictId: string): Promise<any>
5
3
  export declare function getDictMapApi(dictIdArr: string[]): Promise<{}>
6
4
  //# sourceMappingURL=dict.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dict.d.ts","sourceRoot":"","sources":["../../../src/api/platform/dict.ts"],"names":[],"mappings":"AAMA,wBAAgB,cAAc,CAAC,MAAM,EAAE,MAAM,oDAE5C;AAED,wBAAsB,UAAU,CAAC,MAAM,EAAE,MAAM,gBAgB9C;AAkBD,wBAAsB,aAAa,CAAC,SAAS,EAAE,MAAM,EAAE,eActD"}
1
+ {"version":3,"file":"dict.d.ts","sourceRoot":"","sources":["../../../src/api/platform/dict.ts"],"names":[],"mappings":"AAMA,wBAAgB,cAAc,CAAC,MAAM,EAAE,MAAM,+CAE5C;AAED,wBAAsB,UAAU,CAAC,MAAM,EAAE,MAAM,gBAgB9C;AAkBD,wBAAsB,aAAa,CAAC,SAAS,EAAE,MAAM,EAAE,eActD"}
@@ -1,21 +1,17 @@
1
- export declare function getPermissionApi(): Promise<import('axios').AxiosResponse<any, any>>
2
- export declare function getMenuHistoryApi(): Promise<import('axios').AxiosResponse<any, any>>
3
- export declare function menuHistoryApi(
4
- params: any,
5
- ): Promise<import('axios').AxiosResponse<any, any>>
1
+ export declare function getPermissionApi(): Promise<import('axios').AxiosResponse<any>>
2
+ export declare function getMenuHistoryApi(): Promise<import('axios').AxiosResponse<any>>
3
+ export declare function menuHistoryApi(params: any): Promise<import('axios').AxiosResponse<any>>
6
4
  export declare function deleteMenuHistoryApi(
7
5
  historyId: any,
8
- ): Promise<import('axios').AxiosResponse<any, any>>
9
- export declare function getMenuCollectApi(): Promise<import('axios').AxiosResponse<any, any>>
10
- export declare function addMenuCollectApi(
11
- params: any,
12
- ): Promise<import('axios').AxiosResponse<any, any>>
6
+ ): Promise<import('axios').AxiosResponse<any>>
7
+ export declare function getMenuCollectApi(): Promise<import('axios').AxiosResponse<any>>
8
+ export declare function addMenuCollectApi(params: any): Promise<import('axios').AxiosResponse<any>>
13
9
  export declare function deleteMenuCollectApi(
14
10
  collectId: any,
15
- ): Promise<import('axios').AxiosResponse<any, any>>
11
+ ): Promise<import('axios').AxiosResponse<any>>
16
12
  export declare function removeMenuCollectApi(
17
13
  params: any,
18
- ): Promise<import('axios').AxiosResponse<any, any>>
19
- export declare function getAppListApi(): Promise<import('axios').AxiosResponse<any, any>>
20
- export declare function getMaxTabNumValueApi(): Promise<import('axios').AxiosResponse<any, any>>
14
+ ): Promise<import('axios').AxiosResponse<any>>
15
+ export declare function getAppListApi(): Promise<import('axios').AxiosResponse<any>>
16
+ export declare function getMaxTabNumValueApi(): Promise<import('axios').AxiosResponse<any>>
21
17
  //# sourceMappingURL=menu.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["../../../src/api/platform/menu.ts"],"names":[],"mappings":"AAKA,wBAAgB,gBAAgB,qDAE/B;AAED,wBAAgB,iBAAiB,qDAEhC;AAED,wBAAgB,cAAc,CAAC,MAAM,KAAA,oDAEpC;AAED,wBAAgB,oBAAoB,CAAC,SAAS,KAAA,oDAE7C;AAED,wBAAgB,iBAAiB,qDAEhC;AAED,wBAAgB,iBAAiB,CAAC,MAAM,KAAA,oDAEvC;AAED,wBAAgB,oBAAoB,CAAC,SAAS,KAAA,oDAE7C;AAED,wBAAgB,oBAAoB,CAAC,MAAM,KAAA,oDAE1C;AAED,wBAAgB,aAAa,qDAE5B;AAED,wBAAgB,oBAAoB,qDAEnC"}
1
+ {"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["../../../src/api/platform/menu.ts"],"names":[],"mappings":"AAKA,wBAAgB,gBAAgB,gDAE/B;AAED,wBAAgB,iBAAiB,gDAEhC;AAED,wBAAgB,cAAc,CAAC,MAAM,KAAA,+CAEpC;AAED,wBAAgB,oBAAoB,CAAC,SAAS,KAAA,+CAE7C;AAED,wBAAgB,iBAAiB,gDAEhC;AAED,wBAAgB,iBAAiB,CAAC,MAAM,KAAA,+CAEvC;AAED,wBAAgB,oBAAoB,CAAC,SAAS,KAAA,+CAE7C;AAED,wBAAgB,oBAAoB,CAAC,MAAM,KAAA,+CAE1C;AAED,wBAAgB,aAAa,gDAE5B;AAED,wBAAgB,oBAAoB,gDAEnC"}
@@ -22,7 +22,7 @@ export declare function putOssFileUrl(): string
22
22
  export declare function getOssFileApi(
23
23
  fileId: string,
24
24
  responseType?: ResponseType,
25
- ): Promise<import('axios').AxiosResponse<any, any>>
25
+ ): Promise<import('axios').AxiosResponse<any>>
26
26
  /**
27
27
  * 将文件上传到文档中心
28
28
  *
@@ -42,7 +42,7 @@ export declare function putOssFileApi(
42
42
  */
43
43
  export declare function getPreviewUrlApi(
44
44
  fileId: string,
45
- ): Promise<import('axios').AxiosResponse<any, any>>
45
+ ): Promise<import('axios').AxiosResponse<any>>
46
46
  /**
47
47
  * 获取文档中心预览URL
48
48
  *
@@ -1 +1 @@
1
- {"version":3,"file":"oss.d.ts","sourceRoot":"","sources":["../../../src/api/platform/oss.ts"],"names":[],"mappings":"AAEA,OAAO,EAAsB,YAAY,EAAE,MAAM,OAAO,CAAA;AAIxD;;;;;GAKG;AACH,wBAAgB,aAAa,CAAC,MAAM,SAAK,UAExC;AAED;;;;GAIG;AACH,wBAAgB,aAAa,WAE5B;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,YAAY,oDAMxE;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,qCAUzD;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,MAAM,oDAQ9C;AAED;;;;;;GAMG;AACH,wBAAsB,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,iBA0DrE"}
1
+ {"version":3,"file":"oss.d.ts","sourceRoot":"","sources":["../../../src/api/platform/oss.ts"],"names":[],"mappings":"AAEA,OAAO,EAAsB,YAAY,EAAE,MAAM,OAAO,CAAA;AAKxD;;;;;GAKG;AACH,wBAAgB,aAAa,CAAC,MAAM,SAAK,UAExC;AAED;;;;GAIG;AACH,wBAAgB,aAAa,WAE5B;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,YAAY,+CAMxE;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,qCAUzD;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,MAAM,+CAQ9C;AAED;;;;;;GAMG;AACH,wBAAsB,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,iBA0DrE"}
@@ -8,12 +8,10 @@ export declare function loginApi({
8
8
  password: any
9
9
  validCodeId: any
10
10
  validCodeInput: any
11
- }): Promise<import('axios').AxiosResponse<any, any>>
12
- export declare function getUserInfoApi(): Promise<import('axios').AxiosResponse<any, any>>
13
- export declare function getGlobalPolicyApi(): Promise<import('axios').AxiosResponse<any, any>>
14
- export declare function updatePasswordApi(
15
- data: any,
16
- ): Promise<import('axios').AxiosResponse<any, any>>
11
+ }): Promise<import('axios').AxiosResponse<any>>
12
+ export declare function getUserInfoApi(): Promise<import('axios').AxiosResponse<any>>
13
+ export declare function getGlobalPolicyApi(): Promise<import('axios').AxiosResponse<any>>
14
+ export declare function updatePasswordApi(data: any): Promise<import('axios').AxiosResponse<any>>
17
15
  export declare function getCaptchaURL(validCodeId: string): string
18
- export declare function logoutApi(): Promise<import('axios').AxiosResponse<any, any>>
16
+ export declare function logoutApi(): Promise<import('axios').AxiosResponse<any>>
19
17
  //# sourceMappingURL=user.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../src/api/platform/user.ts"],"names":[],"mappings":"AAMA,wBAAgB,QAAQ,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,cAAc,EAAE;;;;;CAAA,oDAQ3E;AAED,wBAAgB,cAAc,qDAE7B;AAED,wBAAgB,kBAAkB,qDAEjC;AAED,wBAAgB,iBAAiB,CAAC,IAAI,KAAA,oDAErC;AAED,wBAAgB,aAAa,CAAC,WAAW,EAAE,MAAM,UAEhD;AAED,wBAAgB,SAAS,qDAExB"}
1
+ {"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../src/api/platform/user.ts"],"names":[],"mappings":"AAMA,wBAAgB,QAAQ,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,cAAc,EAAE;;;;;CAAA,+CAQ3E;AAED,wBAAgB,cAAc,gDAE7B;AAED,wBAAgB,kBAAkB,gDAEjC;AAED,wBAAgB,iBAAiB,CAAC,IAAI,KAAA,+CAErC;AAED,wBAAgB,aAAa,CAAC,WAAW,EAAE,MAAM,UAEhD;AAED,wBAAgB,SAAS,gDAExB"}
@@ -45,4 +45,5 @@ export function importJsonFromExcel(excelData: any): Promise<any>
45
45
  * @returns excel里的列号
46
46
  */
47
47
  export function getExcelColumnIdx(number: number): string
48
+ export function previewJsonToExcel(excelData: any): Promise<any>
48
49
  //# sourceMappingURL=excel.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"excel.d.ts","sourceRoot":"","sources":["../../src/utils/excel.js"],"names":[],"mappings":"AAmWA;;;;;;;;;;;;;;;;;;GAkBG;AACH,wDAwJC;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,kEAiDC;AA+BD;;;;;GAKG;AACH,0CAHW,MAAM,UAgBhB"}
1
+ {"version":3,"file":"excel.d.ts","sourceRoot":"","sources":["../../src/utils/excel.js"],"names":[],"mappings":"AAoWA;;;;;;;;;;;;;;;;;;GAkBG;AACH,wDAwJC;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,kEAiDC;AA+BD;;;;;GAKG;AACH,0CAHW,MAAM,UAgBhB;AAED,iEA0JC"}