@botpress/webchat 1.0.22 → 1.0.23
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/index.js +48 -12
- package/dist/index.umd.cjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -45387,7 +45387,7 @@ const GW = {
|
|
|
45387
45387
|
className: "aspect-square h-8 rounded-full"
|
|
45388
45388
|
},
|
|
45389
45389
|
fallback: {
|
|
45390
|
-
className: "flex h-
|
|
45390
|
+
className: "flex h-8 w-8 items-center justify-center rounded-full"
|
|
45391
45391
|
}
|
|
45392
45392
|
},
|
|
45393
45393
|
actions: {
|
|
@@ -45456,7 +45456,7 @@ const GW = {
|
|
|
45456
45456
|
className: "aspect-square h-full w-full"
|
|
45457
45457
|
},
|
|
45458
45458
|
fallback: {
|
|
45459
|
-
className: "flex h-
|
|
45459
|
+
className: "flex h-7 w-7 items-center justify-center rounded-full"
|
|
45460
45460
|
}
|
|
45461
45461
|
},
|
|
45462
45462
|
blocks: {
|
|
@@ -45480,9 +45480,6 @@ const GW = {
|
|
|
45480
45480
|
className: "list-decimal list-inside"
|
|
45481
45481
|
}
|
|
45482
45482
|
},
|
|
45483
|
-
button: {
|
|
45484
|
-
className: ""
|
|
45485
|
-
},
|
|
45486
45483
|
image: {
|
|
45487
45484
|
image: {
|
|
45488
45485
|
className: It(
|
|
@@ -45575,13 +45572,13 @@ const GW = {
|
|
|
45575
45572
|
dropdown: {
|
|
45576
45573
|
button: {
|
|
45577
45574
|
container: {
|
|
45578
|
-
className: "flex max-w-[80%] cursor-pointer items-center justify-between rounded-md p-2 truncate data-[disabled]:cursor-not-allowed"
|
|
45575
|
+
className: "group/dropdown flex max-w-[80%] cursor-pointer items-center justify-between rounded-md p-2 truncate data-[disabled]:cursor-not-allowed data-[disabled]:outline-none"
|
|
45579
45576
|
},
|
|
45580
45577
|
text: {
|
|
45581
45578
|
className: "truncate"
|
|
45582
45579
|
},
|
|
45583
45580
|
icon: {
|
|
45584
|
-
className: "ml-2 inline-block h-4 w-4"
|
|
45581
|
+
className: "ml-2 inline-block h-4 w-4 group-data-[disabled]/dropdown:hidden"
|
|
45585
45582
|
}
|
|
45586
45583
|
},
|
|
45587
45584
|
content: {
|
|
@@ -47760,6 +47757,24 @@ const _Z = US({
|
|
|
47760
47757
|
"group-hover:bg-opacity-80 group-hover:text-zinc-100"
|
|
47761
47758
|
)
|
|
47762
47759
|
}
|
|
47760
|
+
},
|
|
47761
|
+
dropdown: {
|
|
47762
|
+
button: {
|
|
47763
|
+
container: {
|
|
47764
|
+
className: "border border-zinc-600 bg-zinc-600 hover:border-zinc-500 data-[disabled]:text-zinc-400 text-zinc-50 data-[disabled]:hover:border-zinc-600"
|
|
47765
|
+
},
|
|
47766
|
+
icon: {
|
|
47767
|
+
className: "text-zinc-200"
|
|
47768
|
+
}
|
|
47769
|
+
},
|
|
47770
|
+
content: {
|
|
47771
|
+
container: {
|
|
47772
|
+
className: " bg-zinc-600 text-zinc-100"
|
|
47773
|
+
},
|
|
47774
|
+
item: {
|
|
47775
|
+
className: "transition-colors data-[active]:bg-zinc-500 data-[active]:text-zinc-50"
|
|
47776
|
+
}
|
|
47777
|
+
}
|
|
47763
47778
|
}
|
|
47764
47779
|
}
|
|
47765
47780
|
},
|
|
@@ -48216,7 +48231,7 @@ const _Z = US({
|
|
|
48216
48231
|
}
|
|
48217
48232
|
},
|
|
48218
48233
|
button: {
|
|
48219
|
-
className: "bg-blue-
|
|
48234
|
+
className: "bg-blue-200 hover:bg-blue-100 rounded-md p-1 text-sm px-3 text-blue-800 data-[activated]:hidden data-[group-activated]:hidden"
|
|
48220
48235
|
},
|
|
48221
48236
|
location: {
|
|
48222
48237
|
container: {
|
|
@@ -48253,6 +48268,24 @@ const _Z = US({
|
|
|
48253
48268
|
"group-hover:bg-opacity-80 group-hover:text-neutral-100"
|
|
48254
48269
|
)
|
|
48255
48270
|
}
|
|
48271
|
+
},
|
|
48272
|
+
dropdown: {
|
|
48273
|
+
button: {
|
|
48274
|
+
container: {
|
|
48275
|
+
className: "border border-neutral-600 bg-neutral-600 hover:border-neutral-500 data-[disabled]:text-neutral-400 text-neutral-50 data-[disabled]:hover:border-neutral-600"
|
|
48276
|
+
},
|
|
48277
|
+
icon: {
|
|
48278
|
+
className: "text-neutral-200"
|
|
48279
|
+
}
|
|
48280
|
+
},
|
|
48281
|
+
content: {
|
|
48282
|
+
container: {
|
|
48283
|
+
className: " bg-neutral-600 text-neutral-100"
|
|
48284
|
+
},
|
|
48285
|
+
item: {
|
|
48286
|
+
className: "transition-colors data-[active]:bg-neutral-500 data-[active]:text-neutral-50"
|
|
48287
|
+
}
|
|
48288
|
+
}
|
|
48256
48289
|
}
|
|
48257
48290
|
}
|
|
48258
48291
|
},
|
|
@@ -48439,7 +48472,7 @@ const _Z = US({
|
|
|
48439
48472
|
}
|
|
48440
48473
|
},
|
|
48441
48474
|
button: {
|
|
48442
|
-
className: "bg-blue-
|
|
48475
|
+
className: "bg-blue-200 hover:bg-blue-300 rounded-md p-1 text-sm px-3 text-blue-800 data-[activated]:hidden data-[group-activated]:hidden"
|
|
48443
48476
|
},
|
|
48444
48477
|
image: {
|
|
48445
48478
|
image: {
|
|
@@ -48477,8 +48510,8 @@ const _Z = US({
|
|
|
48477
48510
|
bubble: {
|
|
48478
48511
|
className: It(
|
|
48479
48512
|
"rounded-3xl",
|
|
48480
|
-
"group-data-[direction=outgoing]:bg-blue-
|
|
48481
|
-
"group-data-[direction=outgoing]:text-
|
|
48513
|
+
"group-data-[direction=outgoing]:bg-blue-600",
|
|
48514
|
+
"group-data-[direction=outgoing]:text-white",
|
|
48482
48515
|
"group-data-[direction=outgoing]:rounded-br-md",
|
|
48483
48516
|
"group-data-[direction=incoming]:rounded-bl-md",
|
|
48484
48517
|
"group-data-[direction=incoming]:bg-gray-100",
|
|
@@ -48503,7 +48536,10 @@ const _Z = US({
|
|
|
48503
48536
|
dropdown: {
|
|
48504
48537
|
button: {
|
|
48505
48538
|
container: {
|
|
48506
|
-
className: "border border-gray-200 bg-white hover:border-gray-300 data-[disabled]:
|
|
48539
|
+
className: "border border-gray-200 bg-white hover:border-gray-300 data-[disabled]:text-gray-400 text-gray-800 data-[disabled]:hover:border-gray-200"
|
|
48540
|
+
},
|
|
48541
|
+
icon: {
|
|
48542
|
+
className: "text-gray-700"
|
|
48507
48543
|
}
|
|
48508
48544
|
},
|
|
48509
48545
|
content: {
|