@nr1e/qwik-ui 0.0.39 → 0.0.41

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,18 @@
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 qwikIcons = require("@nr1e/qwik-icons");
6
+ const GoogleSignInButton = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs("button", {
8
+ class: `btn ${props.class ?? ""}`,
9
+ onClick$: props.onClick$,
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx(qwikIcons.LogosGoogleIcon, {
12
+ size: 18
13
+ }),
14
+ "Sign in with Google"
15
+ ]
16
+ });
17
+ });
18
+ exports.GoogleSignInButton = GoogleSignInButton;
@@ -0,0 +1,18 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { LogosGoogleIcon } from "@nr1e/qwik-icons";
4
+ const GoogleSignInButton = component$((props) => {
5
+ return /* @__PURE__ */ jsxs("button", {
6
+ class: `btn ${props.class ?? ""}`,
7
+ onClick$: props.onClick$,
8
+ children: [
9
+ /* @__PURE__ */ jsx(LogosGoogleIcon, {
10
+ size: 18
11
+ }),
12
+ "Sign in with Google"
13
+ ]
14
+ });
15
+ });
16
+ export {
17
+ GoogleSignInButton
18
+ };
@@ -51,7 +51,7 @@ const Submenu = qwik.component$((props) => {
51
51
  });
52
52
  const MenuDivider = qwik.component$((props) => {
53
53
  return /* @__PURE__ */ jsxRuntime.jsx("li", {
54
- class: `divider ${props?.class ?? ""}`
54
+ class: `divider h-px ${props?.class ?? ""}`
55
55
  });
56
56
  });
57
57
  const Menu = qwik.component$((props) => {
@@ -49,7 +49,7 @@ const Submenu = component$((props) => {
49
49
  });
50
50
  const MenuDivider = component$((props) => {
51
51
  return /* @__PURE__ */ jsx("li", {
52
- class: `divider ${props?.class ?? ""}`
52
+ class: `divider h-px ${props?.class ?? ""}`
53
53
  });
54
54
  });
55
55
  const Menu = component$((props) => {
@@ -0,0 +1,18 @@
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 qwikIcons = require("@nr1e/qwik-icons");
6
+ const MicrosoftSignInButton = qwik.component$((props) => {
7
+ return /* @__PURE__ */ jsxRuntime.jsxs("button", {
8
+ class: `btn ${props.class ?? ""}`,
9
+ onClick$: props.onClick$,
10
+ children: [
11
+ /* @__PURE__ */ jsxRuntime.jsx(qwikIcons.LogosMicrosoftIcon, {
12
+ size: 18
13
+ }),
14
+ "Sign in with Google"
15
+ ]
16
+ });
17
+ });
18
+ exports.MicrosoftSignInButton = MicrosoftSignInButton;
@@ -0,0 +1,18 @@
1
+ import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
2
+ import { component$ } from "@builder.io/qwik";
3
+ import { LogosMicrosoftIcon } from "@nr1e/qwik-icons";
4
+ const MicrosoftSignInButton = component$((props) => {
5
+ return /* @__PURE__ */ jsxs("button", {
6
+ class: `btn ${props.class ?? ""}`,
7
+ onClick$: props.onClick$,
8
+ children: [
9
+ /* @__PURE__ */ jsx(LogosMicrosoftIcon, {
10
+ size: 18
11
+ }),
12
+ "Sign in with Google"
13
+ ]
14
+ });
15
+ });
16
+ export {
17
+ MicrosoftSignInButton
18
+ };
@@ -9,8 +9,10 @@ const autoDismiss = require("./components/auto-dismiss.qwik.cjs");
9
9
  const checkboxField = require("./components/checkbox-field.qwik.cjs");
10
10
  const dialog = require("./components/dialog.qwik.cjs");
11
11
  const dropUp = require("./components/drop-up.qwik.cjs");
12
+ const googleSignInButton = require("./components/google-sign-in-button.qwik.cjs");
12
13
  const gtm = require("./components/gtm.qwik.cjs");
13
14
  const menu = require("./components/menu.qwik.cjs");
15
+ const microsoftSignInButton = require("./components/microsoft-sign-in-button.qwik.cjs");
14
16
  const paceBar = require("./components/pace-bar.qwik.cjs");
15
17
  const selectField = require("./components/select-field.qwik.cjs");
16
18
  const textField = require("./components/text-field.qwik.cjs");
@@ -27,6 +29,7 @@ exports.DropUp = dropUp.DropUp;
27
29
  exports.DropUpButtonSelector = dropUp.DropUpButtonSelector;
28
30
  exports.DropUpItem = dropUp.DropUpItem;
29
31
  exports.DropUpSubmenu = dropUp.DropUpSubmenu;
32
+ exports.GoogleSignInButton = googleSignInButton.GoogleSignInButton;
30
33
  exports.GtmBody = gtm.GtmBody;
31
34
  exports.GtmHead = gtm.GtmHead;
32
35
  exports.Menu = menu.Menu;
@@ -35,6 +38,7 @@ exports.MenuGroup = menu.MenuGroup;
35
38
  exports.MenuGroupSummary = menu.MenuGroupSummary;
36
39
  exports.MenuItem = menu.MenuItem;
37
40
  exports.Submenu = menu.Submenu;
41
+ exports.MicrosoftSignInButton = microsoftSignInButton.MicrosoftSignInButton;
38
42
  exports.PaceBar = paceBar.PaceBar;
39
43
  exports.SelectField = selectField.SelectField;
40
44
  exports.TextField = textField.TextField;
@@ -7,8 +7,10 @@ import { AutoDismiss } from "./components/auto-dismiss.qwik.mjs";
7
7
  import { CheckboxField } from "./components/checkbox-field.qwik.mjs";
8
8
  import { Dialog } from "./components/dialog.qwik.mjs";
9
9
  import { DropUp, DropUpButtonSelector, DropUpItem, DropUpSubmenu } from "./components/drop-up.qwik.mjs";
10
+ import { GoogleSignInButton } from "./components/google-sign-in-button.qwik.mjs";
10
11
  import { GtmBody, GtmHead } from "./components/gtm.qwik.mjs";
11
12
  import { Menu, MenuDivider, MenuGroup, MenuGroupSummary, MenuItem, Submenu } from "./components/menu.qwik.mjs";
13
+ import { MicrosoftSignInButton } from "./components/microsoft-sign-in-button.qwik.mjs";
12
14
  import { PaceBar } from "./components/pace-bar.qwik.mjs";
13
15
  import { SelectField } from "./components/select-field.qwik.mjs";
14
16
  import { TextField } from "./components/text-field.qwik.mjs";
@@ -26,6 +28,7 @@ export {
26
28
  DropUpButtonSelector,
27
29
  DropUpItem,
28
30
  DropUpSubmenu,
31
+ GoogleSignInButton,
29
32
  GtmBody,
30
33
  GtmHead,
31
34
  Menu,
@@ -33,6 +36,7 @@ export {
33
36
  MenuGroup,
34
37
  MenuGroupSummary,
35
38
  MenuItem,
39
+ MicrosoftSignInButton,
36
40
  PaceBar,
37
41
  SelectField,
38
42
  Submenu,
@@ -0,0 +1,6 @@
1
+ import { QRL } from '@builder.io/qwik';
2
+ export interface GoogleSignInButtonProps {
3
+ class?: string;
4
+ onClick$?: QRL<(event: Event) => void>;
5
+ }
6
+ export declare const GoogleSignInButton: import("@builder.io/qwik").Component<GoogleSignInButtonProps>;
@@ -0,0 +1,6 @@
1
+ import { QRL } from '@builder.io/qwik';
2
+ export interface MicrosoftSignInButtonProps {
3
+ class?: string;
4
+ onClick$?: QRL<(event: Event) => void>;
5
+ }
6
+ export declare const MicrosoftSignInButton: import("@builder.io/qwik").Component<MicrosoftSignInButtonProps>;
@@ -7,8 +7,10 @@ export * from './components/auto-dismiss';
7
7
  export * from './components/checkbox-field';
8
8
  export * from './components/dialog';
9
9
  export * from './components/drop-up';
10
+ export * from './components/google-sign-in-button';
10
11
  export * from './components/gtm';
11
12
  export * from './components/menu';
13
+ export * from './components/microsoft-sign-in-button';
12
14
  export * from './components/pace-bar';
13
15
  export * from './components/select-field';
14
16
  export * from './components/text-field';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-ui",
3
- "version": "0.0.39",
3
+ "version": "0.0.41",
4
4
  "description": "NR1E Qwik UI Library",
5
5
  "author": "NR1E, Inc.",
6
6
  "publishConfig": {