@soft-stech/bootsman-ui-shadcn 2.0.32 → 2.0.33

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.
@@ -179,7 +179,7 @@ const xe = /* @__PURE__ */ _({
179
179
  const i = c;
180
180
  return (u, a) => (p(), f(s(le), x(i, {
181
181
  class: s(ae)(
182
- "fixed top-0 z-100 flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col md:max-w-[420px]",
182
+ "fixed top-0 z-100 flex max-h-screen w-full flex-col-reverse gap-2 p-4 sm:top-auto sm:right-0 sm:bottom-0 sm:flex-col md:max-w-[420px]",
183
183
  i.class
184
184
  )
185
185
  }), null, 16, ["class"]));
@@ -1,4 +1,4 @@
1
- import { _ as f } from "../../BuiToastViewport.vue_vue_type_script_setup_true_lang-Df_BhI0w.js";
1
+ import { _ as f } from "../../BuiToastViewport.vue_vue_type_script_setup_true_lang-D6QKAUE5.js";
2
2
  export {
3
3
  f as default
4
4
  };
@@ -6,7 +6,7 @@ import { u as q } from "../../useForwardExpose-DmyWSR4F.js";
6
6
  import { P as D } from "../../Presence-BadhDRMZ.js";
7
7
  import { b as A } from "../../ToastClose-B0fnVCIU.js";
8
8
  import { useVModel as N } from "@vueuse/core";
9
- import { _ as R } from "../../BuiToastViewport.vue_vue_type_script_setup_true_lang-Df_BhI0w.js";
9
+ import { _ as R } from "../../BuiToastViewport.vue_vue_type_script_setup_true_lang-D6QKAUE5.js";
10
10
  import { _ as fe } from "../../BuiToastAction.vue_vue_type_script_setup_true_lang-fvsdWGKt.js";
11
11
  import { _ as O } from "../../BuiToastClose.vue_vue_type_script_setup_true_lang-DG-vzARZ.js";
12
12
  import { _ as F } from "../../BuiToastTitle.vue_vue_type_script_setup_true_lang-CxCpkjZZ.js";
@@ -1,6 +1,6 @@
1
1
  import { ref as O, computed as r } from "vue";
2
2
  import "vee-validate";
3
- const _ = 1, c = 1e6, o = {
3
+ const _ = 3, c = 1e6, o = {
4
4
  ADD_TOAST: "ADD_TOAST",
5
5
  UPDATE_TOAST: "UPDATE_TOAST",
6
6
  DISMISS_TOAST: "DISMISS_TOAST",
package/dist/index.js CHANGED
@@ -143,7 +143,7 @@ import { _ as Wa } from "./BuiTableFooter.vue_vue_type_script_setup_true_lang-yW
143
143
  import { _ as Za } from "./BuiDataTableColumnList.vue_vue_type_script_setup_true_lang-D7BaWJlh.js";
144
144
  import { _ as oi } from "./BuiTabs.vue_vue_type_script_setup_true_lang--Pf-gBbc.js";
145
145
  import { _ as ei } from "./BuiTabsContent.vue_vue_type_script_setup_true_lang-C_8zNmbh.js";
146
- import { _ as ai } from "./BuiToastViewport.vue_vue_type_script_setup_true_lang-Df_BhI0w.js";
146
+ import { _ as ai } from "./BuiToastViewport.vue_vue_type_script_setup_true_lang-D6QKAUE5.js";
147
147
  import { _ as ui } from "./BuiToastAction.vue_vue_type_script_setup_true_lang-fvsdWGKt.js";
148
148
  import { _ as si } from "./BuiToastClose.vue_vue_type_script_setup_true_lang-DG-vzARZ.js";
149
149
  import { _ as Bi } from "./BuiToastTitle.vue_vue_type_script_setup_true_lang-CxCpkjZZ.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soft-stech/bootsman-ui-shadcn",
3
- "version": "2.0.32",
3
+ "version": "2.0.33",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -10,7 +10,7 @@ const props = defineProps<ToastViewportProps & { class?: string }>()
10
10
  v-bind="props"
11
11
  :class="
12
12
  cn(
13
- 'fixed top-0 z-100 flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col md:max-w-[420px]',
13
+ 'fixed top-0 z-100 flex max-h-screen w-full flex-col-reverse gap-2 p-4 sm:top-auto sm:right-0 sm:bottom-0 sm:flex-col md:max-w-[420px]',
14
14
  props.class
15
15
  )
16
16
  "
@@ -1,7 +1,7 @@
1
1
  import { computed, ref, type Component, type VNode, type ComputedRef } from 'vue'
2
2
  import { type ToastProps } from './BuiToast.vue'
3
3
 
4
- const TOAST_LIMIT = 1
4
+ const TOAST_LIMIT = 3
5
5
  const TOAST_REMOVE_DELAY = 1000000
6
6
 
7
7
  export type StringOrVNode = string | VNode | (() => VNode)