Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ROU-4647: Tabs - TabIndex leave current tabs #858

Merged
merged 3 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/OutSystemsUI.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ declare namespace OSFramework.OSUI.Constants {
const EnableLogMessages = false;
const EmptyString = "";
const FocusTrapIgnoreAttr = "ignore-focus-trap";
const FocusableElems = "a[href]:not([disabled]),[tabindex=\"0\"], button:not([disabled]), textarea:not([disabled]), input[type=\"text\"]:not([disabled]), input[type=\"radio\"]:not([disabled]), input[type=\"checkbox\"]:not([disabled]),input[type=\"submit\"]:not([disabled]), select:not([disabled])";
const FocusableElems = "a[href]:not([disabled]),[tabindex=\"0\"], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled])";
const JavaScriptTypes: {
Undefined: string;
Boolean: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/OutSystemsUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ var OSFramework;
Constants.EnableLogMessages = false;
Constants.EmptyString = '';
Constants.FocusTrapIgnoreAttr = 'ignore-focus-trap';
Constants.FocusableElems = 'a[href]:not([disabled]),[tabindex="0"], button:not([disabled]), textarea:not([disabled]), input[type="text"]:not([disabled]), input[type="radio"]:not([disabled]), input[type="checkbox"]:not([disabled]),input[type="submit"]:not([disabled]), select:not([disabled])';
Constants.FocusableElems = 'a[href]:not([disabled]),[tabindex="0"], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled])';
Constants.JavaScriptTypes = {
Undefined: 'undefined',
Boolean: 'boolean',
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/OSFramework/OSUI/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ namespace OSFramework.OSUI.Constants {

/* Store focusable elements when doing a focus trap inside an element*/
export const FocusableElems =
'a[href]:not([disabled]),[tabindex="0"], button:not([disabled]), textarea:not([disabled]), input[type="text"]:not([disabled]), input[type="radio"]:not([disabled]), input[type="checkbox"]:not([disabled]),input[type="submit"]:not([disabled]), select:not([disabled])';
'a[href]:not([disabled]),[tabindex="0"], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled])';

/* Store JavaScript types*/
export const JavaScriptTypes = {
Expand Down
Loading