@elliemae/ds-props-helpers 2.2.0-alpha.4 → 3.0.0-next.2

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.
Files changed (59) hide show
  1. package/cjs/defaultProps/index.js +9 -28
  2. package/cjs/defaultProps/useMemoMergePropsWithDefault.js +44 -44
  3. package/cjs/getProps/index.js +20 -37
  4. package/cjs/globalProps/constants.js +15 -0
  5. package/cjs/globalProps/globalAttributesPropTypes.js +372 -0
  6. package/cjs/globalProps/index.js +11 -0
  7. package/cjs/globalProps/useGetGlobalAttributes.js +36 -0
  8. package/cjs/index.js +24 -30
  9. package/cjs/validation/errorTemplates.js +12 -44
  10. package/cjs/validation/index.js +15 -30
  11. package/cjs/validation/typescriptGuards.js +31 -60
  12. package/cjs/validation/typescriptParsers.js +34 -65
  13. package/cjs/validation/typescriptValidator.js +135 -99
  14. package/cjs/validation/validator.js +24 -43
  15. package/esm/defaultProps/index.js +1 -3
  16. package/esm/defaultProps/useMemoMergePropsWithDefault.js +34 -14
  17. package/esm/getProps/index.js +15 -8
  18. package/esm/globalProps/constants.js +11 -0
  19. package/esm/globalProps/globalAttributesPropTypes.js +368 -0
  20. package/esm/globalProps/index.js +2 -0
  21. package/esm/globalProps/useGetGlobalAttributes.js +32 -0
  22. package/esm/index.js +7 -5
  23. package/esm/validation/errorTemplates.js +7 -15
  24. package/esm/validation/index.js +3 -5
  25. package/esm/validation/typescriptGuards.js +18 -31
  26. package/esm/validation/typescriptParsers.js +30 -36
  27. package/esm/validation/typescriptValidator.js +106 -57
  28. package/esm/validation/validator.js +18 -12
  29. package/package.json +17 -1
  30. package/types/globalProps/constants.d.ts +3 -0
  31. package/types/globalProps/globalAttributesPropTypes.d.ts +2169 -0
  32. package/types/globalProps/index.d.ts +2 -0
  33. package/types/globalProps/useGetGlobalAttributes.d.ts +5 -0
  34. package/types/index.d.ts +1 -0
  35. package/types/validation/typescriptValidator.d.ts +2 -2
  36. package/cjs/defaultProps/index.js.map +0 -7
  37. package/cjs/defaultProps/useMemoMergePropsWithDefault.js.map +0 -7
  38. package/cjs/getProps/index.js.map +0 -7
  39. package/cjs/index.js.map +0 -7
  40. package/cjs/tests/test.schema.js +0 -67
  41. package/cjs/tests/test.schema.js.map +0 -7
  42. package/cjs/validation/errorTemplates.js.map +0 -7
  43. package/cjs/validation/index.js.map +0 -7
  44. package/cjs/validation/typescriptGuards.js.map +0 -7
  45. package/cjs/validation/typescriptParsers.js.map +0 -7
  46. package/cjs/validation/typescriptValidator.js.map +0 -7
  47. package/cjs/validation/validator.js.map +0 -7
  48. package/esm/defaultProps/index.js.map +0 -7
  49. package/esm/defaultProps/useMemoMergePropsWithDefault.js.map +0 -7
  50. package/esm/getProps/index.js.map +0 -7
  51. package/esm/index.js.map +0 -7
  52. package/esm/tests/test.schema.js +0 -38
  53. package/esm/tests/test.schema.js.map +0 -7
  54. package/esm/validation/errorTemplates.js.map +0 -7
  55. package/esm/validation/index.js.map +0 -7
  56. package/esm/validation/typescriptGuards.js.map +0 -7
  57. package/esm/validation/typescriptParsers.js.map +0 -7
  58. package/esm/validation/typescriptValidator.js.map +0 -7
  59. package/esm/validation/validator.js.map +0 -7
@@ -1,28 +1,9 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
- var __reExport = (target, module2, copyDefault, desc) => {
9
- if (module2 && typeof module2 === "object" || typeof module2 === "function") {
10
- for (let key of __getOwnPropNames(module2))
11
- if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
12
- __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
13
- }
14
- return target;
15
- };
16
- var __toESM = (module2, isNodeMode) => {
17
- return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
18
- };
19
- var __toCommonJS = /* @__PURE__ */ ((cache) => {
20
- return (module2, temp) => {
21
- return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
22
- };
23
- })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
24
- var defaultProps_exports = {};
25
- var React = __toESM(require("react"));
26
- __reExport(defaultProps_exports, require("./useMemoMergePropsWithDefault"));
27
- module.exports = __toCommonJS(defaultProps_exports);
28
- //# sourceMappingURL=index.js.map
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var useMemoMergePropsWithDefault = require('./useMemoMergePropsWithDefault.js');
6
+
7
+
8
+
9
+ exports.useMemoMergePropsWithDefault = useMemoMergePropsWithDefault.useMemoMergePropsWithDefault;
@@ -1,48 +1,48 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
- var __reExport = (target, module2, copyDefault, desc) => {
13
- if (module2 && typeof module2 === "object" || typeof module2 === "function") {
14
- for (let key of __getOwnPropNames(module2))
15
- if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
16
- __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
17
- }
18
- return target;
19
- };
20
- var __toESM = (module2, isNodeMode) => {
21
- return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
22
- };
23
- var __toCommonJS = /* @__PURE__ */ ((cache) => {
24
- return (module2, temp) => {
25
- return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
26
- };
27
- })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
28
- var useMemoMergePropsWithDefault_exports = {};
29
- __export(useMemoMergePropsWithDefault_exports, {
30
- useMemoMergePropsWithDefault: () => useMemoMergePropsWithDefault
31
- });
32
- var React = __toESM(require("react"));
33
- var import_react = require("react");
34
- var import_react2 = __toESM(require("fast-deep-equal/react"));
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ require('core-js/modules/esnext.async-iterator.filter.js');
6
+ require('core-js/modules/esnext.iterator.constructor.js');
7
+ require('core-js/modules/esnext.iterator.filter.js');
8
+ require('core-js/modules/esnext.async-iterator.for-each.js');
9
+ require('core-js/modules/esnext.iterator.for-each.js');
10
+ var _defineProperty = require('@babel/runtime/helpers/defineProperty');
11
+ var react = require('react');
12
+ var deepequal = require('fast-deep-equal/react');
13
+
14
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
15
+
16
+ var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
17
+ var deepequal__default = /*#__PURE__*/_interopDefaultLegacy(deepequal);
18
+
19
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
20
+
21
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
22
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
23
+
35
24
  const useMemoCompare = (next, compare) => {
36
- const previousRef = (0, import_react.useRef)(next);
37
- const previous = previousRef.current;
38
- const isEqual = compare(previous, next);
39
- if (!isEqual)
40
- previousRef.current = next;
25
+ // Ref for storing previous value
26
+ const previousRef = react.useRef(next);
27
+ const previous = previousRef.current; // Pass previous and next value to compare function
28
+ // to determine whether to consider them equal.
29
+
30
+ const isEqual = compare(previous, next); // If not equal update previousRef to next value.
31
+ // We only update if not equal so that this hook continues to return
32
+ // the same old value if compare keeps returning true.
33
+
34
+ if (!isEqual) previousRef.current = next; // Finally, if equal then return the previous value
35
+
41
36
  return isEqual ? previous : next;
42
- };
43
- const useMemoMergePropsWithDefault = (props, defaultProps, compare = import_react2.default) => {
44
- const mergedProps = { ...defaultProps, ...props };
37
+ }; // eslint-disable-next-line @typescript-eslint/no-explicit-any
38
+
39
+
40
+ const useMemoMergePropsWithDefault = function (props, defaultProps) {
41
+ let compare = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : deepequal__default["default"];
42
+
43
+ const mergedProps = _objectSpread(_objectSpread({}, defaultProps), props);
44
+
45
45
  return useMemoCompare(mergedProps, compare);
46
46
  };
47
- module.exports = __toCommonJS(useMemoMergePropsWithDefault_exports);
48
- //# sourceMappingURL=useMemoMergePropsWithDefault.js.map
47
+
48
+ exports.useMemoMergePropsWithDefault = useMemoMergePropsWithDefault;
@@ -1,37 +1,20 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
- var __reExport = (target, module2, copyDefault, desc) => {
13
- if (module2 && typeof module2 === "object" || typeof module2 === "function") {
14
- for (let key of __getOwnPropNames(module2))
15
- if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
16
- __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
17
- }
18
- return target;
19
- };
20
- var __toESM = (module2, isNodeMode) => {
21
- return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
22
- };
23
- var __toCommonJS = /* @__PURE__ */ ((cache) => {
24
- return (module2, temp) => {
25
- return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
26
- };
27
- })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
28
- var getProps_exports = {};
29
- __export(getProps_exports, {
30
- getAriaProps: () => getAriaProps,
31
- getDataProps: () => getDataProps
32
- });
33
- var React = __toESM(require("react"));
34
- const getAriaProps = (props) => Object.fromEntries(Object.entries(props).filter(([key]) => key.includes("aria-")));
35
- const getDataProps = (props) => Object.fromEntries(Object.entries(props).filter(([key]) => key.includes("data-")));
36
- module.exports = __toCommonJS(getProps_exports);
37
- //# sourceMappingURL=index.js.map
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ require('core-js/modules/esnext.async-iterator.filter.js');
6
+ require('core-js/modules/esnext.iterator.constructor.js');
7
+ require('core-js/modules/esnext.iterator.filter.js');
8
+ require('core-js/modules/web.dom-collections.iterator.js');
9
+
10
+ const getAriaProps = props => Object.fromEntries(Object.entries(props).filter(_ref => {
11
+ let [key] = _ref;
12
+ return key.includes('aria-');
13
+ }));
14
+ const getDataProps = props => Object.fromEntries(Object.entries(props).filter(_ref2 => {
15
+ let [key] = _ref2;
16
+ return key.includes('data-');
17
+ }));
18
+
19
+ exports.getAriaProps = getAriaProps;
20
+ exports.getDataProps = getDataProps;
@@ -0,0 +1,15 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ require('core-js/modules/esnext.async-iterator.map.js');
6
+ require('core-js/modules/esnext.iterator.map.js');
7
+ require('core-js/modules/web.dom-collections.iterator.js');
8
+
9
+ /* eslint-disable max-lines */
10
+ const ariaAttributes = ['aria-activedescendant', 'aria-atomic', 'aria-autocomplete', 'aria-busy', 'aria-checked', 'aria-colcount', 'aria-colindex', 'aria-colspan', 'aria-controls', 'aria-current', 'aria-describedby', 'aria-details', 'aria-disabled', 'aria-dropeffect', 'aria-errormessage', 'aria-expanded', 'aria-flowto', 'aria-grabbed', 'aria-haspopup', 'aria-hidden', 'aria-invalid', 'aria-keyshortcuts', 'aria-label', 'aria-labelledby', 'aria-level', 'aria-live', 'aria-modal', 'aria-multiline', 'aria-multiselectable', 'aria-orientation', 'aria-owns', 'aria-placeholder', 'aria-posinset', 'aria-pressed', 'aria-readonly', 'aria-relevant', 'aria-required', 'aria-roledescription', 'aria-rowcount', 'aria-rowindex', 'aria-rowspan', 'aria-selected', 'aria-setsize', 'aria-sort', 'aria-valuemax', 'aria-valuemin', 'aria-valuenow', 'aria-valuetext'];
11
+ const domAttributes = ['onCopy', 'onCopyCapture', 'onCut', 'onCutCapture', 'onPaste', 'onPasteCapture', 'onCompositionEnd', 'onCompositionEndCapture', 'onCompositionStart', 'onCompositionStartCapture', 'onCompositionUpdate', 'onCompositionUpdateCapture', 'onFocus', 'onFocusCapture', 'onBlur', 'onBlurCapture', 'onChange', 'onChangeCapture', 'onBeforeInput', 'onBeforeInputCapture', 'onInput', 'onInputCapture', 'onReset', 'onResetCapture', 'onSubmit', 'onSubmitCapture', 'onInvalid', 'onInvalidCapture', 'onLoad', 'onLoadCapture', 'onError', 'onErrorCapture', 'onKeyDown', 'onKeyDownCapture', 'onKeyPress', 'onKeyPressCapture', 'onKeyUp', 'onKeyUpCapture', 'onAbort', 'onAbortCapture', 'onCanPlay', 'onCanPlayCapture', 'onCanPlayThrough', 'onCanPlayThroughCapture', 'onDurationChange', 'onDurationChangeCapture', 'onEmptied', 'onEmptiedCapture', 'onEncrypted', 'onEncryptedCapture', 'onEnded', 'onEndedCapture', 'onLoadedData', 'onLoadedDataCapture', 'onLoadedMetadata', 'onLoadedMetadataCapture', 'onLoadStart', 'onLoadStartCapture', 'onPause', 'onPauseCapture', 'onPlay', 'onPlayCapture', 'onPlaying', 'onPlayingCapture', 'onProgress', 'onProgressCapture', 'onRateChange', 'onRateChangeCapture', 'onSeeked', 'onSeekedCapture', 'onSeeking', 'onSeekingCapture', 'onStalled', 'onStalledCapture', 'onSuspend', 'onSuspendCapture', 'onTimeUpdate', 'onTimeUpdateCapture', 'onVolumeChange', 'onVolumeChangeCapture', 'onWaiting', 'onWaitingCapture', 'onAuxClick', 'onAuxClickCapture', 'onClick', 'onClickCapture', 'onContextMenu', 'onContextMenuCapture', 'onDoubleClick', 'onDoubleClickCapture', 'onDrag', 'onDragCapture', 'onDragEnd', 'onDragEndCapture', 'onDragEnter', 'onDragEnterCapture', 'onDragExit', 'onDragExitCapture', 'onDragLeave', 'onDragLeaveCapture', 'onDragOver', 'onDragOverCapture', 'onDragStart', 'onDragStartCapture', 'onDrop', 'onDropCapture', 'onMouseDown', 'onMouseDownCapture', 'onMouseEnter', 'onMouseLeave', 'onMouseMove', 'onMouseMoveCapture', 'onMouseOut', 'onMouseOutCapture', 'onMouseOver', 'onMouseOverCapture', 'onMouseUp', 'onMouseUpCapture', 'onSelect', 'onSelectCapture', 'onTouchCancel', 'onTouchCancelCapture', 'onTouchEnd', 'onTouchEndCapture', 'onTouchMove', 'onTouchMoveCapture', 'onTouchStart', 'onTouchStartCapture', 'onPointerDown', 'onPointerDownCapture', 'onPointerMove', 'onPointerMoveCapture', 'onPointerUp', 'onPointerUpCapture', 'onPointerCancel', 'onPointerCancelCapture', 'onPointerEnter', 'onPointerEnterCapture', 'onPointerLeave', 'onPointerLeaveCapture', 'onPointerOver', 'onPointerOverCapture', 'onPointerOut', 'onPointerOutCapture', 'onGotPointerCapture', 'onGotPointerCaptureCapture', 'onLostPointerCapture', 'onLostPointerCaptureCapture', 'onScroll', 'onScrollCapture', 'onWheel', 'onWheelCapture', 'onAnimationStart', 'onAnimationStartCapture', 'onAnimationEnd', 'onAnimationEndCapture', 'onAnimationIteration', 'onAnimationIterationCapture', 'onTransitionEnd', 'onTransitionEndCapture'];
12
+ const htmlAttributes = ['about', 'accept', 'acceptCharset', 'accessKey', 'action', 'allowFullScreen', 'allowTransparency', 'alt', 'as', 'async', 'autoCapitalize', 'autoComplete', 'autoCorrect', 'autoFocus', 'autoPlay', 'autoSave', 'capture', 'cellPadding', 'cellSpacing', 'challenge', 'charSet', 'checked', 'cite', 'classID', 'className', 'color', 'cols', 'colSpan', 'content', 'contentEditable', 'contextMenu', 'controls', 'coords', 'crossOrigin', 'data', 'datatype', 'dateTime', 'default', 'defaultChecked', 'defaultValue', 'defer', 'dir', 'disabled', 'download', 'draggable', 'encType', 'form', 'formAction', 'formEncType', 'formMethod', 'formNoValidate', 'formTarget', 'frameBorder', 'headers', 'height', 'hidden', 'high', 'href', 'hrefLang', 'htmlFor', 'httpEquiv', 'id', 'inlist', 'inputMode', 'integrity', 'is', 'itemID', 'itemProp', 'itemRef', 'itemScope', 'itemType', 'keyParams', 'keyType', 'kind', 'label', 'lang', 'list', 'loop', 'low', 'manifest', 'marginHeight', 'marginWidth', 'max', 'maxLength', 'media', 'mediaGroup', 'method', 'min', 'minLength', 'multiple', 'muted', 'name', 'nonce', 'noValidate', 'open', 'optimum', 'pattern', 'placeholder', 'playsInline', 'poster', 'prefix', 'preload', 'property', 'radioGroup', 'readOnly', 'rel', 'required', 'resource', 'results', 'reversed', 'role', 'rows', 'rowSpan', 'sandbox', 'scope', 'scoped', 'scrolling', 'seamless', 'security', 'selected', 'shape', 'size', 'sizes', 'slot', 'span', 'spellCheck', 'src', 'srcDoc', 'srcLang', 'srcSet', 'start', 'step', 'style', 'summary', 'suppressContentEditableWarning', 'suppressHydrationWarning', 'tabIndex', 'target', 'title', 'translate', 'type', 'typeof', 'unselectable', 'useMap', 'value', 'vocab', 'width', 'wmode', 'wrap'];
13
+ const globalAttributes = Object.fromEntries([...ariaAttributes, ...domAttributes, ...htmlAttributes].map(entry => [entry, true]));
14
+
15
+ exports.globalAttributes = globalAttributes;
@@ -0,0 +1,372 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var reactDesc = require('react-desc');
6
+
7
+ /* eslint-disable max-lines */
8
+ const globalAttributesPropTypes = {
9
+ 'aria-*': reactDesc.PropTypes.any.description('Aria related properties -- global --'),
10
+ 'on-*': reactDesc.PropTypes.func.description('Any supported React event -- global --'),
11
+ 'data-*': reactDesc.PropTypes.any.description('Any data property to attach to the root container -- global --'),
12
+ 'all HTML attributes': reactDesc.PropTypes.any.description('HTML attributes such as id, className, autoComplete, href and so on -- global --'),
13
+ about: reactDesc.PropTypes.any.description('-- hidden --'),
14
+ accept: reactDesc.PropTypes.any.description('-- hidden --'),
15
+ acceptCharset: reactDesc.PropTypes.any.description('-- hidden --'),
16
+ accessKey: reactDesc.PropTypes.any.description('-- hidden --'),
17
+ action: reactDesc.PropTypes.any.description('-- hidden --'),
18
+ allowFullScreen: reactDesc.PropTypes.any.description('-- hidden --'),
19
+ allowTransparency: reactDesc.PropTypes.any.description('-- hidden --'),
20
+ alt: reactDesc.PropTypes.any.description('-- hidden --'),
21
+ 'aria-activedescendant': reactDesc.PropTypes.any.description('-- hidden --'),
22
+ 'aria-atomic': reactDesc.PropTypes.any.description('-- hidden --'),
23
+ 'aria-autocomplete': reactDesc.PropTypes.any.description('-- hidden --'),
24
+ 'aria-busy': reactDesc.PropTypes.any.description('-- hidden --'),
25
+ 'aria-checked': reactDesc.PropTypes.any.description('-- hidden --'),
26
+ 'aria-colcount': reactDesc.PropTypes.any.description('-- hidden --'),
27
+ 'aria-colindex': reactDesc.PropTypes.any.description('-- hidden --'),
28
+ 'aria-colspan': reactDesc.PropTypes.any.description('-- hidden --'),
29
+ 'aria-controls': reactDesc.PropTypes.any.description('-- hidden --'),
30
+ 'aria-current': reactDesc.PropTypes.any.description('-- hidden --'),
31
+ 'aria-describedby': reactDesc.PropTypes.any.description('-- hidden --'),
32
+ 'aria-details': reactDesc.PropTypes.any.description('-- hidden --'),
33
+ 'aria-disabled': reactDesc.PropTypes.any.description('-- hidden --'),
34
+ 'aria-dropeffect': reactDesc.PropTypes.any.description('-- hidden --'),
35
+ 'aria-errormessage': reactDesc.PropTypes.any.description('-- hidden --'),
36
+ 'aria-expanded': reactDesc.PropTypes.any.description('-- hidden --'),
37
+ 'aria-flowto': reactDesc.PropTypes.any.description('-- hidden --'),
38
+ 'aria-grabbed': reactDesc.PropTypes.any.description('-- hidden --'),
39
+ 'aria-haspopup': reactDesc.PropTypes.any.description('-- hidden --'),
40
+ 'aria-hidden': reactDesc.PropTypes.any.description('-- hidden --'),
41
+ 'aria-invalid': reactDesc.PropTypes.any.description('-- hidden --'),
42
+ 'aria-keyshortcuts': reactDesc.PropTypes.any.description('-- hidden --'),
43
+ 'aria-label': reactDesc.PropTypes.any.description('-- hidden --'),
44
+ 'aria-labelledby': reactDesc.PropTypes.any.description('-- hidden --'),
45
+ 'aria-level': reactDesc.PropTypes.any.description('-- hidden --'),
46
+ 'aria-live': reactDesc.PropTypes.any.description('-- hidden --'),
47
+ 'aria-modal': reactDesc.PropTypes.any.description('-- hidden --'),
48
+ 'aria-multiline': reactDesc.PropTypes.any.description('-- hidden --'),
49
+ 'aria-multiselectable': reactDesc.PropTypes.any.description('-- hidden --'),
50
+ 'aria-orientation': reactDesc.PropTypes.any.description('-- hidden --'),
51
+ 'aria-owns': reactDesc.PropTypes.any.description('-- hidden --'),
52
+ 'aria-placeholder': reactDesc.PropTypes.any.description('-- hidden --'),
53
+ 'aria-posinset': reactDesc.PropTypes.any.description('-- hidden --'),
54
+ 'aria-pressed': reactDesc.PropTypes.any.description('-- hidden --'),
55
+ 'aria-readonly': reactDesc.PropTypes.any.description('-- hidden --'),
56
+ 'aria-relevant': reactDesc.PropTypes.any.description('-- hidden --'),
57
+ 'aria-required': reactDesc.PropTypes.any.description('-- hidden --'),
58
+ 'aria-roledescription': reactDesc.PropTypes.any.description('-- hidden --'),
59
+ 'aria-rowcount': reactDesc.PropTypes.any.description('-- hidden --'),
60
+ 'aria-rowindex': reactDesc.PropTypes.any.description('-- hidden --'),
61
+ 'aria-rowspan': reactDesc.PropTypes.any.description('-- hidden --'),
62
+ 'aria-selected': reactDesc.PropTypes.any.description('-- hidden --'),
63
+ 'aria-setsize': reactDesc.PropTypes.any.description('-- hidden --'),
64
+ 'aria-sort': reactDesc.PropTypes.any.description('-- hidden --'),
65
+ 'aria-valuemax': reactDesc.PropTypes.any.description('-- hidden --'),
66
+ 'aria-valuemin': reactDesc.PropTypes.any.description('-- hidden --'),
67
+ 'aria-valuenow': reactDesc.PropTypes.any.description('-- hidden --'),
68
+ 'aria-valuetext': reactDesc.PropTypes.any.description('-- hidden --'),
69
+ as: reactDesc.PropTypes.any.description('-- hidden --'),
70
+ async: reactDesc.PropTypes.any.description('-- hidden --'),
71
+ autoCapitalize: reactDesc.PropTypes.any.description('-- hidden --'),
72
+ autoComplete: reactDesc.PropTypes.any.description('-- hidden --'),
73
+ autoCorrect: reactDesc.PropTypes.any.description('-- hidden --'),
74
+ autoFocus: reactDesc.PropTypes.any.description('-- hidden --'),
75
+ autoPlay: reactDesc.PropTypes.any.description('-- hidden --'),
76
+ autoSave: reactDesc.PropTypes.any.description('-- hidden --'),
77
+ capture: reactDesc.PropTypes.any.description('-- hidden --'),
78
+ cellPadding: reactDesc.PropTypes.any.description('-- hidden --'),
79
+ cellSpacing: reactDesc.PropTypes.any.description('-- hidden --'),
80
+ challenge: reactDesc.PropTypes.any.description('-- hidden --'),
81
+ charSet: reactDesc.PropTypes.any.description('-- hidden --'),
82
+ checked: reactDesc.PropTypes.any.description('-- hidden --'),
83
+ cite: reactDesc.PropTypes.any.description('-- hidden --'),
84
+ classID: reactDesc.PropTypes.any.description('-- hidden --'),
85
+ className: reactDesc.PropTypes.any.description('-- hidden --'),
86
+ color: reactDesc.PropTypes.any.description('-- hidden --'),
87
+ cols: reactDesc.PropTypes.any.description('-- hidden --'),
88
+ colSpan: reactDesc.PropTypes.any.description('-- hidden --'),
89
+ content: reactDesc.PropTypes.any.description('-- hidden --'),
90
+ contentEditable: reactDesc.PropTypes.any.description('-- hidden --'),
91
+ contextMenu: reactDesc.PropTypes.any.description('-- hidden --'),
92
+ controls: reactDesc.PropTypes.any.description('-- hidden --'),
93
+ coords: reactDesc.PropTypes.any.description('-- hidden --'),
94
+ crossOrigin: reactDesc.PropTypes.any.description('-- hidden --'),
95
+ data: reactDesc.PropTypes.any.description('-- hidden --'),
96
+ datatype: reactDesc.PropTypes.any.description('-- hidden --'),
97
+ dateTime: reactDesc.PropTypes.any.description('-- hidden --'),
98
+ default: reactDesc.PropTypes.any.description('-- hidden --'),
99
+ defaultChecked: reactDesc.PropTypes.any.description('-- hidden --'),
100
+ defaultValue: reactDesc.PropTypes.any.description('-- hidden --'),
101
+ defer: reactDesc.PropTypes.any.description('-- hidden --'),
102
+ dir: reactDesc.PropTypes.any.description('-- hidden --'),
103
+ disabled: reactDesc.PropTypes.any.description('-- hidden --'),
104
+ download: reactDesc.PropTypes.any.description('-- hidden --'),
105
+ draggable: reactDesc.PropTypes.any.description('-- hidden --'),
106
+ encType: reactDesc.PropTypes.any.description('-- hidden --'),
107
+ form: reactDesc.PropTypes.any.description('-- hidden --'),
108
+ formAction: reactDesc.PropTypes.any.description('-- hidden --'),
109
+ formEncType: reactDesc.PropTypes.any.description('-- hidden --'),
110
+ formMethod: reactDesc.PropTypes.any.description('-- hidden --'),
111
+ formNoValidate: reactDesc.PropTypes.any.description('-- hidden --'),
112
+ formTarget: reactDesc.PropTypes.any.description('-- hidden --'),
113
+ frameBorder: reactDesc.PropTypes.any.description('-- hidden --'),
114
+ headers: reactDesc.PropTypes.any.description('-- hidden --'),
115
+ height: reactDesc.PropTypes.any.description('-- hidden --'),
116
+ hidden: reactDesc.PropTypes.any.description('-- hidden --'),
117
+ high: reactDesc.PropTypes.any.description('-- hidden --'),
118
+ href: reactDesc.PropTypes.any.description('-- hidden --'),
119
+ hrefLang: reactDesc.PropTypes.any.description('-- hidden --'),
120
+ htmlFor: reactDesc.PropTypes.any.description('-- hidden --'),
121
+ httpEquiv: reactDesc.PropTypes.any.description('-- hidden --'),
122
+ id: reactDesc.PropTypes.any.description('-- hidden --'),
123
+ inlist: reactDesc.PropTypes.any.description('-- hidden --'),
124
+ inputMode: reactDesc.PropTypes.any.description('-- hidden --'),
125
+ integrity: reactDesc.PropTypes.any.description('-- hidden --'),
126
+ is: reactDesc.PropTypes.any.description('-- hidden --'),
127
+ itemID: reactDesc.PropTypes.any.description('-- hidden --'),
128
+ itemProp: reactDesc.PropTypes.any.description('-- hidden --'),
129
+ itemRef: reactDesc.PropTypes.any.description('-- hidden --'),
130
+ itemScope: reactDesc.PropTypes.any.description('-- hidden --'),
131
+ itemType: reactDesc.PropTypes.any.description('-- hidden --'),
132
+ keyParams: reactDesc.PropTypes.any.description('-- hidden --'),
133
+ keyType: reactDesc.PropTypes.any.description('-- hidden --'),
134
+ kind: reactDesc.PropTypes.any.description('-- hidden --'),
135
+ label: reactDesc.PropTypes.any.description('-- hidden --'),
136
+ lang: reactDesc.PropTypes.any.description('-- hidden --'),
137
+ list: reactDesc.PropTypes.any.description('-- hidden --'),
138
+ loop: reactDesc.PropTypes.any.description('-- hidden --'),
139
+ low: reactDesc.PropTypes.any.description('-- hidden --'),
140
+ manifest: reactDesc.PropTypes.any.description('-- hidden --'),
141
+ marginHeight: reactDesc.PropTypes.any.description('-- hidden --'),
142
+ marginWidth: reactDesc.PropTypes.any.description('-- hidden --'),
143
+ max: reactDesc.PropTypes.any.description('-- hidden --'),
144
+ maxLength: reactDesc.PropTypes.any.description('-- hidden --'),
145
+ media: reactDesc.PropTypes.any.description('-- hidden --'),
146
+ mediaGroup: reactDesc.PropTypes.any.description('-- hidden --'),
147
+ method: reactDesc.PropTypes.any.description('-- hidden --'),
148
+ min: reactDesc.PropTypes.any.description('-- hidden --'),
149
+ minLength: reactDesc.PropTypes.any.description('-- hidden --'),
150
+ multiple: reactDesc.PropTypes.any.description('-- hidden --'),
151
+ muted: reactDesc.PropTypes.any.description('-- hidden --'),
152
+ name: reactDesc.PropTypes.any.description('-- hidden --'),
153
+ nonce: reactDesc.PropTypes.any.description('-- hidden --'),
154
+ noValidate: reactDesc.PropTypes.any.description('-- hidden --'),
155
+ onAbort: reactDesc.PropTypes.any.description('-- hidden --'),
156
+ onAbortCapture: reactDesc.PropTypes.any.description('-- hidden --'),
157
+ onAnimationEnd: reactDesc.PropTypes.any.description('-- hidden --'),
158
+ onAnimationEndCapture: reactDesc.PropTypes.any.description('-- hidden --'),
159
+ onAnimationIteration: reactDesc.PropTypes.any.description('-- hidden --'),
160
+ onAnimationIterationCapture: reactDesc.PropTypes.any.description('-- hidden --'),
161
+ onAnimationStart: reactDesc.PropTypes.any.description('-- hidden --'),
162
+ onAnimationStartCapture: reactDesc.PropTypes.any.description('-- hidden --'),
163
+ onAuxClick: reactDesc.PropTypes.any.description('-- hidden --'),
164
+ onAuxClickCapture: reactDesc.PropTypes.any.description('-- hidden --'),
165
+ onBeforeInput: reactDesc.PropTypes.any.description('-- hidden --'),
166
+ onBeforeInputCapture: reactDesc.PropTypes.any.description('-- hidden --'),
167
+ onBlur: reactDesc.PropTypes.any.description('-- hidden --'),
168
+ onBlurCapture: reactDesc.PropTypes.any.description('-- hidden --'),
169
+ onCanPlay: reactDesc.PropTypes.any.description('-- hidden --'),
170
+ onCanPlayCapture: reactDesc.PropTypes.any.description('-- hidden --'),
171
+ onCanPlayThrough: reactDesc.PropTypes.any.description('-- hidden --'),
172
+ onCanPlayThroughCapture: reactDesc.PropTypes.any.description('-- hidden --'),
173
+ onChange: reactDesc.PropTypes.any.description('-- hidden --'),
174
+ onChangeCapture: reactDesc.PropTypes.any.description('-- hidden --'),
175
+ onClick: reactDesc.PropTypes.any.description('-- hidden --'),
176
+ onClickCapture: reactDesc.PropTypes.any.description('-- hidden --'),
177
+ onCompositionEnd: reactDesc.PropTypes.any.description('-- hidden --'),
178
+ onCompositionEndCapture: reactDesc.PropTypes.any.description('-- hidden --'),
179
+ onCompositionStart: reactDesc.PropTypes.any.description('-- hidden --'),
180
+ onCompositionStartCapture: reactDesc.PropTypes.any.description('-- hidden --'),
181
+ onCompositionUpdate: reactDesc.PropTypes.any.description('-- hidden --'),
182
+ onCompositionUpdateCapture: reactDesc.PropTypes.any.description('-- hidden --'),
183
+ onContextMenu: reactDesc.PropTypes.any.description('-- hidden --'),
184
+ onContextMenuCapture: reactDesc.PropTypes.any.description('-- hidden --'),
185
+ onCopy: reactDesc.PropTypes.any.description('-- hidden --'),
186
+ onCopyCapture: reactDesc.PropTypes.any.description('-- hidden --'),
187
+ onCut: reactDesc.PropTypes.any.description('-- hidden --'),
188
+ onCutCapture: reactDesc.PropTypes.any.description('-- hidden --'),
189
+ onDoubleClick: reactDesc.PropTypes.any.description('-- hidden --'),
190
+ onDoubleClickCapture: reactDesc.PropTypes.any.description('-- hidden --'),
191
+ onDrag: reactDesc.PropTypes.any.description('-- hidden --'),
192
+ onDragCapture: reactDesc.PropTypes.any.description('-- hidden --'),
193
+ onDragEnd: reactDesc.PropTypes.any.description('-- hidden --'),
194
+ onDragEndCapture: reactDesc.PropTypes.any.description('-- hidden --'),
195
+ onDragEnter: reactDesc.PropTypes.any.description('-- hidden --'),
196
+ onDragEnterCapture: reactDesc.PropTypes.any.description('-- hidden --'),
197
+ onDragExit: reactDesc.PropTypes.any.description('-- hidden --'),
198
+ onDragExitCapture: reactDesc.PropTypes.any.description('-- hidden --'),
199
+ onDragLeave: reactDesc.PropTypes.any.description('-- hidden --'),
200
+ onDragLeaveCapture: reactDesc.PropTypes.any.description('-- hidden --'),
201
+ onDragOver: reactDesc.PropTypes.any.description('-- hidden --'),
202
+ onDragOverCapture: reactDesc.PropTypes.any.description('-- hidden --'),
203
+ onDragStart: reactDesc.PropTypes.any.description('-- hidden --'),
204
+ onDragStartCapture: reactDesc.PropTypes.any.description('-- hidden --'),
205
+ onDrop: reactDesc.PropTypes.any.description('-- hidden --'),
206
+ onDropCapture: reactDesc.PropTypes.any.description('-- hidden --'),
207
+ onDurationChange: reactDesc.PropTypes.any.description('-- hidden --'),
208
+ onDurationChangeCapture: reactDesc.PropTypes.any.description('-- hidden --'),
209
+ onEmptied: reactDesc.PropTypes.any.description('-- hidden --'),
210
+ onEmptiedCapture: reactDesc.PropTypes.any.description('-- hidden --'),
211
+ onEncrypted: reactDesc.PropTypes.any.description('-- hidden --'),
212
+ onEncryptedCapture: reactDesc.PropTypes.any.description('-- hidden --'),
213
+ onEnded: reactDesc.PropTypes.any.description('-- hidden --'),
214
+ onEndedCapture: reactDesc.PropTypes.any.description('-- hidden --'),
215
+ onError: reactDesc.PropTypes.any.description('-- hidden --'),
216
+ onErrorCapture: reactDesc.PropTypes.any.description('-- hidden --'),
217
+ onFocus: reactDesc.PropTypes.any.description('-- hidden --'),
218
+ onFocusCapture: reactDesc.PropTypes.any.description('-- hidden --'),
219
+ onGotPointerCapture: reactDesc.PropTypes.any.description('-- hidden --'),
220
+ onGotPointerCaptureCapture: reactDesc.PropTypes.any.description('-- hidden --'),
221
+ onInput: reactDesc.PropTypes.any.description('-- hidden --'),
222
+ onInputCapture: reactDesc.PropTypes.any.description('-- hidden --'),
223
+ onInvalid: reactDesc.PropTypes.any.description('-- hidden --'),
224
+ onInvalidCapture: reactDesc.PropTypes.any.description('-- hidden --'),
225
+ onKeyDown: reactDesc.PropTypes.any.description('-- hidden --'),
226
+ onKeyDownCapture: reactDesc.PropTypes.any.description('-- hidden --'),
227
+ onKeyPress: reactDesc.PropTypes.any.description('-- hidden --'),
228
+ onKeyPressCapture: reactDesc.PropTypes.any.description('-- hidden --'),
229
+ onKeyUp: reactDesc.PropTypes.any.description('-- hidden --'),
230
+ onKeyUpCapture: reactDesc.PropTypes.any.description('-- hidden --'),
231
+ onLoad: reactDesc.PropTypes.any.description('-- hidden --'),
232
+ onLoadCapture: reactDesc.PropTypes.any.description('-- hidden --'),
233
+ onLoadedData: reactDesc.PropTypes.any.description('-- hidden --'),
234
+ onLoadedDataCapture: reactDesc.PropTypes.any.description('-- hidden --'),
235
+ onLoadedMetadata: reactDesc.PropTypes.any.description('-- hidden --'),
236
+ onLoadedMetadataCapture: reactDesc.PropTypes.any.description('-- hidden --'),
237
+ onLoadStart: reactDesc.PropTypes.any.description('-- hidden --'),
238
+ onLoadStartCapture: reactDesc.PropTypes.any.description('-- hidden --'),
239
+ onLostPointerCapture: reactDesc.PropTypes.any.description('-- hidden --'),
240
+ onLostPointerCaptureCapture: reactDesc.PropTypes.any.description('-- hidden --'),
241
+ onMouseDown: reactDesc.PropTypes.any.description('-- hidden --'),
242
+ onMouseDownCapture: reactDesc.PropTypes.any.description('-- hidden --'),
243
+ onMouseEnter: reactDesc.PropTypes.any.description('-- hidden --'),
244
+ onMouseLeave: reactDesc.PropTypes.any.description('-- hidden --'),
245
+ onMouseMove: reactDesc.PropTypes.any.description('-- hidden --'),
246
+ onMouseMoveCapture: reactDesc.PropTypes.any.description('-- hidden --'),
247
+ onMouseOut: reactDesc.PropTypes.any.description('-- hidden --'),
248
+ onMouseOutCapture: reactDesc.PropTypes.any.description('-- hidden --'),
249
+ onMouseOver: reactDesc.PropTypes.any.description('-- hidden --'),
250
+ onMouseOverCapture: reactDesc.PropTypes.any.description('-- hidden --'),
251
+ onMouseUp: reactDesc.PropTypes.any.description('-- hidden --'),
252
+ onMouseUpCapture: reactDesc.PropTypes.any.description('-- hidden --'),
253
+ onPaste: reactDesc.PropTypes.any.description('-- hidden --'),
254
+ onPasteCapture: reactDesc.PropTypes.any.description('-- hidden --'),
255
+ onPause: reactDesc.PropTypes.any.description('-- hidden --'),
256
+ onPauseCapture: reactDesc.PropTypes.any.description('-- hidden --'),
257
+ onPlay: reactDesc.PropTypes.any.description('-- hidden --'),
258
+ onPlayCapture: reactDesc.PropTypes.any.description('-- hidden --'),
259
+ onPlaying: reactDesc.PropTypes.any.description('-- hidden --'),
260
+ onPlayingCapture: reactDesc.PropTypes.any.description('-- hidden --'),
261
+ onPointerCancel: reactDesc.PropTypes.any.description('-- hidden --'),
262
+ onPointerCancelCapture: reactDesc.PropTypes.any.description('-- hidden --'),
263
+ onPointerDown: reactDesc.PropTypes.any.description('-- hidden --'),
264
+ onPointerDownCapture: reactDesc.PropTypes.any.description('-- hidden --'),
265
+ onPointerEnter: reactDesc.PropTypes.any.description('-- hidden --'),
266
+ onPointerEnterCapture: reactDesc.PropTypes.any.description('-- hidden --'),
267
+ onPointerLeave: reactDesc.PropTypes.any.description('-- hidden --'),
268
+ onPointerLeaveCapture: reactDesc.PropTypes.any.description('-- hidden --'),
269
+ onPointerMove: reactDesc.PropTypes.any.description('-- hidden --'),
270
+ onPointerMoveCapture: reactDesc.PropTypes.any.description('-- hidden --'),
271
+ onPointerOut: reactDesc.PropTypes.any.description('-- hidden --'),
272
+ onPointerOutCapture: reactDesc.PropTypes.any.description('-- hidden --'),
273
+ onPointerOver: reactDesc.PropTypes.any.description('-- hidden --'),
274
+ onPointerOverCapture: reactDesc.PropTypes.any.description('-- hidden --'),
275
+ onPointerUp: reactDesc.PropTypes.any.description('-- hidden --'),
276
+ onPointerUpCapture: reactDesc.PropTypes.any.description('-- hidden --'),
277
+ onProgress: reactDesc.PropTypes.any.description('-- hidden --'),
278
+ onProgressCapture: reactDesc.PropTypes.any.description('-- hidden --'),
279
+ onRateChange: reactDesc.PropTypes.any.description('-- hidden --'),
280
+ onRateChangeCapture: reactDesc.PropTypes.any.description('-- hidden --'),
281
+ onReset: reactDesc.PropTypes.any.description('-- hidden --'),
282
+ onResetCapture: reactDesc.PropTypes.any.description('-- hidden --'),
283
+ onScroll: reactDesc.PropTypes.any.description('-- hidden --'),
284
+ onScrollCapture: reactDesc.PropTypes.any.description('-- hidden --'),
285
+ onSeeked: reactDesc.PropTypes.any.description('-- hidden --'),
286
+ onSeekedCapture: reactDesc.PropTypes.any.description('-- hidden --'),
287
+ onSeeking: reactDesc.PropTypes.any.description('-- hidden --'),
288
+ onSeekingCapture: reactDesc.PropTypes.any.description('-- hidden --'),
289
+ onSelect: reactDesc.PropTypes.any.description('-- hidden --'),
290
+ onSelectCapture: reactDesc.PropTypes.any.description('-- hidden --'),
291
+ onStalled: reactDesc.PropTypes.any.description('-- hidden --'),
292
+ onStalledCapture: reactDesc.PropTypes.any.description('-- hidden --'),
293
+ onSubmit: reactDesc.PropTypes.any.description('-- hidden --'),
294
+ onSubmitCapture: reactDesc.PropTypes.any.description('-- hidden --'),
295
+ onSuspend: reactDesc.PropTypes.any.description('-- hidden --'),
296
+ onSuspendCapture: reactDesc.PropTypes.any.description('-- hidden --'),
297
+ onTimeUpdate: reactDesc.PropTypes.any.description('-- hidden --'),
298
+ onTimeUpdateCapture: reactDesc.PropTypes.any.description('-- hidden --'),
299
+ onTouchCancel: reactDesc.PropTypes.any.description('-- hidden --'),
300
+ onTouchCancelCapture: reactDesc.PropTypes.any.description('-- hidden --'),
301
+ onTouchEnd: reactDesc.PropTypes.any.description('-- hidden --'),
302
+ onTouchEndCapture: reactDesc.PropTypes.any.description('-- hidden --'),
303
+ onTouchMove: reactDesc.PropTypes.any.description('-- hidden --'),
304
+ onTouchMoveCapture: reactDesc.PropTypes.any.description('-- hidden --'),
305
+ onTouchStart: reactDesc.PropTypes.any.description('-- hidden --'),
306
+ onTouchStartCapture: reactDesc.PropTypes.any.description('-- hidden --'),
307
+ onTransitionEnd: reactDesc.PropTypes.any.description('-- hidden --'),
308
+ onTransitionEndCapture: reactDesc.PropTypes.any.description('-- hidden --'),
309
+ onVolumeChange: reactDesc.PropTypes.any.description('-- hidden --'),
310
+ onVolumeChangeCapture: reactDesc.PropTypes.any.description('-- hidden --'),
311
+ onWaiting: reactDesc.PropTypes.any.description('-- hidden --'),
312
+ onWaitingCapture: reactDesc.PropTypes.any.description('-- hidden --'),
313
+ onWheel: reactDesc.PropTypes.any.description('-- hidden --'),
314
+ onWheelCapture: reactDesc.PropTypes.any.description('-- hidden --'),
315
+ open: reactDesc.PropTypes.any.description('-- hidden --'),
316
+ optimum: reactDesc.PropTypes.any.description('-- hidden --'),
317
+ pattern: reactDesc.PropTypes.any.description('-- hidden --'),
318
+ placeholder: reactDesc.PropTypes.any.description('-- hidden --'),
319
+ playsInline: reactDesc.PropTypes.any.description('-- hidden --'),
320
+ poster: reactDesc.PropTypes.any.description('-- hidden --'),
321
+ prefix: reactDesc.PropTypes.any.description('-- hidden --'),
322
+ preload: reactDesc.PropTypes.any.description('-- hidden --'),
323
+ property: reactDesc.PropTypes.any.description('-- hidden --'),
324
+ radioGroup: reactDesc.PropTypes.any.description('-- hidden --'),
325
+ readOnly: reactDesc.PropTypes.any.description('-- hidden --'),
326
+ rel: reactDesc.PropTypes.any.description('-- hidden --'),
327
+ required: reactDesc.PropTypes.any.description('-- hidden --'),
328
+ resource: reactDesc.PropTypes.any.description('-- hidden --'),
329
+ results: reactDesc.PropTypes.any.description('-- hidden --'),
330
+ reversed: reactDesc.PropTypes.any.description('-- hidden --'),
331
+ role: reactDesc.PropTypes.any.description('-- hidden --'),
332
+ rows: reactDesc.PropTypes.any.description('-- hidden --'),
333
+ rowSpan: reactDesc.PropTypes.any.description('-- hidden --'),
334
+ sandbox: reactDesc.PropTypes.any.description('-- hidden --'),
335
+ scope: reactDesc.PropTypes.any.description('-- hidden --'),
336
+ scoped: reactDesc.PropTypes.any.description('-- hidden --'),
337
+ scrolling: reactDesc.PropTypes.any.description('-- hidden --'),
338
+ seamless: reactDesc.PropTypes.any.description('-- hidden --'),
339
+ security: reactDesc.PropTypes.any.description('-- hidden --'),
340
+ selected: reactDesc.PropTypes.any.description('-- hidden --'),
341
+ shape: reactDesc.PropTypes.any.description('-- hidden --'),
342
+ size: reactDesc.PropTypes.any.description('-- hidden --'),
343
+ sizes: reactDesc.PropTypes.any.description('-- hidden --'),
344
+ slot: reactDesc.PropTypes.any.description('-- hidden --'),
345
+ span: reactDesc.PropTypes.any.description('-- hidden --'),
346
+ spellCheck: reactDesc.PropTypes.any.description('-- hidden --'),
347
+ src: reactDesc.PropTypes.any.description('-- hidden --'),
348
+ srcDoc: reactDesc.PropTypes.any.description('-- hidden --'),
349
+ srcLang: reactDesc.PropTypes.any.description('-- hidden --'),
350
+ srcSet: reactDesc.PropTypes.any.description('-- hidden --'),
351
+ start: reactDesc.PropTypes.any.description('-- hidden --'),
352
+ step: reactDesc.PropTypes.any.description('-- hidden --'),
353
+ style: reactDesc.PropTypes.any.description('-- hidden --'),
354
+ summary: reactDesc.PropTypes.any.description('-- hidden --'),
355
+ suppressContentEditableWarning: reactDesc.PropTypes.any.description('-- hidden --'),
356
+ suppressHydrationWarning: reactDesc.PropTypes.any.description('-- hidden --'),
357
+ tabIndex: reactDesc.PropTypes.any.description('-- hidden --'),
358
+ target: reactDesc.PropTypes.any.description('-- hidden --'),
359
+ title: reactDesc.PropTypes.any.description('-- hidden --'),
360
+ translate: reactDesc.PropTypes.any.description('-- hidden --'),
361
+ type: reactDesc.PropTypes.any.description('-- hidden --'),
362
+ typeof: reactDesc.PropTypes.any.description('-- hidden --'),
363
+ unselectable: reactDesc.PropTypes.any.description('-- hidden --'),
364
+ useMap: reactDesc.PropTypes.any.description('-- hidden --'),
365
+ value: reactDesc.PropTypes.any.description('-- hidden --'),
366
+ vocab: reactDesc.PropTypes.any.description('-- hidden --'),
367
+ width: reactDesc.PropTypes.any.description('-- hidden --'),
368
+ wmode: reactDesc.PropTypes.any.description('-- hidden --'),
369
+ wrap: reactDesc.PropTypes.any.description('-- hidden --')
370
+ };
371
+
372
+ exports.globalAttributesPropTypes = globalAttributesPropTypes;
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var useGetGlobalAttributes = require('./useGetGlobalAttributes.js');
6
+ var globalAttributesPropTypes = require('./globalAttributesPropTypes.js');
7
+
8
+
9
+
10
+ exports.useGetGlobalAttributes = useGetGlobalAttributes.useGetGlobalAttributes;
11
+ exports.globalAttributesPropTypes = globalAttributesPropTypes.globalAttributesPropTypes;