@pequity/squirrel 5.1.0 → 5.2.1

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.
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const P_ICON_ALIASES = {
4
+ delete: "octicon:trash-24",
5
+ edit: "simple-line-icons:pencil",
6
+ send: "fa:paper-plane",
7
+ settings: "heroicons:cog-8-tooth-20-solid"
8
+ };
9
+ exports.P_ICON_ALIASES = P_ICON_ALIASES;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  const vue = require("vue");
3
3
  const _pluginVue_exportHelper = require("./chunks/_plugin-vue_export-helper.js");
4
- const _withScopeId = (n) => (vue.pushScopeId("data-v-2662da21"), n = n(), vue.popScopeId(), n);
4
+ const _withScopeId = (n) => (vue.pushScopeId("data-v-a46da710"), n = n(), vue.popScopeId(), n);
5
5
  const _hoisted_1 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ vue.createElementVNode("i", { class: "bg-info-circle-icon block h-3 w-3" }, null, -1));
6
6
  const _sfc_main = /* @__PURE__ */ vue.defineComponent({
7
7
  ...{
@@ -9,30 +9,28 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
9
9
  },
10
10
  __name: "p-info-icon",
11
11
  props: {
12
- text: {
13
- type: String,
14
- default: ""
15
- }
12
+ text: { default: null }
16
13
  },
17
14
  setup(__props) {
18
15
  return (_ctx, _cache) => {
19
16
  const _component_VTooltip = vue.resolveComponent("VTooltip");
20
17
  return vue.openBlock(), vue.createBlock(_component_VTooltip, {
21
18
  "popper-triggers": ["hover"],
22
- delay: { show: 750, hide: 0 }
19
+ delay: { show: 750, hide: 0 },
20
+ disabled: !_ctx.text
23
21
  }, {
24
22
  popper: vue.withCtx(() => [
25
23
  vue.renderSlot(_ctx.$slots, "default", {}, () => [
26
- vue.createTextVNode(vue.toDisplayString(__props.text), 1)
24
+ vue.createTextVNode(vue.toDisplayString(_ctx.text), 1)
27
25
  ], true)
28
26
  ]),
29
27
  default: vue.withCtx(() => [
30
28
  _hoisted_1
31
29
  ]),
32
30
  _: 3
33
- });
31
+ }, 8, ["disabled"]);
34
32
  };
35
33
  }
36
34
  });
37
- const PInfoIcon = /* @__PURE__ */ _pluginVue_exportHelper._export_sfc(_sfc_main, [["__scopeId", "data-v-2662da21"]]);
35
+ const PInfoIcon = /* @__PURE__ */ _pluginVue_exportHelper._export_sfc(_sfc_main, [["__scopeId", "data-v-a46da710"]]);
38
36
  module.exports = PInfoIcon;