@afncdelacru/brady-chat 0.3.2 → 0.3.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@afncdelacru/brady-chat",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Brady AI chat sidebar component and context for AFN recruiting experiences.",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -32,6 +32,6 @@
|
|
|
32
32
|
"afn"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@afncdelacru/brady-chat": "^0.3.
|
|
35
|
+
"@afncdelacru/brady-chat": "^0.3.3"
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -118,7 +118,8 @@ export function LeadershipCallForm({ onSubmit, onCancel }: LeadershipCallFormPro
|
|
|
118
118
|
type="date"
|
|
119
119
|
value={formData.preferredDate}
|
|
120
120
|
onChange={(e) => setFormData({ ...formData, preferredDate: e.target.value })}
|
|
121
|
-
className="w-full pl-12 pr-4 py-2.5 bg-white dark:bg-zinc-900 border border-zinc-300 dark:border-zinc-700 rounded-lg text-zinc-900 dark:text-white text-sm focus:border-[#8B5CF6] focus:outline-none transition-colors"
|
|
121
|
+
className="w-full min-w-0 max-w-full pl-12 pr-4 py-2.5 bg-white dark:bg-zinc-900 border border-zinc-300 dark:border-zinc-700 rounded-lg text-zinc-900 dark:text-white text-sm focus:border-[#8B5CF6] focus:outline-none transition-colors overflow-x-auto"
|
|
122
|
+
style={{ WebkitOverflowScrolling: 'touch' }}
|
|
122
123
|
/>
|
|
123
124
|
</div>
|
|
124
125
|
<div className="relative">
|