@arbidocs/cli 0.3.25 → 0.3.26
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/CHANGELOG.md +41 -0
- package/dist/index.js +159 -314
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.26
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.25...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Render doc IDs as entity pills in markdown and show translation badge in HTML viewer ([8876f52c](https://github.com/arbicity/ARBI-frontend/commit/8876f52c))
|
|
10
|
+
- Add copy button to Instant Translation badge to copy translated page text ([10c8aa05](https://github.com/arbicity/ARBI-frontend/commit/10c8aa05))
|
|
11
|
+
- Eagerly render all pages after initial load in HTML viewer ([41e730b7](https://github.com/arbicity/ARBI-frontend/commit/41e730b7))
|
|
12
|
+
- Add translation compare view with two-column original vs translated table ([4e9bc8a2](https://github.com/arbicity/ARBI-frontend/commit/4e9bc8a2))
|
|
13
|
+
- Render PassageEntity pill in compare table left column with deep link ([5bcfc8fd](https://github.com/arbicity/ARBI-frontend/commit/5bcfc8fd))
|
|
14
|
+
- Show DocumentEntity badge in docked tab, keep apply open in DocTagEditor ([bdf452cf](https://github.com/arbicity/ARBI-frontend/commit/bdf452cf))
|
|
15
|
+
- Add compact variant to PassageEntity showing page/passage ref with link and copy ([bc2c2f87](https://github.com/arbicity/ARBI-frontend/commit/bc2c2f87))
|
|
16
|
+
- Use rendered HTML and inline styles in translation comparison copy ([1259dcfa](https://github.com/arbicity/ARBI-frontend/commit/1259dcfa))
|
|
17
|
+
- Add document similarity grid to SmartSearch empty state ([f5a86c44](https://github.com/arbicity/ARBI-frontend/commit/f5a86c44))
|
|
18
|
+
|
|
19
|
+
### 🩹 Fixes
|
|
20
|
+
|
|
21
|
+
- Prevent spurious visibility notification when renaming workspace ([d757238b](https://github.com/arbicity/ARBI-frontend/commit/d757238b))
|
|
22
|
+
- Update translation badge text to 'Instant Translation' and right-align ([e13cda73](https://github.com/arbicity/ARBI-frontend/commit/e13cda73))
|
|
23
|
+
- Keep previously rendered pages in DOM when scrolling (never evict loaded pages) ([d19b67f0](https://github.com/arbicity/ARBI-frontend/commit/d19b67f0))
|
|
24
|
+
- Use requestIdleCallback to load remaining pages without blocking UI ([7cd19dd3](https://github.com/arbicity/ARBI-frontend/commit/7cd19dd3))
|
|
25
|
+
- Move translation badge outside hidden container, guard clipboard calls against crashes ([b685e5ea](https://github.com/arbicity/ARBI-frontend/commit/b685e5ea))
|
|
26
|
+
- Add grid lines to compare table, copy as TSV for proper spreadsheet pasting ([ee54f012](https://github.com/arbicity/ARBI-frontend/commit/ee54f012))
|
|
27
|
+
- Copy comparison table as HTML so it pastes as a proper table in Google Docs ([cfbc48ef](https://github.com/arbicity/ARBI-frontend/commit/cfbc48ef))
|
|
28
|
+
- Compact PassageEntity shows copy icon for deep link, no navigation ([0c550321](https://github.com/arbicity/ARBI-frontend/commit/0c550321))
|
|
29
|
+
- Pass passageIndex to compact PassageEntity in translation compare view ([41381038](https://github.com/arbicity/ARBI-frontend/commit/41381038))
|
|
30
|
+
- Use compact p.N(X) passage link in copied comparison table HTML ([d63abd44](https://github.com/arbicity/ARBI-frontend/commit/d63abd44))
|
|
31
|
+
- Remove overflow-auto from column editor modal and simplify columnDefs effect ([bd2c9794](https://github.com/arbicity/ARBI-frontend/commit/bd2c9794))
|
|
32
|
+
|
|
33
|
+
### 💅 Refactors
|
|
34
|
+
|
|
35
|
+
- Replace per-page translation badges with single floating badge that copies full translation ([dc93ecb4](https://github.com/arbicity/ARBI-frontend/commit/dc93ecb4))
|
|
36
|
+
- Single translation badge with unified copy button for both views ([ee503f9a](https://github.com/arbicity/ARBI-frontend/commit/ee503f9a))
|
|
37
|
+
- Remove claim-code delegation, simplify agent create + listen flow ([6f2febbb](https://github.com/arbicity/ARBI-frontend/commit/6f2febbb))
|
|
38
|
+
- Remove useAuthorizeSession and useClaimSession from arbi-react ([7336d41f](https://github.com/arbicity/ARBI-frontend/commit/7336d41f))
|
|
39
|
+
|
|
40
|
+
### 🏡 Chore
|
|
41
|
+
|
|
42
|
+
- Add test:integration script to root and CLI package ([ca76acd7](https://github.com/arbicity/ARBI-frontend/commit/ca76acd7))
|
|
43
|
+
|
|
3
44
|
## v0.3.25
|
|
4
45
|
|
|
5
46
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.24...HEAD)
|