Skip to content

Commit 39ebbea

Browse files
chore: version packages
1 parent 13ca334 commit 39ebbea

21 files changed

Lines changed: 122 additions & 54 deletions

.changeset/codegen-assert-events.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/codegen-public-export.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/cursor-on-by-default.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/generator-initial-release.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.changeset/select-text-primitive.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

apps/web/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @humanjs/web
22

3+
## 0.0.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [13ca334]
8+
- @humanjs/core@0.8.0
9+
310
## 0.0.5
411

512
### Patch Changes

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanjs/web",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"private": true,
55
"description": "humanjs.dev landing page",
66
"type": "module",

examples/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @humanjs/examples
22

3+
## 0.0.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [39d87f3]
8+
- Updated dependencies [39d87f3]
9+
- Updated dependencies [39d87f3]
10+
- Updated dependencies [13ca334]
11+
- @humanjs/playwright@0.9.0
12+
- @humanjs/recorder@0.3.2
13+
314
## 0.0.7
415

516
### Patch Changes

examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanjs/examples",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"private": true,
55
"description": "Runnable demos for HumanJS.",
66
"type": "module",

packages/core/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @humanjs/core
22

3+
## 0.8.0
4+
5+
### Minor Changes
6+
7+
- 13ca334: Add `human.selectText(target, options?)` — highlight text inside an element. The cursor moves to the element (humanized), then the text is selected — the "select this" gesture before copying, replacing, or triggering a highlight menu. Selects the element's whole text by default; pass `{ text }` to select just that substring, located inside the element whitespace-tolerantly and mapped to exact offsets (first match, falling back to the whole element if not found) — so it's reproduced by the text itself, not brittle coordinates. In `speed: 'instant'` the cursor motion is skipped; the selection is still applied.
8+
9+
Mirrored as the **`human_selectText`** MCP tool (with the optional `text` arg), rendered by the recorder code generators (`toPlaywright` / `toHumanJS`), documented in the `@humanjs/skill` primitives table, and backed by a new `'selectText'` `KnownActionType` in `@humanjs/core`. `@humanjs/generator` captures the gesture too: highlighting an element's whole text records a plain `selectText`, and highlighting part of it records `selectText(target, { text })` with the exact substring.
10+
311
## 0.7.0
412

513
### Minor Changes

0 commit comments

Comments
 (0)