@nr1e/qwik-ui 1.0.3 → 1.0.4

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.
@@ -7,6 +7,7 @@ const AddButton = qwik.component$((props) => {
7
7
  return /* @__PURE__ */ jsxRuntime.jsxs("button", {
8
8
  class: `btn ${props.class ?? ""}`,
9
9
  onClick$: props.onClick$,
10
+ id: props.id,
10
11
  children: [
11
12
  /* @__PURE__ */ jsxRuntime.jsx(qwikIcons.MdiAddCircleOutline, {
12
13
  size: 18
@@ -5,6 +5,7 @@ const AddButton = component$((props) => {
5
5
  return /* @__PURE__ */ jsxs("button", {
6
6
  class: `btn ${props.class ?? ""}`,
7
7
  onClick$: props.onClick$,
8
+ id: props.id,
8
9
  children: [
9
10
  /* @__PURE__ */ jsx(MdiAddCircleOutline, {
10
11
  size: 18
@@ -7,6 +7,7 @@ const GoogleSignInButton = qwik.component$((props) => {
7
7
  return /* @__PURE__ */ jsxRuntime.jsxs("button", {
8
8
  class: `btn ${props.class ?? ""}`,
9
9
  onClick$: props.onClick$,
10
+ id: props.id,
10
11
  children: [
11
12
  /* @__PURE__ */ jsxRuntime.jsx(qwikIcons.LogosGoogleIcon, {
12
13
  size: 18
@@ -5,6 +5,7 @@ const GoogleSignInButton = component$((props) => {
5
5
  return /* @__PURE__ */ jsxs("button", {
6
6
  class: `btn ${props.class ?? ""}`,
7
7
  onClick$: props.onClick$,
8
+ id: props.id,
8
9
  children: [
9
10
  /* @__PURE__ */ jsx(LogosGoogleIcon, {
10
11
  size: 18
@@ -7,6 +7,7 @@ const MicrosoftSignInButton = qwik.component$((props) => {
7
7
  return /* @__PURE__ */ jsxRuntime.jsxs("button", {
8
8
  class: `btn ${props.class ?? ""}`,
9
9
  onClick$: props.onClick$,
10
+ id: props.id,
10
11
  children: [
11
12
  /* @__PURE__ */ jsxRuntime.jsx(qwikIcons.LogosMicrosoftIcon, {
12
13
  size: 18
@@ -5,6 +5,7 @@ const MicrosoftSignInButton = component$((props) => {
5
5
  return /* @__PURE__ */ jsxs("button", {
6
6
  class: `btn ${props.class ?? ""}`,
7
7
  onClick$: props.onClick$,
8
+ id: props.id,
8
9
  children: [
9
10
  /* @__PURE__ */ jsx(LogosMicrosoftIcon, {
10
11
  size: 18
@@ -2,5 +2,6 @@ import { QRL } from '@builder.io/qwik';
2
2
  export interface AddButtonProps {
3
3
  class?: string;
4
4
  onClick$?: QRL<(event: Event) => void>;
5
+ id?: string;
5
6
  }
6
7
  export declare const AddButton: import("@builder.io/qwik").Component<AddButtonProps>;
@@ -2,5 +2,6 @@ import { QRL } from '@builder.io/qwik';
2
2
  export interface GoogleSignInButtonProps {
3
3
  class?: string;
4
4
  onClick$?: QRL<(event: Event) => void>;
5
+ id?: string;
5
6
  }
6
7
  export declare const GoogleSignInButton: import("@builder.io/qwik").Component<GoogleSignInButtonProps>;
@@ -2,5 +2,6 @@ import { QRL } from '@builder.io/qwik';
2
2
  export interface MicrosoftSignInButtonProps {
3
3
  class?: string;
4
4
  onClick$?: QRL<(event: Event) => void>;
5
+ id?: string;
5
6
  }
6
7
  export declare const MicrosoftSignInButton: import("@builder.io/qwik").Component<MicrosoftSignInButtonProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nr1e/qwik-ui",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "NR1E Qwik UI Library",
5
5
  "author": "NR1E, Inc.",
6
6
  "publishConfig": {
@@ -36,12 +36,12 @@
36
36
  "peerDependencies": {
37
37
  "@builder.io/qwik-city": "1.19.0",
38
38
  "tailwindcss-animated": "2.0.0",
39
- "@nr1e/qwik-icons": "0.0.25"
39
+ "@nr1e/qwik-icons": "0.0.31"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@builder.io/qwik": "1.19.0",
43
43
  "@eslint/js": "^9.39.3",
44
- "@tailwindcss/vite": "^4.2.0",
44
+ "@tailwindcss/vite": "^4.2.1",
45
45
  "@types/node": "^24.10.13",
46
46
  "daisyui": "^5.5.19",
47
47
  "eslint": "9.39.3",
@@ -50,9 +50,9 @@
50
50
  "np": "^11.0.2",
51
51
  "prettier": "3.8.1",
52
52
  "prettier-plugin-tailwindcss": "^0.7.1",
53
- "tailwindcss": "^4.2.0",
53
+ "tailwindcss": "^4.2.1",
54
54
  "typescript": "5.9.3",
55
- "typescript-eslint": "8.56.0",
55
+ "typescript-eslint": "8.56.1",
56
56
  "undici": "*",
57
57
  "vite": "7.3.1",
58
58
  "vite-tsconfig-paths": "^6.1.1",