@box/blueprint-web 6.0.3 → 6.1.1
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/lib-esm/data-table/cell/sticky-cell.d.ts +4 -0
- package/lib-esm/data-table/cell/sticky-cell.js +36 -0
- package/lib-esm/data-table/cell/sticky-cell.module.js +4 -0
- package/lib-esm/data-table/data-table-wrapper.d.ts +2 -3
- package/lib-esm/data-table/data-table-wrapper.js +20 -16
- package/lib-esm/data-table/data-table.d.ts +3 -0
- package/lib-esm/data-table/data-table.js +7 -0
- package/lib-esm/data-table/data-table.module.js +1 -1
- package/lib-esm/data-table/index.d.ts +6 -0
- package/lib-esm/index.css +314 -234
- package/lib-esm/index.d.ts +3 -3
- package/lib-esm/index.js +4 -4
- package/lib-esm/list-item/index.js +13 -0
- package/lib-esm/primitives/calendar/calendar.js +1 -0
- package/lib-esm/primitives/calendar/calendar.module.js +1 -1
- package/lib-esm/util-components/scrollable-container/scrollable-container.d.ts +1 -0
- package/lib-esm/util-components/scrollable-container/scrollable-container.js +2 -2
- package/package.json +2 -2
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { type CellProps } from '../../list-item/cell/cell';
|
|
3
|
+
export type StickyCellProps = CellProps;
|
|
4
|
+
export declare const StickyCell: import("react").ForwardRefExoticComponent<CellProps & import("react").RefAttributes<HTMLTableCellElement>>;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import clsx from 'clsx';
|
|
3
|
+
import { forwardRef } from 'react';
|
|
4
|
+
import { Cell } from '../../list-item/index.js';
|
|
5
|
+
import { useScrollContext } from '../../util-components/scrollable-container/scrollable-container.js';
|
|
6
|
+
import styles from './sticky-cell.module.js';
|
|
7
|
+
|
|
8
|
+
const StickyCell = /*#__PURE__*/forwardRef((props, ref) => {
|
|
9
|
+
const {
|
|
10
|
+
children,
|
|
11
|
+
className,
|
|
12
|
+
...rest
|
|
13
|
+
} = props;
|
|
14
|
+
const {
|
|
15
|
+
isScrolledX
|
|
16
|
+
} = useScrollContext();
|
|
17
|
+
return jsxs(Cell, {
|
|
18
|
+
ref: ref,
|
|
19
|
+
className: clsx(styles.stickyCell, className),
|
|
20
|
+
...rest,
|
|
21
|
+
children: [jsx("div", {
|
|
22
|
+
className: styles.stickyCellLeft
|
|
23
|
+
}), jsx("div", {
|
|
24
|
+
className: styles.childrenWrapper,
|
|
25
|
+
children: children
|
|
26
|
+
}), jsx("div", {
|
|
27
|
+
className: styles.stickyCellRight
|
|
28
|
+
}), jsx("div", {
|
|
29
|
+
className: clsx(styles.verticalBar, {
|
|
30
|
+
[styles.isScrolledX]: isScrolledX
|
|
31
|
+
})
|
|
32
|
+
})]
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
export { StickyCell };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import '../../index.css';
|
|
2
|
+
var styles = {"stickyCell":"sticky-cell-module_stickyCell__-Rl0x","childrenWrapper":"sticky-cell-module_childrenWrapper__qjguw","verticalBar":"sticky-cell-module_verticalBar__AgXfU","isScrolledX":"sticky-cell-module_isScrolledX__xcMJ6","stickyCellLeft":"sticky-cell-module_stickyCellLeft__F3YAG","stickyCellRight":"sticky-cell-module_stickyCellRight__yQjUM"};
|
|
3
|
+
|
|
4
|
+
export { styles as default };
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { type HTMLAttributes, type ReactNode } from 'react';
|
|
2
|
-
interface
|
|
2
|
+
export interface DataTableWrapperProps extends HTMLAttributes<HTMLDivElement> {
|
|
3
3
|
children: ReactNode;
|
|
4
4
|
}
|
|
5
|
-
export declare const DataTableWrapper: import("react").ForwardRefExoticComponent<
|
|
6
|
-
export {};
|
|
5
|
+
export declare const DataTableWrapper: import("react").ForwardRefExoticComponent<DataTableWrapperProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import clsx from 'clsx';
|
|
3
3
|
import { forwardRef, useRef } from 'react';
|
|
4
|
-
import { useScroll } from '../util-components/scrollable-container/scrollable-container.js';
|
|
4
|
+
import { useScroll, ScrollContext } from '../util-components/scrollable-container/scrollable-container.js';
|
|
5
5
|
import { useForkRef } from '../utils/useForkRef.js';
|
|
6
6
|
import styles from './data-table.module.js';
|
|
7
7
|
|
|
@@ -14,23 +14,27 @@ const DataTableWrapper = /*#__PURE__*/forwardRef((props, forwardedRef) => {
|
|
|
14
14
|
} = props;
|
|
15
15
|
const localRef = useRef(null);
|
|
16
16
|
const {
|
|
17
|
-
value
|
|
18
|
-
offsetTillEndX,
|
|
19
|
-
isScrolledX,
|
|
20
|
-
isScrolledY
|
|
21
|
-
},
|
|
17
|
+
value,
|
|
22
18
|
onScrollThrottled
|
|
23
19
|
} = useScroll(localRef);
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
20
|
+
const {
|
|
21
|
+
offsetTillEndX,
|
|
22
|
+
isScrolledX,
|
|
23
|
+
isScrolledY
|
|
24
|
+
} = value;
|
|
25
|
+
return jsx(ScrollContext.Provider, {
|
|
26
|
+
value: value,
|
|
27
|
+
children: jsx("div", {
|
|
28
|
+
ref: useForkRef(localRef, forwardedRef),
|
|
29
|
+
className: clsx({
|
|
30
|
+
[styles.hideActionWrapperRight]: offsetTillEndX <= hideActionWrapperRightOffsetPx,
|
|
31
|
+
[styles.isScrolledY]: isScrolledY,
|
|
32
|
+
[styles.isScrolledX]: isScrolledX
|
|
33
|
+
}, styles.dataTableWrapper, className),
|
|
34
|
+
onScroll: onScrollThrottled,
|
|
35
|
+
...rest,
|
|
36
|
+
children: children
|
|
37
|
+
})
|
|
34
38
|
});
|
|
35
39
|
});
|
|
36
40
|
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const DataTableWrapper: import("react").ForwardRefExoticComponent<import("./data-table-wrapper").DataTableWrapperProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
3
|
+
export declare const StickyCell: import("react").ForwardRefExoticComponent<import("../list-item/cell/cell").CellProps & import("react").RefAttributes<HTMLTableCellElement>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DataTableWrapper as DataTableWrapper$1 } from './data-table-wrapper.js';
|
|
2
|
+
import { StickyCell as StickyCell$1 } from './cell/sticky-cell.js';
|
|
3
|
+
|
|
4
|
+
const DataTableWrapper = DataTableWrapper$1;
|
|
5
|
+
const StickyCell = StickyCell$1;
|
|
6
|
+
|
|
7
|
+
export { DataTableWrapper, StickyCell };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../index.css';
|
|
2
|
-
var styles = {"dataTableWrapper":"data-table-module_dataTableWrapper__VYLJf","isScrolledX":"data-table-module_isScrolledX__72L-a","
|
|
2
|
+
var styles = {"dataTableWrapper":"data-table-module_dataTableWrapper__VYLJf","isScrolledX":"data-table-module_isScrolledX__72L-a","hideActionWrapperRight":"data-table-module_hideActionWrapperRight__jjb50"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { type DataTableWrapperProps } from './data-table-wrapper';
|
|
3
|
+
import { type StickyCellProps } from './cell/sticky-cell';
|
|
4
|
+
export declare const DataTableWrapper: import("react").ForwardRefExoticComponent<DataTableWrapperProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
|
+
export declare const StickyCell: import("react").ForwardRefExoticComponent<import("../list-item/cell/cell").CellProps & import("react").RefAttributes<HTMLTableCellElement>>;
|
|
6
|
+
export type { StickyCellProps, DataTableWrapperProps };
|
package/lib-esm/index.css
CHANGED
|
@@ -928,24 +928,37 @@
|
|
|
928
928
|
background:var(--gray-white);
|
|
929
929
|
border-radius:var(--radius-2);
|
|
930
930
|
box-shadow:var(--dropshadow-3);
|
|
931
|
+
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
932
|
+
font-size:.875rem;
|
|
933
|
+
font-weight:400;
|
|
934
|
+
letter-spacing:.01875rem;
|
|
935
|
+
line-height:1.25rem;
|
|
931
936
|
max-width:100%;
|
|
932
937
|
padding-block:var(--space-4);
|
|
933
938
|
padding-inline:var(--space-4);
|
|
939
|
+
text-decoration:none;
|
|
940
|
+
text-transform:none;
|
|
934
941
|
width:-moz-fit-content;
|
|
935
942
|
width:fit-content;
|
|
936
943
|
}
|
|
937
|
-
.calendar-module_calendar__uhtG4
|
|
944
|
+
.calendar-module_calendar__uhtG4 .calendar-module_calendarGrid__ifeqZ{
|
|
945
|
+
border-collapse:revert;
|
|
946
|
+
border-spacing:revert;
|
|
947
|
+
}
|
|
948
|
+
.calendar-module_calendar__uhtG4 .calendar-module_calendarGrid__ifeqZ td{
|
|
949
|
+
padding:1px;
|
|
950
|
+
}
|
|
951
|
+
.calendar-module_calendar__uhtG4 .calendar-module_calendarHeaderCell__C8nNn{
|
|
952
|
+
color:var(--text-text-on-light-secondary);
|
|
938
953
|
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
939
954
|
font-size:.875rem;
|
|
940
955
|
font-weight:400;
|
|
941
956
|
letter-spacing:.01875rem;
|
|
942
957
|
line-height:1.25rem;
|
|
958
|
+
text-align:center;
|
|
943
959
|
text-decoration:none;
|
|
944
960
|
text-transform:none;
|
|
945
961
|
}
|
|
946
|
-
.calendar-module_calendar__uhtG4 .calendar-module_calendarHeaderCell__C8nNn{
|
|
947
|
-
color:var(--text-text-on-light-secondary);
|
|
948
|
-
}
|
|
949
962
|
.calendar-module_calendar__uhtG4 .calendar-module_calendarHeader__jofDH{
|
|
950
963
|
align-items:center;
|
|
951
964
|
color:var(--gray-90);
|
|
@@ -1144,9 +1157,15 @@
|
|
|
1144
1157
|
white-space:nowrap;
|
|
1145
1158
|
}
|
|
1146
1159
|
.date-picker-module_datePicker__fIcNd .date-picker-module_group__-g-aa .date-picker-module_groupContainer__-JgF6 .date-picker-module_groupContainerInput__HbKsW .date-picker-module_groupContainerInputSegment__lf6no{
|
|
1160
|
+
border:unset;
|
|
1161
|
+
border-radius:unset;
|
|
1162
|
+
box-shadow:unset;
|
|
1147
1163
|
color:var(--text-text-on-light);
|
|
1148
1164
|
height:-moz-fit-content;
|
|
1149
1165
|
height:fit-content;
|
|
1166
|
+
padding:unset;
|
|
1167
|
+
transition:unset;
|
|
1168
|
+
width:unset;
|
|
1150
1169
|
}
|
|
1151
1170
|
.date-picker-module_datePicker__fIcNd .date-picker-module_group__-g-aa .date-picker-module_groupContainer__-JgF6 .date-picker-module_groupContainerInput__HbKsW .date-picker-module_groupContainerInputSegment__lf6no[data-placeholder]{
|
|
1152
1171
|
color:var(--text-text-on-light-secondary);
|
|
@@ -2060,16 +2079,21 @@
|
|
|
2060
2079
|
border-radius:.375rem;
|
|
2061
2080
|
box-shadow:inset 0 .125rem .25rem 0 #0000001a;
|
|
2062
2081
|
box-sizing:border-box;
|
|
2082
|
+
color:var(--text-text-on-light);
|
|
2063
2083
|
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
2064
2084
|
font-size:.875rem;
|
|
2065
2085
|
font-weight:400;
|
|
2066
2086
|
height:2.5rem;
|
|
2067
2087
|
letter-spacing:.01875rem;
|
|
2068
2088
|
line-height:1.25rem;
|
|
2069
|
-
padding-
|
|
2070
|
-
padding-inline
|
|
2089
|
+
padding-block:0;
|
|
2090
|
+
padding-inline:.75rem;
|
|
2071
2091
|
text-decoration:none;
|
|
2072
2092
|
text-transform:none;
|
|
2093
|
+
width:unset;
|
|
2094
|
+
}
|
|
2095
|
+
.text-input-module_textInputContainer__UJn59 .text-input-module_textInput__i84NX:hover{
|
|
2096
|
+
box-shadow:var(--innershadow-1);
|
|
2073
2097
|
}
|
|
2074
2098
|
.text-input-module_textInputContainer__UJn59 .text-input-module_textInput__i84NX::placeholder{
|
|
2075
2099
|
color:#6f6f6f;
|
|
@@ -2081,6 +2105,15 @@
|
|
|
2081
2105
|
outline:0;
|
|
2082
2106
|
padding-inline-start:.6875rem;
|
|
2083
2107
|
}
|
|
2108
|
+
.text-input-module_textInputContainer__UJn59 .text-input-module_textInput__i84NX:disabled{
|
|
2109
|
+
background:var(--surface-input-surface);
|
|
2110
|
+
border-color:var(--border-input-border);
|
|
2111
|
+
box-shadow:var(--innershadow-1);
|
|
2112
|
+
color:var(--text-text-on-light);
|
|
2113
|
+
}
|
|
2114
|
+
.text-input-module_textInputContainer__UJn59 .text-input-module_textInput__i84NX:disabled:hover{
|
|
2115
|
+
border-color:var(--border-input-border);
|
|
2116
|
+
}
|
|
2084
2117
|
.text-input-module_textInputContainer__UJn59 .text-input-module_textInput__i84NX:focus-visible{
|
|
2085
2118
|
background:#fff;
|
|
2086
2119
|
border:.125rem solid #2486fc;
|
|
@@ -2402,9 +2435,10 @@
|
|
|
2402
2435
|
}
|
|
2403
2436
|
|
|
2404
2437
|
.text-area-autosize-module_textArea__o-VaJ{
|
|
2405
|
-
background
|
|
2438
|
+
background:var(--surface-input-surface);
|
|
2406
2439
|
border:none;
|
|
2407
|
-
box-shadow:
|
|
2440
|
+
box-shadow:var(--innershadow-1);
|
|
2441
|
+
color:var(--text-text-on-light);
|
|
2408
2442
|
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
2409
2443
|
font-size:.875rem;
|
|
2410
2444
|
font-weight:400;
|
|
@@ -2422,10 +2456,26 @@
|
|
|
2422
2456
|
color:#6f6f6f;
|
|
2423
2457
|
opacity:1;
|
|
2424
2458
|
}
|
|
2425
|
-
.text-area-autosize-module_textArea__o-VaJ.text-area-autosize-module_error__EK-A
|
|
2459
|
+
.text-area-autosize-module_textArea__o-VaJ.text-area-autosize-module_error__EK-A-{
|
|
2426
2460
|
background:#fff;
|
|
2427
2461
|
outline:0;
|
|
2428
2462
|
}
|
|
2463
|
+
.text-area-autosize-module_textArea__o-VaJ:focus{
|
|
2464
|
+
border:none;
|
|
2465
|
+
}
|
|
2466
|
+
.text-area-autosize-module_textArea__o-VaJ:hover{
|
|
2467
|
+
box-shadow:var(--innershadow-1);
|
|
2468
|
+
}
|
|
2469
|
+
.text-area-autosize-module_textArea__o-VaJ:focus-visible{
|
|
2470
|
+
background:#fff;
|
|
2471
|
+
outline:0;
|
|
2472
|
+
}
|
|
2473
|
+
.text-area-autosize-module_textArea__o-VaJ:disabled{
|
|
2474
|
+
background:var(--surface-input-surface);
|
|
2475
|
+
border:none;
|
|
2476
|
+
box-shadow:var(--innershadow-1);
|
|
2477
|
+
color:var(--text-text-on-light);
|
|
2478
|
+
}
|
|
2429
2479
|
.text-area-autosize-module_textArea__o-VaJ:not(:disabled):not(:focus-visible):not(.text-area-autosize-module_error__EK-A-):hover{
|
|
2430
2480
|
background:#fff;
|
|
2431
2481
|
}
|
|
@@ -2848,7 +2898,7 @@
|
|
|
2848
2898
|
|
|
2849
2899
|
.data-table-module_dataTableWrapper__VYLJf{
|
|
2850
2900
|
--border-radius-datatable:0;
|
|
2851
|
-
--outline-offset-focus-and-selected-row-datatable:-
|
|
2901
|
+
--outline-offset-focus-and-selected-row-datatable:-6px;
|
|
2852
2902
|
--outline-select-color-datatable:#0000;
|
|
2853
2903
|
--sticky-element-z-index:2;
|
|
2854
2904
|
height:100%;
|
|
@@ -2876,6 +2926,9 @@
|
|
|
2876
2926
|
position:sticky;
|
|
2877
2927
|
z-index:var(--sticky-element-z-index);
|
|
2878
2928
|
}
|
|
2929
|
+
.data-table-module_dataTableWrapper__VYLJf table tbody > tr{
|
|
2930
|
+
--is-row-focused:0;
|
|
2931
|
+
}
|
|
2879
2932
|
.data-table-module_dataTableWrapper__VYLJf table tbody > tr > td [data-actionswrapper]::after{
|
|
2880
2933
|
background:inherit;
|
|
2881
2934
|
content:"";
|
|
@@ -2886,243 +2939,34 @@
|
|
|
2886
2939
|
width:100%;
|
|
2887
2940
|
z-index:-1;
|
|
2888
2941
|
}
|
|
2889
|
-
.data-table-module_dataTableWrapper__VYLJf table tbody > tr
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
position:sticky;
|
|
2893
|
-
z-index:var(--sticky-element-z-index);
|
|
2894
|
-
}
|
|
2895
|
-
.data-table-module_dataTableWrapper__VYLJf table tbody > tr > td:first-child[data-focus-visible]{
|
|
2896
|
-
position:sticky;
|
|
2897
|
-
z-index:var(--sticky-element-z-index);
|
|
2942
|
+
.data-table-module_dataTableWrapper__VYLJf table tbody > tr[data-focus-visible]{
|
|
2943
|
+
--outline-offset-focus-cell:var(--outline-offset-focus-row);
|
|
2944
|
+
--is-row-focused:1;
|
|
2898
2945
|
}
|
|
2899
|
-
.data-table-module_dataTableWrapper__VYLJf table tbody > tr
|
|
2900
|
-
|
|
2946
|
+
.data-table-module_dataTableWrapper__VYLJf table tbody > tr[data-focus-visible][aria-selected=true]{
|
|
2947
|
+
--outline-offset-focus-cell:var(--outline-offset-focus-and-selected-row);
|
|
2901
2948
|
}
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
box-sizing:border-box;
|
|
2906
|
-
content:"";
|
|
2907
|
-
height:inherit;
|
|
2908
|
-
height:100%;
|
|
2909
|
-
left:0;
|
|
2910
|
-
pointer-events:none;
|
|
2911
|
-
position:absolute;
|
|
2912
|
-
top:0;
|
|
2913
|
-
width:var(--space-3);
|
|
2914
|
-
width:calc(100% + var(--outline-offset-focus-row));
|
|
2915
|
-
z-index:-1;
|
|
2949
|
+
|
|
2950
|
+
.data-table-module_isScrolledX__72L-a table > thead > tr > th:first-child{
|
|
2951
|
+
overflow:visible;
|
|
2916
2952
|
}
|
|
2917
|
-
.data-table-
|
|
2953
|
+
.data-table-module_isScrolledX__72L-a table > thead > tr > th:first-child::after{
|
|
2918
2954
|
background:inherit;
|
|
2919
|
-
border-
|
|
2920
|
-
box-
|
|
2955
|
+
border-right:1px solid var(--border-divider-border);
|
|
2956
|
+
box-shadow:10px 0 7px -4px var(--item-background);
|
|
2921
2957
|
content:"";
|
|
2922
|
-
height:
|
|
2923
|
-
height:calc(100% + var(--outline-offset)*2);
|
|
2924
|
-
left:100%;
|
|
2925
|
-
pointer-events:none;
|
|
2958
|
+
height:1.5rem;
|
|
2926
2959
|
position:absolute;
|
|
2960
|
+
right:0;
|
|
2927
2961
|
top:50%;
|
|
2928
|
-
transform:
|
|
2962
|
+
transform:translateY(-50%);
|
|
2929
2963
|
width:var(--space-3);
|
|
2930
|
-
|
|
2931
|
-
.data-table-module_dataTableWrapper__VYLJf table tbody > tr[data-focus-visible]{
|
|
2932
|
-
--outline-offset:var(--outline-offset-focus-row);
|
|
2933
|
-
}
|
|
2934
|
-
.data-table-module_dataTableWrapper__VYLJf table tbody > tr[data-focus-visible][aria-selected=true]{
|
|
2935
|
-
--outline-offset:var(--outline-offset-focus-and-selected-row);
|
|
2936
|
-
}
|
|
2937
|
-
.data-table-module_dataTableWrapper__VYLJf table tbody > tr[data-focus-visible] > td:first-child{
|
|
2938
|
-
background-clip:content-box;
|
|
2939
|
-
outline:var(--border-2) solid var(--outline-focus-on-light);
|
|
2940
|
-
outline-offset:var(--outline-offset);
|
|
2941
|
-
}
|
|
2942
|
-
|
|
2943
|
-
.data-table-module_isScrolledX__72L-a tr td:first-child,.data-table-module_isScrolledX__72L-a tr th:first-child{
|
|
2944
|
-
border-right:1px solid var(--border-divider-border);
|
|
2945
|
-
box-shadow:10px 0 7px -4px var(--item-background);
|
|
2946
|
-
}
|
|
2947
|
-
|
|
2948
|
-
.data-table-module_isScrolledY__arf4n table > thead > tr{
|
|
2949
|
-
box-shadow:0 4px 6px -2px rgba(0,0,0,.039);
|
|
2964
|
+
z-index:-1;
|
|
2950
2965
|
}
|
|
2951
2966
|
|
|
2952
2967
|
.data-table-module_hideActionWrapperRight__jjb50 table tbody > tr > td [data-actionswrapper]::after{
|
|
2953
2968
|
display:none;
|
|
2954
2969
|
}
|
|
2955
|
-
|
|
2956
|
-
.empty-state-module_emptyState__Qs2b2{
|
|
2957
|
-
align-items:center;
|
|
2958
|
-
display:flex;
|
|
2959
|
-
flex-direction:column;
|
|
2960
|
-
height:100%;
|
|
2961
|
-
justify-content:center;
|
|
2962
|
-
text-align:center;
|
|
2963
|
-
width:100%;
|
|
2964
|
-
}
|
|
2965
|
-
.empty-state-module_emptyState__Qs2b2 .empty-state-module_illustration__Z63DC{
|
|
2966
|
-
margin-block-end:var(--space-6);
|
|
2967
|
-
}
|
|
2968
|
-
.empty-state-module_emptyState__Qs2b2 .empty-state-module_body__JA15E{
|
|
2969
|
-
max-width:22.5rem;
|
|
2970
|
-
}
|
|
2971
|
-
.empty-state-module_emptyState__Qs2b2 .empty-state-module_body__JA15E:not(:last-child){
|
|
2972
|
-
margin-block-end:var(--space-6);
|
|
2973
|
-
}
|
|
2974
|
-
.empty-state-module_emptyState__Qs2b2 .empty-state-module_heading__rdgZb{
|
|
2975
|
-
margin-block-end:var(--space-3);
|
|
2976
|
-
}
|
|
2977
|
-
.empty-state-module_emptyState__Qs2b2 .empty-state-module_button__w6EgO:not(:last-child){
|
|
2978
|
-
margin-block-end:var(--space-6);
|
|
2979
|
-
}
|
|
2980
|
-
.empty-state-module_emptyState__Qs2b2.empty-state-module_small__q9iTq .empty-state-module_illustration__Z63DC{
|
|
2981
|
-
margin-block-end:var(--space-4);
|
|
2982
|
-
}
|
|
2983
|
-
.empty-state-module_emptyState__Qs2b2.empty-state-module_small__q9iTq .empty-state-module_illustration__Z63DC svg{
|
|
2984
|
-
height:var(--size-14);
|
|
2985
|
-
width:var(--size-14);
|
|
2986
|
-
}
|
|
2987
|
-
.empty-state-module_emptyState__Qs2b2.empty-state-module_small__q9iTq .empty-state-module_body__JA15E{
|
|
2988
|
-
max-width:220px;
|
|
2989
|
-
}
|
|
2990
|
-
.empty-state-module_emptyState__Qs2b2.empty-state-module_small__q9iTq .empty-state-module_body__JA15E:not(:last-child){
|
|
2991
|
-
margin-block-end:var(--space-4);
|
|
2992
|
-
}
|
|
2993
|
-
|
|
2994
|
-
.guided-tooltip-module_content__4P0jU{
|
|
2995
|
-
background-color:var(--gray-white);
|
|
2996
|
-
border:var(--border-1) solid var(--border-card-border);
|
|
2997
|
-
border-radius:var(--radius-4);
|
|
2998
|
-
filter:drop-shadow(0 .25rem .75rem rgba(0, 0, 0, .1));
|
|
2999
|
-
max-width:22.5rem;
|
|
3000
|
-
padding-block-end:var(--space-6);
|
|
3001
|
-
padding-block-start:var(--space-7);
|
|
3002
|
-
padding-inline:var(--space-7);
|
|
3003
|
-
z-index:10;
|
|
3004
|
-
}
|
|
3005
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_body__lf6-N.guided-tooltip-module_noTitle__C-rQU{
|
|
3006
|
-
padding-inline-end:var(--space-6);
|
|
3007
|
-
}
|
|
3008
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_title__WjhyT{
|
|
3009
|
-
margin-block-end:var(--space-2);
|
|
3010
|
-
padding-inline-end:var(--space-6);
|
|
3011
|
-
}
|
|
3012
|
-
.guided-tooltip-module_content__4P0jU * + .guided-tooltip-module_footer__dvCqt{
|
|
3013
|
-
margin-block-start:var(--space-5);
|
|
3014
|
-
}
|
|
3015
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_footer__dvCqt{
|
|
3016
|
-
display:flex;
|
|
3017
|
-
justify-content:flex-end;
|
|
3018
|
-
width:100%;
|
|
3019
|
-
}
|
|
3020
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_actionButtons__JCj8T{
|
|
3021
|
-
display:flex;
|
|
3022
|
-
gap:var(--space-2);
|
|
3023
|
-
justify-content:flex-end;
|
|
3024
|
-
width:100%;
|
|
3025
|
-
}
|
|
3026
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_stepsIndicator__hkoGZ{
|
|
3027
|
-
align-self:center;
|
|
3028
|
-
color:var(--text-text-on-light-secondary);
|
|
3029
|
-
width:100%;
|
|
3030
|
-
}
|
|
3031
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_closeButton__ZVZcg{
|
|
3032
|
-
color:var(--gray-black);
|
|
3033
|
-
position:absolute;
|
|
3034
|
-
right:var(--space-3);
|
|
3035
|
-
top:var(--space-3);
|
|
3036
|
-
}
|
|
3037
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_arrow__JCGwC{
|
|
3038
|
-
align-content:center;
|
|
3039
|
-
display:flex !important;
|
|
3040
|
-
height:var(--size-4);
|
|
3041
|
-
justify-content:center;
|
|
3042
|
-
visibility:visible;
|
|
3043
|
-
width:var(--size-9);
|
|
3044
|
-
}
|
|
3045
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_arrow__JCGwC::after{
|
|
3046
|
-
background-color:var(--gray-white);
|
|
3047
|
-
border-bottom-right-radius:var(--radius-1);
|
|
3048
|
-
border-color:var(--border-card-border);
|
|
3049
|
-
border-style:solid;
|
|
3050
|
-
border-width:0 var(--border-1) var(--border-1) 0;
|
|
3051
|
-
content:"";
|
|
3052
|
-
height:var(--size-6);
|
|
3053
|
-
transform:translateY(-50%) rotate(45deg);
|
|
3054
|
-
width:var(--size-6);
|
|
3055
|
-
}
|
|
3056
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_icon__FZnIm{
|
|
3057
|
-
align-items:center;
|
|
3058
|
-
background-color:var(--box-blue-10);
|
|
3059
|
-
border-radius:var(--radius-2);
|
|
3060
|
-
display:flex;
|
|
3061
|
-
height:var(--size-7);
|
|
3062
|
-
justify-content:center;
|
|
3063
|
-
margin-block-end:var(--space-4);
|
|
3064
|
-
width:var(--size-7);
|
|
3065
|
-
}
|
|
3066
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_icon__FZnIm::after{
|
|
3067
|
-
height:var(--size-4);
|
|
3068
|
-
width:var(--size-4);
|
|
3069
|
-
}
|
|
3070
|
-
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_illustration__CU2kK{
|
|
3071
|
-
border-radius:var(--radius-4);
|
|
3072
|
-
margin-block-start:var(--space-5);
|
|
3073
|
-
width:100%;
|
|
3074
|
-
}
|
|
3075
|
-
table.inline-table-module_inlineTable__Se38I{
|
|
3076
|
-
background:var(--gray-white);
|
|
3077
|
-
border:var(--border-1) solid var(--gray-10);
|
|
3078
|
-
border-collapse:initial;
|
|
3079
|
-
border-color:var(--border-card-border);
|
|
3080
|
-
border-radius:var(--radius-2);
|
|
3081
|
-
border-spacing:0;
|
|
3082
|
-
}
|
|
3083
|
-
table.inline-table-module_inlineTable__Se38I.inline-table-module_borderHidden__nGEm4{
|
|
3084
|
-
border:none;
|
|
3085
|
-
}
|
|
3086
|
-
table.inline-table-module_inlineTable__Se38I.inline-table-module_fullSpan__p2f2m{
|
|
3087
|
-
width:100%;
|
|
3088
|
-
}
|
|
3089
|
-
table.inline-table-module_inlineTable__Se38I td{
|
|
3090
|
-
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
3091
|
-
font-size:.875rem;
|
|
3092
|
-
font-weight:400;
|
|
3093
|
-
letter-spacing:.01875rem;
|
|
3094
|
-
line-height:1.25rem;
|
|
3095
|
-
text-decoration:none;
|
|
3096
|
-
text-transform:none;
|
|
3097
|
-
}
|
|
3098
|
-
table.inline-table-module_inlineTable__Se38I td.inline-table-module_actionCell__D-Lu2{
|
|
3099
|
-
padding-block-end:var(--space-2);
|
|
3100
|
-
padding-block-start:var(--space-2);
|
|
3101
|
-
}
|
|
3102
|
-
table.inline-table-module_inlineTable__Se38I th{
|
|
3103
|
-
border-bottom:var(--border-1) solid var(--gray-10);
|
|
3104
|
-
color:var(--text-text-on-light-secondary);
|
|
3105
|
-
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
3106
|
-
font-size:.75rem;
|
|
3107
|
-
font-weight:400;
|
|
3108
|
-
letter-spacing:.01875rem;
|
|
3109
|
-
line-height:.875rem;
|
|
3110
|
-
text-decoration:none;
|
|
3111
|
-
text-transform:none;
|
|
3112
|
-
text-transform:uppercase;
|
|
3113
|
-
}
|
|
3114
|
-
table.inline-table-module_inlineTable__Se38I td,table.inline-table-module_inlineTable__Se38I th{
|
|
3115
|
-
height:var(--size-12);
|
|
3116
|
-
}
|
|
3117
|
-
table.inline-table-module_inlineTable__Se38I td:first-child,table.inline-table-module_inlineTable__Se38I th:first-child{
|
|
3118
|
-
padding-inline-start:var(--space-5);
|
|
3119
|
-
}
|
|
3120
|
-
table.inline-table-module_inlineTable__Se38I td:last-child,table.inline-table-module_inlineTable__Se38I td:not(:only-child),table.inline-table-module_inlineTable__Se38I th:last-child,table.inline-table-module_inlineTable__Se38I th:not(:only-child){
|
|
3121
|
-
padding-inline-end:var(--space-5);
|
|
3122
|
-
}
|
|
3123
|
-
table.inline-table-module_inlineTable__Se38I tr:not(:last-child) td{
|
|
3124
|
-
border-block-end:var(--border-1) solid var(--gray-10);
|
|
3125
|
-
}
|
|
3126
2970
|
@layer baseTable{
|
|
3127
2971
|
.main-module_resizableTableContainer__Mf8-Q{
|
|
3128
2972
|
min-width:0;
|
|
@@ -3360,6 +3204,237 @@ table.inline-table-module_inlineTable__Se38I tr:not(:last-child) td{
|
|
|
3360
3204
|
transform:translateZ(0);
|
|
3361
3205
|
}
|
|
3362
3206
|
|
|
3207
|
+
.sticky-cell-module_stickyCell__-Rl0x{
|
|
3208
|
+
background:inherit;
|
|
3209
|
+
background-clip:content-box;
|
|
3210
|
+
left:0;
|
|
3211
|
+
outline:calc(var(--is-row-focused)*var(--border-2)) solid var(--outline-focus-color);
|
|
3212
|
+
outline-offset:var(--outline-offset-focus-cell);
|
|
3213
|
+
overflow:visible;
|
|
3214
|
+
position:sticky;
|
|
3215
|
+
z-index:var(--sticky-element-z-index);
|
|
3216
|
+
}
|
|
3217
|
+
.sticky-cell-module_stickyCell__-Rl0x[data-focus-visible]{
|
|
3218
|
+
outline:var(--border-2) solid var(--outline-focus-color);
|
|
3219
|
+
}
|
|
3220
|
+
.sticky-cell-module_stickyCell__-Rl0x .sticky-cell-module_childrenWrapper__qjguw{
|
|
3221
|
+
overflow:hidden;
|
|
3222
|
+
text-align:start;
|
|
3223
|
+
text-overflow:ellipsis;
|
|
3224
|
+
white-space:nowrap;
|
|
3225
|
+
}
|
|
3226
|
+
.sticky-cell-module_stickyCell__-Rl0x .sticky-cell-module_verticalBar__AgXfU{
|
|
3227
|
+
background:inherit;
|
|
3228
|
+
border-right:1px solid var(--border-divider-border);
|
|
3229
|
+
box-shadow:10px 0 7px -4px var(--item-background);
|
|
3230
|
+
display:none;
|
|
3231
|
+
height:1.5rem;
|
|
3232
|
+
position:absolute;
|
|
3233
|
+
right:0;
|
|
3234
|
+
top:50%;
|
|
3235
|
+
transform:translateY(-50%);
|
|
3236
|
+
width:var(--space-3);
|
|
3237
|
+
z-index:calc(var(--is-row-focused)*2 - 1);
|
|
3238
|
+
}
|
|
3239
|
+
.sticky-cell-module_stickyCell__-Rl0x .sticky-cell-module_verticalBar__AgXfU.sticky-cell-module_isScrolledX__xcMJ6{
|
|
3240
|
+
display:block;
|
|
3241
|
+
}
|
|
3242
|
+
.sticky-cell-module_stickyCell__-Rl0x .sticky-cell-module_stickyCellLeft__F3YAG{
|
|
3243
|
+
background:inherit;
|
|
3244
|
+
border-radius:unset;
|
|
3245
|
+
box-sizing:border-box;
|
|
3246
|
+
height:100%;
|
|
3247
|
+
left:0;
|
|
3248
|
+
pointer-events:none;
|
|
3249
|
+
position:absolute;
|
|
3250
|
+
top:0;
|
|
3251
|
+
width:calc(100% + var(--outline-offset-focus-row));
|
|
3252
|
+
z-index:-1;
|
|
3253
|
+
}
|
|
3254
|
+
.sticky-cell-module_stickyCell__-Rl0x .sticky-cell-module_stickyCellRight__yQjUM{
|
|
3255
|
+
background:inherit;
|
|
3256
|
+
border-radius:unset;
|
|
3257
|
+
box-sizing:border-box;
|
|
3258
|
+
height:calc(var(--is-row-focused)*(100% + var(--outline-offset-focus-cell)*2));
|
|
3259
|
+
left:100%;
|
|
3260
|
+
pointer-events:none;
|
|
3261
|
+
position:absolute;
|
|
3262
|
+
top:50%;
|
|
3263
|
+
transform:translate(-100%, -50%);
|
|
3264
|
+
width:var(--space-3);
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
.empty-state-module_emptyState__Qs2b2{
|
|
3268
|
+
align-items:center;
|
|
3269
|
+
display:flex;
|
|
3270
|
+
flex-direction:column;
|
|
3271
|
+
height:100%;
|
|
3272
|
+
justify-content:center;
|
|
3273
|
+
text-align:center;
|
|
3274
|
+
width:100%;
|
|
3275
|
+
}
|
|
3276
|
+
.empty-state-module_emptyState__Qs2b2 .empty-state-module_illustration__Z63DC{
|
|
3277
|
+
margin-block-end:var(--space-6);
|
|
3278
|
+
}
|
|
3279
|
+
.empty-state-module_emptyState__Qs2b2 .empty-state-module_body__JA15E{
|
|
3280
|
+
max-width:22.5rem;
|
|
3281
|
+
}
|
|
3282
|
+
.empty-state-module_emptyState__Qs2b2 .empty-state-module_body__JA15E:not(:last-child){
|
|
3283
|
+
margin-block-end:var(--space-6);
|
|
3284
|
+
}
|
|
3285
|
+
.empty-state-module_emptyState__Qs2b2 .empty-state-module_heading__rdgZb{
|
|
3286
|
+
margin-block-end:var(--space-3);
|
|
3287
|
+
}
|
|
3288
|
+
.empty-state-module_emptyState__Qs2b2 .empty-state-module_button__w6EgO:not(:last-child){
|
|
3289
|
+
margin-block-end:var(--space-6);
|
|
3290
|
+
}
|
|
3291
|
+
.empty-state-module_emptyState__Qs2b2.empty-state-module_small__q9iTq .empty-state-module_illustration__Z63DC{
|
|
3292
|
+
margin-block-end:var(--space-4);
|
|
3293
|
+
}
|
|
3294
|
+
.empty-state-module_emptyState__Qs2b2.empty-state-module_small__q9iTq .empty-state-module_illustration__Z63DC svg{
|
|
3295
|
+
height:var(--size-14);
|
|
3296
|
+
width:var(--size-14);
|
|
3297
|
+
}
|
|
3298
|
+
.empty-state-module_emptyState__Qs2b2.empty-state-module_small__q9iTq .empty-state-module_body__JA15E{
|
|
3299
|
+
max-width:220px;
|
|
3300
|
+
}
|
|
3301
|
+
.empty-state-module_emptyState__Qs2b2.empty-state-module_small__q9iTq .empty-state-module_body__JA15E:not(:last-child){
|
|
3302
|
+
margin-block-end:var(--space-4);
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
|
+
.guided-tooltip-module_content__4P0jU{
|
|
3306
|
+
background-color:var(--gray-white);
|
|
3307
|
+
border:var(--border-1) solid var(--border-card-border);
|
|
3308
|
+
border-radius:var(--radius-4);
|
|
3309
|
+
filter:drop-shadow(0 .25rem .75rem rgba(0, 0, 0, .1));
|
|
3310
|
+
max-width:22.5rem;
|
|
3311
|
+
padding-block-end:var(--space-6);
|
|
3312
|
+
padding-block-start:var(--space-7);
|
|
3313
|
+
padding-inline:var(--space-7);
|
|
3314
|
+
z-index:10;
|
|
3315
|
+
}
|
|
3316
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_body__lf6-N.guided-tooltip-module_noTitle__C-rQU{
|
|
3317
|
+
padding-inline-end:var(--space-6);
|
|
3318
|
+
}
|
|
3319
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_title__WjhyT{
|
|
3320
|
+
margin-block-end:var(--space-2);
|
|
3321
|
+
padding-inline-end:var(--space-6);
|
|
3322
|
+
}
|
|
3323
|
+
.guided-tooltip-module_content__4P0jU * + .guided-tooltip-module_footer__dvCqt{
|
|
3324
|
+
margin-block-start:var(--space-5);
|
|
3325
|
+
}
|
|
3326
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_footer__dvCqt{
|
|
3327
|
+
display:flex;
|
|
3328
|
+
justify-content:flex-end;
|
|
3329
|
+
width:100%;
|
|
3330
|
+
}
|
|
3331
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_actionButtons__JCj8T{
|
|
3332
|
+
display:flex;
|
|
3333
|
+
gap:var(--space-2);
|
|
3334
|
+
justify-content:flex-end;
|
|
3335
|
+
width:100%;
|
|
3336
|
+
}
|
|
3337
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_stepsIndicator__hkoGZ{
|
|
3338
|
+
align-self:center;
|
|
3339
|
+
color:var(--text-text-on-light-secondary);
|
|
3340
|
+
width:100%;
|
|
3341
|
+
}
|
|
3342
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_closeButton__ZVZcg{
|
|
3343
|
+
color:var(--gray-black);
|
|
3344
|
+
position:absolute;
|
|
3345
|
+
right:var(--space-3);
|
|
3346
|
+
top:var(--space-3);
|
|
3347
|
+
}
|
|
3348
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_arrow__JCGwC{
|
|
3349
|
+
align-content:center;
|
|
3350
|
+
display:flex !important;
|
|
3351
|
+
height:var(--size-4);
|
|
3352
|
+
justify-content:center;
|
|
3353
|
+
visibility:visible;
|
|
3354
|
+
width:var(--size-9);
|
|
3355
|
+
}
|
|
3356
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_arrow__JCGwC::after{
|
|
3357
|
+
background-color:var(--gray-white);
|
|
3358
|
+
border-bottom-right-radius:var(--radius-1);
|
|
3359
|
+
border-color:var(--border-card-border);
|
|
3360
|
+
border-style:solid;
|
|
3361
|
+
border-width:0 var(--border-1) var(--border-1) 0;
|
|
3362
|
+
content:"";
|
|
3363
|
+
height:var(--size-6);
|
|
3364
|
+
transform:translateY(-50%) rotate(45deg);
|
|
3365
|
+
width:var(--size-6);
|
|
3366
|
+
}
|
|
3367
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_icon__FZnIm{
|
|
3368
|
+
align-items:center;
|
|
3369
|
+
background-color:var(--box-blue-10);
|
|
3370
|
+
border-radius:var(--radius-2);
|
|
3371
|
+
display:flex;
|
|
3372
|
+
height:var(--size-7);
|
|
3373
|
+
justify-content:center;
|
|
3374
|
+
margin-block-end:var(--space-4);
|
|
3375
|
+
width:var(--size-7);
|
|
3376
|
+
}
|
|
3377
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_icon__FZnIm::after{
|
|
3378
|
+
height:var(--size-4);
|
|
3379
|
+
width:var(--size-4);
|
|
3380
|
+
}
|
|
3381
|
+
.guided-tooltip-module_content__4P0jU .guided-tooltip-module_illustration__CU2kK{
|
|
3382
|
+
border-radius:var(--radius-4);
|
|
3383
|
+
margin-block-start:var(--space-5);
|
|
3384
|
+
width:100%;
|
|
3385
|
+
}
|
|
3386
|
+
table.inline-table-module_inlineTable__Se38I{
|
|
3387
|
+
background:var(--gray-white);
|
|
3388
|
+
border:var(--border-1) solid var(--gray-10);
|
|
3389
|
+
border-collapse:initial;
|
|
3390
|
+
border-color:var(--border-card-border);
|
|
3391
|
+
border-radius:var(--radius-2);
|
|
3392
|
+
border-spacing:0;
|
|
3393
|
+
}
|
|
3394
|
+
table.inline-table-module_inlineTable__Se38I.inline-table-module_borderHidden__nGEm4{
|
|
3395
|
+
border:none;
|
|
3396
|
+
}
|
|
3397
|
+
table.inline-table-module_inlineTable__Se38I.inline-table-module_fullSpan__p2f2m{
|
|
3398
|
+
width:100%;
|
|
3399
|
+
}
|
|
3400
|
+
table.inline-table-module_inlineTable__Se38I td{
|
|
3401
|
+
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
3402
|
+
font-size:.875rem;
|
|
3403
|
+
font-weight:400;
|
|
3404
|
+
letter-spacing:.01875rem;
|
|
3405
|
+
line-height:1.25rem;
|
|
3406
|
+
text-decoration:none;
|
|
3407
|
+
text-transform:none;
|
|
3408
|
+
}
|
|
3409
|
+
table.inline-table-module_inlineTable__Se38I td.inline-table-module_actionCell__D-Lu2{
|
|
3410
|
+
padding-block-end:var(--space-2);
|
|
3411
|
+
padding-block-start:var(--space-2);
|
|
3412
|
+
}
|
|
3413
|
+
table.inline-table-module_inlineTable__Se38I th{
|
|
3414
|
+
border-bottom:var(--border-1) solid var(--gray-10);
|
|
3415
|
+
color:var(--text-text-on-light-secondary);
|
|
3416
|
+
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
3417
|
+
font-size:.75rem;
|
|
3418
|
+
font-weight:400;
|
|
3419
|
+
letter-spacing:.01875rem;
|
|
3420
|
+
line-height:.875rem;
|
|
3421
|
+
text-decoration:none;
|
|
3422
|
+
text-transform:none;
|
|
3423
|
+
text-transform:uppercase;
|
|
3424
|
+
}
|
|
3425
|
+
table.inline-table-module_inlineTable__Se38I td,table.inline-table-module_inlineTable__Se38I th{
|
|
3426
|
+
height:var(--size-12);
|
|
3427
|
+
}
|
|
3428
|
+
table.inline-table-module_inlineTable__Se38I td:first-child,table.inline-table-module_inlineTable__Se38I th:first-child{
|
|
3429
|
+
padding-inline-start:var(--space-5);
|
|
3430
|
+
}
|
|
3431
|
+
table.inline-table-module_inlineTable__Se38I td:last-child,table.inline-table-module_inlineTable__Se38I td:not(:only-child),table.inline-table-module_inlineTable__Se38I th:last-child,table.inline-table-module_inlineTable__Se38I th:not(:only-child){
|
|
3432
|
+
padding-inline-end:var(--space-5);
|
|
3433
|
+
}
|
|
3434
|
+
table.inline-table-module_inlineTable__Se38I tr:not(:last-child) td{
|
|
3435
|
+
border-block-end:var(--border-1) solid var(--gray-10);
|
|
3436
|
+
}
|
|
3437
|
+
|
|
3363
3438
|
.modal-module_overlay__OIKwn{
|
|
3364
3439
|
background-color:var(--black-opacity-80);
|
|
3365
3440
|
bottom:0;
|
|
@@ -4176,6 +4251,7 @@ table.inline-table-module_inlineTable__Se38I tr:not(:last-child) td{
|
|
|
4176
4251
|
background-color:var(--surface-search-surface);
|
|
4177
4252
|
border:var(--border-1) solid #0000;
|
|
4178
4253
|
border-radius:var(--radius-2);
|
|
4254
|
+
box-shadow:unset;
|
|
4179
4255
|
box-sizing:border-box;
|
|
4180
4256
|
color:var(--text-text-on-light);
|
|
4181
4257
|
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
@@ -4185,6 +4261,7 @@ table.inline-table-module_inlineTable__Se38I tr:not(:last-child) td{
|
|
|
4185
4261
|
letter-spacing:.01875rem;
|
|
4186
4262
|
line-height:1.25rem;
|
|
4187
4263
|
outline:0;
|
|
4264
|
+
padding-block:0;
|
|
4188
4265
|
padding-inline:var(--space-8) var(--space-2);
|
|
4189
4266
|
text-decoration:none;
|
|
4190
4267
|
text-transform:none;
|
|
@@ -4199,6 +4276,9 @@ table.inline-table-module_inlineTable__Se38I tr:not(:last-child) td{
|
|
|
4199
4276
|
.search-module_search__j7vwN .search-module_searchInput__yYJJB::-webkit-search-cancel-button,.search-module_search__j7vwN .search-module_searchInput__yYJJB::-webkit-search-decoration,.search-module_search__j7vwN .search-module_searchInput__yYJJB::-webkit-search-results-button,.search-module_search__j7vwN .search-module_searchInput__yYJJB::-webkit-search-results-decoration{
|
|
4200
4277
|
appearance:none;
|
|
4201
4278
|
}
|
|
4279
|
+
.search-module_search__j7vwN .search-module_searchInput__yYJJB:hover{
|
|
4280
|
+
box-shadow:unset;
|
|
4281
|
+
}
|
|
4202
4282
|
.search-module_search__j7vwN .search-module_searchInput__yYJJB .search-module_firefoxDefaultOpacityFix__8EAEM,.search-module_search__j7vwN .search-module_searchInput__yYJJB .search-module_searchInput__yYJJB::placeholder{
|
|
4203
4283
|
opacity:1;
|
|
4204
4284
|
}
|
package/lib-esm/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export * from './basics/collapsible';
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
export * from './basics/navigation-menu';
|
|
10
|
-
|
|
10
|
+
export * from './basics/small-list-item';
|
|
11
11
|
export * from './basics/text-input';
|
|
12
12
|
export * from './branding-styles';
|
|
13
13
|
export * from './card';
|
|
@@ -16,14 +16,14 @@ export * from './checkbox';
|
|
|
16
16
|
export * from './combobox';
|
|
17
17
|
export * from './content-card';
|
|
18
18
|
export * from './content-field';
|
|
19
|
-
export * from './data-table/data-table
|
|
19
|
+
export * from './data-table/data-table';
|
|
20
20
|
export * from './empty-state';
|
|
21
21
|
export * from './ghost';
|
|
22
22
|
export * from './guided-tooltip';
|
|
23
23
|
export * from './inline-notice/inline-notice';
|
|
24
24
|
export * from './inline-table/inline-table';
|
|
25
25
|
export * from './input-chip';
|
|
26
|
-
|
|
26
|
+
export * from './list-item/list-item';
|
|
27
27
|
export * from './loading-indicator/loading-indicator';
|
|
28
28
|
export * from './modal';
|
|
29
29
|
|
package/lib-esm/index.js
CHANGED
|
@@ -7,7 +7,7 @@ export { CollapsibleSection } from './basics/collapsible/collapsible-section.js'
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
export { NavigationMenu } from './basics/navigation-menu/index.js';
|
|
10
|
-
|
|
10
|
+
export { SmallList } from './basics/small-list-item/index.js';
|
|
11
11
|
export { TextInput } from './basics/text-input/text-input.js';
|
|
12
12
|
export { BrandingStyles } from './branding-styles/branding-styles.js';
|
|
13
13
|
export { useCustomBranding } from './branding-styles/useCustomBranding.js';
|
|
@@ -17,7 +17,7 @@ export { Checkbox } from './checkbox/index.js';
|
|
|
17
17
|
export { Combobox, Root } from './combobox/combobox.js';
|
|
18
18
|
export { ContentCard } from './content-card/content-card.js';
|
|
19
19
|
export { ContentField } from './content-field/content-field.js';
|
|
20
|
-
export { DataTableWrapper } from './data-table/data-table
|
|
20
|
+
export { DataTableWrapper, StickyCell } from './data-table/data-table.js';
|
|
21
21
|
export { EmptyState } from './empty-state/empty-state.js';
|
|
22
22
|
export { Ghost } from './ghost/ghost.js';
|
|
23
23
|
export { GuidedTooltip } from './guided-tooltip/guided-tooltip.js';
|
|
@@ -25,7 +25,7 @@ export { GuidedTooltipContext } from './guided-tooltip/utils/guided-tooltip-cont
|
|
|
25
25
|
export { InlineNotice } from './inline-notice/inline-notice.js';
|
|
26
26
|
export { InlineTable } from './inline-table/inline-table.js';
|
|
27
27
|
export { InputChip } from './input-chip/input-chip.js';
|
|
28
|
-
|
|
28
|
+
export { ActionCell, Cell, Column, DropIndicator, Row, Table, TableBody, TableHeader } from './list-item/list-item.js';
|
|
29
29
|
export { LoadingIndicator } from './loading-indicator/loading-indicator.js';
|
|
30
30
|
export { Modal } from './modal/modal.js';
|
|
31
31
|
|
|
@@ -57,7 +57,7 @@ export { TextArea } from './text-area/text-area.js';
|
|
|
57
57
|
export { TextButton } from './text-button/text-button.js';
|
|
58
58
|
export { Tooltip, TooltipProvider } from './tooltip/tooltip.js';
|
|
59
59
|
export { TriggerButton } from './trigger-button/trigger-button.js';
|
|
60
|
-
export { ScrollableContainer, useScroll, useScrollContext } from './util-components/scrollable-container/scrollable-container.js';
|
|
60
|
+
export { ScrollContext, ScrollableContainer, useScroll, useScrollContext } from './util-components/scrollable-container/scrollable-container.js';
|
|
61
61
|
export { Breakpoint, useBreakpoint } from './utils/useBreakpoint.js';
|
|
62
62
|
export { useNotification } from './primitives/notification/notification-provider.js';
|
|
63
63
|
export { useTabs } from './primitives/tabs/use-tabs.js';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import 'react/jsx-runtime';
|
|
2
|
+
import 'react';
|
|
3
|
+
import 'react-aria-components';
|
|
4
|
+
import '@box/blueprint-web-assets/icons/Fill';
|
|
5
|
+
import '@box/blueprint-web-assets/tokens/tokens';
|
|
6
|
+
import 'clsx';
|
|
7
|
+
import { Cell as Cell$1 } from './cell/cell.js';
|
|
8
|
+
import 'lodash/noop';
|
|
9
|
+
import '@radix-ui/react-visually-hidden';
|
|
10
|
+
|
|
11
|
+
const Cell = Cell$1;
|
|
12
|
+
|
|
13
|
+
export { Cell };
|
|
@@ -42,6 +42,7 @@ const Calendar = /*#__PURE__*/forwardRef((props, forwardedRef) => {
|
|
|
42
42
|
})
|
|
43
43
|
})]
|
|
44
44
|
}), jsxs(CalendarGrid, {
|
|
45
|
+
className: styles.calendarGrid,
|
|
45
46
|
children: [jsx(CalendarGridHeader, {
|
|
46
47
|
children: day => jsx(CalendarHeaderCell, {
|
|
47
48
|
className: styles.calendarHeaderCell,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../../index.css';
|
|
2
|
-
var styles = {"calendar":"calendar-module_calendar__uhtG4","calendarHeaderCell":"calendar-module_calendarHeaderCell__C8nNn","calendarHeader":"calendar-module_calendarHeader__jofDH","calendarHeaderHeading":"calendar-module_calendarHeaderHeading__J6LiC","calendarHeaderButton":"calendar-module_calendarHeaderButton__yylSs","calendarCell":"calendar-module_calendarCell__5e0x1","today":"calendar-module_today__kIt3D"};
|
|
2
|
+
var styles = {"calendar":"calendar-module_calendar__uhtG4","calendarGrid":"calendar-module_calendarGrid__ifeqZ","calendarHeaderCell":"calendar-module_calendarHeaderCell__C8nNn","calendarHeader":"calendar-module_calendarHeader__jofDH","calendarHeaderHeading":"calendar-module_calendarHeaderHeading__J6LiC","calendarHeaderButton":"calendar-module_calendarHeaderButton__yylSs","calendarCell":"calendar-module_calendarCell__5e0x1","today":"calendar-module_today__kIt3D"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|
|
@@ -12,6 +12,7 @@ export type ScrollContextType = {
|
|
|
12
12
|
isScrolledToEndX: boolean;
|
|
13
13
|
isScrolledToEndY: boolean;
|
|
14
14
|
};
|
|
15
|
+
export declare const ScrollContext: import("react").Context<ScrollContextType | undefined>;
|
|
15
16
|
export declare const ScrollableContainer: import("react").ForwardRefExoticComponent<Omit<ScrollableContainerProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
16
17
|
export declare function useScrollContext(): ScrollContextType;
|
|
17
18
|
export declare const useScroll: (forwardedRef: RefObject<HTMLDivElement>, scrollThrottleDelay?: number) => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { clsx } from 'clsx';
|
|
3
3
|
import throttle from 'lodash/throttle';
|
|
4
|
-
import { forwardRef, useRef, useContext, useState, useMemo
|
|
4
|
+
import { createContext, forwardRef, useRef, useContext, useState, useMemo } from 'react';
|
|
5
5
|
import { useForkRef } from '../../utils/useForkRef.js';
|
|
6
6
|
import styles from './scrollable-container.module.js';
|
|
7
7
|
|
|
@@ -62,4 +62,4 @@ const useScroll = (forwardedRef, scrollThrottleDelay = 100) => {
|
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
64
|
|
|
65
|
-
export { ScrollableContainer, useScroll, useScrollContext };
|
|
65
|
+
export { ScrollContext, ScrollableContainer, useScroll, useScrollContext };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/blueprint-web",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@box/storybook-utils": "^0.0.2"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "25c0bfaf862678507d885e5375532fb30bd8adfe",
|
|
61
61
|
"module": "lib-esm/index.js",
|
|
62
62
|
"type": "module",
|
|
63
63
|
"main": "lib-esm/index.js",
|