@featherk/composables 0.5.0 → 0.5.1
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/README.md
CHANGED
|
@@ -41,15 +41,15 @@ import {
|
|
|
41
41
|
## Composables Overview
|
|
42
42
|
|
|
43
43
|
- **Grid**: `useGridA11y` — Accessible row-level navigation and column menu keyboard support.
|
|
44
|
-
- Guide: [docs/grid/useGridA11y.md](
|
|
44
|
+
- Guide: [docs/grid/useGridA11y.md](https://github.com/NantHealth/featherk/blob/integration/packages/composables/docs/grid/useGridA11y.md)
|
|
45
45
|
- **Date**: `useMaskedDateInput` — Masked single-date input with steppers and validation.
|
|
46
|
-
- Guide: [docs/date/useMaskedDateInput.md](
|
|
46
|
+
- Guide: [docs/date/useMaskedDateInput.md](https://github.com/NantHealth/featherk/blob/integration/packages/composables/docs/date/useMaskedDateInput.md)
|
|
47
47
|
- **Range**: `useMaskedDateRangeInput` — Masked date range input with validation, clamp, and optional popup coordination.
|
|
48
|
-
- Guide: [docs/range/useMaskedDateRangeInput.md](
|
|
48
|
+
- Guide: [docs/range/useMaskedDateRangeInput.md](https://github.com/NantHealth/featherk/blob/integration/packages/composables/docs/range/useMaskedDateRangeInput.md)
|
|
49
49
|
- **Time**: `useMaskedTimeInput` — Masked single-time input with AM/PM conveniences and bounds.
|
|
50
|
-
- Guide: [docs/time/useMaskedTimeInput.md](
|
|
50
|
+
- Guide: [docs/time/useMaskedTimeInput.md](https://github.com/NantHealth/featherk/blob/integration/packages/composables/docs/time/useMaskedTimeInput.md)
|
|
51
51
|
- **Trap**: `usePopupTrap` — Focus trap + Escape/Outside click close behavior for popups.
|
|
52
|
-
- Guide: [docs/trap/usePopupTrap.md](
|
|
52
|
+
- Guide: [docs/trap/usePopupTrap.md](https://github.com/NantHealth/featherk/blob/integration/packages/composables/docs/trap/usePopupTrap.md)
|
|
53
53
|
|
|
54
54
|
## Importing
|
|
55
55
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# useMaskedDateInput
|
|
2
2
|
|
|
3
|
-
[← Back to Composables README](
|
|
3
|
+
[← Back to Composables README](https://github.com/NantHealth/featherk/blob/integration/packages/composables/README.md)
|
|
4
4
|
|
|
5
5
|
Composable for a masked single-date input that pairs naturally with Kendo Vue `MaskedTextBox`, and optionally coordinates with a `DatePicker`. It handles typed input in the mask `MM/DD/YYYY`, keyboard steppers (ArrowUp/ArrowDown), wheel steppers, caret persistence, min/max range validation, and clean emission only when the input is complete and valid.
|
|
6
6
|
|
package/docs/grid/useGridA11y.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# useGridA11y
|
|
2
2
|
|
|
3
|
-
[← Back to Composables README](
|
|
3
|
+
[← Back to Composables README](https://github.com/NantHealth/featherk/blob/integration/packages/composables/README.md)
|
|
4
4
|
|
|
5
5
|
Composable that augments a Kendo Vue Grid with accessible keyboard navigation, focus management, and custom behaviors for column header menus (filter/sort).
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# useMaskedDateRangeInput
|
|
2
2
|
|
|
3
|
-
[← Back to Composables README](
|
|
3
|
+
[← Back to Composables README](https://github.com/NantHealth/featherk/blob/integration/packages/composables/README.md)
|
|
4
4
|
|
|
5
5
|
Composable for a masked date range input that pairs naturally with Kendo Vue `MaskedTextBox` and `Calendar`. It handles typed input in the mask `MM/DD/YYYY - MM/DD/YYYY`, keyboard steppers (ArrowUp/ArrowDown), wheel steppers, caret persistence, min/max clamping, ordered range validation, span calculation, and optional popup-close coordination when the calendar sets the value.
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# useMaskedTimeInput
|
|
2
2
|
|
|
3
|
-
[← Back to Composables README](
|
|
3
|
+
[← Back to Composables README](https://github.com/NantHealth/featherk/blob/integration/packages/composables/README.md)
|
|
4
4
|
|
|
5
5
|
Composable for a masked single-time input that pairs naturally with Kendo Vue `MaskedTextBox`, and optionally coordinates with a `TimePicker`. It handles typed input in the mask `hh:mm AM`, keyboard steppers (ArrowUp/ArrowDown), wheel steppers, caret persistence, minute step granularity, min/max time validation, and clean emission only when the input is complete and valid.
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# usePopupTrap
|
|
2
2
|
|
|
3
|
-
[← Back to Composables README](
|
|
3
|
+
[← Back to Composables README](https://github.com/NantHealth/featherk/blob/integration/packages/composables/README.md)
|
|
4
4
|
|
|
5
5
|
Composable for managing focus trapping and close behavior for popup UIs (e.g., Kendo `Popup`, `DatePicker`, `TimePicker` dropdowns). It provides focus trapping via `@vueuse/integrations/useFocusTrap`, Escape/OutsideClick to close, automatic popup element discovery, and optional return-to-trigger focus.
|
|
6
6
|
|