randmarcomps 1.286.0 → 1.288.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.
package/dist/style.css CHANGED
@@ -122,3 +122,18 @@ body {
122
122
  @apply bg-background text-foreground;
123
123
  }
124
124
  }
125
+
126
+ @keyframes pulse-glow {
127
+ 0%, 100% {
128
+ transform: scale(1);
129
+ box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
130
+ }
131
+ 50% {
132
+ transform: scale(1.05);
133
+ box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
134
+ }
135
+ }
136
+
137
+ .pulse-glow {
138
+ animation: pulse-glow 2s infinite;
139
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "randmarcomps",
3
3
  "private": false,
4
- "version": "1.286.0",
4
+ "version": "1.288.0",
5
5
  "description": "The UI library enabling speed and consistency in Randmar frontends.",
6
6
  "type": "module",
7
7
  "files": [
@@ -107,7 +107,7 @@
107
107
  "lucide-react": "^0.479.0",
108
108
  "marked": "^15.0.8",
109
109
  "md5": "^2.3.0",
110
- "randmar-api-client": "^1.44.0",
110
+ "randmar-api-client": "^1.50.0",
111
111
  "react-hook-form": "^7.56.2",
112
112
  "react-intl": "^7.1.11",
113
113
  "react-jsx-parser": "^2.4.0",