szld-libs 0.0.26 → 0.0.27

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.
Files changed (36) hide show
  1. package/dist/style.css +1 -1
  2. package/dist/szld-components.es.js +5 -5
  3. package/dist/szld-components.umd.js +32 -32
  4. package/es/components/BackHeader/index.css +3 -3
  5. package/es/components/BackHeader/index.js +3 -3
  6. package/es/components/CreateForm/index.css +6 -5
  7. package/es/components/CreateForm/index.js +4 -4
  8. package/es/components/Echarts/index.css +1 -1
  9. package/es/components/Echarts/index.js +1 -1
  10. package/es/components/EditTable/index.css +2 -2
  11. package/es/components/EditTable/index.js +1 -1
  12. package/es/components/Loading/index.css +3 -3
  13. package/es/components/Loading/index.js +4 -4
  14. package/es/components/SearchTable/index.css +1 -1
  15. package/es/components/SearchTable/index.js +1 -1
  16. package/es/components/VirtualTable/index.css +3 -3
  17. package/es/components/VirtualTable/index.js +4 -4
  18. package/es/components/WorkFlowNode/index.css +19 -19
  19. package/es/components/WorkFlowNode/index.js +13 -13
  20. package/lib/components/BackHeader/index.css +3 -3
  21. package/lib/components/BackHeader/index.js +3 -3
  22. package/lib/components/CreateForm/index.css +6 -5
  23. package/lib/components/CreateForm/index.js +4 -4
  24. package/lib/components/Echarts/index.css +1 -1
  25. package/lib/components/Echarts/index.js +1 -1
  26. package/lib/components/EditTable/index.css +2 -2
  27. package/lib/components/EditTable/index.js +1 -1
  28. package/lib/components/Loading/index.css +3 -3
  29. package/lib/components/Loading/index.js +4 -4
  30. package/lib/components/SearchTable/index.css +1 -1
  31. package/lib/components/SearchTable/index.js +1 -1
  32. package/lib/components/VirtualTable/index.css +3 -3
  33. package/lib/components/VirtualTable/index.js +4 -4
  34. package/lib/components/WorkFlowNode/index.css +19 -19
  35. package/lib/components/WorkFlowNode/index.js +13 -13
  36. package/package.json +1 -1
@@ -1,13 +1,13 @@
1
- .szld-main {
1
+ .backheader-module_main_cac53 {
2
2
  display: flex;
3
3
  align-items: center;
4
4
  justify-content: space-between;
5
5
  width: 100%;
6
6
  }
7
- .szld-main .szld-title {
7
+ .backheader-module_main_cac53 .backheader-module_title_33439 {
8
8
  margin: 0.5em 0;
9
9
  }
10
- .szld-main .szld-sub {
10
+ .backheader-module_main_cac53 .backheader-module_sub_1d015 {
11
11
  margin-left: 10px;
12
12
  font-weight: 400;
13
13
  font-size: 14px;
@@ -3,9 +3,9 @@ import { Space, Typography } from "antd";
3
3
  import { ArrowLeftOutlined } from "@ant-design/icons";
4
4
  import { useNavigate } from "react-router-dom";
5
5
  import classNames from "classnames";
6
- const main = "szld-main";
7
- const title = "szld-title";
8
- const sub = "szld-sub";
6
+ const main = "backheader-module_main_cac53";
7
+ const title = "backheader-module_title_33439";
8
+ const sub = "backheader-module_sub_1d015";
9
9
  const styles = {
10
10
  main,
11
11
  title,
@@ -1,4 +1,4 @@
1
- .szld-fieldModal {
1
+ .create-form-module_fieldModal_8bf3d {
2
2
  position: relative;
3
3
  display: inline-flex;
4
4
  width: 100%;
@@ -15,14 +15,15 @@
15
15
  border-radius: 6px;
16
16
  transition: all 0.2s;
17
17
  cursor: pointer;
18
+ white-space: nowrap;
18
19
  }
19
- .szld-fieldModal:hover {
20
+ .create-form-module_fieldModal_8bf3d:hover {
20
21
  border-color: #4096ff;
21
22
  }
22
- .szld-fieldModal .szld-content {
23
+ .create-form-module_fieldModal_8bf3d .create-form-module_content_61f84 {
23
24
  flex: 1;
24
25
  }
25
- .szld-fieldModal .szld-suffix {
26
+ .create-form-module_fieldModal_8bf3d .create-form-module_suffix_42205 {
26
27
  flex: none;
27
28
  font-size: 12px;
28
29
  color: rgba(0, 0, 0, 0.45);
@@ -33,7 +34,7 @@
33
34
  display: flex;
34
35
  align-items: center;
35
36
  }
36
- .szld-fieldModal .szld-placeholder {
37
+ .create-form-module_fieldModal_8bf3d .create-form-module_placeholder_90d6a {
37
38
  color: #d4d4d4;
38
39
  text-overflow: ellipsis;
39
40
  }
@@ -4,10 +4,10 @@ import { Form, Row, Col, Input, Space, Button, Cascader, TimePicker, DatePicker,
4
4
  import { CloseCircleFilled } from "@ant-design/icons";
5
5
  import _ from "lodash";
6
6
  import UploadFile from "../Upload";
7
- const fieldModal = "szld-fieldModal";
8
- const content = "szld-content";
9
- const suffix = "szld-suffix";
10
- const placeholder = "szld-placeholder";
7
+ const fieldModal = "create-form-module_fieldModal_8bf3d";
8
+ const content = "create-form-module_content_61f84";
9
+ const suffix = "create-form-module_suffix_42205";
10
+ const placeholder = "create-form-module_placeholder_90d6a";
11
11
  const styles = {
12
12
  fieldModal,
13
13
  content,
@@ -1,4 +1,4 @@
1
- .szld-main {
1
+ .echarts-module_main_3e0bc {
2
2
  width: 100%;
3
3
  height: 100%;
4
4
  position: relative;
@@ -6,7 +6,7 @@ import { LabelLayout, UniversalTransition } from "echarts/features";
6
6
  import { CanvasRenderer } from "echarts/renderers";
7
7
  import { useRef, useEffect } from "react";
8
8
  import { useDebounceFn } from "ahooks";
9
- const main = "szld-main";
9
+ const main = "echarts-module_main_3e0bc";
10
10
  const classes = {
11
11
  main
12
12
  };
@@ -1,9 +1,9 @@
1
- .szld-editableCellValueWrap {
1
+ .editable-module_editableCellValueWrap_3b3d9 {
2
2
  padding: 4px 11px;
3
3
  border: 1px solid #d9d9d9;
4
4
  border-radius: 6px;
5
5
  cursor: pointer;
6
6
  }
7
- [data-theme='dark'] .szld-editableCellValueWrap:hover {
7
+ [data-theme='dark'] .editable-module_editableCellValueWrap_3b3d9:hover {
8
8
  border: 1px solid #434343;
9
9
  }
@@ -2,7 +2,7 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Table, Form } from "antd";
3
3
  import React, { useRef, useContext } from "react";
4
4
  import { FormFields } from "../CreateForm";
5
- const editableCellValueWrap = "szld-editableCellValueWrap";
5
+ const editableCellValueWrap = "editable-module_editableCellValueWrap_3b3d9";
6
6
  const classes = {
7
7
  editableCellValueWrap
8
8
  };
@@ -1,4 +1,4 @@
1
- .szld-loadingWrapper .szld-loadingRoot {
1
+ .loading-module_loadingWrapper_46009 .loading-module_loadingRoot_d01da {
2
2
  background-color: rgba(0, 0, 0, 0.6);
3
3
  position: fixed;
4
4
  width: 100%;
@@ -6,7 +6,7 @@
6
6
  z-index: 1000;
7
7
  inset: 0;
8
8
  }
9
- .szld-loadingWrapper .szld-loadingBody {
9
+ .loading-module_loadingWrapper_46009 .loading-module_loadingBody_aa7bb {
10
10
  position: fixed;
11
11
  overflow: hidden;
12
12
  inset: 0;
@@ -15,7 +15,7 @@
15
15
  justify-content: center;
16
16
  z-index: 1000;
17
17
  }
18
- .szld-loadingWrapper .szld-loadingBody .szld-content {
18
+ .loading-module_loadingWrapper_46009 .loading-module_loadingBody_aa7bb .loading-module_content_8eaee {
19
19
  width: 100px;
20
20
  height: 100px;
21
21
  border-radius: 20px;
@@ -2,10 +2,10 @@ import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { LoadingOutlined } from "@ant-design/icons";
3
3
  import { Spin } from "antd";
4
4
  import ReactDOM from "react-dom/client";
5
- const loadingWrapper = "szld-loadingWrapper";
6
- const loadingRoot = "szld-loadingRoot";
7
- const loadingBody = "szld-loadingBody";
8
- const content = "szld-content";
5
+ const loadingWrapper = "loading-module_loadingWrapper_46009";
6
+ const loadingRoot = "loading-module_loadingRoot_d01da";
7
+ const loadingBody = "loading-module_loadingBody_aa7bb";
8
+ const content = "loading-module_content_8eaee";
9
9
  const classes = {
10
10
  loadingWrapper,
11
11
  loadingRoot,
@@ -1,3 +1,3 @@
1
- .szld-search {
1
+ .search-table-module_search_17add {
2
2
  margin-bottom: 20px;
3
3
  }
@@ -2,7 +2,7 @@ import { jsxs, Fragment, jsx } from "react/jsx-runtime";
2
2
  import { Table } from "antd";
3
3
  import classNames from "classnames";
4
4
  import CreateForm from "../CreateForm";
5
- const search = "szld-search";
5
+ const search = "search-table-module_search_17add";
6
6
  const classes = {
7
7
  search
8
8
  };
@@ -1,10 +1,10 @@
1
- .szld-grid .szld-cell {
1
+ .virtual-table-module_grid_609f6 .virtual-table-module_cell_da155 {
2
2
  padding: 0 16px;
3
3
  display: flex;
4
4
  align-items: center;
5
5
  border-bottom: 1px solid #f0f0f0;
6
6
  }
7
- .szld-grid .szld-editBox {
7
+ .virtual-table-module_grid_609f6 .virtual-table-module_editBox_46cb0 {
8
8
  width: 100%;
9
9
  display: flex;
10
10
  align-items: center;
@@ -13,6 +13,6 @@
13
13
  border-radius: 6px;
14
14
  cursor: pointer;
15
15
  }
16
- .szld-grid .szld-editForm {
16
+ .virtual-table-module_grid_609f6 .virtual-table-module_editForm_cd90b {
17
17
  width: 100%;
18
18
  }
@@ -4,10 +4,10 @@ import classNames from "classnames";
4
4
  import ResizeObserver from "rc-resize-observer";
5
5
  import { useState, useRef, useEffect } from "react";
6
6
  import { VariableSizeGrid } from "react-window";
7
- const grid = "szld-grid";
8
- const cell = "szld-cell";
9
- const editBox = "szld-editBox";
10
- const editForm = "szld-editForm";
7
+ const grid = "virtual-table-module_grid_609f6";
8
+ const cell = "virtual-table-module_cell_da155";
9
+ const editBox = "virtual-table-module_editBox_46cb0";
10
+ const editForm = "virtual-table-module_editForm_cd90b";
11
11
  const classes = {
12
12
  grid,
13
13
  cell,
@@ -1,16 +1,16 @@
1
- .szld-main {
1
+ .workflownode-module_main_dce7f {
2
2
  margin: 10px 0 0 0;
3
3
  list-style: none;
4
4
  }
5
- .szld-main .szld-item {
5
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c {
6
6
  padding-bottom: 20px;
7
7
  position: relative;
8
8
  margin-bottom: 4px;
9
9
  }
10
- .szld-main .szld-item:last-child .szld-tail {
10
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c:last-child .workflownode-module_tail_3cb51 {
11
11
  display: none;
12
12
  }
13
- .szld-main .szld-item .szld-tail {
13
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c .workflownode-module_tail_3cb51 {
14
14
  position: absolute;
15
15
  left: 8px;
16
16
  top: 0px;
@@ -19,14 +19,14 @@
19
19
  display: block;
20
20
  box-sizing: border-box;
21
21
  }
22
- .szld-main .szld-item .szld-tail::after {
22
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c .workflownode-module_tail_3cb51::after {
23
23
  content: '';
24
24
  display: inline-block;
25
25
  width: 1px;
26
26
  height: 100%;
27
27
  background-color: #cecece;
28
28
  }
29
- .szld-main .szld-item .szld-node {
29
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c .workflownode-module_node_005fd {
30
30
  position: absolute;
31
31
  border-radius: 50%;
32
32
  display: flex;
@@ -37,12 +37,12 @@
37
37
  width: 9px;
38
38
  height: 9px;
39
39
  }
40
- .szld-main .szld-item .szld-content {
40
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c .workflownode-module_content_8334f {
41
41
  position: relative;
42
42
  padding-left: 28px;
43
43
  top: -3px;
44
44
  }
45
- .szld-main .szld-item .szld-content .szld-collpase {
45
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c .workflownode-module_content_8334f .workflownode-module_collpase_f2468 {
46
46
  top: 0px;
47
47
  position: relative;
48
48
  display: flex;
@@ -51,10 +51,10 @@
51
51
  font-size: 12px;
52
52
  color: #999;
53
53
  }
54
- .szld-main .szld-item .szld-content .szld-collpase span {
54
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c .workflownode-module_content_8334f .workflownode-module_collpase_f2468 span {
55
55
  color: #1864ff;
56
56
  }
57
- .szld-main .szld-item .szld-content .szld-btn {
57
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c .workflownode-module_content_8334f .workflownode-module_btn_b0c06 {
58
58
  display: flex;
59
59
  align-items: center;
60
60
  gap: 8px;
@@ -62,20 +62,20 @@
62
62
  cursor: pointer;
63
63
  font-size: 12px;
64
64
  }
65
- .szld-main .szld-item .szld-content .szld-title {
65
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c .workflownode-module_content_8334f .workflownode-module_title_cb34c {
66
66
  font-size: 16px;
67
67
  font-weight: 400;
68
68
  color: #333;
69
69
  margin-bottom: 8px;
70
70
  }
71
- .szld-main .szld-item .szld-content .szld-dateWrapper {
71
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c .workflownode-module_content_8334f .workflownode-module_dateWrapper_94849 {
72
72
  display: flex;
73
73
  align-items: center;
74
74
  gap: 20px;
75
75
  font-size: 14px;
76
76
  color: #666;
77
77
  }
78
- .szld-main .szld-item .szld-content .szld-remark {
78
+ .workflownode-module_main_dce7f .workflownode-module_item_73d7c .workflownode-module_content_8334f .workflownode-module_remark_4f910 {
79
79
  margin-top: 10px;
80
80
  background: #ffffff;
81
81
  border: 4px solid #fafafa;
@@ -86,25 +86,25 @@
86
86
  padding: 20px;
87
87
  word-break: break-all;
88
88
  }
89
- .szld-main .szld-itemActive .szld-tail {
89
+ .workflownode-module_main_dce7f .workflownode-module_itemActive_2a29d .workflownode-module_tail_3cb51 {
90
90
  padding-top: 17px;
91
91
  }
92
- .szld-main .szld-itemActive .szld-node {
92
+ .workflownode-module_main_dce7f .workflownode-module_itemActive_2a29d .workflownode-module_node_005fd {
93
93
  background-color: #1864ff;
94
94
  width: 12px;
95
95
  height: 12px;
96
96
  left: 2px;
97
97
  box-shadow: 0 0 10px 2px #1864ff;
98
98
  }
99
- .szld-main .szld-itemActive .szld-content .szld-title {
99
+ .workflownode-module_main_dce7f .workflownode-module_itemActive_2a29d .workflownode-module_content_8334f .workflownode-module_title_cb34c {
100
100
  color: #1864ff;
101
101
  }
102
- .szld-main .szld-itemDone .szld-tail::after {
102
+ .workflownode-module_main_dce7f .workflownode-module_itemDone_489bc .workflownode-module_tail_3cb51::after {
103
103
  background-color: #1864ff;
104
104
  }
105
- .szld-main .szld-itemDone .szld-node {
105
+ .workflownode-module_main_dce7f .workflownode-module_itemDone_489bc .workflownode-module_node_005fd {
106
106
  background-color: #1864ff;
107
107
  }
108
- .szld-main .szld-itemUnDo .szld-node {
108
+ .workflownode-module_main_dce7f .workflownode-module_itemUnDo_2914c .workflownode-module_node_005fd {
109
109
  background-color: #cecece;
110
110
  }
@@ -3,19 +3,19 @@ import { Modal } from "antd";
3
3
  import classNames from "classnames";
4
4
  import { useState, useMemo } from "react";
5
5
  import { DownOutlined, UpOutlined } from "@ant-design/icons";
6
- const main = "szld-main";
7
- const item = "szld-item";
8
- const tail = "szld-tail";
9
- const node = "szld-node";
10
- const content = "szld-content";
11
- const collpase = "szld-collpase";
12
- const btn = "szld-btn";
13
- const title = "szld-title";
14
- const dateWrapper = "szld-dateWrapper";
15
- const remark = "szld-remark";
16
- const itemActive = "szld-itemActive";
17
- const itemDone = "szld-itemDone";
18
- const itemUnDo = "szld-itemUnDo";
6
+ const main = "workflownode-module_main_dce7f";
7
+ const item = "workflownode-module_item_73d7c";
8
+ const tail = "workflownode-module_tail_3cb51";
9
+ const node = "workflownode-module_node_005fd";
10
+ const content = "workflownode-module_content_8334f";
11
+ const collpase = "workflownode-module_collpase_f2468";
12
+ const btn = "workflownode-module_btn_b0c06";
13
+ const title = "workflownode-module_title_cb34c";
14
+ const dateWrapper = "workflownode-module_dateWrapper_94849";
15
+ const remark = "workflownode-module_remark_4f910";
16
+ const itemActive = "workflownode-module_itemActive_2a29d";
17
+ const itemDone = "workflownode-module_itemDone_489bc";
18
+ const itemUnDo = "workflownode-module_itemUnDo_2914c";
19
19
  const styles = {
20
20
  main,
21
21
  item,
@@ -1,13 +1,13 @@
1
- .szld-main {
1
+ .backheader-module_main_cac53 {
2
2
  display: flex;
3
3
  align-items: center;
4
4
  justify-content: space-between;
5
5
  width: 100%;
6
6
  }
7
- .szld-main .szld-title {
7
+ .backheader-module_main_cac53 .backheader-module_title_33439 {
8
8
  margin: 0.5em 0;
9
9
  }
10
- .szld-main .szld-sub {
10
+ .backheader-module_main_cac53 .backheader-module_sub_1d015 {
11
11
  margin-left: 10px;
12
12
  font-weight: 400;
13
13
  font-size: 14px;
@@ -4,9 +4,9 @@ const antd = require("antd");
4
4
  const icons = require("@ant-design/icons");
5
5
  const reactRouterDom = require("react-router-dom");
6
6
  const classNames = require("classnames");
7
- const main = "szld-main";
8
- const title = "szld-title";
9
- const sub = "szld-sub";
7
+ const main = "backheader-module_main_cac53";
8
+ const title = "backheader-module_title_33439";
9
+ const sub = "backheader-module_sub_1d015";
10
10
  const styles = {
11
11
  main,
12
12
  title,
@@ -1,4 +1,4 @@
1
- .szld-fieldModal {
1
+ .create-form-module_fieldModal_8bf3d {
2
2
  position: relative;
3
3
  display: inline-flex;
4
4
  width: 100%;
@@ -15,14 +15,15 @@
15
15
  border-radius: 6px;
16
16
  transition: all 0.2s;
17
17
  cursor: pointer;
18
+ white-space: nowrap;
18
19
  }
19
- .szld-fieldModal:hover {
20
+ .create-form-module_fieldModal_8bf3d:hover {
20
21
  border-color: #4096ff;
21
22
  }
22
- .szld-fieldModal .szld-content {
23
+ .create-form-module_fieldModal_8bf3d .create-form-module_content_61f84 {
23
24
  flex: 1;
24
25
  }
25
- .szld-fieldModal .szld-suffix {
26
+ .create-form-module_fieldModal_8bf3d .create-form-module_suffix_42205 {
26
27
  flex: none;
27
28
  font-size: 12px;
28
29
  color: rgba(0, 0, 0, 0.45);
@@ -33,7 +34,7 @@
33
34
  display: flex;
34
35
  align-items: center;
35
36
  }
36
- .szld-fieldModal .szld-placeholder {
37
+ .create-form-module_fieldModal_8bf3d .create-form-module_placeholder_90d6a {
37
38
  color: #d4d4d4;
38
39
  text-overflow: ellipsis;
39
40
  }
@@ -6,10 +6,10 @@ const antd = require("antd");
6
6
  const icons = require("@ant-design/icons");
7
7
  const _ = require("lodash");
8
8
  const UploadFile = require("../Upload");
9
- const fieldModal = "szld-fieldModal";
10
- const content = "szld-content";
11
- const suffix = "szld-suffix";
12
- const placeholder = "szld-placeholder";
9
+ const fieldModal = "create-form-module_fieldModal_8bf3d";
10
+ const content = "create-form-module_content_61f84";
11
+ const suffix = "create-form-module_suffix_42205";
12
+ const placeholder = "create-form-module_placeholder_90d6a";
13
13
  const styles = {
14
14
  fieldModal,
15
15
  content,
@@ -1,4 +1,4 @@
1
- .szld-main {
1
+ .echarts-module_main_3e0bc {
2
2
  width: 100%;
3
3
  height: 100%;
4
4
  position: relative;
@@ -24,7 +24,7 @@ function _interopNamespaceDefault(e) {
24
24
  return Object.freeze(n);
25
25
  }
26
26
  const echarts__namespace = /* @__PURE__ */ _interopNamespaceDefault(echarts);
27
- const main = "szld-main";
27
+ const main = "echarts-module_main_3e0bc";
28
28
  const classes = {
29
29
  main
30
30
  };
@@ -1,9 +1,9 @@
1
- .szld-editableCellValueWrap {
1
+ .editable-module_editableCellValueWrap_3b3d9 {
2
2
  padding: 4px 11px;
3
3
  border: 1px solid #d9d9d9;
4
4
  border-radius: 6px;
5
5
  cursor: pointer;
6
6
  }
7
- [data-theme='dark'] .szld-editableCellValueWrap:hover {
7
+ [data-theme='dark'] .editable-module_editableCellValueWrap_3b3d9:hover {
8
8
  border: 1px solid #434343;
9
9
  }
@@ -3,7 +3,7 @@ const jsxRuntime = require("react/jsx-runtime");
3
3
  const antd = require("antd");
4
4
  const React = require("react");
5
5
  const CreateForm = require("../CreateForm");
6
- const editableCellValueWrap = "szld-editableCellValueWrap";
6
+ const editableCellValueWrap = "editable-module_editableCellValueWrap_3b3d9";
7
7
  const classes = {
8
8
  editableCellValueWrap
9
9
  };
@@ -1,4 +1,4 @@
1
- .szld-loadingWrapper .szld-loadingRoot {
1
+ .loading-module_loadingWrapper_46009 .loading-module_loadingRoot_d01da {
2
2
  background-color: rgba(0, 0, 0, 0.6);
3
3
  position: fixed;
4
4
  width: 100%;
@@ -6,7 +6,7 @@
6
6
  z-index: 1000;
7
7
  inset: 0;
8
8
  }
9
- .szld-loadingWrapper .szld-loadingBody {
9
+ .loading-module_loadingWrapper_46009 .loading-module_loadingBody_aa7bb {
10
10
  position: fixed;
11
11
  overflow: hidden;
12
12
  inset: 0;
@@ -15,7 +15,7 @@
15
15
  justify-content: center;
16
16
  z-index: 1000;
17
17
  }
18
- .szld-loadingWrapper .szld-loadingBody .szld-content {
18
+ .loading-module_loadingWrapper_46009 .loading-module_loadingBody_aa7bb .loading-module_content_8eaee {
19
19
  width: 100px;
20
20
  height: 100px;
21
21
  border-radius: 20px;
@@ -3,10 +3,10 @@ const jsxRuntime = require("react/jsx-runtime");
3
3
  const icons = require("@ant-design/icons");
4
4
  const antd = require("antd");
5
5
  const ReactDOM = require("react-dom/client");
6
- const loadingWrapper = "szld-loadingWrapper";
7
- const loadingRoot = "szld-loadingRoot";
8
- const loadingBody = "szld-loadingBody";
9
- const content = "szld-content";
6
+ const loadingWrapper = "loading-module_loadingWrapper_46009";
7
+ const loadingRoot = "loading-module_loadingRoot_d01da";
8
+ const loadingBody = "loading-module_loadingBody_aa7bb";
9
+ const content = "loading-module_content_8eaee";
10
10
  const classes = {
11
11
  loadingWrapper,
12
12
  loadingRoot,
@@ -1,3 +1,3 @@
1
- .szld-search {
1
+ .search-table-module_search_17add {
2
2
  margin-bottom: 20px;
3
3
  }
@@ -3,7 +3,7 @@ const jsxRuntime = require("react/jsx-runtime");
3
3
  const antd = require("antd");
4
4
  const classNames = require("classnames");
5
5
  const CreateForm = require("../CreateForm");
6
- const search = "szld-search";
6
+ const search = "search-table-module_search_17add";
7
7
  const classes = {
8
8
  search
9
9
  };
@@ -1,10 +1,10 @@
1
- .szld-grid .szld-cell {
1
+ .virtual-table-module_grid_609f6 .virtual-table-module_cell_da155 {
2
2
  padding: 0 16px;
3
3
  display: flex;
4
4
  align-items: center;
5
5
  border-bottom: 1px solid #f0f0f0;
6
6
  }
7
- .szld-grid .szld-editBox {
7
+ .virtual-table-module_grid_609f6 .virtual-table-module_editBox_46cb0 {
8
8
  width: 100%;
9
9
  display: flex;
10
10
  align-items: center;
@@ -13,6 +13,6 @@
13
13
  border-radius: 6px;
14
14
  cursor: pointer;
15
15
  }
16
- .szld-grid .szld-editForm {
16
+ .virtual-table-module_grid_609f6 .virtual-table-module_editForm_cd90b {
17
17
  width: 100%;
18
18
  }
@@ -5,10 +5,10 @@ const classNames = require("classnames");
5
5
  const ResizeObserver = require("rc-resize-observer");
6
6
  const react = require("react");
7
7
  const reactWindow = require("react-window");
8
- const grid = "szld-grid";
9
- const cell = "szld-cell";
10
- const editBox = "szld-editBox";
11
- const editForm = "szld-editForm";
8
+ const grid = "virtual-table-module_grid_609f6";
9
+ const cell = "virtual-table-module_cell_da155";
10
+ const editBox = "virtual-table-module_editBox_46cb0";
11
+ const editForm = "virtual-table-module_editForm_cd90b";
12
12
  const classes = {
13
13
  grid,
14
14
  cell,