@jiaozhiye/qm-design-react 1.11.24 → 1.11.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.
Files changed (49) hide show
  1. package/lib/collapse/style/index.less +24 -24
  2. package/lib/collapse/style/motion.less +11 -11
  3. package/lib/color-picker/style/index.less +119 -119
  4. package/lib/index.esm.js +1 -1
  5. package/lib/index.full.js +1 -1
  6. package/lib/index.js +1 -1
  7. package/lib/locale/lang/en.d.ts +7 -6
  8. package/lib/locale/lang/en.js +14 -13
  9. package/lib/locale/lang/zh-cn.d.ts +7 -6
  10. package/lib/locale/lang/zh-cn.js +14 -13
  11. package/lib/pivot-grid/style/context-menu.less +28 -28
  12. package/lib/pivot-grid/style/grid-layout.less +409 -409
  13. package/lib/pivot-grid/style/index.less +11 -11
  14. package/lib/pivot-grid/style/main.less +33 -33
  15. package/lib/pivot-grid/style/top-bar.less +189 -189
  16. package/lib/scrollbar/style/index.less +1 -2
  17. package/lib/search-tree/style/index.less +34 -34
  18. package/lib/style/index.css +102 -13
  19. package/lib/style/index.less +44 -44
  20. package/lib/style/index.min.css +1 -1
  21. package/lib/table/src/context/index.d.ts +6 -1
  22. package/lib/table/src/filter/CheckboxPanel.d.ts +7 -0
  23. package/lib/table/src/filter/DatePanel.d.ts +7 -0
  24. package/lib/table/src/filter/FooterPanel.d.ts +12 -0
  25. package/lib/table/src/filter/ListPanel.d.ts +11 -0
  26. package/lib/table/src/filter/NilPanel.d.ts +9 -0
  27. package/lib/table/src/filter/NumberPanel.d.ts +7 -0
  28. package/lib/table/src/filter/TextAreaPanel.d.ts +7 -0
  29. package/lib/table/src/filter/TextPanel.d.ts +7 -0
  30. package/lib/table/src/filter/TreePanel.d.ts +7 -0
  31. package/lib/table/src/filter/context.d.ts +3 -0
  32. package/lib/table/src/filter-sql/index.d.ts +1 -1
  33. package/lib/table/src/filter-sql/lib/filter_string.d.ts +1 -3
  34. package/lib/table/src/hooks/useImperativeMethod.d.ts +1 -0
  35. package/lib/table/src/hooks/useTableCore.d.ts +9 -5
  36. package/lib/table/src/hooks/useTableRef.d.ts +4 -9
  37. package/lib/table/src/hooks/useTableState.d.ts +4 -1
  38. package/lib/table/src/table/props.d.ts +1 -0
  39. package/lib/table/src/table/types.d.ts +6 -1
  40. package/lib/table/src/utils/index.d.ts +4 -1
  41. package/lib/table/style/body.less +1 -0
  42. package/lib/table/style/fast-search.less +151 -150
  43. package/lib/table/style/header.less +108 -10
  44. package/lib/table/style/variable.less +51 -51
  45. package/lib/virtual-list/src/core.d.ts +4 -5
  46. package/lib/virtual-list/src/useVirtual.d.ts +2 -2
  47. package/lib/virtual-list/src/utils.d.ts +1 -2
  48. package/lib/virtual-list/style/index.less +22 -22
  49. package/package.json +140 -140
@@ -1,409 +1,409 @@
1
- /*
2
- * @Author: 焦质晔
3
- * @Date: 2022-03-16 19:05:30
4
- * @Last Modified by: 焦质晔
5
- * @Last Modified time: 2025-01-12 14:23:51
6
- */
7
- @import '../../style/common';
8
-
9
- .@{prefix-pivot-grid}__layout {
10
- .reset-container();
11
- width: 100%;
12
-
13
- // =========== 变量 ===========
14
- @header-bg-color: #d7f0ff;
15
- @border-radius: 8px;
16
- .bor-radius-left() {
17
- border-top-left-radius: @border-radius;
18
- border-bottom-left-radius: @border-radius;
19
- }
20
- .bor-radius-right() {
21
- border-top-right-radius: @border-radius;
22
- border-bottom-right-radius: @border-radius;
23
- }
24
- .bor-left-shadow() {
25
- box-shadow: -5px 0px 0 0px @--background-color-light;
26
- }
27
- .bor-right-shadow() {
28
- box-shadow: 5px 0px 0 0px @--background-color-light;
29
- }
30
- // =========== 变量 END ===========
31
-
32
- .@{qm-prefix}-scrollbar__wrap {
33
- // 调整为 flex 布局
34
- display: flex;
35
- flex-wrap: nowrap;
36
- & > div {
37
- height: fit-content;
38
- }
39
- }
40
- .header,
41
- .footer {
42
- display: flex;
43
- flex-direction: row;
44
- .fixed-left {
45
- position: sticky;
46
- left: 0;
47
- z-index: 1;
48
- display: flex;
49
- border-left: 1px solid @--border-color-secondary;
50
- border-bottom: 1px solid @--border-color-secondary;
51
- .bor-left-shadow();
52
- &,
53
- .table-cell:first-child {
54
- .bor-radius-left();
55
- }
56
- }
57
- .no-fixed {
58
- flex: 1 0;
59
- display: flex;
60
- border-bottom: 1px solid @--border-color-secondary;
61
- .bor-right-shadow();
62
- &,
63
- .table-cell:last-child {
64
- .bor-radius-right();
65
- }
66
- }
67
- }
68
- .header {
69
- position: sticky;
70
- top: 0;
71
- z-index: 2;
72
- .table-cell {
73
- position: relative;
74
- background-color: @header-bg-color !important;
75
- cursor: pointer;
76
- }
77
- .resize-bar {
78
- position: absolute;
79
- top: 0;
80
- bottom: 0;
81
- right: -3px;
82
- width: 6px;
83
- z-index: 2;
84
- cursor: col-resize;
85
- }
86
- }
87
- .body {
88
- display: flex;
89
- flex-direction: row;
90
- min-height: fit-content;
91
- }
92
- .footer {
93
- position: sticky;
94
- bottom: 0;
95
- z-index: 2;
96
- }
97
- .header,
98
- .body,
99
- .footer {
100
- .table-cell {
101
- align-self: stretch; // 子元素高度和父元素一致
102
- display: inline-flex;
103
- align-items: center;
104
- border-top: 1px solid @--border-color-secondary;
105
- border-right: 1px solid @--border-color-secondary;
106
- background-color: #fff;
107
- &.selection-column {
108
- justify-content: center;
109
- border-right-color: transparent;
110
- }
111
- .action {
112
- display: inline-flex;
113
- align-items: center;
114
- justify-content: center;
115
- .drag-icon,
116
- .expand-icon {
117
- display: inline-flex;
118
- align-items: center;
119
- justify-content: center;
120
- width: 20px;
121
- height: 20px;
122
- color: @--text-color-placeholder;
123
- visibility: hidden;
124
- }
125
- .expand-icon:hover {
126
- color: @--primary-color;
127
- }
128
- .middle {
129
- text-align: center;
130
- width: 16px;
131
- margin: 0 2px;
132
- .order {
133
- display: inline-block;
134
- }
135
- .checkbox {
136
- display: none;
137
- }
138
- }
139
- }
140
- &.col--center {
141
- text-align: center;
142
- justify-content: center;
143
- }
144
- &.col--right {
145
- text-align: right;
146
- justify-content: flex-end;
147
- }
148
- &.col--fix-left {
149
- position: sticky;
150
- z-index: 1;
151
- }
152
- &.col--checked {
153
- background-color: @--primary-1;
154
- }
155
- &.active {
156
- box-shadow: inset 0 0 0 2px @--primary-color;
157
- background-color: rgba(255, 235, 140, 1);
158
- }
159
- .cell {
160
- .text-overflow-cut();
161
- padding: 0 @--padding-sm;
162
- }
163
- }
164
- .label-cell,
165
- .table-cell {
166
- &:hover {
167
- .count-select {
168
- visibility: visible;
169
- }
170
- }
171
- }
172
- .count-select {
173
- .text-overflow-cut();
174
- display: inline-flex;
175
- align-items: center;
176
- justify-content: flex-end;
177
- height: 100%;
178
- width: 100%;
179
- padding: 0 @--padding-sm;
180
- color: @--text-color-placeholder;
181
- cursor: pointer;
182
- visibility: hidden;
183
- &:hover,
184
- &.ant-dropdown-open {
185
- visibility: visible;
186
- background-color: @--background-color-light;
187
- }
188
- &.show {
189
- visibility: visible;
190
- }
191
- .icon {
192
- margin-left: 4px;
193
- }
194
- }
195
- }
196
- .resize-line {
197
- position: absolute;
198
- left: -2px;
199
- top: 0;
200
- width: 2px;
201
- height: 100%;
202
- background-color: @--primary-color;
203
- cursor: col-resize;
204
- z-index: 2;
205
- }
206
- .fixed-line {
207
- position: absolute;
208
- left: -1px;
209
- top: 0;
210
- width: 0;
211
- height: 100%;
212
- border-left: 1px solid @--primary-3;
213
- z-index: 2;
214
- pointer-events: none;
215
- &::after {
216
- content: '';
217
- position: absolute;
218
- top: 0;
219
- right: 0;
220
- bottom: -1px;
221
- width: 20px;
222
- transform: translateX(100%);
223
- transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
224
- pointer-events: none;
225
- }
226
- &.active {
227
- &::after {
228
- box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.15);
229
- }
230
- }
231
- }
232
- // 左侧面板
233
- .left-panel {
234
- position: sticky;
235
- left: 0;
236
- z-index: 1;
237
- .group-label {
238
- border-right: 0 !important;
239
- .bor-radius-left();
240
- &.level0 {
241
- .bor-left-shadow();
242
- }
243
- }
244
- .row-item {
245
- &:nth-of-type(1) {
246
- border-top-left-radius: @border-radius;
247
- .bor-left-shadow();
248
- .table-cell:first-child {
249
- border-top-left-radius: @border-radius;
250
- }
251
- }
252
- &.last {
253
- border-bottom-left-radius: @border-radius;
254
- .table-cell:first-child {
255
- border-bottom-left-radius: @border-radius;
256
- }
257
- }
258
- }
259
- .no-group {
260
- .row-item:last-child {
261
- .bor-left-shadow();
262
- }
263
- }
264
- }
265
- .main-panel {
266
- flex: 1 0;
267
- z-index: 0;
268
- .group-label,
269
- .row-item {
270
- border-left: 0 !important;
271
- }
272
- .group-label {
273
- .bor-radius-right();
274
- }
275
- .row-item {
276
- &:nth-of-type(1) {
277
- border-top-right-radius: @border-radius;
278
- .table-cell:last-child {
279
- border-top-right-radius: @border-radius;
280
- }
281
- }
282
- &.last {
283
- border-bottom-right-radius: @border-radius;
284
- .table-cell:last-child {
285
- border-bottom-right-radius: @border-radius;
286
- }
287
- }
288
- }
289
- }
290
- .container {
291
- position: relative;
292
- left: 0;
293
- top: 0;
294
- .group-label {
295
- position: absolute;
296
- border: 1px solid @--border-color-secondary;
297
- background-color: #fff;
298
- .label-row {
299
- display: flex;
300
- align-items: center;
301
- }
302
- .label-cell {
303
- align-self: stretch;
304
- display: inline-flex;
305
- align-items: center;
306
- &.expandable-column {
307
- justify-content: center;
308
- .button-icon {
309
- & > .anticon {
310
- transition: transform 0.3s ease;
311
- }
312
- &.expand > .anticon {
313
- transform: rotate(90deg);
314
- }
315
- }
316
- }
317
- &.col--fix-left {
318
- position: sticky;
319
- z-index: 1;
320
- }
321
- .title {
322
- flex-shrink: 0;
323
- margin-right: 20px;
324
- font-weight: 600;
325
- .empty {
326
- color: @--text-color-placeholder;
327
- font-weight: 400;
328
- }
329
- }
330
- }
331
- }
332
- .row-item {
333
- position: absolute;
334
- border-left: 1px solid @--border-color-secondary;
335
- &.last {
336
- .table-cell {
337
- border-bottom: 1px solid @--border-color-secondary;
338
- }
339
- }
340
- .table-row {
341
- display: flex;
342
- align-items: center;
343
- height: inherit;
344
- &.row--hover,
345
- &.row--selection {
346
- .table-cell {
347
- background-color: @--background-color-light;
348
- .middle&:has(.checkbox) {
349
- .order {
350
- display: none;
351
- }
352
- .checkbox {
353
- display: inline-flex;
354
- }
355
- }
356
- }
357
- }
358
- &.row--highlight {
359
- .table-cell {
360
- background-color: @--primary-1;
361
- }
362
- }
363
- &.row--hover {
364
- .table-cell {
365
- .drag-icon,
366
- .expand-icon {
367
- visibility: visible;
368
- }
369
- }
370
- }
371
- .cell--expand {
372
- display: inline-flex;
373
- padding: 4px;
374
- font-size: 13px;
375
- color: @--text-color-placeholder;
376
- cursor: pointer;
377
- transform: scaleX(1.15);
378
- transition: transform 0.3s ease;
379
- &.fold {
380
- transform: rotate(-90deg);
381
- }
382
- &.disabled {
383
- color: @--disabled-color;
384
- cursor: not-allowed;
385
- }
386
- }
387
- }
388
- }
389
- }
390
- // size
391
- &.small {
392
- .label-row,
393
- .table-cell {
394
- height: 26px;
395
- }
396
- }
397
- &.middle {
398
- .label-row,
399
- .table-cell {
400
- height: 34px;
401
- }
402
- }
403
- &.large {
404
- .label-row,
405
- .table-cell {
406
- height: 42px;
407
- }
408
- }
409
- }
1
+ /*
2
+ * @Author: 焦质晔
3
+ * @Date: 2022-03-16 19:05:30
4
+ * @Last Modified by: 焦质晔
5
+ * @Last Modified time: 2025-01-12 14:23:51
6
+ */
7
+ @import '../../style/common';
8
+
9
+ .@{prefix-pivot-grid}__layout {
10
+ .reset-container();
11
+ width: 100%;
12
+
13
+ // =========== 变量 ===========
14
+ @header-bg-color: #d7f0ff;
15
+ @border-radius: 8px;
16
+ .bor-radius-left() {
17
+ border-top-left-radius: @border-radius;
18
+ border-bottom-left-radius: @border-radius;
19
+ }
20
+ .bor-radius-right() {
21
+ border-top-right-radius: @border-radius;
22
+ border-bottom-right-radius: @border-radius;
23
+ }
24
+ .bor-left-shadow() {
25
+ box-shadow: -5px 0px 0 0px @--background-color-light;
26
+ }
27
+ .bor-right-shadow() {
28
+ box-shadow: 5px 0px 0 0px @--background-color-light;
29
+ }
30
+ // =========== 变量 END ===========
31
+
32
+ .@{qm-prefix}-scrollbar__wrap {
33
+ // 调整为 flex 布局
34
+ display: flex;
35
+ flex-wrap: nowrap;
36
+ & > div {
37
+ height: fit-content;
38
+ }
39
+ }
40
+ .header,
41
+ .footer {
42
+ display: flex;
43
+ flex-direction: row;
44
+ .fixed-left {
45
+ position: sticky;
46
+ left: 0;
47
+ z-index: 1;
48
+ display: flex;
49
+ border-left: 1px solid @--border-color-secondary;
50
+ border-bottom: 1px solid @--border-color-secondary;
51
+ .bor-left-shadow();
52
+ &,
53
+ .table-cell:first-child {
54
+ .bor-radius-left();
55
+ }
56
+ }
57
+ .no-fixed {
58
+ flex: 1 0;
59
+ display: flex;
60
+ border-bottom: 1px solid @--border-color-secondary;
61
+ .bor-right-shadow();
62
+ &,
63
+ .table-cell:last-child {
64
+ .bor-radius-right();
65
+ }
66
+ }
67
+ }
68
+ .header {
69
+ position: sticky;
70
+ top: 0;
71
+ z-index: 2;
72
+ .table-cell {
73
+ position: relative;
74
+ background-color: @header-bg-color !important;
75
+ cursor: pointer;
76
+ }
77
+ .resize-bar {
78
+ position: absolute;
79
+ top: 0;
80
+ bottom: 0;
81
+ right: -3px;
82
+ width: 6px;
83
+ z-index: 2;
84
+ cursor: col-resize;
85
+ }
86
+ }
87
+ .body {
88
+ display: flex;
89
+ flex-direction: row;
90
+ min-height: fit-content;
91
+ }
92
+ .footer {
93
+ position: sticky;
94
+ bottom: 0;
95
+ z-index: 2;
96
+ }
97
+ .header,
98
+ .body,
99
+ .footer {
100
+ .table-cell {
101
+ align-self: stretch; // 子元素高度和父元素一致
102
+ display: inline-flex;
103
+ align-items: center;
104
+ border-top: 1px solid @--border-color-secondary;
105
+ border-right: 1px solid @--border-color-secondary;
106
+ background-color: #fff;
107
+ &.selection-column {
108
+ justify-content: center;
109
+ border-right-color: transparent;
110
+ }
111
+ .action {
112
+ display: inline-flex;
113
+ align-items: center;
114
+ justify-content: center;
115
+ .drag-icon,
116
+ .expand-icon {
117
+ display: inline-flex;
118
+ align-items: center;
119
+ justify-content: center;
120
+ width: 20px;
121
+ height: 20px;
122
+ color: @--text-color-placeholder;
123
+ visibility: hidden;
124
+ }
125
+ .expand-icon:hover {
126
+ color: @--primary-color;
127
+ }
128
+ .middle {
129
+ text-align: center;
130
+ width: 16px;
131
+ margin: 0 2px;
132
+ .order {
133
+ display: inline-block;
134
+ }
135
+ .checkbox {
136
+ display: none;
137
+ }
138
+ }
139
+ }
140
+ &.col--center {
141
+ text-align: center;
142
+ justify-content: center;
143
+ }
144
+ &.col--right {
145
+ text-align: right;
146
+ justify-content: flex-end;
147
+ }
148
+ &.col--fix-left {
149
+ position: sticky;
150
+ z-index: 1;
151
+ }
152
+ &.col--checked {
153
+ background-color: @--primary-1;
154
+ }
155
+ &.active {
156
+ box-shadow: inset 0 0 0 2px @--primary-color;
157
+ background-color: rgba(255, 235, 140, 1);
158
+ }
159
+ .cell {
160
+ .text-overflow-cut();
161
+ padding: 0 @--padding-sm;
162
+ }
163
+ }
164
+ .label-cell,
165
+ .table-cell {
166
+ &:hover {
167
+ .count-select {
168
+ visibility: visible;
169
+ }
170
+ }
171
+ }
172
+ .count-select {
173
+ .text-overflow-cut();
174
+ display: inline-flex;
175
+ align-items: center;
176
+ justify-content: flex-end;
177
+ height: 100%;
178
+ width: 100%;
179
+ padding: 0 @--padding-sm;
180
+ color: @--text-color-placeholder;
181
+ cursor: pointer;
182
+ visibility: hidden;
183
+ &:hover,
184
+ &.ant-dropdown-open {
185
+ visibility: visible;
186
+ background-color: @--background-color-light;
187
+ }
188
+ &.show {
189
+ visibility: visible;
190
+ }
191
+ .icon {
192
+ margin-left: 4px;
193
+ }
194
+ }
195
+ }
196
+ .resize-line {
197
+ position: absolute;
198
+ left: -2px;
199
+ top: 0;
200
+ width: 2px;
201
+ height: 100%;
202
+ background-color: @--primary-color;
203
+ cursor: col-resize;
204
+ z-index: 2;
205
+ }
206
+ .fixed-line {
207
+ position: absolute;
208
+ left: -1px;
209
+ top: 0;
210
+ width: 0;
211
+ height: 100%;
212
+ border-left: 1px solid @--primary-3;
213
+ z-index: 2;
214
+ pointer-events: none;
215
+ &::after {
216
+ content: '';
217
+ position: absolute;
218
+ top: 0;
219
+ right: 0;
220
+ bottom: -1px;
221
+ width: 20px;
222
+ transform: translateX(100%);
223
+ transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
224
+ pointer-events: none;
225
+ }
226
+ &.active {
227
+ &::after {
228
+ box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.15);
229
+ }
230
+ }
231
+ }
232
+ // 左侧面板
233
+ .left-panel {
234
+ position: sticky;
235
+ left: 0;
236
+ z-index: 1;
237
+ .group-label {
238
+ border-right: 0 !important;
239
+ .bor-radius-left();
240
+ &.level0 {
241
+ .bor-left-shadow();
242
+ }
243
+ }
244
+ .row-item {
245
+ &:nth-of-type(1) {
246
+ border-top-left-radius: @border-radius;
247
+ .bor-left-shadow();
248
+ .table-cell:first-child {
249
+ border-top-left-radius: @border-radius;
250
+ }
251
+ }
252
+ &.last {
253
+ border-bottom-left-radius: @border-radius;
254
+ .table-cell:first-child {
255
+ border-bottom-left-radius: @border-radius;
256
+ }
257
+ }
258
+ }
259
+ .no-group {
260
+ .row-item:last-child {
261
+ .bor-left-shadow();
262
+ }
263
+ }
264
+ }
265
+ .main-panel {
266
+ flex: 1 0;
267
+ z-index: 0;
268
+ .group-label,
269
+ .row-item {
270
+ border-left: 0 !important;
271
+ }
272
+ .group-label {
273
+ .bor-radius-right();
274
+ }
275
+ .row-item {
276
+ &:nth-of-type(1) {
277
+ border-top-right-radius: @border-radius;
278
+ .table-cell:last-child {
279
+ border-top-right-radius: @border-radius;
280
+ }
281
+ }
282
+ &.last {
283
+ border-bottom-right-radius: @border-radius;
284
+ .table-cell:last-child {
285
+ border-bottom-right-radius: @border-radius;
286
+ }
287
+ }
288
+ }
289
+ }
290
+ .container {
291
+ position: relative;
292
+ left: 0;
293
+ top: 0;
294
+ .group-label {
295
+ position: absolute;
296
+ border: 1px solid @--border-color-secondary;
297
+ background-color: #fff;
298
+ .label-row {
299
+ display: flex;
300
+ align-items: center;
301
+ }
302
+ .label-cell {
303
+ align-self: stretch;
304
+ display: inline-flex;
305
+ align-items: center;
306
+ &.expandable-column {
307
+ justify-content: center;
308
+ .button-icon {
309
+ & > .anticon {
310
+ transition: transform 0.3s ease;
311
+ }
312
+ &.expand > .anticon {
313
+ transform: rotate(90deg);
314
+ }
315
+ }
316
+ }
317
+ &.col--fix-left {
318
+ position: sticky;
319
+ z-index: 1;
320
+ }
321
+ .title {
322
+ flex-shrink: 0;
323
+ margin-right: 20px;
324
+ font-weight: 600;
325
+ .empty {
326
+ color: @--text-color-placeholder;
327
+ font-weight: 400;
328
+ }
329
+ }
330
+ }
331
+ }
332
+ .row-item {
333
+ position: absolute;
334
+ border-left: 1px solid @--border-color-secondary;
335
+ &.last {
336
+ .table-cell {
337
+ border-bottom: 1px solid @--border-color-secondary;
338
+ }
339
+ }
340
+ .table-row {
341
+ display: flex;
342
+ align-items: center;
343
+ height: inherit;
344
+ &.row--hover,
345
+ &.row--selection {
346
+ .table-cell {
347
+ background-color: @--background-color-light;
348
+ .middle&:has(.checkbox) {
349
+ .order {
350
+ display: none;
351
+ }
352
+ .checkbox {
353
+ display: inline-flex;
354
+ }
355
+ }
356
+ }
357
+ }
358
+ &.row--highlight {
359
+ .table-cell {
360
+ background-color: @--primary-1;
361
+ }
362
+ }
363
+ &.row--hover {
364
+ .table-cell {
365
+ .drag-icon,
366
+ .expand-icon {
367
+ visibility: visible;
368
+ }
369
+ }
370
+ }
371
+ .cell--expand {
372
+ display: inline-flex;
373
+ padding: 4px;
374
+ font-size: 13px;
375
+ color: @--text-color-placeholder;
376
+ cursor: pointer;
377
+ transform: scaleX(1.15);
378
+ transition: transform 0.3s ease;
379
+ &.fold {
380
+ transform: rotate(-90deg);
381
+ }
382
+ &.disabled {
383
+ color: @--disabled-color;
384
+ cursor: not-allowed;
385
+ }
386
+ }
387
+ }
388
+ }
389
+ }
390
+ // size
391
+ &.small {
392
+ .label-row,
393
+ .table-cell {
394
+ height: 26px;
395
+ }
396
+ }
397
+ &.middle {
398
+ .label-row,
399
+ .table-cell {
400
+ height: 34px;
401
+ }
402
+ }
403
+ &.large {
404
+ .label-row,
405
+ .table-cell {
406
+ height: 42px;
407
+ }
408
+ }
409
+ }