Socket
Socket
Sign inDemoInstall

tabster

Package Overview
Dependencies
2
Maintainers
3
Versions
148
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.2.0 to 7.3.0

1

dist/dts/Shadowdomize/DOMFunctions.d.ts

@@ -20,1 +20,2 @@ /*!

export declare function getSelection(ref: Node): Selection | null;
export declare function getElementsByName(referenceElement: HTMLElement, name: string): NodeListOf<HTMLElement>;

2

dist/dts/Shadowdomize/index.d.ts

@@ -7,3 +7,3 @@ /*!

export { createShadowMutationObserver as createMutationObserver } from "./ShadowMutationObserver";
export { appendChild, getActiveElement, getFirstChild, getFirstElementChild, getLastChild, getLastElementChild, getNextElementSibling, getNextSibling, getParentElement, getParentNode, getPreviousElementSibling, getPreviousSibling, getSelection, insertBefore, nodeContains, } from "./DOMFunctions";
export { appendChild, getActiveElement, getFirstChild, getFirstElementChild, getLastChild, getLastElementChild, getNextElementSibling, getNextSibling, getParentElement, getParentNode, getPreviousElementSibling, getPreviousSibling, getSelection, getElementsByName, insertBefore, nodeContains, } from "./DOMFunctions";
export { getElementById, querySelector, querySelectorAll, } from "./querySelector";

@@ -78,2 +78,3 @@ /*!

getSelection(ref: Node): Selection | null;
getElementsByName(referenceElement: HTMLElement, name: string): NodeListOf<HTMLElement>;
}

@@ -309,2 +310,7 @@ export type GetTabster = () => TabsterCore;

}
export interface RadioButtonGroup {
name: string;
buttons: Set<HTMLInputElement>;
checked?: HTMLInputElement;
}
export interface FocusableAcceptElementState {

@@ -332,2 +338,5 @@ container: HTMLElement;

};
cachedRadioGroups: {
[name: string]: RadioButtonGroup;
};
isFindAll?: boolean;

@@ -334,0 +343,0 @@ /**

@@ -172,2 +172,4 @@ /*!

export declare function isDisplayNone(element: HTMLElement): boolean;
export declare function isRadio(element: HTMLElement): boolean;
export declare function getRadioButtonGroup(element: HTMLElement): Types.RadioButtonGroup | undefined;
/**

@@ -174,0 +176,0 @@ * If the passed element is Tabster dummy input, returns the container element this dummy input belongs to.

@@ -78,2 +78,3 @@ /*!

getSelection(ref: Node): Selection | null;
getElementsByName(referenceElement: HTMLElement, name: string): NodeListOf<HTMLElement>;
}

@@ -309,2 +310,7 @@ type GetTabster = () => TabsterCore;

}
interface RadioButtonGroup {
name: string;
buttons: Set<HTMLInputElement>;
checked?: HTMLInputElement;
}
interface FocusableAcceptElementState {

@@ -332,2 +338,5 @@ container: HTMLElement;

};
cachedRadioGroups: {
[name: string]: RadioButtonGroup;
};
isFindAll?: boolean;

@@ -842,2 +851,3 @@ /**

type Types_d_FocusableProps = FocusableProps;
type Types_d_RadioButtonGroup = RadioButtonGroup;
type Types_d_FocusableAcceptElementState = FocusableAcceptElementState;

@@ -972,2 +982,3 @@ type Types_d_FindFocusableProps = FindFocusableProps;

Types_d_FocusableProps as FocusableProps,
Types_d_RadioButtonGroup as RadioButtonGroup,
Types_d_FocusableAcceptElementState as FocusableAcceptElementState,

@@ -974,0 +985,0 @@ Types_d_FindFocusableProps as FindFocusableProps,

{
"name": "tabster",
"version": "7.2.0",
"version": "7.3.0",
"description": "Focus Management Tools for Web",

@@ -5,0 +5,0 @@ "author": "Marat Abdullin <marata@microsoft.com>",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc