@nr1e/qwik-ui 0.1.1 → 0.1.2
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.
- package/lib/components/alert-error.qwik.cjs +2 -2
- package/lib/components/alert-error.qwik.mjs +2 -2
- package/lib/components/alert-info.qwik.cjs +2 -2
- package/lib/components/alert-info.qwik.mjs +2 -2
- package/lib/components/alert-success.qwik.cjs +2 -2
- package/lib/components/alert-success.qwik.mjs +2 -2
- package/lib/components/alert-warning.qwik.cjs +2 -2
- package/lib/components/alert-warning.qwik.mjs +2 -2
- package/package.json +1 -1
|
@@ -6,10 +6,10 @@ const qwikIcons = require("@nr1e/qwik-icons");
|
|
|
6
6
|
const AlertError = qwik.component$((props) => {
|
|
7
7
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
8
8
|
role: "alert",
|
|
9
|
-
class: "alert alert-error",
|
|
9
|
+
class: "alert alert-error text-error-content",
|
|
10
10
|
children: [
|
|
11
11
|
/* @__PURE__ */ jsxRuntime.jsx(qwikIcons.MdiErrorOutline, {
|
|
12
|
-
size:
|
|
12
|
+
size: 18
|
|
13
13
|
}),
|
|
14
14
|
/* @__PURE__ */ jsxRuntime.jsx("span", {
|
|
15
15
|
children: props.message
|
|
@@ -4,10 +4,10 @@ import { MdiErrorOutline } from "@nr1e/qwik-icons";
|
|
|
4
4
|
const AlertError = component$((props) => {
|
|
5
5
|
return /* @__PURE__ */ jsxs("div", {
|
|
6
6
|
role: "alert",
|
|
7
|
-
class: "alert alert-error",
|
|
7
|
+
class: "alert alert-error text-error-content",
|
|
8
8
|
children: [
|
|
9
9
|
/* @__PURE__ */ jsx(MdiErrorOutline, {
|
|
10
|
-
size:
|
|
10
|
+
size: 18
|
|
11
11
|
}),
|
|
12
12
|
/* @__PURE__ */ jsx("span", {
|
|
13
13
|
children: props.message
|
|
@@ -6,10 +6,10 @@ const qwikIcons = require("@nr1e/qwik-icons");
|
|
|
6
6
|
const AlertInfo = qwik.component$((props) => {
|
|
7
7
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
8
8
|
role: "alert",
|
|
9
|
-
class: "alert alert-info",
|
|
9
|
+
class: "alert alert-info text-info-content",
|
|
10
10
|
children: [
|
|
11
11
|
/* @__PURE__ */ jsxRuntime.jsx(qwikIcons.MdiInformationOutline, {
|
|
12
|
-
size:
|
|
12
|
+
size: 18
|
|
13
13
|
}),
|
|
14
14
|
/* @__PURE__ */ jsxRuntime.jsx("span", {
|
|
15
15
|
children: props.message
|
|
@@ -4,10 +4,10 @@ import { MdiInformationOutline } from "@nr1e/qwik-icons";
|
|
|
4
4
|
const AlertInfo = component$((props) => {
|
|
5
5
|
return /* @__PURE__ */ jsxs("div", {
|
|
6
6
|
role: "alert",
|
|
7
|
-
class: "alert alert-info",
|
|
7
|
+
class: "alert alert-info text-info-content",
|
|
8
8
|
children: [
|
|
9
9
|
/* @__PURE__ */ jsx(MdiInformationOutline, {
|
|
10
|
-
size:
|
|
10
|
+
size: 18
|
|
11
11
|
}),
|
|
12
12
|
/* @__PURE__ */ jsx("span", {
|
|
13
13
|
children: props.message
|
|
@@ -6,10 +6,10 @@ const qwikIcons = require("@nr1e/qwik-icons");
|
|
|
6
6
|
const AlertSuccess = qwik.component$((props) => {
|
|
7
7
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
8
8
|
role: "alert",
|
|
9
|
-
class: "alert alert-success",
|
|
9
|
+
class: "alert alert-success text-success-content",
|
|
10
10
|
children: [
|
|
11
11
|
/* @__PURE__ */ jsxRuntime.jsx(qwikIcons.MdiCheckCircleOutline, {
|
|
12
|
-
size:
|
|
12
|
+
size: 18
|
|
13
13
|
}),
|
|
14
14
|
/* @__PURE__ */ jsxRuntime.jsx("span", {
|
|
15
15
|
children: props.message
|
|
@@ -4,10 +4,10 @@ import { MdiCheckCircleOutline } from "@nr1e/qwik-icons";
|
|
|
4
4
|
const AlertSuccess = component$((props) => {
|
|
5
5
|
return /* @__PURE__ */ jsxs("div", {
|
|
6
6
|
role: "alert",
|
|
7
|
-
class: "alert alert-success",
|
|
7
|
+
class: "alert alert-success text-success-content",
|
|
8
8
|
children: [
|
|
9
9
|
/* @__PURE__ */ jsx(MdiCheckCircleOutline, {
|
|
10
|
-
size:
|
|
10
|
+
size: 18
|
|
11
11
|
}),
|
|
12
12
|
/* @__PURE__ */ jsx("span", {
|
|
13
13
|
children: props.message
|
|
@@ -6,10 +6,10 @@ const qwikIcons = require("@nr1e/qwik-icons");
|
|
|
6
6
|
const AlertWarning = qwik.component$((props) => {
|
|
7
7
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
8
8
|
role: "alert",
|
|
9
|
-
class: "alert alert-warning",
|
|
9
|
+
class: "alert alert-warning text-warning-content",
|
|
10
10
|
children: [
|
|
11
11
|
/* @__PURE__ */ jsxRuntime.jsx(qwikIcons.MdiWarningOutline, {
|
|
12
|
-
size:
|
|
12
|
+
size: 18
|
|
13
13
|
}),
|
|
14
14
|
/* @__PURE__ */ jsxRuntime.jsx("span", {
|
|
15
15
|
children: props.message
|
|
@@ -4,10 +4,10 @@ import { MdiWarningOutline } from "@nr1e/qwik-icons";
|
|
|
4
4
|
const AlertWarning = component$((props) => {
|
|
5
5
|
return /* @__PURE__ */ jsxs("div", {
|
|
6
6
|
role: "alert",
|
|
7
|
-
class: "alert alert-warning",
|
|
7
|
+
class: "alert alert-warning text-warning-content",
|
|
8
8
|
children: [
|
|
9
9
|
/* @__PURE__ */ jsx(MdiWarningOutline, {
|
|
10
|
-
size:
|
|
10
|
+
size: 18
|
|
11
11
|
}),
|
|
12
12
|
/* @__PURE__ */ jsx("span", {
|
|
13
13
|
children: props.message
|