easy-file-system 2.1.20 → 2.1.21
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 +4789 -4977
- package/lib/button/toggle.js +36 -36
- package/lib/div/item/entry/drag/directoryName.js +32 -32
- package/lib/div/item/entry/drag/fileName.js +31 -31
- package/lib/div/item/entry/drag.js +31 -31
- package/lib/div/item/entry/marker.js +29 -29
- package/lib/div/item/entry.js +45 -56
- package/lib/example/view/button.js +6 -6
- package/lib/example/view/explorer/first.js +33 -33
- package/lib/example/view/explorer/second.js +33 -33
- package/lib/example/view/rubbishBin.js +25 -25
- package/lib/example/view.js +53 -64
- package/lib/example.js +5 -5
- package/lib/explorer.js +65 -76
- package/lib/index.js +19 -19
- package/lib/item/entry/drag/directoryName.js +46 -46
- package/lib/item/entry/drag/fileName.js +33 -33
- package/lib/item/entry/drag.js +46 -46
- package/lib/item/entry/marker/directoryName.js +30 -30
- package/lib/item/entry/marker/fileName.js +30 -30
- package/lib/item/entry/marker.js +32 -32
- package/lib/item/entry.js +45 -56
- package/lib/list/entries.js +58 -69
- package/lib/rubbishBin.js +59 -70
- package/lib/span/name.js +46 -57
- package/lib/svg/directoryName.js +44 -55
- package/lib/svg/fileName.js +44 -55
- package/lib/svg/marker.js +44 -55
- package/lib/svg/rubbishBin/closed.js +44 -55
- package/lib/svg/rubbishBin/open.js +44 -55
- package/lib/svg/toggle/down.js +44 -55
- package/lib/svg/toggle/up.js +44 -55
- package/package.json +3 -3
package/lib/svg/directoryName.js
CHANGED
|
@@ -8,43 +8,32 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
12
|
var _easy = require("easy");
|
|
13
13
|
var _styles = require("../styles");
|
|
14
|
-
function
|
|
14
|
+
function _assert_this_initialized(self) {
|
|
15
15
|
if (self === void 0) {
|
|
16
16
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17
17
|
}
|
|
18
18
|
return self;
|
|
19
19
|
}
|
|
20
|
-
function
|
|
20
|
+
function _class_call_check(instance, Constructor) {
|
|
21
21
|
if (!(instance instanceof Constructor)) {
|
|
22
22
|
throw new TypeError("Cannot call a class as a function");
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
function isNativeReflectConstruct() {
|
|
26
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
27
|
-
if (Reflect.construct.sham) return false;
|
|
28
|
-
if (typeof Proxy === "function") return true;
|
|
29
|
-
try {
|
|
30
|
-
Date.prototype.toString.call(Reflect.construct(Date, [], function() {}));
|
|
31
|
-
return true;
|
|
32
|
-
} catch (e) {
|
|
33
|
-
return false;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
25
|
function _construct(Parent, args, Class) {
|
|
37
|
-
if (
|
|
26
|
+
if (_is_native_reflect_construct()) {
|
|
38
27
|
_construct = Reflect.construct;
|
|
39
28
|
} else {
|
|
40
|
-
_construct = function
|
|
29
|
+
_construct = function construct(Parent, args, Class) {
|
|
41
30
|
var a = [
|
|
42
31
|
null
|
|
43
32
|
];
|
|
44
33
|
a.push.apply(a, args);
|
|
45
34
|
var Constructor = Function.bind.apply(Parent, a);
|
|
46
35
|
var instance = new Constructor();
|
|
47
|
-
if (Class)
|
|
36
|
+
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
48
37
|
return instance;
|
|
49
38
|
};
|
|
50
39
|
}
|
|
@@ -59,12 +48,12 @@ function _defineProperties(target, props) {
|
|
|
59
48
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
60
49
|
}
|
|
61
50
|
}
|
|
62
|
-
function
|
|
51
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
63
52
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
64
53
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
65
54
|
return Constructor;
|
|
66
55
|
}
|
|
67
|
-
function
|
|
56
|
+
function _define_property(obj, key, value) {
|
|
68
57
|
if (key in obj) {
|
|
69
58
|
Object.defineProperty(obj, key, {
|
|
70
59
|
value: value,
|
|
@@ -77,11 +66,11 @@ function _defineProperty(obj, key, value) {
|
|
|
77
66
|
}
|
|
78
67
|
return obj;
|
|
79
68
|
}
|
|
80
|
-
function
|
|
81
|
-
|
|
69
|
+
function _get_prototype_of(o) {
|
|
70
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
82
71
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
83
72
|
};
|
|
84
|
-
return
|
|
73
|
+
return _get_prototype_of(o);
|
|
85
74
|
}
|
|
86
75
|
function _inherits(subClass, superClass) {
|
|
87
76
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -94,30 +83,30 @@ function _inherits(subClass, superClass) {
|
|
|
94
83
|
configurable: true
|
|
95
84
|
}
|
|
96
85
|
});
|
|
97
|
-
if (superClass)
|
|
86
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
98
87
|
}
|
|
99
|
-
function
|
|
88
|
+
function _interop_require_default(obj) {
|
|
100
89
|
return obj && obj.__esModule ? obj : {
|
|
101
90
|
default: obj
|
|
102
91
|
};
|
|
103
92
|
}
|
|
104
|
-
function
|
|
93
|
+
function _is_native_function(fn) {
|
|
105
94
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
106
95
|
}
|
|
107
|
-
function
|
|
108
|
-
if (call && (
|
|
96
|
+
function _possible_constructor_return(self, call) {
|
|
97
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
109
98
|
return call;
|
|
110
99
|
}
|
|
111
|
-
return
|
|
100
|
+
return _assert_this_initialized(self);
|
|
112
101
|
}
|
|
113
|
-
function
|
|
114
|
-
|
|
102
|
+
function _set_prototype_of(o, p) {
|
|
103
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
115
104
|
o.__proto__ = p;
|
|
116
105
|
return o;
|
|
117
106
|
};
|
|
118
|
-
return
|
|
107
|
+
return _set_prototype_of(o, p);
|
|
119
108
|
}
|
|
120
|
-
function
|
|
109
|
+
function _tagged_template_literal(strings, raw) {
|
|
121
110
|
if (!raw) {
|
|
122
111
|
raw = strings.slice(0);
|
|
123
112
|
}
|
|
@@ -127,14 +116,14 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
127
116
|
}
|
|
128
117
|
}));
|
|
129
118
|
}
|
|
130
|
-
|
|
119
|
+
function _type_of(obj) {
|
|
131
120
|
"@swc/helpers - typeof";
|
|
132
121
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
133
|
-
}
|
|
134
|
-
function
|
|
122
|
+
}
|
|
123
|
+
function _wrap_native_super(Class) {
|
|
135
124
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
136
|
-
|
|
137
|
-
if (Class === null || !
|
|
125
|
+
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
126
|
+
if (Class === null || !_is_native_function(Class)) return Class;
|
|
138
127
|
if (typeof Class !== "function") {
|
|
139
128
|
throw new TypeError("Super expression must either be null or a function");
|
|
140
129
|
}
|
|
@@ -143,7 +132,7 @@ function _wrapNativeSuper(Class) {
|
|
|
143
132
|
_cache.set(Class, Wrapper);
|
|
144
133
|
}
|
|
145
134
|
function Wrapper() {
|
|
146
|
-
return _construct(Class, arguments,
|
|
135
|
+
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
147
136
|
}
|
|
148
137
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
149
138
|
constructor: {
|
|
@@ -153,11 +142,11 @@ function _wrapNativeSuper(Class) {
|
|
|
153
142
|
configurable: true
|
|
154
143
|
}
|
|
155
144
|
});
|
|
156
|
-
return
|
|
145
|
+
return _set_prototype_of(Wrapper, Class);
|
|
157
146
|
};
|
|
158
|
-
return
|
|
147
|
+
return _wrap_native_super(Class);
|
|
159
148
|
}
|
|
160
|
-
function
|
|
149
|
+
function _is_native_reflect_construct() {
|
|
161
150
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
162
151
|
if (Reflect.construct.sham) return false;
|
|
163
152
|
if (typeof Proxy === "function") return true;
|
|
@@ -168,21 +157,21 @@ function _isNativeReflectConstruct() {
|
|
|
168
157
|
return false;
|
|
169
158
|
}
|
|
170
159
|
}
|
|
171
|
-
function
|
|
172
|
-
var hasNativeReflectConstruct =
|
|
160
|
+
function _create_super(Derived) {
|
|
161
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
173
162
|
return function _createSuperInternal() {
|
|
174
|
-
var Super =
|
|
163
|
+
var Super = _get_prototype_of(Derived), result;
|
|
175
164
|
if (hasNativeReflectConstruct) {
|
|
176
|
-
var NewTarget =
|
|
165
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
177
166
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
178
167
|
} else {
|
|
179
168
|
result = Super.apply(this, arguments);
|
|
180
169
|
}
|
|
181
|
-
return
|
|
170
|
+
return _possible_constructor_return(this, result);
|
|
182
171
|
};
|
|
183
172
|
}
|
|
184
173
|
function _templateObject() {
|
|
185
|
-
var data =
|
|
174
|
+
var data = _tagged_template_literal([
|
|
186
175
|
"\n\n fill: none;\n width: auto;\n height: ",
|
|
187
176
|
";\n stroke: #000000;\n display: inline;\n padding-right: ",
|
|
188
177
|
";\n \n"
|
|
@@ -194,12 +183,12 @@ function _templateObject() {
|
|
|
194
183
|
}
|
|
195
184
|
var DirectoryNameSVG = /*#__PURE__*/ function(Element) {
|
|
196
185
|
_inherits(DirectoryNameSVG, Element);
|
|
197
|
-
var _super =
|
|
186
|
+
var _super = _create_super(DirectoryNameSVG);
|
|
198
187
|
function DirectoryNameSVG() {
|
|
199
|
-
|
|
188
|
+
_class_call_check(this, DirectoryNameSVG);
|
|
200
189
|
return _super.apply(this, arguments);
|
|
201
190
|
}
|
|
202
|
-
|
|
191
|
+
_create_class(DirectoryNameSVG, [
|
|
203
192
|
{
|
|
204
193
|
key: "childElements",
|
|
205
194
|
value: function childElements() {
|
|
@@ -217,14 +206,14 @@ var DirectoryNameSVG = /*#__PURE__*/ function(Element) {
|
|
|
217
206
|
}
|
|
218
207
|
]);
|
|
219
208
|
return DirectoryNameSVG;
|
|
220
|
-
}(
|
|
221
|
-
|
|
222
|
-
|
|
209
|
+
}(_wrap_native_super(_easy.Element));
|
|
210
|
+
_define_property(DirectoryNameSVG, "tagName", "svg");
|
|
211
|
+
_define_property(DirectoryNameSVG, "defaultProperties", {
|
|
223
212
|
width: "32",
|
|
224
213
|
height: "32",
|
|
225
214
|
viewBox: "165 25 32 32",
|
|
226
215
|
className: "directory-name"
|
|
227
216
|
});
|
|
228
|
-
var _default = (0,
|
|
217
|
+
var _default = (0, _easywithstyle.default)(DirectoryNameSVG)(_templateObject(), _styles.directoryNameSVGHeight, _styles.directoryNameSVGPaddingRight);
|
|
229
218
|
|
|
230
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9zdmcvZGlyZWN0b3J5TmFtZS5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuaW1wb3J0IHsgRWxlbWVudCB9IGZyb20gXCJlYXN5XCI7XG5cbmltcG9ydCB7IGRpcmVjdG9yeU5hbWVTVkdIZWlnaHQsIGRpcmVjdG9yeU5hbWVTVkdQYWRkaW5nUmlnaHQgfSBmcm9tIFwiLi4vc3R5bGVzXCI7XG5cbmNsYXNzIERpcmVjdG9yeU5hbWVTVkcgZXh0ZW5kcyBFbGVtZW50IHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8Zz5cbiAgICAgICAgPHBhdGggc3R5bGU9XCJzdHJva2Utd2lkdGg6NFwiIGQ9XCJtIDE2OCwzMiB2IDIyIGggMjYgViAzOCBoIC0yNlwiIC8+XG4gICAgICAgIDxwYXRoIHN0eWxlPVwic3Ryb2tlLXdpZHRoOjRcIiBkPVwibSAxNjYsMzIgaCAxMiBsIDYsNlwiIC8+XG4gICAgICAgIDxwYXRoIHN0eWxlPVwic3Ryb2tlLXdpZHRoOjRcIiBkPVwibSAxNjksMzUgaCAxMVwiIC8+XG4gICAgICA8L2c+
|
|
219
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9zdmcvZGlyZWN0b3J5TmFtZS5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuaW1wb3J0IHsgRWxlbWVudCB9IGZyb20gXCJlYXN5XCI7XG5cbmltcG9ydCB7IGRpcmVjdG9yeU5hbWVTVkdIZWlnaHQsIGRpcmVjdG9yeU5hbWVTVkdQYWRkaW5nUmlnaHQgfSBmcm9tIFwiLi4vc3R5bGVzXCI7XG5cbmNsYXNzIERpcmVjdG9yeU5hbWVTVkcgZXh0ZW5kcyBFbGVtZW50IHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8Zz5cbiAgICAgICAgPHBhdGggc3R5bGU9XCJzdHJva2Utd2lkdGg6NFwiIGQ9XCJtIDE2OCwzMiB2IDIyIGggMjYgViAzOCBoIC0yNlwiIC8+XG4gICAgICAgIDxwYXRoIHN0eWxlPVwic3Ryb2tlLXdpZHRoOjRcIiBkPVwibSAxNjYsMzIgaCAxMiBsIDYsNlwiIC8+XG4gICAgICAgIDxwYXRoIHN0eWxlPVwic3Ryb2tlLXdpZHRoOjRcIiBkPVwibSAxNjksMzUgaCAxMVwiIC8+XG4gICAgICA8L2c+XG5cbiAgICApO1xuICB9XG5cbiAgc3RhdGljIHRhZ05hbWUgPSBcInN2Z1wiO1xuXG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcbiAgICB3aWR0aDogXCIzMlwiLFxuICAgIGhlaWdodDogXCIzMlwiLFxuICAgIHZpZXdCb3g6IFwiMTY1IDI1IDMyIDMyXCIsXG4gICAgY2xhc3NOYW1lOiBcImRpcmVjdG9yeS1uYW1lXCJcbiAgfVxufVxuXG5leHBvcnQgZGVmYXVsdCB3aXRoU3R5bGUoRGlyZWN0b3J5TmFtZVNWRylgXG5cbiAgZmlsbDogbm9uZTtcbiAgd2lkdGg6IGF1dG87XG4gIGhlaWdodDogJHtkaXJlY3RvcnlOYW1lU1ZHSGVpZ2h0fTtcbiAgc3Ryb2tlOiAjMDAwMDAwO1xuICBkaXNwbGF5OiBpbmxpbmU7XG4gIHBhZGRpbmctcmlnaHQ6ICR7ZGlyZWN0b3J5TmFtZVNWR1BhZGRpbmdSaWdodH07XG4gIFxuYDtcbiJdLCJuYW1lcyI6WyJEaXJlY3RvcnlOYW1lU1ZHIiwiY2hpbGRFbGVtZW50cyIsImciLCJwYXRoIiwic3R5bGUiLCJkIiwiRWxlbWVudCIsInRhZ05hbWUiLCJkZWZhdWx0UHJvcGVydGllcyIsIndpZHRoIiwiaGVpZ2h0Iiwidmlld0JveCIsImNsYXNzTmFtZSIsIndpdGhTdHlsZSIsImRpcmVjdG9yeU5hbWVTVkdIZWlnaHQiLCJkaXJlY3RvcnlOYW1lU1ZHUGFkZGluZ1JpZ2h0Il0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkErQkE7OztlQUFBOzs7b0VBN0JzQjtvQkFFRTtzQkFFNkM7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUVyRSxJQUFBLEFBQU1BLGlDQXVCSCxBQXZCSDtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7a0JBQUFBOztZQUNKQyxLQUFBQTttQkFBQUEsU0FBQUEsZ0JBQWdCO2dCQUNkLHFCQUVFLG9CQUFDQyx5QkFDQyxvQkFBQ0M7b0JBQUtDLE9BQU07b0JBQWlCQyxHQUFFO2tDQUMvQixvQkFBQ0Y7b0JBQUtDLE9BQU07b0JBQWlCQyxHQUFFO2tDQUMvQixvQkFBQ0Y7b0JBQUtDLE9BQU07b0JBQWlCQyxHQUFFOztZQUlyQzs7O1dBWElMO3FCQUF5Qk0sYUFBTztBQWFwQyxpQkFiSU4sa0JBYUdPLFdBQVU7QUFFakIsaUJBZklQLGtCQWVHUSxxQkFBb0I7SUFDekJDLE9BQU87SUFDUEMsUUFBUTtJQUNSQyxTQUFTO0lBQ1RDLFdBQVc7QUFDYjtJQUdGLFdBQWVDLElBQUFBLHNCQUFTLEVBQUNiLHFDQUliYyw4QkFBc0IsRUFHZkMsb0NBQTRCIn0=
|
package/lib/svg/fileName.js
CHANGED
|
@@ -8,43 +8,32 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var
|
|
11
|
+
var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
12
|
var _easy = require("easy");
|
|
13
13
|
var _styles = require("../styles");
|
|
14
|
-
function
|
|
14
|
+
function _assert_this_initialized(self) {
|
|
15
15
|
if (self === void 0) {
|
|
16
16
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17
17
|
}
|
|
18
18
|
return self;
|
|
19
19
|
}
|
|
20
|
-
function
|
|
20
|
+
function _class_call_check(instance, Constructor) {
|
|
21
21
|
if (!(instance instanceof Constructor)) {
|
|
22
22
|
throw new TypeError("Cannot call a class as a function");
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
function isNativeReflectConstruct() {
|
|
26
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
27
|
-
if (Reflect.construct.sham) return false;
|
|
28
|
-
if (typeof Proxy === "function") return true;
|
|
29
|
-
try {
|
|
30
|
-
Date.prototype.toString.call(Reflect.construct(Date, [], function() {}));
|
|
31
|
-
return true;
|
|
32
|
-
} catch (e) {
|
|
33
|
-
return false;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
25
|
function _construct(Parent, args, Class) {
|
|
37
|
-
if (
|
|
26
|
+
if (_is_native_reflect_construct()) {
|
|
38
27
|
_construct = Reflect.construct;
|
|
39
28
|
} else {
|
|
40
|
-
_construct = function
|
|
29
|
+
_construct = function construct(Parent, args, Class) {
|
|
41
30
|
var a = [
|
|
42
31
|
null
|
|
43
32
|
];
|
|
44
33
|
a.push.apply(a, args);
|
|
45
34
|
var Constructor = Function.bind.apply(Parent, a);
|
|
46
35
|
var instance = new Constructor();
|
|
47
|
-
if (Class)
|
|
36
|
+
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
48
37
|
return instance;
|
|
49
38
|
};
|
|
50
39
|
}
|
|
@@ -59,12 +48,12 @@ function _defineProperties(target, props) {
|
|
|
59
48
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
60
49
|
}
|
|
61
50
|
}
|
|
62
|
-
function
|
|
51
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
63
52
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
64
53
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
65
54
|
return Constructor;
|
|
66
55
|
}
|
|
67
|
-
function
|
|
56
|
+
function _define_property(obj, key, value) {
|
|
68
57
|
if (key in obj) {
|
|
69
58
|
Object.defineProperty(obj, key, {
|
|
70
59
|
value: value,
|
|
@@ -77,11 +66,11 @@ function _defineProperty(obj, key, value) {
|
|
|
77
66
|
}
|
|
78
67
|
return obj;
|
|
79
68
|
}
|
|
80
|
-
function
|
|
81
|
-
|
|
69
|
+
function _get_prototype_of(o) {
|
|
70
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
82
71
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
83
72
|
};
|
|
84
|
-
return
|
|
73
|
+
return _get_prototype_of(o);
|
|
85
74
|
}
|
|
86
75
|
function _inherits(subClass, superClass) {
|
|
87
76
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -94,30 +83,30 @@ function _inherits(subClass, superClass) {
|
|
|
94
83
|
configurable: true
|
|
95
84
|
}
|
|
96
85
|
});
|
|
97
|
-
if (superClass)
|
|
86
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
98
87
|
}
|
|
99
|
-
function
|
|
88
|
+
function _interop_require_default(obj) {
|
|
100
89
|
return obj && obj.__esModule ? obj : {
|
|
101
90
|
default: obj
|
|
102
91
|
};
|
|
103
92
|
}
|
|
104
|
-
function
|
|
93
|
+
function _is_native_function(fn) {
|
|
105
94
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
106
95
|
}
|
|
107
|
-
function
|
|
108
|
-
if (call && (
|
|
96
|
+
function _possible_constructor_return(self, call) {
|
|
97
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
109
98
|
return call;
|
|
110
99
|
}
|
|
111
|
-
return
|
|
100
|
+
return _assert_this_initialized(self);
|
|
112
101
|
}
|
|
113
|
-
function
|
|
114
|
-
|
|
102
|
+
function _set_prototype_of(o, p) {
|
|
103
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
115
104
|
o.__proto__ = p;
|
|
116
105
|
return o;
|
|
117
106
|
};
|
|
118
|
-
return
|
|
107
|
+
return _set_prototype_of(o, p);
|
|
119
108
|
}
|
|
120
|
-
function
|
|
109
|
+
function _tagged_template_literal(strings, raw) {
|
|
121
110
|
if (!raw) {
|
|
122
111
|
raw = strings.slice(0);
|
|
123
112
|
}
|
|
@@ -127,14 +116,14 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
127
116
|
}
|
|
128
117
|
}));
|
|
129
118
|
}
|
|
130
|
-
|
|
119
|
+
function _type_of(obj) {
|
|
131
120
|
"@swc/helpers - typeof";
|
|
132
121
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
133
|
-
}
|
|
134
|
-
function
|
|
122
|
+
}
|
|
123
|
+
function _wrap_native_super(Class) {
|
|
135
124
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
136
|
-
|
|
137
|
-
if (Class === null || !
|
|
125
|
+
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
126
|
+
if (Class === null || !_is_native_function(Class)) return Class;
|
|
138
127
|
if (typeof Class !== "function") {
|
|
139
128
|
throw new TypeError("Super expression must either be null or a function");
|
|
140
129
|
}
|
|
@@ -143,7 +132,7 @@ function _wrapNativeSuper(Class) {
|
|
|
143
132
|
_cache.set(Class, Wrapper);
|
|
144
133
|
}
|
|
145
134
|
function Wrapper() {
|
|
146
|
-
return _construct(Class, arguments,
|
|
135
|
+
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
147
136
|
}
|
|
148
137
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
149
138
|
constructor: {
|
|
@@ -153,11 +142,11 @@ function _wrapNativeSuper(Class) {
|
|
|
153
142
|
configurable: true
|
|
154
143
|
}
|
|
155
144
|
});
|
|
156
|
-
return
|
|
145
|
+
return _set_prototype_of(Wrapper, Class);
|
|
157
146
|
};
|
|
158
|
-
return
|
|
147
|
+
return _wrap_native_super(Class);
|
|
159
148
|
}
|
|
160
|
-
function
|
|
149
|
+
function _is_native_reflect_construct() {
|
|
161
150
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
162
151
|
if (Reflect.construct.sham) return false;
|
|
163
152
|
if (typeof Proxy === "function") return true;
|
|
@@ -168,21 +157,21 @@ function _isNativeReflectConstruct() {
|
|
|
168
157
|
return false;
|
|
169
158
|
}
|
|
170
159
|
}
|
|
171
|
-
function
|
|
172
|
-
var hasNativeReflectConstruct =
|
|
160
|
+
function _create_super(Derived) {
|
|
161
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
173
162
|
return function _createSuperInternal() {
|
|
174
|
-
var Super =
|
|
163
|
+
var Super = _get_prototype_of(Derived), result;
|
|
175
164
|
if (hasNativeReflectConstruct) {
|
|
176
|
-
var NewTarget =
|
|
165
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
177
166
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
178
167
|
} else {
|
|
179
168
|
result = Super.apply(this, arguments);
|
|
180
169
|
}
|
|
181
|
-
return
|
|
170
|
+
return _possible_constructor_return(this, result);
|
|
182
171
|
};
|
|
183
172
|
}
|
|
184
173
|
function _templateObject() {
|
|
185
|
-
var data =
|
|
174
|
+
var data = _tagged_template_literal([
|
|
186
175
|
"\n\n fill: none;\n width: auto;\n height: ",
|
|
187
176
|
";\n stroke: #000000;\n display: inline;\n padding-left: ",
|
|
188
177
|
";\n padding-right: ",
|
|
@@ -195,12 +184,12 @@ function _templateObject() {
|
|
|
195
184
|
}
|
|
196
185
|
var FileNameSVG = /*#__PURE__*/ function(Element) {
|
|
197
186
|
_inherits(FileNameSVG, Element);
|
|
198
|
-
var _super =
|
|
187
|
+
var _super = _create_super(FileNameSVG);
|
|
199
188
|
function FileNameSVG() {
|
|
200
|
-
|
|
189
|
+
_class_call_check(this, FileNameSVG);
|
|
201
190
|
return _super.apply(this, arguments);
|
|
202
191
|
}
|
|
203
|
-
|
|
192
|
+
_create_class(FileNameSVG, [
|
|
204
193
|
{
|
|
205
194
|
key: "childElements",
|
|
206
195
|
value: function childElements() {
|
|
@@ -218,14 +207,14 @@ var FileNameSVG = /*#__PURE__*/ function(Element) {
|
|
|
218
207
|
}
|
|
219
208
|
]);
|
|
220
209
|
return FileNameSVG;
|
|
221
|
-
}(
|
|
222
|
-
|
|
223
|
-
|
|
210
|
+
}(_wrap_native_super(_easy.Element));
|
|
211
|
+
_define_property(FileNameSVG, "tagName", "svg");
|
|
212
|
+
_define_property(FileNameSVG, "defaultProperties", {
|
|
224
213
|
width: "32",
|
|
225
214
|
height: "32",
|
|
226
215
|
viewBox: "121 31 32 32",
|
|
227
216
|
className: "file-name"
|
|
228
217
|
});
|
|
229
|
-
var _default = (0,
|
|
218
|
+
var _default = (0, _easywithstyle.default)(FileNameSVG)(_templateObject(), _styles.fileNameSVGHeight, _styles.fileNameSVGPaddingLeft, _styles.fileNameSVGPaddingRight);
|
|
230
219
|
|
|
231
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9zdmcvZmlsZU5hbWUuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCJcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuaW1wb3J0IHsgRWxlbWVudCB9IGZyb20gXCJlYXN5XCI7XG5cbmltcG9ydCB7IGZpbGVOYW1lU1ZHSGVpZ2h0LCBmaWxlTmFtZVNWR1BhZGRpbmdSaWdodCwgZmlsZU5hbWVTVkdQYWRkaW5nTGVmdCB9IGZyb20gXCIuLi9zdHlsZXNcIjtcblxuY2xhc3MgRmlsZU5hbWVTVkcgZXh0ZW5kcyBFbGVtZW50IHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8Zz5cbiAgICAgICAgPHBhdGggc3R5bGU9XCJzdHJva2Utd2lkdGg6NFwiIGQ9XCJtIDE0MiwzNCB2IDggaCA4XCIgLz5cbiAgICAgICAgPHBhdGggc3R5bGU9XCJzdHJva2Utd2lkdGg6NFwiIGQ9XCJtIDEyOCwzNCB2IDI2IGggMjIgViA0MiBsIC04LC04IHpcIiAvPlxuICAgICAgICA8cGF0aCBzdHlsZT1cInN0cm9rZS13aWR0aDo0XCIgZD1cIm0gMTQzLDQwIGggM1wiIC8+XG4gICAgICA8L2c+
|
|
220
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9zdmcvZmlsZU5hbWUuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCJcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuaW1wb3J0IHsgRWxlbWVudCB9IGZyb20gXCJlYXN5XCI7XG5cbmltcG9ydCB7IGZpbGVOYW1lU1ZHSGVpZ2h0LCBmaWxlTmFtZVNWR1BhZGRpbmdSaWdodCwgZmlsZU5hbWVTVkdQYWRkaW5nTGVmdCB9IGZyb20gXCIuLi9zdHlsZXNcIjtcblxuY2xhc3MgRmlsZU5hbWVTVkcgZXh0ZW5kcyBFbGVtZW50IHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8Zz5cbiAgICAgICAgPHBhdGggc3R5bGU9XCJzdHJva2Utd2lkdGg6NFwiIGQ9XCJtIDE0MiwzNCB2IDggaCA4XCIgLz5cbiAgICAgICAgPHBhdGggc3R5bGU9XCJzdHJva2Utd2lkdGg6NFwiIGQ9XCJtIDEyOCwzNCB2IDI2IGggMjIgViA0MiBsIC04LC04IHpcIiAvPlxuICAgICAgICA8cGF0aCBzdHlsZT1cInN0cm9rZS13aWR0aDo0XCIgZD1cIm0gMTQzLDQwIGggM1wiIC8+XG4gICAgICA8L2c+XG5cbiAgICApO1xuICB9XG5cbiAgc3RhdGljIHRhZ05hbWUgPSBcInN2Z1wiO1xuXG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcbiAgICB3aWR0aDogXCIzMlwiLFxuICAgIGhlaWdodDogXCIzMlwiLFxuICAgIHZpZXdCb3g6IFwiMTIxIDMxIDMyIDMyXCIsXG4gICAgY2xhc3NOYW1lOiBcImZpbGUtbmFtZVwiXG4gIH1cbn1cblxuZXhwb3J0IGRlZmF1bHQgd2l0aFN0eWxlKEZpbGVOYW1lU1ZHKWBcblxuICBmaWxsOiBub25lO1xuICB3aWR0aDogYXV0bztcbiAgaGVpZ2h0OiAke2ZpbGVOYW1lU1ZHSGVpZ2h0fTtcbiAgc3Ryb2tlOiAjMDAwMDAwO1xuICBkaXNwbGF5OiBpbmxpbmU7XG4gIHBhZGRpbmctbGVmdDogJHtmaWxlTmFtZVNWR1BhZGRpbmdMZWZ0fTtcbiAgcGFkZGluZy1yaWdodDogJHtmaWxlTmFtZVNWR1BhZGRpbmdSaWdodH07XG4gIFxuYDtcbiJdLCJuYW1lcyI6WyJGaWxlTmFtZVNWRyIsImNoaWxkRWxlbWVudHMiLCJnIiwicGF0aCIsInN0eWxlIiwiZCIsIkVsZW1lbnQiLCJ0YWdOYW1lIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJ3aWR0aCIsImhlaWdodCIsInZpZXdCb3giLCJjbGFzc05hbWUiLCJ3aXRoU3R5bGUiLCJmaWxlTmFtZVNWR0hlaWdodCIsImZpbGVOYW1lU1ZHUGFkZGluZ0xlZnQiLCJmaWxlTmFtZVNWR1BhZGRpbmdSaWdodCJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBK0JBOzs7ZUFBQTs7O29FQTdCc0I7b0JBRUU7c0JBRTJEOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRW5GLElBQUEsQUFBTUEsNEJBdUJILEFBdkJIO2NBQU1BOytCQUFBQTthQUFBQTtnQ0FBQUE7OztrQkFBQUE7O1lBQ0pDLEtBQUFBO21CQUFBQSxTQUFBQSxnQkFBZ0I7Z0JBQ2QscUJBRUUsb0JBQUNDLHlCQUNDLG9CQUFDQztvQkFBS0MsT0FBTTtvQkFBaUJDLEdBQUU7a0NBQy9CLG9CQUFDRjtvQkFBS0MsT0FBTTtvQkFBaUJDLEdBQUU7a0NBQy9CLG9CQUFDRjtvQkFBS0MsT0FBTTtvQkFBaUJDLEdBQUU7O1lBSXJDOzs7V0FYSUw7cUJBQW9CTSxhQUFPO0FBYS9CLGlCQWJJTixhQWFHTyxXQUFVO0FBRWpCLGlCQWZJUCxhQWVHUSxxQkFBb0I7SUFDekJDLE9BQU87SUFDUEMsUUFBUTtJQUNSQyxTQUFTO0lBQ1RDLFdBQVc7QUFDYjtJQUdGLFdBQWVDLElBQUFBLHNCQUFTLEVBQUNiLGdDQUliYyx5QkFBaUIsRUFHWEMsOEJBQXNCLEVBQ3JCQywrQkFBdUIifQ==
|