@nr1e/qwik-ui 0.0.6 → 0.0.7

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.
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
4
+ const qwik = require("@builder.io/qwik");
5
+ const mdiInformationOutline_qwik = require("../qwik-icons/lib/components/icons/mdi-information-outline.qwik.qwik.cjs");
6
+ const AlertInfo = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", {
8
+ role: "alert",
9
+ class: "alert alert-info",
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx(mdiInformationOutline_qwik.MdiInformationOutline, {
12
+ size: 24
13
+ }),
14
+ /* @__PURE__ */ jsxRuntime.jsx("span", {
15
+ children: props.message
16
+ })
17
+ ]
18
+ });
19
+ });
20
+ exports.AlertInfo = AlertInfo;
@@ -0,0 +1,20 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { MdiInformationOutline } from "../qwik-icons/lib/components/icons/mdi-information-outline.qwik.qwik.mjs";
4
+ const AlertInfo = component$((props) => {
5
+ return /* @__PURE__ */ jsxs("div", {
6
+ role: "alert",
7
+ class: "alert alert-info",
8
+ children: [
9
+ /* @__PURE__ */ jsx(MdiInformationOutline, {
10
+ size: 24
11
+ }),
12
+ /* @__PURE__ */ jsx("span", {
13
+ children: props.message
14
+ })
15
+ ]
16
+ });
17
+ });
18
+ export {
19
+ AlertInfo
20
+ };
@@ -1,11 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const alertError = require("./components/alert-error.qwik.cjs");
4
+ const alertInfo = require("./components/alert-info.qwik.cjs");
4
5
  const alertSuccess = require("./components/alert-success.qwik.cjs");
5
6
  const alertWarning = require("./components/alert-warning.qwik.cjs");
6
7
  const paceBar = require("./components/pace-bar.qwik.cjs");
7
8
  const universalLayout = require("./components/universal-layout.qwik.cjs");
8
9
  exports.AlertError = alertError.AlertError;
10
+ exports.AlertInfo = alertInfo.AlertInfo;
9
11
  exports.AlertSuccess = alertSuccess.AlertSuccess;
10
12
  exports.AlertWarning = alertWarning.AlertWarning;
11
13
  exports.PaceBar = paceBar.PaceBar;
@@ -1,10 +1,12 @@
1
1
  import { AlertError } from "./components/alert-error.qwik.mjs";
2
+ import { AlertInfo } from "./components/alert-info.qwik.mjs";
2
3
  import { AlertSuccess } from "./components/alert-success.qwik.mjs";
3
4
  import { AlertWarning } from "./components/alert-warning.qwik.mjs";
4
5
  import { PaceBar } from "./components/pace-bar.qwik.mjs";
5
6
  import { UniversalLayout } from "./components/universal-layout.qwik.mjs";
6
7
  export {
7
8
  AlertError,
9
+ AlertInfo,
8
10
  AlertSuccess,
9
11
  AlertWarning,
10
12
  PaceBar,
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
4
+ const qwik = require("@builder.io/qwik");
5
+ const svg_qwik = require("../svg.qwik.qwik.cjs");
6
+ const MdiInformationOutline = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsx(svg_qwik.Svg, {
8
+ ...props,
9
+ viewBox: "0 0 24 24",
10
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
11
+ fill: "currentColor",
12
+ d: "M11 9h2V7h-2m1 13c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10A10 10 0 0 0 12 2m-1 15h2v-6h-2z"
13
+ })
14
+ });
15
+ });
16
+ exports.MdiInformationOutline = MdiInformationOutline;
@@ -0,0 +1,16 @@
1
+ import { jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { Svg } from "../svg.qwik.qwik.mjs";
4
+ const MdiInformationOutline = component$((props) => {
5
+ return /* @__PURE__ */ jsx(Svg, {
6
+ ...props,
7
+ viewBox: "0 0 24 24",
8
+ children: /* @__PURE__ */ jsx("path", {
9
+ fill: "currentColor",
10
+ d: "M11 9h2V7h-2m1 13c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10A10 10 0 0 0 12 2m-1 15h2v-6h-2z"
11
+ })
12
+ });
13
+ });
14
+ export {
15
+ MdiInformationOutline
16
+ };
@@ -1,4 +1,5 @@
1
1
  export * from './components/alert-error';
2
+ export * from './components/alert-info';
2
3
  export * from './components/alert-success';
3
4
  export * from './components/alert-warning';
4
5
  export * from './components/pace-bar';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-ui",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "NR1E Qwik UI Library",
5
5
  "author": "NR1E, Inc.",
6
6
  "publishConfig": {