@taprootio/espalier 2.13.1 → 2.15.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/CHANGELOG.md +34 -0
- package/custom-elements.json +7051 -5344
- package/dist/date-picker/esp-date-picker.js +22 -22
- package/dist/flyout/esp-flyout.js +14 -14
- package/dist/font-picker/esp-font-picker.js +3 -3
- package/dist/form/esp-form.js +1 -1
- package/dist/grid/esp-grid.d.ts +4 -12
- package/dist/grid/esp-grid.js +5 -5
- package/dist/header/esp-header.js +7 -7
- package/dist/lightbox/esp-lightbox.js +16 -16
- package/dist/page/esp-page.d.ts +27 -14
- package/dist/page/esp-page.js +85 -33
- package/dist/page/workspace-width.js +1 -0
- package/dist/pickers/esp-pick-one.d.ts +9 -30
- package/dist/pickers/esp-pick-one.js +18 -50
- package/dist/pickers/esp-pick-some.d.ts +4 -29
- package/dist/pickers/esp-pick-some.js +15 -42
- package/dist/pickers/esp-picker-base.d.ts +95 -0
- package/dist/pickers/esp-picker-base.js +33 -1
- package/dist/pickers/esp-picker-menu.d.ts +0 -2
- package/dist/pickers/esp-picker-menu.js +6 -6
- package/dist/pickers/pick-one-selection.js +1 -0
- package/dist/popover/esp-popover.js +6 -6
- package/dist/repeater/esp-repeater.d.ts +11 -8
- package/dist/repeater/esp-repeater.js +4 -4
- package/dist/shared/color-engine.js +1 -1
- package/dist/shared/cursor-pagination.d.ts +76 -0
- package/dist/shared/cursor-pagination.js +1 -0
- package/dist/shared/intent-values.d.ts +13 -2
- package/dist/shared/intent-values.js +1 -1
- package/dist/shared/popover-controller.js +1 -1
- package/dist/shared/raf-throttle.js +1 -0
- package/dist/shared/utilities.d.ts +27 -27
- package/dist/shared/utilities.js +1 -1
- package/dist/shared/viewport.d.ts +89 -0
- package/dist/shared/viewport.js +1 -0
- package/package.json +9 -1
- package/dist/header/esp-menu-group.js +0 -1
- package/dist/header/esp-menu-item.js +0 -1
- package/dist/header/esp-menu.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,40 @@ here. This file ships in the published npm package. It is a curated public
|
|
|
5
5
|
record and intentionally does not mirror the private `taproot-controls`
|
|
6
6
|
development history.
|
|
7
7
|
|
|
8
|
+
## 2.14.0 — Stable workspace resizing and trailing-edge controls
|
|
9
|
+
|
|
10
|
+
- Yield a safely linked navigation rail after auxiliary panes contract and
|
|
11
|
+
before reclaiming main below its natural maximum, then retain the drawer
|
|
12
|
+
presentation whenever restoring the rail would change the settled workspace.
|
|
13
|
+
- Add a recovery margin so navigation settlement remains stable across repeated
|
|
14
|
+
layout observation and restores only after expansion or pane contraction can
|
|
15
|
+
preserve the main, preview, and help allocation.
|
|
16
|
+
- Keep the Main/Preview separator moving after main reaches its maximum by
|
|
17
|
+
shrinking preview independently and placing the released width in the aligned
|
|
18
|
+
outer canvas, including centered, keyboard, LTR, and RTL interactions.
|
|
19
|
+
- Keep separator ARIA accurate through the main-cap transition by capping its
|
|
20
|
+
numeric main range and announcing the changing preview width in value text.
|
|
21
|
+
- Keep viewport-height full-document help sticky while the application scrolls
|
|
22
|
+
through its footer, while compact contextual help continues to move with its
|
|
23
|
+
originating field, and add a dedicated full-page workspace documentation lab.
|
|
24
|
+
- Expose the trailing edge of the last in-grid Preview or Help pane as an
|
|
25
|
+
independent pointer and keyboard resize separator whenever outer canvas is
|
|
26
|
+
available, with public parts and resize-event separator identities.
|
|
27
|
+
- Extend the exported `PageWorkspaceSeparator` union with `"preview-end"` and
|
|
28
|
+
`"flyout-end"`; TypeScript consumers with exhaustive separator switches must
|
|
29
|
+
handle the two new trailing-edge identities.
|
|
30
|
+
- Let an outward edge drag consume the complete aligned outside canvas, so
|
|
31
|
+
reaching the page edge maximizes Preview or Help within its configured bound.
|
|
32
|
+
- Let Preview/Help consume trailing outside room before contraction, keeping
|
|
33
|
+
Help at its current width until it reaches the page edge. Main/Preview may
|
|
34
|
+
push the trailing group only while main can grow; a capped main instead
|
|
35
|
+
shrinks Preview immediately and releases aligned outside surplus, with
|
|
36
|
+
pointer tracking, centered settlement, keyboard access, and accurate value
|
|
37
|
+
text.
|
|
38
|
+
- Control the workspace's logical leading position during pointer resizing so
|
|
39
|
+
the active line follows the cursor through zero-sum and outward growth, then
|
|
40
|
+
smoothly return the completed workspace to its configured alignment.
|
|
41
|
+
|
|
8
42
|
## 2.13.1 — Workspace allocation and centering
|
|
9
43
|
|
|
10
44
|
- Honor an explicit finite `--esp-page-main-max-width` on `kind="full"` pages.
|