@creatorsn/vfluent3 0.3.6 → 0.3.9

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.
@@ -3,6 +3,7 @@ export type MessageOptions = {
3
3
  control?: string | VNode;
4
4
  status?: 'default' | 'warning' | 'correct' | 'blocked' | 'error';
5
5
  autoClose?: number;
6
+ showClose?: boolean;
6
7
  theme?: string;
7
8
  showControl?: boolean;
8
9
  once?: boolean;
package/dist/vfluent3.js CHANGED
@@ -11960,7 +11960,7 @@ function pm(e, i, t) {
11960
11960
  {
11961
11961
  status: i.status,
11962
11962
  showControl: i.showControl,
11963
- showClose: i.autoClose,
11963
+ showClose: i.showClose,
11964
11964
  mode: "fixed",
11965
11965
  autoClose: i.autoClose,
11966
11966
  destroy: () => {
@@ -12003,7 +12003,7 @@ const bm = {
12003
12003
  e.config.globalProperties.$barWarning = (i, t) => {
12004
12004
  pm(
12005
12005
  i,
12006
- { ...t, status: "warning" },
12006
+ { ...t },
12007
12007
  e._context
12008
12008
  );
12009
12009
  }, e.config.globalProperties.$swiftWarning = vm;