@hexdspace/react 0.1.46 → 0.1.48
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/index.d.ts +4 -1
- package/dist/index.js +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -901,6 +901,7 @@ declare class VimHandleKeyUseCase {
|
|
|
901
901
|
private afterCursorChange;
|
|
902
902
|
private applyFallbackCursor;
|
|
903
903
|
private getCursorIndex;
|
|
904
|
+
private hasSelection;
|
|
904
905
|
private findNextNonEmptyRegion;
|
|
905
906
|
private resolveInterRegionFallback;
|
|
906
907
|
}
|
|
@@ -1136,4 +1137,6 @@ interface KbdProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<t
|
|
|
1136
1137
|
}
|
|
1137
1138
|
declare const Kbd: React.ForwardRefExoticComponent<KbdProps & React.RefAttributes<HTMLSpanElement>>;
|
|
1138
1139
|
|
|
1139
|
-
|
|
1140
|
+
declare function useMotionDuration(varName: string, fallbackSeconds: number): number;
|
|
1141
|
+
|
|
1142
|
+
export { AuthController, AuthControllerCtx, type AuthControllerDeps, AuthControllerProvider, AuthDispatchCtx, AuthProvider, type AuthState, AuthStateCtx, Button, type ButtonProps, type CacheInstruction, type ClearSelectionArgs, type ClearTarget, type CombineMode, ConfirmDialog, type ConfirmDialogProps, type ConfirmPayload, type CursorFallback, CustomDialog, type CustomDialogPayload, type CustomDialogProps, type CustomInstruction, DEFAULT_NOTIFICATION_CHANNEL, type DefaultDialogPayloads, type DefaultDialogTemplateKey, DefaultDialogTemplateKeys, Dialog, DialogContent, DialogController, DialogHost, type DialogInstance, type DialogOptions, type DialogProps, type DialogTemplate, type DisableScope, DisableScopeUseCase, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, DropdownMenuSeparator, type EnableScope, EnableScopeUseCase, type ErrorResponse, Field, type FieldProps, type GenericResponse, type GroupedShortcuts, type HandleSelection, type HttpClient, HttpError, type HttpMethod, type HttpResponse, InMemorySelectionStore, InfoDialog, type InfoDialogProps, type InfoPayload, Input, type InputProps, type Instruction, type InstructionContext, type ItemId, Kbd, type KbdProps, KeyboardController, KeyboardProvider, type ListShortcuts, ListShortcutsUseCase, type ListedShortcut, MockAuthHttpClient, MockHttpClient, type Mode, type MutationFn, type Notification, type NotificationAction, NotificationHost, type NotificationInstruction, type NotificationVariant, NotifierController, type OnSuccessFn, type OptimisticSnapshot, type OptimisticUpdateFn, Popover, type PopoverProps, type QuerySelection, RedirectIfAuthed, type RedirectIfAuthedProps, type RegionId, type RegionKey, type RegionSelection, type RegisterRegionArgs, type RegisterShortcut, RegisterShortcutUseCase, type RequestConfig, RequireAuth, type RequireAuthProps, type ResolvedToastTheme, type ResponsiveMutation, type ScopeId, ScopeManager, type ScopeState, SelectionController, type SelectionControllerDeps, SelectionControllerProvider, type SelectionState, type SelectionStore, type ShortcutBinding, type ShortcutHandler, type ShortcutRegistration, type ShortcutScope, Skeleton, type SkeletonProps, Textarea, type TextareaProps, type ToastActionTheme, type ToastTheme, type ToastTransition, type ToastifyCSSVars, Tooltip, type UIFail, type UIOk, type UIResult, type UnregisterShortcut, UnregisterShortcutUseCase, type UseVimRegionArgs, type UseVimRegionResult, type User, VimController, type VimControllerDeps, VimControllerProvider, type VimDirection, type VimInterDirection, type VimKeyState, type VimPending, type VimRegionMeta, VimRegionRegistry, authController, controllerFactory, createAuthController, createSelectionController, createVimController, dialogController, httpClient as fetchHttpClient, getDialogTemplate, keyboardController, notifierController, registerDefaultDialogs, registerDialogTemplate, resolveToastTheme, ui, unregisterDialogTemplate, useAuth, useAuthActions, useAuthController, useAuthDispatch, useAuthedUser, useDialog, useKeyboardController, useMotionDuration, useResponsiveMutation, useSelectionController, useShortcut, useShortcutScope, useVimBindings, useVimController, useVimRegion };
|
package/dist/index.js
CHANGED
|
@@ -3370,7 +3370,13 @@ var VimHandleKeyUseCase = class {
|
|
|
3370
3370
|
if (e.ctrlKey || e.metaKey || e.altKey) return;
|
|
3371
3371
|
const scopeId = this.query.getActiveScope();
|
|
3372
3372
|
if (!scopeId) return;
|
|
3373
|
+
const activeKey = this.query.getActiveRegion(scopeId);
|
|
3374
|
+
if (!activeKey) return;
|
|
3375
|
+
const hasSelection = this.hasSelection(activeKey);
|
|
3373
3376
|
this.selection.clearSelection({ kind: "activeScope" });
|
|
3377
|
+
if (!hasSelection) {
|
|
3378
|
+
this.selection.setCursor(activeKey, null);
|
|
3379
|
+
}
|
|
3374
3380
|
const st = this.stateByScope.get(scopeId);
|
|
3375
3381
|
if (st) {
|
|
3376
3382
|
st.count = "";
|
|
@@ -3451,6 +3457,9 @@ var VimHandleKeyUseCase = class {
|
|
|
3451
3457
|
const index = items.indexOf(cursor);
|
|
3452
3458
|
return index >= 0 ? index : null;
|
|
3453
3459
|
}
|
|
3460
|
+
hasSelection(key) {
|
|
3461
|
+
return this.query.getSelectedIds(key).length > 0 || this.query.getToggledIds(key).length > 0 || this.query.getRangeIds(key).length > 0;
|
|
3462
|
+
}
|
|
3454
3463
|
findNextNonEmptyRegion(scopeId, activeKey, dir, count) {
|
|
3455
3464
|
const regs = this.regions.list(scopeId);
|
|
3456
3465
|
if (regs.length === 0) return null;
|
|
@@ -4934,6 +4943,7 @@ export {
|
|
|
4934
4943
|
useAuthedUser,
|
|
4935
4944
|
useDialog,
|
|
4936
4945
|
useKeyboardController,
|
|
4946
|
+
useMotionDuration,
|
|
4937
4947
|
useResponsiveMutation,
|
|
4938
4948
|
useSelectionController,
|
|
4939
4949
|
useShortcut,
|