UNPKG

react-native-a11y

Version:

Improvements of a11y for ReactNative, this library improve work with reader and keyboard focus and reader in general.

20 lines 1.15 kB
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); } function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } const A11Y_DEPRECATED = "change"; class A11yConfig { constructor() { _defineProperty(this, "a11yServiceChangeEvent", A11Y_DEPRECATED); } init(_ref) { let { a11yEventName } = _ref; this.a11yServiceChangeEvent = a11yEventName; } get a11yEventName() { return this.a11yServiceChangeEvent; } } export const a11yConfig = new A11yConfig(); //# sourceMappingURL=RNA11yConfig.js.map