@wakastellar/ui 3.3.0 → 3.3.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/dist/index.cjs.js +132 -132
- package/dist/index.es.js +7144 -6983
- package/dist/src/components/index.d.ts +1 -1
- package/package.json +1 -2
- package/src/blocks/footer/index.tsx +7 -1
- package/src/blocks/login/index.tsx +7 -1
- package/src/blocks/profile/index.tsx +5 -3
- package/src/components/index.ts +2 -1
|
@@ -252,7 +252,7 @@ export * from './waka-doc-nav';
|
|
|
252
252
|
export * from './waka-doc-search';
|
|
253
253
|
export * from './waka-doc-version';
|
|
254
254
|
export * from './waka-doc-toolbar';
|
|
255
|
-
export
|
|
255
|
+
export { WakaDocBreadcrumb, type WakaDocBreadcrumbProps } from './waka-doc-breadcrumb';
|
|
256
256
|
export * from './waka-doc-table';
|
|
257
257
|
export * from './waka-doc-renderer';
|
|
258
258
|
export * from './waka-hour-balance-badge';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wakastellar/ui",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.2",
|
|
4
4
|
"description": "Zero-config UI Library for Next.js with TweakCN theming and i18n support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -89,7 +89,6 @@
|
|
|
89
89
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
90
90
|
"@tanstack/react-table": "^8.21.3",
|
|
91
91
|
"@tanstack/react-virtual": "^3.13.23",
|
|
92
|
-
"@wakastellar/ui": "file:/Users/Cyprien/Workspace/wakastart/wakastart-ui/wakastellar-ui-3.1.0.tgz",
|
|
93
92
|
"chalk": "^5.6.2",
|
|
94
93
|
"class-variance-authority": "^0.7.1",
|
|
95
94
|
"clsx": "^2.1.1",
|
|
@@ -4,7 +4,13 @@ import * as React from "react"
|
|
|
4
4
|
import { cn } from "../../utils"
|
|
5
5
|
import { Button } from "../../components/button"
|
|
6
6
|
import { Separator } from "../../components/separator"
|
|
7
|
-
import {
|
|
7
|
+
import { GitHubLogoIcon } from "@radix-ui/react-icons"
|
|
8
|
+
import { Mail } from "lucide-react"
|
|
9
|
+
|
|
10
|
+
// Aliases for renamed/removed lucide icons
|
|
11
|
+
const Github = GitHubLogoIcon
|
|
12
|
+
const Twitter = (props: any) => <svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"/></svg>
|
|
13
|
+
const Linkedin = (props: any) => <svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"/><rect width="4" height="12" x="2" y="9"/><circle cx="4" cy="4" r="2"/></svg>
|
|
8
14
|
|
|
9
15
|
export interface FooterLink {
|
|
10
16
|
label: string
|
|
@@ -7,7 +7,13 @@ import { Input } from "../../components/input"
|
|
|
7
7
|
import { Label } from "../../components/label"
|
|
8
8
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "../../components/card"
|
|
9
9
|
import { Separator } from "../../components/separator"
|
|
10
|
-
import {
|
|
10
|
+
import { Mail, Apple } from "lucide-react"
|
|
11
|
+
|
|
12
|
+
// Inline SVG for renamed/removed lucide icons
|
|
13
|
+
const Github = (props: any) => <svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"/><path d="M9 18c-4.51 2-5-2-7-2"/></svg>
|
|
14
|
+
const Linkedin = (props: any) => <svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"/><rect width="4" height="12" x="2" y="9"/><circle cx="4" cy="4" r="2"/></svg>
|
|
15
|
+
const Facebook = (props: any) => <svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"/></svg>
|
|
16
|
+
const Instagram = (props: any) => <svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><rect width="20" height="20" x="2" y="2" rx="5" ry="5"/><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"/><line x1="17.5" x2="17.51" y1="6.5" y2="6.5"/></svg>
|
|
11
17
|
import { useTheme } from "../../context/theme-provider"
|
|
12
18
|
import type { LoginConfig } from "./types"
|
|
13
19
|
|
|
@@ -33,11 +33,13 @@ import {
|
|
|
33
33
|
X,
|
|
34
34
|
Loader2,
|
|
35
35
|
Link as LinkIcon,
|
|
36
|
-
Twitter,
|
|
37
|
-
Github,
|
|
38
|
-
Linkedin,
|
|
39
36
|
} from "lucide-react"
|
|
40
37
|
|
|
38
|
+
// Inline SVG for renamed/removed lucide icons
|
|
39
|
+
const Twitter = (props: any) => <svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"/></svg>
|
|
40
|
+
const Github = (props: any) => <svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"/><path d="M9 18c-4.51 2-5-2-7-2"/></svg>
|
|
41
|
+
const Linkedin = (props: any) => <svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"/><rect width="4" height="12" x="2" y="9"/><circle cx="4" cy="4" r="2"/></svg>
|
|
42
|
+
|
|
41
43
|
// ============================================
|
|
42
44
|
// TYPES
|
|
43
45
|
// ============================================
|
package/src/components/index.ts
CHANGED
|
@@ -716,7 +716,8 @@ export * from './waka-doc-nav'
|
|
|
716
716
|
export * from './waka-doc-search'
|
|
717
717
|
export * from './waka-doc-version'
|
|
718
718
|
export * from './waka-doc-toolbar'
|
|
719
|
-
|
|
719
|
+
// waka-doc-breadcrumb: BreadcrumbItem conflicts with waka-breadcrumb, re-export only the component
|
|
720
|
+
export { WakaDocBreadcrumb, type WakaDocBreadcrumbProps } from './waka-doc-breadcrumb'
|
|
720
721
|
export * from './waka-doc-table'
|
|
721
722
|
export * from './waka-doc-renderer'
|
|
722
723
|
|