fuse-importer 0.0.7-testing → 0.0.9-testing
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/common/ConfirmationModal.js +1 -1
- package/lib/esm/common/Modal.js +2 -2
- package/lib/esm/common/inputs/SelectMenu.js +1 -1
- package/lib/main.js +18 -18
- package/package.json +2 -3
- package/lib/esm/common/Table/TableView/CustomScrollbar.d.ts +0 -2
- package/lib/esm/common/Table/TableView/CustomScrollbar.js +0 -34
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fuse-importer",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.9-testing",
|
|
5
5
|
"description": "Flatirons Fuse is a customizable and powerful CSV Importer that works with all front-end languages",
|
|
6
6
|
"browserslist": {
|
|
7
7
|
"production": [
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
]
|
|
17
17
|
},
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": "16.
|
|
19
|
+
"node": ">=16.0.0"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"dev": "webpack-dev-server --open --watch-files src",
|
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"openai": "^3.2.1",
|
|
47
47
|
"papaparse": "^5.4.1",
|
|
48
48
|
"qs": "^6.10.1",
|
|
49
|
-
"react-custom-scrollbars": "^4.2.1",
|
|
50
49
|
"react-dropzone": "^11.3.2",
|
|
51
50
|
"react-helmet": "^6.1.0",
|
|
52
51
|
"react-hot-toast": "^2.1.1",
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
-
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
-
return cooked;
|
|
4
|
-
};
|
|
5
|
-
var __assign = (this && this.__assign) || function () {
|
|
6
|
-
__assign = Object.assign || function(t) {
|
|
7
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
8
|
-
s = arguments[i];
|
|
9
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
10
|
-
t[p] = s[p];
|
|
11
|
-
}
|
|
12
|
-
return t;
|
|
13
|
-
};
|
|
14
|
-
return __assign.apply(this, arguments);
|
|
15
|
-
};
|
|
16
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
17
|
-
import { forwardRef, useCallback } from "react";
|
|
18
|
-
import { Scrollbars } from "react-custom-scrollbars";
|
|
19
|
-
import styled from "styled-components";
|
|
20
|
-
var StyledScrollbars = styled(Scrollbars)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n scrollbar-width: thin;\n scrollbar-color: #b1b1b2 transparent;\n\n ::-webkit-scrollbar {\n width: 0;\n height: 5px;\n }\n\n ::-webkit-scrollbar-thumb {\n background-color: #b1b1b2;\n border-radius: 3px;\n }\n\n ::-webkit-scrollbar-track {\n background: transparent;\n }\n\n > div:first-of-type {\n margin-bottom: 0 !important;\n }\n"], ["\n scrollbar-width: thin;\n scrollbar-color: #b1b1b2 transparent;\n\n ::-webkit-scrollbar {\n width: 0;\n height: 5px;\n }\n\n ::-webkit-scrollbar-thumb {\n background-color: #b1b1b2;\n border-radius: 3px;\n }\n\n ::-webkit-scrollbar-track {\n background: transparent;\n }\n\n > div:first-of-type {\n margin-bottom: 0 !important;\n }\n"])));
|
|
21
|
-
var CustomScrollbars = function (_a) {
|
|
22
|
-
var onScroll = _a.onScroll, forwardedRef = _a.forwardedRef, style = _a.style, children = _a.children;
|
|
23
|
-
var refSetter = useCallback(function (scrollbarsRef) {
|
|
24
|
-
if (scrollbarsRef) {
|
|
25
|
-
forwardedRef(scrollbarsRef.view);
|
|
26
|
-
}
|
|
27
|
-
else {
|
|
28
|
-
forwardedRef(null);
|
|
29
|
-
}
|
|
30
|
-
}, []);
|
|
31
|
-
return (_jsx(StyledScrollbars, __assign({ renderTrackHorizontal: function (props) { return (_jsx("div", __assign({}, props, { style: { display: "none" }, className: "track-horizontal" }))); }, ref: refSetter, style: style, onScroll: onScroll }, { children: children })));
|
|
32
|
-
};
|
|
33
|
-
export var CustomScrollbarsVirtualList = forwardRef(function (props, ref) { return (_jsx(CustomScrollbars, __assign({}, props, { forwardedRef: ref }))); });
|
|
34
|
-
var templateObject_1;
|