release: WRNexusJS 0.6.0

This commit is contained in:
2026-08-01 01:09:58 +05:30
parent 3e565e8d03
commit 687d345882
502 changed files with 33038 additions and 11358 deletions
+24 -21
View File
@@ -1,29 +1,32 @@
component Avatar {
outputs {
load(payload: { sourceEvent?: Event; [key: string]: string | number | boolean | null | object })
error(payload: { error: Error | string; sourceEvent?: Event; [key: string]: string | number | boolean | null | object } | Error | string)
click(payload: { sourceEvent?: Event; [key: string]: string | number | boolean | null | object })
}
props {
@event load = function
@event error = function
@event click = function
src = ""
alt = ""
initials = ""
size = "md"
color = "primary"
variant = "solid"
shape = "circle"
src: string = ""
alt: string = ""
initials: string = ""
size: string = "md"
color: string = "primary"
variant: string = "solid"
shape: string = "circle"
status = ""
statusLabel = ""
statusPosition = "bottom"
status: string = ""
statusLabel: string = ""
statusPosition: string = "bottom"
badge = ""
badgeIcon = ""
badgeLabel = ""
badge: string = ""
badgeIcon: string = ""
badgeLabel: string = ""
tooltip = ""
name = ""
description = ""
loading = "lazy"
class = ""
tooltip: string = ""
name: string = ""
description: string = ""
loading: string = "lazy"
class: string = ""
}
view {