vxe-gantt 0.0.2 → 3.0.0-beta.0

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 (94) hide show
  1. package/README.md +18 -24
  2. package/es/components.js +3 -2
  3. package/es/gantt/src/gantt-body.js +137 -0
  4. package/es/gantt/src/gantt-chart.js +125 -0
  5. package/es/gantt/src/gantt-header.js +97 -0
  6. package/es/gantt/src/gantt-view.js +820 -0
  7. package/es/gantt/src/gantt.js +1897 -43
  8. package/es/gantt/src/util.js +9 -0
  9. package/es/gantt/style.css +624 -0
  10. package/es/gantt/style.min.css +1 -0
  11. package/es/index.esm.js +5 -2
  12. package/es/style.css +1 -0
  13. package/es/style.min.css +1 -0
  14. package/es/ui/index.js +55 -5
  15. package/es/ui/src/comp.js +1 -2
  16. package/es/ui/src/dom.js +44 -105
  17. package/es/ui/src/log.js +3 -2
  18. package/es/ui/src/utils.js +4 -3
  19. package/es/ui/src/vn.js +1 -32
  20. package/es/vxe-gantt/style.css +624 -0
  21. package/es/vxe-gantt/style.min.css +1 -0
  22. package/helper/vetur/attributes.json +1 -1
  23. package/helper/vetur/tags.json +1 -1
  24. package/lib/components.js +20 -19
  25. package/lib/components.min.js +1 -1
  26. package/lib/gantt/index.js +3 -3
  27. package/lib/gantt/index.min.js +1 -1
  28. package/lib/gantt/src/gantt-body.js +140 -0
  29. package/lib/gantt/src/gantt-body.min.js +1 -0
  30. package/lib/gantt/src/gantt-chart.js +134 -0
  31. package/lib/gantt/src/gantt-chart.min.js +1 -0
  32. package/lib/gantt/src/gantt-header.js +97 -0
  33. package/lib/gantt/src/gantt-header.min.js +1 -0
  34. package/lib/gantt/src/gantt-view.js +808 -0
  35. package/lib/gantt/src/gantt-view.min.js +1 -0
  36. package/lib/gantt/src/gantt.js +2045 -48
  37. package/lib/gantt/src/gantt.min.js +1 -1
  38. package/lib/gantt/src/util.js +16 -0
  39. package/lib/gantt/src/util.min.js +1 -0
  40. package/lib/gantt/style/style.css +624 -0
  41. package/lib/gantt/style/style.min.css +1 -0
  42. package/lib/index.common.js +12 -7
  43. package/lib/index.umd.js +11484 -235
  44. package/lib/index.umd.min.js +1 -1
  45. package/lib/style.css +1 -0
  46. package/lib/style.min.css +1 -0
  47. package/lib/ui/index.js +54 -14
  48. package/lib/ui/index.min.js +1 -1
  49. package/lib/ui/src/comp.js +3 -2
  50. package/lib/ui/src/comp.min.js +1 -1
  51. package/lib/ui/src/dom.js +78 -138
  52. package/lib/ui/src/dom.min.js +1 -1
  53. package/lib/ui/src/log.js +4 -3
  54. package/lib/ui/src/log.min.js +1 -1
  55. package/lib/ui/src/utils.js +5 -4
  56. package/lib/ui/src/utils.min.js +1 -1
  57. package/lib/ui/src/vn.js +1 -43
  58. package/lib/ui/src/vn.min.js +0 -1
  59. package/lib/vxe-gantt/index.js +4 -2
  60. package/lib/vxe-gantt/index.min.js +1 -1
  61. package/lib/vxe-gantt/style/style.css +624 -0
  62. package/lib/vxe-gantt/style/style.min.css +1 -0
  63. package/lib/vxe-ui/index.js +4 -2
  64. package/lib/vxe-ui/index.min.js +1 -1
  65. package/package.json +13 -13
  66. package/packages/components.ts +8 -5
  67. package/packages/gantt/index.ts +2 -2
  68. package/packages/gantt/src/gantt-body.ts +155 -0
  69. package/packages/gantt/src/gantt-chart.ts +143 -0
  70. package/packages/gantt/src/gantt-header.ts +109 -0
  71. package/packages/gantt/src/gantt-view.ts +908 -0
  72. package/packages/gantt/src/gantt.ts +2048 -46
  73. package/packages/gantt/src/util.ts +12 -0
  74. package/packages/index.ts +6 -2
  75. package/packages/ui/index.ts +56 -4
  76. package/packages/ui/src/comp.ts +2 -2
  77. package/packages/ui/src/dom.ts +53 -110
  78. package/packages/ui/src/log.ts +4 -2
  79. package/packages/ui/src/utils.ts +5 -3
  80. package/packages/ui/src/vn.ts +0 -37
  81. package/styles/components/gantt-module/all.scss +1 -0
  82. package/styles/components/gantt-module/gantt-chart.scss +65 -0
  83. package/styles/components/gantt.scss +591 -0
  84. package/styles/helpers/baseMixin.scss +96 -0
  85. package/styles/helpers/baseVar.scss +4 -0
  86. package/styles/helpers/placement.scss +39 -0
  87. package/styles/theme/base.scss +11 -0
  88. package/styles/theme/dark.scss +5 -0
  89. package/styles/theme/light.scss +5 -0
  90. package/types/all.d.ts +3 -3
  91. package/types/index.d.ts +2 -2
  92. package/README.en.md +0 -72
  93. package/README.ja-JP.md +0 -72
  94. package/README.zh-TW.md +0 -73
@@ -0,0 +1,624 @@
1
+ @charset "UTF-8";
2
+ .vxe-gantt-view--chart-wrapper {
3
+ position: absolute;
4
+ top: 0;
5
+ left: 0;
6
+ pointer-events: none;
7
+ }
8
+
9
+ .vxe-gantt-view--chart-row {
10
+ position: relative;
11
+ }
12
+ .vxe-gantt-view--chart-row.is--round > .vxe-gantt-view--chart-bar {
13
+ border-radius: var(--vxe-ui-gantt-view-task-bar-border-radius);
14
+ }
15
+ .vxe-gantt-view--chart-row.is--round > .vxe-gantt-view--chart-bar:hover::after {
16
+ border-radius: var(--vxe-ui-gantt-view-task-bar-border-radius);
17
+ }
18
+ .vxe-gantt-view--chart-row.is--round > .vxe-gantt-view--chart-bar > .vxe-gantt-view--chart-progress {
19
+ border-radius: var(--vxe-ui-gantt-view-task-bar-border-radius) 0 0 var(--vxe-ui-gantt-view-task-bar-border-radius);
20
+ }
21
+
22
+ .vxe-gantt-view--chart-bar {
23
+ display: flex;
24
+ flex-direction: row;
25
+ align-items: center;
26
+ position: absolute;
27
+ top: 50%;
28
+ left: 0;
29
+ color: #ffffff;
30
+ transform: translateY(-50%);
31
+ height: var(--vxe-ui-gantt-view-chart-bar-height);
32
+ background-color: var(--vxe-ui-gantt-view-task-bar-background-color);
33
+ pointer-events: all;
34
+ }
35
+ .vxe-gantt-view--chart-bar:hover::after {
36
+ content: "";
37
+ position: absolute;
38
+ top: 0;
39
+ left: 0;
40
+ width: 100%;
41
+ height: 100%;
42
+ background-color: rgba(0, 0, 0, 0.1);
43
+ }
44
+
45
+ .vxe-gantt-view--chart-progress {
46
+ flex-shrink: 0;
47
+ width: 0;
48
+ height: 100%;
49
+ text-align: left;
50
+ background-color: var(--vxe-ui-gantt-view-task-bar-completed-background-color);
51
+ overflow: hidden;
52
+ text-overflow: ellipsis;
53
+ white-space: nowrap;
54
+ }
55
+
56
+ .vxe-gantt-view--chart-content {
57
+ position: absolute;
58
+ width: 100%;
59
+ overflow: hidden;
60
+ text-overflow: ellipsis;
61
+ white-space: nowrap;
62
+ font-size: 0.9em;
63
+ padding: 0 0.6em;
64
+ }
65
+
66
+ .vxe-gantt {
67
+ position: relative;
68
+ overflow: auto;
69
+ display: flex;
70
+ flex-direction: column;
71
+ }
72
+ .vxe-gantt.is--loading:before {
73
+ content: "";
74
+ position: absolute;
75
+ top: 0;
76
+ left: 0;
77
+ width: 100%;
78
+ height: 100%;
79
+ z-index: 99;
80
+ -webkit-user-select: none;
81
+ -moz-user-select: none;
82
+ -ms-user-select: none;
83
+ user-select: none;
84
+ background-color: var(--vxe-ui-loading-background-color);
85
+ }
86
+ .vxe-gantt.is--loading > .vxe-gantt-view .vxe-loading {
87
+ background-color: transparent;
88
+ }
89
+ .vxe-gantt.is--maximize {
90
+ position: fixed;
91
+ top: 0;
92
+ left: 0;
93
+ width: 100%;
94
+ height: 100%;
95
+ padding: 0.5em 1em;
96
+ background-color: var(--vxe-ui-layout-background-color);
97
+ }
98
+ .vxe-gantt.is--split-drag {
99
+ cursor: col-resize;
100
+ }
101
+ .vxe-gantt.is--split-drag .vxe-gantt--table-wrapper::after,
102
+ .vxe-gantt.is--split-drag .vxe-gantt--view-wrapper::after {
103
+ content: "";
104
+ position: absolute;
105
+ top: 0;
106
+ left: 0;
107
+ width: 100%;
108
+ height: 100%;
109
+ z-index: 1;
110
+ background: transparent;
111
+ -webkit-user-select: none;
112
+ -moz-user-select: none;
113
+ -ms-user-select: none;
114
+ user-select: none;
115
+ }
116
+ .vxe-gantt .vxe-gantt--form-wrapper,
117
+ .vxe-gantt .vxe-gantt--top-wrapper,
118
+ .vxe-gantt .vxe-gantt--bottom-wrapper {
119
+ position: relative;
120
+ }
121
+ .vxe-gantt .vxe-gantt--gantt-container {
122
+ position: relative;
123
+ display: flex;
124
+ flex-direction: row;
125
+ }
126
+ .vxe-gantt .vxe-gantt--left-wrapper,
127
+ .vxe-gantt .vxe-gantt--right-wrapper {
128
+ flex-shrink: 0;
129
+ overflow: auto;
130
+ outline: 0;
131
+ }
132
+ .vxe-gantt .vxe-gantt--table-wrapper,
133
+ .vxe-gantt .vxe-gantt--view-wrapper {
134
+ display: none;
135
+ position: relative;
136
+ flex-grow: 1;
137
+ overflow: hidden;
138
+ }
139
+ .vxe-gantt .vxe-gantt--view-split-bar {
140
+ flex-shrink: 0;
141
+ width: var(--vxe-ui-gantt-view-split-bar-width);
142
+ background-color: var(--vxe-ui-gantt-view-split-bar-background-color);
143
+ }
144
+ .vxe-gantt .vxe-gantt--view-split-bar.is--resize {
145
+ cursor: col-resize;
146
+ }
147
+ .vxe-gantt.show--left .vxe-gantt--table-wrapper {
148
+ display: block;
149
+ }
150
+ .vxe-gantt.show--left.show--right .vxe-gantt--table-wrapper {
151
+ flex-grow: unset;
152
+ flex-shrink: 0;
153
+ width: var(--vxe-ui-gantt-view-table-default-width);
154
+ }
155
+ .vxe-gantt.show--right .vxe-gantt--view-wrapper {
156
+ display: block;
157
+ }
158
+
159
+ .vxe-gantt--layout-body-wrapper {
160
+ display: flex;
161
+ flex-direction: row;
162
+ overflow: auto;
163
+ flex-grow: 1;
164
+ }
165
+
166
+ .vxe-gantt--layout-body-content-wrapper {
167
+ flex-grow: 1;
168
+ overflow: hidden;
169
+ }
170
+
171
+ .vxe-gantt--layout-header-wrapper,
172
+ .vxe-gantt--layout-footer-wrapper,
173
+ .vxe-gantt--layout-aside-left-wrapper,
174
+ .vxe-gantt--layout-aside-left-wrapper {
175
+ flex-shrink: 0;
176
+ overflow: auto;
177
+ }
178
+
179
+ /*边框线*/
180
+ .vxe-gantt--border-line {
181
+ position: absolute;
182
+ top: 0;
183
+ left: 0;
184
+ width: 100%;
185
+ height: 100%;
186
+ z-index: 10;
187
+ pointer-events: none;
188
+ border: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
189
+ }
190
+
191
+ .vxe-gantt.border--default .vxe-gantt-view--header-wrapper, .vxe-gantt.border--full .vxe-gantt-view--header-wrapper, .vxe-gantt.border--outer .vxe-gantt-view--header-wrapper {
192
+ background-color: var(--vxe-ui-table-header-background-color);
193
+ }
194
+ .vxe-gantt.border--full .vxe-gantt-view--header-column,
195
+ .vxe-gantt.border--full .vxe-gantt-view--body-column,
196
+ .vxe-gantt.border--full .vxe-gantt-view--footer-column {
197
+ background-image: linear-gradient(var(--vxe-ui-table-border-color), var(--vxe-ui-table-border-color)), linear-gradient(var(--vxe-ui-table-border-color), var(--vxe-ui-table-border-color));
198
+ background-repeat: no-repeat;
199
+ background-size: var(--vxe-ui-table-border-width) 100%, 100% var(--vxe-ui-table-border-width);
200
+ background-position: right top, right bottom;
201
+ }
202
+ .vxe-gantt.border--default .vxe-gantt-view--scroll-y-top-corner::before,
203
+ .vxe-gantt.border--default .vxe-gantt-view--scroll-y-bottom-corner::before, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-top-corner::before,
204
+ .vxe-gantt.border--full .vxe-gantt-view--scroll-y-bottom-corner::before, .vxe-gantt.border--outer .vxe-gantt-view--scroll-y-top-corner::before,
205
+ .vxe-gantt.border--outer .vxe-gantt-view--scroll-y-bottom-corner::before, .vxe-gantt.border--inner .vxe-gantt-view--scroll-y-top-corner::before,
206
+ .vxe-gantt.border--inner .vxe-gantt-view--scroll-y-bottom-corner::before {
207
+ content: "";
208
+ position: absolute;
209
+ top: 0;
210
+ left: 0;
211
+ width: 100%;
212
+ height: 100%;
213
+ z-index: 1;
214
+ border-width: 0;
215
+ border-style: solid;
216
+ border-color: var(--vxe-ui-table-border-color);
217
+ }
218
+ .vxe-gantt.border--default .vxe-gantt-view--scroll-y-top-corner::before, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-top-corner::before, .vxe-gantt.border--outer .vxe-gantt-view--scroll-y-top-corner::before, .vxe-gantt.border--inner .vxe-gantt-view--scroll-y-top-corner::before {
219
+ border-bottom-width: var(--vxe-ui-table-border-width);
220
+ }
221
+ .vxe-gantt.border--default .vxe-gantt-view--scroll-y-bottom-corner, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-bottom-corner, .vxe-gantt.border--outer .vxe-gantt-view--scroll-y-bottom-corner, .vxe-gantt.border--inner .vxe-gantt-view--scroll-y-bottom-corner {
222
+ border-top: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
223
+ }
224
+ .vxe-gantt.border--default .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--full .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--outer .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--inner .vxe-gantt-view--scroll-x-wrapper::after {
225
+ content: "";
226
+ position: absolute;
227
+ left: 0;
228
+ width: 100%;
229
+ height: 100%;
230
+ z-index: 1;
231
+ pointer-events: none;
232
+ }
233
+ .vxe-gantt.border--default.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--full.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--outer.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--inner.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after {
234
+ top: 0;
235
+ border-bottom: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
236
+ }
237
+ .vxe-gantt.border--default.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--full.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--outer.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after, .vxe-gantt.border--inner.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after {
238
+ bottom: 0;
239
+ height: calc(100% + var(--vxe-ui-table-border-width));
240
+ border-top: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
241
+ }
242
+ .vxe-gantt.border--default .vxe-gantt-view--scroll-y-top-corner::before, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-top-corner::before {
243
+ border-left-width: var(--vxe-ui-table-border-width);
244
+ border-right-width: var(--vxe-ui-table-border-width);
245
+ }
246
+ .vxe-gantt.border--default .vxe-gantt-view--scroll-y-bottom-corner::before, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-bottom-corner::before {
247
+ border-left-width: var(--vxe-ui-table-border-width);
248
+ border-right-width: var(--vxe-ui-table-border-width);
249
+ }
250
+ .vxe-gantt.border--default.sy-pos--right .vxe-gantt-view--scroll-y-top-corner::before,
251
+ .vxe-gantt.border--default.sy-pos--right .vxe-gantt-view--scroll-y-bottom-corner::before, .vxe-gantt.border--full.sy-pos--right .vxe-gantt-view--scroll-y-top-corner::before,
252
+ .vxe-gantt.border--full.sy-pos--right .vxe-gantt-view--scroll-y-bottom-corner::before {
253
+ width: calc(100% + 1px);
254
+ left: -1px;
255
+ }
256
+ .vxe-gantt.border--default .vxe-gantt-view--scroll-y-wrapper::after, .vxe-gantt.border--full .vxe-gantt-view--scroll-y-wrapper::after {
257
+ content: "";
258
+ position: absolute;
259
+ top: 0;
260
+ width: 100%;
261
+ height: 100%;
262
+ z-index: 1;
263
+ pointer-events: none;
264
+ }
265
+ .vxe-gantt.border--default.sy-pos--left .vxe-gantt-view--scroll-y-wrapper::after, .vxe-gantt.border--full.sy-pos--left .vxe-gantt-view--scroll-y-wrapper::after {
266
+ left: 0;
267
+ border-right: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
268
+ }
269
+ .vxe-gantt.border--default.sy-pos--right .vxe-gantt-view--scroll-y-wrapper::after, .vxe-gantt.border--full.sy-pos--right .vxe-gantt-view--scroll-y-wrapper::after {
270
+ right: 0;
271
+ width: calc(100% + var(--vxe-ui-table-border-width));
272
+ border-left: var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color);
273
+ }
274
+
275
+ /*分割条*/
276
+ .vxe-gantt--view-split-bar {
277
+ position: relative;
278
+ -webkit-user-select: none;
279
+ -moz-user-select: none;
280
+ -ms-user-select: none;
281
+ user-select: none;
282
+ }
283
+
284
+ .vxe-gantt--view-split-bar-handle {
285
+ position: absolute;
286
+ top: 0;
287
+ left: 0;
288
+ width: 100%;
289
+ height: 100%;
290
+ z-index: 13;
291
+ }
292
+
293
+ .vxe-gantt--view-split-bar-btn-wrapper {
294
+ display: flex;
295
+ flex-direction: column;
296
+ align-items: center;
297
+ position: absolute;
298
+ left: 50%;
299
+ top: 50%;
300
+ transform: translate(-50%, -50%);
301
+ z-index: 15;
302
+ pointer-events: none;
303
+ }
304
+ .vxe-gantt--view-split-bar-btn-wrapper > div {
305
+ margin-top: 1em;
306
+ }
307
+ .vxe-gantt--view-split-bar-btn-wrapper > div:first-child {
308
+ margin-top: 0;
309
+ }
310
+
311
+ .vxe-gantt--view-split-bar-left-btn,
312
+ .vxe-gantt--view-split-bar-right-btn {
313
+ display: flex;
314
+ flex-direction: row;
315
+ align-items: center;
316
+ justify-content: center;
317
+ font-size: 0.5em;
318
+ height: var(--vxe-ui-gantt-view-split-bar-height);
319
+ width: var(--vxe-ui-gantt-view-split-bar-width);
320
+ color: var(--vxe-ui-layout-background-color);
321
+ border-radius: var(--vxe-ui-base-border-radius);
322
+ background-color: var(--vxe-ui-gantt-view-handle-background-color);
323
+ border: 1px solid var(--vxe-ui-input-border-color);
324
+ pointer-events: all;
325
+ cursor: pointer;
326
+ -webkit-user-select: none;
327
+ -moz-user-select: none;
328
+ -ms-user-select: none;
329
+ user-select: none;
330
+ transition: all 0.1s ease-in-out;
331
+ }
332
+ .vxe-gantt--view-split-bar-left-btn:hover,
333
+ .vxe-gantt--view-split-bar-right-btn:hover {
334
+ background-color: var(--vxe-ui-font-primary-lighten-color);
335
+ }
336
+ .vxe-gantt--view-split-bar-left-btn:active,
337
+ .vxe-gantt--view-split-bar-right-btn:active {
338
+ transform: scale(0.9);
339
+ }
340
+
341
+ .vxe-gantt--resizable-split-tip {
342
+ display: none;
343
+ position: absolute;
344
+ top: 0;
345
+ left: 0;
346
+ width: 1px;
347
+ height: 100%;
348
+ z-index: 18;
349
+ pointer-events: none;
350
+ -webkit-user-select: none;
351
+ -moz-user-select: none;
352
+ -ms-user-select: none;
353
+ user-select: none;
354
+ cursor: col-resize;
355
+ }
356
+ .vxe-gantt--resizable-split-tip:before {
357
+ content: "";
358
+ display: block;
359
+ height: 100%;
360
+ background-color: var(--vxe-ui-table-resizable-drag-line-color);
361
+ }
362
+
363
+ .vxe-gantt--resizable-split-tip-number {
364
+ position: absolute;
365
+ top: 0;
366
+ left: 0;
367
+ -webkit-user-select: none;
368
+ -moz-user-select: none;
369
+ -ms-user-select: none;
370
+ user-select: none;
371
+ pointer-events: none;
372
+ }
373
+
374
+ .vxe-gantt--resizable-split-number-left,
375
+ .vxe-gantt--resizable-split-number-right {
376
+ position: absolute;
377
+ padding: 0.25em 0.25em;
378
+ font-size: 12px;
379
+ border-radius: var(--vxe-ui-border-radius);
380
+ white-space: nowrap;
381
+ color: #ffffff;
382
+ background-color: var(--vxe-ui-table-resizable-drag-line-color);
383
+ }
384
+
385
+ .vxe-gantt--resizable-split-number-left {
386
+ right: 0;
387
+ }
388
+
389
+ .vxe-gantt--resizable-split-number-right {
390
+ left: 1px;
391
+ }
392
+
393
+ /*滚动条*/
394
+ .vxe-gantt.is--loading > .vxe-gantt-view--scroll-x-virtual {
395
+ visibility: hidden;
396
+ }
397
+ .vxe-gantt.is--loading > .vxe-gantt-view--layout-wrapper > .vxe-gantt-view--scroll-y-virtual {
398
+ visibility: hidden;
399
+ }
400
+ .vxe-gantt .vxe-gantt-view--scroll-x-virtual {
401
+ height: 0;
402
+ }
403
+ .vxe-gantt .vxe-gantt-view--scroll-y-virtual {
404
+ width: 0;
405
+ }
406
+ .vxe-gantt .vxe-gantt-view--scroll-x-virtual,
407
+ .vxe-gantt .vxe-gantt-view--scroll-y-virtual {
408
+ visibility: hidden;
409
+ position: relative;
410
+ flex-shrink: 0;
411
+ z-index: 7;
412
+ }
413
+ .vxe-gantt .vxe-gantt-view--scroll-x-handle,
414
+ .vxe-gantt .vxe-gantt-view--scroll-y-handle,
415
+ .vxe-gantt .vxe-gantt-view--scroll-x-wrapper,
416
+ .vxe-gantt .vxe-gantt-view--scroll-y-wrapper,
417
+ .vxe-gantt .vxe-gantt-view--scroll-y-top-corner,
418
+ .vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner,
419
+ .vxe-gantt .vxe-gantt-view--scroll-x-left-corner,
420
+ .vxe-gantt .vxe-gantt-view--scroll-x-right-corner {
421
+ position: absolute;
422
+ }
423
+ .vxe-gantt .vxe-gantt-view--scroll-x-handle,
424
+ .vxe-gantt .vxe-gantt-view--scroll-x-wrapper {
425
+ width: 100%;
426
+ left: 0;
427
+ bottom: 0;
428
+ }
429
+ .vxe-gantt .vxe-gantt-view--scroll-x-handle {
430
+ overflow-y: hidden;
431
+ overflow-x: scroll;
432
+ height: 18px;
433
+ }
434
+ .vxe-gantt .vxe-gantt-view--scroll-x-wrapper {
435
+ height: 100%;
436
+ }
437
+ .vxe-gantt .vxe-gantt-view--scroll-y-handle,
438
+ .vxe-gantt .vxe-gantt-view--scroll-y-wrapper {
439
+ width: 100%;
440
+ height: 100%;
441
+ right: 0;
442
+ top: 0;
443
+ }
444
+ .vxe-gantt .vxe-gantt-view--scroll-y-handle {
445
+ overflow-y: scroll;
446
+ overflow-x: hidden;
447
+ width: 18px;
448
+ height: 100%;
449
+ }
450
+ .vxe-gantt .vxe-gantt-view--scroll-x-space {
451
+ height: 1px;
452
+ }
453
+ .vxe-gantt .vxe-gantt-view--scroll-y-space {
454
+ width: 1px;
455
+ }
456
+ .vxe-gantt .vxe-gantt-view--scroll-x-left-corner,
457
+ .vxe-gantt .vxe-gantt-view--scroll-x-right-corner,
458
+ .vxe-gantt .vxe-gantt-view--scroll-y-top-corner,
459
+ .vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner {
460
+ display: none;
461
+ position: absolute;
462
+ }
463
+ .vxe-gantt .vxe-gantt-view--scroll-x-left-corner,
464
+ .vxe-gantt .vxe-gantt-view--scroll-x-right-corner {
465
+ bottom: 0;
466
+ width: 0;
467
+ height: 100%;
468
+ }
469
+ .vxe-gantt .vxe-gantt-view--scroll-x-left-corner::before,
470
+ .vxe-gantt .vxe-gantt-view--scroll-x-right-corner::before {
471
+ content: "";
472
+ position: absolute;
473
+ top: 0;
474
+ left: 0;
475
+ width: 100%;
476
+ height: 100%;
477
+ z-index: 1;
478
+ border-width: var(--vxe-ui-table-border-width);
479
+ border-style: solid;
480
+ border-color: var(--vxe-ui-table-border-color);
481
+ }
482
+ .vxe-gantt .vxe-gantt-view--scroll-x-left-corner {
483
+ left: 0;
484
+ }
485
+ .vxe-gantt .vxe-gantt-view--scroll-x-right-corner {
486
+ right: 0;
487
+ }
488
+ .vxe-gantt.sy-pos--right .vxe-gantt-view--scroll-x-right-corner {
489
+ right: 1px;
490
+ }
491
+ .vxe-gantt.sy-pos--right .vxe-gantt-view--scroll-x-right-corner::before {
492
+ border-right: 0;
493
+ }
494
+ .vxe-gantt.sx-pos--bottom .vxe-gantt-view--scroll-x-right-corner {
495
+ bottom: 1px;
496
+ }
497
+ .vxe-gantt.sx-pos--bottom .vxe-gantt-view--scroll-x-right-corner::before {
498
+ border-bottom: 0;
499
+ }
500
+ .vxe-gantt .vxe-gantt-view--scroll-y-top-corner {
501
+ background-color: var(--vxe-ui-table-header-background-color);
502
+ }
503
+ .vxe-gantt .vxe-gantt-view--scroll-y-top-corner,
504
+ .vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner {
505
+ top: 0;
506
+ right: 0;
507
+ width: 100%;
508
+ height: 0;
509
+ }
510
+ .vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner {
511
+ margin-top: -1px;
512
+ }
513
+
514
+ .vxe-gantt-view--layout-wrapper {
515
+ display: flex;
516
+ flex-direction: row;
517
+ background-color: var(--vxe-ui-layout-background-color);
518
+ }
519
+
520
+ .vxe-gantt-view--viewport-wrapper {
521
+ position: relative;
522
+ overflow: hidden;
523
+ flex-grow: 1;
524
+ }
525
+
526
+ .vxe-gantt-view--render-vars {
527
+ width: 0;
528
+ height: 0;
529
+ overflow: hidden;
530
+ }
531
+
532
+ .vxe-gantt-view--column-info {
533
+ width: var(--vxe-ui-gantt-view-default-cell-width);
534
+ }
535
+
536
+ .vxe-gantt-view {
537
+ flex-grow: 1;
538
+ overflow: hidden;
539
+ }
540
+ .vxe-gantt-view .vxe-body--x-space {
541
+ width: 100%;
542
+ height: 1px;
543
+ margin-bottom: -1px;
544
+ }
545
+ .vxe-gantt-view .vxe-body--y-space {
546
+ width: 0;
547
+ float: left;
548
+ }
549
+
550
+ .vxe-gantt-view--header-table {
551
+ height: 100%;
552
+ }
553
+
554
+ .vxe-gantt-view--header-table,
555
+ .vxe-gantt-view--body-table {
556
+ border: 0;
557
+ border-spacing: 0;
558
+ border-collapse: separate;
559
+ table-layout: fixed;
560
+ }
561
+ .vxe-gantt-view--header-table col,
562
+ .vxe-gantt-view--body-table col {
563
+ width: var(--vxe-ui-gantt-view-default-cell-width);
564
+ }
565
+
566
+ .vxe-gantt-view--header-wrapper,
567
+ .vxe-gantt-view--body-wrapper {
568
+ overflow: hidden;
569
+ }
570
+
571
+ .vxe-gantt-view--header-inner-wrapper {
572
+ overflow-y: hidden;
573
+ overflow-x: scroll;
574
+ }
575
+
576
+ .vxe-gantt-view--body-inner-wrapper {
577
+ overflow-y: auto;
578
+ overflow-x: auto;
579
+ }
580
+
581
+ .vxe-gantt-view--header-inner-wrapper,
582
+ .vxe-gantt-view--body-inner-wrapper {
583
+ position: relative;
584
+ width: 100%;
585
+ height: 100%;
586
+ scrollbar-width: none;
587
+ -ms-overflow-style: none;
588
+ -webkit-overflow-scrolling: touch;
589
+ }
590
+
591
+ .vxe-gantt-view--header-column {
592
+ text-align: center;
593
+ font-size: 1em;
594
+ }
595
+
596
+ .vxe-gantt-view--body-column {
597
+ height: 48px;
598
+ }
599
+
600
+ .vxe-gantt-view--header-column,
601
+ .vxe-gantt-view--body-column,
602
+ .vxe-gantt-view--footer-column {
603
+ position: relative;
604
+ overflow: hidden;
605
+ text-overflow: ellipsis;
606
+ white-space: nowrap;
607
+ }
608
+
609
+ .vxe-gantt-view.mode--day .vxe-gantt-view--header-column {
610
+ height: 50%;
611
+ }
612
+
613
+ .vxe-gantt {
614
+ font-size: var(--vxe-ui-font-size-default);
615
+ }
616
+ .vxe-gantt.size--medium {
617
+ font-size: var(--vxe-ui-font-size-medium);
618
+ }
619
+ .vxe-gantt.size--small {
620
+ font-size: var(--vxe-ui-font-size-small);
621
+ }
622
+ .vxe-gantt.size--mini {
623
+ font-size: var(--vxe-ui-font-size-mini);
624
+ }
@@ -0,0 +1 @@
1
+ @charset "UTF-8";.vxe-gantt-view--chart-wrapper{position:absolute;top:0;left:0;pointer-events:none}.vxe-gantt-view--chart-row{position:relative}.vxe-gantt-view--chart-row.is--round>.vxe-gantt-view--chart-bar{border-radius:var(--vxe-ui-gantt-view-task-bar-border-radius)}.vxe-gantt-view--chart-row.is--round>.vxe-gantt-view--chart-bar:hover::after{border-radius:var(--vxe-ui-gantt-view-task-bar-border-radius)}.vxe-gantt-view--chart-row.is--round>.vxe-gantt-view--chart-bar>.vxe-gantt-view--chart-progress{border-radius:var(--vxe-ui-gantt-view-task-bar-border-radius) 0 0 var(--vxe-ui-gantt-view-task-bar-border-radius)}.vxe-gantt-view--chart-bar{display:flex;flex-direction:row;align-items:center;position:absolute;top:50%;left:0;color:#fff;transform:translateY(-50%);height:var(--vxe-ui-gantt-view-chart-bar-height);background-color:var(--vxe-ui-gantt-view-task-bar-background-color);pointer-events:all}.vxe-gantt-view--chart-bar:hover::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.1)}.vxe-gantt-view--chart-progress{flex-shrink:0;width:0;height:100%;text-align:left;background-color:var(--vxe-ui-gantt-view-task-bar-completed-background-color);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-gantt-view--chart-content{position:absolute;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.9em;padding:0 .6em}.vxe-gantt{position:relative;overflow:auto;display:flex;flex-direction:column}.vxe-gantt.is--loading:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:99;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:var(--vxe-ui-loading-background-color)}.vxe-gantt.is--loading>.vxe-gantt-view .vxe-loading{background-color:transparent}.vxe-gantt.is--maximize{position:fixed;top:0;left:0;width:100%;height:100%;padding:.5em 1em;background-color:var(--vxe-ui-layout-background-color)}.vxe-gantt.is--split-drag{cursor:col-resize}.vxe-gantt.is--split-drag .vxe-gantt--table-wrapper::after,.vxe-gantt.is--split-drag .vxe-gantt--view-wrapper::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background:0 0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.vxe-gantt .vxe-gantt--bottom-wrapper,.vxe-gantt .vxe-gantt--form-wrapper,.vxe-gantt .vxe-gantt--top-wrapper{position:relative}.vxe-gantt .vxe-gantt--gantt-container{position:relative;display:flex;flex-direction:row}.vxe-gantt .vxe-gantt--left-wrapper,.vxe-gantt .vxe-gantt--right-wrapper{flex-shrink:0;overflow:auto;outline:0}.vxe-gantt .vxe-gantt--table-wrapper,.vxe-gantt .vxe-gantt--view-wrapper{display:none;position:relative;flex-grow:1;overflow:hidden}.vxe-gantt .vxe-gantt--view-split-bar{flex-shrink:0;width:var(--vxe-ui-gantt-view-split-bar-width);background-color:var(--vxe-ui-gantt-view-split-bar-background-color)}.vxe-gantt .vxe-gantt--view-split-bar.is--resize{cursor:col-resize}.vxe-gantt.show--left .vxe-gantt--table-wrapper{display:block}.vxe-gantt.show--left.show--right .vxe-gantt--table-wrapper{flex-grow:unset;flex-shrink:0;width:var(--vxe-ui-gantt-view-table-default-width)}.vxe-gantt.show--right .vxe-gantt--view-wrapper{display:block}.vxe-gantt--layout-body-wrapper{display:flex;flex-direction:row;overflow:auto;flex-grow:1}.vxe-gantt--layout-body-content-wrapper{flex-grow:1;overflow:hidden}.vxe-gantt--layout-aside-left-wrapper,.vxe-gantt--layout-footer-wrapper,.vxe-gantt--layout-header-wrapper{flex-shrink:0;overflow:auto}.vxe-gantt--border-line{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;pointer-events:none;border:var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color)}.vxe-gantt.border--default .vxe-gantt-view--header-wrapper,.vxe-gantt.border--full .vxe-gantt-view--header-wrapper,.vxe-gantt.border--outer .vxe-gantt-view--header-wrapper{background-color:var(--vxe-ui-table-header-background-color)}.vxe-gantt.border--full .vxe-gantt-view--body-column,.vxe-gantt.border--full .vxe-gantt-view--footer-column,.vxe-gantt.border--full .vxe-gantt-view--header-column{background-image:linear-gradient(var(--vxe-ui-table-border-color),var(--vxe-ui-table-border-color)),linear-gradient(var(--vxe-ui-table-border-color),var(--vxe-ui-table-border-color));background-repeat:no-repeat;background-size:var(--vxe-ui-table-border-width) 100%,100% var(--vxe-ui-table-border-width);background-position:right top,right bottom}.vxe-gantt.border--default .vxe-gantt-view--scroll-y-bottom-corner::before,.vxe-gantt.border--default .vxe-gantt-view--scroll-y-top-corner::before,.vxe-gantt.border--full .vxe-gantt-view--scroll-y-bottom-corner::before,.vxe-gantt.border--full .vxe-gantt-view--scroll-y-top-corner::before,.vxe-gantt.border--inner .vxe-gantt-view--scroll-y-bottom-corner::before,.vxe-gantt.border--inner .vxe-gantt-view--scroll-y-top-corner::before,.vxe-gantt.border--outer .vxe-gantt-view--scroll-y-bottom-corner::before,.vxe-gantt.border--outer .vxe-gantt-view--scroll-y-top-corner::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;border-width:0;border-style:solid;border-color:var(--vxe-ui-table-border-color)}.vxe-gantt.border--default .vxe-gantt-view--scroll-y-top-corner::before,.vxe-gantt.border--full .vxe-gantt-view--scroll-y-top-corner::before,.vxe-gantt.border--inner .vxe-gantt-view--scroll-y-top-corner::before,.vxe-gantt.border--outer .vxe-gantt-view--scroll-y-top-corner::before{border-bottom-width:var(--vxe-ui-table-border-width)}.vxe-gantt.border--default .vxe-gantt-view--scroll-y-bottom-corner,.vxe-gantt.border--full .vxe-gantt-view--scroll-y-bottom-corner,.vxe-gantt.border--inner .vxe-gantt-view--scroll-y-bottom-corner,.vxe-gantt.border--outer .vxe-gantt-view--scroll-y-bottom-corner{border-top:var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color)}.vxe-gantt.border--default .vxe-gantt-view--scroll-x-wrapper::after,.vxe-gantt.border--full .vxe-gantt-view--scroll-x-wrapper::after,.vxe-gantt.border--inner .vxe-gantt-view--scroll-x-wrapper::after,.vxe-gantt.border--outer .vxe-gantt-view--scroll-x-wrapper::after{content:"";position:absolute;left:0;width:100%;height:100%;z-index:1;pointer-events:none}.vxe-gantt.border--default.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after,.vxe-gantt.border--full.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after,.vxe-gantt.border--inner.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after,.vxe-gantt.border--outer.sx-pos--top .vxe-gantt-view--scroll-x-wrapper::after{top:0;border-bottom:var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color)}.vxe-gantt.border--default.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after,.vxe-gantt.border--full.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after,.vxe-gantt.border--inner.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after,.vxe-gantt.border--outer.sx-pos--bottom .vxe-gantt-view--scroll-x-wrapper::after{bottom:0;height:calc(100% + var(--vxe-ui-table-border-width));border-top:var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color)}.vxe-gantt.border--default .vxe-gantt-view--scroll-y-top-corner::before,.vxe-gantt.border--full .vxe-gantt-view--scroll-y-top-corner::before{border-left-width:var(--vxe-ui-table-border-width);border-right-width:var(--vxe-ui-table-border-width)}.vxe-gantt.border--default .vxe-gantt-view--scroll-y-bottom-corner::before,.vxe-gantt.border--full .vxe-gantt-view--scroll-y-bottom-corner::before{border-left-width:var(--vxe-ui-table-border-width);border-right-width:var(--vxe-ui-table-border-width)}.vxe-gantt.border--default.sy-pos--right .vxe-gantt-view--scroll-y-bottom-corner::before,.vxe-gantt.border--default.sy-pos--right .vxe-gantt-view--scroll-y-top-corner::before,.vxe-gantt.border--full.sy-pos--right .vxe-gantt-view--scroll-y-bottom-corner::before,.vxe-gantt.border--full.sy-pos--right .vxe-gantt-view--scroll-y-top-corner::before{width:calc(100% + 1px);left:-1px}.vxe-gantt.border--default .vxe-gantt-view--scroll-y-wrapper::after,.vxe-gantt.border--full .vxe-gantt-view--scroll-y-wrapper::after{content:"";position:absolute;top:0;width:100%;height:100%;z-index:1;pointer-events:none}.vxe-gantt.border--default.sy-pos--left .vxe-gantt-view--scroll-y-wrapper::after,.vxe-gantt.border--full.sy-pos--left .vxe-gantt-view--scroll-y-wrapper::after{left:0;border-right:var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color)}.vxe-gantt.border--default.sy-pos--right .vxe-gantt-view--scroll-y-wrapper::after,.vxe-gantt.border--full.sy-pos--right .vxe-gantt-view--scroll-y-wrapper::after{right:0;width:calc(100% + var(--vxe-ui-table-border-width));border-left:var(--vxe-ui-table-border-width) solid var(--vxe-ui-table-border-color)}.vxe-gantt--view-split-bar{position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.vxe-gantt--view-split-bar-handle{position:absolute;top:0;left:0;width:100%;height:100%;z-index:13}.vxe-gantt--view-split-bar-btn-wrapper{display:flex;flex-direction:column;align-items:center;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);z-index:15;pointer-events:none}.vxe-gantt--view-split-bar-btn-wrapper>div{margin-top:1em}.vxe-gantt--view-split-bar-btn-wrapper>div:first-child{margin-top:0}.vxe-gantt--view-split-bar-left-btn,.vxe-gantt--view-split-bar-right-btn{display:flex;flex-direction:row;align-items:center;justify-content:center;font-size:.5em;height:var(--vxe-ui-gantt-view-split-bar-height);width:var(--vxe-ui-gantt-view-split-bar-width);color:var(--vxe-ui-layout-background-color);border-radius:var(--vxe-ui-base-border-radius);background-color:var(--vxe-ui-gantt-view-handle-background-color);border:1px solid var(--vxe-ui-input-border-color);pointer-events:all;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:all .1s ease-in-out}.vxe-gantt--view-split-bar-left-btn:hover,.vxe-gantt--view-split-bar-right-btn:hover{background-color:var(--vxe-ui-font-primary-lighten-color)}.vxe-gantt--view-split-bar-left-btn:active,.vxe-gantt--view-split-bar-right-btn:active{transform:scale(.9)}.vxe-gantt--resizable-split-tip{display:none;position:absolute;top:0;left:0;width:1px;height:100%;z-index:18;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:col-resize}.vxe-gantt--resizable-split-tip:before{content:"";display:block;height:100%;background-color:var(--vxe-ui-table-resizable-drag-line-color)}.vxe-gantt--resizable-split-tip-number{position:absolute;top:0;left:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.vxe-gantt--resizable-split-number-left,.vxe-gantt--resizable-split-number-right{position:absolute;padding:.25em .25em;font-size:12px;border-radius:var(--vxe-ui-border-radius);white-space:nowrap;color:#fff;background-color:var(--vxe-ui-table-resizable-drag-line-color)}.vxe-gantt--resizable-split-number-left{right:0}.vxe-gantt--resizable-split-number-right{left:1px}.vxe-gantt.is--loading>.vxe-gantt-view--scroll-x-virtual{visibility:hidden}.vxe-gantt.is--loading>.vxe-gantt-view--layout-wrapper>.vxe-gantt-view--scroll-y-virtual{visibility:hidden}.vxe-gantt .vxe-gantt-view--scroll-x-virtual{height:0}.vxe-gantt .vxe-gantt-view--scroll-y-virtual{width:0}.vxe-gantt .vxe-gantt-view--scroll-x-virtual,.vxe-gantt .vxe-gantt-view--scroll-y-virtual{visibility:hidden;position:relative;flex-shrink:0;z-index:7}.vxe-gantt .vxe-gantt-view--scroll-x-handle,.vxe-gantt .vxe-gantt-view--scroll-x-left-corner,.vxe-gantt .vxe-gantt-view--scroll-x-right-corner,.vxe-gantt .vxe-gantt-view--scroll-x-wrapper,.vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner,.vxe-gantt .vxe-gantt-view--scroll-y-handle,.vxe-gantt .vxe-gantt-view--scroll-y-top-corner,.vxe-gantt .vxe-gantt-view--scroll-y-wrapper{position:absolute}.vxe-gantt .vxe-gantt-view--scroll-x-handle,.vxe-gantt .vxe-gantt-view--scroll-x-wrapper{width:100%;left:0;bottom:0}.vxe-gantt .vxe-gantt-view--scroll-x-handle{overflow-y:hidden;overflow-x:scroll;height:18px}.vxe-gantt .vxe-gantt-view--scroll-x-wrapper{height:100%}.vxe-gantt .vxe-gantt-view--scroll-y-handle,.vxe-gantt .vxe-gantt-view--scroll-y-wrapper{width:100%;height:100%;right:0;top:0}.vxe-gantt .vxe-gantt-view--scroll-y-handle{overflow-y:scroll;overflow-x:hidden;width:18px;height:100%}.vxe-gantt .vxe-gantt-view--scroll-x-space{height:1px}.vxe-gantt .vxe-gantt-view--scroll-y-space{width:1px}.vxe-gantt .vxe-gantt-view--scroll-x-left-corner,.vxe-gantt .vxe-gantt-view--scroll-x-right-corner,.vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner,.vxe-gantt .vxe-gantt-view--scroll-y-top-corner{display:none;position:absolute}.vxe-gantt .vxe-gantt-view--scroll-x-left-corner,.vxe-gantt .vxe-gantt-view--scroll-x-right-corner{bottom:0;width:0;height:100%}.vxe-gantt .vxe-gantt-view--scroll-x-left-corner::before,.vxe-gantt .vxe-gantt-view--scroll-x-right-corner::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;border-width:var(--vxe-ui-table-border-width);border-style:solid;border-color:var(--vxe-ui-table-border-color)}.vxe-gantt .vxe-gantt-view--scroll-x-left-corner{left:0}.vxe-gantt .vxe-gantt-view--scroll-x-right-corner{right:0}.vxe-gantt.sy-pos--right .vxe-gantt-view--scroll-x-right-corner{right:1px}.vxe-gantt.sy-pos--right .vxe-gantt-view--scroll-x-right-corner::before{border-right:0}.vxe-gantt.sx-pos--bottom .vxe-gantt-view--scroll-x-right-corner{bottom:1px}.vxe-gantt.sx-pos--bottom .vxe-gantt-view--scroll-x-right-corner::before{border-bottom:0}.vxe-gantt .vxe-gantt-view--scroll-y-top-corner{background-color:var(--vxe-ui-table-header-background-color)}.vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner,.vxe-gantt .vxe-gantt-view--scroll-y-top-corner{top:0;right:0;width:100%;height:0}.vxe-gantt .vxe-gantt-view--scroll-y-bottom-corner{margin-top:-1px}.vxe-gantt-view--layout-wrapper{display:flex;flex-direction:row;background-color:var(--vxe-ui-layout-background-color)}.vxe-gantt-view--viewport-wrapper{position:relative;overflow:hidden;flex-grow:1}.vxe-gantt-view--render-vars{width:0;height:0;overflow:hidden}.vxe-gantt-view--column-info{width:var(--vxe-ui-gantt-view-default-cell-width)}.vxe-gantt-view{flex-grow:1;overflow:hidden}.vxe-gantt-view .vxe-body--x-space{width:100%;height:1px;margin-bottom:-1px}.vxe-gantt-view .vxe-body--y-space{width:0;float:left}.vxe-gantt-view--header-table{height:100%}.vxe-gantt-view--body-table,.vxe-gantt-view--header-table{border:0;border-spacing:0;border-collapse:separate;table-layout:fixed}.vxe-gantt-view--body-table col,.vxe-gantt-view--header-table col{width:var(--vxe-ui-gantt-view-default-cell-width)}.vxe-gantt-view--body-wrapper,.vxe-gantt-view--header-wrapper{overflow:hidden}.vxe-gantt-view--header-inner-wrapper{overflow-y:hidden;overflow-x:scroll}.vxe-gantt-view--body-inner-wrapper{overflow-y:auto;overflow-x:auto}.vxe-gantt-view--body-inner-wrapper,.vxe-gantt-view--header-inner-wrapper{position:relative;width:100%;height:100%;scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch}.vxe-gantt-view--header-column{text-align:center;font-size:1em}.vxe-gantt-view--body-column{height:48px}.vxe-gantt-view--body-column,.vxe-gantt-view--footer-column,.vxe-gantt-view--header-column{position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-gantt-view.mode--day .vxe-gantt-view--header-column{height:50%}.vxe-gantt{font-size:var(--vxe-ui-font-size-default)}.vxe-gantt.size--medium{font-size:var(--vxe-ui-font-size-medium)}.vxe-gantt.size--small{font-size:var(--vxe-ui-font-size-small)}.vxe-gantt.size--mini{font-size:var(--vxe-ui-font-size-mini)}
@@ -1,21 +1,26 @@
1
1
  "use strict";
2
2
 
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
3
4
  Object.defineProperty(exports, "__esModule", {
4
5
  value: true
5
6
  });
6
7
  var _exportNames = {};
7
8
  exports.default = void 0;
8
- var VxeUIExport = _interopRequireWildcard(require("./components"));
9
- Object.keys(VxeUIExport).forEach(function (key) {
9
+ var VxeUIGanttExport = _interopRequireWildcard(require("./components"));
10
+ Object.keys(VxeUIGanttExport).forEach(function (key) {
10
11
  if (key === "default" || key === "__esModule") return;
11
12
  if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
12
- if (key in exports && exports[key] === VxeUIExport[key]) return;
13
+ if (key in exports && exports[key] === VxeUIGanttExport[key]) return;
13
14
  Object.defineProperty(exports, key, {
14
15
  enumerable: true,
15
- get: function () {
16
- return VxeUIExport[key];
16
+ get: function get() {
17
+ return VxeUIGanttExport[key];
17
18
  }
18
19
  });
19
20
  });
20
- function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
21
- var _default = exports.default = VxeUIExport;
21
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
22
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
23
+ /**
24
+ * A vue based PC component library
25
+ */
26
+ var _default = exports.default = VxeUIGanttExport;