@signal24/vue-foundation 4.3.4 → 4.3.5

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.
@@ -131,6 +131,8 @@ async function Tn(e, t) {
131
131
  function On(e, t) {
132
132
  const n = we(R, {
133
133
  ...N(e, t),
134
+ isBare: !0,
135
+ classes: ["wait"],
134
136
  callback: () => {
135
137
  }
136
138
  });
@@ -314,7 +316,7 @@ const ut = ["innerHtml"], ht = ["innerText"], R = /* @__PURE__ */ D({
314
316
  ]),
315
317
  _: 2
316
318
  }, [
317
- !i.isBare && i.title ? {
319
+ i.title ? {
318
320
  name: "header",
319
321
  fn: j(() => [
320
322
  y("h1", null, M(i.title), 1)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@signal24/vue-foundation",
3
3
  "type": "module",
4
- "version": "4.3.4",
4
+ "version": "4.3.5",
5
5
  "description": "Common components, directives, and helpers for Vue 3 apps",
6
6
  "module": "./dist/vue-foundation.es.js",
7
7
  "bin": {
@@ -39,6 +39,8 @@ export function showWait(message: string): () => void;
39
39
  export function showWait(titleOrMessage: string, message?: string): () => void {
40
40
  const injection = createModalInjection(AlertModal, {
41
41
  ...resolveAlertParams(titleOrMessage, message),
42
+ isBare: true,
43
+ classes: ['wait'],
42
44
  callback: () => {}
43
45
  });
44
46
  return () => removeModalInjection(injection);
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <Modal class="vf-alert" :class="classes">
3
- <template v-if="!isBare && title" v-slot:header>
3
+ <template v-if="title" v-slot:header>
4
4
  <h1>{{ title }}</h1>
5
5
  </template>
6
6