@elliemae/ds-props-helpers 2.3.0-alpha.8 → 2.3.0-next.10

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 (186) hide show
  1. package/cjs/defaultProps/index.js +9 -0
  2. package/cjs/defaultProps/useMemoMergePropsWithDefault.js +48 -0
  3. package/cjs/getProps/index.js +20 -0
  4. package/cjs/globalProps/constants.js +16 -0
  5. package/cjs/globalProps/globalAttributesPropTypes.js +382 -0
  6. package/cjs/globalProps/index.js +11 -0
  7. package/cjs/globalProps/useGetGlobalAttributes.js +37 -0
  8. package/cjs/index.js +32 -0
  9. package/cjs/propTypes/PropTypes.js +131 -0
  10. package/cjs/propTypes/customPropTypes.js +21 -0
  11. package/cjs/propTypes/describe.js +64 -0
  12. package/cjs/propTypes/describeConversions.js +104 -0
  13. package/cjs/propTypes/describeGuards.js +21 -0
  14. package/cjs/propTypes/index.js +11 -0
  15. package/cjs/propTypes/toTypescript.js +160 -0
  16. package/cjs/propTypes/types.js +2 -0
  17. package/cjs/validation/errorTemplates.js +16 -0
  18. package/cjs/validation/index.js +15 -0
  19. package/cjs/validation/typescriptGuards.js +36 -0
  20. package/cjs/validation/typescriptParsers.js +45 -0
  21. package/cjs/validation/typescriptValidator.js +208 -0
  22. package/cjs/validation/validator.js +36 -0
  23. package/cjs/xstyledProps/constants.js +21 -0
  24. package/cjs/xstyledProps/index.js +11 -0
  25. package/cjs/xstyledProps/useGetXstyledProps.js +27 -0
  26. package/cjs/xstyledProps/xstyledPropTypes.js +75 -0
  27. package/esm/defaultProps/index.js +1 -0
  28. package/esm/defaultProps/useMemoMergePropsWithDefault.js +39 -0
  29. package/esm/getProps/index.js +15 -0
  30. package/esm/globalProps/constants.js +12 -0
  31. package/{dist/esm → esm}/globalProps/globalAttributesPropTypes.js +67 -58
  32. package/esm/globalProps/index.js +2 -0
  33. package/esm/globalProps/useGetGlobalAttributes.js +33 -0
  34. package/esm/index.js +11 -0
  35. package/esm/propTypes/PropTypes.js +125 -0
  36. package/esm/propTypes/customPropTypes.js +17 -0
  37. package/esm/propTypes/describe.js +62 -0
  38. package/esm/propTypes/describeConversions.js +96 -0
  39. package/esm/propTypes/describeGuards.js +10 -0
  40. package/esm/propTypes/index.js +2 -0
  41. package/esm/propTypes/toTypescript.js +154 -0
  42. package/esm/propTypes/types.js +1 -0
  43. package/esm/validation/errorTemplates.js +11 -0
  44. package/esm/validation/index.js +3 -0
  45. package/esm/validation/typescriptGuards.js +23 -0
  46. package/esm/validation/typescriptParsers.js +41 -0
  47. package/esm/validation/typescriptValidator.js +203 -0
  48. package/esm/validation/validator.js +32 -0
  49. package/esm/xstyledProps/constants.js +16 -0
  50. package/esm/xstyledProps/index.js +2 -0
  51. package/esm/xstyledProps/useGetXstyledProps.js +23 -0
  52. package/esm/xstyledProps/xstyledPropTypes.js +71 -0
  53. package/package.json +80 -65
  54. package/types/defaultProps/index.d.ts +1 -0
  55. package/types/defaultProps/useMemoMergePropsWithDefault.d.ts +1 -0
  56. package/types/getProps/index.d.ts +2 -0
  57. package/types/globalProps/constants.d.ts +3 -0
  58. package/types/globalProps/globalAttributesPropTypes.d.ts +363 -0
  59. package/types/globalProps/index.d.ts +2 -0
  60. package/types/globalProps/useGetGlobalAttributes.d.ts +4 -0
  61. package/types/index.d.ts +6 -0
  62. package/types/propTypes/PropTypes.d.ts +3 -0
  63. package/types/propTypes/customPropTypes.d.ts +2 -0
  64. package/types/propTypes/describe.d.ts +3 -0
  65. package/types/propTypes/describeConversions.d.ts +3 -0
  66. package/types/propTypes/describeGuards.d.ts +9 -0
  67. package/types/propTypes/index.d.ts +3 -0
  68. package/types/propTypes/toTypescript.d.ts +3 -0
  69. package/types/propTypes/types.d.ts +99 -0
  70. package/types/tests/globalProps/TestComponent.d.ts +1 -0
  71. package/types/tests/globalProps/globalAttributes.test.d.ts +1 -0
  72. package/types/tests/validation/any.validation.test.d.ts +1 -0
  73. package/types/tests/validation/array.validation.test.d.ts +1 -0
  74. package/types/tests/validation/boolean.validation.test.d.ts +1 -0
  75. package/types/tests/validation/function.validation.test.d.ts +1 -0
  76. package/types/tests/validation/number.validation.test.d.ts +1 -0
  77. package/types/tests/validation/object.validation.test.d.ts +1 -0
  78. package/types/tests/validation/schema.validation.test.d.ts +1 -0
  79. package/types/tests/validation/string.validation.test.d.ts +1 -0
  80. package/types/tests/validation/test.schema.d.ts +1 -0
  81. package/types/tests/validation/union.validation.test.d.ts +1 -0
  82. package/types/validation/errorTemplates.d.ts +2 -0
  83. package/types/validation/index.d.ts +3 -0
  84. package/types/validation/typescriptGuards.d.ts +12 -0
  85. package/types/validation/typescriptParsers.d.ts +1 -0
  86. package/types/validation/typescriptValidator.d.ts +15 -0
  87. package/types/validation/validator.d.ts +1 -0
  88. package/types/xstyledProps/constants.d.ts +2 -0
  89. package/types/xstyledProps/index.d.ts +2 -0
  90. package/types/xstyledProps/useGetXstyledProps.d.ts +5 -0
  91. package/types/xstyledProps/xstyledPropTypes.d.ts +57 -0
  92. package/dist/cjs/defaultProps/index.js +0 -28
  93. package/dist/cjs/defaultProps/index.js.map +0 -7
  94. package/dist/cjs/defaultProps/useMemoMergePropsWithDefault.js +0 -48
  95. package/dist/cjs/defaultProps/useMemoMergePropsWithDefault.js.map +0 -7
  96. package/dist/cjs/getProps/index.js +0 -37
  97. package/dist/cjs/getProps/index.js.map +0 -7
  98. package/dist/cjs/globalProps/constants.js +0 -398
  99. package/dist/cjs/globalProps/constants.js.map +0 -7
  100. package/dist/cjs/globalProps/globalAttributesPropTypes.js +0 -398
  101. package/dist/cjs/globalProps/globalAttributesPropTypes.js.map +0 -7
  102. package/dist/cjs/globalProps/index.js +0 -29
  103. package/dist/cjs/globalProps/index.js.map +0 -7
  104. package/dist/cjs/globalProps/useGetGlobalAttributes.js +0 -56
  105. package/dist/cjs/globalProps/useGetGlobalAttributes.js.map +0 -7
  106. package/dist/cjs/index.js +0 -32
  107. package/dist/cjs/index.js.map +0 -7
  108. package/dist/cjs/propTypes/PropTypes.js +0 -136
  109. package/dist/cjs/propTypes/PropTypes.js.map +0 -7
  110. package/dist/cjs/propTypes/customPropTypes.js +0 -38
  111. package/dist/cjs/propTypes/customPropTypes.js.map +0 -7
  112. package/dist/cjs/propTypes/describe.js +0 -81
  113. package/dist/cjs/propTypes/describe.js.map +0 -7
  114. package/dist/cjs/propTypes/describeConversions.js +0 -96
  115. package/dist/cjs/propTypes/describeConversions.js.map +0 -7
  116. package/dist/cjs/propTypes/describeGuards.js +0 -49
  117. package/dist/cjs/propTypes/describeGuards.js.map +0 -7
  118. package/dist/cjs/propTypes/index.js +0 -37
  119. package/dist/cjs/propTypes/index.js.map +0 -7
  120. package/dist/cjs/propTypes/toTypescript.js +0 -139
  121. package/dist/cjs/propTypes/toTypescript.js.map +0 -7
  122. package/dist/cjs/propTypes/types.js +0 -27
  123. package/dist/cjs/propTypes/types.js.map +0 -7
  124. package/dist/cjs/tests/globalProps/TestComponent.js +0 -42
  125. package/dist/cjs/tests/globalProps/TestComponent.js.map +0 -7
  126. package/dist/cjs/tests/validation/test.schema.js +0 -67
  127. package/dist/cjs/tests/validation/test.schema.js.map +0 -7
  128. package/dist/cjs/validation/errorTemplates.js +0 -48
  129. package/dist/cjs/validation/errorTemplates.js.map +0 -7
  130. package/dist/cjs/validation/index.js +0 -30
  131. package/dist/cjs/validation/index.js.map +0 -7
  132. package/dist/cjs/validation/typescriptGuards.js +0 -65
  133. package/dist/cjs/validation/typescriptGuards.js.map +0 -7
  134. package/dist/cjs/validation/typescriptParsers.js +0 -76
  135. package/dist/cjs/validation/typescriptParsers.js.map +0 -7
  136. package/dist/cjs/validation/typescriptValidator.js +0 -171
  137. package/dist/cjs/validation/typescriptValidator.js.map +0 -7
  138. package/dist/cjs/validation/validator.js +0 -55
  139. package/dist/cjs/validation/validator.js.map +0 -7
  140. package/dist/esm/defaultProps/index.js +0 -3
  141. package/dist/esm/defaultProps/index.js.map +0 -7
  142. package/dist/esm/defaultProps/useMemoMergePropsWithDefault.js +0 -19
  143. package/dist/esm/defaultProps/useMemoMergePropsWithDefault.js.map +0 -7
  144. package/dist/esm/getProps/index.js +0 -8
  145. package/dist/esm/getProps/index.js.map +0 -7
  146. package/dist/esm/globalProps/constants.js +0 -369
  147. package/dist/esm/globalProps/constants.js.map +0 -7
  148. package/dist/esm/globalProps/globalAttributesPropTypes.js.map +0 -7
  149. package/dist/esm/globalProps/index.js +0 -4
  150. package/dist/esm/globalProps/index.js.map +0 -7
  151. package/dist/esm/globalProps/useGetGlobalAttributes.js +0 -27
  152. package/dist/esm/globalProps/useGetGlobalAttributes.js.map +0 -7
  153. package/dist/esm/index.js +0 -7
  154. package/dist/esm/index.js.map +0 -7
  155. package/dist/esm/propTypes/PropTypes.js +0 -107
  156. package/dist/esm/propTypes/PropTypes.js.map +0 -7
  157. package/dist/esm/propTypes/customPropTypes.js +0 -9
  158. package/dist/esm/propTypes/customPropTypes.js.map +0 -7
  159. package/dist/esm/propTypes/describe.js +0 -52
  160. package/dist/esm/propTypes/describe.js.map +0 -7
  161. package/dist/esm/propTypes/describeConversions.js +0 -76
  162. package/dist/esm/propTypes/describeConversions.js.map +0 -7
  163. package/dist/esm/propTypes/describeGuards.js +0 -20
  164. package/dist/esm/propTypes/describeGuards.js.map +0 -7
  165. package/dist/esm/propTypes/index.js +0 -8
  166. package/dist/esm/propTypes/index.js.map +0 -7
  167. package/dist/esm/propTypes/toTypescript.js +0 -110
  168. package/dist/esm/propTypes/toTypescript.js.map +0 -7
  169. package/dist/esm/propTypes/types.js +0 -2
  170. package/dist/esm/propTypes/types.js.map +0 -7
  171. package/dist/esm/tests/globalProps/TestComponent.js +0 -13
  172. package/dist/esm/tests/globalProps/TestComponent.js.map +0 -7
  173. package/dist/esm/tests/validation/test.schema.js +0 -38
  174. package/dist/esm/tests/validation/test.schema.js.map +0 -7
  175. package/dist/esm/validation/errorTemplates.js +0 -19
  176. package/dist/esm/validation/errorTemplates.js.map +0 -7
  177. package/dist/esm/validation/index.js +0 -5
  178. package/dist/esm/validation/index.js.map +0 -7
  179. package/dist/esm/validation/typescriptGuards.js +0 -36
  180. package/dist/esm/validation/typescriptGuards.js.map +0 -7
  181. package/dist/esm/validation/typescriptParsers.js +0 -47
  182. package/dist/esm/validation/typescriptParsers.js.map +0 -7
  183. package/dist/esm/validation/typescriptValidator.js +0 -153
  184. package/dist/esm/validation/typescriptValidator.js.map +0 -7
  185. package/dist/esm/validation/validator.js +0 -26
  186. package/dist/esm/validation/validator.js.map +0 -7
@@ -0,0 +1,208 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ require('core-js/modules/esnext.async-iterator.for-each.js');
6
+ require('core-js/modules/esnext.iterator.constructor.js');
7
+ require('core-js/modules/esnext.iterator.for-each.js');
8
+ require('core-js/modules/web.dom-collections.iterator.js');
9
+ var react = require('react');
10
+ require('../propTypes/PropTypes.js');
11
+ var describe = require('../propTypes/describe.js');
12
+ var errorTemplates = require('./errorTemplates.js');
13
+ var typescriptGuards = require('./typescriptGuards.js');
14
+ var typescriptParsers = require('./typescriptParsers.js');
15
+
16
+ // =============================================================================
17
+ // Atom Validators
18
+ // =============================================================================
19
+ // This functions will validate something from the data
20
+ // and optionally recursively apply `validateValueWithFormat`
21
+ // in smaller parts
22
+ const validateUndefined = (schemaName, key, value, format) => {
23
+ if (value !== undefined || value === 'undefined') {
24
+ errorTemplates.throwTypeError(schemaName, key, value, format);
25
+ }
26
+ };
27
+
28
+ const validateNull = (schemaName, key, value, format) => {
29
+ if (value !== null || value === 'null') {
30
+ errorTemplates.throwTypeError(schemaName, key, value, format);
31
+ }
32
+ };
33
+
34
+ const validatePrimitiveType = (schemaName, key, value, format) => {
35
+ if (typeof value !== format) {
36
+ errorTemplates.throwTypeError(schemaName, key, value, format);
37
+ }
38
+ };
39
+
40
+ const validateString = (schemaName, key, value, format) => {
41
+ if (value !== format.slice(1, -1)) {
42
+ errorTemplates.throwTypeError(schemaName, key, value, format);
43
+ }
44
+ };
45
+
46
+ const validateArray = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
47
+ // Check that we have an array
48
+ if (!Array.isArray(value)) {
49
+ errorTemplates.throwTypeError(schemaName, key, value, format);
50
+ } // Check that each element inside satisfies the format
51
+
52
+
53
+ value.forEach((val, index) => {
54
+ // this is a recursive func, we need to invoke it before it's defined.
55
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
56
+ validateValueWithFormat(schemaName, "".concat(key, "[").concat(index, "]"), val, format.slice(0, -2), validationsMemo, nextValidationsMemo);
57
+ });
58
+ };
59
+
60
+ function isObjectType(value) {
61
+ return !(typeof value !== 'object' || Array.isArray(value));
62
+ }
63
+
64
+ const validateObject = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
65
+ const valuesIsObject = isObjectType(value); // Check that we have an object
66
+
67
+ if (!valuesIsObject) {
68
+ errorTemplates.throwTypeError(schemaName, key, value, format);
69
+ return;
70
+ }
71
+
72
+ if (format === 'object') return;
73
+ const keyValuePairs = typescriptParsers.typescriptObjectParser(format); // Now we have the key - value pairs
74
+ // Each key could either be required or not
75
+ // Just recursively check the object
76
+
77
+ keyValuePairs.forEach(_ref => {
78
+ let [objectKey, objectValue] = _ref;
79
+ const trueKey = objectKey.slice(-1) === '?' ? objectKey.slice(0, -1) : objectKey;
80
+
81
+ if (trueKey === objectKey && !(trueKey in value)) {
82
+ errorTemplates.throwRequiredError(schemaName, key);
83
+ }
84
+
85
+ if (trueKey in value) {
86
+ // this is a recursive func, we need to invoke it before it's defined.
87
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
88
+ validateValueWithFormat(schemaName, "".concat(key, "[").concat(trueKey, "]"), value[trueKey], objectValue, validationsMemo, nextValidationsMemo);
89
+ }
90
+ });
91
+ };
92
+
93
+ const validateUnion = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
94
+ const possibilities = format.split(/\s?\|\s?/);
95
+ const errors = [];
96
+ possibilities.forEach(possibility => {
97
+ try {
98
+ // this is a recursive func, we need to invoke it before it's defined.
99
+ // eslint-disable-next-line @typescript-eslint/no-use-before-define
100
+ validateValueWithFormat(schemaName, key, value, possibility, validationsMemo, nextValidationsMemo);
101
+ } catch (e) {
102
+ errors.push(e);
103
+ }
104
+ });
105
+
106
+ if (errors.length === possibilities.length) {
107
+ errorTemplates.throwTypeError(schemaName, key, value, format);
108
+ }
109
+ };
110
+
111
+ const validateFunction = (schemaName, key, value, format) => {
112
+ // Check that we have a function
113
+ if (typeof value !== 'function') {
114
+ errorTemplates.throwTypeError(schemaName, key, value, format);
115
+ }
116
+ };
117
+
118
+ function isJSXElement(value) {
119
+ return value === null || typeof value === 'object' && value !== null && '$$typeof' in value;
120
+ }
121
+
122
+ const validateJSXorNode = (schemaName, key, value, format) => {
123
+ const valueIsJSX = isJSXElement(value);
124
+
125
+ if (format === 'JSX.Element' && !valueIsJSX) {
126
+ errorTemplates.throwTypeError(schemaName, key, value, format);
127
+ }
128
+ }; // =============================================================================
129
+ // Schema validator
130
+ // =============================================================================
131
+
132
+
133
+ const validateValueWithFormat = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
134
+ nextValidationsMemo[value] = format;
135
+
136
+ if (value in validationsMemo) {
137
+ // We already validated this value on this format
138
+ return;
139
+ }
140
+
141
+ if (typescriptGuards.isUndefined(format)) {
142
+ validateUndefined(schemaName, key, value, format);
143
+ } else if (typescriptGuards.isNull(format)) {
144
+ validateNull(schemaName, key, value, format);
145
+ } else if (typescriptGuards.isPrimitiveType(format)) {
146
+ validatePrimitiveType(schemaName, key, value, format);
147
+ } else if (typescriptGuards.isUnion(format)) {
148
+ validateUnion(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
149
+ } else if (typescriptGuards.isString(format)) {
150
+ validateString(schemaName, key, value, format);
151
+ } else if (typescriptGuards.isArray(format)) {
152
+ validateArray(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
153
+ } else if (typescriptGuards.isObject(format)) {
154
+ validateObject(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
155
+ } else if (typescriptGuards.isFunction(format)) {
156
+ validateFunction(schemaName, key, value, format);
157
+ } else if (typescriptGuards.isJSXorNode(format)) {
158
+ validateJSXorNode(schemaName, key, value, format);
159
+ } else if (typescriptGuards.isSomethingWithParenthesis(format)) {
160
+ validateValueWithFormat(schemaName, key, value, format.slice(1, -1), validationsMemo, nextValidationsMemo);
161
+ }
162
+ };
163
+
164
+ const validateTypescriptPropTypesImplementation = function (props, schema) {
165
+ let validationsMemo = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
166
+ let nextValidationsMemo = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
167
+ const {
168
+ properties,
169
+ name: schemaName
170
+ } = schema;
171
+ properties.forEach(property => {
172
+ const {
173
+ name,
174
+ format,
175
+ required
176
+ } = property;
177
+
178
+ if (required && !(name in props)) {
179
+ errorTemplates.throwRequiredError(schema.name, name);
180
+ }
181
+
182
+ if (name in props && (props[name] !== undefined || required)) {
183
+ validateValueWithFormat(schemaName, name, props[name], format, validationsMemo, nextValidationsMemo);
184
+ }
185
+ });
186
+ }; // eslint-disable-next-line @typescript-eslint/no-explicit-any
187
+
188
+ const useValidateTypescriptPropTypes = (props, propTypes) => {
189
+ const [validationsMemo, setValidationsMemo] = react.useState({}); // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
190
+
191
+ const ComponentWithSchema = react.useMemo(() => {
192
+ const Component = () => {}; // eslint-disable-next-line @typescript-eslint/no-unsafe-return, @typescript-eslint/no-unsafe-call
193
+
194
+
195
+ return describe(Component);
196
+ }, []); // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment
197
+
198
+ ComponentWithSchema.propTypes = propTypes;
199
+ react.useMemo(() => {
200
+ const nextValidationsMemo = {};
201
+ validateTypescriptPropTypesImplementation(props, // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call
202
+ ComponentWithSchema.toTypescript(), validationsMemo, nextValidationsMemo);
203
+ setValidationsMemo(nextValidationsMemo); // eslint-disable-next-line react-hooks/exhaustive-deps
204
+ }, [props]);
205
+ };
206
+
207
+ exports.useValidateTypescriptPropTypes = useValidateTypescriptPropTypes;
208
+ exports.validateTypescriptPropTypesImplementation = validateTypescriptPropTypesImplementation;
@@ -0,0 +1,36 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ require('core-js/modules/esnext.async-iterator.for-each.js');
6
+ require('core-js/modules/esnext.iterator.constructor.js');
7
+ require('core-js/modules/esnext.iterator.for-each.js');
8
+ var errorTemplates = require('./errorTemplates.js');
9
+
10
+ const useValidatePropTypes = (props, schema) => {
11
+ schema.properties.forEach(property => {
12
+ const propertyName = property.name;
13
+ const currentProp = props[propertyName];
14
+ const currentPropTypeOf = typeof currentProp; // eslint-disable-next-line max-len
15
+
16
+ const currentFormat = property.format; // this is csv representing types e.g.: "string"/"string,number"/"[object],string"
17
+
18
+ let isValidReactElement = false; // this depends on react desc definition
19
+
20
+ if (property.required && !Object.prototype.hasOwnProperty.call(props, property.name)) {
21
+ errorTemplates.throwRequiredError(schema.name, property.name);
22
+ }
23
+
24
+ if (currentPropTypeOf !== 'undefined' && currentProp !== null) {
25
+ if (currentPropTypeOf === 'object' && Object.prototype.hasOwnProperty.call(currentProp, '$$typeof') && (currentFormat.includes('node') || currentFormat.includes('element'))) {
26
+ isValidReactElement = true;
27
+ }
28
+
29
+ if (!currentFormat.includes(currentPropTypeOf) && !currentFormat.includes(currentProp) && !isValidReactElement) {
30
+ errorTemplates.throwTypeError(schema.name, propertyName, currentProp, currentFormat);
31
+ }
32
+ }
33
+ });
34
+ };
35
+
36
+ exports.useValidatePropTypes = useValidatePropTypes;
@@ -0,0 +1,21 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ require('core-js/modules/web.dom-collections.iterator.js');
6
+ require('core-js/modules/esnext.async-iterator.map.js');
7
+ require('core-js/modules/esnext.iterator.map.js');
8
+
9
+ const marginKeys = ['margin', 'marginTop', 'marginRight', 'marginBottom', 'marginLeft', 'm', 'mt', 'mr', 'mb', 'ml', 'mx', 'my'];
10
+ const paddingKeys = ['padding', 'p', 'paddingTop', 'pt', 'paddingRight', 'pr', 'paddingBottom', 'pb', 'paddingLeft', 'pl', 'px', 'py'];
11
+ const spaceKeys = ['spaceY', 'spaceX', 'spaceXReverse', 'spaceYReverse'];
12
+ const widthKeys = ['w', 'maxWidth', 'maxW', 'minWidth', 'minW'];
13
+ const heightKeys = ['h', 'maxHeight', 'maxH', 'minHeight', 'minH'];
14
+ const maskSizeKeys = ['maskSize'];
15
+ const spacingKeys = [...marginKeys, ...paddingKeys, ...spaceKeys];
16
+ const sizingKeys = [...widthKeys, ...heightKeys, ...maskSizeKeys];
17
+ const layoutKeys = ['display', 'float', 'boxSizing', 'container', 'overflow', 'overflowX', 'overflowY', 'zIndex', 'position', 'top', 'right', 'bottom', 'left', 'visibility', 'overscrollBehavior', 'objectFit'];
18
+ const xstyledKeys = Object.fromEntries([...spacingKeys, ...sizingKeys, ...layoutKeys].map(item => [item, true]));
19
+
20
+ exports.layoutKeys = layoutKeys;
21
+ exports.xstyledKeys = xstyledKeys;
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var useGetXstyledProps = require('./useGetXstyledProps.js');
6
+ var xstyledPropTypes = require('./xstyledPropTypes.js');
7
+
8
+
9
+
10
+ exports.useGetXstyledProps = useGetXstyledProps.useGetXstyledProps;
11
+ exports.xstyledPropTypes = xstyledPropTypes.xstyledPropTypes;
@@ -0,0 +1,27 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ require('core-js/modules/esnext.async-iterator.for-each.js');
6
+ require('core-js/modules/esnext.iterator.constructor.js');
7
+ require('core-js/modules/esnext.iterator.for-each.js');
8
+ require('core-js/modules/web.dom-collections.iterator.js');
9
+ var react = require('react');
10
+ var constants = require('./constants.js');
11
+
12
+ const useGetXstyledProps = props => {
13
+ const componentXstyledProps = react.useMemo(() => {
14
+ const xstyledPropsObject = {};
15
+ Object.entries(props).forEach(_ref => {
16
+ let [key, value] = _ref;
17
+
18
+ if (key in constants.xstyledKeys) {
19
+ xstyledPropsObject[key] = value;
20
+ }
21
+ });
22
+ return xstyledPropsObject;
23
+ }, [props]);
24
+ return componentXstyledProps;
25
+ };
26
+
27
+ exports.useGetXstyledProps = useGetXstyledProps;
@@ -0,0 +1,75 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var PropTypes = require('../propTypes/PropTypes.js');
6
+ require('core-js/modules/esnext.async-iterator.for-each.js');
7
+ require('core-js/modules/esnext.iterator.constructor.js');
8
+ require('core-js/modules/esnext.iterator.for-each.js');
9
+ require('core-js/modules/web.dom-collections.iterator.js');
10
+ require('core-js/modules/esnext.async-iterator.map.js');
11
+ require('core-js/modules/esnext.iterator.map.js');
12
+ require('prop-types');
13
+ require('@babel/runtime/helpers/defineProperty');
14
+ require('core-js/modules/esnext.async-iterator.filter.js');
15
+ require('core-js/modules/esnext.iterator.filter.js');
16
+
17
+ const xstyledPropTypes = {
18
+ margin: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
19
+ m: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
20
+ marginTop: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
21
+ mt: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
22
+ marginRight: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
23
+ mr: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
24
+ marginBottom: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
25
+ mb: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
26
+ marginLeft: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
27
+ ml: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
28
+ mx: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
29
+ my: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
30
+ padding: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
31
+ p: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
32
+ paddingTop: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
33
+ pt: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
34
+ paddingRight: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
35
+ pr: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
36
+ paddingBottom: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
37
+ pb: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
38
+ paddingLeft: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
39
+ pl: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
40
+ px: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
41
+ py: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
42
+ spaceY: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
43
+ spaceX: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
44
+ spaceXReverse: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
45
+ spaceYReverse: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
46
+ w: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
47
+ maxWidth: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
48
+ maxW: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
49
+ minWidth: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
50
+ minW: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
51
+ h: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
52
+ maxHeight: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
53
+ maxH: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
54
+ minHeight: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
55
+ minH: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
56
+ maskSize: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
57
+ display: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
58
+ float: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
59
+ boxSizing: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
60
+ container: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
61
+ overflow: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
62
+ overflowX: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
63
+ overflowY: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
64
+ zIndex: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
65
+ position: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
66
+ top: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
67
+ right: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
68
+ bottom: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
69
+ left: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
70
+ visibility: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
71
+ overscrollBehavior: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled(),
72
+ objectFit: PropTypes.any.description('Applies to the root container. For more info read xstyled docs').xstyled()
73
+ };
74
+
75
+ exports.xstyledPropTypes = xstyledPropTypes;
@@ -0,0 +1 @@
1
+ export { useMemoMergePropsWithDefault } from './useMemoMergePropsWithDefault.js';
@@ -0,0 +1,39 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
5
+ import 'core-js/modules/esnext.iterator.for-each.js';
6
+ import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
7
+ import { useRef } from 'react';
8
+ import deepequal from 'fast-deep-equal/react';
9
+
10
+ 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; }
11
+
12
+ 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(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; }
13
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
14
+
15
+ const useMemoCompare = (next, compare) => {
16
+ // Ref for storing previous value
17
+ const previousRef = useRef(next);
18
+ const previous = previousRef.current; // Pass previous and next value to compare function
19
+ // to determine whether to consider them equal.
20
+
21
+ const isEqual = compare(previous, next); // If not equal update previousRef to next value.
22
+ // We only update if not equal so that this hook continues to return
23
+ // the same old value if compare keeps returning true.
24
+
25
+ if (!isEqual) previousRef.current = next; // Finally, if equal then return the previous value
26
+
27
+ return isEqual ? previous : next;
28
+ }; // eslint-disable-next-line @typescript-eslint/no-explicit-any
29
+
30
+
31
+ const useMemoMergePropsWithDefault = function (props, defaultProps) {
32
+ let compare = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : deepequal;
33
+
34
+ const mergedProps = _objectSpread(_objectSpread({}, defaultProps), props);
35
+
36
+ return useMemoCompare(mergedProps, compare);
37
+ };
38
+
39
+ export { useMemoMergePropsWithDefault };
@@ -0,0 +1,15 @@
1
+ import 'core-js/modules/esnext.async-iterator.filter.js';
2
+ import 'core-js/modules/esnext.iterator.constructor.js';
3
+ import 'core-js/modules/esnext.iterator.filter.js';
4
+ import 'core-js/modules/web.dom-collections.iterator.js';
5
+
6
+ const getAriaProps = props => Object.fromEntries(Object.entries(props).filter(_ref => {
7
+ let [key] = _ref;
8
+ return key.includes('aria-');
9
+ }));
10
+ const getDataProps = props => Object.fromEntries(Object.entries(props).filter(_ref2 => {
11
+ let [key] = _ref2;
12
+ return key.includes('data-');
13
+ }));
14
+
15
+ export { getAriaProps, getDataProps };
@@ -0,0 +1,12 @@
1
+ import 'core-js/modules/esnext.async-iterator.map.js';
2
+ import 'core-js/modules/esnext.iterator.map.js';
3
+ import 'core-js/modules/web.dom-collections.iterator.js';
4
+
5
+ /* eslint-disable max-lines */
6
+ 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'];
7
+ 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'];
8
+ const htmlAttributes = ['about', 'accept', 'acceptCharset', 'accessKey', 'action', 'allowFullScreen', 'allowTransparency', 'alt', // 'as', This property causes trouble in TS. This is actually not an HTML Attribute, leaving it here for the record
9
+ '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'];
10
+ const globalAttributes = Object.fromEntries([...ariaAttributes, ...domAttributes, ...htmlAttributes].map(entry => [entry, true]));
11
+
12
+ export { globalAttributes };
@@ -1,10 +1,21 @@
1
- import * as React from "react";
2
- import { PropTypes } from "../propTypes";
1
+ import PropTypes from '../propTypes/PropTypes.js';
2
+ import 'core-js/modules/esnext.async-iterator.for-each.js';
3
+ import 'core-js/modules/esnext.iterator.constructor.js';
4
+ import 'core-js/modules/esnext.iterator.for-each.js';
5
+ import 'core-js/modules/web.dom-collections.iterator.js';
6
+ import 'core-js/modules/esnext.async-iterator.map.js';
7
+ import 'core-js/modules/esnext.iterator.map.js';
8
+ import 'prop-types';
9
+ import 'core-js/modules/esnext.async-iterator.filter.js';
10
+ import 'core-js/modules/esnext.iterator.filter.js';
11
+ import '@babel/runtime/helpers/esm/defineProperty';
12
+
13
+ /* eslint-disable max-lines */
3
14
  const globalAttributesPropTypes = {
4
- "aria-*": PropTypes.any.description("Aria related properties").global(),
5
- "on-*": PropTypes.func.description("Any supported React event").global(),
6
- "data-*": PropTypes.any.description("Any data property to attach to the root container").global(),
7
- "all HTML attributes": PropTypes.any.description("HTML attributes such as id, className, autoComplete, href and so on").global(),
15
+ 'aria-*': PropTypes.any.description('Aria related properties').global(),
16
+ 'on-*': PropTypes.func.description('Any supported React event').global(),
17
+ 'data-*': PropTypes.any.description('Any data property to attach to the root container').global(),
18
+ 'all HTML attributes': PropTypes.any.description('HTML attributes such as id, className, autoComplete, href and so on').global(),
8
19
  about: PropTypes.any.hidden(),
9
20
  accept: PropTypes.any.hidden(),
10
21
  acceptCharset: PropTypes.any.hidden(),
@@ -13,54 +24,54 @@ const globalAttributesPropTypes = {
13
24
  allowFullScreen: PropTypes.any.hidden(),
14
25
  allowTransparency: PropTypes.any.hidden(),
15
26
  alt: PropTypes.any.hidden(),
16
- "aria-activedescendant": PropTypes.any.hidden(),
17
- "aria-atomic": PropTypes.any.hidden(),
18
- "aria-autocomplete": PropTypes.any.hidden(),
19
- "aria-busy": PropTypes.any.hidden(),
20
- "aria-checked": PropTypes.any.hidden(),
21
- "aria-colcount": PropTypes.any.hidden(),
22
- "aria-colindex": PropTypes.any.hidden(),
23
- "aria-colspan": PropTypes.any.hidden(),
24
- "aria-controls": PropTypes.any.hidden(),
25
- "aria-current": PropTypes.any.hidden(),
26
- "aria-describedby": PropTypes.any.hidden(),
27
- "aria-details": PropTypes.any.hidden(),
28
- "aria-disabled": PropTypes.any.hidden(),
29
- "aria-dropeffect": PropTypes.any.hidden(),
30
- "aria-errormessage": PropTypes.any.hidden(),
31
- "aria-expanded": PropTypes.any.hidden(),
32
- "aria-flowto": PropTypes.any.hidden(),
33
- "aria-grabbed": PropTypes.any.hidden(),
34
- "aria-haspopup": PropTypes.any.hidden(),
35
- "aria-hidden": PropTypes.any.hidden(),
36
- "aria-invalid": PropTypes.any.hidden(),
37
- "aria-keyshortcuts": PropTypes.any.hidden(),
38
- "aria-label": PropTypes.any.hidden(),
39
- "aria-labelledby": PropTypes.any.hidden(),
40
- "aria-level": PropTypes.any.hidden(),
41
- "aria-live": PropTypes.any.hidden(),
42
- "aria-modal": PropTypes.any.hidden(),
43
- "aria-multiline": PropTypes.any.hidden(),
44
- "aria-multiselectable": PropTypes.any.hidden(),
45
- "aria-orientation": PropTypes.any.hidden(),
46
- "aria-owns": PropTypes.any.hidden(),
47
- "aria-placeholder": PropTypes.any.hidden(),
48
- "aria-posinset": PropTypes.any.hidden(),
49
- "aria-pressed": PropTypes.any.hidden(),
50
- "aria-readonly": PropTypes.any.hidden(),
51
- "aria-relevant": PropTypes.any.hidden(),
52
- "aria-required": PropTypes.any.hidden(),
53
- "aria-roledescription": PropTypes.any.hidden(),
54
- "aria-rowcount": PropTypes.any.hidden(),
55
- "aria-rowindex": PropTypes.any.hidden(),
56
- "aria-rowspan": PropTypes.any.hidden(),
57
- "aria-selected": PropTypes.any.hidden(),
58
- "aria-setsize": PropTypes.any.hidden(),
59
- "aria-sort": PropTypes.any.hidden(),
60
- "aria-valuemax": PropTypes.any.hidden(),
61
- "aria-valuemin": PropTypes.any.hidden(),
62
- "aria-valuenow": PropTypes.any.hidden(),
63
- "aria-valuetext": PropTypes.any.hidden(),
27
+ 'aria-activedescendant': PropTypes.any.hidden(),
28
+ 'aria-atomic': PropTypes.any.hidden(),
29
+ 'aria-autocomplete': PropTypes.any.hidden(),
30
+ 'aria-busy': PropTypes.any.hidden(),
31
+ 'aria-checked': PropTypes.any.hidden(),
32
+ 'aria-colcount': PropTypes.any.hidden(),
33
+ 'aria-colindex': PropTypes.any.hidden(),
34
+ 'aria-colspan': PropTypes.any.hidden(),
35
+ 'aria-controls': PropTypes.any.hidden(),
36
+ 'aria-current': PropTypes.any.hidden(),
37
+ 'aria-describedby': PropTypes.any.hidden(),
38
+ 'aria-details': PropTypes.any.hidden(),
39
+ 'aria-disabled': PropTypes.any.hidden(),
40
+ 'aria-dropeffect': PropTypes.any.hidden(),
41
+ 'aria-errormessage': PropTypes.any.hidden(),
42
+ 'aria-expanded': PropTypes.any.hidden(),
43
+ 'aria-flowto': PropTypes.any.hidden(),
44
+ 'aria-grabbed': PropTypes.any.hidden(),
45
+ 'aria-haspopup': PropTypes.any.hidden(),
46
+ 'aria-hidden': PropTypes.any.hidden(),
47
+ 'aria-invalid': PropTypes.any.hidden(),
48
+ 'aria-keyshortcuts': PropTypes.any.hidden(),
49
+ 'aria-label': PropTypes.any.hidden(),
50
+ 'aria-labelledby': PropTypes.any.hidden(),
51
+ 'aria-level': PropTypes.any.hidden(),
52
+ 'aria-live': PropTypes.any.hidden(),
53
+ 'aria-modal': PropTypes.any.hidden(),
54
+ 'aria-multiline': PropTypes.any.hidden(),
55
+ 'aria-multiselectable': PropTypes.any.hidden(),
56
+ 'aria-orientation': PropTypes.any.hidden(),
57
+ 'aria-owns': PropTypes.any.hidden(),
58
+ 'aria-placeholder': PropTypes.any.hidden(),
59
+ 'aria-posinset': PropTypes.any.hidden(),
60
+ 'aria-pressed': PropTypes.any.hidden(),
61
+ 'aria-readonly': PropTypes.any.hidden(),
62
+ 'aria-relevant': PropTypes.any.hidden(),
63
+ 'aria-required': PropTypes.any.hidden(),
64
+ 'aria-roledescription': PropTypes.any.hidden(),
65
+ 'aria-rowcount': PropTypes.any.hidden(),
66
+ 'aria-rowindex': PropTypes.any.hidden(),
67
+ 'aria-rowspan': PropTypes.any.hidden(),
68
+ 'aria-selected': PropTypes.any.hidden(),
69
+ 'aria-setsize': PropTypes.any.hidden(),
70
+ 'aria-sort': PropTypes.any.hidden(),
71
+ 'aria-valuemax': PropTypes.any.hidden(),
72
+ 'aria-valuemin': PropTypes.any.hidden(),
73
+ 'aria-valuenow': PropTypes.any.hidden(),
74
+ 'aria-valuetext': PropTypes.any.hidden(),
64
75
  as: PropTypes.any.hidden(),
65
76
  async: PropTypes.any.hidden(),
66
77
  autoCapitalize: PropTypes.any.hidden(),
@@ -363,7 +374,5 @@ const globalAttributesPropTypes = {
363
374
  wmode: PropTypes.any.hidden(),
364
375
  wrap: PropTypes.any.hidden()
365
376
  };
366
- export {
367
- globalAttributesPropTypes
368
- };
369
- //# sourceMappingURL=globalAttributesPropTypes.js.map
377
+
378
+ export { globalAttributesPropTypes };
@@ -0,0 +1,2 @@
1
+ export { useGetGlobalAttributes } from './useGetGlobalAttributes.js';
2
+ export { globalAttributesPropTypes } from './globalAttributesPropTypes.js';