@authdog/react-elements 0.0.43 → 0.0.44

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @authdog/react-elements@0.0.43 build /home/runner/work/web-sdk/web-sdk/packages/react-elements
2
+ > @authdog/react-elements@0.0.44 build /home/runner/work/web-sdk/web-sdk/packages/react-elements
3
3
  > pnpm tsup && pnpm build:styles
4
4
 
5
5
  CLI Building entry: src/index.ts, src/lib/utils.ts, src/components/ui/alert.tsx, src/components/ui/avatar.tsx, src/components/ui/badge.tsx, src/components/ui/button.tsx, src/components/ui/card.tsx, src/components/ui/dropdown-menu.tsx, src/components/ui/input.tsx, src/components/ui/label.tsx, src/components/ui/separator.tsx, src/components/ui/sheet.tsx, src/components/ui/theme-toggle.tsx
@@ -10,9 +10,9 @@
10
10
  CLI Cleaning output folder
11
11
  ESM Build start
12
12
  CJS Build start
13
- ESM dist/components/ui/alert.mjs 1.19 KB
14
13
  ESM dist/index.mjs 32.11 KB
15
14
  ESM dist/lib/utils.mjs 166.00 B
15
+ ESM dist/components/ui/alert.mjs 1.19 KB
16
16
  ESM dist/components/ui/avatar.mjs 749.00 B
17
17
  ESM dist/components/ui/badge.mjs 1.34 KB
18
18
  ESM dist/components/ui/button.mjs 1.36 KB
@@ -23,9 +23,9 @@
23
23
  ESM dist/components/ui/separator.mjs 604.00 B
24
24
  ESM dist/components/ui/sheet.mjs 2.68 KB
25
25
  ESM dist/components/ui/theme-toggle.mjs 2.10 KB
26
- ESM dist/components/ui/alert.mjs.map 2.82 KB
27
26
  ESM dist/index.mjs.map 97.55 KB
28
27
  ESM dist/lib/utils.mjs.map 415.00 B
28
+ ESM dist/components/ui/alert.mjs.map 2.82 KB
29
29
  ESM dist/components/ui/avatar.mjs.map 2.12 KB
30
30
  ESM dist/components/ui/badge.mjs.map 2.62 KB
31
31
  ESM dist/components/ui/button.mjs.map 3.01 KB
@@ -36,7 +36,7 @@
36
36
  ESM dist/components/ui/separator.mjs.map 1.50 KB
37
37
  ESM dist/components/ui/sheet.mjs.map 6.49 KB
38
38
  ESM dist/components/ui/theme-toggle.mjs.map 5.51 KB
39
- ESM ⚡️ Build success in 447ms
39
+ ESM ⚡️ Build success in 405ms
40
40
  CJS dist/index.js 34.59 KB
41
41
  CJS dist/lib/utils.js 620.00 B
42
42
  CJS dist/components/ui/alert.js 1.65 KB
@@ -63,13 +63,13 @@
63
63
  CJS dist/components/ui/separator.js.map 1.63 KB
64
64
  CJS dist/components/ui/sheet.js.map 6.76 KB
65
65
  CJS dist/components/ui/theme-toggle.js.map 5.58 KB
66
- CJS ⚡️ Build success in 448ms
66
+ CJS ⚡️ Build success in 403ms
67
67
  DTS Build start
68
- DTS ⚡️ Build success in 15787ms
68
+ DTS ⚡️ Build success in 16624ms
69
69
  DTS dist/index.d.mts 3.73 KB
70
70
  DTS dist/index.d.ts 3.73 KB
71
71
 
72
- > @authdog/react-elements@0.0.43 build:styles /home/runner/work/web-sdk/web-sdk/packages/react-elements
72
+ > @authdog/react-elements@0.0.44 build:styles /home/runner/work/web-sdk/web-sdk/packages/react-elements
73
73
  > postcss src/global.css -o dist/styles.css
74
74
 
75
75
  Browserslist: browsers data (caniuse-lite) is 6 months old. Please run:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @authdog/react-elements
2
2
 
3
+ ## 0.0.44
4
+
5
+ ### Patch Changes
6
+
7
+ - cf3409c: add navbar with logo story
8
+
3
9
  ## 0.0.43
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authdog/react-elements",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.mts",
@@ -35,8 +35,8 @@
35
35
  "typescript": "5.7.3",
36
36
  "vite": "^5.0.0",
37
37
  "webpack": "^5.89.0",
38
- "@authdog/typescript-config": "0.0.0",
39
- "@authdog/eslint-config": "0.0.0"
38
+ "@authdog/eslint-config": "0.0.0",
39
+ "@authdog/typescript-config": "0.0.0"
40
40
  },
41
41
  "dependencies": {
42
42
  "@radix-ui/react-avatar": "^1.1.9",
@@ -43,3 +43,9 @@ export const Authenticated: Story = {
43
43
  user: demoUser,
44
44
  },
45
45
  };
46
+
47
+ export const WithLogo: Story = {
48
+ args: {
49
+ logoSrc: "https://dummyimage.com/64x64/111827/ffffff&text=AD",
50
+ },
51
+ };