@headless-adminapp/fluent 1.4.28 → 1.4.29
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.
|
@@ -72,10 +72,19 @@ const useStyles = (0, react_components_1.makeStyles)({
|
|
|
72
72
|
alignItems: 'center',
|
|
73
73
|
},
|
|
74
74
|
table: {
|
|
75
|
-
'
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
75
|
+
display: 'flex',
|
|
76
|
+
flexDirection: 'column',
|
|
77
|
+
borderCollapse: 'collapse',
|
|
78
|
+
width: '100%',
|
|
79
|
+
userSelect: 'none',
|
|
80
|
+
WebkitUserSelect: 'none',
|
|
81
|
+
MozUserSelect: 'none',
|
|
82
|
+
msUserSelect: 'none',
|
|
83
|
+
'& *': {
|
|
84
|
+
userSelect: 'none',
|
|
85
|
+
WebkitUserSelect: 'none',
|
|
86
|
+
MozUserSelect: 'none',
|
|
87
|
+
msUserSelect: 'none',
|
|
79
88
|
},
|
|
80
89
|
},
|
|
81
90
|
});
|
|
@@ -211,16 +220,11 @@ const GridTableContainer = ({ noPadding, disableColumnFilter, disableColumnSort,
|
|
|
211
220
|
paddingInline: hPadding,
|
|
212
221
|
position: 'relative',
|
|
213
222
|
}, ref: tableWrapperRef, children: (0, jsx_runtime_1.jsxs)(react_components_1.Table, { style: {
|
|
214
|
-
display: 'flex',
|
|
215
|
-
flexDirection: 'column',
|
|
216
|
-
borderCollapse: 'collapse',
|
|
217
|
-
width: '100%',
|
|
218
223
|
height: virtualizer.getTotalSize() + headerHeight,
|
|
219
224
|
['--action-shadow']: !isScrolledToRight
|
|
220
225
|
? '-2px 0px 6px rgba(0, 0, 0, 0.12)'
|
|
221
226
|
: 'none',
|
|
222
|
-
|
|
223
|
-
}, ref: tableElementRef, tabIndex: 0, className: "table-pseduo", children: [(0, jsx_runtime_1.jsx)(react_components_1.TableHeader, { style: {
|
|
227
|
+
}, ref: tableElementRef, tabIndex: 0, className: (0, react_components_1.mergeClasses)('table-pseduo', styles.table), children: [(0, jsx_runtime_1.jsx)(react_components_1.TableHeader, { style: {
|
|
224
228
|
display: 'flex',
|
|
225
229
|
position: 'sticky',
|
|
226
230
|
top: 0,
|
package/Insights/Header.js
CHANGED
|
@@ -29,8 +29,8 @@ const Header = () => {
|
|
|
29
29
|
// ? tokens.colorNeutralBackground1
|
|
30
30
|
// : 'transparent',
|
|
31
31
|
// backdropFilter: isScrolled ? 'blur(15px)' : 'none',
|
|
32
|
-
backdropFilter: 'blur(
|
|
33
|
-
background: react_components_1.tokens.
|
|
32
|
+
backdropFilter: 'blur(20px)',
|
|
33
|
+
background: react_components_1.tokens.colorNeutralBackgroundAlpha2,
|
|
34
34
|
boxShadow: react_components_1.tokens.shadow4,
|
|
35
35
|
// backgroundColor: tokens.colorNeutralBackground1,
|
|
36
36
|
// backgroundColor: 'rgba(255, 255, 255, 0.8)',
|
|
@@ -131,8 +131,8 @@ const Wrapper = ({ children, formHeaderDivRef, }) => {
|
|
|
131
131
|
const visible = !!rect && rect.bottom < headerHeight + tabContainerHeight;
|
|
132
132
|
if (isMobile) {
|
|
133
133
|
return ((0, jsx_runtime_1.jsxs)(ScrollView_1.ScrollView, { children: [(0, jsx_runtime_1.jsx)("div", { style: {
|
|
134
|
-
background: react_components_1.tokens.
|
|
135
|
-
backdropFilter: 'blur(
|
|
134
|
+
background: react_components_1.tokens.colorNeutralBackgroundAlpha2,
|
|
135
|
+
backdropFilter: 'blur(20px)',
|
|
136
136
|
position: 'fixed',
|
|
137
137
|
transition: 'all 0.2s',
|
|
138
138
|
top: visible ? headerHeight : -headerHeight,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@headless-adminapp/fluent",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.29",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/lodash": "4.17.20"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "bf59bd13938acd5768f93b2524fe58e103981395"
|
|
58
58
|
}
|