urasoft-live-support 1.1.21 → 1.1.22
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/core/ChatWidget.d.ts.map +1 -1
- package/dist/index.esm.js +12 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/dist/styles.css +36 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -129,6 +129,42 @@
|
|
|
129
129
|
transform: scale(1.02);
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
+
/* ==================== BUTTON TYPING INDICATOR ==================== */
|
|
133
|
+
.chat-widget-button.chat-button-typing {
|
|
134
|
+
animation: buttonTypingPulse 1.5s ease-in-out infinite;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.chat-widget-button.chat-button-typing::after {
|
|
138
|
+
content: '';
|
|
139
|
+
position: absolute;
|
|
140
|
+
bottom: -2px;
|
|
141
|
+
left: 50%;
|
|
142
|
+
transform: translateX(-50%);
|
|
143
|
+
display: flex;
|
|
144
|
+
width: 28px;
|
|
145
|
+
height: 12px;
|
|
146
|
+
background: var(--surface, #fff);
|
|
147
|
+
border-radius: 6px;
|
|
148
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
|
|
149
|
+
background-image:
|
|
150
|
+
radial-gradient(circle 3px at 7px 6px, var(--primary, #f59e0b) 99%, transparent),
|
|
151
|
+
radial-gradient(circle 3px at 14px 6px, var(--primary, #f59e0b) 99%, transparent),
|
|
152
|
+
radial-gradient(circle 3px at 21px 6px, var(--primary, #f59e0b) 99%, transparent);
|
|
153
|
+
background-size: 28px 12px;
|
|
154
|
+
background-repeat: no-repeat;
|
|
155
|
+
animation: buttonDotsAnimation 1.4s ease-in-out infinite;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
@keyframes buttonTypingPulse {
|
|
159
|
+
0%, 100% { box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
|
|
160
|
+
50% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.7), 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
@keyframes buttonDotsAnimation {
|
|
164
|
+
0%, 100% { opacity: 0.5; }
|
|
165
|
+
50% { opacity: 1; }
|
|
166
|
+
}
|
|
167
|
+
|
|
132
168
|
/* ==================== CHAT WINDOW ==================== */
|
|
133
169
|
.chat-window {
|
|
134
170
|
width: 380px;
|
package/package.json
CHANGED