@alpic-ai/ui 1.113.1 → 1.114.0

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.
@@ -6,7 +6,7 @@ import * as _$class_variance_authority_types0 from "class-variance-authority/typ
6
6
 
7
7
  //#region src/components/avatar.d.ts
8
8
  declare const avatarVariants: (props?: ({
9
- size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
9
+ size?: "sm" | "md" | "lg" | "xs" | "xl" | null | undefined;
10
10
  } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
11
11
  type AvatarSize = NonNullable<VariantProps<typeof avatarVariants>["size"]>;
12
12
  type AvatarStatus = "online";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/ui",
3
- "version": "1.113.1",
3
+ "version": "1.114.0",
4
4
  "description": "Alpic design system — shared UI components",
5
5
  "type": "module",
6
6
  "exports": {
@@ -64,7 +64,7 @@
64
64
  "shx": "^0.4.0",
65
65
  "sonner": "^2.0.7",
66
66
  "tailwindcss": "^4.2.2",
67
- "tsdown": "^0.21.7",
67
+ "tsdown": "^0.21.8",
68
68
  "tw-animate-css": "^1.4.0",
69
69
  "typescript": "^6.0.2"
70
70
  },
@@ -106,6 +106,8 @@
106
106
  /* animations */
107
107
  --animate-accordion-down: accordion-down 200ms ease-out;
108
108
  --animate-accordion-up: accordion-up 200ms ease-out;
109
+ --animate-beacon-ring-core: beacon-ring-core 2.2s ease-in-out infinite;
110
+ --animate-beacon-ring-pulse: beacon-ring-pulse 2.2s ease-in-out infinite;
109
111
  }
110
112
 
111
113
  @keyframes accordion-down {
@@ -126,6 +128,32 @@
126
128
  }
127
129
  }
128
130
 
131
+ @keyframes beacon-ring-core {
132
+ 0%,
133
+ 100% {
134
+ opacity: 0.55;
135
+ transform: scale(0.98);
136
+ }
137
+ 50% {
138
+ opacity: 0.85;
139
+ transform: scale(1.02);
140
+ }
141
+ }
142
+
143
+ @keyframes beacon-ring-pulse {
144
+ 0%,
145
+ 100% {
146
+ opacity: 0.88;
147
+ transform: scale(1);
148
+ filter: drop-shadow(0 0 0 rgba(59, 130, 246, 0));
149
+ }
150
+ 50% {
151
+ opacity: 1;
152
+ transform: scale(1.02);
153
+ filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.24));
154
+ }
155
+ }
156
+
129
157
  /* ─── Dark mode ───────────────────────────────────────────────────────────── */
130
158
 
131
159
  .dark {