@hw-component/table 1.9.24 → 1.9.26
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/.babelrc +4 -11
- package/.eslintcache +1 -1
- package/es/DialogTable/Content.js +8 -8
- package/es/DialogTable/DwTable.js +8 -8
- package/es/DialogTable/ModalTable.js +8 -8
- package/es/DialogTable/hooks.js +8 -8
- package/es/GoTop/index.d.ts +1 -0
- package/es/HTableBody/AlertMsg.d.ts +1 -0
- package/es/HTableBody/AlertMsg.js +3 -3
- package/es/HTableBody/Options/Content.d.ts +1 -0
- package/es/HTableBody/Options/Content.js +2 -4
- package/es/HTableBody/Options/Title.d.ts +1 -0
- package/es/HTableBody/Options/Title.js +1 -3
- package/es/HTableBody/Options/hooks.js +1 -3
- package/es/HTableBody/Options/index.d.ts +1 -0
- package/es/HTableBody/Options/utils.d.ts +3 -329
- package/es/HTableBody/Options/utils.js +8 -8
- package/es/HTableBody/RowSelection.d.ts +1 -0
- package/es/HTableBody/RowSelection.js +5 -5
- package/es/HTableBody/hooks.js +11 -11
- package/es/HTableBody/index.js +9 -9
- package/es/HTableBody/utils.js +2 -5
- package/es/HTableFooter/index.js +11 -11
- package/es/HTableHeader/RangePickerSearch.js +8 -9
- package/es/HTableHeader/defaultFormRender.d.ts +1 -0
- package/es/HTableHeader/defaultFormRender.js +8 -9
- package/es/HTableHeader/defaultSubComponent.d.ts +3 -1
- package/es/HTableHeader/defaultSubComponent.js +44 -34
- package/es/HTableHeader/hooks.js +12 -14
- package/es/HTablePagination/index.js +10 -10
- package/es/Table.js +9 -9
- package/es/TableCustomize.js +8 -8
- package/es/hooks/index.js +3 -4
- package/es/hooks/useHTable.js +1 -1
- package/es/hooks/useReq.js +11 -13
- package/es/index.css +0 -1
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/render/TagsComponent.js +11 -14
- package/es/render/config.js +8 -8
- package/lib/DialogTable/Content.js +8 -8
- package/lib/DialogTable/DwTable.js +8 -8
- package/lib/DialogTable/ModalTable.js +8 -8
- package/lib/DialogTable/hooks.js +8 -8
- package/lib/GoTop/index.d.ts +1 -0
- package/lib/HTableBody/AlertMsg.d.ts +1 -0
- package/lib/HTableBody/AlertMsg.js +3 -3
- package/lib/HTableBody/Options/Content.d.ts +1 -0
- package/lib/HTableBody/Options/Content.js +2 -4
- package/lib/HTableBody/Options/Title.d.ts +1 -0
- package/lib/HTableBody/Options/Title.js +1 -3
- package/lib/HTableBody/Options/hooks.js +1 -3
- package/lib/HTableBody/Options/index.d.ts +1 -0
- package/lib/HTableBody/Options/utils.d.ts +3 -329
- package/lib/HTableBody/Options/utils.js +8 -8
- package/lib/HTableBody/RowSelection.d.ts +1 -0
- package/lib/HTableBody/RowSelection.js +5 -5
- package/lib/HTableBody/hooks.js +11 -11
- package/lib/HTableBody/index.js +9 -9
- package/lib/HTableBody/utils.js +2 -5
- package/lib/HTableFooter/index.js +11 -11
- package/lib/HTableHeader/RangePickerSearch.js +8 -9
- package/lib/HTableHeader/defaultFormRender.d.ts +1 -0
- package/lib/HTableHeader/defaultFormRender.js +8 -9
- package/lib/HTableHeader/defaultSubComponent.d.ts +3 -1
- package/lib/HTableHeader/defaultSubComponent.js +42 -32
- package/lib/HTableHeader/hooks.js +12 -14
- package/lib/HTablePagination/index.js +10 -10
- package/lib/Table.js +9 -9
- package/lib/TableCustomize.js +8 -8
- package/lib/hooks/index.js +3 -4
- package/lib/hooks/useHTable.js +1 -1
- package/lib/hooks/useReq.js +11 -13
- package/lib/index.css +0 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -0
- package/lib/render/TagsComponent.js +11 -14
- package/lib/render/config.js +8 -8
- package/package.json +4 -4
- package/src/components/HTableHeader/defaultSubComponent.tsx +34 -24
- package/src/components/index.less +0 -1
- package/src/components/index.tsx +1 -0
- package/src/pages/Table/index.tsx +18 -1
package/.babelrc
CHANGED
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"presets": [
|
|
3
3
|
[
|
|
4
|
-
"@babel/preset-env"
|
|
5
|
-
{
|
|
6
|
-
"modules": false
|
|
7
|
-
}
|
|
4
|
+
"@babel/preset-env"
|
|
8
5
|
],
|
|
9
6
|
"@babel/preset-react",
|
|
10
7
|
"@babel/preset-typescript"
|
|
11
8
|
],
|
|
12
9
|
"plugins": [
|
|
13
10
|
[
|
|
14
|
-
"@babel/plugin-transform-runtime",
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"version": 3,
|
|
18
|
-
"proposals": true
|
|
19
|
-
}
|
|
20
|
-
}
|
|
11
|
+
"@babel/plugin-transform-runtime", {
|
|
12
|
+
"corejs": 3
|
|
13
|
+
}
|
|
21
14
|
]
|
|
22
15
|
]
|
|
23
16
|
}
|
package/.eslintcache
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
[{"/Users/hedongjie/Desktop/web/hw-component-table/src/Layout.tsx":"1","/Users/hedongjie/Desktop/web/hw-component-table/src/app.tsx":"2","/Users/hedongjie/Desktop/web/hw-component-table/src/index.tsx":"3","/Users/hedongjie/Desktop/web/hw-component-table/src/routes.tsx":"4","/Users/hedongjie/Desktop/web/hw-component-table/src/components/index.tsx":"5","/Users/hedongjie/Desktop/web/hw-component-table/src/components/Table.tsx":"6","/Users/hedongjie/Desktop/web/hw-component-table/src/components/context.ts":"7","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useCurrentTable.ts":"8","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useHTable.tsx":"9","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useRowObj.ts":"10","/Users/hedongjie/Desktop/web/hw-component-table/src/components/modal.ts":"11","/Users/hedongjie/Desktop/web/hw-component-table/src/components/TableConfig.tsx":"12","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/index.tsx":"13","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableFooter/index.tsx":"14","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/index.tsx":"15","/Users/hedongjie/Desktop/web/hw-component-table/src/components/TableCustomize.tsx":"16","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useDispatch.ts":"17","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useReq.ts":"18","/Users/hedongjie/Desktop/web/hw-component-table/src/pages/Table/index.tsx":"19","/Users/hedongjie/Desktop/web/hw-component-table/src/pages/TableCustomize/index.tsx":"20","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTablePagination/index.tsx":"21","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/index.ts":"22","/Users/hedongjie/Desktop/web/hw-component-table/src/pages/ModalTable/index.tsx":"23","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/AlertMsg.tsx":"24","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/RowSelection.tsx":"25","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/hooks.tsx":"26","/Users/hedongjie/Desktop/web/hw-component-table/src/components/GoTop/index.tsx":"27","/Users/hedongjie/Desktop/web/hw-component-table/src/typings.d.ts":"28","/Users/hedongjie/Desktop/web/hw-component-table/scripts/rollup.config.js":"29","/Users/hedongjie/Desktop/web/hw-component-table/scripts/webpack.config.js":"30","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/hooks.tsx":"31","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/defaultSubComponent.tsx":"32","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/modal.ts":"33","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/Content.tsx":"34","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/Title.tsx":"35","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/index.tsx":"36","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/modal.d.ts":"37","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/utils.ts":"38","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/HeaderTitle/index.tsx":"39","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/RangePickerSearch.tsx":"40","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/defaultFormRender.tsx":"41","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/hooks.ts":"42","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/Context.tsx":"43","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/utils.ts":"44","/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/TagsComponent.tsx":"45","/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/config.tsx":"46","/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/index.tsx":"47","/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/Content.tsx":"48","/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/DwTable.tsx":"49","/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/ModalTable.tsx":"50","/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/hooks.ts":"51","/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/CopyComponent.tsx":"52","/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/Text.tsx":"53","/Users/hedongjie/Desktop/web/hw-component-table/src/pages/DwTable/index.tsx":"54"},{"size":1541,"mtime":1709541397429,"results":"55","hashOfConfig":"56"},{"size":741,"mtime":1713518829815,"results":"57","hashOfConfig":"56"},{"size":370,"mtime":1718160488742,"results":"58","hashOfConfig":"56"},{"size":887,"mtime":1724397613543,"results":"59","hashOfConfig":"56"},{"size":682,"mtime":1724397613541,"results":"60","hashOfConfig":"56"},{"size":2795,"mtime":1729582327142,"results":"61","hashOfConfig":"56"},{"size":952,"mtime":1721801509391,"results":"62","hashOfConfig":"56"},{"size":1411,"mtime":1718183242682,"results":"63","hashOfConfig":"56"},{"size":839,"mtime":1720086914276,"results":"64","hashOfConfig":"56"},{"size":739,"mtime":1716085382298,"results":"65","hashOfConfig":"56"},{"size":5368,"mtime":1729582327183,"results":"66","hashOfConfig":"56"},{"size":1488,"mtime":1721801545279,"results":"67","hashOfConfig":"56"},{"size":6334,"mtime":1729843393070,"results":"68","hashOfConfig":"56"},{"size":2163,"mtime":1716085382140,"results":"69","hashOfConfig":"56"},{"size":2238,"mtime":1729582327113,"results":"70","hashOfConfig":"56"},{"size":1958,"mtime":1729582327153,"results":"71","hashOfConfig":"56"},{"size":209,"mtime":1713781957255,"results":"72","hashOfConfig":"56"},{"size":2879,"mtime":1729582327168,"results":"73","hashOfConfig":"56"},{"size":5790,"mtime":1729582327252,"results":"74","hashOfConfig":"56"},{"size":2077,"mtime":1729582302145,"results":"75","hashOfConfig":"56"},{"size":3448,"mtime":1729582327130,"results":"76","hashOfConfig":"56"},{"size":498,"mtime":1709893919938,"results":"77","hashOfConfig":"56"},{"size":3327,"mtime":1729582327232,"results":"78","hashOfConfig":"56"},{"size":1080,"mtime":1716085371834,"results":"79","hashOfConfig":"56"},{"size":3777,"mtime":1721801545176,"results":"80","hashOfConfig":"56"},{"size":4583,"mtime":1729582327074,"results":"81","hashOfConfig":"56"},{"size":1102,"mtime":1710829302576,"results":"82","hashOfConfig":"56"},{"size":1162,"mtime":1710829299926,"results":"83","hashOfConfig":"56"},{"size":2302,"mtime":1711102156682,"results":"84","hashOfConfig":"56"},{"size":1677,"mtime":1716085381973,"results":"85","hashOfConfig":"56"},{"size":4897,"mtime":1718183843897,"results":"86","hashOfConfig":"56"},{"size":2119,"mtime":1720086914249,"results":"87","hashOfConfig":"56"},{"size":696,"mtime":1720086914261,"results":"88","hashOfConfig":"56"},{"size":1684,"mtime":1720086914112,"results":"89","hashOfConfig":"56"},{"size":1437,"mtime":1720086914134,"results":"90","hashOfConfig":"56"},{"size":2987,"mtime":1720174044485,"results":"91","hashOfConfig":"56"},{"size":782,"mtime":1720174047079,"results":"92","hashOfConfig":"56"},{"size":479,"mtime":1720086914169,"results":"93","hashOfConfig":"56"},{"size":1049,"mtime":1716085371834,"results":"94","hashOfConfig":"56"},{"size":1208,"mtime":1716085371834,"results":"95","hashOfConfig":"56"},{"size":365,"mtime":1716085371835,"results":"96","hashOfConfig":"56"},{"size":665,"mtime":1720086917041,"results":"97","hashOfConfig":"56"},{"size":266,"mtime":1720086917041,"results":"98","hashOfConfig":"56"},{"size":2253,"mtime":1720086917041,"results":"99","hashOfConfig":"56"},{"size":3023,"mtime":1721801547651,"results":"100","hashOfConfig":"56"},{"size":3423,"mtime":1729582327200,"results":"101","hashOfConfig":"56"},{"size":813,"mtime":1726745370599,"results":"102","hashOfConfig":"56"},{"size":494,"mtime":1729582302142,"results":"103","hashOfConfig":"56"},{"size":2872,"mtime":1729582327027,"results":"104","hashOfConfig":"56"},{"size":2410,"mtime":1729582327041,"results":"105","hashOfConfig":"56"},{"size":1493,"mtime":1729582302142,"results":"106","hashOfConfig":"56"},{"size":743,"mtime":1729582327190,"results":"107","hashOfConfig":"56"},{"size":182,"mtime":1724397725474,"results":"108","hashOfConfig":"56"},{"size":3354,"mtime":1729582327220,"results":"109","hashOfConfig":"56"},{"filePath":"110","messages":"111","suppressedMessages":"112","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1mh59l9",{"filePath":"113","messages":"114","suppressedMessages":"115","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"116","messages":"117","suppressedMessages":"118","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"119","messages":"120","suppressedMessages":"121","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"122","messages":"123","suppressedMessages":"124","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"125","messages":"126","suppressedMessages":"127","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"128","messages":"129","suppressedMessages":"130","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"131","messages":"132","suppressedMessages":"133","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"134","messages":"135","suppressedMessages":"136","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"137","messages":"138","suppressedMessages":"139","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"140","messages":"141","suppressedMessages":"142","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"143","messages":"144","suppressedMessages":"145","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"146","messages":"147","suppressedMessages":"148","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"149","messages":"150","suppressedMessages":"151","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"152","messages":"153","suppressedMessages":"154","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"155","messages":"156","suppressedMessages":"157","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"158","messages":"159","suppressedMessages":"160","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"161","messages":"162","suppressedMessages":"163","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"164","messages":"165","suppressedMessages":"166","errorCount":0,"fatalErrorCount":0,"warningCount":11,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"167","messages":"168","suppressedMessages":"169","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"170","messages":"171","suppressedMessages":"172","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"173","messages":"174","suppressedMessages":"175","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"176","messages":"177","suppressedMessages":"178","errorCount":0,"fatalErrorCount":0,"warningCount":4,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"179","messages":"180","suppressedMessages":"181","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"182","messages":"183","suppressedMessages":"184","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"185","messages":"186","suppressedMessages":"187","errorCount":0,"fatalErrorCount":0,"warningCount":5,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"188","messages":"189","suppressedMessages":"190","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"191","messages":"192","suppressedMessages":"193","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"194","messages":"195","suppressedMessages":"196","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"197","messages":"198","suppressedMessages":"199","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"200","messages":"201","suppressedMessages":"202","errorCount":0,"fatalErrorCount":0,"warningCount":6,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"203","messages":"204","suppressedMessages":"205","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"206","messages":"207","suppressedMessages":"208","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"209","messages":"210","suppressedMessages":"211","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"212","messages":"213","suppressedMessages":"214","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"215","messages":"216","suppressedMessages":"217","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"218","messages":"219","suppressedMessages":"220","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"221","messages":"222","suppressedMessages":"223","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"224","messages":"225","suppressedMessages":"226","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"227","messages":"228","suppressedMessages":"229","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"230","messages":"231","suppressedMessages":"232","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"233","messages":"234","suppressedMessages":"235","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"236","messages":"237","suppressedMessages":"238","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"239","messages":"240","suppressedMessages":"241","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"242","messages":"243","suppressedMessages":"244","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"245","messages":"246","suppressedMessages":"247","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"248","messages":"249","suppressedMessages":"250","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"251","messages":"252","suppressedMessages":"253","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"254","messages":"255","suppressedMessages":"256","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"257","messages":"258","suppressedMessages":"259","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"260","messages":"261","suppressedMessages":"262","errorCount":0,"fatalErrorCount":0,"warningCount":3,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"263","messages":"264","suppressedMessages":"265","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"266","messages":"267","suppressedMessages":"268","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"269","messages":"270","suppressedMessages":"271","errorCount":0,"fatalErrorCount":0,"warningCount":4,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"/Users/hedongjie/Desktop/web/hw-component-table/src/Layout.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/app.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/routes.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/Table.tsx",["272","273"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/context.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useCurrentTable.ts",["274"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useHTable.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useRowObj.ts",["275"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/modal.ts",["276"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/TableConfig.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableFooter/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/TableCustomize.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useDispatch.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useReq.ts",["277","278"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/pages/Table/index.tsx",["279","280","281","282","283","284","285","286","287","288","289"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/pages/TableCustomize/index.tsx",["290","291"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTablePagination/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/index.ts",["292"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/pages/ModalTable/index.tsx",["293","294","295","296"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/AlertMsg.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/RowSelection.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/hooks.tsx",["297","298","299","300","301"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/GoTop/index.tsx",["302","303"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/typings.d.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/scripts/rollup.config.js",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/scripts/webpack.config.js",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/hooks.tsx",["304","305","306","307","308","309"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/defaultSubComponent.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/modal.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/Content.tsx",["310"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/Title.tsx",["311"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/modal.d.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/utils.ts",["312","313"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/HeaderTitle/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/RangePickerSearch.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/defaultFormRender.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/hooks.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/Context.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/utils.ts",["314","315"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/TagsComponent.tsx",["316","317"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/config.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/Content.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/DwTable.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/ModalTable.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/hooks.ts",["318","319","320"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/CopyComponent.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/Text.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/pages/DwTable/index.tsx",["321","322","323","324"],[],{"ruleId":"325","severity":1,"message":"326","line":6,"column":10,"nodeType":"327","messageId":"328","endLine":6,"endColumn":15},{"ruleId":"325","severity":1,"message":"329","line":21,"column":3,"nodeType":"327","messageId":"328","endLine":21,"endColumn":12},{"ruleId":"330","severity":1,"message":"331","line":43,"column":6,"nodeType":"332","endLine":43,"endColumn":42,"suggestions":"333"},{"ruleId":"325","severity":1,"message":"334","line":8,"column":9,"nodeType":"327","messageId":"328","endLine":8,"endColumn":30},{"ruleId":"325","severity":1,"message":"335","line":13,"column":10,"nodeType":"327","messageId":"328","endLine":13,"endColumn":19},{"ruleId":"330","severity":1,"message":"336","line":55,"column":6,"nodeType":"332","endLine":55,"endColumn":18,"suggestions":"337"},{"ruleId":"330","severity":1,"message":"338","line":104,"column":6,"nodeType":"332","endLine":104,"endColumn":8,"suggestions":"339"},{"ruleId":"325","severity":1,"message":"340","line":1,"column":29,"nodeType":"327","messageId":"328","endLine":1,"endColumn":41},{"ruleId":"325","severity":1,"message":"341","line":2,"column":18,"nodeType":"327","messageId":"328","endLine":2,"endColumn":22},{"ruleId":"325","severity":1,"message":"342","line":2,"column":50,"nodeType":"327","messageId":"328","endLine":2,"endColumn":53},{"ruleId":"325","severity":1,"message":"343","line":9,"column":32,"nodeType":"327","messageId":"328","endLine":9,"endColumn":40},{"ruleId":"344","severity":1,"message":"345","line":21,"column":21,"nodeType":"327","messageId":"346","endLine":21,"endColumn":26},{"ruleId":"325","severity":1,"message":"347","line":95,"column":7,"nodeType":"327","messageId":"328","endLine":95,"endColumn":13},{"ruleId":"325","severity":1,"message":"348","line":96,"column":7,"nodeType":"327","messageId":"328","endLine":96,"endColumn":27},{"ruleId":"325","severity":1,"message":"349","line":97,"column":7,"nodeType":"327","messageId":"328","endLine":97,"endColumn":20},{"ruleId":"325","severity":1,"message":"350","line":98,"column":7,"nodeType":"327","messageId":"328","endLine":98,"endColumn":36},{"ruleId":"325","severity":1,"message":"351","line":104,"column":7,"nodeType":"327","messageId":"328","endLine":104,"endColumn":11},{"ruleId":"325","severity":1,"message":"352","line":140,"column":34,"nodeType":"327","messageId":"328","endLine":140,"endColumn":40},{"ruleId":"325","severity":1,"message":"353","line":25,"column":7,"nodeType":"327","messageId":"328","endLine":25,"endColumn":13},{"ruleId":"325","severity":1,"message":"352","line":41,"column":36,"nodeType":"327","messageId":"328","endLine":41,"endColumn":42},{"ruleId":"330","severity":1,"message":"354","line":13,"column":6,"nodeType":"332","endLine":13,"endColumn":17,"suggestions":"355"},{"ruleId":"325","severity":1,"message":"356","line":24,"column":7,"nodeType":"327","messageId":"328","endLine":24,"endColumn":11},{"ruleId":"325","severity":1,"message":"352","line":27,"column":32,"nodeType":"327","messageId":"328","endLine":27,"endColumn":38},{"ruleId":"325","severity":1,"message":"352","line":48,"column":32,"nodeType":"327","messageId":"328","endLine":48,"endColumn":38},{"ruleId":"325","severity":1,"message":"357","line":134,"column":9,"nodeType":"327","messageId":"328","endLine":134,"endColumn":21},{"ruleId":"330","severity":1,"message":"358","line":77,"column":6,"nodeType":"332","endLine":77,"endColumn":39,"suggestions":"359"},{"ruleId":"330","severity":1,"message":"360","line":102,"column":6,"nodeType":"332","endLine":102,"endColumn":40,"suggestions":"361"},{"ruleId":"330","severity":1,"message":"362","line":131,"column":6,"nodeType":"332","endLine":131,"endColumn":8,"suggestions":"363"},{"ruleId":"330","severity":1,"message":"364","line":136,"column":6,"nodeType":"332","endLine":136,"endColumn":17,"suggestions":"365"},{"ruleId":"330","severity":1,"message":"366","line":139,"column":6,"nodeType":"332","endLine":139,"endColumn":13,"suggestions":"367"},{"ruleId":"330","severity":1,"message":"368","line":26,"column":6,"nodeType":"332","endLine":26,"endColumn":11,"suggestions":"369"},{"ruleId":"330","severity":1,"message":"368","line":34,"column":6,"nodeType":"332","endLine":34,"endColumn":8,"suggestions":"370"},{"ruleId":"325","severity":1,"message":"371","line":68,"column":5,"nodeType":"327","messageId":"328","endLine":68,"endColumn":22},{"ruleId":"325","severity":1,"message":"372","line":69,"column":5,"nodeType":"327","messageId":"328","endLine":69,"endColumn":15},{"ruleId":"325","severity":1,"message":"373","line":70,"column":5,"nodeType":"327","messageId":"328","endLine":70,"endColumn":16},{"ruleId":"325","severity":1,"message":"374","line":71,"column":5,"nodeType":"327","messageId":"328","endLine":71,"endColumn":10},{"ruleId":"330","severity":1,"message":"375","line":188,"column":6,"nodeType":"332","endLine":188,"endColumn":42,"suggestions":"376"},{"ruleId":"330","severity":1,"message":"375","line":194,"column":6,"nodeType":"332","endLine":194,"endColumn":42,"suggestions":"377"},{"ruleId":"330","severity":1,"message":"378","line":31,"column":6,"nodeType":"332","endLine":31,"endColumn":15,"suggestions":"379"},{"ruleId":"325","severity":1,"message":"380","line":20,"column":9,"nodeType":"327","messageId":"328","endLine":20,"endColumn":16},{"ruleId":"325","severity":1,"message":"381","line":1,"column":15,"nodeType":"327","messageId":"328","endLine":1,"endColumn":30},{"ruleId":"325","severity":1,"message":"382","line":3,"column":10,"nodeType":"327","messageId":"328","endLine":3,"endColumn":22},{"ruleId":"325","severity":1,"message":"383","line":22,"column":51,"nodeType":"327","messageId":"328","endLine":22,"endColumn":63},{"ruleId":"325","severity":1,"message":"384","line":22,"column":65,"nodeType":"327","messageId":"328","endLine":22,"endColumn":73},{"ruleId":"385","severity":1,"message":"386","line":77,"column":13,"nodeType":"387","messageId":"388","endLine":88,"endColumn":23},{"ruleId":"385","severity":1,"message":"386","line":99,"column":11,"nodeType":"387","messageId":"388","endLine":110,"endColumn":21},{"ruleId":"325","severity":1,"message":"389","line":15,"column":14,"nodeType":"327","messageId":"328","endLine":15,"endColumn":39},{"ruleId":"330","severity":1,"message":"390","line":19,"column":6,"nodeType":"332","endLine":19,"endColumn":8,"suggestions":"391"},{"ruleId":"330","severity":1,"message":"392","line":49,"column":6,"nodeType":"332","endLine":49,"endColumn":8,"suggestions":"393"},{"ruleId":"325","severity":1,"message":"356","line":24,"column":7,"nodeType":"327","messageId":"328","endLine":24,"endColumn":11},{"ruleId":"325","severity":1,"message":"352","line":27,"column":32,"nodeType":"327","messageId":"328","endLine":27,"endColumn":38},{"ruleId":"325","severity":1,"message":"352","line":48,"column":32,"nodeType":"327","messageId":"328","endLine":48,"endColumn":38},{"ruleId":"325","severity":1,"message":"357","line":135,"column":9,"nodeType":"327","messageId":"328","endLine":135,"endColumn":21},"@typescript-eslint/no-unused-vars","'Space' is defined but never used.","Identifier","unusedVar","'spaceSize' is assigned a value but never used.","react-hooks/exhaustive-deps","React Hook useMemo has missing dependencies: 'changeRowData', 'dispatch', 'getTableParams', 'reload', 'reloadWithParams', and 'useCurrentTable'. Either include them or remove the dependency array.","ArrayExpression",["394"],"'selectedRowDataSource' is assigned a value but never used.","'GetRowKey' is defined but never used.","React Hook useEffect has a missing dependency: 'localMaker'. Either include it or remove the dependency array.",["395"],"React Hook useEffect has missing dependencies: 'formInitValues', 'manual', 'reloadFn', 'request', and 'resultAction'. Either include them or remove the dependency array.",["396"],"'HTableConfig' is defined but never used.","'Card' is defined but never used.","'Row' is defined but never used.","'labelKey' is defined but never used.","react/no-array-index-key","Do not use Array index in keys","noArrayIndex","'_' is defined but never used.","'data' is defined but never used.","'index' is defined but never used.","'tableInstance' is defined but never used.","'Test' is assigned a value but never used.","'reject' is defined but never used.","'AddBtn' is assigned a value but never used.","React Hook useMemo has a missing dependency: 'config'. Either include it or remove the dependency array.",["397"],"'req1' is assigned a value but never used.","'dialogTable1' is assigned a value but never used.","React Hook useEffect has a missing dependency: 'changeConfigData'. Either include it or remove the dependency array.",["398"],"React Hook useEffect has a missing dependency: 'rowOnChange'. Either include it or remove the dependency array.",["399"],"React Hook useMemo has a missing dependency: 'selfValue'. Either include it or remove the dependency array.",["400"],"React Hook useEffect has missing dependencies: 'columns' and 'tableInstance.table'. Either include them or remove the dependency array.",["401"],"React Hook useEffect has a missing dependency: 'columnsState'. Either include it or remove the dependency array. If 'setSelfValue' needs the current value of 'columnsState', you can also switch to useReducer instead of useState and read 'columnsState' in the reducer.",["402"],"React Hook useEffect has a missing dependency: 'cuDom'. Either include it or remove the dependency array.",["403"],["404"],"'childrenDataIndex' is defined but never used.","'showSearch' is defined but never used.","'hideInTable' is defined but never used.","'align' is defined but never used.","React Hook useEffect has a missing dependency: 'mkNewFn'. Either include it or remove the dependency array.",["405"],["406"],"React Hook useMemo has a missing dependency: 'titleClass'. Either include it or remove the dependency array.",["407"],"'allKeys' is assigned a value but never used.","'ConfigDataModal' is defined but never used.","'ColumnsState' is defined but never used.","'defaultValue' is assigned a value but never used.","'onChange' is assigned a value but never used.","react/jsx-key","Missing \"key\" prop for element in iterator","JSXElement","missingIterKey","'params' is defined but never used.","React Hook useMemo has a missing dependency: 'tableInstance'. Either include it or remove the dependency array.",["408"],"React Hook useEffect has missing dependencies: 'dialogTableInstance', 'hide', and 'show'. Either include them or remove the dependency array.",["409"],{"desc":"410","fix":"411"},{"desc":"412","fix":"413"},{"desc":"414","fix":"415"},{"desc":"416","fix":"417"},{"desc":"418","fix":"419"},{"desc":"420","fix":"421"},{"desc":"422","fix":"423"},{"desc":"424","fix":"425"},{"desc":"426","fix":"427"},{"desc":"428","fix":"429"},{"desc":"430","fix":"431"},{"desc":"432","fix":"433"},{"desc":"432","fix":"434"},{"desc":"435","fix":"436"},{"desc":"437","fix":"438"},{"desc":"439","fix":"440"},"Update the dependencies array to be: [table, useCurrentTable, reload, changeRowData, dispatch, reloadWithParams, getTableParams, selectedRowData, dataSource?.records]",{"range":"441","text":"442"},"Update the dependencies array to be: [dataSource, localMaker]",{"range":"443","text":"444"},"Update the dependencies array to be: [formInitValues, manual, reloadFn, request, resultAction]",{"range":"445","text":"446"},"Update the dependencies array to be: [className, config]",{"range":"447","text":"448"},"Update the dependencies array to be: [configData, table, rowSelection, changeConfigData]",{"range":"449","text":"450"},"Update the dependencies array to be: [selectedRowKeys, records, rowKey, rowOnChange]",{"range":"451","text":"452"},"Update the dependencies array to be: [selfValue]",{"range":"453","text":"454"},"Update the dependencies array to be: [columns, selfValue, tableInstance.table]",{"range":"455","text":"456"},"Update the dependencies array to be: [columnsState, value]",{"range":"457","text":"458"},"Update the dependencies array to be: [cuDom, dom]",{"range":"459","text":"460"},"Update the dependencies array to be: [cuDom]",{"range":"461","text":"462"},"Update the dependencies array to be: [configData, searchSpan, headerOpen, mkNewFn]",{"range":"463","text":"464"},{"range":"465","text":"464"},"Update the dependencies array to be: [columns, titleClass]",{"range":"466","text":"467"},"Update the dependencies array to be: [tableInstance]",{"range":"468","text":"469"},"Update the dependencies array to be: [dialogTableInstance, hide, show]",{"range":"470","text":"471"},[1369,1405],"[table, useCurrentTable, reload, changeRowData, dispatch, reloadWithParams, getTableParams, selectedRowData, dataSource?.records]",[1540,1552],"[dataSource, localMaker]",[2666,2668],"[formInitValues, manual, reloadFn, request, resultAction]",[481,492],"[className, config]",[2497,2530],"[configData, table, rowSelection, changeConfigData]",[3171,3205],"[selectedRowKeys, records, rowKey, rowOnChange]",[3940,3942],"[selfValue]",[4077,4088],"[columns, selfValue, tableInstance.table]",[4163,4170],"[columnsState, value]",[825,830],"[cuDom, dom]",[1021,1023],"[cuDom]",[4625,4661],"[configData, searchSpan, headerOpen, mkNewFn]",[4816,4852],[995,1004],"[columns, titleClass]",[483,485],"[tableInstance]",[1219,1221],"[dialogTableInstance, hide, show]"]
|
|
1
|
+
[{"/Users/hedongjie/Desktop/web/hw-component-table/src/Layout.tsx":"1","/Users/hedongjie/Desktop/web/hw-component-table/src/app.tsx":"2","/Users/hedongjie/Desktop/web/hw-component-table/src/index.tsx":"3","/Users/hedongjie/Desktop/web/hw-component-table/src/routes.tsx":"4","/Users/hedongjie/Desktop/web/hw-component-table/src/components/index.tsx":"5","/Users/hedongjie/Desktop/web/hw-component-table/src/components/Table.tsx":"6","/Users/hedongjie/Desktop/web/hw-component-table/src/components/context.ts":"7","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useCurrentTable.ts":"8","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useHTable.tsx":"9","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useRowObj.ts":"10","/Users/hedongjie/Desktop/web/hw-component-table/src/components/modal.ts":"11","/Users/hedongjie/Desktop/web/hw-component-table/src/components/TableConfig.tsx":"12","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/index.tsx":"13","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableFooter/index.tsx":"14","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/index.tsx":"15","/Users/hedongjie/Desktop/web/hw-component-table/src/components/TableCustomize.tsx":"16","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useDispatch.ts":"17","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useReq.ts":"18","/Users/hedongjie/Desktop/web/hw-component-table/src/pages/Table/index.tsx":"19","/Users/hedongjie/Desktop/web/hw-component-table/src/pages/TableCustomize/index.tsx":"20","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTablePagination/index.tsx":"21","/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/index.ts":"22","/Users/hedongjie/Desktop/web/hw-component-table/src/pages/ModalTable/index.tsx":"23","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/AlertMsg.tsx":"24","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/RowSelection.tsx":"25","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/hooks.tsx":"26","/Users/hedongjie/Desktop/web/hw-component-table/src/components/GoTop/index.tsx":"27","/Users/hedongjie/Desktop/web/hw-component-table/src/typings.d.ts":"28","/Users/hedongjie/Desktop/web/hw-component-table/scripts/rollup.config.js":"29","/Users/hedongjie/Desktop/web/hw-component-table/scripts/webpack.config.js":"30","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/hooks.tsx":"31","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/defaultSubComponent.tsx":"32","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/modal.ts":"33","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/Content.tsx":"34","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/Title.tsx":"35","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/index.tsx":"36","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/modal.d.ts":"37","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/utils.ts":"38","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/HeaderTitle/index.tsx":"39","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/RangePickerSearch.tsx":"40","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/defaultFormRender.tsx":"41","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/hooks.ts":"42","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/Context.tsx":"43","/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/utils.ts":"44","/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/TagsComponent.tsx":"45","/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/config.tsx":"46","/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/index.tsx":"47","/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/Content.tsx":"48","/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/DwTable.tsx":"49","/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/ModalTable.tsx":"50","/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/hooks.ts":"51","/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/CopyComponent.tsx":"52","/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/Text.tsx":"53","/Users/hedongjie/Desktop/web/hw-component-table/src/pages/DwTable/index.tsx":"54"},{"size":1541,"mtime":1709541397429,"results":"55","hashOfConfig":"56"},{"size":741,"mtime":1713518829815,"results":"57","hashOfConfig":"56"},{"size":370,"mtime":1718160488742,"results":"58","hashOfConfig":"56"},{"size":887,"mtime":1724397613543,"results":"59","hashOfConfig":"56"},{"size":682,"mtime":1724397613541,"results":"60","hashOfConfig":"56"},{"size":2795,"mtime":1729582327142,"results":"61","hashOfConfig":"56"},{"size":952,"mtime":1721801509391,"results":"62","hashOfConfig":"56"},{"size":1411,"mtime":1718183242682,"results":"63","hashOfConfig":"56"},{"size":839,"mtime":1720086914276,"results":"64","hashOfConfig":"56"},{"size":739,"mtime":1716085382298,"results":"65","hashOfConfig":"56"},{"size":5368,"mtime":1729582327183,"results":"66","hashOfConfig":"56"},{"size":1488,"mtime":1721801545279,"results":"67","hashOfConfig":"56"},{"size":6334,"mtime":1729843393070,"results":"68","hashOfConfig":"56"},{"size":2163,"mtime":1716085382140,"results":"69","hashOfConfig":"56"},{"size":2238,"mtime":1729582327113,"results":"70","hashOfConfig":"56"},{"size":1958,"mtime":1729582327153,"results":"71","hashOfConfig":"56"},{"size":209,"mtime":1713781957255,"results":"72","hashOfConfig":"56"},{"size":2879,"mtime":1729582327168,"results":"73","hashOfConfig":"56"},{"size":5790,"mtime":1729582327252,"results":"74","hashOfConfig":"56"},{"size":2077,"mtime":1729582302145,"results":"75","hashOfConfig":"56"},{"size":3448,"mtime":1729582327130,"results":"76","hashOfConfig":"56"},{"size":498,"mtime":1709893919938,"results":"77","hashOfConfig":"56"},{"size":3327,"mtime":1729582327232,"results":"78","hashOfConfig":"56"},{"size":1080,"mtime":1716085371834,"results":"79","hashOfConfig":"56"},{"size":3777,"mtime":1721801545176,"results":"80","hashOfConfig":"56"},{"size":4583,"mtime":1729582327074,"results":"81","hashOfConfig":"56"},{"size":1102,"mtime":1710829302576,"results":"82","hashOfConfig":"56"},{"size":1162,"mtime":1710829299926,"results":"83","hashOfConfig":"56"},{"size":2357,"mtime":1732161767681,"results":"84","hashOfConfig":"56"},{"size":1677,"mtime":1716085381973,"results":"85","hashOfConfig":"56"},{"size":4897,"mtime":1718183843897,"results":"86","hashOfConfig":"56"},{"size":2119,"mtime":1720086914249,"results":"87","hashOfConfig":"56"},{"size":696,"mtime":1720086914261,"results":"88","hashOfConfig":"56"},{"size":1684,"mtime":1720086914112,"results":"89","hashOfConfig":"56"},{"size":1437,"mtime":1720086914134,"results":"90","hashOfConfig":"56"},{"size":2987,"mtime":1720174044485,"results":"91","hashOfConfig":"56"},{"size":782,"mtime":1720174047079,"results":"92","hashOfConfig":"56"},{"size":479,"mtime":1720086914169,"results":"93","hashOfConfig":"56"},{"size":1049,"mtime":1716085371834,"results":"94","hashOfConfig":"56"},{"size":1208,"mtime":1716085371834,"results":"95","hashOfConfig":"56"},{"size":365,"mtime":1716085371835,"results":"96","hashOfConfig":"56"},{"size":665,"mtime":1720086917041,"results":"97","hashOfConfig":"56"},{"size":266,"mtime":1720086917041,"results":"98","hashOfConfig":"56"},{"size":2253,"mtime":1720086917041,"results":"99","hashOfConfig":"56"},{"size":3023,"mtime":1721801547651,"results":"100","hashOfConfig":"56"},{"size":3423,"mtime":1729582327200,"results":"101","hashOfConfig":"56"},{"size":813,"mtime":1726745370599,"results":"102","hashOfConfig":"56"},{"size":494,"mtime":1729582302142,"results":"103","hashOfConfig":"56"},{"size":2872,"mtime":1729582327027,"results":"104","hashOfConfig":"56"},{"size":2410,"mtime":1729582327041,"results":"105","hashOfConfig":"56"},{"size":1493,"mtime":1729582302142,"results":"106","hashOfConfig":"56"},{"size":743,"mtime":1729582327190,"results":"107","hashOfConfig":"56"},{"size":182,"mtime":1724397725474,"results":"108","hashOfConfig":"56"},{"size":3354,"mtime":1729582327220,"results":"109","hashOfConfig":"56"},{"filePath":"110","messages":"111","suppressedMessages":"112","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1mh59l9",{"filePath":"113","messages":"114","suppressedMessages":"115","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"116","messages":"117","suppressedMessages":"118","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"119","messages":"120","suppressedMessages":"121","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"122","messages":"123","suppressedMessages":"124","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"125","messages":"126","suppressedMessages":"127","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"128","messages":"129","suppressedMessages":"130","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"131","messages":"132","suppressedMessages":"133","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"134","messages":"135","suppressedMessages":"136","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"137","messages":"138","suppressedMessages":"139","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"140","messages":"141","suppressedMessages":"142","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"143","messages":"144","suppressedMessages":"145","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"146","messages":"147","suppressedMessages":"148","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"149","messages":"150","suppressedMessages":"151","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"152","messages":"153","suppressedMessages":"154","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"155","messages":"156","suppressedMessages":"157","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"158","messages":"159","suppressedMessages":"160","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"161","messages":"162","suppressedMessages":"163","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"164","messages":"165","suppressedMessages":"166","errorCount":0,"fatalErrorCount":0,"warningCount":11,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"167","messages":"168","suppressedMessages":"169","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"170","messages":"171","suppressedMessages":"172","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"173","messages":"174","suppressedMessages":"175","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"176","messages":"177","suppressedMessages":"178","errorCount":0,"fatalErrorCount":0,"warningCount":4,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"179","messages":"180","suppressedMessages":"181","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"182","messages":"183","suppressedMessages":"184","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"185","messages":"186","suppressedMessages":"187","errorCount":0,"fatalErrorCount":0,"warningCount":5,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"188","messages":"189","suppressedMessages":"190","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"191","messages":"192","suppressedMessages":"193","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"194","messages":"195","suppressedMessages":"196","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"197","messages":"198","suppressedMessages":"199","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"200","messages":"201","suppressedMessages":"202","errorCount":0,"fatalErrorCount":0,"warningCount":6,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"203","messages":"204","suppressedMessages":"205","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"206","messages":"207","suppressedMessages":"208","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"209","messages":"210","suppressedMessages":"211","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"212","messages":"213","suppressedMessages":"214","errorCount":0,"fatalErrorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"215","messages":"216","suppressedMessages":"217","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"218","messages":"219","suppressedMessages":"220","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"221","messages":"222","suppressedMessages":"223","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"224","messages":"225","suppressedMessages":"226","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"227","messages":"228","suppressedMessages":"229","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"230","messages":"231","suppressedMessages":"232","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"233","messages":"234","suppressedMessages":"235","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"236","messages":"237","suppressedMessages":"238","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"239","messages":"240","suppressedMessages":"241","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"242","messages":"243","suppressedMessages":"244","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"245","messages":"246","suppressedMessages":"247","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"248","messages":"249","suppressedMessages":"250","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"251","messages":"252","suppressedMessages":"253","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"254","messages":"255","suppressedMessages":"256","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"257","messages":"258","suppressedMessages":"259","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"260","messages":"261","suppressedMessages":"262","errorCount":0,"fatalErrorCount":0,"warningCount":3,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"263","messages":"264","suppressedMessages":"265","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"266","messages":"267","suppressedMessages":"268","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"269","messages":"270","suppressedMessages":"271","errorCount":0,"fatalErrorCount":0,"warningCount":4,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"/Users/hedongjie/Desktop/web/hw-component-table/src/Layout.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/app.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/routes.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/Table.tsx",["272","273"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/context.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useCurrentTable.ts",["274"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useHTable.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useRowObj.ts",["275"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/modal.ts",["276"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/TableConfig.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableFooter/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/TableCustomize.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useDispatch.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/useReq.ts",["277","278"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/pages/Table/index.tsx",["279","280","281","282","283","284","285","286","287","288","289"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/pages/TableCustomize/index.tsx",["290","291"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTablePagination/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/hooks/index.ts",["292"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/pages/ModalTable/index.tsx",["293","294","295","296"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/AlertMsg.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/RowSelection.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/hooks.tsx",["297","298","299","300","301"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/GoTop/index.tsx",["302","303"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/typings.d.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/scripts/rollup.config.js",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/scripts/webpack.config.js",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/hooks.tsx",["304","305","306","307","308","309"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/defaultSubComponent.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/modal.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/Content.tsx",["310"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/Title.tsx",["311"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/modal.d.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/utils.ts",["312","313"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/HeaderTitle/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/RangePickerSearch.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/defaultFormRender.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/Options/hooks.ts",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableHeader/Context.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/HTableBody/utils.ts",["314","315"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/TagsComponent.tsx",["316","317"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/config.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/index.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/Content.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/DwTable.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/ModalTable.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/DialogTable/hooks.ts",["318","319","320"],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/CopyComponent.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/components/render/Text.tsx",[],[],"/Users/hedongjie/Desktop/web/hw-component-table/src/pages/DwTable/index.tsx",["321","322","323","324"],[],{"ruleId":"325","severity":1,"message":"326","line":6,"column":10,"nodeType":"327","messageId":"328","endLine":6,"endColumn":15},{"ruleId":"325","severity":1,"message":"329","line":21,"column":3,"nodeType":"327","messageId":"328","endLine":21,"endColumn":12},{"ruleId":"330","severity":1,"message":"331","line":43,"column":6,"nodeType":"332","endLine":43,"endColumn":42,"suggestions":"333"},{"ruleId":"325","severity":1,"message":"334","line":8,"column":9,"nodeType":"327","messageId":"328","endLine":8,"endColumn":30},{"ruleId":"325","severity":1,"message":"335","line":13,"column":10,"nodeType":"327","messageId":"328","endLine":13,"endColumn":19},{"ruleId":"330","severity":1,"message":"336","line":55,"column":6,"nodeType":"332","endLine":55,"endColumn":18,"suggestions":"337"},{"ruleId":"330","severity":1,"message":"338","line":104,"column":6,"nodeType":"332","endLine":104,"endColumn":8,"suggestions":"339"},{"ruleId":"325","severity":1,"message":"340","line":1,"column":29,"nodeType":"327","messageId":"328","endLine":1,"endColumn":41},{"ruleId":"325","severity":1,"message":"341","line":2,"column":18,"nodeType":"327","messageId":"328","endLine":2,"endColumn":22},{"ruleId":"325","severity":1,"message":"342","line":2,"column":50,"nodeType":"327","messageId":"328","endLine":2,"endColumn":53},{"ruleId":"325","severity":1,"message":"343","line":9,"column":32,"nodeType":"327","messageId":"328","endLine":9,"endColumn":40},{"ruleId":"344","severity":1,"message":"345","line":21,"column":21,"nodeType":"327","messageId":"346","endLine":21,"endColumn":26},{"ruleId":"325","severity":1,"message":"347","line":95,"column":7,"nodeType":"327","messageId":"328","endLine":95,"endColumn":13},{"ruleId":"325","severity":1,"message":"348","line":96,"column":7,"nodeType":"327","messageId":"328","endLine":96,"endColumn":27},{"ruleId":"325","severity":1,"message":"349","line":97,"column":7,"nodeType":"327","messageId":"328","endLine":97,"endColumn":20},{"ruleId":"325","severity":1,"message":"350","line":98,"column":7,"nodeType":"327","messageId":"328","endLine":98,"endColumn":36},{"ruleId":"325","severity":1,"message":"351","line":104,"column":7,"nodeType":"327","messageId":"328","endLine":104,"endColumn":11},{"ruleId":"325","severity":1,"message":"352","line":140,"column":34,"nodeType":"327","messageId":"328","endLine":140,"endColumn":40},{"ruleId":"325","severity":1,"message":"353","line":25,"column":7,"nodeType":"327","messageId":"328","endLine":25,"endColumn":13},{"ruleId":"325","severity":1,"message":"352","line":41,"column":36,"nodeType":"327","messageId":"328","endLine":41,"endColumn":42},{"ruleId":"330","severity":1,"message":"354","line":13,"column":6,"nodeType":"332","endLine":13,"endColumn":17,"suggestions":"355"},{"ruleId":"325","severity":1,"message":"356","line":24,"column":7,"nodeType":"327","messageId":"328","endLine":24,"endColumn":11},{"ruleId":"325","severity":1,"message":"352","line":27,"column":32,"nodeType":"327","messageId":"328","endLine":27,"endColumn":38},{"ruleId":"325","severity":1,"message":"352","line":48,"column":32,"nodeType":"327","messageId":"328","endLine":48,"endColumn":38},{"ruleId":"325","severity":1,"message":"357","line":134,"column":9,"nodeType":"327","messageId":"328","endLine":134,"endColumn":21},{"ruleId":"330","severity":1,"message":"358","line":77,"column":6,"nodeType":"332","endLine":77,"endColumn":39,"suggestions":"359"},{"ruleId":"330","severity":1,"message":"360","line":102,"column":6,"nodeType":"332","endLine":102,"endColumn":40,"suggestions":"361"},{"ruleId":"330","severity":1,"message":"362","line":131,"column":6,"nodeType":"332","endLine":131,"endColumn":8,"suggestions":"363"},{"ruleId":"330","severity":1,"message":"364","line":136,"column":6,"nodeType":"332","endLine":136,"endColumn":17,"suggestions":"365"},{"ruleId":"330","severity":1,"message":"366","line":139,"column":6,"nodeType":"332","endLine":139,"endColumn":13,"suggestions":"367"},{"ruleId":"330","severity":1,"message":"368","line":26,"column":6,"nodeType":"332","endLine":26,"endColumn":11,"suggestions":"369"},{"ruleId":"330","severity":1,"message":"368","line":34,"column":6,"nodeType":"332","endLine":34,"endColumn":8,"suggestions":"370"},{"ruleId":"325","severity":1,"message":"371","line":68,"column":5,"nodeType":"327","messageId":"328","endLine":68,"endColumn":22},{"ruleId":"325","severity":1,"message":"372","line":69,"column":5,"nodeType":"327","messageId":"328","endLine":69,"endColumn":15},{"ruleId":"325","severity":1,"message":"373","line":70,"column":5,"nodeType":"327","messageId":"328","endLine":70,"endColumn":16},{"ruleId":"325","severity":1,"message":"374","line":71,"column":5,"nodeType":"327","messageId":"328","endLine":71,"endColumn":10},{"ruleId":"330","severity":1,"message":"375","line":188,"column":6,"nodeType":"332","endLine":188,"endColumn":42,"suggestions":"376"},{"ruleId":"330","severity":1,"message":"375","line":194,"column":6,"nodeType":"332","endLine":194,"endColumn":42,"suggestions":"377"},{"ruleId":"330","severity":1,"message":"378","line":31,"column":6,"nodeType":"332","endLine":31,"endColumn":15,"suggestions":"379"},{"ruleId":"325","severity":1,"message":"380","line":20,"column":9,"nodeType":"327","messageId":"328","endLine":20,"endColumn":16},{"ruleId":"325","severity":1,"message":"381","line":1,"column":15,"nodeType":"327","messageId":"328","endLine":1,"endColumn":30},{"ruleId":"325","severity":1,"message":"382","line":3,"column":10,"nodeType":"327","messageId":"328","endLine":3,"endColumn":22},{"ruleId":"325","severity":1,"message":"383","line":22,"column":51,"nodeType":"327","messageId":"328","endLine":22,"endColumn":63},{"ruleId":"325","severity":1,"message":"384","line":22,"column":65,"nodeType":"327","messageId":"328","endLine":22,"endColumn":73},{"ruleId":"385","severity":1,"message":"386","line":77,"column":13,"nodeType":"387","messageId":"388","endLine":88,"endColumn":23},{"ruleId":"385","severity":1,"message":"386","line":99,"column":11,"nodeType":"387","messageId":"388","endLine":110,"endColumn":21},{"ruleId":"325","severity":1,"message":"389","line":15,"column":14,"nodeType":"327","messageId":"328","endLine":15,"endColumn":39},{"ruleId":"330","severity":1,"message":"390","line":19,"column":6,"nodeType":"332","endLine":19,"endColumn":8,"suggestions":"391"},{"ruleId":"330","severity":1,"message":"392","line":49,"column":6,"nodeType":"332","endLine":49,"endColumn":8,"suggestions":"393"},{"ruleId":"325","severity":1,"message":"356","line":24,"column":7,"nodeType":"327","messageId":"328","endLine":24,"endColumn":11},{"ruleId":"325","severity":1,"message":"352","line":27,"column":32,"nodeType":"327","messageId":"328","endLine":27,"endColumn":38},{"ruleId":"325","severity":1,"message":"352","line":48,"column":32,"nodeType":"327","messageId":"328","endLine":48,"endColumn":38},{"ruleId":"325","severity":1,"message":"357","line":135,"column":9,"nodeType":"327","messageId":"328","endLine":135,"endColumn":21},"@typescript-eslint/no-unused-vars","'Space' is defined but never used.","Identifier","unusedVar","'spaceSize' is assigned a value but never used.","react-hooks/exhaustive-deps","React Hook useMemo has missing dependencies: 'changeRowData', 'dispatch', 'getTableParams', 'reload', 'reloadWithParams', and 'useCurrentTable'. Either include them or remove the dependency array.","ArrayExpression",["394"],"'selectedRowDataSource' is assigned a value but never used.","'GetRowKey' is defined but never used.","React Hook useEffect has a missing dependency: 'localMaker'. Either include it or remove the dependency array.",["395"],"React Hook useEffect has missing dependencies: 'formInitValues', 'manual', 'reloadFn', 'request', and 'resultAction'. Either include them or remove the dependency array.",["396"],"'HTableConfig' is defined but never used.","'Card' is defined but never used.","'Row' is defined but never used.","'labelKey' is defined but never used.","react/no-array-index-key","Do not use Array index in keys","noArrayIndex","'_' is defined but never used.","'data' is defined but never used.","'index' is defined but never used.","'tableInstance' is defined but never used.","'Test' is assigned a value but never used.","'reject' is defined but never used.","'AddBtn' is assigned a value but never used.","React Hook useMemo has a missing dependency: 'config'. Either include it or remove the dependency array.",["397"],"'req1' is assigned a value but never used.","'dialogTable1' is assigned a value but never used.","React Hook useEffect has a missing dependency: 'changeConfigData'. Either include it or remove the dependency array.",["398"],"React Hook useEffect has a missing dependency: 'rowOnChange'. Either include it or remove the dependency array.",["399"],"React Hook useMemo has a missing dependency: 'selfValue'. Either include it or remove the dependency array.",["400"],"React Hook useEffect has missing dependencies: 'columns' and 'tableInstance.table'. Either include them or remove the dependency array.",["401"],"React Hook useEffect has a missing dependency: 'columnsState'. Either include it or remove the dependency array. If 'setSelfValue' needs the current value of 'columnsState', you can also switch to useReducer instead of useState and read 'columnsState' in the reducer.",["402"],"React Hook useEffect has a missing dependency: 'cuDom'. Either include it or remove the dependency array.",["403"],["404"],"'childrenDataIndex' is defined but never used.","'showSearch' is defined but never used.","'hideInTable' is defined but never used.","'align' is defined but never used.","React Hook useEffect has a missing dependency: 'mkNewFn'. Either include it or remove the dependency array.",["405"],["406"],"React Hook useMemo has a missing dependency: 'titleClass'. Either include it or remove the dependency array.",["407"],"'allKeys' is assigned a value but never used.","'ConfigDataModal' is defined but never used.","'ColumnsState' is defined but never used.","'defaultValue' is assigned a value but never used.","'onChange' is assigned a value but never used.","react/jsx-key","Missing \"key\" prop for element in iterator","JSXElement","missingIterKey","'params' is defined but never used.","React Hook useMemo has a missing dependency: 'tableInstance'. Either include it or remove the dependency array.",["408"],"React Hook useEffect has missing dependencies: 'dialogTableInstance', 'hide', and 'show'. Either include them or remove the dependency array.",["409"],{"desc":"410","fix":"411"},{"desc":"412","fix":"413"},{"desc":"414","fix":"415"},{"desc":"416","fix":"417"},{"desc":"418","fix":"419"},{"desc":"420","fix":"421"},{"desc":"422","fix":"423"},{"desc":"424","fix":"425"},{"desc":"426","fix":"427"},{"desc":"428","fix":"429"},{"desc":"430","fix":"431"},{"desc":"432","fix":"433"},{"desc":"432","fix":"434"},{"desc":"435","fix":"436"},{"desc":"437","fix":"438"},{"desc":"439","fix":"440"},"Update the dependencies array to be: [table, useCurrentTable, reload, changeRowData, dispatch, reloadWithParams, getTableParams, selectedRowData, dataSource?.records]",{"range":"441","text":"442"},"Update the dependencies array to be: [dataSource, localMaker]",{"range":"443","text":"444"},"Update the dependencies array to be: [formInitValues, manual, reloadFn, request, resultAction]",{"range":"445","text":"446"},"Update the dependencies array to be: [className, config]",{"range":"447","text":"448"},"Update the dependencies array to be: [configData, table, rowSelection, changeConfigData]",{"range":"449","text":"450"},"Update the dependencies array to be: [selectedRowKeys, records, rowKey, rowOnChange]",{"range":"451","text":"452"},"Update the dependencies array to be: [selfValue]",{"range":"453","text":"454"},"Update the dependencies array to be: [columns, selfValue, tableInstance.table]",{"range":"455","text":"456"},"Update the dependencies array to be: [columnsState, value]",{"range":"457","text":"458"},"Update the dependencies array to be: [cuDom, dom]",{"range":"459","text":"460"},"Update the dependencies array to be: [cuDom]",{"range":"461","text":"462"},"Update the dependencies array to be: [configData, searchSpan, headerOpen, mkNewFn]",{"range":"463","text":"464"},{"range":"465","text":"464"},"Update the dependencies array to be: [columns, titleClass]",{"range":"466","text":"467"},"Update the dependencies array to be: [tableInstance]",{"range":"468","text":"469"},"Update the dependencies array to be: [dialogTableInstance, hide, show]",{"range":"470","text":"471"},[1369,1405],"[table, useCurrentTable, reload, changeRowData, dispatch, reloadWithParams, getTableParams, selectedRowData, dataSource?.records]",[1540,1552],"[dataSource, localMaker]",[2666,2668],"[formInitValues, manual, reloadFn, request, resultAction]",[481,492],"[className, config]",[2497,2530],"[configData, table, rowSelection, changeConfigData]",[3171,3205],"[selectedRowKeys, records, rowKey, rowOnChange]",[3940,3942],"[selfValue]",[4077,4088],"[columns, selfValue, tableInstance.table]",[4163,4170],"[columnsState, value]",[825,830],"[cuDom, dom]",[1021,1023],"[cuDom]",[4625,4661],"[configData, searchSpan, headerOpen, mkNewFn]",[4816,4852],[995,1004],"[columns, titleClass]",[483,485],"[tableInstance]",[1219,1221],"[dialogTableInstance, hide, show]"]
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// welcome to hoo hoo hoo
|
|
2
|
-
import _Object$keys from '@babel/runtime-corejs3/core-js/object/keys';
|
|
3
|
-
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js/object/get-own-property-symbols';
|
|
4
|
-
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js/instance/filter';
|
|
5
|
-
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptor';
|
|
6
|
-
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
7
|
-
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptors';
|
|
8
|
-
import _Object$defineProperties from '@babel/runtime-corejs3/core-js/object/define-properties';
|
|
9
|
-
import _Object$defineProperty from '@babel/runtime-corejs3/core-js/object/define-property';
|
|
2
|
+
import _Object$keys from '@babel/runtime-corejs3/core-js-stable/object/keys';
|
|
3
|
+
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols';
|
|
4
|
+
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/filter';
|
|
5
|
+
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptor';
|
|
6
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/for-each';
|
|
7
|
+
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptors';
|
|
8
|
+
import _Object$defineProperties from '@babel/runtime-corejs3/core-js-stable/object/define-properties';
|
|
9
|
+
import _Object$defineProperty from '@babel/runtime-corejs3/core-js-stable/object/define-property';
|
|
10
10
|
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
11
11
|
import { jsx, Fragment } from 'react/jsx-runtime';
|
|
12
12
|
import Table from '../Table.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// welcome to hoo hoo hoo
|
|
2
|
-
import _Object$keys from '@babel/runtime-corejs3/core-js/object/keys';
|
|
3
|
-
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js/object/get-own-property-symbols';
|
|
4
|
-
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js/instance/filter';
|
|
5
|
-
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptor';
|
|
6
|
-
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
7
|
-
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptors';
|
|
8
|
-
import _Object$defineProperties from '@babel/runtime-corejs3/core-js/object/define-properties';
|
|
9
|
-
import _Object$defineProperty from '@babel/runtime-corejs3/core-js/object/define-property';
|
|
2
|
+
import _Object$keys from '@babel/runtime-corejs3/core-js-stable/object/keys';
|
|
3
|
+
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols';
|
|
4
|
+
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/filter';
|
|
5
|
+
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptor';
|
|
6
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/for-each';
|
|
7
|
+
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptors';
|
|
8
|
+
import _Object$defineProperties from '@babel/runtime-corejs3/core-js-stable/object/define-properties';
|
|
9
|
+
import _Object$defineProperty from '@babel/runtime-corejs3/core-js-stable/object/define-property';
|
|
10
10
|
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
11
11
|
import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
|
|
12
12
|
import { jsx } from 'react/jsx-runtime';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// welcome to hoo hoo hoo
|
|
2
|
-
import _Object$keys from '@babel/runtime-corejs3/core-js/object/keys';
|
|
3
|
-
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js/object/get-own-property-symbols';
|
|
4
|
-
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js/instance/filter';
|
|
5
|
-
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptor';
|
|
6
|
-
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
7
|
-
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptors';
|
|
8
|
-
import _Object$defineProperties from '@babel/runtime-corejs3/core-js/object/define-properties';
|
|
9
|
-
import _Object$defineProperty from '@babel/runtime-corejs3/core-js/object/define-property';
|
|
2
|
+
import _Object$keys from '@babel/runtime-corejs3/core-js-stable/object/keys';
|
|
3
|
+
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols';
|
|
4
|
+
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/filter';
|
|
5
|
+
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptor';
|
|
6
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/for-each';
|
|
7
|
+
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptors';
|
|
8
|
+
import _Object$defineProperties from '@babel/runtime-corejs3/core-js-stable/object/define-properties';
|
|
9
|
+
import _Object$defineProperty from '@babel/runtime-corejs3/core-js-stable/object/define-property';
|
|
10
10
|
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
11
11
|
import _objectWithoutProperties from '@babel/runtime-corejs3/helpers/objectWithoutProperties';
|
|
12
12
|
import { jsx } from 'react/jsx-runtime';
|
package/es/DialogTable/hooks.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// welcome to hoo hoo hoo
|
|
2
|
-
import _Object$keys from '@babel/runtime-corejs3/core-js/object/keys';
|
|
3
|
-
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js/object/get-own-property-symbols';
|
|
4
|
-
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js/instance/filter';
|
|
5
|
-
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptor';
|
|
6
|
-
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
7
|
-
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js/object/get-own-property-descriptors';
|
|
8
|
-
import _Object$defineProperties from '@babel/runtime-corejs3/core-js/object/define-properties';
|
|
9
|
-
import _Object$defineProperty from '@babel/runtime-corejs3/core-js/object/define-property';
|
|
2
|
+
import _Object$keys from '@babel/runtime-corejs3/core-js-stable/object/keys';
|
|
3
|
+
import _Object$getOwnPropertySymbols from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols';
|
|
4
|
+
import _filterInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/filter';
|
|
5
|
+
import _Object$getOwnPropertyDescriptor from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptor';
|
|
6
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/for-each';
|
|
7
|
+
import _Object$getOwnPropertyDescriptors from '@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptors';
|
|
8
|
+
import _Object$defineProperties from '@babel/runtime-corejs3/core-js-stable/object/define-properties';
|
|
9
|
+
import _Object$defineProperty from '@babel/runtime-corejs3/core-js-stable/object/define-property';
|
|
10
10
|
import _slicedToArray from '@babel/runtime-corejs3/helpers/slicedToArray';
|
|
11
11
|
import _defineProperty from '@babel/runtime-corejs3/helpers/defineProperty';
|
|
12
12
|
import useHTable from '../hooks/useHTable.js';
|
package/es/GoTop/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// welcome to hoo hoo hoo
|
|
2
|
-
import _keysInstanceProperty from '@babel/runtime-corejs3/core-js/instance/keys';
|
|
3
|
-
import _Number$parseInt from '@babel/runtime-corejs3/core-js/number/parse-int';
|
|
4
|
-
import _Number$isNaN from '@babel/runtime-corejs3/core-js/number/is-nan';
|
|
2
|
+
import _keysInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/keys';
|
|
3
|
+
import _Number$parseInt from '@babel/runtime-corejs3/core-js-stable/number/parse-int';
|
|
4
|
+
import _Number$isNaN from '@babel/runtime-corejs3/core-js-stable/number/is-nan';
|
|
5
5
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
6
6
|
import { Typography, Row, Button } from 'antd';
|
|
7
7
|
import { useHTableContext } from '../context.js';
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
// welcome to hoo hoo hoo
|
|
2
|
-
import 'core-js/
|
|
3
|
-
import 'core-js/
|
|
4
|
-
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
5
|
-
import _indexOfInstanceProperty from '@babel/runtime-corejs3/core-js/instance/index-of';
|
|
2
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/for-each';
|
|
3
|
+
import _indexOfInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/index-of';
|
|
6
4
|
import { jsx } from 'react/jsx-runtime';
|
|
7
5
|
import { useClassName } from '../../hooks/index.js';
|
|
8
6
|
import { useMemo } from 'react';
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
// welcome to hoo hoo hoo
|
|
2
|
-
import 'core-js/
|
|
3
|
-
import 'core-js/modules/es.regexp.to-string.js';
|
|
4
|
-
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
2
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/for-each';
|
|
5
3
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
6
4
|
import { useClassName } from '../../hooks/index.js';
|
|
7
5
|
import { Typography, Row, Space, Checkbox } from 'antd';
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
// welcome to hoo hoo hoo
|
|
2
|
-
import 'core-js/
|
|
3
|
-
import 'core-js/modules/es.regexp.to-string.js';
|
|
4
|
-
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js/instance/for-each';
|
|
2
|
+
import _forEachInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/for-each';
|
|
5
3
|
import { useMemo } from 'react';
|
|
6
4
|
|
|
7
5
|
var useCheckKeys = function useCheckKeys(_ref) {
|