@webskill/chatbot 0.10.0 → 0.12.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/chatbot.css +5 -6
- package/dist/index.d.ts +777 -584
- package/dist/index.js +306 -99
- package/package.json +2 -2
package/dist/chatbot.css
CHANGED
|
@@ -1170,9 +1170,6 @@
|
|
|
1170
1170
|
.pb-1 {
|
|
1171
1171
|
padding-bottom: var(--spacing);
|
|
1172
1172
|
}
|
|
1173
|
-
.pb-2 {
|
|
1174
|
-
padding-bottom: calc(var(--spacing) * 2);
|
|
1175
|
-
}
|
|
1176
1173
|
.pb-3 {
|
|
1177
1174
|
padding-bottom: calc(var(--spacing) * 3);
|
|
1178
1175
|
}
|
|
@@ -2463,11 +2460,12 @@
|
|
|
2463
2460
|
overflow: hidden;
|
|
2464
2461
|
}
|
|
2465
2462
|
.webskill-surface__table-scroll {
|
|
2466
|
-
max-height: 22.5rem;
|
|
2467
|
-
overflow: auto;
|
|
2468
2463
|
border-inline: 0;
|
|
2469
2464
|
border-radius: 0;
|
|
2470
2465
|
}
|
|
2466
|
+
.webskill-surface__table-scroll > [data-radix-scroll-area-viewport] {
|
|
2467
|
+
max-height: 22.5rem;
|
|
2468
|
+
}
|
|
2471
2469
|
[data-webskill-data-table] {
|
|
2472
2470
|
container-type: inline-size;
|
|
2473
2471
|
container-name: webskill-table;
|
|
@@ -2485,7 +2483,8 @@
|
|
|
2485
2483
|
position: sticky;
|
|
2486
2484
|
z-index: var(--webskill-z-sticky);
|
|
2487
2485
|
top: 0;
|
|
2488
|
-
background: var(--color-
|
|
2486
|
+
background-color: var(--color-surface);
|
|
2487
|
+
background-image: linear-gradient(var(--color-subtle), var(--color-subtle));
|
|
2489
2488
|
}
|
|
2490
2489
|
.webskill-surface__table-header th, .webskill-surface__table-body td {
|
|
2491
2490
|
min-width: var(--webskill-table-min-col, 8rem);
|