@appbaseio/reactivesearch-vue 3.0.0-alpha.1 → 3.0.0-alpha.2

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.
@@ -22123,216 +22123,6 @@
22123
22123
  var _templateObject$o;
22124
22124
  var Slider = styled('div')(_templateObject$o || (_templateObject$o = _taggedTemplateLiteralLoose(["\n\tmargin-top: 30px;\n\tpadding: 10px;\n\n\t/* component style */\n\t.vue-slider-disabled {\n\t\topacity: 0.5;\n\t\tcursor: not-allowed;\n\t}\n\n\t/* rail style */\n\t.vue-slider-rail {\n\t\tbackground-color: #ccc;\n\t\tborder-radius: 15px;\n\t\theight: 4px;\n\t}\n\n\t/* process style */\n\t.vue-slider-process {\n\t\tbackground-color: #0b6aff;\n\t\tborder-radius: 15px;\n\t}\n\n\t/* mark style */\n\t.vue-slider-mark {\n\t\tz-index: 4;\n\t}\n\n\t.vue-slider-mark:first-child .vue-slider-mark-step,\n\t.vue-slider-mark:last-child .vue-slider-mark-step {\n\t\tdisplay: none;\n\t}\n\n\t.vue-slider-mark-step {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tborder-radius: 50%;\n\t\tbackground-color: rgba(0, 0, 0, 0.16);\n\t}\n\n\t.vue-slider-mark-label {\n\t\tfont-size: 14px;\n\t\twhite-space: nowrap;\n\t}\n\n\t/* dot style */\n\t.vue-slider-dot {\n\t\tz-index: 2;\n\t}\n\n\t.vue-slider-dot-handle {\n\t\tcursor: pointer;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tborder-radius: 50%;\n\t\tbackground-color: #fff;\n\t\tbox-sizing: border-box;\n\t\tborder: 1px solid #9a9a9a;\n\t\tz-index: 2;\n\t\tbox-shadow: 0.5px 0.5px 2px 1px rgb(0 0 0 / 32%);\n\t}\n\n\t.vue-slider-dot-handle-disabled {\n\t\tcursor: not-allowed;\n\t\tbackground-color: #ccc;\n\t}\n\n\t.vue-slider-dot-tooltip-inner {\n\t\tfont-size: 14px;\n\t\twhite-space: nowrap;\n\t\tpadding: 2px 5px;\n\t\tmin-width: 20px;\n\t\ttext-align: center;\n\t\tcolor: #fff;\n\t\tborder-radius: 5px;\n\t\tborder: 1px solid #3498db;\n\t\tbackground-color: #3498db;\n\t\tbox-sizing: content-box;\n\t}\n\n\t.vue-slider-dot-tooltip-inner::after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-top::after {\n\t\ttop: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, 0);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-top-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-bottom::after {\n\t\tbottom: 100%;\n\t\tleft: 50%;\n\t\ttransform: translate(-50%, 0);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-bottom-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-left::after {\n\t\tleft: 100%;\n\t\ttop: 50%;\n\t\ttransform: translate(0, -50%);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-left-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-inner-right::after {\n\t\tright: 100%;\n\t\ttop: 50%;\n\t\ttransform: translate(0, -50%);\n\t\theight: 0;\n\t\twidth: 0;\n\t\tborder-color: transparent;\n\t\tborder-style: solid;\n\t\tborder-width: 5px;\n\t\tborder-right-color: inherit;\n\t}\n\n\t.vue-slider-dot-tooltip-wrapper {\n\t\topacity: 0;\n\t\ttransition: all 0.3s;\n\t}\n\t.vue-slider-dot-tooltip-wrapper-show {\n\t\topacity: 1;\n\t}\n\n\t.label-container {\n\t\tmargin: 10px 0;\n\t\twidth: 100%;\n\t}\n\n\t.range-label-right {\n\t\tfloat: right;\n\t}\n"])));
22125
22125
 
22126
- // shim for using process in browser
22127
- // based off https://github.com/defunctzombie/node-process/blob/master/browser.js
22128
-
22129
- function defaultSetTimout() {
22130
- throw new Error('setTimeout has not been defined');
22131
- }
22132
- function defaultClearTimeout() {
22133
- throw new Error('clearTimeout has not been defined');
22134
- }
22135
- var cachedSetTimeout = defaultSetTimout;
22136
- var cachedClearTimeout = defaultClearTimeout;
22137
- if (typeof global$1.setTimeout === 'function') {
22138
- cachedSetTimeout = setTimeout;
22139
- }
22140
- if (typeof global$1.clearTimeout === 'function') {
22141
- cachedClearTimeout = clearTimeout;
22142
- }
22143
- function runTimeout(fun) {
22144
- if (cachedSetTimeout === setTimeout) {
22145
- //normal enviroments in sane situations
22146
- return setTimeout(fun, 0);
22147
- }
22148
- // if setTimeout wasn't available but was latter defined
22149
- if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
22150
- cachedSetTimeout = setTimeout;
22151
- return setTimeout(fun, 0);
22152
- }
22153
- try {
22154
- // when when somebody has screwed with setTimeout but no I.E. maddness
22155
- return cachedSetTimeout(fun, 0);
22156
- } catch (e) {
22157
- try {
22158
- // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
22159
- return cachedSetTimeout.call(null, fun, 0);
22160
- } catch (e) {
22161
- // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
22162
- return cachedSetTimeout.call(this, fun, 0);
22163
- }
22164
- }
22165
- }
22166
- function runClearTimeout(marker) {
22167
- if (cachedClearTimeout === clearTimeout) {
22168
- //normal enviroments in sane situations
22169
- return clearTimeout(marker);
22170
- }
22171
- // if clearTimeout wasn't available but was latter defined
22172
- if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
22173
- cachedClearTimeout = clearTimeout;
22174
- return clearTimeout(marker);
22175
- }
22176
- try {
22177
- // when when somebody has screwed with setTimeout but no I.E. maddness
22178
- return cachedClearTimeout(marker);
22179
- } catch (e) {
22180
- try {
22181
- // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
22182
- return cachedClearTimeout.call(null, marker);
22183
- } catch (e) {
22184
- // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
22185
- // Some versions of I.E. have different rules for clearTimeout vs setTimeout
22186
- return cachedClearTimeout.call(this, marker);
22187
- }
22188
- }
22189
- }
22190
- var queue = [];
22191
- var draining = false;
22192
- var currentQueue;
22193
- var queueIndex = -1;
22194
- function cleanUpNextTick() {
22195
- if (!draining || !currentQueue) {
22196
- return;
22197
- }
22198
- draining = false;
22199
- if (currentQueue.length) {
22200
- queue = currentQueue.concat(queue);
22201
- } else {
22202
- queueIndex = -1;
22203
- }
22204
- if (queue.length) {
22205
- drainQueue();
22206
- }
22207
- }
22208
- function drainQueue() {
22209
- if (draining) {
22210
- return;
22211
- }
22212
- var timeout = runTimeout(cleanUpNextTick);
22213
- draining = true;
22214
- var len = queue.length;
22215
- while (len) {
22216
- currentQueue = queue;
22217
- queue = [];
22218
- while (++queueIndex < len) {
22219
- if (currentQueue) {
22220
- currentQueue[queueIndex].run();
22221
- }
22222
- }
22223
- queueIndex = -1;
22224
- len = queue.length;
22225
- }
22226
- currentQueue = null;
22227
- draining = false;
22228
- runClearTimeout(timeout);
22229
- }
22230
- function nextTick(fun) {
22231
- var args = new Array(arguments.length - 1);
22232
- if (arguments.length > 1) {
22233
- for (var i = 1; i < arguments.length; i++) {
22234
- args[i - 1] = arguments[i];
22235
- }
22236
- }
22237
- queue.push(new Item(fun, args));
22238
- if (queue.length === 1 && !draining) {
22239
- runTimeout(drainQueue);
22240
- }
22241
- }
22242
- // v8 likes predictible objects
22243
- function Item(fun, array) {
22244
- this.fun = fun;
22245
- this.array = array;
22246
- }
22247
- Item.prototype.run = function () {
22248
- this.fun.apply(null, this.array);
22249
- };
22250
- var title = 'browser';
22251
- var platform = 'browser';
22252
- var browser = true;
22253
- var env = {};
22254
- var argv = [];
22255
- var version = ''; // empty string to avoid regexp issues
22256
- var versions = {};
22257
- var release = {};
22258
- var config = {};
22259
- function noop() {}
22260
- var on = noop;
22261
- var addListener = noop;
22262
- var once = noop;
22263
- var off = noop;
22264
- var removeListener = noop;
22265
- var removeAllListeners = noop;
22266
- var emit = noop;
22267
- function binding(name) {
22268
- throw new Error('process.binding is not supported');
22269
- }
22270
- function cwd() {
22271
- return '/';
22272
- }
22273
- function chdir(dir) {
22274
- throw new Error('process.chdir is not supported');
22275
- }
22276
- function umask() {
22277
- return 0;
22278
- }
22279
-
22280
- // from https://github.com/kumavis/browser-process-hrtime/blob/master/index.js
22281
- var performance = global$1.performance || {};
22282
- var performanceNow = performance.now || performance.mozNow || performance.msNow || performance.oNow || performance.webkitNow || function () {
22283
- return new Date().getTime();
22284
- };
22285
-
22286
- // generate timestamp or delta
22287
- // see http://nodejs.org/api/process.html#process_process_hrtime
22288
- function hrtime(previousTimestamp) {
22289
- var clocktime = performanceNow.call(performance) * 1e-3;
22290
- var seconds = Math.floor(clocktime);
22291
- var nanoseconds = Math.floor(clocktime % 1 * 1e9);
22292
- if (previousTimestamp) {
22293
- seconds = seconds - previousTimestamp[0];
22294
- nanoseconds = nanoseconds - previousTimestamp[1];
22295
- if (nanoseconds < 0) {
22296
- seconds--;
22297
- nanoseconds += 1e9;
22298
- }
22299
- }
22300
- return [seconds, nanoseconds];
22301
- }
22302
- var startTime = new Date();
22303
- function uptime() {
22304
- var currentTime = new Date();
22305
- var dif = currentTime - startTime;
22306
- return dif / 1000;
22307
- }
22308
- var process = {
22309
- nextTick: nextTick,
22310
- title: title,
22311
- browser: browser,
22312
- env: env,
22313
- argv: argv,
22314
- version: version,
22315
- versions: versions,
22316
- on: on,
22317
- addListener: addListener,
22318
- once: once,
22319
- off: off,
22320
- removeListener: removeListener,
22321
- removeAllListeners: removeAllListeners,
22322
- emit: emit,
22323
- binding: binding,
22324
- cwd: cwd,
22325
- chdir: chdir,
22326
- umask: umask,
22327
- hrtime: hrtime,
22328
- platform: platform,
22329
- release: release,
22330
- config: config,
22331
- uptime: uptime
22332
- };
22333
-
22334
- var browser$1 = true;
22335
-
22336
22126
  /**
22337
22127
  * Caution: Please do not change this file without having a discussion with the Team.
22338
22128
  * Any change may break the umd build, we're directly replacing the line no: 14
@@ -22351,8 +22141,8 @@
22351
22141
  var components = {
22352
22142
  NoSSR: NoSSR
22353
22143
  };
22354
- if (process && browser$1) {
22355
- try {
22144
+ try {
22145
+ if (typeof window !== 'undefined') {
22356
22146
  // in older versions of nuxt, it's process.BROWSER_BUILD
22357
22147
  // eslint-disable-next-line
22358
22148
 
@@ -22364,9 +22154,9 @@
22364
22154
  };
22365
22155
  document.head.appendChild(s);
22366
22156
 
22367
- } catch (e) {
22368
- console.error('Unable to load vue-slider', e);
22369
22157
  }
22158
+ } catch (e) {
22159
+ console.error('Unable to load vue-slider', e);
22370
22160
  }
22371
22161
  return components;
22372
22162
  };
@@ -30355,7 +30145,7 @@
30355
30145
  });
30356
30146
  }
30357
30147
 
30358
- var version$1 = "3.0.0-alpha.1";
30148
+ var version = "3.0.0-alpha.2";
30359
30149
 
30360
30150
  var components = [RLConnected, ResultCard, ResultList, ReactiveBase, SBConnected, ListConnected, ListConnected$1, RangeConnected$1, RangeConnected$2, RangeConnected$3, RangeConnected, RcConnected, RcConnected$1, TBConnected, ListConnected$2, ListConnected$3, StateProviderConnected, RangeConnected$4];
30361
30151
  function install$1 (Vue) {
@@ -30370,7 +30160,7 @@
30370
30160
  install$1(window.Vue);
30371
30161
  }
30372
30162
  var index$1 = {
30373
- version: version$1,
30163
+ version: version,
30374
30164
  install: install$1
30375
30165
  };
30376
30166
 
@@ -30397,7 +30187,7 @@
30397
30187
  exports.default = index$1;
30398
30188
  exports.initReactivesearch = initReactivesearch;
30399
30189
  exports.install = install$1;
30400
- exports.version = version$1;
30190
+ exports.version = version;
30401
30191
 
30402
30192
  Object.defineProperty(exports, '__esModule', { value: true });
30403
30193