@difizen/libro-search 0.1.10 → 0.1.11
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/es/abstract-search-provider.js +2 -2
- package/es/libro-cell-search-provider.js +2 -2
- package/es/libro-search-generic-provider.js +12 -9
- package/es/libro-search-manager.js +2 -3
- package/es/libro-search-model.js +14 -9
- package/es/libro-search-provider.js +2 -2
- package/es/libro-search-utils.js +2 -2
- package/es/libro-search-view.js +2 -2
- package/package.json +4 -4
|
@@ -3,8 +3,8 @@ var _dec, _class;
|
|
|
3
3
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
4
4
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
5
5
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
6
|
-
function _toPropertyKey(
|
|
7
|
-
function _toPrimitive(
|
|
6
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
7
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
8
8
|
import { Emitter } from '@difizen/mana-app';
|
|
9
9
|
import { transient } from '@difizen/mana-app';
|
|
10
10
|
/**
|
|
@@ -4,8 +4,8 @@ function _initializerDefineProperty(target, property, descriptor, context) { if
|
|
|
4
4
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
5
5
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
6
6
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
7
|
-
function _toPropertyKey(
|
|
8
|
-
function _toPrimitive(
|
|
7
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
8
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
9
9
|
function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { var desc = {}; Object.keys(descriptor).forEach(function (key) { desc[key] = descriptor[key]; }); desc.enumerable = !!desc.enumerable; desc.configurable = !!desc.configurable; if ('value' in desc || desc.initializer) { desc.writable = true; } desc = decorators.slice().reverse().reduce(function (desc, decorator) { return decorator(target, property, desc) || desc; }, desc); if (context && desc.initializer !== void 0) { desc.value = desc.initializer ? desc.initializer.call(context) : void 0; desc.initializer = undefined; } if (desc.initializer === void 0) { Object.defineProperty(target, property, desc); desc = null; } return desc; }
|
|
10
10
|
function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that ' + 'transform-class-properties is enabled and runs after the decorators transform.'); }
|
|
11
11
|
import { Priority } from '@difizen/mana-app';
|
|
@@ -13,8 +13,8 @@ function _initializerDefineProperty(target, property, descriptor, context) { if
|
|
|
13
13
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
14
14
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
15
15
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
16
|
-
function _toPropertyKey(
|
|
17
|
-
function _toPrimitive(
|
|
16
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
17
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
18
18
|
function _get() { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get.bind(); } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(arguments.length < 3 ? target : receiver); } return desc.value; }; } return _get.apply(this, arguments); }
|
|
19
19
|
function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; }
|
|
20
20
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
@@ -255,7 +255,7 @@ export var GenericSearchProvider = (_dec = transient(), _dec2 = prop(), _dec(_cl
|
|
|
255
255
|
*/
|
|
256
256
|
}, {
|
|
257
257
|
key: "highlightNext",
|
|
258
|
-
value: function () {
|
|
258
|
+
value: (function () {
|
|
259
259
|
var _highlightNext2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(loop) {
|
|
260
260
|
var _this$_highlightNext;
|
|
261
261
|
return _regeneratorRuntime().wrap(function _callee2$(_context3) {
|
|
@@ -280,9 +280,10 @@ export var GenericSearchProvider = (_dec = transient(), _dec2 = prop(), _dec(_cl
|
|
|
280
280
|
*
|
|
281
281
|
* @returns A promise that resolves once the action has completed.
|
|
282
282
|
*/
|
|
283
|
+
)
|
|
283
284
|
}, {
|
|
284
285
|
key: "highlightPrevious",
|
|
285
|
-
value: function () {
|
|
286
|
+
value: (function () {
|
|
286
287
|
var _highlightPrevious = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(loop) {
|
|
287
288
|
var _this$_highlightNext2;
|
|
288
289
|
return _regeneratorRuntime().wrap(function _callee3$(_context4) {
|
|
@@ -308,9 +309,10 @@ export var GenericSearchProvider = (_dec = transient(), _dec2 = prop(), _dec(_cl
|
|
|
308
309
|
*
|
|
309
310
|
* @returns A promise that resolves with a boolean indicating whether a replace occurred.
|
|
310
311
|
*/
|
|
312
|
+
)
|
|
311
313
|
}, {
|
|
312
314
|
key: "replaceCurrentMatch",
|
|
313
|
-
value: function () {
|
|
315
|
+
value: (function () {
|
|
314
316
|
var _replaceCurrentMatch = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(newText, loop) {
|
|
315
317
|
return _regeneratorRuntime().wrap(function _callee4$(_context5) {
|
|
316
318
|
while (1) switch (_context5.prev = _context5.next) {
|
|
@@ -334,9 +336,10 @@ export var GenericSearchProvider = (_dec = transient(), _dec2 = prop(), _dec(_cl
|
|
|
334
336
|
*
|
|
335
337
|
* @returns A promise that resolves with a boolean indicating whether a replace occurred.
|
|
336
338
|
*/
|
|
339
|
+
)
|
|
337
340
|
}, {
|
|
338
341
|
key: "replaceAllMatches",
|
|
339
|
-
value: function () {
|
|
342
|
+
value: (function () {
|
|
340
343
|
var _replaceAllMatches = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5(newText) {
|
|
341
344
|
return _regeneratorRuntime().wrap(function _callee5$(_context6) {
|
|
342
345
|
while (1) switch (_context6.prev = _context6.next) {
|
|
@@ -352,10 +355,10 @@ export var GenericSearchProvider = (_dec = transient(), _dec2 = prop(), _dec(_cl
|
|
|
352
355
|
return _replaceAllMatches.apply(this, arguments);
|
|
353
356
|
}
|
|
354
357
|
return replaceAllMatches;
|
|
355
|
-
}()
|
|
358
|
+
}())
|
|
356
359
|
}, {
|
|
357
360
|
key: "endQuery",
|
|
358
|
-
value:
|
|
361
|
+
value: (
|
|
359
362
|
/**
|
|
360
363
|
* Clear the highlighted matches and any internal state.
|
|
361
364
|
*/
|
|
@@ -383,7 +386,7 @@ export var GenericSearchProvider = (_dec = transient(), _dec2 = prop(), _dec(_cl
|
|
|
383
386
|
return _endQuery.apply(this, arguments);
|
|
384
387
|
}
|
|
385
388
|
return endQuery;
|
|
386
|
-
}()
|
|
389
|
+
}())
|
|
387
390
|
}, {
|
|
388
391
|
key: "_highlightNext",
|
|
389
392
|
value: function _highlightNext(reverse, loop) {
|
|
@@ -7,8 +7,8 @@ function _initializerDefineProperty(target, property, descriptor, context) { if
|
|
|
7
7
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
8
8
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
9
9
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
10
|
-
function _toPropertyKey(
|
|
11
|
-
function _toPrimitive(
|
|
10
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
12
12
|
function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { var desc = {}; Object.keys(descriptor).forEach(function (key) { desc[key] = descriptor[key]; }); desc.enumerable = !!desc.enumerable; desc.configurable = !!desc.configurable; if ('value' in desc || desc.initializer) { desc.writable = true; } desc = decorators.slice().reverse().reduce(function (desc, decorator) { return decorator(target, property, desc) || desc; }, desc); if (context && desc.initializer !== void 0) { desc.value = desc.initializer ? desc.initializer.call(context) : void 0; desc.initializer = undefined; } if (desc.initializer === void 0) { Object.defineProperty(target, property, desc); desc = null; } return desc; }
|
|
13
13
|
function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that ' + 'transform-class-properties is enabled and runs after the decorators transform.'); }
|
|
14
14
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
@@ -26,7 +26,6 @@ export var LibroSearchToggleCommand = {
|
|
|
26
26
|
// keybind: 'ctrlcmd+F',
|
|
27
27
|
// },
|
|
28
28
|
};
|
|
29
|
-
|
|
30
29
|
export var LibroSearchManager = (_dec = singleton({
|
|
31
30
|
contrib: [CommandContribution, KeybindingContribution, LibroExtensionSlotContribution]
|
|
32
31
|
}), _dec2 = inject(ViewManager), _dec3 = inject(LibroCommandRegister), _dec(_class = (_class2 = /*#__PURE__*/function () {
|
package/es/libro-search-model.js
CHANGED
|
@@ -7,8 +7,8 @@ function _initializerDefineProperty(target, property, descriptor, context) { if
|
|
|
7
7
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
8
8
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
9
9
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
10
|
-
function _toPropertyKey(
|
|
11
|
-
function _toPrimitive(
|
|
10
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
12
12
|
function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { var desc = {}; Object.keys(descriptor).forEach(function (key) { desc[key] = descriptor[key]; }); desc.enumerable = !!desc.enumerable; desc.configurable = !!desc.configurable; if ('value' in desc || desc.initializer) { desc.writable = true; } desc = decorators.slice().reverse().reduce(function (desc, decorator) { return decorator(target, property, desc) || desc; }, desc); if (context && desc.initializer !== void 0) { desc.value = desc.initializer ? desc.initializer.call(context) : void 0; desc.initializer = undefined; } if (desc.initializer === void 0) { Object.defineProperty(target, property, desc); desc = null; } return desc; }
|
|
13
13
|
function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that ' + 'transform-class-properties is enabled and runs after the decorators transform.'); }
|
|
14
14
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
@@ -213,7 +213,7 @@ export var LibroSearchModel = (_dec = singleton(), _dec2 = inject(LibroSearchUti
|
|
|
213
213
|
*/
|
|
214
214
|
}, {
|
|
215
215
|
key: "endQuery",
|
|
216
|
-
value: function () {
|
|
216
|
+
value: (function () {
|
|
217
217
|
var _endQuery = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
218
218
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
219
219
|
while (1) switch (_context.prev = _context.next) {
|
|
@@ -234,9 +234,10 @@ export var LibroSearchModel = (_dec = singleton(), _dec2 = inject(LibroSearchUti
|
|
|
234
234
|
/**
|
|
235
235
|
* Highlight the next match.
|
|
236
236
|
*/
|
|
237
|
+
)
|
|
237
238
|
}, {
|
|
238
239
|
key: "highlightNext",
|
|
239
|
-
value: function () {
|
|
240
|
+
value: (function () {
|
|
240
241
|
var _highlightNext = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
|
241
242
|
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
242
243
|
while (1) switch (_context2.prev = _context2.next) {
|
|
@@ -257,9 +258,10 @@ export var LibroSearchModel = (_dec = singleton(), _dec2 = inject(LibroSearchUti
|
|
|
257
258
|
/**
|
|
258
259
|
* Highlight the previous match
|
|
259
260
|
*/
|
|
261
|
+
)
|
|
260
262
|
}, {
|
|
261
263
|
key: "highlightPrevious",
|
|
262
|
-
value: function () {
|
|
264
|
+
value: (function () {
|
|
263
265
|
var _highlightPrevious = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
|
|
264
266
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
265
267
|
while (1) switch (_context3.prev = _context3.next) {
|
|
@@ -280,6 +282,7 @@ export var LibroSearchModel = (_dec = singleton(), _dec2 = inject(LibroSearchUti
|
|
|
280
282
|
/**
|
|
281
283
|
* Refresh search
|
|
282
284
|
*/
|
|
285
|
+
)
|
|
283
286
|
}, {
|
|
284
287
|
key: "refresh",
|
|
285
288
|
value: function refresh() {
|
|
@@ -293,7 +296,7 @@ export var LibroSearchModel = (_dec = singleton(), _dec2 = inject(LibroSearchUti
|
|
|
293
296
|
*/
|
|
294
297
|
}, {
|
|
295
298
|
key: "replaceAllMatches",
|
|
296
|
-
value: function () {
|
|
299
|
+
value: (function () {
|
|
297
300
|
var _replaceAllMatches = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4() {
|
|
298
301
|
return _regeneratorRuntime().wrap(function _callee4$(_context4) {
|
|
299
302
|
while (1) switch (_context4.prev = _context4.next) {
|
|
@@ -314,9 +317,10 @@ export var LibroSearchModel = (_dec = singleton(), _dec2 = inject(LibroSearchUti
|
|
|
314
317
|
/**
|
|
315
318
|
* Replace the current match.
|
|
316
319
|
*/
|
|
320
|
+
)
|
|
317
321
|
}, {
|
|
318
322
|
key: "replaceCurrentMatch",
|
|
319
|
-
value: function () {
|
|
323
|
+
value: (function () {
|
|
320
324
|
var _replaceCurrentMatch = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5() {
|
|
321
325
|
return _regeneratorRuntime().wrap(function _callee5$(_context5) {
|
|
322
326
|
while (1) switch (_context5.prev = _context5.next) {
|
|
@@ -340,9 +344,10 @@ export var LibroSearchModel = (_dec = singleton(), _dec2 = inject(LibroSearchUti
|
|
|
340
344
|
* @param name Filter name
|
|
341
345
|
* @param v Filter value
|
|
342
346
|
*/
|
|
347
|
+
)
|
|
343
348
|
}, {
|
|
344
349
|
key: "setFilter",
|
|
345
|
-
value: function () {
|
|
350
|
+
value: (function () {
|
|
346
351
|
var _setFilter = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6(name, v) {
|
|
347
352
|
return _regeneratorRuntime().wrap(function _callee6$(_context6) {
|
|
348
353
|
while (1) switch (_context6.prev = _context6.next) {
|
|
@@ -356,7 +361,7 @@ export var LibroSearchModel = (_dec = singleton(), _dec2 = inject(LibroSearchUti
|
|
|
356
361
|
return _setFilter.apply(this, arguments);
|
|
357
362
|
}
|
|
358
363
|
return setFilter;
|
|
359
|
-
}()
|
|
364
|
+
}())
|
|
360
365
|
}, {
|
|
361
366
|
key: "updateSearch",
|
|
362
367
|
value: function () {
|
|
@@ -7,8 +7,8 @@ function _initializerDefineProperty(target, property, descriptor, context) { if
|
|
|
7
7
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
8
8
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
9
9
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
10
|
-
function _toPropertyKey(
|
|
11
|
-
function _toPrimitive(
|
|
10
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
12
12
|
function _get() { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get.bind(); } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(arguments.length < 3 ? target : receiver); } return desc.value; }; } return _get.apply(this, arguments); }
|
|
13
13
|
function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; }
|
|
14
14
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
package/es/libro-search-utils.js
CHANGED
|
@@ -3,8 +3,8 @@ var _dec, _class;
|
|
|
3
3
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
4
4
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
5
5
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
6
|
-
function _toPropertyKey(
|
|
7
|
-
function _toPrimitive(
|
|
6
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
7
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
8
8
|
import { singleton } from '@difizen/mana-app';
|
|
9
9
|
|
|
10
10
|
/**
|
package/es/libro-search-view.js
CHANGED
|
@@ -7,8 +7,8 @@ function _initializerDefineProperty(target, property, descriptor, context) { if
|
|
|
7
7
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
8
8
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
9
9
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
10
|
-
function _toPropertyKey(
|
|
11
|
-
function _toPrimitive(
|
|
10
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
11
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
12
12
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
13
13
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
14
14
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@difizen/libro-search",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"libro",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"@difizen/mana-app": "latest",
|
|
37
37
|
"@difizen/mana-l10n": "latest",
|
|
38
38
|
"@ant-design/icons": "^5.1.0",
|
|
39
|
-
"@difizen/libro-common": "^0.1.
|
|
40
|
-
"@difizen/libro-core": "^0.1.
|
|
41
|
-
"@difizen/libro-code-editor": "^0.1.
|
|
39
|
+
"@difizen/libro-common": "^0.1.11",
|
|
40
|
+
"@difizen/libro-core": "^0.1.11",
|
|
41
|
+
"@difizen/libro-code-editor": "^0.1.11",
|
|
42
42
|
"@types/lodash.debounce": "^4.0.7",
|
|
43
43
|
"classnames": "^2.3.2",
|
|
44
44
|
"lodash.debounce": "^4.0.8",
|