cleek 2.3.24 → 2.3.25

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/dist/cleek.es.js CHANGED
@@ -17,7 +17,7 @@ var __spreadValues = (a, b) => {
17
17
  return a;
18
18
  };
19
19
  var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
20
- import { defineComponent, ref, openBlock, createElementBlock, createElementVNode, renderSlot, normalizeClass, createCommentVNode, computed as computed$2, normalizeStyle, unref as unref$1, createBlock, Teleport, createVNode, createTextVNode, toDisplayString, withCtx, onMounted, nextTick as nextTick$1, onBeforeUnmount, getCurrentInstance, withDirectives, isRef as isRef$1, vModelDynamic, Fragment, renderList, mergeProps, withKeys, withModifiers, pushScopeId, popScopeId, watch, vModelRadio, vModelSelect, vModelCheckbox, vModelText } from "vue";
20
+ import { defineComponent, ref, openBlock, createElementBlock, createElementVNode, renderSlot, normalizeClass, createCommentVNode, computed as computed$2, normalizeStyle, unref as unref$1, watch, h, createBlock, Teleport, createVNode, createTextVNode, toDisplayString, withCtx, onMounted, nextTick as nextTick$1, onBeforeUnmount, getCurrentInstance, withDirectives, isRef as isRef$1, vModelDynamic, Fragment, renderList, mergeProps, withKeys, withModifiers, pushScopeId, popScopeId, vModelRadio, vModelSelect, vModelCheckbox, vModelText } from "vue";
21
21
  var defaultCleekOptions = {
22
22
  colors: {
23
23
  primary: "#559933",
@@ -1953,7 +1953,7 @@ var LayersCounter = {
1953
1953
  var LayersText = {
1954
1954
  mixout: function mixout5() {
1955
1955
  return {
1956
- text: function text(content) {
1956
+ text: function text2(content) {
1957
1957
  var params = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
1958
1958
  var _params$transform = params.transform, transform = _params$transform === void 0 ? meaninglessTransform : _params$transform, _params$title = params.title, title = _params$title === void 0 ? null : _params$title, _params$classes = params.classes, classes = _params$classes === void 0 ? [] : _params$classes, _params$attributes = params.attributes, attributes = _params$attributes === void 0 ? {} : _params$attributes, _params$styles = params.styles, styles2 = _params$styles === void 0 ? {} : _params$styles;
1959
1959
  return domVariants({
@@ -2478,7 +2478,7 @@ registerPlugins(plugins, {
2478
2478
  mixoutsTo: api
2479
2479
  });
2480
2480
  api.noAuto;
2481
- api.config;
2481
+ var config$1 = api.config;
2482
2482
  var library$1 = api.library;
2483
2483
  api.dom;
2484
2484
  var parse$1 = api.parse;
@@ -2486,7 +2486,7 @@ api.findIconDefinition;
2486
2486
  api.toHtml;
2487
2487
  var icon2 = api.icon;
2488
2488
  api.layer;
2489
- api.text;
2489
+ var text = api.text;
2490
2490
  api.counter;
2491
2491
  /*!
2492
2492
  * Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
@@ -16036,68 +16036,67 @@ var objectWithoutProperties = function(obj, keys) {
16036
16036
  }
16037
16037
  return target;
16038
16038
  };
16039
+ var toConsumableArray = function(arr) {
16040
+ if (Array.isArray(arr)) {
16041
+ for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++)
16042
+ arr2[i] = arr[i];
16043
+ return arr2;
16044
+ } else {
16045
+ return Array.from(arr);
16046
+ }
16047
+ };
16039
16048
  function styleToObject(style) {
16040
16049
  return style.split(";").map(function(s) {
16041
16050
  return s.trim();
16042
16051
  }).filter(function(s) {
16043
16052
  return s;
16044
- }).reduce(function(acc, pair) {
16045
- var i = pair.indexOf(":");
16046
- var prop = humps.camelize(pair.slice(0, i));
16047
- var value = pair.slice(i + 1).trim();
16048
- acc[prop] = value;
16049
- return acc;
16053
+ }).reduce(function(output, pair) {
16054
+ var idx = pair.indexOf(":");
16055
+ var prop = humps.camelize(pair.slice(0, idx));
16056
+ var value = pair.slice(idx + 1).trim();
16057
+ output[prop] = value;
16058
+ return output;
16050
16059
  }, {});
16051
16060
  }
16052
- function classToObject(cls) {
16053
- return cls.split(/\s+/).reduce(function(acc, c) {
16054
- acc[c] = true;
16055
- return acc;
16061
+ function classToObject(classes) {
16062
+ return classes.split(/\s+/).reduce(function(output, className) {
16063
+ output[className] = true;
16064
+ return output;
16056
16065
  }, {});
16057
16066
  }
16058
- function combineClassObjects() {
16059
- for (var _len = arguments.length, objs = Array(_len), _key = 0; _key < _len; _key++) {
16060
- objs[_key] = arguments[_key];
16067
+ function convert(abstractElement) {
16068
+ var props = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
16069
+ var attrs = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
16070
+ if (typeof abstractElement === "string") {
16071
+ return abstractElement;
16061
16072
  }
16062
- return objs.reduce(function(acc, obj) {
16063
- if (Array.isArray(obj)) {
16064
- acc = acc.concat(obj);
16065
- } else {
16066
- acc.push(obj);
16067
- }
16068
- return acc;
16069
- }, []);
16070
- }
16071
- function convert(h, element) {
16072
- var props = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
16073
- var data = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : {};
16074
- var children = (element.children || []).map(convert.bind(null, h));
16075
- var mixins = Object.keys(element.attributes || {}).reduce(function(acc, key) {
16076
- var val = element.attributes[key];
16073
+ var children = (abstractElement.children || []).map(function(child) {
16074
+ return convert(child);
16075
+ });
16076
+ var mixins = Object.keys(abstractElement.attributes || {}).reduce(function(mixins2, key) {
16077
+ var value = abstractElement.attributes[key];
16077
16078
  switch (key) {
16078
16079
  case "class":
16079
- acc["class"] = classToObject(val);
16080
+ mixins2.class = classToObject(value);
16080
16081
  break;
16081
16082
  case "style":
16082
- acc["style"] = styleToObject(val);
16083
+ mixins2.style = styleToObject(value);
16083
16084
  break;
16084
16085
  default:
16085
- acc.attrs[key] = val;
16086
+ mixins2.attrs[key] = value;
16086
16087
  }
16087
- return acc;
16088
- }, { "class": {}, style: {}, attrs: {} });
16089
- var _data$class = data.class, dClass = _data$class === void 0 ? {} : _data$class, _data$style = data.style, dStyle = _data$style === void 0 ? {} : _data$style, _data$attrs = data.attrs, dAttrs = _data$attrs === void 0 ? {} : _data$attrs, remainingData = objectWithoutProperties(data, ["class", "style", "attrs"]);
16090
- if (typeof element === "string") {
16091
- return element;
16092
- } else {
16093
- return h(element.tag, _extends({
16094
- class: combineClassObjects(mixins.class, dClass),
16095
- style: _extends({}, mixins.style, dStyle),
16096
- attrs: _extends({}, mixins.attrs, dAttrs)
16097
- }, remainingData, {
16098
- props
16099
- }), children);
16100
- }
16088
+ return mixins2;
16089
+ }, {
16090
+ attrs: {},
16091
+ class: {},
16092
+ style: {}
16093
+ });
16094
+ attrs.class;
16095
+ var _attrs$style = attrs.style, aStyle = _attrs$style === void 0 ? {} : _attrs$style, otherAttrs = objectWithoutProperties(attrs, ["class", "style"]);
16096
+ return h(abstractElement.tag, _extends({}, props, {
16097
+ class: mixins.class,
16098
+ style: _extends({}, mixins.style, aStyle)
16099
+ }, mixins.attrs, otherAttrs), children);
16101
16100
  }
16102
16101
  var PRODUCTION = false;
16103
16102
  try {
@@ -16117,12 +16116,7 @@ function classList(props) {
16117
16116
  var _classes;
16118
16117
  var classes = (_classes = {
16119
16118
  "fa-spin": props.spin,
16120
- "fa-spin-pulse": props.spinPulse,
16121
- "fa-spin-reverse": props.spinReverse,
16122
16119
  "fa-pulse": props.pulse,
16123
- "fa-beat": props.beat,
16124
- "fa-fade": props.fade,
16125
- "fa-flash": props.flash,
16126
16120
  "fa-fw": props.fixedWidth,
16127
16121
  "fa-border": props.border,
16128
16122
  "fa-li": props.listItem,
@@ -16137,12 +16131,6 @@ function classList(props) {
16137
16131
  });
16138
16132
  }
16139
16133
  function normalizeIconArgs(icon$$1) {
16140
- if (icon$$1 && (typeof icon$$1 === "undefined" ? "undefined" : _typeof(icon$$1)) === "object" && icon$$1.prefix && icon$$1.iconName && icon$$1.icon) {
16141
- return icon$$1;
16142
- }
16143
- if (parse$1.icon) {
16144
- return parse$1.icon(icon$$1);
16145
- }
16146
16134
  if (icon$$1 === null) {
16147
16135
  return null;
16148
16136
  }
@@ -16156,30 +16144,17 @@ function normalizeIconArgs(icon$$1) {
16156
16144
  return { prefix: "fas", iconName: icon$$1 };
16157
16145
  }
16158
16146
  }
16159
- var FontAwesomeIcon = {
16147
+ var FontAwesomeIcon = defineComponent({
16160
16148
  name: "FontAwesomeIcon",
16161
- functional: true,
16162
16149
  props: {
16163
- beat: {
16164
- type: Boolean,
16165
- default: false
16166
- },
16167
16150
  border: {
16168
16151
  type: Boolean,
16169
16152
  default: false
16170
16153
  },
16171
- fade: {
16172
- type: Boolean,
16173
- default: false
16174
- },
16175
16154
  fixedWidth: {
16176
16155
  type: Boolean,
16177
16156
  default: false
16178
16157
  },
16179
- flash: {
16180
- type: Boolean,
16181
- default: false
16182
- },
16183
16158
  flip: {
16184
16159
  type: String,
16185
16160
  default: null,
@@ -16214,7 +16189,7 @@ var FontAwesomeIcon = {
16214
16189
  type: [String, Number],
16215
16190
  default: null,
16216
16191
  validator: function validator3(value) {
16217
- return [90, 180, 270].indexOf(parseInt(value, 10)) > -1;
16192
+ return [90, 180, 270].indexOf(Number.parseInt(value, 10)) > -1;
16218
16193
  }
16219
16194
  },
16220
16195
  swapOpacity: {
@@ -16225,21 +16200,13 @@ var FontAwesomeIcon = {
16225
16200
  type: String,
16226
16201
  default: null,
16227
16202
  validator: function validator4(value) {
16228
- return ["2xs", "xs", "sm", "lg", "xl", "2xl", "1x", "2x", "3x", "4x", "5x", "6x", "7x", "8x", "9x", "10x"].indexOf(value) > -1;
16203
+ return ["lg", "xs", "sm", "1x", "2x", "3x", "4x", "5x", "6x", "7x", "8x", "9x", "10x"].indexOf(value) > -1;
16229
16204
  }
16230
16205
  },
16231
16206
  spin: {
16232
16207
  type: Boolean,
16233
16208
  default: false
16234
16209
  },
16235
- spinPulse: {
16236
- type: Boolean,
16237
- default: false
16238
- },
16239
- spinReverse: {
16240
- type: Boolean,
16241
- default: false
16242
- },
16243
16210
  transform: {
16244
16211
  type: [String, Object],
16245
16212
  default: null
@@ -16257,22 +16224,105 @@ var FontAwesomeIcon = {
16257
16224
  default: false
16258
16225
  }
16259
16226
  },
16260
- render: function render2(createElement2, context) {
16261
- var props = context.props;
16262
- var iconArgs = props.icon, maskArgs = props.mask, symbol = props.symbol, title = props.title;
16263
- var icon$$1 = normalizeIconArgs(iconArgs);
16264
- var classes = objectWithKey("classes", classList(props));
16265
- var transform = objectWithKey("transform", typeof props.transform === "string" ? parse$1.transform(props.transform) : props.transform);
16266
- var mask = objectWithKey("mask", normalizeIconArgs(maskArgs));
16267
- var renderedIcon = icon2(icon$$1, _extends({}, classes, transform, mask, { symbol, title }));
16268
- if (!renderedIcon) {
16269
- return log("Could not find one or more icon(s)", icon$$1, mask);
16227
+ setup: function setup(props, _ref2) {
16228
+ var attrs = _ref2.attrs;
16229
+ var icon$$1 = computed$2(function() {
16230
+ return normalizeIconArgs(props.icon);
16231
+ });
16232
+ var classes = computed$2(function() {
16233
+ return objectWithKey("classes", classList(props));
16234
+ });
16235
+ var transform = computed$2(function() {
16236
+ return objectWithKey("transform", typeof props.transform === "string" ? parse$1.transform(props.transform) : props.transform);
16237
+ });
16238
+ var mask = computed$2(function() {
16239
+ return objectWithKey("mask", normalizeIconArgs(props.mask));
16240
+ });
16241
+ var renderedIcon = computed$2(function() {
16242
+ return icon2(icon$$1.value, _extends({}, classes.value, transform.value, mask.value, {
16243
+ symbol: props.symbol,
16244
+ title: props.title
16245
+ }));
16246
+ });
16247
+ watch(renderedIcon, function(value) {
16248
+ if (!value) {
16249
+ return log("Could not find one or more icon(s)", icon$$1.value, mask.value);
16250
+ }
16251
+ }, { immediate: true });
16252
+ var vnode = computed$2(function() {
16253
+ return renderedIcon.value ? convert(renderedIcon.value.abstract[0], {}, attrs) : null;
16254
+ });
16255
+ return function() {
16256
+ return vnode.value;
16257
+ };
16258
+ }
16259
+ });
16260
+ defineComponent({
16261
+ name: "FontAwesomeLayers",
16262
+ props: {
16263
+ fixedWidth: {
16264
+ type: Boolean,
16265
+ default: false
16270
16266
  }
16271
- var abstract = renderedIcon.abstract;
16272
- var convertCurry = convert.bind(null, createElement2);
16273
- return convertCurry(abstract[0], {}, context.data);
16267
+ },
16268
+ setup: function setup2(props, _ref2) {
16269
+ var slots = _ref2.slots;
16270
+ var familyPrefix = config$1.familyPrefix;
16271
+ var className = computed$2(function() {
16272
+ return [familyPrefix + "-layers"].concat(toConsumableArray(props.fixedWidth ? [familyPrefix + "-fw"] : []));
16273
+ });
16274
+ return function() {
16275
+ return h("div", { class: className.value }, slots.default ? slots.default() : []);
16276
+ };
16274
16277
  }
16275
- };
16278
+ });
16279
+ defineComponent({
16280
+ name: "FontAwesomeLayersText",
16281
+ props: {
16282
+ value: {
16283
+ type: [String, Number],
16284
+ default: ""
16285
+ },
16286
+ transform: {
16287
+ type: [String, Object],
16288
+ default: null
16289
+ },
16290
+ counter: {
16291
+ type: Boolean,
16292
+ default: false
16293
+ },
16294
+ position: {
16295
+ type: String,
16296
+ default: null,
16297
+ validator: function validator5(value) {
16298
+ return ["bottom-left", "bottom-right", "top-left", "top-right"].indexOf(value) > -1;
16299
+ }
16300
+ }
16301
+ },
16302
+ setup: function setup3(props, _ref2) {
16303
+ var attrs = _ref2.attrs;
16304
+ var familyPrefix = config$1.familyPrefix;
16305
+ var classes = computed$2(function() {
16306
+ return objectWithKey("classes", [].concat(toConsumableArray(props.counter ? [familyPrefix + "-layers-counter"] : []), toConsumableArray(props.position ? [familyPrefix + "-layers-" + props.position] : [])));
16307
+ });
16308
+ var transform = computed$2(function() {
16309
+ return objectWithKey("transform", typeof props.transform === "string" ? parse$1.transform(props.transform) : props.transform);
16310
+ });
16311
+ var abstractElement = computed$2(function() {
16312
+ var _text = text(props.value.toString(), _extends({}, transform.value, classes.value)), abstract = _text.abstract;
16313
+ if (props.counter) {
16314
+ abstract[0].attributes.class = abstract[0].attributes.class.replace("fa-layers-text", "");
16315
+ }
16316
+ return abstract[0];
16317
+ });
16318
+ var vnode = computed$2(function() {
16319
+ return convert(abstractElement.value, {}, attrs);
16320
+ });
16321
+ return function() {
16322
+ return vnode.value;
16323
+ };
16324
+ }
16325
+ });
16276
16326
  var ckIcon_vue_vue_type_style_index_0_scoped_true_lang = "";
16277
16327
  const _sfc_main$m = /* @__PURE__ */ defineComponent({
16278
16328
  props: {
@@ -16356,27 +16406,27 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
16356
16406
  function closeNotification() {
16357
16407
  isActive.value = false;
16358
16408
  }
16359
- function ckNotify2({ text = "", title = "", color = "#ccc", duration = defaultDuration.value }) {
16409
+ function ckNotify2({ text: text2 = "", title = "", color = "#ccc", duration = defaultDuration.value }) {
16360
16410
  globalTitle.value = title;
16361
- globalText.value = text;
16411
+ globalText.value = text2;
16362
16412
  globalColor.value = color;
16363
16413
  isActive.value = true;
16364
16414
  setTimeout(() => {
16365
16415
  closeNotification();
16366
16416
  }, duration);
16367
16417
  }
16368
- function ckNotifySuccess(text = "", title = "\xC9xito") {
16418
+ function ckNotifySuccess(text2 = "", title = "\xC9xito") {
16369
16419
  ckNotify2({
16370
- text,
16420
+ text: text2,
16371
16421
  title,
16372
16422
  color: "#66CC00"
16373
16423
  });
16374
16424
  }
16375
- function ckNotifyError(text = "", title = "Error") {
16376
- ckNotify2({ text, title, color: "#FF3333" });
16425
+ function ckNotifyError(text2 = "", title = "Error") {
16426
+ ckNotify2({ text: text2, title, color: "#FF3333" });
16377
16427
  }
16378
- function ckNotifyWarning(text = "", title = "Atenci\xF3n") {
16379
- ckNotify2({ text, title, color: "#FFDD33" });
16428
+ function ckNotifyWarning(text2 = "", title = "Atenci\xF3n") {
16429
+ ckNotify2({ text: text2, title, color: "#FFDD33" });
16380
16430
  }
16381
16431
  return (_ctx, _cache) => {
16382
16432
  return isActive.value ? (openBlock(), createBlock(Teleport, {
@@ -17076,8 +17126,7 @@ const def = (obj, key, value) => {
17076
17126
  });
17077
17127
  };
17078
17128
  let activeEffectScope;
17079
- function recordEffectScope(effect3, scope) {
17080
- scope = scope || activeEffectScope;
17129
+ function recordEffectScope(effect3, scope = activeEffectScope) {
17081
17130
  if (scope && scope.active) {
17082
17131
  scope.effects.push(effect3);
17083
17132
  }
@@ -17117,7 +17166,6 @@ const finalizeDepMarkers = (effect3) => {
17117
17166
  let effectTrackDepth = 0;
17118
17167
  let trackOpBit = 1;
17119
17168
  const maxMarkerBits = 30;
17120
- const effectStack = [];
17121
17169
  let activeEffect;
17122
17170
  class ReactiveEffect {
17123
17171
  constructor(fn2, scheduler = null, scope) {
@@ -17125,33 +17173,40 @@ class ReactiveEffect {
17125
17173
  this.scheduler = scheduler;
17126
17174
  this.active = true;
17127
17175
  this.deps = [];
17176
+ this.parent = void 0;
17128
17177
  recordEffectScope(this, scope);
17129
17178
  }
17130
17179
  run() {
17131
17180
  if (!this.active) {
17132
17181
  return this.fn();
17133
17182
  }
17134
- if (!effectStack.length || !effectStack.includes(this)) {
17135
- try {
17136
- effectStack.push(activeEffect = this);
17137
- enableTracking();
17138
- trackOpBit = 1 << ++effectTrackDepth;
17139
- if (effectTrackDepth <= maxMarkerBits) {
17140
- initDepMarkers(this);
17141
- } else {
17142
- cleanupEffect(this);
17143
- }
17144
- return this.fn();
17145
- } finally {
17146
- if (effectTrackDepth <= maxMarkerBits) {
17147
- finalizeDepMarkers(this);
17148
- }
17149
- trackOpBit = 1 << --effectTrackDepth;
17150
- resetTracking();
17151
- effectStack.pop();
17152
- const n = effectStack.length;
17153
- activeEffect = n > 0 ? effectStack[n - 1] : void 0;
17183
+ let parent = activeEffect;
17184
+ let lastShouldTrack = shouldTrack;
17185
+ while (parent) {
17186
+ if (parent === this) {
17187
+ return;
17154
17188
  }
17189
+ parent = parent.parent;
17190
+ }
17191
+ try {
17192
+ this.parent = activeEffect;
17193
+ activeEffect = this;
17194
+ shouldTrack = true;
17195
+ trackOpBit = 1 << ++effectTrackDepth;
17196
+ if (effectTrackDepth <= maxMarkerBits) {
17197
+ initDepMarkers(this);
17198
+ } else {
17199
+ cleanupEffect(this);
17200
+ }
17201
+ return this.fn();
17202
+ } finally {
17203
+ if (effectTrackDepth <= maxMarkerBits) {
17204
+ finalizeDepMarkers(this);
17205
+ }
17206
+ trackOpBit = 1 << --effectTrackDepth;
17207
+ activeEffect = this.parent;
17208
+ shouldTrack = lastShouldTrack;
17209
+ this.parent = void 0;
17155
17210
  }
17156
17211
  }
17157
17212
  stop() {
@@ -17174,18 +17229,6 @@ function cleanupEffect(effect3) {
17174
17229
  }
17175
17230
  }
17176
17231
  let shouldTrack = true;
17177
- const trackStack = [];
17178
- function enableTracking() {
17179
- trackStack.push(shouldTrack);
17180
- shouldTrack = true;
17181
- }
17182
- function resetTracking() {
17183
- const last = trackStack.pop();
17184
- shouldTrack = last === void 0 ? true : last;
17185
- }
17186
- function isTracking() {
17187
- return shouldTrack && activeEffect !== void 0;
17188
- }
17189
17232
  function trackEffects(dep, debuggerEventExtraInfo) {
17190
17233
  let shouldTrack2 = false;
17191
17234
  if (effectTrackDepth <= maxMarkerBits) {
@@ -17234,13 +17277,10 @@ function markRaw(value) {
17234
17277
  return value;
17235
17278
  }
17236
17279
  function trackRefValue(ref2) {
17237
- if (isTracking()) {
17280
+ if (shouldTrack && activeEffect) {
17238
17281
  ref2 = toRaw(ref2);
17239
- if (!ref2.dep) {
17240
- ref2.dep = createDep();
17241
- }
17242
17282
  {
17243
- trackEffects(ref2.dep);
17283
+ trackEffects(ref2.dep || (ref2.dep = createDep()));
17244
17284
  }
17245
17285
  }
17246
17286
  }
@@ -17253,7 +17293,7 @@ function triggerRefValue(ref2, newVal) {
17253
17293
  }
17254
17294
  }
17255
17295
  function isRef(r) {
17256
- return Boolean(r && r.__v_isRef === true);
17296
+ return !!(r && r.__v_isRef === true);
17257
17297
  }
17258
17298
  function unref(ref2) {
17259
17299
  return isRef(ref2) ? ref2.value : ref2;
@@ -20893,7 +20933,7 @@ function getChildren(popper2) {
20893
20933
  })
20894
20934
  };
20895
20935
  }
20896
- function render3(instance) {
20936
+ function render2(instance) {
20897
20937
  var popper2 = div();
20898
20938
  var box = div();
20899
20939
  box.className = BOX_CLASS;
@@ -20948,7 +20988,7 @@ function render3(instance) {
20948
20988
  onUpdate
20949
20989
  };
20950
20990
  }
20951
- render3.$$tippy = true;
20991
+ render2.$$tippy = true;
20952
20992
  var idCounter = 1;
20953
20993
  var mouseMoveListeners = [];
20954
20994
  var mountedInstances = [];
@@ -21688,7 +21728,7 @@ Object.assign({}, applyStyles$1, {
21688
21728
  }
21689
21729
  });
21690
21730
  tippy$1.setDefaultProps({
21691
- render: render3
21731
+ render: render2
21692
21732
  });
21693
21733
  var tippy = "";
21694
21734
  var ckTooltip_vue_vue_type_style_index_0_scoped_true_lang = "";