@nr1e/qwik-ui 0.0.35 → 0.0.36

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.
@@ -42,7 +42,7 @@ const Dialog = qwik.component$((props) => {
42
42
  id: props.id,
43
43
  open: internalOpen.value,
44
44
  children: /* @__PURE__ */ jsxRuntime.jsxs("div", {
45
- class: "modal-box",
45
+ class: `modal-box ${props.modalBoxClass ?? ""}`,
46
46
  children: [
47
47
  props.showCloseIcon && /* @__PURE__ */ jsxRuntime.jsx("button", {
48
48
  class: "btn btn-sm btn-circle btn-ghost absolute top-1 right-1",
@@ -40,7 +40,7 @@ const Dialog = component$((props) => {
40
40
  id: props.id,
41
41
  open: internalOpen.value,
42
42
  children: /* @__PURE__ */ jsxs("div", {
43
- class: "modal-box",
43
+ class: `modal-box ${props.modalBoxClass ?? ""}`,
44
44
  children: [
45
45
  props.showCloseIcon && /* @__PURE__ */ jsx("button", {
46
46
  class: "btn btn-sm btn-circle btn-ghost absolute top-1 right-1",
@@ -4,6 +4,7 @@ export interface DialogProps {
4
4
  open: Signal<boolean>;
5
5
  showCloseIcon?: boolean;
6
6
  class?: string;
7
+ modalBoxClass?: string;
7
8
  title?: string;
8
9
  errorMessage?: string;
9
10
  infoMessage?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-ui",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "description": "NR1E Qwik UI Library",
5
5
  "author": "NR1E, Inc.",
6
6
  "publishConfig": {
@@ -40,11 +40,11 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@builder.io/qwik": "1.19.0",
43
- "@eslint/js": "^9.39.2",
43
+ "@eslint/js": "^9.39.3",
44
44
  "@tailwindcss/vite": "^4.2.0",
45
45
  "@types/node": "^24.10.13",
46
- "daisyui": "^5.5.18",
47
- "eslint": "9.39.2",
46
+ "daisyui": "^5.5.19",
47
+ "eslint": "9.39.3",
48
48
  "eslint-plugin-qwik": "1.19.0",
49
49
  "globals": "17.3.0",
50
50
  "np": "^11.0.2",