tsv2-library 1.0.61-alpha.144 → 1.0.61-alpha.146

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.
@@ -19325,7 +19325,6 @@ const multiselect = {
19325
19325
  // Position
19326
19326
  "absolute top-0 left-0",
19327
19327
  "mt-2",
19328
- "!z-[2222]",
19329
19328
  "max-w-[30vw]",
19330
19329
  // Shape
19331
19330
  "border-0",
@@ -21875,7 +21874,7 @@ const paginator = {
21875
21874
  class: [
21876
21875
  // Position
21877
21876
  "absolute top-0 left-0",
21878
- "mt-1 !z-[1111]",
21877
+ "mt-1",
21879
21878
  // Shape
21880
21879
  "border-0",
21881
21880
  "rounded-md",
@@ -31012,6 +31011,7 @@ const _sfc_main$1x = /* @__PURE__ */ defineComponent({
31012
31011
  blockScroll: { type: Boolean, default: false },
31013
31012
  baseZIndex: { default: 0 },
31014
31013
  autoZIndex: { type: Boolean, default: true },
31014
+ maskClass: {},
31015
31015
  position: { default: "center" },
31016
31016
  maximizable: { type: Boolean, default: false },
31017
31017
  breakpoints: { default: void 0 },
@@ -40594,20 +40594,13 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
40594
40594
  { once: true }
40595
40595
  );
40596
40596
  return (_ctx, _cache) => {
40597
- var _a;
40598
40597
  return openBlock(), createBlock(_sfc_main$1x, {
40599
40598
  modal: !_ctx.hidden,
40600
40599
  pt: {
40601
- mask: {
40602
- class: [
40603
- ...(_a = unref(DialogPreset)) == null ? void 0 : _a.mask({ props: { modal: true } }).class,
40604
- "!z-[1112]"
40605
- ]
40606
- },
40607
40600
  root: {
40608
40601
  class: [
40609
40602
  ...unref(DialogPreset).root({ state: {} }).class,
40610
- "!w-[400px] !z-[1112]",
40603
+ "!w-[400px]",
40611
40604
  { "!hidden": _ctx.hidden }
40612
40605
  ]
40613
40606
  },
@@ -40637,7 +40630,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
40637
40630
  "onUpdate:visible": _cache[8] || (_cache[8] = ($event) => _ctx.$emit("update:visible", $event))
40638
40631
  }, createSlots({
40639
40632
  header: withCtx(() => {
40640
- var _a2;
40633
+ var _a;
40641
40634
  return [
40642
40635
  createElementVNode("div", _hoisted_1$1s, [
40643
40636
  createElementVNode("h3", {
@@ -40656,7 +40649,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
40656
40649
  class: normalizeClass([...unref(DialogPreset).title.class, "!leading-6 text-sm"])
40657
40650
  }, toDisplayString$1(_ctx.subHeader), 3)) : createCommentVNode("", true),
40658
40651
  renderSlot(_ctx.$slots, "description"),
40659
- !((_a2 = treeComponent.value) == null ? void 0 : _a2.isLoading) ? (openBlock(), createBlock(_sfc_main$1b, {
40652
+ !((_a = treeComponent.value) == null ? void 0 : _a.isLoading) ? (openBlock(), createBlock(_sfc_main$1b, {
40660
40653
  key: 2,
40661
40654
  modelValue: treeFilter.value,
40662
40655
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => treeFilter.value = $event),
@@ -40698,7 +40691,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
40698
40691
  name: "footer",
40699
40692
  fn: withCtx(() => [
40700
40693
  renderSlot(_ctx.$slots, "footer", {}, () => {
40701
- var _a2;
40694
+ var _a;
40702
40695
  return [
40703
40696
  !_ctx.allowEmptySelection ? withDirectives((openBlock(), createBlock(_sfc_main$1m, {
40704
40697
  key: 0,
@@ -40715,7 +40708,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
40715
40708
  text: ""
40716
40709
  }),
40717
40710
  createVNode(_sfc_main$1z, {
40718
- disabled: (_a2 = treeComponent.value) == null ? void 0 : _a2.isLoading,
40711
+ disabled: (_a = treeComponent.value) == null ? void 0 : _a.isLoading,
40719
40712
  onClick: _cache[6] || (_cache[6] = ($event) => onButtonSelectClicked(true)),
40720
40713
  label: "Select",
40721
40714
  severity: "success"
@@ -66738,24 +66731,14 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
66738
66731
  };
66739
66732
  __expose({ form, clearField });
66740
66733
  return (_ctx, _cache) => {
66741
- var _a;
66742
66734
  return openBlock(), createBlock(unref(script$13), {
66743
66735
  ref_key: "dialogForm",
66744
66736
  ref: dialogForm,
66745
- "auto-z-index": props.autoZIndex,
66746
66737
  class: normalizeClass(props.class),
66747
66738
  closable: _ctx.closable,
66748
66739
  draggable: false,
66749
66740
  header: _ctx.header,
66750
66741
  pt: {
66751
- mask: {
66752
- class: [
66753
- ...(_a = unref(DialogPreset)) == null ? void 0 : _a.mask({ props: { modal: true } }).class,
66754
- ...Array.isArray(_ctx.$props.maskClass) ? _ctx.$props.maskClass : [_ctx.$props.maskClass],
66755
- // Override z-index to prevent overlay component in form become hidden
66756
- { "!z-[1101]": props.autoZIndex }
66757
- ]
66758
- },
66759
66742
  root: {
66760
66743
  class: [
66761
66744
  ...unref(DialogPreset).root({ state: {} }).class,
@@ -66817,11 +66800,11 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
66817
66800
  })
66818
66801
  ]),
66819
66802
  footer: withCtx(() => {
66820
- var _a2;
66803
+ var _a;
66821
66804
  return [
66822
66805
  visibilityStayCheckbox.value ? (openBlock(), createBlock(_sfc_main$1a, {
66823
66806
  key: 0,
66824
- "model-value": (_a2 = form.value) == null ? void 0 : _a2.stayAfterSubmit,
66807
+ "model-value": (_a = form.value) == null ? void 0 : _a.stayAfterSubmit,
66825
66808
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => form.value && (form.value.stayAfterSubmit = $event)),
66826
66809
  label: "Stay on this form after submitting"
66827
66810
  }, null, 8, ["model-value"])) : createCommentVNode("", true),
@@ -66881,7 +66864,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
66881
66864
  })
66882
66865
  ]),
66883
66866
  _: 3
66884
- }, 8, ["auto-z-index", "class", "closable", "header", "pt", "visible"]);
66867
+ }, 8, ["class", "closable", "header", "pt", "visible"]);
66885
66868
  };
66886
66869
  }
66887
66870
  });