@clayui/shared
Advanced tools
Comparing version 3.73.0 to 3.75.0
@@ -15,2 +15,3 @@ /** | ||
export { observeRect } from './observeRect'; | ||
export { useId } from './useId'; | ||
export { useDebounce } from './useDebounce'; | ||
@@ -17,0 +18,0 @@ export { useFocusManagement, FOCUSABLE_ELEMENTS } from './useFocusManagement'; |
@@ -91,2 +91,8 @@ "use strict"; | ||
}); | ||
Object.defineProperty(exports, "useId", { | ||
enumerable: true, | ||
get: function get() { | ||
return _useId.useId; | ||
} | ||
}); | ||
Object.defineProperty(exports, "useInternalState", { | ||
@@ -123,2 +129,4 @@ enumerable: true, | ||
var _useId = require("./useId"); | ||
var _useDebounce = require("./useDebounce"); | ||
@@ -125,0 +133,0 @@ |
@@ -64,3 +64,3 @@ "use strict"; | ||
var FOCUSABLE_ELEMENTS = ['a[href]', '[contenteditable]', '[tabindex]:not([tabindex^="-"])', 'area[href]', 'button:not([disabled]):not([aria-hidden])', 'embed', 'iframe', 'input:not([disabled]):not([type="hidden"]):not([aria-hidden])', 'object', 'select:not([disabled]):not([aria-hidden])', 'textarea:not([disabled]):not([aria-hidden])']; | ||
var FOCUSABLE_ELEMENTS = ['a[href]', '[contenteditable]', '[tabindex]:not([tabindex^="-"])', 'area[href]', 'button:not([disabled])', 'embed', 'iframe', 'input:not([disabled]):not([type="hidden"])', 'object', 'select:not([disabled]):not([aria-hidden])', 'textarea:not([disabled]):not([aria-hidden])']; | ||
exports.FOCUSABLE_ELEMENTS = FOCUSABLE_ELEMENTS; | ||
@@ -67,0 +67,0 @@ |
{ | ||
"name": "@clayui/shared", | ||
"version": "3.73.0", | ||
"version": "3.75.0", | ||
"description": "ClayShared component", | ||
@@ -44,3 +44,3 @@ "license": "BSD-3-Clause", | ||
], | ||
"gitHead": "a7e4596d46eb4790f06b719afd5bff5602e4123f" | ||
"gitHead": "2d5918fec63eb709cc2aac7a0aab35176442b2fc" | ||
} |
@@ -79,6 +79,6 @@ /** | ||
'area[href]', | ||
'button:not([disabled]):not([aria-hidden])', | ||
'button:not([disabled])', | ||
'embed', | ||
'iframe', | ||
'input:not([disabled]):not([type="hidden"]):not([aria-hidden])', | ||
'input:not([disabled]):not([type="hidden"])', | ||
'object', | ||
@@ -85,0 +85,0 @@ 'select:not([disabled]):not([aria-hidden])', |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
93669
56
2573