conversation-replay 0.1.18 → 0.1.20
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/cli.js +4 -17
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { createRequire } from "node:module";
|
|
3
|
-
var __create = Object.create;
|
|
4
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
5
|
-
var __defProp = Object.defineProperty;
|
|
6
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __toESM = (mod, isNodeMode, target) => {
|
|
9
|
-
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
10
|
-
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
11
|
-
for (let key of __getOwnPropNames(mod))
|
|
12
|
-
if (!__hasOwnProp.call(to, key))
|
|
13
|
-
__defProp(to, key, {
|
|
14
|
-
get: () => mod[key],
|
|
15
|
-
enumerable: true
|
|
16
|
-
});
|
|
17
|
-
return to;
|
|
18
|
-
};
|
|
19
3
|
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
20
4
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
21
5
|
|
|
@@ -7286,7 +7270,7 @@ import { writeFile } from "node:fs/promises";
|
|
|
7286
7270
|
// package.json
|
|
7287
7271
|
var package_default = {
|
|
7288
7272
|
name: "conversation-replay",
|
|
7289
|
-
version: "0.1.
|
|
7273
|
+
version: "0.1.20",
|
|
7290
7274
|
description: "Create annotated replays of text conversations",
|
|
7291
7275
|
main: "dist/cli.js",
|
|
7292
7276
|
type: "module",
|
|
@@ -7559,6 +7543,8 @@ function generateCss(theme, hasMultipleScenarios, colors, cornerStyle, initialBl
|
|
|
7559
7543
|
flex-shrink: 0;
|
|
7560
7544
|
scroll-snap-align: start;
|
|
7561
7545
|
white-space: nowrap;
|
|
7546
|
+
overflow: hidden;
|
|
7547
|
+
text-overflow: ellipsis;
|
|
7562
7548
|
}
|
|
7563
7549
|
|
|
7564
7550
|
.tab:hover {
|
|
@@ -8043,6 +8029,7 @@ function generateCss(theme, hasMultipleScenarios, colors, cornerStyle, initialBl
|
|
|
8043
8029
|
position: relative;
|
|
8044
8030
|
line-height: 1.6;
|
|
8045
8031
|
box-shadow: var(--shadow-sm);
|
|
8032
|
+
overflow-wrap: break-word;
|
|
8046
8033
|
}
|
|
8047
8034
|
|
|
8048
8035
|
/* Add subtle tails */
|