plataforma-fundacao-componentes 2.22.7 → 2.22.8
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/dist/components/table/components/TableUpperHeader/TableUpperHeader.d.ts +18 -0
- package/dist/components/table/components/leftCheckboxWithLabel/LeftCheckboxWithLabel.d.ts +8 -1
- package/dist/components/tableWithOverflow/TableWithOverflow.d.ts +22 -2
- package/dist/hooks/useDraggableScroll/useDraggableScroll.d.ts +2 -0
- package/dist/index.css +284 -188
- package/dist/index.js +246 -343
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +246 -343
- package/dist/index.modern.js.map +1 -1
- package/package.json +8 -8
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './TableUpperHeader.scss';
|
|
3
|
+
declare type upperHeaderButtonType = {
|
|
4
|
+
id?: string;
|
|
5
|
+
onClick?: () => void;
|
|
6
|
+
label?: string;
|
|
7
|
+
leftIcon?: JSX.Element | React.ReactNode;
|
|
8
|
+
rightIcon?: JSX.Element | React.ReactNode;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
};
|
|
11
|
+
export interface TableUpperHeaderProps {
|
|
12
|
+
active?: boolean;
|
|
13
|
+
leftContent?: upperHeaderButtonType[];
|
|
14
|
+
rightContent?: upperHeaderButtonType[];
|
|
15
|
+
}
|
|
16
|
+
declare function TableUpperHeader(props: TableUpperHeaderProps): JSX.Element;
|
|
17
|
+
declare const _default: React.MemoExoticComponent<typeof TableUpperHeader>;
|
|
18
|
+
export default _default;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React, { HTMLAttributes } from 'react';
|
|
2
|
+
import { TooltipPosition } from '../../../../libraries/Tooltips';
|
|
2
3
|
import { CheckboxProps } from '../../../checkbox/Checkbox';
|
|
3
4
|
import './LeftCheckboxWithLabel.scss';
|
|
4
5
|
export interface LeftCheckboxWithLabelElement extends CheckboxProps {
|
|
@@ -7,12 +8,18 @@ export interface LeftCheckboxWithLabelElement extends CheckboxProps {
|
|
|
7
8
|
spanProps?: never;
|
|
8
9
|
anchorLabelToCheckbox?: never;
|
|
9
10
|
removeUserSelect?: never;
|
|
11
|
+
w100?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export interface SpanPropsExtended extends HTMLAttributes<HTMLSpanElement> {
|
|
14
|
+
'tooltip-position'?: TooltipPosition;
|
|
15
|
+
'tooltip-text'?: string;
|
|
10
16
|
}
|
|
11
17
|
export interface LeftCheckboxWithLabelString extends CheckboxProps {
|
|
12
18
|
label?: string;
|
|
13
19
|
justifyContent?: string;
|
|
14
|
-
spanProps?:
|
|
20
|
+
spanProps?: SpanPropsExtended;
|
|
15
21
|
anchorLabelToCheckbox?: boolean;
|
|
16
22
|
removeUserSelect?: boolean;
|
|
23
|
+
w100?: boolean;
|
|
17
24
|
}
|
|
18
25
|
export declare const LeftCheckboxWithLabel: (props: LeftCheckboxWithLabelElement | LeftCheckboxWithLabelString) => JSX.Element;
|
|
@@ -1,13 +1,33 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { TableUpperHeaderProps } from '../table/components/TableUpperHeader/TableUpperHeader';
|
|
3
3
|
import './TableWithOverflow.scss';
|
|
4
|
-
interface
|
|
4
|
+
interface TableCell extends React.HTMLAttributes<HTMLTableCellElement> {
|
|
5
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char';
|
|
6
|
+
}
|
|
7
|
+
declare type ColumnObject = {
|
|
8
|
+
key: string;
|
|
9
|
+
props?: TableCell;
|
|
10
|
+
value: any;
|
|
11
|
+
absolute?: {
|
|
12
|
+
left?: string;
|
|
13
|
+
right?: string;
|
|
14
|
+
width: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
interface TableWithOverflowProps {
|
|
18
|
+
upperHeader?: TableUpperHeaderProps;
|
|
5
19
|
showArrowControl?: boolean;
|
|
20
|
+
hasActionsCol?: boolean;
|
|
21
|
+
showTopNavigator?: boolean;
|
|
22
|
+
columns: ColumnObject[];
|
|
23
|
+
lines?: any[];
|
|
6
24
|
}
|
|
7
25
|
declare function TableWithOverflow(props: TableWithOverflowProps): JSX.Element;
|
|
8
26
|
declare namespace TableWithOverflow {
|
|
9
27
|
var defaultProps: {
|
|
10
28
|
showArrowControl: boolean;
|
|
29
|
+
hasActionsCol: boolean;
|
|
30
|
+
showTopNavigator: boolean;
|
|
11
31
|
};
|
|
12
32
|
}
|
|
13
33
|
declare const _default: React.MemoExoticComponent<typeof TableWithOverflow>;
|
package/dist/index.css
CHANGED
|
@@ -14394,16 +14394,21 @@ h5 {
|
|
|
14394
14394
|
.component-table-left-checkbox-with-label {
|
|
14395
14395
|
display: flex;
|
|
14396
14396
|
align-items: center;
|
|
14397
|
-
width: 100%;
|
|
14397
|
+
width: 100%;
|
|
14398
|
+
overflow: hidden; }
|
|
14398
14399
|
.component-table-left-checkbox-with-label .component-table-left-checkbox-with-label-checkbox-wrapper {
|
|
14399
14400
|
display: flex;
|
|
14400
14401
|
align-items: center;
|
|
14401
14402
|
justify-content: center; }
|
|
14402
14403
|
.component-table-left-checkbox-with-label .component-table-left-checkbox-with-label-label-wrapper {
|
|
14403
|
-
display:
|
|
14404
|
-
align-items: center;
|
|
14404
|
+
display: block;
|
|
14405
14405
|
margin-left: 8px;
|
|
14406
|
-
width: calc(100% - 24px);
|
|
14406
|
+
max-width: calc(100% - 24px);
|
|
14407
|
+
overflow: hidden;
|
|
14408
|
+
text-overflow: ellipsis;
|
|
14409
|
+
white-space: nowrap; }
|
|
14410
|
+
.component-table-left-checkbox-with-label.w-100 .component-table-left-checkbox-with-label-label-wrapper {
|
|
14411
|
+
width: 100%; }
|
|
14407
14412
|
|
|
14408
14413
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
14409
14414
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
@@ -15076,200 +15081,291 @@ h5 {
|
|
|
15076
15081
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
15077
15082
|
background-color: #bfc7bf; }
|
|
15078
15083
|
|
|
15079
|
-
.component-
|
|
15084
|
+
.component-upper-header-table {
|
|
15085
|
+
width: 100%;
|
|
15086
|
+
border-radius: 8px 8px 0 0;
|
|
15087
|
+
padding: 0 8px;
|
|
15088
|
+
display: flex;
|
|
15089
|
+
align-items: center;
|
|
15090
|
+
justify-content: space-between;
|
|
15091
|
+
flex-wrap: wrap;
|
|
15092
|
+
border-bottom: 1px solid;
|
|
15093
|
+
transition: background-color 0.3s ease, color 0.3s ease;
|
|
15094
|
+
background-color: #cdd3cd;
|
|
15095
|
+
color: #828a82;
|
|
15096
|
+
border-color: #828a82; }
|
|
15097
|
+
.component-upper-header-table button {
|
|
15098
|
+
font-size: 16px;
|
|
15099
|
+
color: #828a82;
|
|
15100
|
+
border-color: #828a82;
|
|
15101
|
+
transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
|
|
15102
|
+
outline: none;
|
|
15103
|
+
-webkit-appearance: none;
|
|
15104
|
+
border: none;
|
|
15105
|
+
padding: 8px;
|
|
15106
|
+
display: flex;
|
|
15107
|
+
align-items: center;
|
|
15108
|
+
justify-content: flex-start;
|
|
15109
|
+
background-color: rgba(0, 0, 0, 0); }
|
|
15110
|
+
.component-upper-header-table button:not(:disabled) {
|
|
15111
|
+
cursor: pointer; }
|
|
15112
|
+
.component-upper-header-table button:not(:disabled):active {
|
|
15113
|
+
transform: scale(0.95, 0.9); }
|
|
15114
|
+
.component-upper-header-table button span {
|
|
15115
|
+
display: flex;
|
|
15116
|
+
align-items: center;
|
|
15117
|
+
justify-content: center; }
|
|
15118
|
+
.component-upper-header-table button span:first-child {
|
|
15119
|
+
padding-right: 8px; }
|
|
15120
|
+
.component-upper-header-table button span:last-child {
|
|
15121
|
+
padding-left: 8px; }
|
|
15122
|
+
.component-upper-header-table button span svg {
|
|
15123
|
+
max-width: 20px !important;
|
|
15124
|
+
max-height: 20px !important; }
|
|
15125
|
+
.component-upper-header-table.active {
|
|
15126
|
+
background-color: #d7e6c8;
|
|
15127
|
+
color: #3fa110;
|
|
15128
|
+
border-color: #3fa110; }
|
|
15129
|
+
.component-upper-header-table.active button {
|
|
15130
|
+
background-color: #d7e6c8;
|
|
15131
|
+
color: #3fa110; }
|
|
15132
|
+
.component-upper-header-table .component-upper-header-table-left {
|
|
15133
|
+
display: flex;
|
|
15134
|
+
flex-wrap: wrap; }
|
|
15135
|
+
.component-upper-header-table .component-upper-header-table-right {
|
|
15136
|
+
display: flex;
|
|
15137
|
+
flex-wrap: wrap; }
|
|
15138
|
+
|
|
15139
|
+
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
15140
|
+
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
15141
|
+
:export {
|
|
15142
|
+
white: #fefefe;
|
|
15143
|
+
darkenWhite: #efefef;
|
|
15144
|
+
black: #121212;
|
|
15145
|
+
transparent: rgba(0, 0, 0, 0);
|
|
15146
|
+
primary: #3fa110;
|
|
15147
|
+
primaryDark: #33820d;
|
|
15148
|
+
primaryLight: #d7e6c8;
|
|
15149
|
+
secondaryDarker: #323c32;
|
|
15150
|
+
secondaryDark: #5a645a;
|
|
15151
|
+
secondary: #828a82;
|
|
15152
|
+
secondaryLight: #cdd3cd;
|
|
15153
|
+
secondaryLighter: #f8f9f7;
|
|
15154
|
+
danger: #e60000;
|
|
15155
|
+
dangerLight: #ffb4b4;
|
|
15156
|
+
dangerDark: #ab4745;
|
|
15157
|
+
warning: #ffcd00;
|
|
15158
|
+
warningLight: #ffeb98;
|
|
15159
|
+
warningDark: #765f00; }
|
|
15160
|
+
|
|
15161
|
+
:root {
|
|
15162
|
+
--rowPadding: 0;
|
|
15163
|
+
--colPadding: 8px; }
|
|
15164
|
+
|
|
15165
|
+
:export {
|
|
15166
|
+
widthXs: 575.98px;
|
|
15167
|
+
widthSm: 767.98px;
|
|
15168
|
+
widthMd: 991.98px;
|
|
15169
|
+
widthLg: 1199.98px; }
|
|
15170
|
+
|
|
15171
|
+
body.sb-show-main.sb-main-padded {
|
|
15172
|
+
padding: 15px; }
|
|
15173
|
+
|
|
15174
|
+
*.nunito {
|
|
15175
|
+
font-family: "Nunito", sans-serif; }
|
|
15176
|
+
|
|
15177
|
+
*:not(.nunito) {
|
|
15178
|
+
font-family: "Exo 2", sans-serif; }
|
|
15179
|
+
|
|
15180
|
+
.document-grabbing {
|
|
15181
|
+
cursor: -webkit-grabbing !important;
|
|
15182
|
+
cursor: grabbing !important; }
|
|
15183
|
+
|
|
15184
|
+
h1 {
|
|
15185
|
+
font-size: 36px;
|
|
15186
|
+
font-weight: 600;
|
|
15187
|
+
margin: 0; }
|
|
15188
|
+
|
|
15189
|
+
h2 {
|
|
15190
|
+
font-size: 32px;
|
|
15191
|
+
font-weight: 500;
|
|
15192
|
+
margin: 0; }
|
|
15193
|
+
|
|
15194
|
+
h3 {
|
|
15195
|
+
font-size: 24px;
|
|
15196
|
+
font-weight: 500;
|
|
15197
|
+
margin: 0; }
|
|
15198
|
+
|
|
15199
|
+
h4 {
|
|
15200
|
+
font-size: 18px;
|
|
15201
|
+
font-weight: 500;
|
|
15202
|
+
margin: 0; }
|
|
15203
|
+
|
|
15204
|
+
h5 {
|
|
15080
15205
|
font-family: "Nunito", sans-serif;
|
|
15081
|
-
|
|
15206
|
+
font-size: 24px;
|
|
15207
|
+
font-weight: 400;
|
|
15208
|
+
margin: 0; }
|
|
15209
|
+
|
|
15210
|
+
.fade-enter {
|
|
15211
|
+
transition: opacity 0.2s ease;
|
|
15212
|
+
position: absolute;
|
|
15213
|
+
opacity: 0; }
|
|
15214
|
+
|
|
15215
|
+
.fade-enter-active {
|
|
15216
|
+
position: absolute;
|
|
15217
|
+
opacity: 1; }
|
|
15218
|
+
|
|
15219
|
+
.fade-exit {
|
|
15220
|
+
transition: opacity 0.15s ease;
|
|
15221
|
+
position: absolute;
|
|
15222
|
+
opacity: 1; }
|
|
15223
|
+
|
|
15224
|
+
.fade-exit-active {
|
|
15225
|
+
position: absolute;
|
|
15226
|
+
opacity: 0; }
|
|
15227
|
+
|
|
15228
|
+
.fade-exit-done {
|
|
15229
|
+
position: absolute;
|
|
15230
|
+
opacity: 0; }
|
|
15231
|
+
|
|
15232
|
+
* {
|
|
15233
|
+
box-sizing: border-box; }
|
|
15234
|
+
*::-webkit-scrollbar-track {
|
|
15235
|
+
background-color: #f8f9f7; }
|
|
15236
|
+
*::-webkit-scrollbar {
|
|
15237
|
+
width: 12px;
|
|
15238
|
+
height: 12px; }
|
|
15239
|
+
*::-webkit-scrollbar-thumb {
|
|
15240
|
+
-webkit-transition: all 0.3s ease;
|
|
15241
|
+
transition: all 0.3s ease;
|
|
15242
|
+
border-radius: 10px;
|
|
15243
|
+
background-color: #cdd3cd;
|
|
15244
|
+
border-width: 3px;
|
|
15245
|
+
border-style: solid;
|
|
15246
|
+
border-color: #f8f9f7; }
|
|
15247
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
15248
|
+
border-width: 2px;
|
|
15249
|
+
background-color: #bfc7bf; }
|
|
15250
|
+
*::-webkit-scrollbar-button {
|
|
15251
|
+
display: none; }
|
|
15252
|
+
|
|
15253
|
+
.scroll-white::-webkit-scrollbar-track {
|
|
15254
|
+
background-color: #fefefe; }
|
|
15255
|
+
|
|
15256
|
+
.scroll-white::-webkit-scrollbar-thumb {
|
|
15257
|
+
background-color: #cdd3cd;
|
|
15258
|
+
border-color: #fefefe; }
|
|
15259
|
+
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
15260
|
+
background-color: #bfc7bf; }
|
|
15261
|
+
|
|
15262
|
+
.component-table-with-overflow {
|
|
15082
15263
|
width: 100%; }
|
|
15083
|
-
.component-table-with-overflow
|
|
15084
|
-
font-family: "Nunito", sans-serif !important; }
|
|
15085
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table {
|
|
15264
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper {
|
|
15086
15265
|
width: 100%;
|
|
15087
|
-
|
|
15088
|
-
|
|
15089
|
-
|
|
15090
|
-
|
|
15091
|
-
|
|
15092
|
-
|
|
15093
|
-
|
|
15094
|
-
|
|
15095
|
-
|
|
15096
|
-
|
|
15097
|
-
|
|
15098
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-left .component-table-with-overflow-body .component-table-with-overflow-cell:first-child,
|
|
15099
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-left .component-table-with-overflow-header .component-table-with-overflow-cell:first-child {
|
|
15100
|
-
justify-content: flex-start; }
|
|
15101
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-left .component-table-with-overflow-body .component-table-with-overflow-row.disabled,
|
|
15102
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-left .component-table-with-overflow-header .component-table-with-overflow-row.disabled {
|
|
15103
|
-
position: relative; }
|
|
15104
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-left .component-table-with-overflow-body .component-table-with-overflow-row.disabled:first-child::after,
|
|
15105
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-left .component-table-with-overflow-header .component-table-with-overflow-row.disabled:first-child::after {
|
|
15106
|
-
border-radius: 8px 0 0 0; }
|
|
15107
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-left .component-table-with-overflow-body .component-table-with-overflow-row.disabled:last-child::after,
|
|
15108
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-left .component-table-with-overflow-header .component-table-with-overflow-row.disabled:last-child::after {
|
|
15109
|
-
border-radius: 0 0 0 8px; }
|
|
15110
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-left .component-table-with-overflow-body .component-table-with-overflow-row.disabled::after,
|
|
15111
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-left .component-table-with-overflow-header .component-table-with-overflow-row.disabled::after {
|
|
15112
|
-
background-color: #efefef;
|
|
15113
|
-
content: '';
|
|
15114
|
-
position: absolute;
|
|
15115
|
-
height: 100%;
|
|
15116
|
-
width: 8px;
|
|
15117
|
-
left: -8px;
|
|
15118
|
-
top: 0; }
|
|
15119
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-mid {
|
|
15120
|
-
width: 1000%; }
|
|
15121
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-mid.over {
|
|
15122
|
-
overflow-x: auto;
|
|
15123
|
-
cursor: grab;
|
|
15124
|
-
cursor: -webkit-grab;
|
|
15125
|
-
-webkit-user-select: none;
|
|
15126
|
-
-moz-user-select: none;
|
|
15127
|
-
-ms-user-select: none;
|
|
15128
|
-
user-select: none; }
|
|
15129
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-mid.over:active {
|
|
15130
|
-
cursor: grabbing !important;
|
|
15131
|
-
cursor: -webkit-grabbing !important; }
|
|
15132
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-mid:not(.over) {
|
|
15133
|
-
cursor: inherit;
|
|
15134
|
-
overflow-x: visible; }
|
|
15135
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-mid .component-table-with-overflow-cell {
|
|
15136
|
-
justify-content: center;
|
|
15266
|
+
position: relative; }
|
|
15267
|
+
@media screen and (max-width: 767.98px) {
|
|
15268
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper {
|
|
15269
|
+
padding: 0 !important; } }
|
|
15270
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table {
|
|
15271
|
+
overflow-x: auto;
|
|
15272
|
+
overflow-y: visible; }
|
|
15273
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table {
|
|
15274
|
+
width: 100%;
|
|
15275
|
+
border-spacing: 0; }
|
|
15276
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table thead {
|
|
15137
15277
|
background-color: #fefefe; }
|
|
15138
|
-
.component-table-with-overflow .component-table-with-overflow-
|
|
15139
|
-
|
|
15140
|
-
|
|
15141
|
-
|
|
15142
|
-
|
|
15143
|
-
|
|
15144
|
-
|
|
15145
|
-
|
|
15146
|
-
|
|
15147
|
-
|
|
15148
|
-
|
|
15149
|
-
|
|
15150
|
-
|
|
15151
|
-
|
|
15278
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table thead tr:first-child th {
|
|
15279
|
+
height: 44px; }
|
|
15280
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table thead tr:first-child th:first-child {
|
|
15281
|
+
padding: 0 4px;
|
|
15282
|
+
border-radius: 8px 0 0 8px; }
|
|
15283
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table thead tr:first-child th:last-child {
|
|
15284
|
+
padding: 0 4px;
|
|
15285
|
+
border-radius: 0 8px 8px 0; }
|
|
15286
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table thead tr th {
|
|
15287
|
+
background-color: #fefefe;
|
|
15288
|
+
padding: 12px 8px;
|
|
15289
|
+
white-space: nowrap; }
|
|
15290
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table thead tr:nth-child(2) {
|
|
15291
|
+
height: 12px; }
|
|
15292
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table tbody tr td {
|
|
15293
|
+
background-color: #fefefe;
|
|
15294
|
+
padding: 12px 8px;
|
|
15295
|
+
white-space: nowrap; }
|
|
15296
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table tbody tr td:first-child, .component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table tbody tr td:last-child {
|
|
15297
|
+
padding: 0 4px; }
|
|
15298
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table tbody tr[aria-disabled='true'] td {
|
|
15299
|
+
background-color: #efefef; }
|
|
15300
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table tbody tr:first-child td:first-child {
|
|
15301
|
+
border-radius: 8px 0 0 0; }
|
|
15302
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table tbody tr:first-child td:last-child {
|
|
15152
15303
|
border-radius: 0 8px 0 0; }
|
|
15153
|
-
.component-table-with-overflow .component-table-with-overflow-
|
|
15304
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table tbody tr:last-child td:first-child {
|
|
15305
|
+
border-radius: 0 0 0 8px; }
|
|
15306
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table tbody tr:last-child td:last-child {
|
|
15154
15307
|
border-radius: 0 0 8px 0; }
|
|
15155
|
-
.component-table-with-overflow .component-table-with-overflow-
|
|
15156
|
-
|
|
15157
|
-
|
|
15158
|
-
|
|
15159
|
-
|
|
15160
|
-
|
|
15161
|
-
|
|
15162
|
-
|
|
15163
|
-
|
|
15164
|
-
|
|
15165
|
-
|
|
15166
|
-
|
|
15167
|
-
|
|
15168
|
-
|
|
15169
|
-
|
|
15170
|
-
|
|
15171
|
-
|
|
15172
|
-
|
|
15173
|
-
|
|
15174
|
-
|
|
15175
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-body {
|
|
15176
|
-
background-color: #fefefe;
|
|
15177
|
-
width: 100%; }
|
|
15178
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-body .component-table-with-overflow-row {
|
|
15179
|
-
display: flex; }
|
|
15180
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-body .component-table-with-overflow-row.disabled .component-table-with-overflow-cell {
|
|
15181
|
-
color: #828a82;
|
|
15182
|
-
background-color: #efefef; }
|
|
15183
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-body .component-table-with-overflow-row:not(:last-child) .component-table-with-overflow-cell {
|
|
15184
|
-
border-bottom: 1px solid #cdd3cd; }
|
|
15185
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table .component-table-with-overflow-body .component-table-with-overflow-row .component-table-with-overflow-cell {
|
|
15186
|
-
color: #323c32;
|
|
15187
|
-
text-align: center;
|
|
15188
|
-
vertical-align: middle;
|
|
15189
|
-
display: flex;
|
|
15190
|
-
align-items: center;
|
|
15191
|
-
padding: 8px; }
|
|
15192
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table.has-upper-header .component-table-with-overflow-left .component-table-with-overflow-header {
|
|
15193
|
-
border-radius: 0 0 0 8px !important; }
|
|
15194
|
-
.component-table-with-overflow .component-table-with-overflow-outer-table .component-table-with-overflow-table.has-upper-header .component-table-with-overflow-right .component-table-with-overflow-header {
|
|
15195
|
-
border-radius: 0 0 8px 0 !important; }
|
|
15196
|
-
.component-table-with-overflow .component-table-with-overflow-upper-header {
|
|
15197
|
-
width: 100%;
|
|
15198
|
-
border-radius: 8px 8px 0 0;
|
|
15199
|
-
padding: 0 8px;
|
|
15200
|
-
display: flex;
|
|
15201
|
-
align-items: center;
|
|
15202
|
-
justify-content: flex-start;
|
|
15203
|
-
flex-wrap: wrap;
|
|
15204
|
-
border-bottom: 1px solid;
|
|
15205
|
-
transition: background-color 0.3s ease, color 0.3s ease;
|
|
15206
|
-
background-color: #cdd3cd;
|
|
15207
|
-
color: #828a82;
|
|
15208
|
-
border-color: #828a82; }
|
|
15209
|
-
.component-table-with-overflow .component-table-with-overflow-upper-header button {
|
|
15210
|
-
font-size: 16px;
|
|
15211
|
-
color: #828a82;
|
|
15212
|
-
border-color: #828a82;
|
|
15213
|
-
transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
|
|
15214
|
-
outline: none;
|
|
15215
|
-
-webkit-appearance: none;
|
|
15216
|
-
border: none;
|
|
15217
|
-
padding: 8px;
|
|
15308
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table tbody tr:not(:last-child) td:not(:first-child):not(:last-child) {
|
|
15309
|
+
border-bottom: 1px solid #cdd3cd; }
|
|
15310
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-outer-table table tbody tr:last-child td:not(:first-child):not(:last-child) {
|
|
15311
|
+
height: 44px; }
|
|
15312
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper.has-upper-header .component-table-with-overflow-outer-table
|
|
15313
|
+
table
|
|
15314
|
+
thead
|
|
15315
|
+
tr:first-child th:first-child {
|
|
15316
|
+
border-radius: 0 0 0 8px; }
|
|
15317
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper.has-upper-header .component-table-with-overflow-outer-table
|
|
15318
|
+
table
|
|
15319
|
+
thead
|
|
15320
|
+
tr:first-child th:last-child {
|
|
15321
|
+
border-radius: 0 0 8px 0; }
|
|
15322
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-table-arrows {
|
|
15323
|
+
position: absolute;
|
|
15324
|
+
right: 8px;
|
|
15325
|
+
z-index: +1;
|
|
15326
|
+
display: flex;
|
|
15327
|
+
height: 44px;
|
|
15218
15328
|
display: flex;
|
|
15219
15329
|
align-items: center;
|
|
15220
|
-
|
|
15221
|
-
|
|
15222
|
-
|
|
15223
|
-
|
|
15224
|
-
|
|
15225
|
-
|
|
15226
|
-
.component-table-with-overflow .component-table-with-overflow-
|
|
15330
|
+
background-color: #fefefe; }
|
|
15331
|
+
@media screen and (max-width: 767.98px) {
|
|
15332
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-table-arrows {
|
|
15333
|
+
display: none; } }
|
|
15334
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-table-arrows button:first-child {
|
|
15335
|
+
margin-right: 2px; }
|
|
15336
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .component-table-with-overflow-table-arrows svg {
|
|
15337
|
+
width: 16px;
|
|
15338
|
+
height: 16px; }
|
|
15339
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .actions-cell {
|
|
15340
|
+
width: 40px;
|
|
15341
|
+
height: 44px;
|
|
15342
|
+
padding: 6px 8px !important; }
|
|
15343
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .actions-cell.absolute {
|
|
15344
|
+
padding: 0 !important;
|
|
15227
15345
|
display: flex;
|
|
15228
15346
|
align-items: center;
|
|
15229
|
-
justify-content: center;
|
|
15230
|
-
|
|
15231
|
-
|
|
15232
|
-
|
|
15233
|
-
|
|
15234
|
-
|
|
15235
|
-
|
|
15236
|
-
|
|
15237
|
-
|
|
15238
|
-
.component-table-with-overflow .component-table-with-overflow-
|
|
15239
|
-
|
|
15240
|
-
|
|
15241
|
-
|
|
15242
|
-
|
|
15243
|
-
|
|
15244
|
-
|
|
15245
|
-
|
|
15246
|
-
|
|
15247
|
-
|
|
15248
|
-
|
|
15249
|
-
|
|
15250
|
-
|
|
15251
|
-
background-color: red; }
|
|
15252
|
-
.component-table-with-overflow-fake-table th,
|
|
15253
|
-
.component-table-with-overflow-fake-table td {
|
|
15254
|
-
white-space: nowrap !important;
|
|
15255
|
-
padding: 14px;
|
|
15256
|
-
border: 1px solid black; }
|
|
15257
|
-
|
|
15258
|
-
.component-table-with-overflow-arrow-control {
|
|
15259
|
-
background-color: #fefefe;
|
|
15260
|
-
display: flex;
|
|
15261
|
-
align-items: center;
|
|
15262
|
-
justify-content: center;
|
|
15263
|
-
height: 100%;
|
|
15264
|
-
width: 45px;
|
|
15265
|
-
position: absolute;
|
|
15266
|
-
top: 0;
|
|
15267
|
-
right: 8px; }
|
|
15268
|
-
.component-table-with-overflow-arrow-control button:last-child {
|
|
15269
|
-
margin-left: 2px; }
|
|
15270
|
-
.component-table-with-overflow-arrow-control svg {
|
|
15271
|
-
width: 18px;
|
|
15272
|
-
height: 18px; }
|
|
15347
|
+
justify-content: center; }
|
|
15348
|
+
@media screen and (min-width: 767.98px) {
|
|
15349
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper td[data-draggable='true'] {
|
|
15350
|
+
-webkit-user-select: none;
|
|
15351
|
+
-moz-user-select: none;
|
|
15352
|
+
-ms-user-select: none;
|
|
15353
|
+
user-select: none;
|
|
15354
|
+
cursor: -webkit-grab;
|
|
15355
|
+
cursor: grab; }
|
|
15356
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper table:active td[data-draggable='true'] {
|
|
15357
|
+
cursor: -webkit-grabbing !important;
|
|
15358
|
+
cursor: grabbing !important; }
|
|
15359
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .absolute {
|
|
15360
|
+
position: absolute; }
|
|
15361
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .left-0 {
|
|
15362
|
+
left: 0;
|
|
15363
|
+
width: 8px;
|
|
15364
|
+
height: 44px; }
|
|
15365
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper .right-0 {
|
|
15366
|
+
right: 0;
|
|
15367
|
+
width: 8px;
|
|
15368
|
+
height: 44px; } }
|
|
15273
15369
|
|
|
15274
15370
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
15275
15371
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|