fds-vue-core 2.0.43 → 2.0.44

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.
@@ -1 +1 @@
1
- {"version":3,"file":"FdsBlockContent.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Blocks/FdsBlockContent/FdsBlockContent.vue"],"names":[],"mappings":"AAuDA,OAAO,EAAY,KAAK,IAAI,EAAE,MAAM,KAAK,CAAA;AACzC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AA+BnD,KAAK,WAAW,GAAG;IACjB,OAAO,CAAC,EAAE,IAAI,CAAA;IACd,UAAU,CAAC,EAAE,IAAI,CAAA;CAClB,CAAC;AAiFF,QAAA,MAAM,eAAe;;;;4EAGnB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAY1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"FdsBlockContent.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Blocks/FdsBlockContent/FdsBlockContent.vue"],"names":[],"mappings":"AAgEA,OAAO,EAAY,KAAK,IAAI,EAAE,MAAM,KAAK,CAAA;AACzC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AAwCnD,KAAK,WAAW,GAAG;IACjB,OAAO,CAAC,EAAE,IAAI,CAAA;IACd,UAAU,CAAC,EAAE,IAAI,CAAA;CAClB,CAAC;AA+EF,QAAA,MAAM,eAAe;;;;4EAGnB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAY1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1222,7 +1222,7 @@ const _hoisted_2$e = { class: "flex-1 flex" };
1222
1222
  const _hoisted_3$a = ["innerHTML"];
1223
1223
  const _hoisted_4$9 = { key: 1 };
1224
1224
  const _hoisted_5$6 = { key: 0 };
1225
- const _hoisted_6$4 = {
1225
+ const _hoisted_6$3 = {
1226
1226
  key: 2,
1227
1227
  class: "items-center max-h-[28px]"
1228
1228
  };
@@ -1463,7 +1463,7 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
1463
1463
  _: 1
1464
1464
  }, 8, ["id", "checked", "indeterminate"])
1465
1465
  ]),
1466
- vue.unref(treeState)?.isParentOrChildrenSelected(props.nodeId) && !(vue.unref(treeState)?.isNodeIndeterminateById(props.nodeId) ?? false) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$4, [
1466
+ vue.unref(treeState)?.isParentOrChildrenSelected(props.nodeId) && !(vue.unref(treeState)?.isNodeIndeterminateById(props.nodeId) ?? false) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$3, [
1467
1467
  vue.createVNode(_sfc_main$t, {
1468
1468
  ref_key: "triggerRef",
1469
1469
  ref: triggerRef,
@@ -1904,9 +1904,8 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
1904
1904
  const _hoisted_1$i = ["id"];
1905
1905
  const _hoisted_2$c = { class: "flex items-start justify-between gap-4" };
1906
1906
  const _hoisted_3$8 = { class: "flex items-center gap-3" };
1907
- const _hoisted_4$7 = { class: "mt-0 mb-4 text-lg font-bold tracking-wide" };
1908
- const _hoisted_5$5 = { class: "flex items-start gap-3" };
1909
- const _hoisted_6$3 = { class: "mb-0-last-child" };
1907
+ const _hoisted_4$7 = { class: "flex items-start gap-3" };
1908
+ const _hoisted_5$5 = { class: "mb-0-last-child" };
1910
1909
  const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
1911
1910
  __name: "FdsBlockContent",
1912
1911
  props: {
@@ -1916,12 +1915,18 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
1916
1915
  id: {}
1917
1916
  },
1918
1917
  setup(__props) {
1918
+ const hasSlot = useHasSlot();
1919
1919
  const props = __props;
1920
1920
  const contentClasses = vue.computed(() => [
1921
- "rounded-md p-4 pb-6 bg-white mb-4",
1921
+ "rounded-md p-4 bg-white mb-4",
1922
1922
  props.tight && "pb-2",
1923
1923
  props.tight && "p-4!",
1924
- props.borderLeft && "border-l-4"
1924
+ props.borderLeft && "border-l-4",
1925
+ hasSlot.value ? "pb-6" : "pb-4"
1926
+ ]);
1927
+ const headerClasses = vue.computed(() => [
1928
+ "mt-0 mb-4 text-lg font-bold tracking-wide",
1929
+ !hasSlot.value && "mb-0!"
1925
1930
  ]);
1926
1931
  const borderLeftStyle = vue.computed(() => {
1927
1932
  if (!props.borderLeft) return {};
@@ -1942,13 +1947,15 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
1942
1947
  }, [
1943
1948
  vue.createElementVNode("header", _hoisted_2$c, [
1944
1949
  vue.createElementVNode("div", _hoisted_3$8, [
1945
- vue.createElementVNode("h3", _hoisted_4$7, vue.toDisplayString(_ctx.heading), 1)
1950
+ vue.createElementVNode("h3", {
1951
+ class: vue.normalizeClass(headerClasses.value)
1952
+ }, vue.toDisplayString(_ctx.heading), 3)
1946
1953
  ]),
1947
- vue.createElementVNode("div", _hoisted_5$5, [
1954
+ vue.createElementVNode("div", _hoisted_4$7, [
1948
1955
  vue.renderSlot(_ctx.$slots, "headerInfo")
1949
1956
  ])
1950
1957
  ]),
1951
- vue.createElementVNode("div", _hoisted_6$3, [
1958
+ vue.createElementVNode("div", _hoisted_5$5, [
1952
1959
  vue.renderSlot(_ctx.$slots, "default")
1953
1960
  ])
1954
1961
  ], 14, _hoisted_1$i);
@@ -2816,7 +2823,7 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
2816
2823
  emits: ["sort"],
2817
2824
  setup(__props) {
2818
2825
  const props = __props;
2819
- const hasSlot = vue.computed(() => useHasSlot());
2826
+ const hasSlot = useHasSlot();
2820
2827
  const headerClasses = vue.computed(() => [
2821
2828
  "appearance-none p-4 bg-transparent flex items-center border-none text-left w-full bg-transparent text-gray-800 whitespace-nowrap text-base font-bold leading-5 tracking-normal",
2822
2829
  props.align === "center" && "text-center justify-center",
@@ -2831,7 +2838,7 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
2831
2838
  class: vue.normalizeClass(headerClasses.value),
2832
2839
  onClick: _cache[0] || (_cache[0] = ($event) => _ctx.$emit("sort"))
2833
2840
  }, [
2834
- hasSlot.value ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_2$7, [
2841
+ vue.unref(hasSlot) ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_2$7, [
2835
2842
  vue.renderSlot(_ctx.$slots, "default")
2836
2843
  ])) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_3$4, vue.toDisplayString(_ctx.heading), 1)),
2837
2844
  vue.createVNode(_sfc_main$u, {
@@ -2843,7 +2850,7 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
2843
2850
  key: 1,
2844
2851
  class: vue.normalizeClass(headerClasses.value)
2845
2852
  }, [
2846
- hasSlot.value ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_4$4, [
2853
+ vue.unref(hasSlot) ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_4$4, [
2847
2854
  vue.renderSlot(_ctx.$slots, "default")
2848
2855
  ])) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_5$2, vue.toDisplayString(_ctx.heading), 1))
2849
2856
  ], 2))