easy-file-system 2.1.250 → 2.1.251
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/example.js +281 -415
- package/lib/example/view/button.js +2 -2
- package/lib/example/view.js +2 -1
- package/lib/item/entry/drag.js +2 -2
- package/lib/list/entries.js +21 -11
- package/lib/rubbishBin.js +5 -9
- package/lib/svg/directoryName.js +7 -53
- package/lib/svg/fileName.js +7 -53
- package/lib/svg/marker.js +7 -53
- package/lib/svg/rubbishBin/closed.js +6 -53
- package/lib/svg/rubbishBin/open.js +6 -52
- package/lib/svg/toggle/down.js +7 -54
- package/lib/svg/toggle/up.js +7 -53
- package/lib/svg.js +179 -0
- package/package.json +3 -3
- package/src/example/view/button.js +1 -0
- package/src/example/view.js +1 -1
- package/src/item/entry/drag.js +1 -1
- package/src/list/entries.js +25 -11
- package/src/rubbishBin.js +4 -8
- package/src/svg/directoryName.js +2 -4
- package/src/svg/fileName.js +2 -4
- package/src/svg/marker.js +2 -4
- package/src/svg/rubbishBin/closed.js +2 -6
- package/src/svg/rubbishBin/open.js +2 -4
- package/src/svg/toggle/down.js +2 -7
- package/src/svg/toggle/up.js +2 -5
- package/src/svg.js +17 -0
package/lib/svg/toggle/down.js
CHANGED
|
@@ -9,7 +9,7 @@ Object.defineProperty(exports, "default", {
|
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
11
|
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
|
-
var
|
|
12
|
+
var _svg = /*#__PURE__*/ _interop_require_default(require("../../svg"));
|
|
13
13
|
var _styles = require("../../styles");
|
|
14
14
|
function _assert_this_initialized(self) {
|
|
15
15
|
if (self === void 0) {
|
|
@@ -22,23 +22,6 @@ function _class_call_check(instance, Constructor) {
|
|
|
22
22
|
throw new TypeError("Cannot call a class as a function");
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
function _construct(Parent, args, Class) {
|
|
26
|
-
if (_is_native_reflect_construct()) {
|
|
27
|
-
_construct = Reflect.construct;
|
|
28
|
-
} else {
|
|
29
|
-
_construct = function construct(Parent, args, Class) {
|
|
30
|
-
var a = [
|
|
31
|
-
null
|
|
32
|
-
];
|
|
33
|
-
a.push.apply(a, args);
|
|
34
|
-
var Constructor = Function.bind.apply(Parent, a);
|
|
35
|
-
var instance = new Constructor();
|
|
36
|
-
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
37
|
-
return instance;
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
return _construct.apply(null, arguments);
|
|
41
|
-
}
|
|
42
25
|
function _defineProperties(target, props) {
|
|
43
26
|
for(var i = 0; i < props.length; i++){
|
|
44
27
|
var descriptor = props[i];
|
|
@@ -90,9 +73,6 @@ function _interop_require_default(obj) {
|
|
|
90
73
|
default: obj
|
|
91
74
|
};
|
|
92
75
|
}
|
|
93
|
-
function _is_native_function(fn) {
|
|
94
|
-
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
95
|
-
}
|
|
96
76
|
function _possible_constructor_return(self, call) {
|
|
97
77
|
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
98
78
|
return call;
|
|
@@ -120,32 +100,6 @@ function _type_of(obj) {
|
|
|
120
100
|
"@swc/helpers - typeof";
|
|
121
101
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
122
102
|
}
|
|
123
|
-
function _wrap_native_super(Class) {
|
|
124
|
-
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
125
|
-
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
126
|
-
if (Class === null || !_is_native_function(Class)) return Class;
|
|
127
|
-
if (typeof Class !== "function") {
|
|
128
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
129
|
-
}
|
|
130
|
-
if (typeof _cache !== "undefined") {
|
|
131
|
-
if (_cache.has(Class)) return _cache.get(Class);
|
|
132
|
-
_cache.set(Class, Wrapper);
|
|
133
|
-
}
|
|
134
|
-
function Wrapper() {
|
|
135
|
-
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
136
|
-
}
|
|
137
|
-
Wrapper.prototype = Object.create(Class.prototype, {
|
|
138
|
-
constructor: {
|
|
139
|
-
value: Wrapper,
|
|
140
|
-
enumerable: false,
|
|
141
|
-
writable: true,
|
|
142
|
-
configurable: true
|
|
143
|
-
}
|
|
144
|
-
});
|
|
145
|
-
return _set_prototype_of(Wrapper, Class);
|
|
146
|
-
};
|
|
147
|
-
return _wrap_native_super(Class);
|
|
148
|
-
}
|
|
149
103
|
function _is_native_reflect_construct() {
|
|
150
104
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
151
105
|
if (Reflect.construct.sham) return false;
|
|
@@ -172,8 +126,8 @@ function _create_super(Derived) {
|
|
|
172
126
|
}
|
|
173
127
|
function _templateObject() {
|
|
174
128
|
var data = _tagged_template_literal([
|
|
175
|
-
"\n\n
|
|
176
|
-
";\n
|
|
129
|
+
"\n\n height: ",
|
|
130
|
+
";\n padding-right: ",
|
|
177
131
|
";\n \n"
|
|
178
132
|
]);
|
|
179
133
|
_templateObject = function _templateObject() {
|
|
@@ -181,8 +135,8 @@ function _templateObject() {
|
|
|
181
135
|
};
|
|
182
136
|
return data;
|
|
183
137
|
}
|
|
184
|
-
var DownToggleSVG = /*#__PURE__*/ function(
|
|
185
|
-
_inherits(DownToggleSVG,
|
|
138
|
+
var DownToggleSVG = /*#__PURE__*/ function(SVG) {
|
|
139
|
+
_inherits(DownToggleSVG, SVG);
|
|
186
140
|
var _super = _create_super(DownToggleSVG);
|
|
187
141
|
function DownToggleSVG() {
|
|
188
142
|
_class_call_check(this, DownToggleSVG);
|
|
@@ -210,8 +164,7 @@ var DownToggleSVG = /*#__PURE__*/ function(Element) {
|
|
|
210
164
|
}
|
|
211
165
|
]);
|
|
212
166
|
return DownToggleSVG;
|
|
213
|
-
}(
|
|
214
|
-
_define_property(DownToggleSVG, "tagName", "svg");
|
|
167
|
+
}(_svg.default);
|
|
215
168
|
_define_property(DownToggleSVG, "defaultProperties", {
|
|
216
169
|
width: "32",
|
|
217
170
|
height: "32",
|
|
@@ -220,4 +173,4 @@ _define_property(DownToggleSVG, "defaultProperties", {
|
|
|
220
173
|
});
|
|
221
174
|
var _default = (0, _easywithstyle.default)(DownToggleSVG)(_templateObject(), _styles.toggleSVGHeight, _styles.toggleSVGPaddingRight);
|
|
222
175
|
|
|
223
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
176
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zdmcvdG9nZ2xlL2Rvd24uanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB3aXRoU3R5bGUgZnJvbSBcImVhc3ktd2l0aC1zdHlsZVwiOyAgLy8vXG5cbmltcG9ydCBTVkcgZnJvbSBcIi4uLy4uL3N2Z1wiO1xuXG5pbXBvcnQgeyB0b2dnbGVTVkdIZWlnaHQsIHRvZ2dsZVNWR1BhZGRpbmdSaWdodCB9IGZyb20gXCIuLi8uLi9zdHlsZXNcIjtcblxuY2xhc3MgRG93blRvZ2dsZVNWRyBleHRlbmRzIFNWRyB7XG4gIGNoaWxkRWxlbWVudHMoKSB7XG4gICAgcmV0dXJuIChcblxuICAgICAgPGc+XG4gICAgICAgIDxwYXRoIHN0eWxlPVwic3Ryb2tlLXdpZHRoOjFweFwiIGQ9XCJtIDIyMiw1NCAtNywtMTQgaCAxNCB6XCIgLz5cbiAgICAgIDwvZz5cblxuICAgICk7XG4gIH1cblxuICBwYXJlbnRDb250ZXh0KCkge1xuICAgIGNvbnN0IHNob3dEb3duVG9nZ2xlU1ZHID0gdGhpcy5zaG93LmJpbmQodGhpcyksIC8vL1xuICAgICAgICAgIGhpZGVEb3duVG9nZ2xlU1ZHID0gdGhpcy5oaWRlLmJpbmQodGhpcyk7IC8vL1xuXG4gICAgcmV0dXJuICh7XG4gICAgICBzaG93RG93blRvZ2dsZVNWRyxcbiAgICAgIGhpZGVEb3duVG9nZ2xlU1ZHXG4gICAgfSk7XG4gIH1cblxuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgd2lkdGg6IFwiMzJcIixcbiAgICBoZWlnaHQ6IFwiMzJcIixcbiAgICB2aWV3Qm94OiBcIjIwNiAyNiAzMiAzMlwiLFxuICAgIGNsYXNzTmFtZTogXCJkb3duLXRvZ2dsZVwiXG4gIH07XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShEb3duVG9nZ2xlU1ZHKWBcblxuICBoZWlnaHQ6ICR7dG9nZ2xlU1ZHSGVpZ2h0fTtcbiAgcGFkZGluZy1yaWdodDogJHt0b2dnbGVTVkdQYWRkaW5nUmlnaHR9O1xuICBcbmA7XG5cbiJdLCJuYW1lcyI6WyJEb3duVG9nZ2xlU1ZHIiwiY2hpbGRFbGVtZW50cyIsImciLCJwYXRoIiwic3R5bGUiLCJkIiwicGFyZW50Q29udGV4dCIsInNob3dEb3duVG9nZ2xlU1ZHIiwic2hvdyIsImJpbmQiLCJoaWRlRG93blRvZ2dsZVNWRyIsImhpZGUiLCJTVkciLCJkZWZhdWx0UHJvcGVydGllcyIsIndpZHRoIiwiaGVpZ2h0Iiwidmlld0JveCIsImNsYXNzTmFtZSIsIndpdGhTdHlsZSIsInRvZ2dsZVNWR0hlaWdodCIsInRvZ2dsZVNWR1BhZGRpbmdSaWdodCJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBcUNBOzs7ZUFBQTs7O29FQW5Dc0I7MERBRU47c0JBRXVDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUV2RCxJQUFBLEFBQU1BLDhCQUFELEFBQUw7Y0FBTUE7K0JBQUFBO2FBQUFBO2dDQUFBQTs7O2tCQUFBQTs7WUFDSkMsS0FBQUE7bUJBQUFBLFNBQUFBO2dCQUNFLHFCQUVFLG9CQUFDQyx5QkFDQyxvQkFBQ0M7b0JBQUtDLE9BQU07b0JBQW1CQyxHQUFFOztZQUl2Qzs7O1lBRUFDLEtBQUFBO21CQUFBQSxTQUFBQTtnQkFDRSxJQUFNQyxvQkFBb0IsSUFBSSxDQUFDQyxJQUFJLENBQUNDLElBQUksQ0FBQyxJQUFJLEdBQ3ZDQyxvQkFBb0IsSUFBSSxDQUFDQyxJQUFJLENBQUNGLElBQUksQ0FBQyxJQUFJLEdBQUcsR0FBRztnQkFFbkQsT0FBUTtvQkFDTkYsbUJBQUFBO29CQUNBRyxtQkFBQUE7Z0JBQ0Y7WUFDRjs7O1dBbkJJVjtFQUFzQlksWUFBRztBQXFCN0IsaUJBckJJWixlQXFCR2EscUJBQW9CO0lBQ3pCQyxPQUFPO0lBQ1BDLFFBQVE7SUFDUkMsU0FBUztJQUNUQyxXQUFXO0FBQ2I7SUFHRixXQUFlQyxJQUFBQSxzQkFBUyxFQUFDbEIsa0NBRWJtQix1QkFBZSxFQUNSQyw2QkFBcUIifQ==
|
package/lib/svg/toggle/up.js
CHANGED
|
@@ -9,7 +9,7 @@ Object.defineProperty(exports, "default", {
|
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
11
|
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
|
-
var
|
|
12
|
+
var _svg = /*#__PURE__*/ _interop_require_default(require("../../svg"));
|
|
13
13
|
var _styles = require("../../styles");
|
|
14
14
|
function _assert_this_initialized(self) {
|
|
15
15
|
if (self === void 0) {
|
|
@@ -22,23 +22,6 @@ function _class_call_check(instance, Constructor) {
|
|
|
22
22
|
throw new TypeError("Cannot call a class as a function");
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
function _construct(Parent, args, Class) {
|
|
26
|
-
if (_is_native_reflect_construct()) {
|
|
27
|
-
_construct = Reflect.construct;
|
|
28
|
-
} else {
|
|
29
|
-
_construct = function construct(Parent, args, Class) {
|
|
30
|
-
var a = [
|
|
31
|
-
null
|
|
32
|
-
];
|
|
33
|
-
a.push.apply(a, args);
|
|
34
|
-
var Constructor = Function.bind.apply(Parent, a);
|
|
35
|
-
var instance = new Constructor();
|
|
36
|
-
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
37
|
-
return instance;
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
return _construct.apply(null, arguments);
|
|
41
|
-
}
|
|
42
25
|
function _defineProperties(target, props) {
|
|
43
26
|
for(var i = 0; i < props.length; i++){
|
|
44
27
|
var descriptor = props[i];
|
|
@@ -90,9 +73,6 @@ function _interop_require_default(obj) {
|
|
|
90
73
|
default: obj
|
|
91
74
|
};
|
|
92
75
|
}
|
|
93
|
-
function _is_native_function(fn) {
|
|
94
|
-
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
95
|
-
}
|
|
96
76
|
function _possible_constructor_return(self, call) {
|
|
97
77
|
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
98
78
|
return call;
|
|
@@ -120,32 +100,6 @@ function _type_of(obj) {
|
|
|
120
100
|
"@swc/helpers - typeof";
|
|
121
101
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
122
102
|
}
|
|
123
|
-
function _wrap_native_super(Class) {
|
|
124
|
-
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
125
|
-
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
126
|
-
if (Class === null || !_is_native_function(Class)) return Class;
|
|
127
|
-
if (typeof Class !== "function") {
|
|
128
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
129
|
-
}
|
|
130
|
-
if (typeof _cache !== "undefined") {
|
|
131
|
-
if (_cache.has(Class)) return _cache.get(Class);
|
|
132
|
-
_cache.set(Class, Wrapper);
|
|
133
|
-
}
|
|
134
|
-
function Wrapper() {
|
|
135
|
-
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
136
|
-
}
|
|
137
|
-
Wrapper.prototype = Object.create(Class.prototype, {
|
|
138
|
-
constructor: {
|
|
139
|
-
value: Wrapper,
|
|
140
|
-
enumerable: false,
|
|
141
|
-
writable: true,
|
|
142
|
-
configurable: true
|
|
143
|
-
}
|
|
144
|
-
});
|
|
145
|
-
return _set_prototype_of(Wrapper, Class);
|
|
146
|
-
};
|
|
147
|
-
return _wrap_native_super(Class);
|
|
148
|
-
}
|
|
149
103
|
function _is_native_reflect_construct() {
|
|
150
104
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
151
105
|
if (Reflect.construct.sham) return false;
|
|
@@ -172,8 +126,8 @@ function _create_super(Derived) {
|
|
|
172
126
|
}
|
|
173
127
|
function _templateObject() {
|
|
174
128
|
var data = _tagged_template_literal([
|
|
175
|
-
"\n\n
|
|
176
|
-
";\n
|
|
129
|
+
"\n\n height: ",
|
|
130
|
+
";\n margin-right: ",
|
|
177
131
|
";\n \n"
|
|
178
132
|
]);
|
|
179
133
|
_templateObject = function _templateObject() {
|
|
@@ -181,8 +135,8 @@ function _templateObject() {
|
|
|
181
135
|
};
|
|
182
136
|
return data;
|
|
183
137
|
}
|
|
184
|
-
var UpToggleSVG = /*#__PURE__*/ function(
|
|
185
|
-
_inherits(UpToggleSVG,
|
|
138
|
+
var UpToggleSVG = /*#__PURE__*/ function(SVG) {
|
|
139
|
+
_inherits(UpToggleSVG, SVG);
|
|
186
140
|
var _super = _create_super(UpToggleSVG);
|
|
187
141
|
function UpToggleSVG() {
|
|
188
142
|
_class_call_check(this, UpToggleSVG);
|
|
@@ -210,7 +164,7 @@ var UpToggleSVG = /*#__PURE__*/ function(Element) {
|
|
|
210
164
|
}
|
|
211
165
|
]);
|
|
212
166
|
return UpToggleSVG;
|
|
213
|
-
}(
|
|
167
|
+
}(_svg.default);
|
|
214
168
|
_define_property(UpToggleSVG, "tagName", "svg");
|
|
215
169
|
_define_property(UpToggleSVG, "defaultProperties", {
|
|
216
170
|
width: "32",
|
|
@@ -220,4 +174,4 @@ _define_property(UpToggleSVG, "defaultProperties", {
|
|
|
220
174
|
});
|
|
221
175
|
var _default = (0, _easywithstyle.default)(UpToggleSVG)(_templateObject(), _styles.toggleSVGHeight, _styles.toggleSVGPaddingRight);
|
|
222
176
|
|
|
223
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
177
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zdmcvdG9nZ2xlL3VwLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xuXG5pbXBvcnQgU1ZHIGZyb20gXCIuLi8uLi9zdmdcIjtcblxuaW1wb3J0IHsgdG9nZ2xlU1ZHSGVpZ2h0LCB0b2dnbGVTVkdQYWRkaW5nUmlnaHQgfSBmcm9tIFwiLi4vLi4vc3R5bGVzXCI7XG5cbmNsYXNzIFVwVG9nZ2xlU1ZHIGV4dGVuZHMgU1ZHIHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8Zz5cbiAgICAgICAgPHBhdGggc3R5bGU9XCJzdHJva2Utd2lkdGg6MXB4XCIgZD1cIm0gMjY0LDUwIC0xNCw3IFYgNDQgWlwiIC8+XG4gICAgICA8L2c+XG5cbiAgICApO1xuICB9XG5cbiAgcGFyZW50Q29udGV4dCgpIHtcbiAgICBjb25zdCBzaG93VXBUb2dnbGVTVkcgPSB0aGlzLnNob3cuYmluZCh0aGlzKSwgLy8vXG4gICAgICAgICAgaGlkZVVwVG9nZ2xlU1ZHID0gdGhpcy5oaWRlLmJpbmQodGhpcyk7IC8vL1xuXG4gICAgcmV0dXJuICh7XG4gICAgICBzaG93VXBUb2dnbGVTVkcsXG4gICAgICBoaWRlVXBUb2dnbGVTVkdcbiAgICB9KTtcbiAgfVxuXG4gIHN0YXRpYyB0YWdOYW1lID0gXCJzdmdcIjtcblxuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgd2lkdGg6IFwiMzJcIixcbiAgICBoZWlnaHQ6IFwiMzJcIixcbiAgICB2aWV3Qm94OiBcIjI0MCAzMCAzMiAzMlwiLFxuICAgIGNsYXNzTmFtZTogXCJ1cC10b2dnbGVcIlxuICB9O1xufVxuXG5leHBvcnQgZGVmYXVsdCB3aXRoU3R5bGUoVXBUb2dnbGVTVkcpYFxuXG4gIGhlaWdodDogJHt0b2dnbGVTVkdIZWlnaHR9O1xuICBtYXJnaW4tcmlnaHQ6ICR7dG9nZ2xlU1ZHUGFkZGluZ1JpZ2h0fTtcbiAgXG5gO1xuIl0sIm5hbWVzIjpbIlVwVG9nZ2xlU1ZHIiwiY2hpbGRFbGVtZW50cyIsImciLCJwYXRoIiwic3R5bGUiLCJkIiwicGFyZW50Q29udGV4dCIsInNob3dVcFRvZ2dsZVNWRyIsInNob3ciLCJiaW5kIiwiaGlkZVVwVG9nZ2xlU1ZHIiwiaGlkZSIsIlNWRyIsInRhZ05hbWUiLCJkZWZhdWx0UHJvcGVydGllcyIsIndpZHRoIiwiaGVpZ2h0Iiwidmlld0JveCIsImNsYXNzTmFtZSIsIndpdGhTdHlsZSIsInRvZ2dsZVNWR0hlaWdodCIsInRvZ2dsZVNWR1BhZGRpbmdSaWdodCJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBdUNBOzs7ZUFBQTs7O29FQXJDc0I7MERBRU47c0JBRXVDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUV2RCxJQUFBLEFBQU1BLDRCQUFELEFBQUw7Y0FBTUE7K0JBQUFBO2FBQUFBO2dDQUFBQTs7O2tCQUFBQTs7WUFDSkMsS0FBQUE7bUJBQUFBLFNBQUFBO2dCQUNFLHFCQUVFLG9CQUFDQyx5QkFDQyxvQkFBQ0M7b0JBQUtDLE9BQU07b0JBQW1CQyxHQUFFOztZQUl2Qzs7O1lBRUFDLEtBQUFBO21CQUFBQSxTQUFBQTtnQkFDRSxJQUFNQyxrQkFBa0IsSUFBSSxDQUFDQyxJQUFJLENBQUNDLElBQUksQ0FBQyxJQUFJLEdBQ3JDQyxrQkFBa0IsSUFBSSxDQUFDQyxJQUFJLENBQUNGLElBQUksQ0FBQyxJQUFJLEdBQUcsR0FBRztnQkFFakQsT0FBUTtvQkFDTkYsaUJBQUFBO29CQUNBRyxpQkFBQUE7Z0JBQ0Y7WUFDRjs7O1dBbkJJVjtFQUFvQlksWUFBRztBQXFCM0IsaUJBckJJWixhQXFCR2EsV0FBVTtBQUVqQixpQkF2QkliLGFBdUJHYyxxQkFBb0I7SUFDekJDLE9BQU87SUFDUEMsUUFBUTtJQUNSQyxTQUFTO0lBQ1RDLFdBQVc7QUFDYjtJQUdGLFdBQWVDLElBQUFBLHNCQUFTLEVBQUNuQixnQ0FFYm9CLHVCQUFlLEVBQ1RDLDZCQUFxQiJ9
|
package/lib/svg.js
ADDED
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
|
+
var _easy = require("easy");
|
|
13
|
+
function _assert_this_initialized(self) {
|
|
14
|
+
if (self === void 0) {
|
|
15
|
+
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
16
|
+
}
|
|
17
|
+
return self;
|
|
18
|
+
}
|
|
19
|
+
function _class_call_check(instance, Constructor) {
|
|
20
|
+
if (!(instance instanceof Constructor)) {
|
|
21
|
+
throw new TypeError("Cannot call a class as a function");
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
function _construct(Parent, args, Class) {
|
|
25
|
+
if (_is_native_reflect_construct()) {
|
|
26
|
+
_construct = Reflect.construct;
|
|
27
|
+
} else {
|
|
28
|
+
_construct = function construct(Parent, args, Class) {
|
|
29
|
+
var a = [
|
|
30
|
+
null
|
|
31
|
+
];
|
|
32
|
+
a.push.apply(a, args);
|
|
33
|
+
var Constructor = Function.bind.apply(Parent, a);
|
|
34
|
+
var instance = new Constructor();
|
|
35
|
+
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
36
|
+
return instance;
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
return _construct.apply(null, arguments);
|
|
40
|
+
}
|
|
41
|
+
function _define_property(obj, key, value) {
|
|
42
|
+
if (key in obj) {
|
|
43
|
+
Object.defineProperty(obj, key, {
|
|
44
|
+
value: value,
|
|
45
|
+
enumerable: true,
|
|
46
|
+
configurable: true,
|
|
47
|
+
writable: true
|
|
48
|
+
});
|
|
49
|
+
} else {
|
|
50
|
+
obj[key] = value;
|
|
51
|
+
}
|
|
52
|
+
return obj;
|
|
53
|
+
}
|
|
54
|
+
function _get_prototype_of(o) {
|
|
55
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
56
|
+
return o.__proto__ || Object.getPrototypeOf(o);
|
|
57
|
+
};
|
|
58
|
+
return _get_prototype_of(o);
|
|
59
|
+
}
|
|
60
|
+
function _inherits(subClass, superClass) {
|
|
61
|
+
if (typeof superClass !== "function" && superClass !== null) {
|
|
62
|
+
throw new TypeError("Super expression must either be null or a function");
|
|
63
|
+
}
|
|
64
|
+
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
65
|
+
constructor: {
|
|
66
|
+
value: subClass,
|
|
67
|
+
writable: true,
|
|
68
|
+
configurable: true
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
72
|
+
}
|
|
73
|
+
function _interop_require_default(obj) {
|
|
74
|
+
return obj && obj.__esModule ? obj : {
|
|
75
|
+
default: obj
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
function _is_native_function(fn) {
|
|
79
|
+
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
80
|
+
}
|
|
81
|
+
function _possible_constructor_return(self, call) {
|
|
82
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
83
|
+
return call;
|
|
84
|
+
}
|
|
85
|
+
return _assert_this_initialized(self);
|
|
86
|
+
}
|
|
87
|
+
function _set_prototype_of(o, p) {
|
|
88
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
89
|
+
o.__proto__ = p;
|
|
90
|
+
return o;
|
|
91
|
+
};
|
|
92
|
+
return _set_prototype_of(o, p);
|
|
93
|
+
}
|
|
94
|
+
function _tagged_template_literal(strings, raw) {
|
|
95
|
+
if (!raw) {
|
|
96
|
+
raw = strings.slice(0);
|
|
97
|
+
}
|
|
98
|
+
return Object.freeze(Object.defineProperties(strings, {
|
|
99
|
+
raw: {
|
|
100
|
+
value: Object.freeze(raw)
|
|
101
|
+
}
|
|
102
|
+
}));
|
|
103
|
+
}
|
|
104
|
+
function _type_of(obj) {
|
|
105
|
+
"@swc/helpers - typeof";
|
|
106
|
+
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
107
|
+
}
|
|
108
|
+
function _wrap_native_super(Class) {
|
|
109
|
+
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
110
|
+
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
111
|
+
if (Class === null || !_is_native_function(Class)) return Class;
|
|
112
|
+
if (typeof Class !== "function") {
|
|
113
|
+
throw new TypeError("Super expression must either be null or a function");
|
|
114
|
+
}
|
|
115
|
+
if (typeof _cache !== "undefined") {
|
|
116
|
+
if (_cache.has(Class)) return _cache.get(Class);
|
|
117
|
+
_cache.set(Class, Wrapper);
|
|
118
|
+
}
|
|
119
|
+
function Wrapper() {
|
|
120
|
+
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
121
|
+
}
|
|
122
|
+
Wrapper.prototype = Object.create(Class.prototype, {
|
|
123
|
+
constructor: {
|
|
124
|
+
value: Wrapper,
|
|
125
|
+
enumerable: false,
|
|
126
|
+
writable: true,
|
|
127
|
+
configurable: true
|
|
128
|
+
}
|
|
129
|
+
});
|
|
130
|
+
return _set_prototype_of(Wrapper, Class);
|
|
131
|
+
};
|
|
132
|
+
return _wrap_native_super(Class);
|
|
133
|
+
}
|
|
134
|
+
function _is_native_reflect_construct() {
|
|
135
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
136
|
+
if (Reflect.construct.sham) return false;
|
|
137
|
+
if (typeof Proxy === "function") return true;
|
|
138
|
+
try {
|
|
139
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
140
|
+
return true;
|
|
141
|
+
} catch (e) {
|
|
142
|
+
return false;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
function _create_super(Derived) {
|
|
146
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
147
|
+
return function _createSuperInternal() {
|
|
148
|
+
var Super = _get_prototype_of(Derived), result;
|
|
149
|
+
if (hasNativeReflectConstruct) {
|
|
150
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
151
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
152
|
+
} else {
|
|
153
|
+
result = Super.apply(this, arguments);
|
|
154
|
+
}
|
|
155
|
+
return _possible_constructor_return(this, result);
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
function _templateObject() {
|
|
159
|
+
var data = _tagged_template_literal([
|
|
160
|
+
"\n\n width: auto;\n stroke: #000000;\n pointer-events: none;\n \n"
|
|
161
|
+
]);
|
|
162
|
+
_templateObject = function _templateObject() {
|
|
163
|
+
return data;
|
|
164
|
+
};
|
|
165
|
+
return data;
|
|
166
|
+
}
|
|
167
|
+
var SVG = /*#__PURE__*/ function(Element) {
|
|
168
|
+
_inherits(SVG, Element);
|
|
169
|
+
var _super = _create_super(SVG);
|
|
170
|
+
function SVG() {
|
|
171
|
+
_class_call_check(this, SVG);
|
|
172
|
+
return _super.apply(this, arguments);
|
|
173
|
+
}
|
|
174
|
+
return SVG;
|
|
175
|
+
}(_wrap_native_super(_easy.Element));
|
|
176
|
+
_define_property(SVG, "tagName", "svg");
|
|
177
|
+
var _default = (0, _easywithstyle.default)(SVG)(_templateObject());
|
|
178
|
+
|
|
179
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9zdmcuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB3aXRoU3R5bGUgZnJvbSBcImVhc3ktd2l0aC1zdHlsZVwiOyAgLy8vXG5cbmltcG9ydCB7IEVsZW1lbnQgfSBmcm9tIFwiZWFzeVwiO1xuXG5jbGFzcyBTVkcgZXh0ZW5kcyBFbGVtZW50IHtcbiAgc3RhdGljIHRhZ05hbWUgPSBcInN2Z1wiO1xufVxuXG5leHBvcnQgZGVmYXVsdCB3aXRoU3R5bGUoU1ZHKWBcblxuICB3aWR0aDogYXV0bztcbiAgc3Ryb2tlOiAjMDAwMDAwO1xuICBwb2ludGVyLWV2ZW50czogbm9uZTtcbiAgXG5gO1xuIl0sIm5hbWVzIjpbIlNWRyIsIkVsZW1lbnQiLCJ0YWdOYW1lIiwid2l0aFN0eWxlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkFVQTs7O2VBQUE7OztvRUFSc0I7b0JBRUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXhCLElBQUEsQUFBTUEsb0JBQUQsQUFBTDtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7V0FBQUE7cUJBQVlDLGFBQU87QUFDdkIsaUJBRElELEtBQ0dFLFdBQVU7SUFHbkIsV0FBZUMsSUFBQUEsc0JBQVMsRUFBQ0gifQ==
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy-file-system",
|
|
3
3
|
"author": "James Smith",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.251",
|
|
5
5
|
"license": "MIT, Anti-996",
|
|
6
6
|
"homepage": "https://github.com/djalbat/easy-file-system",
|
|
7
7
|
"description": "A file system explorer and a rubbish bin.",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"easy": "^19.0.1",
|
|
14
|
-
"easy-drag-and-drop": "^1.3.
|
|
15
|
-
"easy-layout": "^6.0.
|
|
14
|
+
"easy-drag-and-drop": "^1.3.179",
|
|
15
|
+
"easy-layout": "^6.0.175",
|
|
16
16
|
"easy-with-style": "^3.0.391",
|
|
17
17
|
"necessary": "^14.0.1"
|
|
18
18
|
},
|
package/src/example/view.js
CHANGED
|
@@ -92,7 +92,7 @@ export default class View extends Element {
|
|
|
92
92
|
onCustomRename={this.renameCustomHandler}
|
|
93
93
|
onCustomCreate={this.createCustomHandler}
|
|
94
94
|
onCustomSelect={this.selectCustomHandler}
|
|
95
|
-
|
|
95
|
+
/>,,
|
|
96
96
|
<SecondExplorer onCustomOpen={this.openCustomHandler}
|
|
97
97
|
onCustomMove={this.moveCustomHandler}
|
|
98
98
|
onCustomRename={this.renameCustomHandler}
|
package/src/item/entry/drag.js
CHANGED
package/src/list/entries.js
CHANGED
|
@@ -11,12 +11,32 @@ import { FILE_NAME_DRAG_ENTRY_TYPE, DIRECTORY_NAME_DRAG_ENTRY_TYPE } from "../en
|
|
|
11
11
|
const { filter } = arrayUtilities,
|
|
12
12
|
{ topmostDirectoryNameFromPath, pathWithoutTopmostDirectoryNameFromPath } = pathUtilities;
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
function getMarkerEntryItem() {
|
|
15
|
+
const { markerEntryItem } = globalThis;
|
|
16
|
+
|
|
17
|
+
return markerEntryItem;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function setMarkerEntryItem(markerEntryItem) {
|
|
21
|
+
Object.assign(globalThis, {
|
|
22
|
+
markerEntryItem
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function resetMarkerEntryItem() {
|
|
27
|
+
const markerEntryItem = null;
|
|
28
|
+
|
|
29
|
+
setMarkerEntryItem(markerEntryItem);
|
|
30
|
+
}
|
|
15
31
|
|
|
16
32
|
Object.assign(globalThis, {
|
|
17
|
-
|
|
33
|
+
getMarkerEntryItem,
|
|
34
|
+
setMarkerEntryItem,
|
|
35
|
+
resetMarkerEntryItem
|
|
18
36
|
});
|
|
19
37
|
|
|
38
|
+
resetMarkerEntryItem();
|
|
39
|
+
|
|
20
40
|
class EntriesList extends Element {
|
|
21
41
|
isTopmost() {
|
|
22
42
|
const { topmost = false } = this.properties;
|
|
@@ -337,9 +357,7 @@ class EntriesList extends Element {
|
|
|
337
357
|
|
|
338
358
|
this.addEntryItem(entryItem);
|
|
339
359
|
|
|
340
|
-
|
|
341
|
-
markerEntryItem
|
|
342
|
-
});
|
|
360
|
+
setMarkerEntryItem(markerEntryItem);
|
|
343
361
|
}
|
|
344
362
|
|
|
345
363
|
removeMarkerEntryItem() {
|
|
@@ -347,11 +365,7 @@ class EntriesList extends Element {
|
|
|
347
365
|
|
|
348
366
|
markerEntryItem.remove();
|
|
349
367
|
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
Object.assign(globalThis, {
|
|
353
|
-
markerEntryItem
|
|
354
|
-
});
|
|
368
|
+
resetMarkerEntryItem();
|
|
355
369
|
}
|
|
356
370
|
|
|
357
371
|
createFileNameDragEntryItem(fileName, readOnly) {
|
|
@@ -542,7 +556,7 @@ class EntriesList extends Element {
|
|
|
542
556
|
}
|
|
543
557
|
|
|
544
558
|
retrieveMarkerEntryItem() {
|
|
545
|
-
const
|
|
559
|
+
const markerEntryItem = getMarkerEntryItem();
|
|
546
560
|
|
|
547
561
|
return markerEntryItem;
|
|
548
562
|
}
|
package/src/rubbishBin.js
CHANGED
|
@@ -68,7 +68,7 @@ class RubbishBin extends Element {
|
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
retrieveMarkerEntryItem() {
|
|
71
|
-
const
|
|
71
|
+
const markerEntryItem = getMarkerEntryItem();
|
|
72
72
|
|
|
73
73
|
return markerEntryItem;
|
|
74
74
|
}
|
|
@@ -121,17 +121,13 @@ class RubbishBin extends Element {
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
|
|
125
|
-
markerEntryItem
|
|
126
|
-
});
|
|
124
|
+
setMarkerEntryItem(markerEntryItem);
|
|
127
125
|
}
|
|
128
126
|
|
|
129
127
|
removeMarkerEntryItem() {
|
|
130
|
-
|
|
128
|
+
resetDropElement();
|
|
131
129
|
|
|
132
|
-
|
|
133
|
-
markerEntryItem
|
|
134
|
-
});
|
|
130
|
+
resetMarkerEntryItem();
|
|
135
131
|
}
|
|
136
132
|
|
|
137
133
|
dropDragEntryItem(event, element, dragEntryItem, done) {
|
package/src/svg/directoryName.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
import withStyle from "easy-with-style"; ///
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import SVG from "../svg";
|
|
6
6
|
|
|
7
7
|
import { directoryNameSVGHeight, directoryNameSVGPaddingRight } from "../styles";
|
|
8
8
|
|
|
9
|
-
class DirectoryNameSVG extends
|
|
9
|
+
class DirectoryNameSVG extends SVG {
|
|
10
10
|
childElements() {
|
|
11
11
|
return (
|
|
12
12
|
|
|
@@ -32,9 +32,7 @@ class DirectoryNameSVG extends Element {
|
|
|
32
32
|
export default withStyle(DirectoryNameSVG)`
|
|
33
33
|
|
|
34
34
|
fill: none;
|
|
35
|
-
width: auto;
|
|
36
35
|
height: ${directoryNameSVGHeight};
|
|
37
|
-
stroke: #000000;
|
|
38
36
|
display: inline;
|
|
39
37
|
padding-right: ${directoryNameSVGPaddingRight};
|
|
40
38
|
|
package/src/svg/fileName.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
import withStyle from "easy-with-style"; ///
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import SVG from "../svg";
|
|
6
6
|
|
|
7
7
|
import { fileNameSVGHeight, fileNameSVGPaddingRight, fileNameSVGPaddingLeft } from "../styles";
|
|
8
8
|
|
|
9
|
-
class FileNameSVG extends
|
|
9
|
+
class FileNameSVG extends SVG {
|
|
10
10
|
childElements() {
|
|
11
11
|
return (
|
|
12
12
|
|
|
@@ -32,9 +32,7 @@ class FileNameSVG extends Element {
|
|
|
32
32
|
export default withStyle(FileNameSVG)`
|
|
33
33
|
|
|
34
34
|
fill: none;
|
|
35
|
-
width: auto;
|
|
36
35
|
height: ${fileNameSVGHeight};
|
|
37
|
-
stroke: #000000;
|
|
38
36
|
display: inline;
|
|
39
37
|
padding-left: ${fileNameSVGPaddingLeft};
|
|
40
38
|
padding-right: ${fileNameSVGPaddingRight};
|
package/src/svg/marker.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
import withStyle from "easy-with-style"; ///
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import SVG from "../svg";
|
|
6
6
|
|
|
7
7
|
import { markerSVGHeight, markerSVGMarginLeft } from "../styles";
|
|
8
8
|
|
|
9
|
-
class MarkerSVG extends
|
|
9
|
+
class MarkerSVG extends SVG {
|
|
10
10
|
childElements() {
|
|
11
11
|
return (
|
|
12
12
|
|
|
@@ -30,9 +30,7 @@ class MarkerSVG extends Element {
|
|
|
30
30
|
export default withStyle(MarkerSVG)`
|
|
31
31
|
|
|
32
32
|
fill: none;
|
|
33
|
-
width: auto;
|
|
34
33
|
height: ${markerSVGHeight};
|
|
35
|
-
stroke: #000000;
|
|
36
34
|
display: inline;
|
|
37
35
|
margin-left: ${markerSVGMarginLeft};
|
|
38
36
|
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
import withStyle from "easy-with-style"; ///
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import SVG from "../../svg";
|
|
6
6
|
|
|
7
7
|
import { rubbishBinSVGHeight } from "../../styles";
|
|
8
8
|
|
|
9
|
-
class ClosedRubbishBinSVG extends
|
|
9
|
+
class ClosedRubbishBinSVG extends SVG {
|
|
10
10
|
childElements() {
|
|
11
11
|
return (
|
|
12
12
|
|
|
@@ -34,8 +34,6 @@ class ClosedRubbishBinSVG extends Element {
|
|
|
34
34
|
});
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
static tagName = "svg";
|
|
38
|
-
|
|
39
37
|
static defaultProperties = {
|
|
40
38
|
width: "60",
|
|
41
39
|
height: "60",
|
|
@@ -47,8 +45,6 @@ class ClosedRubbishBinSVG extends Element {
|
|
|
47
45
|
export default withStyle(ClosedRubbishBinSVG)`
|
|
48
46
|
|
|
49
47
|
fill: none;
|
|
50
|
-
width: auto;
|
|
51
|
-
stroke: #000000;
|
|
52
48
|
height: ${rubbishBinSVGHeight};
|
|
53
49
|
|
|
54
50
|
`;
|